/* HTML, BODY
========================================================================== */

html {
  background-color: var(--c-white);
}



/* Main
========================================================================== */

main {
  margin-top: 94px;
}

@media (min-width: 768px) {
  main {
    margin-top: 0;
    margin-left: 147px;
  }
}

@media (min-width: 1280px) {
  main {
    margin-left: 173px;
  }
}

@media (min-width: 1600px) {
  main {
    margin-left: 197px;
  }
}

@media (min-width: 2300px) {
  main {
    margin-left: 241px;
  }
}



/* Section
========================================================================== */

.section {
  padding-top: 2.5em;
  padding-bottom: 2.5em;
}
.section--big {
  padding-top: 4.4em;
  padding-bottom: 4.4em;
}

@media (min-width: 768px) {
  .section {
    padding-top: 3.5em;
    padding-bottom: 3.5em;
  }
  .section--full-width {
    margin-left: -147px;
  }
}

@media (min-width: 1280px) {
  .section {
    padding-top: 5.5em;
    padding-bottom: 5.5em;
  }
  .section--big {
    padding-top: 5.5em;
    padding-bottom: 5.5em;
  }
  .section--full-width {
    margin-left: -173px;
  }
}

@media (min-width: 1600px) {
  .section {
    padding-top: 5.75em;
    padding-bottom: 5.75em;
  }
  .section--big {
    padding-top: 6.9em;
    padding-bottom: 6.9em;
  }
  .section--full-width {
    margin-left: -197px;
  }
}

@media (min-width: 2300px) {
  .section {
    padding-top: 6em;
    padding-bottom: 6em;
  }
  .section--big {
    padding-top: 10.4em;
    padding-bottom: 10.4em;
  }
  .section--full-width {
    margin-left: -241px;
  }
}



/* Container
========================================================================== */

.container {
  padding-left: 2.5em;
  padding-right: 2.5em;
}

@media (min-width: 768px) {
  .container {
    padding-left: 3.5em;
    padding-right: 3.5em;
  }
  .section--full-width .container {
    padding-left: calc(147px + 3.5em);
  }
}

@media (min-width: 1280px) {
  .container {
    padding-left: 5.5em;
    padding-right: 5.5em;
  }
  .section--full-width .container {
    padding-left: calc(173px + 5.5em);
  }
}

@media (min-width: 1600px) {
  .container {
    padding-left: 5.75em;
    padding-right: 5.75em;
  }
  .section--full-width .container {
    padding-left: calc(197px + 5.75em);
  }
}

@media (min-width: 2300px) {
  .container {
    padding-left: 6em;
    padding-right: 6em;
  }
  .section--full-width .container {
    padding-left: calc(241px + 6em);
  }
}



/* Loading
========================================================================== */

@keyframes opacity-in {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    pointer-events: none;
  }
}

.loading {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--c-white);
  display: flex;
  justify-content: center;
  align-items: center;
}
.state--window-loaded .loading {
  animation-name: opacity-in;
  animation-duration: .5s;
  animation-fill-mode: both;
  animation-delay: .5s;
}

.loading svg {
  width: 181px;
  height: 100px;
  fill: var(--c-black);
}
.state--window-loaded .loading svg {
  animation-name: opacity-in;
  animation-duration: .5s;
  animation-fill-mode: both;
}

@media (min-width: 768px) {
  .loading svg {
    width: 200px;
    height: 110px;
  }
}

@media (min-width: 1280px) {
  .loading svg {
    width: 250px;
    height: 138px;
  }
}

@media (min-width: 1600px) {
  .loading svg {
    width: 300px;
    height: 166px;
  }
}

@media (min-width: 2300px) {
  .loading svg {
    width: 400px;
    height: 221px;
  }
}



/* Section Header
========================================================================== */

.section-header {
  position: relative;
  margin-bottom: 1.8em;
}

.section-header::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -1.8em;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--c-black);
  transition: width 2s ease-out;
}
.c-white.section-header::after {
  background-color: var(--c-white);
}

.state--intersection .section-header::after {
  width: 100%;
  transition-delay: .6s;
}

.c-white.section-header p,
.c-white.section-header h2 {
  color: var(--c-white);
}

.section-header--absolute {
  position: absolute;
  z-index: 2;
  top: 2.5em;
  left: 0;
  width: 100%;
}

.section-header--grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section-header--margin {
  margin-bottom: 3.6em;
}

@media (min-width: 768px) {
  .section-header--absolute {
    top: 3.5em;
  }
}

@media (min-width: 1280px) {
  .section-header--absolute {
    top: 5.5em;
  }
}

@media (min-width: 1600px) {
  .section-header--absolute {
    top: 5.75em;
  }
}

@media (min-width: 2300px) {
  .section-header--absolute {
    top: 6em;
  }
}



/* Banner
========================================================================== */

.banner {
  padding-top: 1em;
  padding-bottom: 1em;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  mix-blend-mode: difference;
}

.banner .container {
  display: flex;
  justify-content: space-between;
  padding-left: 1em;
  padding-right: 1em;
}

@media (min-width: 768px) {
  .banner {
    width: 147px;
    height: 100%;
    border-right: 1px solid var(--c-white);
    transition: border-color .3s ease;
  }
  .state--nav-open .banner {
    border-color: var(--c-masala);
  }

  .banner .container {
    height: calc(50% + 18px);
    flex-direction: column;
  }
}

