.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2vw;
  flex-wrap: wrap;
}
@media (max-width: 1200px) {
  .header-wrapper {
    padding-top: 2rem;
  }
}
@media (max-width: 730px) {
  .header-wrapper {
    position: relative;
  }
}

.header__nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1vw;
}
@media (max-width: 730px) {
  .header__nav-menu {
    flex-direction: column;
    justify-content: flex-start;
    position: absolute;
    transform: translateY(-150%);
    top: 0;
    left: -10%;
    width: 120%;
    gap: 2rem;
    margin-top: 6rem;
    padding: 3rem 0;
    height: 100vh;
    transition: transform 0.3s ease-in-out;
  }
}

.header__nav-menu.active {
  transform: translateY(0%);
  background: #fdfdfd;
  z-index: 20;
}

.header__logo-name {
  font-weight: 600;
  font-size: calc(12px + 26 * (100vw - 320px) / 3680);
  color: #333;
}
@media (max-width: 1300px) {
  .header__logo-name {
    font-size: 18px;
  }
}

.header__nav-link {
  color: #333;
}
.header__nav-link.active {
  font-weight: 600;
}
@media (max-width: 730px) {
  .header__nav-link {
    font-size: 18px;
  }
}

.burger__wrapper {
  display: none;
}
@media (max-width: 730px) {
  .burger__wrapper {
    display: block;
  }
}

.burger {
  width: 30px;
  height: 2px;
  position: relative;
  background: #000;
}
.burger::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  background: #000;
  left: 0;
  top: 12px;
  transition: transform 0.3s;
}
.burger::before {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  background: #000;
  left: 0;
  bottom: 12px;
  transition: transform 0.3s;
}

.burger.active {
  background: inherit;
}
.burger.active::after {
  transform: rotate(45deg);
  top: 0;
}
.burger.active::before {
  transform: rotate(-45deg);
  bottom: 0;
}

.breadcrumbs {
  margin-top: 5px;
}
.breadcrumbs a {
  color: #000;
}
@media (max-width: 520px) {
  .breadcrumbs {
    font-size: 12px;
  }
}
@media (max-width: 450px) {
  .breadcrumbs {
    width: 70%;
  }
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper {
  width: 100%;
  height: 200px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
}

.mySwiper2 {
  height: 80%;
  width: 100%;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.mySwiper {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
}

.mySwiper .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
}

.mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fdfdfd !important;
}

.work__item-swiper {
  position: relative;
  height: 30vw;
}
@media (max-width: 1245px) {
  .work__item-swiper {
    height: 75%;
  }
}

@media (max-width: 600px) {
  :root {
    --swiper-navigation-size: 30px !important;
  }
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 680px) {
  .footer-wrapper {
    flex-wrap: wrap;
  }
}

.footer {
  padding: 4vw 0 2.5vw 0;
  background: #333;
}
@media (max-width: 1200px) {
  .footer {
    padding: 2rem 0 2rem 0;
  }
}

.footer__logo-name {
  font-weight: 600;
  font-size: calc(12px + 26 * (100vw - 320px) / 3680);
}
@media (max-width: 1300px) {
  .footer__logo-name {
    font-size: 18px;
  }
}
@media (max-width: 820px) {
  .footer__logo-name {
    width: 10rem;
    margin-bottom: 2rem;
  }
}

.footer__nav-menu {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.3vw;
}
@media (max-width: 1100px) {
  .footer__nav-menu {
    gap: 1rem;
  }
}

.footer__menu-wrapper {
  display: flex;
  width: 50%;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .footer__menu-wrapper {
    width: 60%;
  }
}
@media (max-width: 700px) {
  .footer__menu-wrapper {
    width: 70%;
  }
}
@media (max-width: 625px) {
  .footer__menu-wrapper {
    width: 80%;
  }
}
@media (max-width: 550px) {
  .footer__menu-wrapper {
    width: 90%;
  }
}
@media (max-width: 460px) {
  .footer__menu-wrapper {
    width: 100%;
  }
}
@media (max-width: 400px) {
  .footer__menu-wrapper {
    flex-wrap: wrap;
    gap: 2rem 5rem;
    margin-left: 2rem;
  }
}

