#pointer-dot {
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  border: 2.5px solid #ed4769;
  position: fixed;
  border-radius: 4px;
  z-index: 1001;
  pointer-events: none;
  transition: border-color 0.5s;
  background-color: #ed4769;
}
#pointer-ring {
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  padding: 15px;
  border: 0px solid rgba(237, 71, 105, 0.75);
  position: fixed;
  border-radius: 100px;
  z-index: 1002;
  pointer-events: none;
  background-color: rgba(237, 71, 105, 0.75);
}
@media (pointer:coarse) {
  #pointer-dot {
    cursor: none;
    visibility: hidden;
  }
  #pointer-ring {
    cursor: none;
    visibility: hidden;
  }
}
html {
  cursor: none !important;
}
a {
  cursor: none !important;
}
.img-dot {
  z-index: 900;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(white 25%, transparent 25%);
  background-size: 2.5px 2.5px;
  box-sizing: border-box;
  pointer-events: auto;
  opacity: 50%;
  position: absolute;
}
@media screen and (max-width:1080px) {
  .img-dot {
    border: none;
    box-sizing: border-box;
    background-image: radial-gradient(white 0%, transparent 0%);
    background-size: 0px 0px;
    display: none;
  }
}
.bubble-hover-left {
  z-index: 990;
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(237, 71, 105, .75) 0%, rgba(237, 71, 105, .75) 50%, rgba(0, 0, 0, 0) 50%);
  ;
  background-size: 0px 0px;
  background-repeat: no-repeat;
  background-position: 0 100vh;
  transition: background-size .7s, background-position .5s ease-in-out;
}
.bubble-hover-left:hover {
  background-size: 1000px 1000px;
  background-position: -40vh 30vh;
  transition: background-position .7s, background-size .5s ease-in-out;
}
.bubble-hover-left img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  display: block;
}
.bubble-hover-right {
  z-index: 990;
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(237, 71, 105, .75) 0%, rgba(237, 71, 105, .75) 50%, rgba(0, 0, 0, 0) 50%);
  ;
  background-size: 0px 0px;
  background-repeat: no-repeat;
  background-position: 100vh 0;
  transition: background-size .7s, background-position .5s ease-in-out;
}
.bubble-hover-right:hover {
  background-size: 250px 250px;
  background-position: 20vh 15vh;
  transition: background-position .7s, background-size .5s ease-in-out;
}
.bubble-hover-right img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  display: block;
}
@media screen and (max-width:1080px) {
  .bubble-hover-left {
    display: none;
  }
  .bubble-hover-right {
    display: none;
  }
}
.img-container-only {
  align-content: center;
  justify-content: center;
  display: inline-block;
  overflow: hidden;
}
.img-container-only img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  display: block;
}
.mask-overlay-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #F3F7FB;
  mask-image: radial-gradient(circle at center, transparent 32vh, black 32.1vh);
  -webkit-mask-image: radial-gradient(circle at center, transparent 32vh, black 32.1vh);
  pointer-events: none;
  z-index: 10;
}
@media screen and (max-width:1080px) {
  .mask-overlay-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #F3F7FB;
    ;
    mask-image: radial-gradient(circle at center, transparent 20vh, black 20.1vh);
    -webkit-mask-image: radial-gradient(circle at center, transparent 20vh, black 20.1vh);
    pointer-events: none;
    z-index: 10;
  }
}
.img-container {
  align-content: center;
  justify-content: center;
  display: inline-block;
  overflow: hidden;
}
.img-container img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: block;
}
.img-container img.active {
  opacity: 1;
}
@keyframes zoominoutsinglefeatured {
  0% {
    animation-timing-function: ease-in;
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.025, 1.025);
  }
  100% {
    transform: scale(1, 1);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
html {
  scroll-snap-type: both mandatory;
}
html, body {
  overflow: -moz-scrollbars-none;
  -ms-overflow-style: none;
}
body::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}
body {
  padding-bottom: env(safe-area-inset-bottom);
  padding-top: env(safe-area-inset-top);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
  scrollbar-width: none;
  -ms-overflow-style: none;
  overflow-x: hidden;
} /*
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100px + env(safe-area-inset-top));
  pointer-events: none;
  z-index: 999;
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  mask-repeat: no-repeat;
  mask-size: cover;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.15) 25%, rgba(255, 255, 255, 0) calc(100px + env(safe-area-inset-top)));
}
body::after {
  content: "";
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100px + env(safe-area-inset-bottom));
  pointer-events: none;
  z-index: 999;
  backdrop-filter: blur(150px);
  -webkit-backdrop-filter: blur(150px);
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  mask-repeat: no-repeat;
  mask-size: cover;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.25) 25%, rgba(255, 255, 255, 0) calc(100px + env(safe-area-inset-bottom)));
}
@media screen and (max-width:1080px) {
  body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100px + env(safe-area-inset-top));
    pointer-events: none;
    z-index: 999;
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: cover;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    mask-repeat: no-repeat;
    mask-size: cover;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0) calc(100px + env(safe-area-inset-top)));
  }
  body::after {
    content: "";
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(100px + env(safe-area-inset-bottom));
    pointer-events: none;
    z-index: 999;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: cover;
    mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    mask-repeat: no-repeat;
    mask-size: cover;
    background: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) calc(100px + env(safe-area-inset-bottom)));
  }
}*/
p {
  margin: 10px 0px;
  text-align: justify;
  font-size: clamp(0.25rem, 0.6vw + 0.6vh, 1rem);
  font-weight: 100;
  color: #333F61;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  width: fit-content;
}
h1 {
  text-transform: uppercase;
  font-size: clamp(2.5rem, 1vw + 1vh, 2.5rem);
  font-style: normal;
  font-weight: 800;
  color: #272E44;
  text-align: left;
}
h2 {
  font-size: clamp(1.5rem, 0.6vw + 0.6vh, 1.25rem);
  font-weight: 400;
  color: #272E44;
  text-align: left;
}
h3 {
  padding-top: 5px;
  font-size: clamp(0.5rem, 0.75vw + 0.75vh, 0.8rem);
  font-weight: 400;
  color: #333F61;
  text-align: left;
}
h4 {
  padding-top: 5px;
  font-weight: 300;
  font-size: clamp(0.5rem, 0.6vw + 0.6vh, 0.7rem);
  color: #333F61;
  text-align: left;
}
h5 {
  padding-top: 5px;
  font-size: clamp(0.5rem, 0.75vw + 0.75vh, 0.8rem);
  font-weight: 400;
  color: #333F61;
  text-align: left;
}
h6 {
  padding-top: 10px;
  font-weight: 400;
  font-size: clamp(0.5rem, 0.75vw + 0.5vh, 0.6rem);
  color: #333F61;
  text-align: left;
}
h7 {
  margin: 20px 0px 0px 0px;
  font-weight: 400;
  font-size: clamp(1rem, 1vw + 1vh, 1.5rem);
  color: #333F61;
}
h8 {
  font-size: clamp(0.5rem, 1vw + 1vh, 1.5rem);
  font-weight: 300;
  color: #333F61;
  text-align: center;
  -webkit-animation: bounce .4s ease infinite alternate;
}
.wide_tittle {
  font-weight: 900;
  font-size: clamp(4rem, 10vw + 10vh, 8rem);
  color: #ED4769;
  -webkit-text-stroke: 1px rgba(237, 71, 105, 1);
  text-align: center;
}
.tittle {
  align-self: flex-start;
  width: 100%;
  text-align: left;
  margin-left: 0;
  font-weight: 800;
  font-size: clamp(4rem, 1vw + 1vh, 6rem);
  -webkit-text-stroke: 1px rgba(237, 71, 105, 1);
  color: #ED4769;
}
@media screen and (max-width:1080px) {
  h2 {
    font-size: clamp(1rem, 0.6vw + 0.6vh, 1rem);
    font-weight: 400;
    color: #272E44;
    text-align: left;
  }
  h3 {
    display: none;
  }
  h4 {
    display: none;
  }
  .tittle {
    font-size: clamp(2.5rem, 1vw + 1vh, 3.5rem);
  }
  .wide_tittle {
    padding-top: 80px;
    font-weight: 900;
    font-size: clamp(3rem, 1vw + 1vh, 4rem);
    color: #ED4769;
    -webkit-text-stroke: 1px rgba(237, 71, 105, 1);
  }
}
.vl {
  height: 50px;
  margin: 0px 0px 0px 70px;
  position: absolute;
  z-index: 1000;
}
.vl a:hover {
  color: #ED4769;
  transition: 0.2s ease-out;
}
i {
  font-style: normal;
}
.icon-up, .icon-down {
  font-size: 20px;
  display: flex;
  align-items: center;
}
.icon-up {
  margin-left: 15px;
}
.icon-down {
  margin-right: 15px;
}
#scrollUpBtn, #scrollDownBtn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.25s ease;
}
#scrollUpBtn:hover, #scrollDownBtn:hover {
  color: #ED4769;
}
@media screen and (max-width:1080px) {
  .vl {
    display: none;
    position: fixed;
    bottom: calc(0px + env(safe-area-inset-bottom));
    left: 0;
    width: 100%;
    /*display: flex;*/
    justify-content: space-between;
    padding: 0 10px;
    z-index: 1000;
  }
  .vl i[data-en] {
    display: none;
  }
  #scrollUpBtn, #scrollDownBtn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    padding: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #fff;
  }
  #scrollUpBtn:hover, #scrollDownBtn:hover {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    color: #fff;
  }
  #scrollUpBtn::before, #scrollDownBtn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.25), transparent);
    opacity: 0.3;
    pointer-events: none;
  }
}
.scroll-indicator {
  position: fixed;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 20px;
  z-index: 1000;
  border: 2px solid #333F61;
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.scroll-indicator .dot {
  width: 5px;
  height: 5px;
  background: #333F61;
  border-radius: 50%;
  animation: dotMove 1.6s infinite ease-in-out;
}
@keyframes dotMove {
  0% {
    transform: translateX(-6px);
    opacity: 0.2;
  }
  40% {
    opacity: 1;
  }
  50% {
    transform: translateX(6px);
  }
  60% {
    opacity: 1;
  }
  100% {
    transform: translateX(-6px);
    opacity: 0.2;
  }
}
.scroll-pagination {
  position: fixed;
  bottom: 45px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.scroll-pagination span {
  width: 5px;
  height: 5px;
  background: rgba(51, 63, 97, 0.5);
  border-radius: 50%;
  transition: background 0.3s ease, transform 0.3s ease;
}
.scroll-pagination span.active {
  background: #333F61;
  transform: scale(1.3);
}
@media screen and (max-width:1080px) {
  .scroll-pagination {
    bottom: 5px;
  }
  .scroll-indicator {
    bottom: 20px;
  }
}
#scrollUpBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 28px;
  z-index: 5;
  border: none;
  outline: none;
  background: none;
  color: #333F61;
  cursor: none;
  padding: 15px;
  font-size: 18px;
}
#scrollUpBtn:hover {
  color: #ed4769;
}
#scrollDownBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 28px;
  z-index: 1000;
  border: none;
  outline: none;
  background: none;
  text-decoration: none;
  color: #333F61;
  cursor: none;
  padding: 15px;
  font-size: 18px;
}
#scrollDownBtn:hover {
  color: #ED4769;
}
.horizontal_arrow {
  padding-left: 10px;
  padding-top: 5px;
  font-size: clamp(0.25rem, 0.6vw + 0.6vh, 1rem);
  font-weight: 300;
  height: 25px;
  z-index: 1000;
  color: #333F61;
  -webkit-animation: bounceright .4s ease infinite alternate;
  border-radius: 10px 10px 10px 10px;
}
.arrow {
  border: solid #333F61;
  border-width: 0 5px 5px 0;
  display: inline-block;
  padding: 4px;
}
@-webkit-keyframes bounceright {
  0% {}
  100% {
    transform: translateX(-10px);
  }
}
.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.left {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}
.up {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}
.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.switch {
  text-align: right;
}
.line {
  color: #272E44;
  font-size: 1.25rem;
  padding: 0px 10px 0px 5px;
}
#en-btn {
  color: #272E44;
  font-size: 1rem;
  font-weight: 400;
  border: none;
  outline: none;
  background: hsla(0, 0%, 100%, 0);
  border-radius: 7px;
  padding: 0px 3px;
  text-underline-offset: 2px;
  cursor: none;
}
#cz-btn {
  color: #272E44;
  font-size: 1rem;
  font-weight: 400;
  border: none;
  outline: none;
  background: hsla(0, 0%, 100%, 0);
  border-radius: 7px;
  padding: 0px 3px;
  margin: 0px 5px;
  text-underline-offset: 2px;
  cursor: none;
}
#en-btn:hover {
  text-decoration: underline;
  font-weight: 400;
  color: #ED4769;
}
#en-btn:active {
  color: #ED4769;
}
#cz-btn:hover {
  text-decoration: underline;
  font-weight: 400;
  color: #ED4769;
}
#cz-btn:active {
  color: #ED4769;
}
a {
  color: #333F61;
  text-decoration: none;
}
ul {
  list-style: none;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 1000;
  padding: 0 50px;
  color: #F3F3F3;
}
.headerlogo {
  display: flex;
  align-items: center;
  width: auto;
  pointer-events: none;
  margin-right: auto;
}
.headerlogo img {
  width: 300px;
}
nav {
  display: flex;
  align-items: center;
  margin-left: auto;
}
nav i {
  background: hsla(0, 0%, 100%, 0);
  color: #333F61;
  border-radius: 7px;
  padding: 3px 4px;
}
nav a {
  padding: 10px 5px;
  font-size: 1.2rem;
  font-weight: 500;
  border-radius: 5px;
  color: #333F61;
  text-underline-offset: 2px;
}
nav a:hover, nav a.active {
  color: #333F61;
  transition: 0.2s ease-out;
  transform: smooth;
  letter-spacing: 0px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
nav a:hover {
  color: #ED4769;
  transition: 0.2s ease-out;
  transform: smooth;
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media screen and (max-width:1080px) {
  header {
    height: 80px;
    padding: 0 20px;
  }
  .headerlogo img {
    width: 200px;
    left: 0;
  }
  nav a {
    padding: 5px 5px;
    font-size: 1.25rem;
  }
}
section {
  height: 100vh;
  width: 100vw;
  justify-content: center;
  align-items: center;
  scroll-snap-align: start;
  overflow: hidden;
  display: flex;
}
.fullscreen-text-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  z-index: 900;
  overflow: hidden;
}
.fullscreen-text {
  font-size: clamp(6rem, 10vw, 10rem);
  font-weight: 800;
  color: white;
  text-align: center;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 0 20px;
  position: relative;
  z-index: 1;
  -webkit-text-stroke: 2px white;
  text-shadow: 0 0 500px rgba(39, 46, 68, 0.1);
}
.fullscreen-text-bg {
  position: absolute;
  top: 54%;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(to top, white 100%, transparent 0%);
  z-index: 2;
  pointer-events: none;
}
@media screen and (max-width:1080px) {
  .fullscreen-text-bg {
    top: 53%;
  } /*
  .section-bottom-gradient {
    position: relative;
  }
  .section-bottom-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    pointer-events: none;
    z-index: 999;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: cover;
    mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    mask-repeat: no-repeat;
    mask-size: cover;
    background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  }*/
}
.text_motion {
  opacity: 0;
  transform: translateY(0);
  transition: opacity 0.75s ease, transform 0.75s ease;
  will-change: opacity, transform;
}
.text_motion.active {
  opacity: 1;
}
.slide-bottom, .slide-bottom-faster, .slide-bottom-slow, .slide-bottom-slower {
  transform: translateY(100px);
}
.slide-bottom.active, .slide-bottom-faster.active, .slide-bottom-slow.active, .slide-bottom-slower.active {
  transform: translateY(0);
}
.slide-left, .slide-left-faster, .slide-left-slow, .slide-left-slower {
  transform: translateX(-100px);
}
.slide-left.active, .slide-left-faster.active, .slide-left-slow.active, .slide-left-slower.active {
  transform: translateX(0);
}
.slide-right, .slide-right-faster, .slide-right-slow, .slide-right-slower {
  transform: translateX(100px);
}
.slide-right.active, .slide-right-faster.active, .slide-right-slow.active, .slide-right-slower.active {
  transform: translateX(0);
}
.fade-only, .fade-only-slow, .fade-only-slower {
  opacity: 0;
}
.fade-only.active, .fade-only-slow.active, .fade-only-slower.active {
  opacity: 1;
}
.scale-only, .scale-only-slow {
  transform: scale(0.6);
  opacity: 0;
}
.scale-only.active, .scale-only-slow.active {
  transform: scale(1);
  opacity: 1;
}
.slide-bottom-faster, .slide-left-faster, .slide-right-faster {
  transition-duration: 0.75s;
}
.slide-bottom, .slide-left, .slide-right, .fade-only, .scale-only {
  transition-duration: 1s;
}
.slide-bottom-slow, .slide-left-slow, .slide-right-slow, .fade-only-slow, .scale-only-slow {
  transition-duration: 1.5s;
}
.slide-bottom-slower, .slide-left-slower, .slide-right-slower, .fade-only-slower {
  transition-duration: 1.75s;
}
.slide-bottom, .slide-left, .slide-right, .fade-only, .scale-only, .slide-bottom-faster, .slide-left-faster, .slide-right-faster, .slide-bottom-slow, .slide-left-slow, .slide-right-slow, .slide-bottom-slower, .slide-left-slower, .slide-right-slower, .fade-only-slow, .scale-only-slow, .fade-only-slower {
  transition-property: opacity, transform;
  transition-timing-function: ease-in-out;
}
@media screen and (max-width:1080px) {
  .slide-left, .slide-left-faster, .slide-left-slow, .slide-left-slower, .slide-right, .slide-right-faster, .slide-right-slow, .slide-right-slower, .slide-bottom-faster, .slide-bottom-slow, .slide-bottom-slower {
    transform: none !important;
  }
  .slide-left, .slide-left-faster, .slide-left-slow, .slide-left-slower, .slide-right, .slide-right-faster, .slide-right-slow, .slide-right-slower, .slide-bottom-faster, .slide-bottom-slow, .slide-bottom-slower {
    transition-property: opacity;
  }
}
@-webkit-keyframes bounce {
  0% {}
  100% {
    transform: translateY(-10px);
  }
}
.video-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: black;
}
.video-container video {
  align-items: center;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.horizontal_scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  overflow-x: auto;
  scroll-snap-type: inline mandatory;
}
.horizontal_scroll::-webkit-scrollbar {
  display: none;
}
.horizontal_scroll {
  scrollbar-width: none;
}
.columns_area {
  display: table;
  clear: both;
  scroll-snap-align: start;
}
.column_fullscreen_main {
  position: relative;
  display: flex;
  align-items: center;
  float: left;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  padding: 0px;
  overflow: hidden;
  scroll-snap-align: start;
}
.column_fullscreen_main img {
  align-items: center;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
@media screen and (max-width:1080px) {
  .column_fullscreen_main {
    align-items: flex-start;
    justify-content: flex-start;
  }
}
.column_fullscreen {
  position: relative;
  display: flex;
  align-items: center;
  float: left;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  padding: 0px;
  overflow: hidden;
  scroll-snap-align: start;
}
.column_fullscreen img {
  align-items: center;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
@media screen and (max-width:1080px) {
  .column_fullscreen {
    align-items: flex-start;
    justify-content: flex-start;
  }
  .columns_fullscreen_wrapper {
    display: none;
  }
}
.columns_left_narrow_profile {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  float: left;
  justify-content: center;
  width: 40vw;
  height: 100vh;
  padding: 80px;
}
.columns_left_narrow_profile img {
  align-items: center;
  width: 100%;
  height: 100vh;
  display: block;
  object-fit: cover;
  object-position: center;
}
.columns_left_narrow_profile video {
  align-items: center;
  width: 100%;
  height: 100vh;
  display: block;
  object-fit: cover;
  object-position: center;
}
.columns_left_narrow {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  float: left;
  justify-content: center;
  width: 40vw;
  height: 100vh;
  padding: 80px;
}
.columns_left_narrow img {
  align-items: center;
  width: 100%;
  height: 100vh;
  display: block;
  object-fit: cover;
  object-position: center;
}
.columns_left_narrow video {
  align-items: center;
  width: 100%;
  height: 100vh;
  display: block;
  object-fit: cover;
  object-position: center;
}
.columns_left_wide {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  float: left;
  width: 60vw;
  height: 100vh;
  overflow: hidden;
  animation: fadeIn 5s;
}
.columns_left_wide img {
  align-items: center;
  width: 100%;
  height: 100vh;
  display: block;
  object-fit: cover;
  object-position: center;
}
.columns_left_wide video {
  align-items: center;
  width: 100%;
  height: 100vh;
  display: block;
  object-fit: cover;
  object-position: center;
}
.columns_right_wide {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  float: right;
  justify-content: center;
  width: 60vw;
  height: 100vh;
  overflow: hidden;
}
.columns_right_narrow {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  float: right;
  justify-content: center;
  width: 40vw;
  height: 100vh;
  padding: 80px;
}
.columns_right_wide img {
  align-items: center;
  width: 100%;
  height: 100vh;
  display: block;
  object-fit: cover;
  object-position: center;
}
.columns_right_wide video {
  align-items: center;
  width: 100%;
  height: 100vh;
  display: block;
  object-fit: cover;
  object-position: center;
}
.columns_left_half {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  float: left;
  width: 50vw;
  height: 100vh;
  overflow: hidden;
  animation: fadeIn 5s;
}
.columns_left_half img {
  align-items: center;
  width: 100%;
  height: 100vh;
  display: block;
  object-fit: cover;
  object-position: center;
}
.columns_left_half video {
  align-items: center;
  width: 100%;
  height: 100vh;
  display: block;
  object-fit: cover;
  object-position: center;
}
.columns_right_half {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  float: right;
  justify-content: center;
  width: 50vw;
  height: 100vh;
}
.columns_right_wide_text {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  float: right;
  justify-content: center;
  width: 60vw;
  height: 100vh;
  padding: 80px;
}
.columns_right_half_text {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  float: right;
  justify-content: center;
  width: 50vw;
  height: 100vh;
  padding: 80px;
}
.columns_right_half img {
  align-items: center;
  width: 100%;
  height: 100vh;
  display: block;
  object-fit: cover;
  object-position: center;
}
.columns_right_half video {
  align-items: center;
  width: 100%;
  height: 100vh;
  display: block;
  object-fit: cover;
  object-position: center;
}
.columns_content {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: black;
}
.columns_content_tittle {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: black;
}
.main_container {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 80px 140px;
  box-sizing: border-box;
}
.main_container_content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 40px;
}
.content_block {
  flex: 1 1 calc(50% - 50px);
  display: flex;
  flex-direction: column;
}
.logos_container {
  justify-content: center;
  align-items: center;
  padding: 40px 80px;
}
.logos_grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  max-width: 100%;
}
.logos_grid img {
  max-width: 300px;
  height: auto;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease-in-out;
  opacity: 40%;
}
.logos_grid a:hover img {
  transform: scale(1.05);
  opacity: 100%;
}
.award {
  padding: 10px 0px;
  width: 100%;
  max-width: 150px;
  overflow: hidden;
  box-sizing: border-box;
}
.award img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.columns_content_contact {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: black;
}
@media screen and (max-width:1080px) {
  .columns_left_narrow_profile {
    display: flex;
    width: 100vw;
    height: 45vh;
    text-align: left;
    bottom: 0;
    padding: 25px;
  }
  .columns_left_narrow_profile img {
    width: 100vw;
    height: 45vh;
  }
  .columns_left_narrow video {
    height: 45vh;
  }
  .columns_left_narrow {
    display: flex;
    width: 100vw;
    height: 50vh;
    text-align: left;
    bottom: 0;
    padding: 25px;
  }
  .columns_left_narrow img {
    width: 100vw;
    height: 50vh;
  }
  .columns_left_narrow video {
    height: 50vh;
  }
  .columns_right_wide {
    top: 0;
    width: 100vw;
    height: 50vh;
  }
  .columns_right_wide img {
    width: 100vw;
    height: 50vh;
  }
  .columns_right_wide video {
    height: 50vh;
  }
  .columns_left_wide {
    top: 0;
    width: 100vw;
    height: 50vh;
  }
  .columns_left_wide img {
    width: 100vw;
    height: 50vh;
  }
  .columns_left_wide video {
    height: 50vh;
  }
  .columns_right_narrow {
    display: flex;
    width: 100vw;
    height: 50vh;
    text-align: left;
    bottom: 0;
    padding: 25px;
  }
  .columns_left_half {
    bottom: 0;
    display: flex;
    width: 100vw;
    height: 50vh;
  }
  .columns_left_half img {
    width: 100vw;
    height: 50vh;
  }
  .columns_left_half video {
    height: 50vh;
  }
  .columns_right_wide_text {
    top: 0;
    width: 100vw;
    height: 55vh;
    padding: 10px 25px;
  }
  .columns_right_half_text {
    top: 0;
    width: 100vw;
    height: 50vh;
    padding: 25px;
  }
  .columns_right_half {
    top: 0;
    width: 100vw;
    height: 50vh;
  }
  .columns_right_half img {
    width: 100vw;
    height: 50vh;
  }
  .columns_right_half video {
    height: 50vh;
  }
  .main_container {
    padding: 50px 25px;
  }
  .main_container_content {
    gap: 10px 25px;
  }
  .main_container_content p {
    font-size: clamp(0.1rem, 1vw + 1vh, 0.75rem);
  }
  .columns_content {
    justify-content: flex-start;
    -ms-transform: translateY(0%);
    transform: translateY(0%);
  }
  .columns_content_tittle {
    justify-content: center;
    padding: 0px 50px;
    -ms-transform: translateY(0%);
    transform: translateY(0%);
  }
  .columns_content_contact {
    justify-content: flex-start;
  }
  .columns_content p {
    font-size: clamp(0.1rem, 1vw + 1vh, 0.75rem);
  }
  .columns_content h1, .columns_content h2 {
    text-align: left;
    font-size: clamp(1rem, 1vw + 1vh, 1rem);
  }
  .columns_content h4, .columns_content h5, .columns_content h4 {
    padding-top: 0;
  }
  .award {
    padding: 10px 0px 0px 0px;
    width: 100%;
    max-width: 100px;
  }
  .logos_grid img {
    max-width: 200px;
    height: auto;
  }
}
.description_tittle {
  font-weight: 900;
  font-size: 30px;
  color: #333F61;
  position: absolute;
  z-index: 1000;
  left: 50px;
  bottom: 150px;
  width: 25%;
  line-height: 35px;
}
.project_number {
  text-align: left;
  font-weight: 800;
  font-size: 50px;
  -webkit-text-stroke: 1px rgba(51, 63, 97, 1.00);
  color: rgba(82, 82, 82, 0.00);
  margin: 0px 0px 0px -5px;
}
.exit-button-container {
  z-index: 1000;
  position: absolute;
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}
.exit-button {
  padding: 0px 0px 0px 0px;
  border: none;
  color: #ED4769;
  font-size: 50px;
  background-color: rgba(255, 0, 4, 0);
}
.exit-button-text {
  display: none;
}
.exit-button:hover + .exit-button-text {
  font-size: 15px;
  color: #333F61;
  display: inline-block;
  margin-left: 10px;
  transform: translateY(-50%);
}
@media screen and (max-width:1080px) {
  .exit-button-container {
    left: 20px;
  }
}
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  display: none;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  z-index: 2000;
}
.modal {
  width: 90%;
  height: 90%;
  background: black;
  padding: 0px;
  border-radius: 10px;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.modal iframe {
  width: 102%;
  height: 100%;
  border: none;
  outline: none;
  box-shadow: none;
  overflow: hidden;
}
body.modal-open {
  overflow: hidden;
}
.close-btn-modal {
  position: absolute;
  top: 0px;
  right: 0px;
  font-size: 40px;
  background: hsla(0, 0%, 0%, 0.0);
  color: #ED4769;
  border: none;
  cursor: pointer;
  padding: 0px 20px;
  border-radius: 40px;
}
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader-content {
  text-align: center;
}
.preloader-logo {
  width: 100px;
  margin-bottom: 20px;
}
.preloader-video {
  width: 150px;
  margin-bottom: 20px;
  border-radius: 50%;
  object-fit: cover;
  background: #ffffff;
}
.progress-bar {
  width: 300px;
  height: 2px;
  background: #ddd;
  border-radius: 1px;
  overflow: hidden;
  margin: 0 auto 10px;
}
.progress-fill {
  width: 0%;
  height: 100%;
  background: #222;
  transition: width 0.3s ease;
}
.progress-text {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #222;
}
#section-indicator {
  position: fixed;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  height: 240px;
  width: 54px;
  overflow: hidden;
  z-index: 999;
  isolation: isolate;
  border-radius: 50% 5% 5% 50%;
  transition:
    width 0.35s cubic-bezier(0.4, 0, 0.2, 1), -webkit-mask-size 0.4s ease, mask-size 0.4s ease, transform 0.3s ease;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.10) 30%, rgba(255, 255, 255, 0.05) 55%, rgba(255, 255, 255, 0) 80%);
  -webkit-mask-image:
    radial-gradient(circle at center, black 0%, rgba(0, 0, 0, 0.9) 30%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0.2) 80%, transparent 100%), linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
  mask-image:
    radial-gradient(circle at center, black 0%, rgba(0, 0, 0, 0.9) 30%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0.2) 80%, transparent 100%), linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
  -webkit-mask-composite: destination-in;
  mask-composite: intersect;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