@media (min-width: 1280px) {
  .banner {
    width: 173px;
  }

  .banner .container {
    height: calc(50% + 22px);
  }
}

@media (min-width: 1600px) {
  .banner {
    width: 197px;
  }
}

@media (min-width: 2300px) {
  .banner {
    width: 241px;
  }
}



/* Burger
========================================================================== */

.burger {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.state--nav-open .burger {
  gap: 16px;
}

.burger-button {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  transform: translateY(0px);
  transition: transform .3s ease;
}
.state--nav-open .burger-button {
  transform: rotate(-180deg) translateY(-5px);
}

.burger-button span {
  display: block;
  width: 1.5em;
  height: 1px;
  background-color: var(--c-white);
  transition: transform .5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity .2s;
}
.state--nav-open .burger-button span:nth-child(1) {
  transform: rotate(45deg) translateY(4px) translateX(4px);
}
.state--nav-open .burger-button span:nth-child(2) {
  transform: rotate(-45deg);
}
.state--nav-open .burger-button span:nth-child(3) {
  display: none;
}

.burger-caption {
  font-size: .83em;
  font-weight: 700;
  color: var(--c-white);
  letter-spacing: 1px;
}

@media (min-width: 1280px) {
  .state--nav-open .burger {
    gap: 18px;
  }
  .burger-button {
    gap: 7px;
  }
  .burger-button span {
    width: 2em;
  }
  .state--nav-open .burger-button span:nth-child(1) {
    transform: rotate(45deg) translateY(5px) translateX(6px);
  }
}



/* Logo
========================================================================== */

.logo {
  display: flex;
  width: 116px;
  height: 64px;
  fill: var(--c-white);
}

@media (min-width: 1280px) {
  .logo {
    width: 140px;
    height: 77px;
  }
}

@media (min-width: 1600px) {
  .logo {
    width: 160px;
    height: 88px;
  }
}

@media (min-width: 2300px) {
  .logo {
    width: 200px;
    height: 110px;
  }
}



/* Navigation
========================================================================== */

.nav-wrapper {
  width: 100vw;
  height: 100%;
  left: 0;
  top: 0;
  position: fixed;
  overflow: hidden;
  z-index: 9;
  opacity: 0;
  pointer-events: none;
  background-color: var(--c-black );
  color: var(--c-white);
  transition: opacity .8s cubic-bezier(.215,.61,.355,1);
}

.state--nav-open .nav-wrapper {
  opacity: 1;
  pointer-events: auto;
}

.nav-wrapper h2,
.nav-wrapper h3,
.nav-wrapper p {
  color: var(--c-white);
}

.nav-inner {
  padding: 94px 2.5em;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 5em;
}

.nav-aside {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.nav-aside a {
  color: var(--c-white);
}
.nav-aside a:hover {
  color: var(--c-green);
}

.nav-aside .button-icon::before {
  background-color: var(--c-green);
}
.nav-aside .button-icon:hover::before {
  background-color: var(--c-white);
}

.nav-link {
  display: block;
  font-size: 1.33em;
  color: var(--c-white);
  position: relative;
  padding-top: .5em;
  padding-bottom: .5em;
  overflow: hidden;
  text-decoration: none;
}
.nav-link:hover {
  color: var(--c-green);
}

.nav-link::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--c-green);
  transition: width .3s ease-out;
}
.nav-link:hover::after {
  width: 100%;
}

.nav-link-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-link-inner span,
.nav-aside p,
.nav-aside ul {
  opacity: 0;
  transform: translateY(2.25em) skewY(5deg);
  filter: blur(1rem);
  transition: opacity .7s cubic-bezier(.215,.61,.355,1), transform .7s cubic-bezier(.215,.61,.355,1), filter .7s cubic-bezier(.215,.61,.355,1);
}

.state--nav-open .nav-link-inner span,
.state--nav-open .nav-aside p,
.state--nav-open .nav-aside ul {
  opacity: 1;
  transform: none;
  transition-delay: .6s;
  filter: blur(0);
}

.nav-link-inner div {
  display: block;
  position: relative;
  z-index: 1;
  left: 0;
  background: var(--c-white);
  border-radius: 50%;
  transform: scale(0);
  opacity: 0;
  width: 8px;
  height: 8px;
  transition: opacity .7s cubic-bezier(.215,.61,.355,1), transform .7s cubic-bezier(.215,.61,.355,1), background .4s cubic-bezier(.215,.61,.355,1);
}

.nav-link:hover .nav-link-inner div {
  background: var(--c-green);
}

.state--nav-open .nav-link-inner div {
  transform: none;
  opacity: 1;
  transition-delay: 0s;
}

.nav-link .line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--c-masala);
  transition: width .6s ease-out;
}
.state--nav-open .nav-link .line {
  width: 100%;
}

@media (min-width: 768px) {
  .nav-wrapper {
    padding-left: 146px;
  }
  .nav-inner {
    padding: 4em;
  }
  .nav-link {
    font-size: 1.66em;
  }
}