.footer__nav-link {
  color: #000;
}

.footer,
.footer__logo-name,
.footer__nav-link,
.terms__item a {
  color: #fff;
}

.contacts__title {
  font-size: calc(12px + 26 * (100vw - 320px) / 3680);
  padding-bottom: 1.5vw;
  font-weight: 600;
}
@media (max-width: 1200px) {
  .contacts__title {
    padding-bottom: 1rem;
  }
}
@media (max-width: 820px) {
  .contacts__title {
    font-size: 16px;
  }
}

.contacts__wrapper {
  width: 40%;
}
@media (max-width: 400px) {
  .contacts__wrapper {
    width: 100%;
  }
}

.contacts__link {
  color: #fff;
}

.adress,
.phone {
  position: relative;
}
.adress::before,
.phone::before {
  content: "";
  position: absolute;
  filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(2%) hue-rotate(305deg) brightness(100%) contrast(103%);
  left: -13%;
  top: 0%;
  width: 1.2vw;
  height: 1.2vw;
}
@media (max-width: 1450px) {
  .adress::before,
  .phone::before {
    width: 1rem;
    height: 1rem;
  }
}
@media (max-width: 1300px) {
  .adress,
  .phone {
    flex-wrap: wrap;
  }
}
@media (max-width: 620px) {
  .adress::before,
  .phone::before {
    left: -2rem;
  }
}

.adress::before {
  background: center/cover no-repeat url(./../imgs/icons/placeholder.svg);
}

