/*!*****************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!./src/scss/main.scss ***!
  \*****************************************************************************************************************************************/
@import url(https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wdth,wght@0,62.5..100,100..900;1,62.5..100,100..900&family=Noto+Sans+Display:ital,wdth,wght@0,62.5..100,100..900;1,62.5..100,100..900&family=Parisienne&display=swap);
/*!*********************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!./src/scss/main.scss (1) ***!
  \*********************************************************************************************************************************************/
:root {
  --font-family: Noto Sans, sans-serif;
  --font-display: Noto Sans Display, sans-serif;
  --third-family: Parisienne, cursive;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  font-family: "Noto Sans", sans-serif;
  color: #1a1a1a;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 44px;
  z-index: 1001;
  transition: background 0.3s ease;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.menu-toggle {
  display: flex;
  align-items: center;
  gap: 15px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.menu-toggle .hamburger {
  width: 30px;
  height: 18px;
  position: relative;
}
.menu-toggle .hamburger span {
  display: block;
  position: absolute;
  height: 2px;
  background: #1a1a1a;
  border-radius: 2px;
  transition: all 0.3s ease;
  left: 0;
}
.menu-toggle .hamburger span:nth-child(1) {
  top: 0;
  width: 100%;
}
.menu-toggle .hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
  width: 60%;
  left: 0;
}
.menu-toggle .hamburger span:nth-child(3) {
  bottom: 0;
  width: 100%;
}
.menu-toggle .menu-text {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s ease;
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 20px;
  font-variant: all-small-caps;
  color: #000;
}
.menu-toggle.is-active .hamburger span {
  background: #fff;
}
.menu-toggle.is-active .hamburger span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.menu-toggle.is-active .hamburger span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.menu-toggle.is-active .hamburger span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}
.menu-toggle.is-active .menu-text {
  color: #fff;
}
.menu-toggle.is-active .menu-text::before {
  content: "CLOSE";
}
.menu-toggle.is-active .menu-text-default {
  display: none;
}

.site-logo {
  margin-top: -2px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  max-width: 104px;
  max-height: 92px;
}
@media screen and (max-width: 1024px) {
  .site-logo {
    margin-top: -42px;
  }
}
.site-logo a {
  display: block;
}
.site-logo img {
  display: block;
  width: 100%;
  height: 100%;
  transition: filter 0.5s ease;
}

.menu-open .site-logo img {
  filter: invert(1);
}

.header-spacer {
  min-width: 100px;
}

@media (max-width: 1024px) {
  .site-header {
    padding: 30px;
  }
  .site-logo {
    max-width: 80px;
    max-height: 70px;
  }
  .menu-toggle .menu-text {
    font-size: 16px;
  }
  .menu-toggle .hamburger {
    width: 24px;
    height: 14px;
  }
}
@media (max-width: 768px) {
  .site-header {
    padding: 20px;
  }
  .site-logo {
    max-width: 60px;
    max-height: 52px;
    margin-top: unset;
  }
  .menu-toggle {
    gap: 10px;
  }
  .menu-toggle .menu-text {
    font-size: 14px;
  }
  .menu-toggle .hamburger {
    width: 22px;
    height: 12px;
  }
  .header-spacer {
    min-width: 60px;
  }
}
@media (max-width: 480px) {
  .site-header {
    padding: 22px 12px;
  }
  .site-logo {
    max-width: 50px;
    max-height: 44px;
  }
  .menu-toggle {
    gap: 8px;
  }
  .menu-toggle .menu-text {
    font-size: 12px;
    display: none;
  }
  .menu-toggle .hamburger {
    width: 30px;
    height: 18px;
  }
  .header-spacer {
    min-width: 40px;
  }
}
@media (max-width: 320px) {
  .site-header {
    padding: 12px;
  }
  .site-logo {
    max-width: 44px;
    max-height: 38px;
  }
  .menu-toggle {
    gap: 6px;
  }
  .menu-toggle .menu-text {
    font-size: 11px;
  }
  .header-spacer {
    min-width: 30px;
  }
}
.main-nav {
  position: fixed;
  overflow: hidden;
  top: 0;
  left: 10%;
  right: 10%;
  height: 100%;
  background: #000;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  transition: transform 0.45s cubic-bezier(0.25, 0, 0.15, 1), left 0.45s cubic-bezier(0.25, 0, 0.15, 1), right 0.45s cubic-bezier(0.25, 0, 0.15, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.main-nav.is-open {
  transform: translateY(0);
  left: 0;
  right: 0;
}
.main-nav.is-open .nav-footer {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}

.nav-content {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  padding: 100px 21px 60px;
  width: 100%;
  max-width: 1374px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .nav-content {
    flex-direction: column;
    gap: 4px;
    justify-content: flex-start;
    padding: 140px 21px 20px;
  }
}

.nav-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 1024px) {
  .nav-column {
    gap: 4px;
    flex: unset;
  }
}

.nav-item {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  padding-top: 20px;
}
.is-open .nav-item {
  opacity: 1;
  transform: translateY(0);
}
.nav-item a {
  text-decoration: none;
}
.nav-item:nth-child(1) {
  transition-delay: 0.15s;
}
.nav-item:nth-child(2) {
  transition-delay: 0.25s;
}
.nav-column:nth-child(2) .nav-item:nth-child(1) {
  transition-delay: 0.2s;
}
.nav-column:nth-child(2) .nav-item:nth-child(2) {
  transition-delay: 0.3s;
}
.nav-item .nav-title {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 52px;
  font-stretch: condensed;
  color: #fff;
  cursor: pointer;
  transition: color 0.3s ease;
  opacity: 0.8;
  width: max-content;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .nav-item .nav-title {
    font-size: 40px;
  }
}
.nav-item .nav-title::after {
  content: "";
  position: absolute;
  top: 20%;
  left: -20%;
  width: 140%;
  height: 80%;
  background: linear-gradient(270deg, rgba(208, 144, 255, 0) 0%, rgba(208, 144, 255, 0.5) 13.48%, #d090ff 49.71%, rgba(208, 144, 255, 0.5) 86.8%, rgba(208, 144, 255, 0) 100%);
  filter: blur(25px);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}
.nav-item .nav-title:hover {
  opacity: 1;
}
.nav-item .nav-title:hover::after {
  opacity: 0.42;
}
.nav-item .nav-desc {
  font-family: "Noto Sans", sans-serif;
  font-weight: 200;
  font-stretch: semi-condensed;
  font-size: 18px;
  color: #fff;
  max-width: 555px;
  opacity: 0.8;
}

.nav-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 52px 0 35px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  width: 100%;
  max-width: 1332px;
  margin: 0 21px;
}
@media screen and (max-width: 1400px) {
  .nav-footer {
    width: calc(100% - 42px);
  }
}

.nav-contacts {
  display: flex;
  gap: 38px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-item .contact-label {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
}
.contact-item .contact-value {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  opacity: 0.8;
  transition: all 0.3s ease;
  text-decoration: none;
}
.contact-item .contact-value:hover {
  color: #fff;
  opacity: 1;
}

.nav-social {
  display: flex;
  gap: 24px;
}

.social-link {
  opacity: 0.8;
  transition: all 0.3s ease;
  color: #fff;
}
.social-link:hover {
  opacity: 1;
}
.social-link svg {
  display: block;
  width: 26px;
  height: 26px;
}

@media (max-width: 768px) {
  .nav-content {
    padding: 120px 16px 20px;
    gap: 0px;
  }
  .nav-column {
    gap: 4px;
    width: 100%;
  }
  .nav-item .nav-title {
    font-size: 32px;
  }
  .nav-item .nav-desc {
    font-size: 14px;
    max-width: 100%;
  }
  .nav-footer {
    flex-direction: column;
    gap: 24px;
    padding: 30px 0 24px 0;
    margin: 0 16px;
    width: calc(100% - 32px);
  }
  .nav-contacts {
    flex-direction: column;
    gap: 20px;
    width: 100%;
    align-items: center;
  }
  .contact-item {
    gap: 12px;
    align-items: center;
  }
  .contact-item .contact-label {
    font-size: 14px;
  }
  .contact-item .contact-value {
    font-size: 14px;
  }
  .nav-social {
    gap: 20px;
  }
  .social-link svg {
    width: 22px;
    height: 22px;
  }
}
@media (max-width: 480px) {
  .nav-content {
    padding: 70px 12px 16px;
    gap: 8px;
  }
  .nav-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 8px;
  }
  .nav-item .nav-title {
    font-size: 26px;
  }
  .nav-item .nav-title::after {
    filter: blur(18px);
  }
  .nav-item .nav-desc {
    font-size: 12px;
    text-align: center;
  }
  .nav-footer {
    gap: 20px;
    padding: 16px 0 20px 0;
    margin: 0 12px;
    width: calc(100% - 24px);
  }
  .nav-contacts {
    gap: 12px;
  }
  .contact-item {
    gap: 4px;
  }
  .contact-item .contact-label {
    font-size: 16px;
  }
  .contact-item .contact-value {
    font-size: 14px;
  }
  .nav-social {
    gap: 16px;
  }
  .social-link svg {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 320px) {
  .nav-content {
    padding: 90px 10px 12px;
    gap: 12px;
  }
  .nav-column {
    gap: 12px;
  }
  .nav-item .nav-title {
    font-size: 22px;
  }
  .nav-item .nav-desc {
    font-size: 11px;
  }
  .nav-footer {
    gap: 16px;
    padding: 20px 0 16px 0;
    margin: 0 10px;
    width: calc(100% - 20px);
  }
  .contact-item {
    gap: 8px;
  }
  .nav-social {
    gap: 12px;
  }
  .social-link svg {
    width: 18px;
    height: 18px;
  }
}
.hero {
  padding-top: 160px;
  padding-bottom: 120px;
}

.hero-content {
  text-align: center;
  margin-bottom: 66px;
  transition: transform 0.1s ease-out, opacity 0.1s ease-out;
}

.hero-subtitle {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 32px;
  color: #000;
  font-stretch: condensed;
}

.hero-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: clamp(50px, 16.5vw, 233px);
  text-align: center;
  color: #000;
  font-stretch: condensed;
  line-height: 1;
  margin-bottom: 32px;
}