@media (min-width: 1280px) {
  .nav-wrapper {
    padding-left: 172px;
  }
  .nav-inner {
    padding: 0;
    flex-direction: row;
    gap: 0;
  }
  .nav-main {
    width: 50%;
    padding: 4em;
  }
  .nav-aside {
    width: 50%;
    position: relative;
    padding: 4em;
    justify-content: flex-end;
    overflow: hidden;
  }
  .nav-link {
    font-size: 2em;
    padding-top: 1em;
    padding-bottom: 1em;
  }
  .nav-link-inner div {
    width: 11px;
    height: 11px;
  }
}

@media (min-width: 1600px) {
  .nav-wrapper {
    padding-left: 196px;
  }
  .nav-main {
    padding: 6em;
  }
  .nav-aside {
    padding: 6em;
  }
  .nav-link-inner div {
    width: 14px;
    height: 14px;
  }
}

@media (min-width: 2300px) {
  .nav-wrapper {
    padding-left: 241px;
  }
  .nav-main {
    padding: 9em;
  }
  .nav-aside {
    padding: 9em;
  }
  .nav-link-inner div {
    width: 17px;
    height: 17px;
  }
}



/* Menu Thumb
========================================================================== */

@media (max-width: 1279px) {
  .menu-thumb {
    display: none;
  }
}

@media (min-width: 1280px) {
  .menu-thumb {
    position: absolute;
    display: block;
    width: 100%;
    height: 100vh;
    top: 0;
    right: 0;
    opacity: 0;
    overflow: hidden;
    z-index: -1;
    transform: scale(1.2);
    filter: blur(1rem);
    transition: opacity .9s cubic-bezier(0.165, 0.84, 0.44, 1), transform .9s cubic-bezier(0.165, 0.84, 0.44, 1), filter .9s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .state--nav-open .menu-thumb {
    opacity: .5;
    transform: none;
    filter: blur(0);
  }
  
  .menu-thumb--img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: cover;
    transform: scale(1.2);
    transition: opacity .9s cubic-bezier(0.165, 0.84, 0.44, 1), transform .9s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
  }
  .menu-thumb--img.active {
    opacity: 1;
    transform: none;
  }
  
  .menu-img-00 {
    background-image: url(/_assets/images/nav-00-600x770.webp);
  }
  .menu-img-01 {
    background-image: url(/_assets/images/nav-03-600x770.webp);
  }
  .menu-img-02 {
    background-image: url(/_assets/images/nav-02-600x770.webp);
  }
  .menu-img-03 {
    background-image: url(/_assets/images/nav-01-600x770.webp);
  }
}

@media (min-width: 1600px) {
  .menu-img-00 {
    background-image: url(/_assets/images/nav-00-870x1080.webp);
  }
  .menu-img-01 {
    background-image: url(/_assets/images/nav-03-870x1080.webp);
  }
  .menu-img-02 {
    background-image: url(/_assets/images/nav-02-870x1080.webp);
  }
  .menu-img-03 {
    background-image: url(/_assets/images/nav-01-870x1080.webp);
  }
}

@media (min-width: 2300px) {
  .menu-img-00 {
    background-image: url(/_assets/images/nav-00-1160x1305.webp);
  }
  .menu-img-01 {
    background-image: url(/_assets/images/nav-03-1160x1305.webp);
  }
  .menu-img-02 {
    background-image: url(/_assets/images/nav-02-1160x1305.webp);
  }
  .menu-img-03 {
    background-image: url(/_assets/images/nav-01-1160x1305.webp);
  }
}



/* Inline List
========================================================================== */

.inline-list {
  display: inline-flex;
  gap: 1.25em;
}


/* Cta Bage
========================================================================== */

@keyframes spin { 
  100% { 
      transform:rotate(-360deg); 
  }
}

.cta-bage {
  display: none;
}

@media (min-width: 768px) {
  .cta-bage {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 11;
    bottom: 77px;
    left: 77px;
    width: 137px;
    height: 137px;
    border-radius: 50%;
    border: 1px solid var(--c-black);
    background-color: var(--c-white);
  }

  .cta-bage-text {
    font-size: .83em;
    animation:spin 10s linear infinite;
  }

  .cta-bage-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 76px;
    height: 76px;
    transform: translate(-50%, -50%);
    background-color: var(--c-black);
    transition: background-color .3s ease-in-out;
    border-radius: 50%;
  }
  .cta-bage:hover .cta-bage-icon {
    background-color: var(--c-green);
  }

  .cta-bage-icon svg {
    width: 38px;
    height: 38px;
    fill: var(--c-white);
  }
}

@media (min-width: 1280px) {
  .cta-bage {
    width: 142px;
    height: 142px;
    bottom: 102px;
    left: 102px;
  }
  .cta-bage-icon {
    width: 80px;
    height: 80px;
  }
  .cta-bage-icon svg {
    width: 41px;
    height: 41px;
  }
}

@media (min-width: 1600px) {
  .cta-bage {
    width: 162px;
    height: 162px;
    bottom: 116px;
    left: 116px;
  }
  .cta-bage-icon {
    width: 88px;
    height: 88px;
  }
  .cta-bage-icon svg {
    width: 44px;
    height: 44px;
  }
}

@media (min-width: 2300px) {
  .cta-bage {
    width: 179px;
    height: 179px;
    bottom: 151px;
    left: 151px;
  }
  .cta-bage-icon {
    width: 100px;
    height: 100px;
  }
  .cta-bage-icon svg {
    width: 50px;
    height: 50px;
  }
}



/* Thumb
========================================================================== */

.thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: var(--c-black);
  overflow: hidden;
}

.thumb img {
  width: 100%;
}

.thumb-overlay {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.2);
  overflow: hidden;
  opacity: 0;
  filter: blur(1rem);
  transition: opacity 1.2s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1), filter 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.state--intersection .thumb-overlay {
  opacity: .6;
  transform: none;
  transition-delay: .6s;
  filter: blur(0);
}
.state--intersection .thumb--clear .thumb-overlay {
  opacity: .9;
  transform: none;
  transition-delay: .6s;
  filter: blur(0);
}

.thumb-image {
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: calc(100% + 10vh);
  position: absolute;
  top: -5vh;
  left: 0;
}

.swiper-slide .thumb-image {
  transform: scale(1.2);
  filter: blur(1rem);
  transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1), filter 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.swiper-slide.swiper-slide-active .thumb-image {
  transform: none;
  filter: blur(0);
}


.thumb-image--hero {
  background-image: url(/_assets/images/hero-360x530.webp);
}
.thumb-image--gallery-01 {
  background-image: url(/_assets/images/gallery-01-360x360.webp);
}
.thumb-image--gallery-02 {
  background-image: url(/_assets/images/gallery-02-360x360.webp);
}
.thumb-image--gallery-03 {
  background-image: url(/_assets/images/gallery-03-360x360.webp);
}
.thumb-image--gallery-04 {
  background-image: url(/_assets/images/gallery-04-360x360.webp);
}
.thumb-image--indoor {
  background-image: url(/_assets/images/indoor-360x360.webp);
}
.thumb-image--outdoor {
  background-image: url(/_assets/images/outdoor-360x360.webp);
}
.thumb-image--spec {
  background-image: url(/_assets/images/spec-360x360.webp);
}
.thumb-image--about {
  background-image: url(/_assets/images/about-360x360.webp);
}

@media (min-width: 540px) {
  .thumb-image--hero {
    background-image: url(/_assets/images/hero-600x450.webp);
  }
  .thumb-image--gallery-01 {
    background-image: url(/_assets/images/gallery-01-600x450.webp);
  }
  .thumb-image--gallery-02 {
    background-image: url(/_assets/images/gallery-02-600x450.webp);
  }
  .thumb-image--gallery-03 {
    background-image: url(/_assets/images/gallery-03-600x450.webp);
  }
  .thumb-image--gallery-04 {
    background-image: url(/_assets/images/gallery-04-600x450.webp);
  }
  .thumb-image--indoor {
    background-image: url(/_assets/images/indoor-660x330.webp);
  }
  .thumb-image--outdoor {
    background-image: url(/_assets/images/outdoor-660x330.webp);
  }
  .thumb-image--spec {
    background-image: url(/_assets/images/spec-660x330.webp);
  }
  .thumb-image--about {
    background-image: url(/_assets/images/about-500x375.webp);
  }
}

@media (min-width: 600px) {
  .thumb-image--about {
    background-image: url(/_assets/images/about-738x370.webp);
  }
}

@media (min-width: 1024px) {
  .thumb-image--hero {
    background-image: url(/_assets/images/hero-970x440.webp);
  }
  .thumb-image--gallery-01 {
    background-image: url(/_assets/images/gallery-01-970x550.webp);
  }
  .thumb-image--gallery-02 {
    background-image: url(/_assets/images/gallery-02-970x550.webp);
  }
  .thumb-image--gallery-03 {
    background-image: url(/_assets/images/gallery-03-970x550.webp);
  }
  .thumb-image--gallery-04 {
    background-image: url(/_assets/images/gallery-04-970x550.webp);
  }
}

@media (min-width: 1280px) {
  .thumb-image--hero {
    background-image: url(/_assets/images/hero-1200x630.webp);
  }
  .thumb-image--gallery-01 {
    background-image: url(/_assets/images/gallery-01-1370x590.webp);
  }
  .thumb-image--gallery-02 {
    background-image: url(/_assets/images/gallery-02-1370x590.webp);
  }
  .thumb-image--gallery-03 {
    background-image: url(/_assets/images/gallery-03-1370x590.webp);
  }
  .thumb-image--gallery-04 {
    background-image: url(/_assets/images/gallery-04-1370x590.webp);
  }
  .thumb-image--indoor {
    background-image: url(/_assets/images/indoor-995x498.webp);
  }
  .thumb-image--outdoor {
    background-image: url(/_assets/images/outdoor-995x498.webp);
  }
  .thumb-image--spec {
    background-image: url(/_assets/images/spec-995x498.webp);
  }
}

@media (min-width: 1600px) {
  .thumb-image--hero {
    background-image: url(/_assets/images/hero-1730x840.webp);
  }
  .thumb-image--gallery-01 {
    background-image: url(/_assets/images/gallery-01-1920x830.webp);
  }
  .thumb-image--gallery-02 {
    background-image: url(/_assets/images/gallery-02-1920x830.webp);
  }
  .thumb-image--gallery-03 {
    background-image: url(/_assets/images/gallery-03-1920x830.webp);
  }
  .thumb-image--gallery-04 {
    background-image: url(/_assets/images/gallery-04-1920x830.webp);
  }
  .thumb-image--indoor {
    background-image: url(/_assets/images/indoor-1493x747.webp);
  }
  .thumb-image--outdoor {
    background-image: url(/_assets/images/outdoor-1493x747.webp);
  }
  .thumb-image--spec {
    background-image: url(/_assets/images/spec-1493x747.webp);
  }
}

