@import url('../css/base.css');

/*  Header  */
.header_wrapper {
    background-color: var(--primaryColor);
    box-shadow: 0px 16px 24px rgb(0 0 0 / 8%);
    padding: 40px 64px;
    -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.header_wrapper.sticky_header {
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 99;
    padding: 16px 64px;
    transition: all 0.5s ease;
    animation: fadeIn 1s both;
}
.header_wrapper .logo_part {
    max-width: 200px;
}
.header_wrapper .toggle_part a{
    font-size: 24px;
    width: 30px;
    line-height: 1;
    color: #323232;
}
.header_wrapper .menu_right .btn_link{
    margin-right: 64px;
}

.sub_title h6{
    font-family: 'Switzer', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    border-bottom: 2px solid var(--primaryColor);
    display: inline-block;
    padding-bottom: 14px;
    margin-bottom: 24px;
}
.hero_banner{
    position: relative;
    z-index: 1;
    height: 100%;
    padding: 115px 0 32px 14.2%;
}
.hero_banner .comingsoon_badge{
    width: 157px;
    height: 157px;
    line-height: 157px;
    border-radius: 50%;
    background-color: var(--lightCreamColor);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primaryColor);
    margin-bottom: 24px;
}
.hero_banner .comingsoon_badge span{
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 28.6617px;
    display: block;
    line-height: 92%;
}
.hero_banner .hero_banner_text{
    position: relative;
    max-width: 981px;
    width: 100%;
    padding-bottom: 172px;
    /* top: 115px;
    left: 267px; */
}
.hero_banner .hero_banner_text .scrolldown_button{
    position: absolute;
    left: 0;
}
.hero_banner .hero_banner_text h1{
    font-family: 'Didot';
    font-weight: 500;
    font-size: 192px;
    line-height: 90%;
    letter-spacing: -0.04em;
    color: var(--lightCreamColor);
    margin-bottom: 24px;
}
.hero_banner_img {
    z-index: 0;
    background: linear-gradient(360deg, rgba(0, 0, 0, 0.7) 0.93%, rgba(0, 0, 0, 0) 69.12%), url(../images/hero_banner_img.png);
    width: 60%;
    height: 100%;
    position: absolute;
    background-repeat: no-repeat;
    background-size: cover;
    right: 0;
    bottom: 0;
    top: 0;
}
/* custom card */
.card.custom_card{
    border: none;
    border-radius: 8px;
}
.card.custom_card .card-body{
    padding: 14px 24px;
}