.hero-video {
  width: 70%;
  max-width: calc(100% - 160px);
  margin: 0 auto;
  border-radius: 40px;
  overflow: hidden;
  transition: width 0.1s ease-out, border-radius 0.1s ease-out;
}
.hero-video video, .hero-video mux-player {
  display: block;
  width: 100%;
  height: 75vh;
  object-fit: cover;
  --controls: none;
  --media-object-fit: cover;
}

@media (max-width: 1024px) {
  .hero {
    padding-top: 120px;
    padding-bottom: 80px;
  }
  .hero-content {
    margin-bottom: 50px;
  }
  .hero-subtitle {
    font-size: 26px;
  }
  .hero-title {
    margin-bottom: 24px;
  }
  .hero-video {
    width: 85%;
    max-width: calc(100% - 80px);
    border-radius: 30px;
  }
  .hero-video video, .hero-video mux-player {
    height: 60vh;
  }
}
@media (max-width: 768px) {
  .hero {
    padding-top: 100px;
    padding-bottom: 60px;
  }
  .hero-content {
    margin-bottom: 40px;
  }
  .hero-subtitle {
    font-size: 24px;
  }
  .hero-title {
    margin-bottom: 20px;
  }
  .hero-video {
    width: 90%;
    max-width: calc(100% - 40px);
    border-radius: 24px;
  }
  .hero-video video, .hero-video mux-player {
    height: 400px;
  }
}
@media (max-width: 480px) {
  .hero {
    padding-bottom: 40px;
  }
  .hero-content {
    margin-bottom: 30px;
  }
  .hero-subtitle {
    font-size: 22px;
  }
  .hero-title {
    font-size: 52px;
    margin-bottom: 16px;
  }
  .hero-video {
    width: 95%;
    max-width: calc(100% - 24px);
    border-radius: 16px;
  }
  .hero-video video, .hero-video mux-player {
    height: 250px;
  }
}
@media (max-width: 320px) {
  .hero {
    padding-top: 70px;
    padding-bottom: 30px;
  }
  .hero-content {
    margin-bottom: 24px;
  }
  .hero-subtitle {
    font-size: 20px;
  }
  .hero-title {
    font-size: 42px;
    margin-bottom: 12px;
  }
  .hero-video {
    width: 100%;
    max-width: 100%;
    border-radius: 12px;
  }
  .hero-video video, .hero-video mux-player {
    height: 35vh;
  }
}
.specialise {
  padding: 0px 80px 120px 80px;
  overflow: hidden;
}

.specialise-header {
  margin-bottom: 60px;
}

.specialise-title {
  margin-bottom: 100px;
  opacity: 0;
  transition: opacity 0.8s ease-out;
}
.specialise-title.animate {
  opacity: 1;
}
.specialise-title span {
  display: block;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: var(--title-size-1, 215px);
  color: #000;
  line-height: 1;
  font-stretch: condensed;
  transition: font-size 0.1s ease-out, margin-top 0.1s ease-out;
}
.specialise-title span:nth-child(2) {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: var(--title-size-2, 126px);
  color: #000;
  margin-left: 34px;
  margin-top: var(--title-margin, -22px);
}

.specialise-desc {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 22px;
  text-align: center;
  color: #191919;
  font-stretch: condensed;
}

.specialise-slider {
  position: relative;
}

.specialise-swiper {
  overflow: visible !important;
  height: 603px;
}
.specialise-swiper .swiper-wrapper {
  align-items: center;
}
.specialise-swiper .swiper-slide {
  width: auto;
  display: flex;
  align-items: center;
  transition: all 0.5s ease;
}

.specialise-card {
  position: relative;
  display: block;
  width: 535px;
  aspect-ratio: 535/343;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.5s ease, border-radius 0.5s ease;
}
.specialise-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.specialise-card .card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  text-align: center;
  padding: 34px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
}
.specialise-card .card-title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 34px;
  font-variant: all-small-caps;
  color: #fff;
  font-stretch: semi-condensed;
  transition: transform 0.4s ease;
  transform: translateY(80px);
}
.specialise-card .card-btn {
  border: 1px solid #fff;
  border-radius: 38px;
  backdrop-filter: blur(4px);
  background: rgba(0, 0, 0, 0.5);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 13px;
  font-variant: all-small-caps;
  color: #fff;
  padding: 14px 24px;
  font-stretch: semi-condensed;
  transition: all 0.3s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
  margin-top: 18px;
  line-height: 1;
  padding-bottom: 16px;
  text-decoration: unset;
  opacity: 0;
  transform: translateY(20px);
}
.specialise-card .card-btn:hover {
  background: #d4bbff;
  border-color: transparent;
  color: #000;
}

.swiper-slide-active .specialise-card {
  border-radius: 17px;
  transform: scale(1.757);
}
.swiper-slide-active .specialise-card .card-title {
  transform: translateY(0);
}
.swiper-slide-active .specialise-card .card-btn {
  opacity: 1;
  transform: translateY(0);
}

.specialise-nav {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 40px;
  padding-right: 20px;
}

.specialise-btn {
  padding: 8px 18px;
  border-radius: 20px;
  border: 1px solid #000;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.specialise-btn svg {
  width: 20px;
  height: 20px;
}
.specialise-btn svg path {
  transition: all 0.3s ease;
}
.specialise-btn:hover {
  background: #d4bbff;
  border-color: #d4bbff;
}