@media (min-width: 2300px) {
  .thumb-image--hero {
    background-image: url(/_assets/images/hero-2300x1180.webp);
  }
  .thumb-image--gallery-01 {
    background-image: url(/_assets/images/gallery-01-2600x1100.webp);
  }
  .thumb-image--gallery-02 {
    background-image: url(/_assets/images/gallery-02-2600x1100.webp);
  }
  .thumb-image--gallery-03 {
    background-image: url(/_assets/images/gallery-03-2600x1100.webp);
  }
  .thumb-image--gallery-04 {
    background-image: url(/_assets/images/gallery-04-2600x1100.webp);
  }
  .thumb-image--indoor {
    background-image: url(/_assets/images/indoor-2026x1014.webp);
  }
  .thumb-image--outdoor {
    background-image: url(/_assets/images/outdoor-2026x1014.webp);
  }
  .thumb-image--spec {
    background-image: url(/_assets/images/spec-2026x1014.webp);
  }
  .thumb-image--about {
    background-image: url(/_assets/images/about-1013x508.webp);
  }
}


/* Swiper
========================================================================== */

/*** GENERAL ***/

.swiper-navigation {
  position: absolute;
  z-index: 2;
  bottom: 2.5em;
  right: 2.5em;
  display: flex;
  gap: 1em;
}

.nav-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 3.25em;
  width: 3.25em;
  position: relative;
  white-space: nowrap;
  box-sizing: border-box;
  cursor: pointer;
  transform: translateZ(0);
}

.nav-btn:before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 6.25rem;
  z-index: -1;
  transform-origin: 50% 50%;
  transform: translate(0);
  background-color: var(--c-black);
  transition: transform .45s cubic-bezier(0.23, 1, 0.32, 1), background .4s cubic-bezier(.215,.61,.355,1);
  transform-style: preserve-3d;
}
.nav-btn:hover::before {
  transform: scale(1.1) translateZ(0);
  background: var(--c-green);
}

.nav-btn.nav-right.fx {
  transform: rotate(-90deg);
}
.nav-btn.nav-left.fx {
  transform: rotate(90deg);
}


.fx.is-inview {
  opacity: 1;
  transform: none;
  transition-delay: .3s;
  filter: blur(0);
}
.fx {
  opacity: 1;
  transform: none;
  filter: blur(0);
}


.label-nav {
  overflow: hidden;
  position: relative;
}

.label-nav > svg {
  display: block;
  transition: transform .45s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition-delay: .01s;
  fill: var(--c-white);
  width: .75rem;
}
.label-nav>svg:nth-child(2) {
  position: absolute;
  top: 0;
  bottom: 0;
}
.label-nav>svg:nth-of-type(2) {
  transform: translate3d(0, calc(100% + 0.2em), 0);
}

.nav-btn:hover .label-nav > svg:nth-of-type(1) {
  transform: translate3d(0, calc(-100% - 0.2em), 0);
}
.nav-btn:hover .label-nav > svg:nth-of-type(2) {
  transform: translate3d(0, 0, 0);
}

@media (min-width: 768px) {
  .swiper-navigation {
    bottom: 3.5em;
    right: 3.5em;
  }
}

@media (min-width: 1280px) {
  .swiper-navigation {
    bottom: 5.5em;
    right: 5.5em;
  }

  .nav-btn {
    height: 3.75em;
    width: 3.75em;
  }

  .label-nav > svg {
    width: 1rem;
  }
}

@media (min-width: 1600px) {
  .swiper-navigation {
    bottom: 5.75em;
    right: 5.75em;
  }
}

@media (min-width: 2300px) {
  .swiper-navigation {
    bottom: 6em;
    right: 6em;
  }
}

/*** SWIPER GALLERY ***/

.swiper-gallery {
  aspect-ratio: 18/9;
}

.swiper-gallery .container {
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 2.5em;
}

