@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@100..900&display=swap");
:root {
  --cmain: #dc3345;
  --csec: #0f0f0f;
  --cthr: #111;
  --cblack: #000;
  --cwhite: #fff;
  --clocw: #b5b5b5;
  --cborder_color_1: #e5e5e51f;
  --glass_gradient: linear-gradient(
    180deg,
    #000 0%,
    rgba(0, 0, 0, 0.73) 47%,
    rgba(255, 255, 255, 0) 100%
  );
}





.buton {
    height: 45px;
    background-color: #dc3345;
    border: 1px solid #dc3345;
    position: relative;
    transition: all 0.3s ease;
    z-index: 5;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    width: 170px;
    padding: 0;
    cursor: pointer;
}

@media (max-width: 991px) {
    .buton {
        height:40px;
        width: 150px;
    }
}

.buton span {
    transform: translateX(-23px);
    font-size: 17px;
    color: #fff !important;
    font-weight: 400;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.buton .icon {
    width: 43px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: absolute;
    right: 4px;
    padding: 8px 8px 8px 10px;
}

@media (max-width: 991px) {
    .buton .icon {
        right:3px;
        width: 33px;
        height: 33px;
    }
}

@media (min-width: 991px) {
    .buton:hover .icon {
        right:0;
        transform: rotate(45deg) translateY(-2px);
    }
}

.buton:hover span {
    opacity: 0;
    transform: translateX(-10px);
}

.buton:hover .icon {
    right: 50%;
    transform: translateX(50%) rotate(45deg);
}

.buton.glass {
    border: 1px solid #0f0f0f69;
    background-color: #0f0f0f69;
    backdrop-filter: blur(2px);
}

.buton.white {
    border: 1px solid var(--cwhite);
    background-color: transparent;
    backdrop-filter: blur(2px);
}

.buton.white span {
    color: var(--cwhite) !important;
}

.buton.dark {
    border: 1px solid var(--cblack);
    background-color: transparent;
    backdrop-filter: blur(0);
}

.buton.dark span {
    color: var(--cblack) !important;
}

.buton.dark .icon {
    filter: brightness(0);
}







.hero {
  width: 100%;
  position: relative;
  height: 100vh;
  overflow: hidden;
}
@media (max-width: 991px) {
  .hero {
    height: 100svh;
    -webkit-transition: all 0.3s cubic-bezier(0.6, -0.28, 0.25, 1.25);
    transition: all 0.3s cubic-bezier(0.6, -0.28, 0.25, 1.25);
  }
  .hero.reelActive {
    height: 31vh;
  }
  .hero.mobilMenuActive {
    padding: 72px 12px 24px 12px;
    height: 35dvh;
    background-color: var(--cwhite);
  }
  .hero.mobilMenuActive video {
    border-radius: 25px;
  }
  .hero.mobilMenuActive .filter {
    opacity: 0;
  }
}
.hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  position: relative;
  user-select: none;
}
.hero .filter {
  width: 100%;
  height: 100%;
  z-index: 2;
  position: absolute;
  left: 0;
  top: 0;
  background: #000;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, #000 100%);
  opacity: 1;
  -webkit-transition: all 0.3s cubic-bezier(0.6, -0.28, 0.25, 1.25);
  transition: all 0.3s cubic-bezier(0.6, -0.28, 0.25, 1.25);
}
.hero .filter.reelActive {
  opacity: 0;
}
.hero .swipers {
  z-index: 5;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  -webkit-mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.9) 30%,
    rgba(0, 0, 0, 0.9) 70%,
    rgba(0, 0, 0, 0.1)
  );
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.9) 30%,
    rgba(0, 0, 0, 0.9) 70%,
    rgba(0, 0, 0, 0.1)
  );
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  /*will-change: transform, opacity;*/
  isolation: isolate;
  transform-style: preserve-3d;
}
.hero .swipers .crossSwiper,
.hero .swipers .crossSwiper2 {
  width: 100%;
  user-select: none;
  pointer-events: none;
  display: block;
  opacity: 1;
}
.hero .swipers .crossSwiper .swiper-wrapper,
.hero .swipers .crossSwiper2 .swiper-wrapper {
  transition-timing-function: linear !important;
}
.hero .swipers .crossSwiper .swiper-wrapper .swiper-slide,
.hero .swipers .crossSwiper2 .swiper-wrapper .swiper-slide {
  width: auto !important;
  white-space: nowrap;
  font-size: 140px;
  line-height: 158px;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--cwhite);
}
@media (max-width: 1590px) {
  .hero .swipers .crossSwiper .swiper-wrapper .swiper-slide,
  .hero .swipers .crossSwiper2 .swiper-wrapper .swiper-slide {
    font-size: 120px;
    line-height: normal;
  }
}
.hero .swipers .crossSwiper .swiper-wrapper .swiper-slide.outline,
.hero .swipers .crossSwiper2 .swiper-wrapper .swiper-slide.outline {
  color: transparent;
  font-weight: 500;
  -webkit-text-stroke: 1px var(--cwhite);
}
@media (max-width: 991px) {
  .hero .swipers .crossSwiper .swiper-wrapper .swiper-slide,
  .hero .swipers .crossSwiper2 .swiper-wrapper .swiper-slide {
    font-size: 112px;
    line-height: 138px;
  }
}
.hero .swipers .crossSwiper {
  animation: slideUp 0.7s ease-out forwards;
}
.hero .swipers .crossSwiper.animation-done {
  animation: none;
  transition: transform 0.3s ease;
}
.hero .swipers .crossSwiper.reelActive,
.hero .swipers .crossSwiper.mobilMenuActive {
  transform: translateX(-100%) !important;
  opacity: 0.5;
}
.hero .swipers .crossSwiper2 {
  animation: slideDown 0.7s ease-out forwards;
}
.hero .swipers .crossSwiper2.animation-done {
  animation: none;
  transition: transform 0.3s ease;
}
.hero .swipers .crossSwiper2.reelActive,
.hero .swipers .crossSwiper2.mobilMenuActive {
  transform: translateX(100%) !important;
  opacity: 0.5;
}
.hero .container {
  position: absolute;
  bottom: 10%;
  z-index: 5;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .hero .container {
    flex-direction: column;
  }
}
.hero .container .left {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
}
@media (max-width: 991px) {
  .hero .container .left {
    justify-content: space-between;
    width: 100%;
    gap: 12px;
    transition: all 0.3s ease;
    opacity: 1;
  }
  .hero .container .left .buton {
    width: 50%;
  }
  .hero .container .left.mobilMenuActive {
    transform: translateY(200%);
    opacity: 0;
  }
}
.hero .container .left button img {
  width: 40px;
  height: 40px;
  -webkit-transition: all 0.3s cubic-bezier(0.6, -0.28, 0.25, 1.25);
  transition: all 0.3s cubic-bezier(0.6, -0.28, 0.25, 1.25);
}
.hero .container .left button img.pauseReel {
  opacity: 0;
}
.hero .container .left button:hover img {
  transform: translateX(50%) rotate(0deg);
}
.hero .container .left button.reelActive .playReel {
  opacity: 0;
}
.hero .container .left button.reelActive .pauseReel {
  opacity: 1;
}
.hero .container .right {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  background-color: transparent;
  border: none;
  padding: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.6, -0.28, 0.25, 1.25);
  transition: all 0.3s cubic-bezier(0.6, -0.28, 0.25, 1.25);
  opacity: 1;
}
@media (max-width: 991px) {
  .hero .container .right {
    display: none;
  }
}
.hero .container .right.reelActive {
  transform: translateY(200%);
  opacity: 0;
}
.hero .container .right img {
  height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  width: 120px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.hero .container .right img:hover {
  filter: brightness(0) invert(1);
}
@media (max-width: 1590px) {
  .hero .container .right img {
    height: 35px;
    width: 100px;
  }
}
.hero .closeVideo {
  position: absolute;
  right: -150px;
  top: -150px;
  z-index: 999999;
  border: 1px solid #0f0f0f69;
  background-color: #0f0f0f69;
  backdrop-filter: blur(2px);
  width: 150px;
  height: 150px;
  padding: 40px 40px 10px 10px;
  border-radius: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.6, -0.28, 0.25, 1.25);
  transition: all 0.3s cubic-bezier(0.6, -0.28, 0.25, 1.25);
  cursor: pointer;
}
@media (max-width: 991px) {
  .hero .closeVideo {
    width: 110px;
    height: 110px;
  }
}
.hero .closeVideo img {
  filter: brightness(0) invert(1);
  width: 30px;
  height: 30px;
  object-fit: contain;
  transform: rotate(90deg);
  -webkit-transition: all 0.3s cubic-bezier(0.6, -0.28, 0.25, 1.25);
  transition: all 0.3s cubic-bezier(0.6, -0.28, 0.25, 1.25);
}
@media (max-width: 991px) {
  .hero .closeVideo img {
    width: 25px;
    height: 25px;
  }
}
.hero .closeVideo.reelActive {
  opacity: 1;
  right: -50px;
  top: -50px;
}
@media (max-width: 991px) {
  .hero .closeVideo.reelActive {
    right: -45px;
    top: -45px;
  }
}
.hero .closeVideo.reelActive img {
  transform: rotate(0deg);
}
.hero .closeVideo:hover {
  background-color: #0f0f0fb3;
}
.read_more {
  width: 100%;
  padding: 80px 0;
  background-color: var(--cthr);
}
@media (max-width: 991px) {
  .read_more {
    padding: 50px 0;
  }
}
.read_more .container {
  display: flex;
  flex-direction: column;
}
.read_more .container .gradient-text {
  text-align: center;
  margin-bottom: 15px;
}
.read_more .container .gradient-text h1 {
  display: inline-block;
  margin: 0;
  font-size: 65px;
  font-weight: 700;
  transition: all 0.3s ease;
  color: var(--cwhite);
}
@media (max-width: 1590px) {
  .read_more .container .gradient-text h1 {
    font-size: 48px;
    line-height: normal;
  }
}
@media (max-width: 991px) {
  .read_more .container .gradient-text h1 {
    font-size: 32px;
    line-height: 48px;
  }
}
.read_more .container p {
  font-size: 18px;
  text-align: center;
  color: var(--cwhite);
}
@media (max-width: 1590px) {
  .read_more .container p {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .read_more .container p {
    font-size: 14px;
  }
}
.read_more .container .content {
  display: none;
  transition: all 0.3s ease;
}
.read_more .container .content p {
  font-size: 16px;
}
@media (max-width: 991px) {
  .read_more .container .content p {
    font-size: 14px;
  }
}
.read_more .container .content h2 {
  color: var(--cwhite);
  margin: 0;
  font-size: 35px;
  text-align: center;
  font-weight: 500;
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .read_more .container .content h2 {
    font-size: 24px;
  }
}
.read_more .container .content a {
  color: var(--cmain);
  font-size: 16px;
  font-weight: 400;
}
@media (max-width: 991px) {
  .read_more .container .content a {
    font-size: 14px;
  }
}
.read_more .container button {
  margin: 28px auto 0 auto;
  height: 45px;
  background-color: transparent;
  border: 1px solid var(--cwhite);
  position: relative;
  transition: all 0.3s ease;
  z-index: 5;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  width: fit-content;
  padding: 0 40px;
  cursor: pointer;
}
.read_more .container button img {
  transform: rotate(90deg);
  width: 15px;
  object-fit: contain;
  transition: all 0.3s ease;
}
.read_more .container button:hover {
  border-color: transparent;
  background-color: var(--cwhite);
}
.read_more .container button:hover img {
  filter: brightness(0);
}
.read_more .container button.active {
  border-color: transparent;
  background-color: var(--cwhite);
}
.read_more .container button.active img {
  transform: rotate(-90deg);
  filter: brightness(0);
}
.read_more .container button.active:hover {
  border-color: var(--cwhite) !important;
  background-color: transparent !important;
}
.read_more .container button.active:hover img {
  filter: brightness(1) !important;
}
.hero .swipers .crossSwiper .swiper-wrapper .swiper-slide,
.hero .swipers .crossSwiper2 .swiper-wrapper .swiper-slide {
  width: auto !important;
  white-space: nowrap;
  font-size: 140px;
  line-height: 158px;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--cwhite);
  
  /* ADD THESE NEW PROPERTIES */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.hero .swipers {
  z-index: 5;
  isolation: isolate;
  transform-style: preserve-3d;
}