#section-indicator:hover, #section-indicator.active {
  width: 200px;
  -webkit-mask-size: 140% 140%;
  mask-size: 140% 140%;
  transform: translateY(-50%) scale(1.03);
}
@media screen and (max-width:1080px) {
  #section-indicator {
    display: none;
  }
}
.indicator-scroll {
  height: 100%;
  overflow-y: auto;
  padding: 4px 0;
  scrollbar-width: none;
}
.indicator-scroll::-webkit-scrollbar {
  display: none;
}
.indicator-list {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  padding-right: 24px;
}
.indicator-item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 4px 0;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #333F61;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
@keyframes dotBreath {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.8);
    opacity: 1;
  }
}
.indicator-item.active .dot {
  animation: dotBreath 1.8s ease-in-out infinite;
  background: #ED4769;
}
.label {
  margin-right: 12px;
  white-space: nowrap;
  color: #333F61;
  font-size: 18px;
  opacity: 0;
  transform: translateX(20px) scale(1);
  transition:
    opacity 0.25s ease, transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
#section-indicator:hover .label, #section-indicator.active .label {
  opacity: 1;
  transform: translateX(0) scale(1);
}
.indicator-item.active .label {
  color: #ED4769;
}
.indicator-item:hover {
  transform: scale(1.25);
  color: #ED4769;
  cursor: none;
}
.indicator-item:hover .label {
  transform: translateX(0) scale(1.25);
  font-weight: 500;
  color: #ED4769;
  cursor: none;
}
.indicator-item:hover .dot {
  transform: scale(1.25);
  opacity: 1;
  background: #ED4769;
  cursor: none;
}
#section-indicator:hover .indicator-item:not(:hover) {
  opacity: 0.7;
  color: #ED4769;
  cursor: none;
}