.swiper-slide .swiper-title {
  opacity: 0;
  width: 80%;
  transform: translateY(75px) skewY(5deg);
  filter: blur(1rem);
  transition: opacity .7s cubic-bezier(.215,.61,.355,1), transform .7s cubic-bezier(.215,.61,.355,1), filter .7s cubic-bezier(.215,.61,.355,1);
  padding-bottom: 0;
}
.swiper-slide.swiper-slide-active .swiper-title {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

.swiper-title p {
  color: var(--c-white);
  transition: opacity .7s cubic-bezier(.215,.61,.355,1), transform .7s cubic-bezier(.215,.61,.355,1), filter .7s cubic-bezier(.215,.61,.355,1);
  opacity: 1;
  transform: none;
  transition-delay: .3s;
  filter: blur(0);
}

@media (min-width: 460px) {
  .swiper-gallery {
    aspect-ratio: 18/9;
  }
  .swiper-slide .swiper-title {
    padding-bottom: 2em;
  }
}

@media (min-width: 768px) {
  .swiper-gallery {
    aspect-ratio: 18/9;
  }
  .swiper-gallery .container {
    padding-bottom: 3.5em;
  }
  .swiper-slide .swiper-title {
    padding-bottom: 4em;
  }
}

@media (min-width: 1024px) {
  .swiper-gallery {
    aspect-ratio: 18/9;
  }
}

@media (min-width: 1280px) {
  .swiper-gallery .container {
    padding-bottom: 5.5em;
  }
}

@media (min-width: 1600px) {
  .swiper-gallery .container {
    padding-bottom: 5.75em;
  }
  .swiper-slide .swiper-title {
    padding-bottom: 7em;
  }
}

@media (min-width: 2300px) {
  .swiper-gallery .container {
    padding-bottom: 6em;
  }
  .swiper-slide .swiper-title {
    padding-bottom: 8em;
  }
}



/* Ticker
========================================================================== */

.ticker {
  overflow-x: hidden;
  width: 100%;
  display: flex;
  position: relative;
  padding-top: 2em;
  padding-bottom: 2em;
  background-color: var(--c-green);
}

.ticker__tape {
  --direction: normal;
  --duration: 60s;
  --delay: 0s;
  --iteration-count: infinite;
  display: flex;
  gap: 2rem;
  flex: 0 0 auto;
  margin-right: 2rem;
  min-width: 100%;
  align-items: center;
  animation: scrmarqueeoll var(--duration) linear var(--delay) var(--iteration-count);
  animation-play-state: var(--play);
  animation-delay: var(--delay);
  animation-direction: var(--direction);
}

.ticker svg {
  width: 14px;
  height: 14px;
  fill: var(--c-black);
  display: inline-block;
  margin-left: 2rem;
  animation: spin 10s linear infinite;
}

@keyframes scrmarqueeoll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@media (min-width: 768px) {
  .ticker__tape {
    margin-right: 3rem;
    gap: 3rem;
  }
  .ticker svg {
    margin-left: 3rem;
  }
}

@media (min-width: 1280px) {
  .ticker__tape {
    margin-right: 4rem;
    gap: 4rem;
  }
  .ticker svg {
    margin-left: 4rem;
    width: 18px;
    height: 18px;
  }
}

@media (min-width: 1600px) {
  .ticker__tape {
    margin-right: 6rem;
    gap: 6rem;
  }
  .ticker svg {
    margin-left: 6rem;
    width: 22px;
    height: 22px;
  }
}

@media (min-width: 2300px) {
  .ticker__tape {
    margin-right: 8rem;
    gap: 8rem;
  }
  .ticker svg {
    margin-left: 8rem;
    width: 26px;
    height: 26px;
  }
}



/* Button
========================================================================== */

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 3.5em;
  position: relative;
  padding: 0 1.5em;
  white-space: nowrap;
  color: var(--c-white);
  box-sizing: border-box;
  transform: translateZ(0);
  text-decoration: none;
}
.button.button-icon {
  padding: 0;
  width: 46px;
  height: 46px;
}
.button.button-icon svg {
  width: 22px;
  height: 22px;
}
.button:hover {
  color: var(--c-black);
}

.button:before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 6.25rem;
  z-index: -1;
  transform-origin: 50% 50%;
  transform: translate(0);
  background-color: var(--c-black);
  transition: transform .45s cubic-bezier(0.23, 1, 0.32, 1), background .4s cubic-bezier(.215,.61,.355,1);
  transform-style: preserve-3d;
}
.button:hover::before {
  transform: scale(1.1) translateZ(0);
  background: var(--c-green);
}
.button--wh.button:hover::before {
  background: var(--c-white);
}

.button-label {
  overflow: hidden;
  position: relative;
  line-height: 1;
  letter-spacing: -0.01em;
}

.button .button-label>span, .label-nav>svg {
  display: block;
  transition: transform .45s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition-delay: .01s;
}

.button .button-label>span:nth-child(2) {
  position: absolute;
  top: 0;
  bottom: 0;
}

.button .button-label>span:nth-of-type(2) {
  transform: translate3d(0, calc(100% + 0.2em), 0);
}

.button:hover .button-label>span:nth-of-type(1), .button:focus .button-label>span:nth-of-type(1) {
  transform: translate3d(0, calc(-100% - 0.2em), 0);
}

.button:hover .button-label>span:nth-of-type(2), .button:focus .button-label>span:nth-of-type(2) {
  transform: translate3d(0, 0, 0);
}

@media (min-width: 768px) {
  .button.button-icon {
    width: 50px;
    height: 50px;
  }
  .button.button-icon svg {
    width: 24px;
    height: 24px;
  }
}

@media (min-width: 1280px) {
  .button {
    height: 3.75em;
    padding: 0 2em;
  }
  .button.button-icon {
    width: 60px;
    height: 60px;
  }
  .button.button-icon svg {
    width: 26px;
    height: 26px;
  }
}

@media (min-width: 1600px) {
  .button {
    height: 3.85em;
  }
  .button.button-icon {
    width: 70px;
    height: 70px;
  }
  .button.button-icon svg {
    width: 29px;
    height: 29px;
  }
}

@media (min-width: 2300px) {
  .button {
    height: 4em;
  }
  .button.button-icon {
    width: 80px;
    height: 80px;
  }
  .button.button-icon svg {
    width: 32px;
    height: 32px;
  }
}



/* Item Link
========================================================================== */