@media (max-width: 1024px) {
  .specialise {
    padding: 0 50px 80px 50px;
  }
  .specialise-title {
    margin-bottom: 60px;
  }
  .specialise-title span {
    font-size: 140px;
  }
  .specialise-title span:nth-child(2) {
    font-size: 90px;
    margin-left: 24px;
    margin-top: -15px;
  }
  .specialise-desc {
    font-size: 18px;
  }
  .specialise-swiper {
    height: 480px;
  }
  .specialise-card {
    width: 400px;
  }
  .swiper-slide-active .specialise-card {
    transform: scale(1.5);
  }
}
@media (max-width: 768px) {
  .specialise {
    padding: 0 16px 60px 16px;
  }
  .specialise-title {
    margin-bottom: 40px;
  }
  .specialise-title span {
    font-size: 90px;
  }
  .specialise-title span:nth-child(2) {
    font-size: 55px;
    margin-left: 18px;
    margin-top: -10px;
  }
  .specialise-desc {
    font-size: 16px;
  }
  .specialise-swiper {
    height: auto;
    overflow: hidden !important;
  }
  .specialise-swiper .swiper-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    transform: none !important;
  }
  .specialise-swiper .swiper-slide {
    width: 100% !important;
  }
  .specialise-card {
    width: 100%;
    aspect-ratio: 343/220;
  }
  .specialise-card .card-title {
    font-size: 20px;
    transform: translateY(0);
  }
  .specialise-card .card-btn {
    font-size: 11px;
    padding: 10px 18px;
    opacity: 1;
    transform: translateY(0);
  }
  .swiper-slide-active .specialise-card {
    transform: scale(1);
    border-radius: 10px;
  }
  .specialise-nav {
    display: none;
  }
}
@media (max-width: 600px) {
  .specialise {
    padding: 0 20px 50px 20px;
  }
  .specialise-title {
    margin-bottom: 30px;
  }
  .specialise-title span {
    font-size: 70px;
  }
  .specialise-title span:nth-child(2) {
    font-size: 42px;
    margin-left: 14px;
    margin-top: -8px;
  }
  .specialise-desc {
    font-size: 15px;
  }
  .specialise-swiper {
    height: 380px;
  }
  .specialise-card {
    width: 280px;
  }
  .specialise-card .card-title {
    font-size: 24px;
  }
  .specialise-card .card-btn {
    font-size: 10px;
    padding: 8px 16px;
  }
  .swiper-slide-active .specialise-card {
    transform: scale(1.35);
  }
  .specialise-nav {
    margin-top: 24px;
  }
}
@media (max-width: 480px) {
  .specialise {
    padding: 0 12px 30px 12px;
  }
  .specialise-header {
    margin-bottom: 24px;
  }
  .specialise-title {
    margin-bottom: 20px;
  }
  .specialise-title span {
    font-size: 48px;
  }
  .specialise-title span:nth-child(2) {
    font-size: 28px;
    margin-left: 10px;
    margin-top: -5px;
  }
  .specialise-desc {
    font-size: 14px;
  }
  .specialise-swiper {
    height: auto;
    overflow: hidden !important;
  }
  .specialise-card {
    width: 100%;
    aspect-ratio: 296/189;
  }
  .specialise-card .card-content {
    padding: 16px;
  }
  .specialise-card .card-title {
    font-size: 16px;
    transform: translateY(0);
  }
  .specialise-card .card-btn {
    font-size: 10px;
    padding: 8px 14px;
    margin-top: 10px;
    opacity: 1;
    transform: translateY(0);
  }
  .swiper-slide-active .specialise-card {
    transform: scale(1);
    border-radius: 10px;
  }
  .specialise-nav {
    margin-top: 16px;
    gap: 10px;
  }
  .specialise-btn {
    padding: 6px 14px;
  }
  .specialise-btn svg {
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 320px) {
  .specialise {
    padding: 0 12px 24px 12px;
  }
  .specialise-header {
    margin-bottom: 20px;
  }
  .specialise-title {
    margin-bottom: 16px;
  }
  .specialise-title span {
    font-size: 42px;
  }
  .specialise-title span:nth-child(2) {
    font-size: 24px;
    margin-left: 8px;
    margin-top: -4px;
  }
  .specialise-desc {
    font-size: 12px;
  }
  .specialise-card {
    width: 296px;
  }
  .specialise-card .card-content {
    padding: 14px;
  }
  .specialise-card .card-title {
    font-size: 14px;
  }
  .specialise-card .card-btn {
    font-size: 9px;
    padding: 6px 12px;
    margin-top: 8px;
  }
  .specialise-nav {
    margin-top: 12px;
  }
}
.about {
  padding: 0px 0 120px 0;
  overflow: hidden;
  background: linear-gradient(to top, #E7E8FF, #fff);
}

.about-title {
  padding: 0 80px;
  margin-bottom: 110px;
  opacity: 0;
  transition: opacity 0.8s ease-out;
}
.about-title.animate {
  opacity: 1;
}
.about-title span {
  display: block;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: var(--title-size-1, 215px);
  color: #000;
  line-height: 1;
  font-stretch: condensed;
  transition: font-size 0.1s ease-out, margin-top 0.1s ease-out;
}
.about-title span:nth-child(2) {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: var(--title-size-2, 126px);
  color: #000;
  margin-left: 34px;
  margin-top: var(--title-margin, -22px);
}

.about-marquees {
  margin-bottom: 80px;
  position: relative;
}

.about-marquee {
  padding: 20px 0;
  overflow: hidden;
  background: #d4bbff;
  margin-left: -50px;
  margin-right: -50px;
  padding-left: 50px;
  padding-right: 50px;
}
.about-marquee--top {
  box-shadow: 0 8px 22px 0 rgba(50, 0, 137, 0.15);
  transform: rotate(3deg);
  position: relative;
  z-index: 2;
}
.about-marquee--bottom {
  transform: rotate(-1.5deg);
  margin-top: -10px;
  position: relative;
  z-index: 1;
  background: #ECE1FF;
}

.marquee-track {
  display: flex;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 0px;
  flex-shrink: 0;
}

.marquee-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 40px;
  font-variant: all-small-caps;
  color: #191919;
  font-stretch: condensed;
  white-space: nowrap;
  line-height: 1;
  padding-left: 46px;
  padding-right: 46px;
  position: relative;
}

.marquee-separator {
  display: block;
  position: absolute;
  top: -26px;
  right: -15px;
}
.marquee-separator i {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-bottom: 8px;
  background: linear-gradient(to top, #E7E8FF, #fff);
}
.marquee-separator i:last-child {
  margin-bottom: 0;
}

.about-text-mobile {
  display: none;
}
.about-text-mobile p {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 12px;
  color: #000;
  font-stretch: semi-condensed;
  line-height: 1.4;
}

.about-slider {
  padding: 0 80px;
}

.about-swiper {
  overflow: visible;
  height: auto;
}
.about-swiper .swiper-wrapper {
  align-items: stretch;
}
.about-swiper .swiper-slide {
  height: auto;
}
.about-swiper .swiper-slide.slide-image {
  width: 304px;
}
.about-swiper .swiper-slide.slide-text {
  width: 483px;
}

.slide-text {
  max-width: 483px;
  flex-shrink: 0;
}
.slide-text .about-text p {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 18px;
  color: #000;
  font-stretch: semi-condensed;
  line-height: 1.5;
  margin-bottom: 16px;
}
.slide-text .about-text p:last-child {
  margin-bottom: 0;
}

.slide-image {
  overflow: hidden;
}
.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 456px;
}

.slider-nav {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 30px;
}

.slider-btn {
  padding: 8px 18px;
  border-radius: 20px;
  border: 1px solid #000;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.slider-btn svg {
  width: 20px;
  height: 20px;
}
.slider-btn svg path {
  transition: all 0.3s ease;
}
.slider-btn:hover {
  background: #d4bbff;
  border-color: #d4bbff;
}
.slider-btn:hover svg path {
  fill: #fff;
}
.slider-btn.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .about {
    padding: 0 0 80px 0;
  }
  .about-title {
    padding: 0 50px;
    margin-bottom: 70px;
  }
  .about-title span {
    font-size: 140px;
  }
  .about-title span:nth-child(2) {
    font-size: 90px;
    margin-left: 24px;
    margin-top: -15px;
  }
  .about-marquees {
    margin-bottom: 60px;
  }
  .marquee-text {
    font-size: 32px;
    padding-left: 36px;
    padding-right: 36px;
  }
  .about-slider {
    padding: 0 50px;
  }
  .slide-text {
    max-width: 400px;
  }
  .slide-text .about-text p {
    font-size: 16px;
  }
  .slide-image {
    max-width: 250px;
  }
}
@media (max-width: 768px) {
  .about {
    padding: 0 0 60px 0;
  }
  .about-title {
    padding: 0 30px;
    margin-bottom: 50px;
  }
  .about-title span {
    font-size: 90px;
  }
  .about-title span:nth-child(2) {
    font-size: 55px;
    margin-left: 18px;
    margin-top: -10px;
  }
  .about-marquees {
    margin-bottom: 40px;
  }
  .about-marquee {
    padding: 14px 0;
  }
  .marquee-text {
    font-size: 24px;
    padding-left: 28px;
    padding-right: 28px;
  }
  .marquee-separator {
    top: -18px;
    right: -10px;
  }
  .marquee-separator i {
    width: 8px;
    height: 8px;
    margin-bottom: 5px;
  }
  .about-slider {
    padding: 0 30px;
  }
  .about-text-mobile {
    display: block;
    margin-bottom: 20px;
  }
  .about-text-mobile p {
    font-size: 14px;
    line-height: 1.5;
  }
  .about-swiper .swiper-slide {
    width: unset;
  }
  .swiper-slide.slide-text {
    display: none !important;
  }
  .slide-image {
    height: 250px;
  }
  .slide-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .slider-nav {
    display: none;
  }
}
@media (max-width: 480px) {
  .about {
    padding: 0 0 30px 0;
  }
  .about-title {
    padding: 0 12px;
    margin-bottom: 20px;
  }
  .about-title span {
    font-size: 48px;
  }
  .about-title span:nth-child(2) {
    font-size: 28px;
    margin-left: 10px;
    margin-top: -5px;
  }
  .about-marquees {
    margin-bottom: 20px;
  }
  .about-marquee {
    padding: 8px 0;
    margin-left: -12px;
    margin-right: -12px;
    padding-left: 12px;
    padding-right: 12px;
  }
  .marquee-text {
    font-size: 12px;
    padding-left: 12px;
    padding-right: 12px;
  }
  .marquee-separator {
    top: -10px;
    right: -5px;
  }
  .marquee-separator i {
    width: 4px;
    height: 4px;
    margin-bottom: 3px;
  }
  .about-slider {
    padding: 0 12px;
  }
  .about-text-mobile {
    margin-bottom: 16px;
  }
  .about-text-mobile p {
    font-size: 12px;
    line-height: 1.4;
  }
  .slide-image {
    height: 201px;
  }
  .slide-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}
