* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  color: var(--Dark-Blue, #2e2d4d);
}

.container {
  max-width: 1178px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  color: var(--Dark-Blue, #2e2d4d);
}

a:hover {
  color: var(--Gold, #cd9452);
}

.gallery {
  margin: 140px 0;
}

.gallery h2 {
  margin-bottom: 32px;
}

@media (max-width: 1199px) {
  .gallery {
    margin: 60px 0;
  }
  .gallery h2 {
    margin-bottom: 30px;
  }
}

.gallery-wrap {
  position: relative;
}

.gallery-wrap__slider {
  margin-bottom: 30px;
}

.gallery-wrap__slider .swiper-slide {
  height: 645px;
  width: auto;
}

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

@media screen and (max-width: 1199px) {
  .gallery-wrap__slider .swiper-slide {
    height: 467px;
  }
}

@media screen and (max-width: 767px) {
  .gallery-wrap__slider .swiper-slide {
    margin-bottom: 10px;
    height: 346px;
  }
}

@media screen and (max-width: 575px) {
  .gallery-wrap__slider .swiper-slide {
    height: 64vw;
  }
}

.gallery-wrap__thumbs {
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.gallery-wrap__thumbs .swiper-slide {
  text-align: center;
  overflow: hidden;
  height: 198px;
  opacity: 0.6;
  cursor: pointer;
}

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

@media screen and (max-width: 1199px) {
  .gallery-wrap__thumbs .swiper-slide {
    height: 135px;
  }
}

@media screen and (max-width: 767px) {
  .gallery-wrap__thumbs .swiper-slide {
    height: 100px;
  }
}

@media screen and (max-width: 575px) {
  .gallery-wrap__thumbs .swiper-slide {
    height: 20vw;
  }
}

.gallery-wrap__thumbs .swiper-slide:hover {
  opacity: 1;
}

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

.gallery-wrap__nav {
  position: absolute;
  bottom: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 110%;
  left: -5%;
  height: 42px;
  top: 34%;
}

.gallery-wrap__nav .swiper-button-next,
.gallery-wrap__nav .swiper-button-prev {
  position: relative;
  color: white;
  width: 82px;
  height: 82px;
  border-radius: 5.416px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.gallery-wrap__nav .swiper-button-next svg,
.gallery-wrap__nav .swiper-button-prev svg {
  width: auto;
  height: auto;
  position: relative;
}

.gallery-wrap__nav .swiper-button-next::after,
.gallery-wrap__nav .swiper-button-prev::after {
  display: none;
}

.gallery-wrap__nav .swiper-button-next:hover,
.gallery-wrap__nav .swiper-button-prev:hover {
  opacity: 0.9;
}

@media (max-width: 767px) {
  .gallery-wrap__thumbs {
    display: none !important;
  }
  .gallery-wrap__nav .swiper-button-next,
  .gallery-wrap__nav .swiper-button-prev {
    width: 37px;
    height: 37px;
  }
  .gallery-wrap__nav .swiper-button-next svg,
  .gallery-wrap__nav .swiper-button-prev svg {
    width: 37px;
  }
  .gallery-wrap__nav .swiper-button-prev svg {
    left: -4px;
  }
  .gallery-wrap__nav .swiper-button-next svg {
    right: -4px;
  }
}

.hero {
  background-image: url(../images/new-hero.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero .br-mobile {
  display: none;
}

.hero .container {
  position: relative;
  z-index: 100;
}

.hero__content {
  padding-top: 310px;
  padding-bottom: 120px;
}

.hero__content-subheader {
  color: white;
}

.hero__content-title {
  margin-top: 16px;
  color: white;
}

.hero__content-btn {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}

@media (max-width: 992px) {
  .hero .br-mobile {
    display: block;
  }
  .hero__content {
    padding-top: 140px;
    padding-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .hero__content-btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 16px;
  }
}

.btn {
  color: var(--White, #fff);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: 140%;
  text-transform: uppercase;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 17px 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  height: 56px;
  border-radius: 8px;
  background: var(--Yellow, #e5821b);
}

.btn:hover {
  opacity: 0.9;
  color: white;
}

@media (max-width: 575px) {
  .btn {
    width: 100%;
  }
}

h1 {
  font-size: 80px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
  color: var(--Dark-Blue, #2e2d4d);
}

@media (max-width: 991px) {
  h1 {
    font-size: 40px;
  }
}

h2 {
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
  color: var(--Dark-Blue, #2e2d4d);
}

@media (max-width: 991px) {
  h2 {
    font-size: 40px;
  }
}

h3 {
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
}

@media (max-width: 991px) {
  h3 {
    font-size: 22px;
  }
}

h4 {
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
}

@media (max-width: 991px) {
  h4 {
    font-size: 18px;
  }
}

p {
  line-height: 160%;
}

.sec1 {
  margin: 140px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}

.sec1 h3 {
  color: var(--Gold, #cd9452);
}

.sec1__block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.sec1__block-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.sec1__block-item h5 {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
}

.sec1__block-item p {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
}

@media (max-width: 992px) {
  .sec1 {
    margin: 60px 0;
    gap: 24px;
  }
  .sec1__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 30px;
  }
}

.sec-contact {
  padding: 80px 0;
  background: var(--Light-Grey, #eff2fb);
}

.sec-contact h3 {
  margin-top: 32px;
  color: var(--Gold, #cd9452);
}

.sec-contact__data {
  margin-top: 20px;
}

@media (max-width: 992px) {
  .sec-contact {
    padding: 40px 0;
  }
  .sec-contact__data {
    margin-top: 16px;
  }
}

.footer {
  background: var(--Dark-Blue, #2e2d4d);
  padding: 80px 0;
}

.footer__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.footer__item {
  width: 263px;
  opacity: 0.8;
  color: white;
}

.footer__item a {
  color: white;
}

.footer__item a:hover {
  color: var(--Gold, #cd9452);
}

@media (max-width: 992px) {
  .footer {
    padding: 40px 0;
  }
  .footer__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    row-gap: 32px;
  }
  .footer__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 24px;
  }
}

.nav {
  width: calc(100% - 32px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px 0;
  position: absolute;
}

.nav__logo {
  position: relative;
  z-index: 100;
}

.nav__logo-light {
  display: block;
}

.nav__logo-dark {
  display: none;
}

.nav.menu-active .nav__logo-light {
  display: none;
}

.nav.menu-active .nav__logo-dark {
  display: block;
}

.nav__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 100;
}

.nav__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: white;
  margin: 5px 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.nav__hamburger.active span {
  background-color: var(--Dark-Blue, #2e2d4d);
}

.nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav ul li a {
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: 140%;
  letter-spacing: 1.6px;
  color: white;
  text-transform: uppercase;
}

.nav ul li a:hover {
  color: #e5821b;
}

.nav ul li .btn {
  color: white;
}

.nav ul li .btn:hover {
  color: white;
}

@media (max-width: 992px) {
  .nav__hamburger {
    display: block;
  }
  .nav__hamburger.active span:nth-child(1) {
    -webkit-transform: rotate(45deg) translate(4px, 5px);
            transform: rotate(45deg) translate(4px, 5px);
  }
  .nav__hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .nav__hamburger.active span:nth-child(3) {
    -webkit-transform: rotate(-45deg) translate(5px, -6px);
            transform: rotate(-45deg) translate(5px, -6px);
  }
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: white;
    padding: 140px 20px;
    z-index: 99;
  }
  .nav__menu.active {
    right: 0;
  }
  .nav__menu ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
  .nav__menu ul li a {
    color: var(--Dark-Blue, #2e2d4d);
    padding: 20px 0;
  }
  .nav__menu ul .btn {
    color: white;
    margin-top: 20px;
    padding: 0 20px;
  }
  .nav__menu ul .btn:hover {
    color: white;
  }
}
/*# sourceMappingURL=main.css.map */