.item-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .75em;
  padding-top: .75em;
  padding-bottom: .75em;
  position: relative;
  transition-delay: 0s;
  transition: .4s cubic-bezier(.215,.61,.355,1);
  overflow: hidden;
  text-decoration: none;
}
.item-link:hover {
  color: var(--c-green);
  padding-left: .75em;
  padding-right: .75em;
}
.item-link--white.item-link:hover {
  color: var(--c-white);
}

.item-link:after {
  content: '';
  position: absolute;
  bottom: -2rem;
  top: -1rem;
  left: 0;
  right: 0;
  transform: scaleY(0) skewY(10deg);
  transform-origin: center top;
  background-color: var(--c-black);
  transition: transform .5s cubic-bezier(.215,.61,.355,1);
}
.item-link:hover::after {
  transform: scaleY(1);
  transform-origin: center bottom;
}

.item-link span {
  display: block;
  position: relative;
  z-index: 1;
}

.item-link div {
  display: block;
  position: relative;
  z-index: 1;
  left: 0;
  background: var(--c-black);
  border-radius: 50%;
  transform: scale(0);
  opacity: 0;
  width: 8px;
  height: 8px;
  transition: opacity .7s cubic-bezier(.215,.61,.355,1), transform .7s cubic-bezier(.215,.61,.355,1), background .4s cubic-bezier(.215,.61,.355,1);
}
.item-link:hover div {
  background: var(--c-green);
}
.state--intersection .item-link div {
  transform: none;
  opacity: 1;
  transition-delay: 0s;
}

@media (min-width: 1280px) {
  .item-link {
    padding: .5em 0;
  }

  .item-link div {
    width: 11px;
    height: 11px;
  }
}

@media (min-width: 1600px) {
  .item-link div {
    width: 14px;
    height: 14px;
  }
}

@media (min-width: 2300px) {
  .item-link div {
    width: 17px;
    height: 17px;
  }
}



/* Lined List
========================================================================== */

.lined-list > li {
  position: relative;
}

.lined-list > li::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--c-black);
  transition: width 2s ease-out;
}
.state--intersection .lined-list > li::after {
  width: 100%;
  transition-delay: .6s;
}



/* Content Info
========================================================================== */

.content-info h1,
.content-info h2,
.content-info h3,
.content-info h4,
.content-info p,
.content-info {
  color: var(--c-white);
}

.content-info .button-icon::before {
  background-color: var(--c-green);
}
.content-info .button-icon:hover::before {
  background-color: var(--c-white);
}

.content-info a {
  color: var(--c-white);
}
.content-info a:hover {
  color: var(--c-green);
}

.content-info .container {
  display: flex;
  flex-direction: column;
}

.content-info .container > .item {
  position: relative;
  padding-bottom: 2.5em;
  margin-bottom: 2.5em;
}
.content-info .container > .item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}
.content-info .container > .item::after {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background-color: var(--c-masala);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: width 2s ease-out;
}
.state--intersection.content-info .container > .item::after {
  width: 100%;
  transition-delay: .6s;
}
.content-info .container > .item:last-child::after {
  display: none;
}

.grid-f-contacts {
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.grid-f-podval {
  display: flex;
  flex-direction: column;
  gap: 2em;
}

@media (min-width: 768px) {
  .content-info .container {
    padding-left: calc(147px + 3.5em);
  }
  .grid-f-contacts {
    flex-direction: row;
    justify-content: space-between;
  }
  .grid-f-contacts .item {
    width: 30%;
  }
  .grid-f-contacts .h2 {
    font-size: 1em;
  }
}

@media (min-width: 1024px) {
  .grid-f-contacts .h2 {
    font-size: 1.2em;
  }
  .grid-f-podval {
    flex-direction: row;
    gap: 4em;
    justify-content: space-between;
    align-items: flex-start;
  }
  .grid-f-podval .item:first-child {
    order: 2;
  }
  .grid-f-podval .item:last-child {
    order: 1;
  }
}

@media (min-width: 1280px) {
  .content-info .container {
    padding-left: calc(173px + 5.5em);
  }
  .content-info .container > .item {
    padding-bottom: 3em;
    margin-bottom: 3em;
  }
  .grid-f-contacts .h2 {
    font-size: 1.2em;
  }
}

@media (min-width: 1600px) {
  .content-info .container {
    padding-left: calc(197px + 5.75em);
  }
  .content-info .container > .item {
    padding-bottom: 3.5em;
    margin-bottom: 3.5em;
  }
  .grid-f-contacts .h2 {
    font-size: 1.9em;
  }
}

@media (min-width: 2300px) {
  .content-info .container {
    padding-left: calc(241px + 6em);
  }
  .content-info .container > .item {
    padding-bottom: 4em;
    margin-bottom: 4em;
  }
  .grid-f-contacts .h2 {
    font-size: 2.3em;
  }
}



/* Contact Card
========================================================================== */

.contact-card {
  padding-left: 30px;
  position: relative;
}

.contact-card::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background-color: var(--c-green);
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 0;
  transform: scale(0);
  opacity: 0;
  transition: opacity .7s cubic-bezier(.215,.61,.355,1), transform .7s cubic-bezier(.215,.61,.355,1), background .4s cubic-bezier(.215,.61,.355,1);
}
.state--intersection.content-info .contact-card::before {
  transform: none;
  opacity: 1;
  transition-delay: 0s;
}

