* {
  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;
  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 97px;
  }
  .gallery h2 {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .gallery {
    margin: 60px 0;
  }
}

.photo-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
  max-width: 100%;
  box-sizing: border-box;
}
.photo-list img {
  max-width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.photo-list img:hover {
  opacity: 0.8;
}
@media (max-width: 991px) {
  .photo-list {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
  }
}
@media (max-width: 767px) {
  .photo-list {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 16px;
  }
}
@media (max-width: 575px) {
  .photo-list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.gallery-wrap {
  display: none;
  position: relative;
}
.gallery-wrap.active {
  display: block;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 1140px;
  width: 85%;
  z-index: 99999;
}
.gallery-wrap.active::before {
  content: "";
  position: absolute;
  left: -100vw;
  top: -100vw;
  width: 200vw;
  height: 500vw;
  background-color: rgba(29, 26, 22, 0.95);
}
.gallery-wrap.active .gallery-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #e6821b;
  color: #fff;
  border: none;
  font-size: 32px;
  font-weight: bold;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transform: rotate(0deg);
  transition: all 0.3s;
}
.gallery-wrap.active .gallery-close:hover {
  transform: rotate(180deg);
}
.gallery-wrap__slider {
  margin-bottom: 16px;
}
.gallery-wrap__slider .swiper-slide {
  height: 645px;
  width: auto;
}
.gallery-wrap__slider .swiper-slide img {
  height: 100%;
  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: 162px;
  opacity: 0.6;
  cursor: pointer;
}
.gallery-wrap__thumbs .swiper-slide img {
  height: 100%;
  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: flex;
  width: 100%;
  justify-content: space-between;
  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;
  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;
}
.gallery-wrap__nav .swiper-pagination {
  display: none;
}
@media (max-width: 767px) {
  .gallery-wrap .gallery-close {
    display: none;
  }
  .gallery-wrap__thumbs {
    display: none !important;
  }
  .gallery-wrap__nav {
    top: auto;
    bottom: -28px;
    width: 100%;
    left: 0;
  }
  .gallery-wrap__nav .swiper-pagination {
    display: block;
    color: var(--Dark-Blue, #2e2d4d);
    text-align: center;
    font-family: "DM Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%;
    top: 20px;
    z-index: 1 !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 {
    left: 0;
  }
  .gallery-wrap__nav .swiper-button-prev svg {
    left: 0px;
  }
  .gallery-wrap__nav .swiper-button-next {
    right: 0;
  }
  .gallery-wrap__nav .swiper-button-next svg {
    right: 0px;
  }
  .gallery-wrap.active {
    width: calc(100% - 40px) !important;
  }
  .gallery-wrap.active .gallery-close {
    font-size: 26px;
    width: 35px;
    height: 35px;
  }
  .gallery-wrap.active .swiper-pagination {
    color: var(--Dark-Blue, #ffffff);
  }
}

.hero {
  background-image: url(../images/hero-new2.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: 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 {
    flex-direction: column;
    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: inline-flex;
  padding: 17px 20px;
  justify-content: 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: flex;
  flex-direction: column;
  gap: 32px;
}
.sec1 h3 {
  color: var(--Gold, #cd9452);
}
.sec1__block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}
.sec1__block-item {
  display: flex;
  gap: 20px;
  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: flex;
    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: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__items {
  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 {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 32px;
  }
  .footer__items {
    flex-direction: column;
    row-gap: 24px;
  }
}

.nav {
  width: calc(100% - 32px);
  display: flex;
  justify-content: space-between;
  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;
  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: flex;
  gap: 40px;
  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;
}
@media (max-width: 992px) {
  .nav__hamburger {
    display: block;
  }
  .nav__hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
  }
  .nav__hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .nav__hamburger.active span:nth-child(3) {
    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 {
    flex-direction: column;
    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 */