@media (max-width: 320px) {
  .about {
    padding: 0 0 24px 0;
  }
  .about-title {
    padding: 0 12px;
    margin-bottom: 16px;
  }
  .about-title span {
    font-size: 42px;
  }
  .about-title span:nth-child(2) {
    font-size: 24px;
    margin-left: 8px;
    margin-top: -4px;
  }
  .about-marquees {
    margin-bottom: 16px;
  }
  .about-marquee {
    padding: 6px 0;
  }
  .marquee-text {
    font-size: 12px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .about-slider {
    padding: 0 12px;
  }
  .slide-text .about-text p {
    font-size: 11px;
  }
  .slide-image {
    width: 134px;
    max-width: 134px;
    height: 201px;
  }
}
.video-section {
  width: 100%;
  overflow: hidden;
}
.video-section video, .video-section mux-player {
  width: 100%;
  height: auto;
  display: block;
  --controls: none;
  --media-object-fit: cover;
}

@media (max-width: 768px) {
  .video-section video, .video-section mux-player {
    min-height: 200px;
    object-fit: cover;
  }
}
@media (max-width: 480px) {
  .video-section video, .video-section mux-player {
    min-height: 150px;
  }
}
@property --border-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
.happen {
  padding: 120px 80px;
  overflow: hidden;
}

.happen-header {
  display: flex;
  gap: 63px;
  margin-bottom: 162px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.happen-title {
  position: relative;
  display: flex;
  align-items: center;
}

.happen-title-text {
  font-family: var(--third-family);
  font-weight: 400;
  font-size: 103px;
  color: #000;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.8s ease-out;
}
.happen-title-text.animate {
  opacity: 1;
}

.happen-title-border {
  position: absolute;
  top: 50%;
  right: -35px;
  width: 425px;
  transform: translateY(-50%);
  --border-angle: 0deg;
  mask: conic-gradient(from -90deg at 50% 50%, #000 var(--border-angle), transparent var(--border-angle));
  -webkit-mask: conic-gradient(from -90deg at 50% 50%, #000 var(--border-angle), transparent var(--border-angle));
}
.happen-title-border.animate {
  animation: revealBorder 1s ease-out forwards;
}

@keyframes revealBorder {
  0% {
    --border-angle: 0deg;
  }
  100% {
    --border-angle: 360deg;
  }
}
.happen-desc {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 18px;
  color: #000;
  max-width: 706px;
  font-stretch: semi-condensed;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.happen-desc.animate {
  opacity: 1;
  transform: translateY(0);
}

.happen-swiper {
  overflow: visible !important;
}
.happen-swiper .swiper-slide {
  width: 413px;
  overflow: hidden;
}

.happen-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 413/544;
  transition: all 0.5s ease;
  border-radius: 20px;
}
.happen-card img {
  width: 125%;
  height: 125%;
  object-fit: cover;
  top: -7%;
  position: absolute;
  will-change: transform, scale;
  --parallax-duration: 0ms;
  transition: transform var(--parallax-duration) ease, scale 2s ease;
}
.happen-card::before, .happen-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  max-height: 213px;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.happen-card::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  opacity: 1;
  z-index: 3;
}
.happen-card::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(45, 0, 78, 0.58) 100%);
  opacity: 0;
  z-index: 2;
}
.happen-card:hover img {
  transition: transform var(--parallax-duration) ease, scale 8s ease;
}
.happen-card:hover::before {
  opacity: 0;
}
.happen-card:hover::after {
  opacity: 1;
}

.happen-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 33px 44px;
  z-index: 4;
}

.happen-card-country {
  display: block;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  color: #fff;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.happen-card-title {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 24px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.happen-nav {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 47px;
}

.happen-btn {
  padding: 8px 18px;
  border-radius: 20px;
  border: 1px solid #000;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.happen-btn svg {
  width: 20px;
  height: 20px;
}
.happen-btn svg path {
  transition: all 0.3s ease;
}
.happen-btn:hover {
  background: #d4bbff;
  border-color: #d4bbff;
}
.happen-btn:hover svg path {
  fill: #fff;
}
.happen-btn.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .happen {
    padding: 80px 50px;
  }
  .happen-header {
    margin-bottom: 100px;
    gap: 40px;
  }
  .happen-title-text {
    font-size: 80px;
  }
  .happen-title-border {
    width: 350px;
    right: -25px;
  }
  .happen-desc {
    font-size: 16px;
    max-width: 600px;
  }
  .happen-swiper .swiper-slide {
    width: 350px;
  }
}
@media (max-width: 768px) {
  .happen {
    padding: 60px 30px;
  }
  .happen-header {
    margin-bottom: 60px;
    gap: 30px;
  }
  .happen-title-text {
    font-size: 60px;
  }
  .happen-title-border {
    width: 280px;
    right: -20px;
  }
  .happen-desc {
    font-size: 14px;
    max-width: 500px;
  }
  .happen-swiper .swiper-slide {
    width: unset;
  }
  .happen-swiper .swiper-slide:nth-child(odd), .happen-swiper .swiper-slide:nth-child(even) {
    transform: translateY(0);
  }
  .happen-card {
    border-radius: 8px;
    width: 100%;
    height: 300px;
    aspect-ratio: unset;
  }
  .happen-card-content {
    padding: 24px 28px;
  }
  .happen-card-title {
    font-size: 20px;
    letter-spacing: 1.5px;
  }
  .happen-card-country {
    font-size: 11px;
  }
  .happen-nav {
    display: none;
  }
}
@media (max-width: 480px) {
  .happen {
    padding: 30px 12px;
  }
  .happen-header {
    margin-bottom: 24px;
    gap: 16px;
  }
  .happen-title-text {
    font-size: 36px;
  }
  .happen-title-border {
    width: 140px;
    right: -11px;
  }
  .happen-desc {
    font-size: 12px;
    max-width: 100%;
  }
  .happen-card {
    border-radius: 10px;
    width: 100%;
    height: 240px;
    aspect-ratio: unset;
  }
  .happen-card-content {
    padding: 14px 16px;
  }
  .happen-card-title {
    font-size: 14px;
    letter-spacing: 1px;
  }
  .happen-card-country {
    font-size: 10px;
    margin-bottom: 4px;
  }
}
@media (max-width: 320px) {
  .happen {
    padding: 24px 12px;
  }
  .happen-header {
    margin-bottom: 20px;
    gap: 12px;
  }
  .happen-title-text {
    font-size: 30px;
  }
  .happen-desc {
    font-size: 11px;
  }
  .happen-swiper .swiper-slide {
    width: 240px;
  }
  .happen-card {
    border-radius: 8px;
  }
  .happen-card-content {
    padding: 12px 14px;
  }
  .happen-card-title {
    font-size: 12px;
  }
  .happen-card-country {
    font-size: 9px;
  }
  .happen-nav {
    margin-top: 12px;
  }
}
.our-projects {
  padding: 80px 80px 60px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .our-projects {
    padding: 60px 50px 50px;
  }
}
@media screen and (max-width: 768px) {
  .our-projects {
    padding: 40px 30px;
  }
}
@media screen and (max-width: 480px) {
  .our-projects {
    padding: 30px 12px;
  }
}