@media (min-width: 1280px) {
  .contact-card {
    padding-left: 40px;
  }
  .contact-card::before {
    width: 11px;
    height: 11px;
  }
}

@media (min-width: 1600px) {
  .contact-card::before {
    width: 14px;
    height: 14px;
  }
  .contact-card {
    padding-left: 46px;
  }
}

@media (min-width: 2300px) {
  .contact-card::before {
    width: 17px;
    height: 17px;
  }
  .contact-card {
    padding-left: 54px;
  }
}



/* Link List
========================================================================== */

.link-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

@media (min-width: 768px) {
  .link-list {
    flex-direction: row;
    gap: 2em;
  }
}



/* Bar Link, Bar Grid
========================================================================== */

.bar-link {
  position: relative;
  display: flex;
  flex-direction: column;
  color: var(--c-green);
  text-decoration: none;
}
.bar-link::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--c-black);
  transition: width .3s ease-out;
}
.bar-link:hover::after {
  width: 100%;
}
.bar-link.active {
  color: var(--c-black);
  pointer-events: none;
}
.bar-link:hover {
  color: var(--c-black);
}

.bar-link-inner {
  padding-top: 16px;
  padding-bottom: 16px;
  flex: 1;
  display: flex;
  align-items: flex-end;
}
.bar-link:first-child .bar-link-inner {
  padding-top: 0;
}

.bar-link .line {
  width: 0;
  height: 1px;
  background-color: var(--c-green);
  transition: width 2s ease-out;
}
.bar-link.active .line {
  background-color: var(--c-black);
}
.state--intersection .bar-link .line {
  width: 100%;
  transition-delay: .6s;
}

@media (min-width: 600px) {
  .grid-bar {
    display: flex;
    gap: 2em;
  }
  .grid-bar .bar-link {
    flex: 1;
  }
  .bar-link-inner {
    padding-top: 0;
  }
}

@media (min-width: 768px) {
  .bar-link-inner {
    padding-bottom: 29px;
  }
}

@media (min-width: 1280px) {
  .bar-link-inner {
    padding-bottom: 32px;
  }
}

@media (min-width: 1600px) {
  .bar-link-inner {
    padding-bottom: 36px;
  }
}

@media (min-width: 2300px) {
  .bar-link-inner {
    padding-bottom: 41px;
  }
}



/* Full Image
========================================================================== */

.full-image {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
}

@media (min-width: 460px) {
  .full-image {
    aspect-ratio: 4/3;
  }
}

@media (min-width: 600px) {
  .full-image {
    aspect-ratio: 18/9;
  }
}



/* Lee Card
========================================================================== */

.lee-card {
  padding-top: 2em;
  padding-bottom: 2em;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.lee-card::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  min-width: 8px;
  min-height: 8px;
  background-color: var(--c-black);
  border-radius: 50%;
  transform: scale(0);
  opacity: 0;
  transition: opacity .7s cubic-bezier(.215,.61,.355,1), transform .7s cubic-bezier(.215,.61,.355,1), background .4s cubic-bezier(.215,.61,.355,1);
}

.state--intersection .lee-card::before {
  transform: none;
  opacity: 1;
  transition-delay: 0s;
}

.lee-card:first-child {
  padding-top: 0;
}

@media (min-width: 600px) {
  .lee-card {
    flex-direction: row;
  }
  .lee-card .title {
    width: 50%;
  }
  .lee-card .contant {
    width: 50%;
  }
  .lee-card::before {
    margin-top: 9px;
  }
}

@media (min-width: 768px) {
  .lee-card::before {
    margin-top: 12px;
  }
}

@media (min-width: 1280px) {
  .lee-card::before {
    width: 11px;
    height: 11px;
    min-width: 11px;
    min-height: 11px;
    margin-top: 15px;
  }
}

@media (min-width: 1600px) {
  .lee-card::before {
    width: 14px;
    height: 14px;
    min-width: 14px;
    min-height: 14px;
    margin-top: 20px;
  }
}

@media (min-width: 2300px) {
  .lee-card::before {
    width: 17px;
    height: 17px;
    min-width: 17px;
    min-height: 17px;
    margin-top: 28px;
  }
}


/* Dotted List
========================================================================== */

.dotted-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 5px
}
.dotted-list li:last-child {
  margin-bottom: 0;
}

.dotted-list li::before {
  content: "";
  display: block;
  position: absolute;
  top: 11px;
  left: 0;
  width: 14px;
  height: 1px;
  background-color: var(--c-black);
}

@media (min-width: 768px) {
  .dotted-list li {
    padding-left: 30px;
  }
  .dotted-list li::before {
    top: 12px;
    width: 15px;
  }
}

@media (min-width: 1280px) {
  .dotted-list li {
    padding-left: 35px;
  }
  .dotted-list li::before {
    top: 14px;
    width: 18px;
  }
}

@media (min-width: 1600px) {
  .dotted-list li {
    padding-left: 40px;
  }
  .dotted-list li::before {
    top: 15px;
    width: 23px;
  }
}

@media (min-width: 2300px) {
  .dotted-list li {
    padding-left: 50px;
  }
  .dotted-list li::before {
    top: 17px;
    width: 26px;
  }
}



/* GHL Widget
========================================================================== */

.ghl-widget {
  margin-top: 1.75em;
}

@media (min-width: 1002px) {
  .ghl-widget {
    margin-top: 0;
  }
}