.about_gallery_section{
    padding-top: 110px;
}
.about_gallery_section .gallery_image{
    position: relative;
    overflow: hidden;
}
.about_gallery_section .gallery_image img{
    transition:all 0.4s ease;
}
.about_gallery_section .gallery_image:hover img{
    transform: scale(1.1);
}
.about_descriptions{
    width: 783px;
    padding-bottom: 160px;
}
.about_descriptions .flex_item_sb {
    position: relative;
}
.about_descriptions .scrolldown_button{
    position: absolute;
    right: 0px;
    top: 0px;
}
.about_descriptions h2{
    color: var(--lightCreamColor);
    letter-spacing: -0.04em;
    font-weight: 400;
    font-size: 72px;
    margin-bottom: 32px;
}
.about_descriptions p{
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    color: #D4C3C3;
    margin-bottom: 32px;
}
.about_gallery_list ul {
    gap: 32px;
    padding: 0 30px;
}
.about_gallery_list ul li{
  width: 25%;
}

  .marquee {
    padding: 1em;
    color: #fff;
    font-weight: 200;
    display: block;
    overflow: hidden;
    position: relative;
  }
  .marquee-content {
    display: flex;
    width: 100%;
    -webkit-animation: marquee 10s linear infinite running;
    -moz-animation: marquee 10s linear infinite running;
    -o-animation: marquee 10s linear infinite running;
    -ms-animation: marquee 10s linear infinite running;
    animation: marquee 10s linear infinite running;
  }
  .marquee-tag {
    display: block;
    font-family: 'Didot';
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
    white-space: nowrap;
    font-weight: 400;
    font-size: 591.021px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.08);
  }
  .marquee h2{
    font-weight: 400;
    font-size: 192px;
    line-height: 246px;
    letter-spacing: -0.04em;
    color: #FFFFFF;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px;
  }
  .marquee h2 span{
    border-bottom: 7px solid var(--primaryColor);
    line-height: 1;
    margin-left: 14px;
    display: inline-block;
  }
  @-moz-keyframes marquee {
    0% {
      -webkit-transform: translateX(0);
      -moz-transform: translateX(0);
      -o-transform: translateX(0);
      -ms-transform: translateX(0);
      transform: translateX(0);
    }
    100% {
      -webkit-transform: translate(-50%);
      -moz-transform: translate(-50%);
      -o-transform: translate(-50%);
      -ms-transform: translate(-50%);
      transform: translate(-50%);
    }
  }
  @-webkit-keyframes marquee {
    0% {
      -webkit-transform: translateX(0);
      -moz-transform: translateX(0);
      -o-transform: translateX(0);
      -ms-transform: translateX(0);
      transform: translateX(0);
    }
    100% {
      -webkit-transform: translate(-50%);
      -moz-transform: translate(-50%);
      -o-transform: translate(-50%);
      -ms-transform: translate(-50%);
      transform: translate(-50%);
    }
  }
  @-o-keyframes marquee {
    0% {
      -webkit-transform: translateX(0);
      -moz-transform: translateX(0);
      -o-transform: translateX(0);
      -ms-transform: translateX(0);
      transform: translateX(0);
    }
    100% {
      -webkit-transform: translate(-50%);
      -moz-transform: translate(-50%);
      -o-transform: translate(-50%);
      -ms-transform: translate(-50%);
      transform: translate(-50%);
    }
  }
  @keyframes marquee {
    0% {
      -webkit-transform: translateX(0);
      -moz-transform: translateX(0);
      -o-transform: translateX(0);
      -ms-transform: translateX(0);
      transform: translateX(0);
    }
    100% {
      -webkit-transform: translate(-50%);
      -moz-transform: translate(-50%);
      -o-transform: translate(-50%);
      -ms-transform: translate(-50%);
      transform: translate(-50%);
    }
  }
  @-webkit-keyframes fadeIn {
    0% {
      -webkit-transform: translateY(-150px);
      -moz-transform: translateY(-150px);
      -o-transform: translateY(-150px);
      -ms-transform: translateY(-150px);
      transform: translateY(-150px);
    }
    100% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
      }
  }
  @-o-keyframes fadeIn {
    0% {
      -webkit-transform: translateY(-150px);
      -moz-transform: translateY(-150px);
      -o-transform: translateY(-150px);
      -ms-transform: translateY(-150px);
      transform: translateY(-150px);
    }
    100% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
      }
  }
  @keyframes fadeIn {
    0% {
      -webkit-transform: translateY(-150px);
      -moz-transform: translateY(-150px);
      -o-transform: translateY(-150px);
      -ms-transform: translateY(-150px);
      transform: translateY(-150px);
    }
    100% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
      }
  }
  
.register_section{
    padding: 24px 30px;
}
.register_form {
    padding: 40px 136px;
}
.bg_dark_black {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), #231F1F;
}
.register_form h2{
    font-weight: 500;
    font-size: 72px;
    line-height: 100%;
    letter-spacing: -0.04em;
    color: #FFFFFF;
    margin-bottom: 24px;
}
.register_form p{
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    color: #EBF0F0;
    margin-bottom: 24px;
}
.register_form .btn-theme{
    border-width: 2px;
    border-color:var(--primaryColor);
    color: var(--lightCreamColor);
    background-color: transparent;
}
.register_form .btn-theme:hover{
    background-color:var(--primaryColor);
}
.footer_wrapper{
    padding:32px 30px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), #231F1F;
}
.footer_wrapper p{
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    color: #FFFFFF;
}
.footer_wrapper .social_icon a{
    border: 1px solid #FFFFFF;
    border-radius: 48px;
    display: block;
    width: 70px;
    height: 70px;
    line-height: 62px;
    text-align: center;
}
.footer_wrapper .social_icon a:hover{
    background-color: var(--primaryColor);
    border-color: var(--primaryColor);
}

header .logo_part img{
    max-width: 100%;
}