.our-projects-title {
  font-family: "Noto Sans";
  font-weight: 500;
  font-size: clamp(32px, 5vw, 80px);
  color: #000;
  line-height: 1;
  font-stretch: condensed;
  text-transform: uppercase;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.our-projects-title.animate {
  opacity: 1;
  transform: translateX(0);
}
@media screen and (max-width: 768px) {
  .our-projects-title {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 480px) {
  .our-projects-title {
    text-align: center;
  }
}

.our-projects-slider {
  position: relative;
}

.our-projects-swiper {
  overflow: visible !important;
}
@media screen and (max-width: 768px) {
  .our-projects-swiper {
    overflow: hidden;
  }
}

.our-projects-swiper .swiper-slide {
  width: auto;
  height: auto;
}

.our-projects-card {
  display: block;
  position: relative;
  width: 330px;
  aspect-ratio: 330/495;
  border-radius: 0px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(60px);
}
.our-projects-card.animate {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 1024px) {
  .our-projects-card {
    width: 240px;
  }
}
@media screen and (max-width: 768px) {
  .our-projects-card {
    width: 200px;
  }
}
@media screen and (max-width: 480px) {
  .our-projects-card {
    width: 160px;
  }
}
.our-projects-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.our-projects-card::after {
  content: "";
  position: absolute;
  height: 70%;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(45, 0, 78, 0) 0.09%, rgba(45, 0, 78, 0.58) 63.73%);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.our-projects-card:hover {
  border-radius: 20px;
  transform: translateY(-20px);
}
.our-projects-card:hover img {
  transform: scale(1.05);
}
.our-projects-card:hover::after {
  opacity: 1;
}
@media screen and (max-width: 480px) {
  .our-projects-card:hover {
    border-radius: 5px;
  }
}
.our-projects-card--last .our-projects-card-hover {
  opacity: 1;
}
.our-projects-card--last .our-projects-card-btn {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.our-projects-card--last:hover {
  transform: none;
  border-radius: inherit;
}
.our-projects-card--last:hover img {
  transform: none;
}
.our-projects-card--last:hover::after {
  opacity: 0;
}
.our-projects-card--last:hover .our-projects-card-btn {
  opacity: 1;
}

.our-projects-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  z-index: 1;
}
@media screen and (max-width: 480px) {
  .our-projects-card-content {
    padding: 12px;
  }
}

.our-projects-card-title {
  font-family: "Noto Sans";
  font-weight: 300;
  font-size: clamp(12px, 1.2vw, 18px);
  color: #fff;
  text-transform: uppercase;
  font-stretch: condensed;
  line-height: 1.2;
}

.our-projects-card-hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.our-projects-card-btn {
  color: #fff;
  font-family: "Noto Sans";
  font-weight: 500;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 30px;
  border-radius: 17.854px;
  border: 0.47px solid #FFF;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(0.9396824837px);
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.our-projects-card-btn:hover {
  background: #D4BBFF;
}
@media screen and (max-width: 480px) {
  .our-projects-card-btn {
    font-size: 12px;
    padding: 10px 20px;
  }
}

.our-projects-nav {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .our-projects-nav {
    display: none;
  }
}

.our-projects-btn {
  padding: 8px 18px;
  border-radius: 20px;
  border: 1px solid #000;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.our-projects-btn svg {
  width: 20px;
  height: 20px;
}
.our-projects-btn svg path {
  transition: all 0.3s ease;
}
.our-projects-btn:hover {
  background: #d4bbff;
  border-color: #d4bbff;
}
.our-projects-btn:hover svg path {
  fill: #fff;
}
.our-projects-btn.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.instagram {
  padding: 0 80px 120px 80px;
  overflow: hidden;
}

.instagram-header {
  margin-bottom: 60px;
}

.instagram-title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 75px;
  color: #000;
  margin-bottom: 32px;
  font-stretch: condensed;
  opacity: 0;
  transition: opacity 0.8s ease-out;
}
.instagram-title.animate {
  opacity: 1;
}

.instagram-desc {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 18px;
  color: #000;
  font-stretch: semi-condensed;
  margin-bottom: 50px;
  max-width: 678px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.instagram-desc.animate {
  opacity: 1;
  transform: translateY(0);
}

.instagram-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 34px 10px 13px;
  background: #d4bbff;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.instagram-btn svg {
  width: 40px;
  height: 40px;
  color: #000;
}
.instagram-btn span {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 22px;
  font-variant: all-small-caps;
  color: #000;
  font-stretch: semi-condensed;
  line-height: 1;
  margin-bottom: 6px;
}
.instagram-btn:hover {
  background: #c4a8f5;
}

.instagram-swiper {
  overflow: visible !important;
}
.instagram-swiper .swiper-slide {
  width: 390px;
}

.instagram-card {
  display: block;
  width: 390px;
  height: 487px;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}
.instagram-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.instagram-card:hover img {
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .instagram {
    padding: 0 50px 80px 50px;
  }
  .instagram-title {
    font-size: 60px;
    margin-bottom: 24px;
  }
  .instagram-desc {
    font-size: 16px;
    margin-bottom: 40px;
    max-width: 550px;
  }
  .instagram-swiper .swiper-slide {
    width: 320px;
  }
  .instagram-card {
    width: 320px;
    height: 400px;
  }
}
@media (max-width: 768px) {
  .instagram {
    padding: 0 30px 60px 30px;
  }
  .instagram-header {
    margin-bottom: 40px;
  }
  .instagram-title {
    font-size: 45px;
    margin-bottom: 20px;
  }
  .instagram-desc {
    font-size: 14px;
    margin-bottom: 30px;
    max-width: 100%;
  }
  .instagram-btn {
    padding: 8px 28px 8px 10px;
  }
  .instagram-btn svg {
    width: 32px;
    height: 32px;
  }
  .instagram-btn span {
    font-size: 18px;
  }
  .instagram-swiper {
    overflow: hidden !important;
  }
  .instagram-swiper .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    transform: none !important;
  }
  .instagram-swiper .swiper-slide {
    width: 100% !important;
  }
  .instagram-swiper .swiper-slide:nth-child(n+5) {
    display: none;
  }
  .instagram-card {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 0;
  }
}
@media (max-width: 480px) {
  .instagram {
    padding: 0 16px 40px 16px;
  }
  .instagram-header {
    margin-bottom: 30px;
  }
  .instagram-title {
    font-size: 28px;
    margin-bottom: 16px;
  }
  .instagram-desc {
    font-size: 12px;
    margin-bottom: 24px;
  }
  .instagram-btn {
    padding: 6px 24px 6px 8px;
    gap: 10px;
  }
  .instagram-btn svg {
    width: 28px;
    height: 28px;
  }
  .instagram-btn span {
    font-size: 15px;
    margin-bottom: 4px;
  }
  .instagram-swiper .swiper-wrapper {
    gap: 8px;
  }
}
@media (max-width: 320px) {
  .instagram {
    padding: 0 12px 30px 12px;
  }
  .instagram-title {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .instagram-desc {
    font-size: 11px;
    margin-bottom: 20px;
  }
  .instagram-btn {
    padding: 5px 20px 5px 6px;
    gap: 8px;
  }
  .instagram-btn svg {
    width: 24px;
    height: 24px;
  }
  .instagram-btn span {
    font-size: 13px;
  }
  .instagram-swiper .swiper-wrapper {
    grid-template-columns: 1fr;
  }
}
.dream {
  position: relative;
  background: #000;
  padding: 205px 80px 150px 80px;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  perspective: 1000px;
}

.dream-bg {
  position: absolute;
  left: -51px;
  top: 44%;
  display: flex;
  flex-direction: column;
  line-height: 0.85;
  z-index: 1;
  transform-origin: left bottom;
  transform: translateY(-50%) rotateZ(-90deg);
  transition: transform 1.56s cubic-bezier(0.23, 1, 0.32, 1);
}
.dream-bg.animate {
  transform: translateY(-50%) rotateZ(0deg);
}
.dream-bg span {
  font-family: var(--font-family);
  font-weight: 900;
  font-size: 289px;
  line-height: 70%;
  font-variant: all-small-caps;
  color: #fff;
  font-stretch: condensed;
  opacity: 0.19;
}
.dream-bg span:last-child {
  margin-left: 10px;
}

.dream-slider {
  position: relative;
  margin-left: 700px;
  width: 50%;
  max-width: 600px;
  clip-path: inset(0 -100vw 0 0);
}

.dream-swiper {
  overflow: visible !important;
}
.dream-swiper .swiper-slide {
  opacity: 0.2;
  transition: opacity 0.3s ease;
}
.dream-swiper .swiper-slide.swiper-slide-active {
  opacity: 1;
}

.dream-title {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 62px;
  line-height: 100%;
  font-variant: all-small-caps;
  color: #fff;
  font-stretch: condensed;
  margin-bottom: 90px;
}

.dream-desc {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  color: #fff;
  opacity: 0.8;
  line-height: 1.4;
}

.dream-nav {
  display: flex;
  gap: 12px;
  margin-top: 40px;
  justify-content: end;
}

.dream-btn {
  padding: 8px 18px;
  border-radius: 20px;
  border: 1px solid #fff;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.dream-btn svg {
  width: 20px;
  height: 20px;
}
.dream-btn svg path {
  transition: all 0.3s ease;
}
.dream-btn:hover {
  background: #d4bbff;
  border-color: #d4bbff;
}
.dream-btn.swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}

@media screen and (max-width: 1440px) {
  .dream-slider {
    margin-left: 530px;
  }
}
@media (max-width: 1024px) {
  .dream {
    padding: 150px 50px 100px 50px;
    min-height: 500px;
  }
  .dream-bg {
    left: -40px;
  }
  .dream-bg span {
    font-size: 200px;
  }
  .dream-slider {
    width: 55%;
    max-width: 500px;
    margin-left: 380px;
  }
  .dream-title {
    font-size: 50px;
    margin-bottom: 60px;
  }
  .dream-desc {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .dream {
    padding: 100px 30px 80px 30px;
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
  }
  .dream-bg {
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    margin-bottom: 40px;
  }
  .dream-bg.animate {
    transform: none;
  }
  .dream-bg span {
    font-size: 100px;
  }
  .dream-slider {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }
  .dream-title {
    font-size: 40px;
    margin-bottom: 40px;
  }
  .dream-desc {
    font-size: 14px;
  }
  .dream-nav {
    margin-top: 30px;
  }
}
@media (max-width: 480px) {
  .dream {
    padding: 40px 12px 30px 0;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    grid-template-areas: "dreambg title" "desc desc";
    gap: 0;
    align-items: start;
  }
  .dream-bg {
    grid-area: dreambg;
    position: relative;
    left: -4px;
    top: auto;
    transform: none;
    margin-bottom: 0;
  }
  .dream-bg.animate {
    transform: none;
  }
  .dream-bg span {
    font-family: "Noto Sans", sans-serif;
    font-size: 65px;
    font-weight: 700;
    line-height: 50px;
    opacity: 0.19;
    font-variant: all-small-caps;
  }
  .dream-bg span:last-child {
    margin-left: 0;
  }
  .dream-slider,
  .dream-swiper,
  .dream-swiper .swiper-wrapper,
  .dream-swiper .swiper-slide,
  .dream-slide-content {
    display: contents !important;
  }
  .dream-swiper .swiper-slide:not(:first-child) {
    display: none !important;
  }
  .dream-title {
    grid-area: title;
    font-family: "Noto Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    margin-bottom: 0;
    text-transform: none;
    font-variant: normal;
    font-stretch: condensed;
    max-width: 134px;
    margin-left: auto;
    margin-top: 10px;
  }
  .dream-desc {
    grid-area: desc;
    font-family: "Noto Sans", sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: 16px;
    margin-top: 24px;
    padding-left: 12px;
    opacity: 1;
  }
  .dream-nav {
    display: none !important;
  }
}
@media (max-width: 320px) {
  .dream {
    padding: 30px 12px 24px 0;
  }
  .dream-bg span {
    font-size: 65px;
  }
  .dream-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
  }
  .dream-desc {
    font-size: 12px;
    font-weight: 300;
    line-height: 16px;
    margin-top: 20px;
  }
}
.site-footer {
  background: #000;
  padding: 80px 190px 60px;
}

.footer-content {
  display: flex;
  gap: 100px;
  margin-bottom: 120px;
}

.footer-left {
  max-width: 500px;
}

.footer-title {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 62px;
  line-height: 100%;
  font-variant: all-small-caps;
  color: #fff;
  font-stretch: condensed;
  margin-bottom: 108px;
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #d4bbff;
  border-radius: 30px;
  padding: 4px 30px 4px 7px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-btn:hover {
  background: #c4a8f0;
}

.footer-btn-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-btn-icon svg {
  width: 52px;
  height: 52px;
}

.footer-btn span:last-child {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  color: #000;
  letter-spacing: 1px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 10px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-label {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  opacity: 0.8;
  text-decoration: none;
}

.footer-link {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  opacity: 0.8;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-link:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.footer-social-link svg {
  width: 26px;
  height: 26px;
  opacity: 0.8;
  transition: all 0.3s ease;
}
.footer-social-link svg:hover {
  opacity: 1;
}

@media (max-width: 1024px) {
  .site-footer {
    padding: 60px 50px 50px;
  }
  .footer-content {
    gap: 60px;
    margin-bottom: 80px;
  }
  .footer-left {
    max-width: 400px;
  }
  .footer-title {
    font-size: 50px;
    margin-bottom: 80px;
  }
}
@media (max-width: 768px) {
  .site-footer {
    padding: 50px 30px 40px;
  }
  .footer-content {
    display: grid;
    grid-template-areas: "title" "contacts" "button";
    gap: 24px;
    margin-bottom: 24px;
  }
  .footer-left {
    display: contents;
  }
  .footer-title {
    grid-area: title;
    font-size: 32px;
    margin-bottom: 0;
    text-transform: capitalize;
  }
  .footer-btn {
    grid-area: button;
    justify-self: center;
  }
  .footer-right {
    grid-area: contacts;
    gap: 20px;
    margin-top: 0;
  }
  .footer-social {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .site-footer {
    padding: 24px 12px 20px;
  }
  .footer-content {
    gap: 16px;
    margin-bottom: 20px;
  }
  .footer-title {
    font-family: "Noto Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    font-variant: normal;
    font-stretch: normal;
  }
  .footer-btn {
    padding: 3px 24px 3px 5px;
    gap: 10px;
  }
  .footer-btn-icon {
    width: 44px;
    height: 44px;
  }
  .footer-btn-icon svg {
    width: 44px;
    height: 44px;
  }
  .footer-btn span:last-child {
    font-size: 12px;
  }
  .footer-right {
    gap: 14px;
  }
  .footer-label {
    font-size: 14px;
  }
  .footer-link {
    font-size: 13px;
  }
  .footer-social {
    gap: 18px;
  }
  .footer-social-link svg {
    width: 26px;
    height: 26px;
  }
}
@media (max-width: 320px) {
  .site-footer {
    padding: 24px 12px 20px;
  }
  .footer-content {
    gap: 16px;
    margin-bottom: 20px;
  }
  .footer-title {
    font-family: "Noto Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
  }
  .footer-btn {
    padding: 2px 20px 2px 4px;
    margin-top: 16px;
  }
  .footer-btn-icon {
    width: 38px;
    height: 38px;
  }
  .footer-btn-icon svg {
    width: 38px;
    height: 38px;
  }
  .footer-btn span:last-child {
    font-size: 11px;
  }
  .footer-label {
    font-size: 12px;
  }
  .footer-link {
    font-size: 12px;
  }
  .footer-contact {
    gap: 6px;
  }
  .footer-social {
    gap: 14px;
  }
  .footer-social-link svg {
    width: 22px;
    height: 22px;
  }
}
.wedding-projects-archive {
  margin-top: 180px;
}
@media screen and (max-width: 1024px) {
  .wedding-projects-archive {
    margin-top: 100px;
  }
}
@media screen and (max-width: 768px) {
  .wedding-projects-archive {
    margin-top: 100px;
  }
}
@media screen and (max-width: 480px) {
  .wedding-projects-archive {
    margin-top: 85px;
  }
}

.wedding-projects-hero {
  position: relative;
  height: 840px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .wedding-projects-hero {
    height: 600px;
  }
}
@media screen and (max-width: 768px) {
  .wedding-projects-hero {
    height: 450px;
  }
}
@media screen and (max-width: 480px) {
  .wedding-projects-hero {
    height: 200px;
  }
}

.wedding-projects-hero-title {
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans";
  font-size: 7vw;
  font-style: normal;
  font-weight: 500;
  line-height: 0.8;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  font-stretch: condensed;
  display: block;
  max-width: 85%;
}
@media screen and (max-width: 1024px) {
  .wedding-projects-hero-title {
    font-size: 6vw;
    max-width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .wedding-projects-hero-title {
    max-width: 90%;
  }
}
@media screen and (max-width: 480px) {
  .wedding-projects-hero-title {
    max-width: 100%;
  }
}
.wedding-projects-hero-title span {
  opacity: 0;
  transition: opacity 0.8s ease;
}
.wedding-projects-hero-title span.animate {
  opacity: 1;
}
.wedding-projects-hero-title svg {
  display: inline-block;
  vertical-align: middle;
  height: auto;
  margin: 0 -25px 0 -20px;
  z-index: 3;
  transform: rotate(6deg) scale(2);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.wedding-projects-hero-title svg.animate {
  opacity: 1;
  transform: rotate(6deg) scale(1);
}
@media screen and (max-width: 1024px) {
  .wedding-projects-hero-title svg {
    width: 110px;
  }
}
@media screen and (max-width: 768px) {
  .wedding-projects-hero-title svg {
    width: 80px;
    margin: 0 -15px 0 -10px;
  }
}
@media screen and (max-width: 480px) {
  .wedding-projects-hero-title svg {
    width: 60px;
    margin: 0 -10px 0 -5px;
  }
}

.wedding-projects-hero-subtitle {
  color: #FFF;
  font-family: "Noto Sans";
  font-size: 32px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-align: center;
  font-stretch: condensed;
  position: absolute;
  z-index: 2;
  margin-top: 20px;
  bottom: 86px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.wedding-projects-hero-subtitle.animate {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 1024px) {
  .wedding-projects-hero-subtitle {
    font-size: 3vw;
  }
}
@media screen and (max-width: 768px) {
  .wedding-projects-hero-subtitle {
    font-size: 3vw;
    bottom: 40px;
  }
}
@media screen and (max-width: 480px) {
  .wedding-projects-hero-subtitle {
    bottom: 12px;
    font-size: 3vw;
  }
}

.wedding-projects-hero-img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scale(0.5);
  width: 100%;
  height: 100%;
  z-index: 1;
  padding: 0 80px;
  overflow: hidden;
  transition: transform 0.8s ease;
}
.wedding-projects-hero-img.animate {
  transform: translateX(-50%) scale(1);
}
.wedding-projects-hero-img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 160px);
  height: 50%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.58) 100%);
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .wedding-projects-hero-img::after {
    width: calc(100% - 40px);
  }
}
@media screen and (max-width: 480px) {
  .wedding-projects-hero-img::after {
    width: calc(100% - 24px);
    border-radius: 4px;
  }
}
.wedding-projects-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
@media screen and (max-width: 480px) {
  .wedding-projects-hero-img img {
    border-radius: 4px;
  }
}
@media screen and (max-width: 768px) {
  .wedding-projects-hero-img {
    padding: 0 20px;
  }
}
@media screen and (max-width: 480px) {
  .wedding-projects-hero-img {
    padding: 0 12px;
  }
}

.wedding-projects-catalog {
  padding: 20px 144px 60px 144px;
}
@media screen and (max-width: 1024px) {
  .wedding-projects-catalog {
    padding: 40px 80px;
  }
}
@media screen and (max-width: 768px) {
  .wedding-projects-catalog {
    padding: 30px 20px;
  }
}
@media screen and (max-width: 480px) {
  .wedding-projects-catalog {
    padding: 20px 12px;
    padding-top: 0;
  }
}

.wedding-projects-catalog-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.project {
  display: flex;
  gap: 120px;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .project {
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .project {
    gap: 20px;
  }
}
@media screen and (max-width: 480px) {
  .project {
    gap: 12px;
  }
}

.project-img {
  width: 50%;
}
.project-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.project-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 60%;
}
@media screen and (max-width: 1024px) {
  .project-info {
    gap: 16px;
  }
}
@media screen and (max-width: 768px) {
  .project-info {
    gap: 12px;
  }
}
@media screen and (max-width: 480px) {
  .project-info {
    gap: 8px;
  }
}

.project-title {
  color: #000;
  font-family: "Noto Sans";
  font-size: clamp(18px, 5.4vw, 103px);
  font-style: normal;
  font-weight: 500;
  line-height: 97.087%; /* 97.087% */
  font-variant: all-small-caps;
  font-stretch: condensed;
  opacity: 0;
  transition: opacity 0.5s ease 0.3s;
}
.project-title.animate {
  opacity: 1;
}
.project-title span {
  display: block;
}

.project-title-country {
  position: relative;
  display: inline-block;
  width: max-content;
}
.project-title-country .happen-title-border {
  position: absolute;
  top: 2.9vw;
  left: -1.5vw;
  width: 14vw;
  height: auto;
  --border-angle: 0deg;
  mask: conic-gradient(from -90deg at 50% 50%, #000 var(--border-angle), transparent var(--border-angle));
  -webkit-mask: conic-gradient(from -90deg at 50% 50%, #000 var(--border-angle), transparent var(--border-angle));
}
.project-title-country .happen-title-border.animate {
  animation: revealBorder 1s ease-out forwards;
}

.project-desc {
  opacity: 0;
  transition: opacity 0.5s ease;
  height: 7.5em;
  position: relative;
}
.project-desc.animate {
  opacity: 0.8;
}
.project-desc .swiper {
  height: 100%;
}
.project-desc .swiper-slide {
  height: auto !important;
  color: #000;
  font-family: "Noto Sans";
  font-size: clamp(12px, 0.94vw, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  font-stretch: condensed;
}

.project-link {
  color: #000;
  font-family: "Noto Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  font-variant: all-small-caps;
  border-radius: 35px;
  border: 2px solid #000;
  background: #FFF;
  padding: 12px 24px;
  text-decoration: unset;
  transition: all 0.5s ease;
  width: max-content;
  opacity: 0;
  transform: translateY(20px);
}
.project-link.animate {
  opacity: 1;
  transform: translateY(0);
}
.project-link:hover {
  background-color: #D4BBFF;
  border-color: #D4BBFF;
}
@media screen and (max-width: 768px) {
  .project-link {
    font-size: 14px;
    padding: 6px 14px;
  }
}

.wedding-project-single {
  margin-top: 20px;
}

.wedding-project-single-hero {
  display: flex;
  gap: 0;
}
@media screen and (max-width: 600px) {
  .wedding-project-single-hero {
    flex-direction: column;
    position: relative;
    align-items: center;
    margin-top: 100px;
  }
}

.wedding-project-single-img {
  width: 32%;
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  aspect-ratio: 610/919;
}
.wedding-project-single-img.animate {
  opacity: 1;
  transform: translateX(0);
}
@media screen and (max-width: 600px) {
  .wedding-project-single-img {
    width: calc(100% - 120px);
    margin: 0 auto;
  }
}
.wedding-project-single-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wedding-project-single-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 40px 144px 40px 80px;
  justify-content: end;
  position: relative;
  align-items: center;
  width: 100%;
  padding-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .wedding-project-single-info {
    padding: 40px;
  }
}
@media screen and (max-width: 768px) {
  .wedding-project-single-info {
    padding: 20px 40px;
  }
}
@media screen and (max-width: 600px) {
  .wedding-project-single-info {
    padding: 20px;
    position: unset;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 480px) {
  .wedding-project-single-info {
    padding: 12px;
    padding-bottom: 0;
  }
}

.wedding-project-single-title {
  color: #000;
  font-family: "Noto Sans";
  font-size: clamp(28px, 5.4vw, 103px);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  font-variant: all-small-caps;
  text-transform: uppercase;
  font-stretch: condensed;
  position: absolute;
  top: 160px;
  left: -40px;
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.wedding-project-single-title.animate {
  opacity: 1;
  transform: translateX(0);
}
@media screen and (max-width: 1024px) {
  .wedding-project-single-title {
    top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .wedding-project-single-title {
    top: 10px;
    left: -20px;
  }
}
@media screen and (max-width: 600px) {
  .wedding-project-single-title {
    top: -25px;
    left: unset;
  }
}

.wedding-project-single-desc {
  color: #000;
  font-family: "Noto Sans";
  font-size: clamp(12px, 0.94vw, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  font-stretch: condensed;
  opacity: 0;
  max-width: 483px;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.wedding-project-single-desc.animate {
  opacity: 0.8;
  transform: translateY(0);
}
@media screen and (max-width: 600px) {
  .wedding-project-single-desc {
    max-width: 100%;
  }
}

.wedding-project-single-readmore {
  color: #000;
  font-family: "Noto Sans";
  font-size: clamp(12px, 0.94vw, 18px);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.wedding-project-single-readmore:hover {
  opacity: 0.7;
}
.wedding-project-single-readmore svg {
  width: clamp(12px, 0.94vw, 18px);
  height: auto;
}
.wedding-project-single-readmore.less {
  gap: 6px;
  text-transform: unset;
  align-items: unset;
}
@media screen and (max-width: 600px) {
  .wedding-project-single-readmore.less {
    gap: 4px;
    font-weight: 600;
  }
}

.wedding-project-single-contact {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #D4BBFF;
  border: none;
  border-radius: 35px;
  padding: 14px 28px;
  color: #000;
  font-family: "Noto Sans";
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  width: max-content;
  transition: all 0.3s ease;
}
.wedding-project-single-contact svg {
  width: 20px;
  height: auto;
}
.wedding-project-single-contact:hover {
  background-color: #c4a8f0;
}

.wedding-project-single-content {
  padding: 0 80px;
  color: #000;
  font-family: "Noto Sans";
  font-size: clamp(12px, 0.94vw, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  font-stretch: condensed;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: max-height 0.8s ease, opacity 0.6s ease, transform 0.6s ease;
  padding-bottom: 20px;
}
.wedding-project-single-content.active {
  max-height: 2000px;
  opacity: 0.8;
  transform: translateY(0);
}
.wedding-project-single-content p {
  margin-bottom: 20px;
}
.wedding-project-single-content h2, .wedding-project-single-content h3, .wedding-project-single-content h4 {
  margin: 30px 0 15px;
  font-weight: 500;
}
.wedding-project-single-content img {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
}
@media screen and (max-width: 1024px) {
  .wedding-project-single-content {
    padding: 0 40px;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .wedding-project-single-content {
    padding: 0 20px;
  }
}
@media screen and (max-width: 480px) {
  .wedding-project-single-content {
    padding: 0px 12px;
  }
}

.wedding-projects-breadcrumb.single {
  padding-left: 44px;
  padding-right: 44px;
}
@media screen and (max-width: 600px) {
  .wedding-projects-breadcrumb.single {
    display: none;
  }
}

.wedding-project-gallery {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 0px 0px 40px 80px;
  padding-top: 0;
}
@media screen and (max-width: 1024px) {
  .wedding-project-gallery {
    gap: 40px;
    padding: 0px 0px 40px 40px;
  }
}
@media screen and (max-width: 768px) {
  .wedding-project-gallery {
    padding: 0 12px 40px 12px;
    gap: 20px;
  }
}
@media screen and (max-width: 600px) {
  .wedding-project-gallery {
    padding-top: 20px;
  }
}

.wedding-project-gallery-top {
  max-width: 1000px;
}

.wedding-project-gallery-bottom {
  display: block;
}

.wedding-project-gallery-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: end;
  gap: 24px;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .wedding-project-gallery-info {
    justify-content: start;
  }
}

.wedding-project-swiper .swiper-slide.slide-info {
  width: 40% !important;
  max-width: none;
  overflow: visible;
}
@media screen and (max-width: 768px) {
  .wedding-project-swiper .swiper-slide.slide-info {
    display: none;
  }
}

.wedding-project-gallery-title {
  color: #000;
  font-family: "Noto Sans";
  font-size: clamp(28px, 5.4vw, 103px);
  font-style: normal;
  font-weight: 500;
  line-height: 0.8;
  font-variant: all-small-caps;
  text-transform: uppercase;
  font-stretch: condensed;
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.wedding-project-gallery-title.animate {
  opacity: 1;
  transform: translateX(0);
}

.wedding-project-gallery-desc {
  color: #000;
  font-family: "Noto Sans";
  font-size: clamp(12px, 0.94vw, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  font-stretch: condensed;
  opacity: 0;
  max-width: 483px;
  transition: opacity 0.8s ease;
}
.wedding-project-gallery-desc.animate {
  opacity: 0.8;
}

.wedding-project-gallery-slider {
  position: relative;
}
@media screen and (max-width: 768px) {
  .wedding-project-gallery-slider {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.wedding-project-swiper {
  overflow: visible;
}
@media screen and (max-width: 768px) {
  .wedding-project-swiper {
    overflow: hidden;
    width: 100%;
  }
  .wedding-project-swiper .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    transform: none !important;
  }
}

.wedding-project-swiper .swiper-slide {
  width: auto;
  max-width: 304px;
  height: auto;
  overflow: hidden;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.wedding-project-swiper .swiper-slide.animate {
  opacity: 1;
  transform: translateY(0);
}
.wedding-project-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .wedding-project-swiper .swiper-slide {
    max-width: 250px;
  }
}
@media screen and (max-width: 768px) {
  .wedding-project-swiper .swiper-slide {
    max-width: unset;
    width: 100% !important;
    aspect-ratio: 134/201;
    height: auto;
  }
  .wedding-project-swiper .swiper-slide img {
    height: 100%;
    width: 100%;
  }
}

.wedding-project-gallery-mobile-btn {
  display: none;
}
@media screen and (max-width: 768px) {
  .wedding-project-gallery-mobile-btn {
    display: flex;
    justify-content: center;
    margin-top: 24px;
  }
}

.wedding-project-gallery-nav {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 30px;
  padding-right: 44px;
}
@media screen and (max-width: 768px) {
  .wedding-project-gallery-nav {
    display: none;
  }
}

.wedding-project-gallery-prev,
.wedding-project-gallery-next {
  padding: 8px 18px;
  border-radius: 20px;
  border: 1px solid #000;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.wedding-project-gallery-prev svg,
.wedding-project-gallery-next svg {
  width: 20px;
  height: 20px;
}
.wedding-project-gallery-prev svg path,
.wedding-project-gallery-next svg path {
  transition: all 0.3s ease;
}
.wedding-project-gallery-prev:hover,
.wedding-project-gallery-next:hover {
  background: #d4bbff;
  border-color: #d4bbff;
}
.wedding-project-gallery-prev:hover svg path,
.wedding-project-gallery-next:hover svg path {
  fill: #fff;
}
.wedding-project-gallery-prev.swiper-button-disabled,
.wedding-project-gallery-next.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.wedding-project-gallery-info .footer-btn {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease, background-color 0.3s ease;
}
.wedding-project-gallery-info .footer-btn.animate {
  opacity: 1;
  transform: translateY(0);
}

.wedding-projects-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 40px 144px;
  font-family: "Noto Sans";
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.wedding-projects-breadcrumb a, .wedding-projects-breadcrumb span {
  opacity: 0;
  transition: opacity 0.5s ease, color 0.3s ease;
}
.wedding-projects-breadcrumb a.animate, .wedding-projects-breadcrumb span.animate {
  opacity: 1;
}
.wedding-projects-breadcrumb a {
  color: #666;
  text-decoration: none;
}
.wedding-projects-breadcrumb a:hover {
  color: #000;
}
.wedding-projects-breadcrumb span {
  color: #000;
  font-weight: 500;
}
.wedding-projects-breadcrumb svg {
  width: 8px;
  height: auto;
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.wedding-projects-breadcrumb svg.animate {
  opacity: 0.8;
  transform: translateX(0);
}
@media screen and (max-width: 1024px) {
  .wedding-projects-breadcrumb {
    padding: 32px 80px;
  }
}
@media screen and (max-width: 768px) {
  .wedding-projects-breadcrumb {
    padding: 24px 20px;
    font-size: 12px;
  }
}
@media screen and (max-width: 480px) {
  .wedding-projects-breadcrumb {
    padding: 16px 12px;
    font-size: 10px;
    flex-wrap: wrap;
    gap: 4px;
  }
  .wedding-projects-breadcrumb svg {
    width: 6px;
  }
}

.faq-page {
  min-height: 100vh;
}

.faq-hero {
  padding: 120px 144px 0;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .faq-hero {
    padding: 100px 80px 0;
  }
}
@media screen and (max-width: 768px) {
  .faq-hero {
    padding: 80px 20px 0;
  }
}
@media screen and (max-width: 480px) {
  .faq-hero {
    padding: 70px 12px 0;
  }
}

.faq-hero-title {
  color: #000;
  font-family: "Noto Sans";
  font-size: clamp(28px, 5.4vw, 103px);
  font-style: normal;
  font-weight: 500;
  line-height: 0.8;
  font-variant: all-small-caps;
  text-transform: uppercase;
  font-stretch: condensed;
  margin-bottom: 20px;
}

.faq-hero .wedding-projects-breadcrumb {
  justify-content: center;
  padding: 20px 0;
}
@media screen and (max-width: 480px) {
  .faq-hero .wedding-projects-breadcrumb {
    padding-top: 8px;
  }
}

.faq-list {
  padding: 40px 144px 80px;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .faq-list {
    padding: 40px 80px 60px;
  }
}
@media screen and (max-width: 768px) {
  .faq-list {
    padding: 30px 20px 50px;
  }
}
@media screen and (max-width: 480px) {
  .faq-list {
    padding: 20px 12px 40px;
    padding-top: 0;
  }
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: #000;
  font-family: "Noto Sans";
  font-size: clamp(16px, 2vw, 38px);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  font-variant: all-small-caps;
  font-stretch: condensed;
  transition: opacity 0.3s ease;
  padding-top: 48px;
  padding-bottom: 16px;
}
.faq-question:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1024px) {
  .faq-question {
    padding-top: 32px;
  }
}
@media screen and (max-width: 480px) {
  .faq-question {
    padding-bottom: 14px;
  }
}

.faq-arrow {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item.active .faq-arrow {
  transform: rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
  padding: 0;
}
.faq-answer p {
  font-family: "Noto Sans";
  font-weight: 400;
  font-size: clamp(12px, 0.94vw, 16px);
  color: #000;
  line-height: 1.6;
  font-stretch: condensed;
  opacity: 0.8;
  padding-bottom: 24px;
}
/*!**********************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/swiper/swiper.css ***!
  \**********************************************************************************/
/**
 * Swiper 12.1.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2026 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 18, 2026
 */

:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
}

/* CSS Mode */
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-slides-offset-before);
      scroll-margin-inline-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-inline-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-slides-offset-before);
      scroll-margin-block-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-block-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: '';
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress),
.swiper-watch-progress .swiper-slide-visible {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */


/*# sourceMappingURL=main.css.map*/