.phone {
  margin-top: 1vw;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.phone::before {
  background: center/cover no-repeat url(./../imgs/icons/phone.svg);
}
@media (max-width: 1100px) {
  .phone {
    margin-top: 1rem;
  }
}

.terms__wrapper {
  padding-top: 3vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.terms__wrapper a {
  color: #fff;
}
@media (max-width: 1100px) {
  .terms__wrapper {
    padding-top: 2rem;
  }
}

.messenger__link {
  width: 1.2vw;
  height: 1.2vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1300px) {
  .messenger__link {
    width: 1.2rem;
    height: 1.2rem;
  }
}

.messenger__img {
  width: 100%;
  height: 100%;
  background: center/cover no-repeat url(./../imgs/icons/viber.svg);
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7492%) hue-rotate(356deg) brightness(102%) contrast(99%);
}

.whatsapp {
  background: center/cover no-repeat url(./../imgs/icons/whatsapp.svg);
}

.viber {
  background: center/cover no-repeat url(./../imgs/icons/viber.svg);
}

.telegram {
  background: center/cover no-repeat url(./../imgs/icons/telegram.svg);
}

.messengers__wrapper {
  display: flex;
  gap: 0.5rem;
}

.privacy__wrapper {
  padding: 4vw 0 4vw 0;
}

.privacy__subtitle {
  font-size: 20px;
  padding: 2rem 0 2rem 0;
}

.privacy__text {
  padding-bottom: 2rem;
}

.privacy__item {
  padding-left: 2rem;
}

.single-project__wrapper {
  display: flex;
  justify-content: space-between;
  padding: 8vw 0 4vw 0;
  gap: 30px;
}
@media (max-width: 560px) {
  .single-project__wrapper {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
}

.single-project__title {
  text-align: left !important;
}

.single-project__text {
  padding-top: 2vw;
}
@media (max-width: 1150px) {
  .single-project__text {
    padding-top: 2rem;
  }
}

.single-project__content {
  flex-basis: 50%;
}

.single-project__galery {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 50%;
  align-items: center;
  justify-content: center;
  gap: 20px 20px;
}
.single-project__galery .project__image {
  height: 20vw;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
@media (max-width: 1800px) {
  .single-project__galery .project__image {
    height: 300px;
  }
}

.materials__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 30px;
}
@media (max-width: 560px) {
  .materials__wrapper {
    justify-content: center;
  }
}

.materials__title {
  font-size: calc(12px + 26 * (100vw - 320px) / 3680);
  display: block;
  padding-bottom: 2vw;
}
@media (max-width: 1280px) {
  .materials__title {
    font-size: 16px;
  }
}
@media (max-width: 1150px) {
  .materials__title {
    padding-bottom: 2rem;
  }
}
@media (max-width: 560px) {
  .materials__title {
    text-align: center;
  }
}

.material__img {
  width: 9vw;
  height: 5vw;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1800px) {
  .material__img {
    width: 150px;
    height: 100px;
  }
}

.material__name {
  padding-top: 1vw;
}
@media (max-width: 1150px) {
  .material__name {
    padding-top: 1rem;
  }
}

.single-project__materials {
  padding-top: 3vw;
}
@media (max-width: 1150px) {
  .single-project__materials {
    padding-top: 3rem;
  }
}

.params__item {
  display: flex;
  justify-content: space-between;
}
.params__item:not(:nth-child(1)) {
  padding-top: 1.5vw;
}
@media (max-width: 1150px) {
  .params__item:not(:nth-child(1)) {
    padding-top: 1rem;
  }
}

.params__underline {
  flex-grow: 1;
  border-bottom: 1px solid #000;
}

.single-project__params {
  padding-top: 3vw;
}
@media (max-width: 1150px) {
  .single-project__params {
    padding-top: 3rem;
  }
}

.nav__link {
  color: #fdfdfd;
}

.nav__item:has(.nav__link:not(.active)) {
  background: rgba(51, 51, 51, 0.8117647059);
}

.projects__content-wrapper {
  padding: 4vw 0 4vw 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4rem 4rem;
}
@media (max-width: 1205px) {
  .projects__content-wrapper {
    justify-content: center;
  }
}
@media (max-width: 1200px) {
  .projects__content-wrapper {
    padding: 2rem 0 2rem 0;
  }
}

.page-numbers {
  font-size: calc(12px + 43 * (100vw - 320px) / 3680);
  background: #333;
  border: 1px solid #f9f9f9;
  width: 3vw;
  height: 3vw;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  border-radius: 5px;
}
@media (max-width: 1200px) {
  .page-numbers {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}
@media (max-width: 600px) {
  .page-numbers {
    font-size: 18px;
    width: 30px;
    height: 30px;
  }
}

.next,
.prev {
  width: 5vw;
  background: #333 !important;
}
@media (max-width: 1200px) {
  .next,
  .prev {
    width: 60px;
  }
}
@media (max-width: 600px) {
  .next,
  .prev {
    width: 50px;
  }
}

.pagination {
  display: flex;
  gap: 0.3vw;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding-bottom: 4vw;
}
@media (max-width: 1200px) {
  .pagination {
    padding-bottom: 2rem;
  }
}

.page-numbers:not(.current) {
  background: rgba(51, 51, 51, 0.8274509804);
  color: rgba(255, 255, 255, 0.8274509804);
}

.page-numbers:not(.next):not(.prev) {
  transition: 0.2s ease-in-out;
}
.page-numbers:not(.next):not(.prev):hover {
  background: rgba(51, 51, 51, 0.8117647059);
}

.single-projects__title {
  padding-top: 4vw;
  position: relative;
}
@media (max-width: 1200px) {
  .single-projects__title {
    padding-top: 3rem;
  }
}

.categories__nav {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding-top: 2vw;
  flex-wrap: wrap;
}
.categories__nav:hover {
  cursor: pointer;
}
@media (max-width: 1200px) {
  .categories__nav {
    padding-top: 2rem;
  }
}

.nav__item {
  font-size: calc(12px + 43 * (100vw - 320px) / 3680);
  background: #333;
  border: 1px solid #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  border-radius: 10px;
  padding: 5px;
}
@media (max-width: 1200px) {
  .nav__item {
    font-size: 20px;
  }
}
@media (max-width: 600px) {
  .nav__item {
    font-size: 18px;
  }
}

.contacts:not(:first-child) {
  padding-top: 1.5rem;
}

.contacts__content {
  width: 50%;
  display: grid;
  align-self: center;
  padding-bottom: 3vw;
}
@media (max-width: 700px) {
  .contacts__content {
    width: 100%;
    align-items: center;
    justify-content: center;
  }
}

.contacts {
  align-self: start;
}
@media (max-width: 700px) {
  .contacts {
    align-self: center;
    text-align: center;
  }
}

.contacts-content__wrapper {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 3vw 0 0 0;
}
@media (max-width: 1150px) {
  .contacts-content__wrapper {
    padding: 3rem 0 0 0;
  }
}
@media (max-width: 1010px) {
  .contacts-content__wrapper {
    gap: 20px;
  }
}
@media (max-width: 700px) {
  .contacts-content__wrapper {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
}

.contacts__form {
  width: 70%;
  background: #333;
  color: #fdfdfd;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.contacts__form .form__wrapper {
  padding: 2vw 3vw 1vw 3vw;
}
@media (max-width: 1150px) {
  .contacts__form .form__wrapper {
    padding: 2rem 2.5rem 1rem 2.5rem;
  }
}
.contacts__form .form__button {
  border: 1px solid #fff;
  margin-top: 2.5vw;
}
.contacts__form .form__input {
  border: 1px solid #acacac;
  height: 40px;
}
.contacts__form .form__title {
  position: relative;
  text-align: center;
}

.contacts-form-wrapper {
  flex-shrink: 2;
}

.contacts-form-wrapper > div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
@media (max-width: 1150px) {
  .contacts-form-wrapper > div .contacts__form {
    width: 400px;
  }
}
@media (max-width: 460px) {
  .contacts-form-wrapper > div .contacts__form {
    width: 320px;
  }
}
@media (max-width: 1150px) {
  .contacts-form-wrapper > div {
    justify-content: flex-end;
  }
}

.title.contacts__title {
  text-align: start;
}
@media (max-width: 700px) {
  .title.contacts__title {
    text-align: center;
  }
}

.title.contacts__title {
  position: relative;
}

.map__terms a {
  color: #c7c7c7;
}

@media (min-height: 725px) {
  .contacts__main {
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }
}
@media (min-height: 840px) {
  .contacts__main {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (min-height: 840px) {
  .contacts__form {
    border-radius: 15px;
  }
}

@font-face {
  font-family: "CardoRegular";
  src: url("./../fonts/Cardo/Cardo-Bold.ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "InterRegular";
  src: url("./../fonts/Inter/Inter-Regular.ttf");
  font-weight: normal;
  font-style: normal;
}
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Links */
a, a:link, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
html {
  scroll-behavior: smooth;
}

aside, nav, footer, header, section, main {
  display: block;
}

h1, h2, h3, h4, h5, h6, p {
  font-size: inherit;
  font-weight: inherit;
}

ul, ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img, svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button, input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

main {
  flex-grow: 1;
}

footer {
  flex-shrink: 0;
}

body {
  background: #f9f9f9;
  min-height: 100vh;
  font-family: "InterRegular", sans-serif;
  position: relative;
  display: flex;
  flex-direction: column;
  line-height: 1.5;
  font-size: calc(6px + 30 * (100vw - 320px) / 3680);
}
@media (max-width: 1300px) {
  body {
    font-size: 15px;
  }
}
@media (max-width: 600px) {
  body {
    font-size: 14px;
  }
}

.wrapper {
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 950px) {
  .wrapper {
    width: 85%;
  }
}

.main-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 8vw;
  padding-bottom: 4vw;
}
@media (max-width: 1200px) {
  .main-wrapper {
    padding-top: 8rem;
    padding-bottom: 4rem;
  }
}

.title {
  font-family: "CardoRegular", serif;
  font-weight: 500;
  font-size: calc(8px + 96 * (100vw - 320px) / 3680);
  text-align: center;
}
@media (max-width: 1300px) {
  .title {
    font-size: 30px;
  }
}

@media (max-width: 750px) {
  .main__title {
    width: 75%;
  }
}

.main__content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 50%;
  text-align: center;
  gap: 2vw;
  padding-bottom: 4vw;
}
@media (max-width: 750px) {
  .main__content {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .main__content {
    gap: 2rem;
    padding-bottom: 4rem;
  }
}

.main__content-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.main__content-text {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.55;
}

.about__section {
  background: #fff;
  padding-top: 4vw;
  padding-bottom: 4vw;
}
@media (max-width: 1200px) {
  .about__section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.about__item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 1vw;
  padding: 2vw;
  background: #f9f9f9;
  width: 20%;
  height: 17vw;
  border-radius: 20px;
  box-shadow: 0px 0px 7px 0px rgba(152, 152, 152, 0.2);
}
@media (max-width: 1105px) {
  .about__item {
    width: 185px;
    justify-content: center;
  }
}
@media (max-width: 1000px) {
  .about__item {
    height: 180px;
    gap: 1rem;
    padding: 1rem;
  }
}

.about__item-text {
  text-align: center;
  line-height: 1.2;
}
@media (max-width: 1300px) {
  .about__item-text {
    font-size: 12px;
  }
}

.about__text {
  padding-top: 2vw;
  padding-bottom: 4vw;
  line-height: 1.55;
  text-align: center;
}
@media (max-width: 1200px) {
  .about__text {
    padding-top: 2rem;
    padding-bottom: 4rem;
  }
}

.about__icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 1015px) {
  .about__icons {
    justify-content: center;
    gap: 2rem;
  }
}

.button {
  padding: 0.5vw 1vw;
  text-align: center;
  font-size: calc(6px + 28 * (100vw - 320px) / 3680);
}
.button:hover {
  cursor: pointer;
}
@media (max-width: 1235px) {
  .button {
    font-size: 12px;
  }
}
@media (max-width: 1100px) {
  .button {
    width: 50%;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.content__button {
  width: 20%;
  background: #333;
  color: #fdfdfd;
  border-radius: 10px;
  transition: background 0.2s ease-in-out;
}
.content__button:hover {
  background: #646464;
}
@media (max-width: 1200px) {
  .content__button {
    width: 40%;
  }
}

.main__img {
  width: 100%;
  height: 40vw;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 25px;
}

.projects__section {
  padding-top: 4vw;
  padding-bottom: 4vw;
  position: relative;
}
@media (max-width: 1200px) {
  .projects__section {
    padding: 2rem 0 2rem 0;
  }
}

.projects__section > div:first-child {
  position: relative;
}

.projects__items-wrapper {
  display: flex;
  gap: 3.3%;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 4vw;
}
@media (max-width: 1200px) {
  .projects__items-wrapper {
    padding-top: 2rem;
  }
}
@media (max-width: 1235px) {
  .projects__items-wrapper {
    align-items: center;
    justify-content: center;
    gap: 3rem;
  }
}

.projects__item {
  width: 31%;
  height: 30vw;
  background: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  box-shadow: 0px 0px 7px 0px rgba(152, 152, 152, 0.2);
  transition: all 0.3s ease-in-out;
}
.projects__item:hover {
  background: #eeeeee;
  transform: scale(1.02);
}
@media (max-width: 1235px) {
  .projects__item {
    width: 312px;
    height: 400px;
  }
}

.item-img__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6vw;
  height: 6vw;
  border-radius: 50%;
  background: #b5b5b5;
}
.item-img__wrapper img {
  width: 40%;
  height: 40%;
}
@media (max-width: 1050px) {
  .item-img__wrapper {
    width: 4rem;
    height: 4rem;
  }
}

.projects__item-img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 60%;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.item-title {
  font-size: calc(12px + 26 * (100vw - 320px) / 3680);
  display: block;
  text-align: center;
  position: relative;
  line-height: 1.1;
}
@media (max-width: 1280px) {
  .item-title {
    font-size: 16px;
  }
}

.projects__item-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 2vw;
}
@media (max-width: 1150px) {
  .projects__item-content {
    padding: 2rem;
  }
}

.projects__item-button {
  background: #333;
  color: #ffffff;
  width: 50%;
  border-radius: 10px;
  position: relative;
  transition: background 0.3s ease-in-out;
}
.projects__item-button:hover {
  background: #646464;
}
.projects__item-button::after {
  content: "";
  position: absolute;
  top: -2vw;
  left: 0;
  width: 100%;
  height: 1.5px;
  border-radius: 5px;
  background: #333;
}
@media (max-width: 1500px) {
  .projects__item-button::after {
    top: -55%;
  }
}
@media (max-width: 1500px) {
  .projects__item-button::after {
    display: none;
  }
}

.works__section {
  padding: 4vw 0 4vw 0;
  background: #fff;
}
@media (max-width: 1200px) {
  .works__section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.banner {
  padding: 8vw 2vw;
  border-radius: 20px;
  width: 45%;
  background: #f9f9f9;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 0px 7px 0px rgba(152, 152, 152, 0.2);
}
@media (max-width: 1300px) {
  .banner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2vw;
  }
}
@media (max-width: 1250px) {
  .banner {
    padding: 2rem;
  }
}
@media (max-width: 1245px) {
  .banner {
    width: 450px;
    height: 500px;
  }
}
@media (max-width: 600px) {
  .banner {
    width: 300px;
    height: 450px;
    padding: 2rem;
  }
}

.banner-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.banner__title {
  text-align: center;
  line-height: 1.3;
  font-size: calc(8px + 67 * (100vw - 320px) / 3680);
  margin-bottom: 2vw;
}
@media (max-width: 1300px) {
  .banner__title {
    font-size: 25px;
  }
}
@media (max-width: 1150px) {
  .banner__title {
    margin-bottom: 2rem;
  }
}
@media (max-width: 600px) {
  .banner__title {
    font-size: 16px;
  }
}
@media (max-width: 350px) {
  .banner__title {
    margin-bottom: 1rem;
  }
}

.banner__subtitle {
  margin-bottom: 2vw;
  text-align: left;
  width: 100%;
}
@media (max-width: 1200px) {
  .banner__subtitle {
    margin-bottom: 2rem;
  }
}
@media (max-width: 350px) {
  .banner__subtitle {
    margin-bottom: 1rem;
  }
}

.banner__list {
  text-align: start;
  margin-bottom: 3vw;
  width: 100%;
}
@media (max-width: 1150px) {
  .banner__list {
    margin-bottom: 2rem;
  }
}
@media (max-width: 350px) {
  .banner__list {
    margin-bottom: 1rem;
  }
}

.banner__list-item {
  position: relative;
  padding-left: 15px;
  line-height: 1.1;
}
.banner__list-item:not(:last-child) {
  margin-bottom: 8px;
}
.banner__list-item::before {
  content: "";
  position: absolute;
  background: #333;
  width: 12px;
  top: 50%;
  left: 0;
  height: 1.5px;
}
@media (max-width: 330px) {
  .banner__list-item:last-child {
    display: none;
  }
}

.banner__link-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner__link {
  background: #333;
  color: #fff;
  width: 100%;
  text-decoration: none;
  border-radius: 10px;
  text-align: center;
  transition: background 0.3s ease-in-out;
}
.banner__link:hover {
  background: #646464;
}

.works__content-wrapper {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4rem 4rem;
}
@media (max-width: 1205px) {
  .works__content-wrapper {
    justify-content: center;
  }
}

.works__link-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.works__link {
  background: #333;
  width: 40%;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  margin-top: 4vw;
  text-align: center;
  transition: background 0.3s ease-in-out;
}
.works__link:hover {
  background: #646464;
}
@media (max-width: 1200px) {
  .works__link {
    margin-top: 2rem;
  }
}

.work__item {
  width: 45%;
  border-radius: 20px;
  background: #f9f9f9;
  box-shadow: 0px 0px 7px 0px rgba(152, 152, 152, 0.2);
}
.work__item:nth-child(2) {
  order: -1;
}
@media (max-width: 1245px) {
  .work__item {
    width: 450px;
    height: 500px;
  }
}
@media (max-width: 1205px) {
  .work__item:nth-child(2) {
    order: 1;
  }
}
@media (max-width: 600px) {
  .work__item {
    width: 300px;
    height: 450px;
  }
}

.work__item-title {
  font-size: calc(12px + 48 * (100vw - 320px) / 3680);
  padding-bottom: 2vw;
}
@media (max-width: 1300px) {
  .work__item-title {
    font-size: 25px;
  }
}
@media (max-width: 1100px) {
  .work__item-title {
    padding-bottom: 1.5rem;
  }
}
@media (max-width: 600px) {
  .work__item-title {
    font-size: 16px;
  }
}

.work__item-content {
  padding: 2vw;
}
@media (max-width: 1200px) {
  .work__item-content {
    padding: 1rem;
  }
}

.work__item-link {
  background: #333;
  width: 40%;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  margin-top: 2vw;
  text-align: center;
  transition: background 0.3s ease-in-out;
}
.work__item-link:hover {
  background: #646464;
}
@media (max-width: 1100px) {
  .work__item-link {
    margin-top: 0;
  }
}

.map {
  padding-top: 4vw;
  border: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width: 1200px) {
  .map {
    padding-top: 2rem;
  }
}
@media (max-width: 675px) {
  .map {
    height: 32rem;
  }
}

.map-wrapper {
  position: relative;
  width: 100%;
  height: 35vw;
}
@media (max-width: 1460px) {
  .map-wrapper {
    height: 32rem;
  }
}
@media (max-width: 675px) {
  .map-wrapper {
    height: auto;
  }
}

.map__section {
  padding-top: 4vw;
  /*@media (max-width: 1200px)
  *  padding-top: 4rem*/
}

.map__form {
  width: 22%;
  background: white;
  border-radius: 20px;
  position: absolute;
  top: 14%;
  right: 5%;
  box-shadow: 0px 0px 7px 0px rgba(152, 152, 152, 0.2);
}
@media (max-width: 1475px) {
  .map__form {
    width: 310px;
  }
}
@media (max-width: 675px) {
  .map__form {
    position: static;
    width: 100%;
    border-radius: 0;
  }
}

.form__wrapper {
  padding: 2vw 3vw 2vw 3vw;
  display: flex;
  flex-direction: column;
  gap: 1vw;
}
@media (max-width: 1200px) {
  .form__wrapper {
    padding: 2rem;
    gap: 1rem;
  }
}

.form__input {
  border: 1px solid #4b4b4b;
  border-radius: 5px;
  padding: 8px;
  width: 100%;
}

.input__number {
  margin-top: 1vw;
}
@media (max-width: 1200px) {
  .input__number {
    margin-top: 1rem;
  }
}

.wpcf7 {
  width: 60%;
}

.wpcf7-form-control-wrap:has(.feedback__subtitle-input) {
  display: none;
}

@media (max-width: 675px) {
  .feedback__input,
  .feedback__terms,
  .feedback__button {
    width: 100% !important;
  }
}

.form__button {
  display: inline-block;
  background: #333 !important;
  color: #fff;
  width: 100%;
  text-decoration: none;
  border-radius: 10px;
  margin-top: 1.5vw;
  text-align: center;
  transition: background 0.3s ease-in-out;
}
.form__button:hover {
  background: #646464 !important;
}

.wpcf7 form .wpcf7-response-output {
  margin: 0em 1em 1em;
}

.wpcf7-not-valid-tip {
  display: none;
}

.wpcf7-not-valid {
  border: 2px solid #ff0000 !important;
}

.wpcf7-response-output {
  border: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.wpcf7-spinner {
  margin: 0 50% !important;
}

.form__title {
  font-size: calc(12px + 48 * (100vw - 320px) / 3680);
  text-align: left;
}
@media (max-width: 1300px) {
  .form__title {
    font-size: 25px;
  }
}

.form__subtitle {
  line-height: 1.55;
}

.map__terms {
  line-height: 1.55;
}

.feedback__wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  z-index: 30;
  transform: translateX(-150%);
}

.feedback__wrapper.active {
  transform: translateX(0%);
}

.wpcf7 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.feedback__form {
  width: 50%;
  background: white;
  border-radius: 20px;
  box-shadow: 0px 0px 7px 0px rgba(152, 152, 152, 0.2);
  z-index: 10;
  position: relative;
}
@media (max-width: 1475px) {
  .feedback__form {
    width: 310px;
  }
}

.overlay {
  position: absolute;
  top: 0;
  background: rgba(0, 0, 0, 0.3764705882);
  height: 100%;
  width: 100%;
  z-index: 1;
}

.close__button {
  position: absolute;
  top: 25px;
  right: 20px;
  width: 20px;
  height: 2px;
  background: #000;
  transform: rotate(45deg);
  cursor: pointer;
}
.close__button::before {
  content: "";
  width: 100%;
  position: absolute;
  height: 2px;
  transform: rotate(-90deg);
  background: #000;
}/*# sourceMappingURL=index.css.map */