:root {
  --color-black: #000;
  --color-white: #fff;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

a {
  text-decoration: none;
}

body {
  box-sizing: border-box;
}

aside,
nav,
footer,
header,
section {
  display: block;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  border: none;
  background-color: transparent;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

ul li {
  list-style: none;
}

dl,
ol,
ul {
  margin: 0;
  padding: 0;
}

label {
  margin: 0;
}

p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
  margin: 0;
}

input:not([type=checkbox]):not([type=radio]),
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select {
  border: 1px rgba(255, 255, 255, 0.5) solid;
  border-radius: 10px;
  padding: 0px 5px;
  font-size: 14px;
  background-color: #ffffff00;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.5s ease-out;
}
select:hover {
  border: 1px #f4e1b6 solid; 
  color: #f4e1b6;;
  
}
option {
  color: rgb(150 150 150);
}

* {
  font-family: "Gilroy", sans-serif;
}

body {
  background: linear-gradient(269.82deg, #15181a 0.11%, #16181b 10.1%, #16181b 18.88%, #15191c 30.32%, #191c1f 43.74%, #1b1f21 54.14%, #1d2123 62.51%, #1d2125 72.05%, #1c2023 81.28%, #1b1f21 97.52%);
}

body.scroll-hide {
  overflow: hidden;
}

.container {
  max-width: 1270px;
  margin: 0 auto;
  padding: 0 15px;
}

.page {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.title {
  font-weight: 700;
  font-size: 48px;
  line-height: 144.02%;
  color: #ffffff;
}

.title span {
  color: #f4e1b6;
}

.subtitle {
  font-weight: 500;
  font-size: 14px;
  line-height: 170%;
  color: rgba(255, 255, 255, 0.5);
  margin: 20px auto 0 auto;
  max-width: 497px;
}

.text-center {
  text-align: center;
}

.btn {
  background: rgba(244, 225, 182, 0.05);
  border-radius: 8px;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #f4e1b6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  padding: 28px 75px;
  transition: background 0.3s ease-in-out;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 369px;
}

@media (any-hover: hover) {
  .btn:hover {
    background: rgba(244, 225, 182, 0.09);
  }
}

.btn.btn--white {
  color: #ffffff;
  background: rgba(244, 225, 182, 0.1);
}

@media (any-hover: hover) {
  .btn.btn--white:hover {
    background: rgba(244, 225, 182, 0.15);
  }
}

.btn.btn--yellow {
  color: #1a1e21;
  background: #f4e1b6;
}

@media (any-hover: hover) {
  .btn.btn--yellow:hover {
    background: #efd596;
  }
}

.iti__flag {
  background-image: url("../img/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  .iti__flag {
    background-image: url("../img/flags@2x.png");
  }
}

.header {
  padding: 30px 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 200;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1370px;
}

.nav ul {
  display: flex;
  gap: 50px;
}

.nav ul a {
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease-in-out;
}

@media (any-hover: hover) {
  .nav ul a:hover:not(.active) {
    color: #fff;
  }
}

.nav ul a.active {
  color: #f4e1b6;
  font-weight: 700;
}

.phone-btn {
  background: #f4e1b6;
  -webkit-backdrop-filter: blur(7.85714px);
  backdrop-filter: blur(7.85714px);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s ease-in-out;
}

@media (any-hover: hover) {
  .phone-btn:hover {
    background: #f8d88e;
  }
}

.phone-btn img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.burger {
  width: 24px;
  height: 24px;
  background-image: url("../img/Menu_Alt_02.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  cursor: pointer;
  transition: all 0.3s;
  display: none;
}

.desc-hide {
  display: none !important;
}

.promo {
  position: relative;
  z-index: 1;
  min-height: 830px;
  padding: 260px 0 100px 0;
}

.promo__img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
}

.promo__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.promo__ofer {
  max-width: 515px;
  padding-left: 100px;
}

.promo__ofer h1 {
  font-weight: 700;
  font-size: 70px;
  line-height: 144.02%;
  color: #fff;
  text-transform: uppercase;
}

.promo__ofer h1 span {
  color: #f4e1b6;
}

.promo__ofer p {
  font-weight: 500;
  font-size: 18px;
  line-height: 170%;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 24px;
}

.promo__btn {
  margin-top: 48px;
}

.about {
  margin-top: 120px;
}

.about .container {
  max-width: 1370px;
}

.about__wrapper {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 75px;
  padding: 60px 0;
  border-top: 1px solid rgba(244, 225, 182, 0.05);
  border-bottom: 1px solid rgba(244, 225, 182, 0.05);
}

.about-item {
  padding-right: 32px;
  border-right: 1px solid rgba(244, 225, 182, 0.05);
}

.about-item:last-child {
  padding-right: 0;
  border-right: none;
}

.about-item p {
  font-weight: 500;
  font-size: 16px;
  line-height: 170%;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 20px;
}

.about__bottom {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.about-num {
  min-height: 310px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-num div {
  font-weight: 700;
  font-size: 100px;
  line-height: 60%;
  color: #f4e1b6;
  display: flex;
  align-items: flex-end;
}

.about-num div span {
  font-size: 16px;
  line-height: 16px;
  display: block;
  margin-left: 8px;
}

.about-num p {
  font-weight: 500;
  font-size: 16px;
  line-height: 170.02%;
  color: #ffffff;
  margin-top: 30px;
}

.mission {
  margin-top: 100px;
}

.mission .container {
  max-width: 939px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mission__left {
  max-width: 369px;
}

.mission__left h2 {
  font-weight: 700;
  font-size: 48px;
  line-height: 144.02%;
  color: #f4e1b6;
}

.mission__left p {
  font-weight: 500;
  font-size: 18px;
  line-height: 170.02%;
  color: #ffffff;
  margin-top: 20px;
}

.mission__btn {
  margin-top: 50px;
}

.mission__right img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.tabs-sec {
  margin-top: 200px;
}

.tab-link-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tab {
  font-weight: 500;
  font-size: 16px;
  line-height: 170%;
  color: #f4e1b6;
  padding: 8px 16px;
  background: rgba(244, 225, 182, 0.05);
  border: 1px solid rgba(244, 225, 182, 0);
  border-radius: 4px;
  transition: all 0.3s ease;
}

@media (any-hover: hover) {
  .tab:hover:not(.tab-active) {
    background: rgba(244, 225, 182, 0.1);
  }
}

.tab-active {
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(244, 225, 182, 0.05);
  background-color: transparent;
  pointer-events: none;
}

.tab-content-wrapper {
  margin-top: 60px;
}

.tabs-content {
  display: none;
}

.tabs-content-active {
  display: flex;
  justify-content: space-between;
  gap: 70px;
}

.tabs-content__left {
  max-width: 760px;
}

.tabs-content__left .list-custom {
  margin-top: 60px;
}

.list-custom {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.list-custom li {
  font-weight: 500;
  font-size: 16px;
  line-height: 170%;
  color: rgba(255, 255, 255, 0.75);
  padding: 6px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 35px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.list-custom li::before {
  content: "";
  background-image: url("../img/Layer.svg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 16px;
  min-width: 16px;
  height: 16px;
}

.list-custom li span {
  color: rgba(255, 255, 255, 0.25);
}

.tabs-content__btns {
  margin-top: 100px;
  display: flex;
  gap: 20px;
}

.tabs-content__right img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.gallery {
  margin-top: 100px;
}

.gallery .gallery__wrapper {
  margin-top: 2.77778vw;
  margin-right: -16.66667vw;
}

.gallery .swiper {
  padding-bottom: 42px;
}

.gallery .swiper-slide {
  height: auto;
  min-height: 100%;
  height: 500px;
}

.gallery .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.gallery .swiper-pagination-progressbar {
  top: inherit;
  bottom: 0;
  background: rgba(244, 225, 182, 0.05);
  border-radius: 11px;
}

.gallery .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #f4e1b6;
  border-radius: 11px;
}

.sec__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.slider-nav {
  position: relative;
  display: flex;
}

.slider-nav div {
  position: static;
  margin: 0;
  width: 40px;
  height: 40px;
}

.slider-nav div::after {
  font-size: 0;
}

.swiper-button-next::after {
  content: url("../img/arrow.svg");
}

.swiper-button-prev::after {
  content: url("../img/arrow.svg");
  transform: rotate(180deg);
}

.reviews {
  margin-top: 100px;
}

.reviews__wrapper {
  margin-top: 35px;
  border-bottom: 1px solid rgba(244, 225, 182, 0.05);
}

.reviews-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px;
}

.reviews-slide img {
  max-width: 150px;
}

.reviews-slide p {
  max-width: 856px;
  font-weight: 500;
  font-size: 16px;
  line-height: 170%;
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 34px;
}

.reviews-slide a {
  color: #f4e1b6;
  font-weight: 500;
  font-size: 16px;
  line-height: 170%;
  margin-top: 34px;
}

.team {
  margin-top: 190px;
}

.team .container {
  max-width: 1170px;
}

.team-item {
  display: grid;
  grid-template-columns: calc(45% - 27px) calc(55% - 27px);
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 100px;
}

.team-item>h3 {
  display: none;
}

.team-item:last-child {
  margin-bottom: 0;
}

.team-item__img {
  height: 515px;
  overflow: hidden;
  border-radius: 8px;
}

.team-item__img img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 8px;
}

.team-item__info h3 {
  font-weight: 700;
  font-size: 48px;
  line-height: 170%;
  color: #f4e1b6;
}

.team-item__info .position {
  font-weight: 700;
  font-size: 20px;
  line-height: 170%;
  color: #ffffff;
  text-transform: none;
}

.team-item__info .descr {
  font-weight: 500;
  font-size: 16px;
  line-height: 170%;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 40px;
}

.team-item__info .descr p {
  margin-bottom: 20px;
}

.team-item__info .descr p:last-child {
  margin-bottom: 0;
}

.team-item__info .soc-wrap {
  margin-top: 55px;
}

.gallery-page {
  margin-top: 190px;
}

.gallery-page h2 {
  font-weight: 700;
  font-size: 70px;
  line-height: 170%;
  color: #ffffff;
}

.gallery-page .tab-link-wrapper {
  margin-top: 20px;
}

.gallery-page .container {
  max-width: 1117px;
}

.gallery-page .tabs-content-active {
  flex-direction: column;
  gap: 40px;
}

.gallery-page .tab-content-wrapper {
  margin-top: 40px;
}

.gallery-page__wrapper {
  display: flex;
  flex-wrap: wrap;
  row-gap: 40px;
  justify-content: space-between;
}

.gallery-page__wrapper a {
  width: calc(50% - 20px);
}

.gallery-page__wrapper a.w100 {
  width: 100%;
}

.gallery-page__wrapper a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 8px;
}

.gallery-page__btn-more {
  width: 100%;
  cursor: pointer;
}

.services {
  margin-top: 190px;
}

.services-item {
  margin-bottom: 150px;
  z-index: 1;
  padding: 50px;
  position: relative;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.services-item::before {
  content: "";
  position: absolute;
  background-image: url("../img/overlay.png");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  left: 0;
  top: 0;
  z-index: -1;
}

.services-item:last-child {
  margin-bottom: 0;
}

.services-item h3 {
  font-weight: 700;
  font-size: 70px;
  line-height: 144.02%;
  display: flex;
  align-items: center;
  color: #ffffff;
}

.services-item__img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  left: 0;
  top: 0;
  z-index: -2;
}

.services-item__top {
  margin-bottom: 50px;
}

.services-item__top p {
  font-weight: 500;
  font-size: 16px;
  line-height: 170%;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 30px;
  max-width: 696px;
}

.services-item__bottom {
  display: flex;
  margin-top: auto;
  align-items: flex-end;
}

.services-item__bottom .list-custom {
  gap: 10px;
}

.services-item__bottom .list-custom li {
  background: rgba(0, 0, 0, 0.25);
  border: none;
  color: #f4e1b6;
}

.services-item__bottom .list-custom li::before {
  background-image: url("../img/Layer2.svg");
}

.services-item__btn {
  height: -moz-fit-content;
  height: fit-content;
}

.contact {
  margin-top: 190px;
}

.contact__wrapper {
  display: flex;
  gap: 50px;
}

.contact__left h1 {
  font-weight: 700;
  font-size: 70px;
  line-height: 100%;
  color: #ffffff;
  margin-bottom: 40px;
}

.form--textarea textarea {
  height: 130px;
  resize: none;
}

.contact__right--top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.contact__right--top .contact-info {
  display: flex;
  -moz-column-gap: 50px;
  column-gap: 50px;
  flex-wrap: wrap;
}

.contact__right--top .soc-wrap {
  gap: 4px;
}

.contact__right--top .soc-wrap a {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.map {
  margin-top: 43px;
  margin-left: 40px;
  margin-right: -75px;
}

.map svg path {
  fill: #f4e1b6;
  transition: all 0.3s ease-in-out;
}

@media (any-hover: hover) {
  .map svg path:hover {
    fill-opacity: 1;
  }
}

.footer {
  margin-top: 150px;
  padding-bottom: 100px;
}

.footer__wrapper {
  display: flex;
  justify-content: space-between;
}

.footer__col {
  display: flex;
  flex-direction: column;
}

.footer__col:first-child {
  max-width: 136px;
}

.footer__col:last-child {
  max-width: 370px;
}

.footer__col .soc-wrap {
  margin-top: auto;
}

.footer__col .contact-info {
  margin-top: 24px;
}

.footer__col .contact-item {
  margin-bottom: 24px;
}

.footer__col .contact-item:last-child {
  margin-bottom: 0;
}

.footer__col h3 {
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
  margin-bottom: 24px;
}

.footer__logo img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.footer__descr {
  font-weight: 500;
  font-size: 14px;
  line-height: 170%;
  color: rgba(255, 255, 255, 0.5);
  margin-top: auto;
}

.soc-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.soc-wrap a {
  transition: opacity 0.3s ease-in-out;
}

@media (any-hover: hover) {
  .soc-wrap a:hover {
    opacity: 0.7;
  }
}

.soc-wrap a img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.contact-item {
  font-weight: 500;
  font-size: 16px;
  line-height: 32px;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: opacity 0.3s ease-in-out;
}

@media (any-hover: hover) {
  .contact-item:hover {
    opacity: 0.8;
  }
}

.contact-item::before {
  content: "";
  background-repeat: no-repeat;
  background-size: cover;
  width: 18px;
  min-width: 18px;
  height: 18px;
}

.contact-item--address::before {
  background-image: url("../img/Map_Pin.svg");
}

.contact-item--email::before {
  background-image: url("../img/Mail_Open.svg");
}

.form__input {
  margin-bottom: 16px;
}

.form__input label {
  display: block;
  font-weight: 500;
  font-size: 12px;
  line-height: 22px;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 2px;
}

.form__input input,
.form__input textarea {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  width: 100%;
  background-color: transparent;
  padding: 14px;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  color: #ffffff;
}

.form__input input {
  height: 50px;
}

.form__btn {
  margin-top: 24px;
  padding: 16px;
}

.iti {
  width: 100%;
}

.modal-wrap {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.69);
  box-shadow: 10px 20px 50px rgba(0, 0, 0, 0.24);
  z-index: 20000000;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  transition: opacity 0.3s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-wrap.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  scrollbar-width: none;
  -ms-overflow-style: none;
  overflow-y: auto;
  height: -moz-fit-content;
  height: fit-content;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-height: 95vh;
  min-width: 470px;
  max-width: 470px;
}

.modal::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.modal__body {
  background: #1a1e21;
  border: 1px solid rgba(244, 225, 182, 0.05);
  border-radius: 8px;
  padding: 50px;
  width: 100%;
  position: relative;
}

.modal__body h3 {
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
  margin-bottom: 26px;
}

.modal__close {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  cursor: pointer;
  transition: filter 0.2s ease-in-out;
}

@media (any-hover: hover) {
  .modal__close:hover {
    filter: brightness(0);
  }
}

.modal__close::before {
  content: "";
  position: absolute;
  background-image: url("../img/close.svg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 34px;
  height: 34px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 1024px) {
  .promo__ofer {
    padding-left: 0;
    max-width: 379px;
  }

  .promo__ofer h1 {
    font-size: 50px;
    line-height: 144.02%;
  }

  .promo__ofer p {
    font-size: 14px;
    line-height: 170%;
    margin-top: 8px;
  }

  .btn {
    font-size: 14px;
    line-height: 17px;
    padding: 16px;
  }

  .promo {
    min-height: 750px;
    padding: 110px 0 20px 0;
  }

  .logo {
    width: 50px;
    height: 43px;
    position: relative;
    z-index: 2;
  }

  .logo img {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .header {
    padding: 16px 0;
  }

  .nav ul {
    gap: 16px;
    flex-direction: column;
  }

  .header .nav {
    position: fixed;
    display: flex;
    flex-direction: column;
    background: linear-gradient(0.12deg, #15181a 4.44%, #16181b 13.73%, #16181b 21.89%, #15191c 32.51%, #191c1f 44.98%, #1b1f21 54.65%, #1d2123 62.42%, #1d2125 71.28%, #1c2023 79.87%, #1b1f21 94.95%);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 100px 16px 30px;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    pointer-events: none;
  }

  .header .nav.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .header .nav .soc-wrap {
    margin-top: 24px;
  }

  .header .nav .promo__btn {
    margin-top: auto;
  }

  .btn {
    min-width: auto;
  }

  .phone-btn {
    display: none;
  }

  .burger {
    display: block;
    position: relative;
    z-index: 2;
  }

  .burger.active {
    background-image: url("../img/Close_SM.svg");
  }

  .desc-hide {
    display: flex !important;
  }

  .promo__btn {
    width: 100%;
    margin-top: 435px;
  }

  .container {
    height: 100%;
  }

  .promo__img {
    height: calc(100% - 70px);
  }

  body {
    background: linear-gradient(90deg, #191d20 6.27%, #171b1d 36.53%, #16181b 70.58%, #151719 96.39%);
  }

  .title {
    font-size: 28px;
    text-align: left;
  }

  .subtitle {
    font-size: 12px;
    text-align: left;
    margin-top: 8px;
    max-width: 100%;
  }

  .about {
    margin-top: 80px;
  }

  .about__wrapper {
    grid-template-columns: 1fr;
    padding: 0;
    border: none;
    margin-top: 24px;
    gap: 0;
  }

  .about-item {
    border-right: none;
    border-top: 1px solid rgba(244, 225, 182, 0.05);
    padding: 25px 0;
  }

  .about-item p {
    font-size: 14px;
    margin-top: 16px;
  }

  .about__bottom {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-num {
    min-height: 187px;
    padding: 20px 22px;
  }

  .about-num div {
    font-size: 60px;
  }

  .about-num p {
    font-size: 12px;
  }

  .mission .container {
    flex-direction: column-reverse;
  }

  .mission {
    margin-top: 40px;
  }

  .mission__left h2 {
    font-weight: 700;
    font-size: 28px;
    line-height: 144.02%;
    color: #f4e1b6;
  }

  .mission__left p {
    font-size: 14px;
    margin-top: 8px;
  }

  .mission__left {
    margin-top: 24px;
  }

  .mission__btn {
    width: 100%;
    margin-top: 24px;
  }

  .tab-link-wrapper {
    flex-wrap: nowrap;
    padding-bottom: 15px;
    overflow-x: auto;
    margin-right: -15px;
  }

  .tab {
    white-space: nowrap;
    font-size: 14px;
    padding: 8px 16px;
  }

  .tabs-sec {
    margin-top: 80px;
  }

  .tab-content-wrapper {
    margin-top: 40px;
  }

  .list-custom li {
    font-size: 12px;
    white-space: nowrap;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 92vw;
    overflow-x: auto;
  }

  .list-custom {
    gap: 10px;
    flex-direction: column;
    max-width: 100%;
  }

  .tabs-content__btns {
    flex-direction: column;
  }

  .tabs-content__left .list-custom {
    margin-top: 40px;
  }

  .btn {
    width: 100%;
  }

  .tabs-content__btns {
    gap: 8px;
    margin-top: 40px;
  }

  .gallery {
    margin-top: 80px;
  }

  .slider-nav div {
    width: 20px;
    height: 20px;
    transform: scale(0.5);
  }

  .gallery .gallery__wrapper {
    margin-right: -15px;
    margin-top: 16px;
  }

  .gallery .swiper-slide {
    height: 300px;
  }

  .gallery .swiper-slide img {
    border-radius: 5px;
  }

  .gallery .swiper {
    padding-bottom: 16px;
  }

  .reviews-slide {
    padding: 24px 0;
  }

  .reviews-slide p {
    font-size: 14px;
    line-height: 170%;
    margin-top: 24px;
  }

  .reviews-slide a {
    margin-top: 20px;
  }

  .footer__wrapper {
    flex-direction: column;
  }

  .footer__descr {
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    white-space: nowrap;
  }

  .footer {
    margin-top: 80px;
    padding-bottom: 80px;
    position: relative;
  }

  .footer__wrap-mob {
    display: flex;
    justify-content: space-between;
  }

  .contact-item {
    font-size: 12px;
    line-height: 14px;
  }

  .footer__logo {
    width: 50px;
    height: 41.03px;
  }

  .footer__col:first-child {
    max-width: 225px;
  }

  .footer__col .contact-item {
    margin-bottom: 6px;
  }

  .footer__col .soc-wrap {
    margin-top: 16px;
  }

  .footer__col--three {
    background: #1a1e21;
    border: 1px solid rgba(244, 225, 182, 0.05);
    border-radius: 8px;
    padding: 32px 21px;
    margin-top: 40px;
  }

  .footer__col h3 {
    text-align: center;
  }

  .footer__col:last-child {
    max-width: 100%;
  }

  .team-item {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .team-item>h3 {
    display: block;
    font-weight: 700;
    font-size: 28px;
    line-height: 144.02%;
    color: #ffffff;
  }

  .team {
    margin-top: 110px;
  }

  .team-item__info h3 {
    display: none;
  }

  .team-item__info .position {
    color: #f4e1b6;
    font-size: 14px;
  }

  .team-item__info .descr {
    font-size: 14px;
    line-height: 170%;
    margin-top: 8px;
  }

  .team-item__info .descr p {
    margin-bottom: 15px;
  }

  .team-item__info .soc-wrap {
    margin-top: 24px;
  }

  .team-item {
    margin-bottom: 80px;
  }

  .team-item__img {
    width: calc(100% + 30px);
    transform: translateX(-15px);
    height: 375px;
    position: relative;
  }

  .team-item__img img {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0;
  }

  .gallery-page {
    margin-top: 110px;
  }

  .gallery-page h2 {
    font-size: 28px;
  }

  .gallery-page__wrapper a {
    width: 100%;
  }

  .gallery-page__wrapper a img {
    border-radius: 0;
  }

  .gallery-page__wrapper {
    width: calc(100% + 30px);
    transform: translateX(-15px);
    gap: 24px;
  }

  .gallery-page .tabs-content-active {
    gap: 24px;
  }

  .gallery-page .tab-content-wrapper {
    margin-top: 24px;
  }

  .services {
    margin-top: 110px;
  }

  .services-item h3 {
    font-size: 28px;
  }

  .services-item {
    padding: 32px 16px;
    width: calc(100% + 30px);
    transform: translateX(-15px);
    border-radius: 0;
    border: none;
    min-height: inherit;
    margin-bottom: 40px;
  }

  .services-item__top p {
    font-size: 12px;
    margin-top: 16px;
  }

  .services-item__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-item__btn {
    margin-top: 32px;
  }

  .btn {
    gap: 8px;
  }

  .contact__right--top {
    flex-direction: column;
    margin-bottom: 40px;
  }

  .contact__left h1 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 24px;
  }

  .contact {
    margin-top: 110px;
  }

  .contact__right--top .contact-info {
    row-gap: 10px;
  }

  .contact__right {
    display: flex;
    flex-direction: column-reverse;
  }

  .map {
    margin: 0;
    margin-bottom: 24px;
  }

  .modal {
    min-width: 95%;
    max-width: 95%;
  }

  .modal__body {
    padding: 35px 25px;
  }
}

/*# sourceMappingURL=main.css.map */