:root {
    --clrDark : #090120;
    --clrDarkLight: #1b0f43;
    --clrYellow: #9228C3;
    --clrWhite : #c1aeff;
    --gr_background: linear-gradient(145deg, rgba(146,40,195,1) 45%, rgba(255,255,255,1) 100%);
    --shadowOne: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --shadowTwo: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --shadowThree: 0 1rem 3rem rgba(0, 0, 0, 0.175);    
    --filter_white : invert(20%) sepia(51%) saturate(4839%) hue-rotate(273deg) brightness(91%) contrast(93%);
    --filter_black : invert(0%) sepia(0%) saturate(0%) hue-rotate(166deg) brightness(95%) contrast(104%);;
    --filter_cream :  invert(100%) sepia(19%) saturate(918%) hue-rotate(327deg) brightness(99%) contrast(95%);
    --filter_dark : invert(100%) sepia(15%) saturate(407%) hue-rotate(343deg) brightness(29%) contrast(94%);
    
}
body, html{
    font-family: "Montserrat", sans-serif;
    transition: 0.5s;
    position: relative;
    scroll-behavior: smooth;
    background: var(--clrDark);
    color: #f4f4f4d4;
}

img{-webkit-user-drag: none;}
.logo{
    background: #08011e;
    padding: 10px 25px;
    border-radius: 50px;
}
.logo img{
    height: 35px;
}
header{
    /* background: rgba(255, 255, 255, 0.247) */
}
.menu{
    text-decoration:none;
    color:unset;
}
.menu img{
    width:33px;
}
.nav_menu{
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* padding-top: 15px; */
    /* padding-bottom: 15px; */
    background: #191040;
    padding: 12px 12px;
    border-radius: 50px;
    margin-top: 20px;
    position: relative;
    z-index: 9999;
}
.nav_left{
    display: flex;
    align-items: center;
    gap: 20px;
}
.d_menu ul{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;

}
.d_menu ul li a{
    text-decoration: none;
    color: var(--clrWhite);
    transition: 0.3s;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
}
.d_menu ul li a:hover{
    color: var(--clrYellow);
    transition: 0.3s;
}
.button_border{
    border: 1px solid var(--clrWhite);
    /* background: var(--clrWhite); */
    color: var(--clrWhite);
    text-decoration: none;
    font-weight: 600;
    padding: 17px 26px;
    font-size: 14px;
    display: inline-block;
    border-radius: 50px;
    transition: 0.3s;
}
.button_border:hover{
    /* background: var(--clrYellow); */
    border-color: var(--clrYellow);
    color: var(--clrYellow);
    transition: 0.3s;
}
.button_fill{
    /* border: 2px solid var(--clrYellow); */
    color: var(--clrWhite);
    background: var(--clrYellow);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 17px 26px;
    display: inline-block;
    border-radius: 50px;
    transition: 0.3s;
}
.button_fill:hover{
    background: var(--clrWhite);
    color: var(--clrDark);
    transition: 0.3s;
}
.content_banner{
    text-align: center;
    padding-top: 150px;
    padding-bottom: 130px;
    position: relative;
    overflow: hidden;
}
.circle_bg1{
    width: 500px;
    height: 500px;
    position: absolute;
    left: 200px;
    top: 0;
    display: inline-block;
    background: rgb(146, 40, 195);
    background: radial-gradient(circle, rgba(146, 40, 195, 1) -50%, rgba(218, 181, 234, 0) 72%);
    position: absolute;
    z-index: 1;
    animation: example 10s infinite;
    opacity: 0.6;
}
@keyframes example {
    0% {
        left: 200px;
        top: 0;
    }
    
    50% {
      left: 400px;
      top: 50px;
    }
    0% {
        left: 200px;
        top: 0;
      }
    
  }
.circle_bg2{
    width: 500px;
    height: 500px;
    position: absolute;
    right: 200px;
    top: 0;
    display: inline-block;
    background: rgb(146, 40, 195);
    background: radial-gradient(circle, #3C0AA9 -50%, rgba(218, 181, 234, 0) 72%);
    position: absolute;
    z-index: 1;
    animation: example2 10s infinite;
    opacity: 0.6;
}
@keyframes example2 {
    0% {
        right: 200px;
    top: 0;
    }
    
    50% {
      right: 400px;
      top: 50px;
    }
    0% {
        right: 200px;
        top: 0;
      }
    
  }
.content_banner h1{
    font-size: 140px;
    font-weight: 800;
    background: linear-gradient(136deg, rgba(146, 40, 195, 1) 21%, rgba(255, 255, 255, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.content_banner h3{
    font-size: 34px;
    color: var(--clrWhite)
}
.content_banner h5{
    font-size: 21px;
    background: linear-gradient(136deg, rgba(255, 255, 255, 1) 21%, rgba(146, 40, 195, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.about_card{
    /* border: 1px solid #311d87; */
    background: #170b4a;
    padding: 30px;
    color: #fff;
    border-radius: 10px;
    min-height: 287px;
}
.about_card h2{
    font-size: 40px;
    font-weight: 600;
    color: var(--clrWhite);
}
.play_btn{
    padding: 12px 18px;
}
.about_me{
    background: var(--clrDarkLight);
}
.about_me_two{
    display: flex;
    justify-content: center;
}
.vertical_line{
    width: 2px;
    background: #3D6975;
    margin-left: 40px;
    margin-right: 40px;
}
.two_profile {
    margin-right: 50px;
    width: 100px;
}
.two_profile img{
    width: 58px;
    height: 58px;
    object-fit: cover;
    border-radius: 50px;
    margin-right: -29px;
}
.profile_review{
    display: flex;
    align-items: center;
    margin-top: 15px;
}
.review_star{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--clrYellow);
}
.profile_review p{
    margin: 0;
}
.three_item{
    background: var(--clrDarkLight);
    border-radius: 30px 90px;
    text-align: center;
    padding: 50px;
}
.three_item img{
    width: 90px;
    margin-top: 30px;
    margin-bottom: 30px;
}
.sp_top{
    padding-top: 100px;
}
.sp_bottom{
    padding-bottom: 100px;
}
.three_item h3{
    font-size: 21px;
    font-weight: 500;
    color: var(--clrWhite);
}
.ti_m{
    margin-top: 40px;
}
.section_title{
    font-size: 55px;
    color: var(--clrYellow);
    font-weight: 600;
    margin-bottom: 80px;
}
.review_card{
    background: var(--clrDarkLight);
    border-radius: 40px;
    padding: 30px;
    color: #fff;
    margin-bottom: 20px;
}
.review_profile{
    display: flex;
    align-items: center;
    gap: 10px;
}
.text_profile{
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(149,46,197);
    background: linear-gradient(145deg, rgba(149,46,197,1) 24%, rgba(146,40,195,1) 65%, rgba(218,181,234,1) 100%, rgba(255,255,255,1) 100%);
    color: var(--clrWhite);
    border-radius: 50px;
    font-weight: 600;
    font-size: 22px;
}
.review_content h5{
    margin: 0;
    font-size: 18px;
}
.review_content p{
    margin: 0;
    font-size: 14px;
    color: #f4f4f48c;
}
.review_card>p{
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 108px;

}
.section_background_light{
    background: var(--clrDarkLight);
}
.g_card{
    padding: 30px;
    border-radius: 40px;
    background: rgb(255, 255, 255);
    background: linear-gradient(162deg, rgb(255 255 255 / 17%) 0%, rgba(255, 255, 255, 0) 100%);
    color: var(--clrWhite);
    margin-bottom: 20px;
}
.g_card h1{
    font-size: 70px;
    font-weight: 700;
    color: var(--clrYellow);
}
.g_card p{
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 68px;
}
.input_dark_icon{
    position: relative;
}
.input_dark_icon .form-control{
    background: var(--clrDark);
    border: 2px solid var(--clrWhite);
    padding: 12px 16px;
    color: #fff;
}
.form-control:focus{
    box-shadow: none;
}
.input_dark_icon .form-control:focus{
    border: 2px solid var(--clrYellow);
}
.input_dark_icon .form-control::placeholder{
    color: #ffffff38;
}
.input_dark_icon .input_icon{
    position: absolute;
    right: 0px;
    top: 0;
    width: 21px;
    margin-top: 15px;
    margin-right: 15px;
    filter: var(--filter_white);
}
.btn_submit{
    font-size: 18px;
    font-weight: 600;
    background: var(--clrYellow);
    color: var(--clrWhite);
    padding: 13px 36px;
    border-radius: 5px;
    border: 0;
    transition: 0.3s;
}
.btn_submit:hover{
    background: var(--clrWhite);
    color: var(--clrDark);
    transition: 0.3s;
}
footer{
    background: var(--clrDarkLight);
    padding-top: 20px;
    padding-bottom: 20px;
}
footer p{
    margin: 0;
    color: #ffffffc5;
}
.footer_menu{
    display: flex;
    justify-content: center;
    margin-top: 15px;
    gap: 25px;
    margin-bottom: 15px;
    align-items: center;
    list-style: none;
    color: #ffffffc5;
}
.footer_menu li a{
    color: #ffffffc5;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}
.footer_menu li a:hover{
    color: var(--clrYellow);
    transition: 0.3s;
}
.modal-content{
    background: var(--clrDarkLight);
}
.modal-header, .modal-footer{
    border-color: var(--clrDark);
}
.modal-title{
    color: var(--clrYellow);
}
.offcanvas{
    background: var(--clrDarkLight);
    color: #fff;
    max-width: 270px;
    z-index: 99999;
}
.offcanvas ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    gap: 14px;
}
.offcanvas ul li a {
    text-decoration: none;
    color: #ffffff9c;
    font-size: 20px;
    transition: 0.3s;
    font-weight: 500;
}
.offcanvas ul li a:hover{
    color: var(--clrYellow);
    transition: 0.3s;
}
.menu{
    color: var(--clrYellow);
    background: var(--clrDark);
    padding: 17px 11px;
    border-radius: 50px;
}
.offcanvas-title{
    color: var(--clrYellow);
}
.btn-close{
    filter: var(--filter_cream);
}
.page_title{
    padding-top: 60px;
    padding-bottom: 60px;
    background: var(--clrDarkLight);
}
.page_title h1{
    margin: 0;
    color: var(--clrYellow);
}



.inner_body
{
  padding-top: 70px;
}
.banner_section
{
  padding-top: 100px;
  padding-bottom: 45px;
  position: relative;
  background: transparent linear-gradient(270deg, #0a151f 0%, #102636 100%) 0% 0% no-repeat padding-box;
    background-repeat: no-repeat;
    background-size: auto;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  z-index: 1;
}
.banner_section .bannerimg_on
{
  position: absolute;
  bottom: 0px;
}
.main_signup_body
{
  background-color: #ffffff;
  padding: 10px 30px;
  border-radius: 8px;
  box-shadow: 0 .125rem .25rem rgba(0,0,0,.175) !important;
  margin-bottom: -30px;
  position: relative;
  top: -107px;
  z-index: 9;
}
.wel_back
{
  font-size: 25px;
  font-weight: 600;
  color: #333333;
  margin-top: 21px;
  font-family: 'Poppins', sans-serif;
}
.c_google
{
  display: block;
  width: 100%;
  background-color: #DD4B39;
  margin: 18px 0px;
  color: #FFFFFF;
  padding: 11px;
  font-size: 16px;
  font-weight: 500;
  border: none;
  border-radius: 5px;
  transition: 0.3s;
}
a, a:link
{
  text-decoration: none;
  outline: none;
}
.c_fbook
{
  display: block;
  width: 100%;
  margin: auto;
    margin-bottom: auto;
  background-color: #3B5998;
  color: #FFFFFF;
  padding: 11px;
  font-size: 16px;
  font-weight: 500;
  border: none;
  border-radius: 5px;
  margin-bottom: 20px;
  transition: 0.3s;
}
.or_br
{
  display: flex;
  justify-content: center;
  align-items: center;
}
.check_with_reset
{
  display: flex;
  justify-content: space-between;
}
.form-check
{
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: .125rem;
}
.form-check-input[type="checkbox"]
{
  border-radius: .25em;
}
.custom_b .yello_btn
{
  width: 100%;
  background-color: #FFDD35;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  padding: 12px 0px;
  font-size: 18px;
  transition: 0.3s;
}
.t_and_c
{
  text-align: center;
  color: #102542;
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: 500;
  padding: 21px 0px 12px 0px;
}
.main_signup_body .form-label
{
  color: #1D2245;
  font-weight: 500;
  font-size: 15px;
}
.form-check-label{
    color:#212529;
}
.help-block{
    color:red;
}

/* animation  */
.banner_content_main{
    z-index: 9;
    position: relative;
}
.creative__text--animation-3 {
    --primary-color: #8630BC;
    --text-color: #ffffff;
    --text-color-transparent: rgba(255, 255, 255, 0.1);
    --gradient-color-1: #CC98FF;
    --gradient-color-2: #8630BC;
    --gradient-color-3: #F9E068;
    --gradient-color-4: #E95329;
    
    display: inline-block;
    font-size: 80px;
    font-weight: 800;
    color: var(--text-color);
}
.creative__text--animation-3 span {
    position: relative;
    color: var(--text-color-transparent);
    animation: displayText-3 12s infinite;
    animation-delay: calc(-3s * var(--i));
}
@keyframes displayText-3 {
    0% {
        display: inline-block;
    }
    25%, 100% {
        display: none;
    }
}
.creative__text--animation-3 span::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: linear-gradient(
        to right,
        var(--gradient-color-1) 20%,
        var(--gradient-color-2) 30%,
        var(--gradient-color-3) 70%,
        var(--gradient-color-4) 80%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: trannparent;
    background-size: 500% auto;
    border-right: 2px solid var(--gradient-color-1);
    color: transparent;
    animation: animate-3 3s linear infinite, animate-text 4s ease-in-out infinite alternate;
}
@keyframes animate-3 {
    0%, 10%, 100% {
        width: 0;
    }
    70%, 90% {
        width: 100%;
    }
}
@keyframes animate-text {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    } 
}
.pro_card{
    background: var(--clrWhite);
    border-radius: 20px;
    padding: 10px;
    margin-bottom: 30px;
}
.pro_img img{
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 15px;
}
.pro_card h2{
    font-size: 18px;
    color: var(--clrDark);
    margin-top: 15px;
}
.pro_card h2 a{
    text-decoration: none;
    color: unset;
}
.pro_footer{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.pro_footer h5{
    color: var(--clrDark);
    margin: 0;
    font-weight: 700;
    font-size: 16px;
}
.pro_footer h5 span{
    font-size: 13px;
    margin-left: 10px;
    opacity: 0.5;
    position: relative;
}
.pro_footer span::after{
    content: '';
    width: 100%;
    height: 1.5px;
    background: var(--clrDark);
    position: absolute;
    left: 0;
    opacity: 0.8;
    top: 50%;
    transform: rotate(10deg);

}
.pro_footer a{
    display: inline-block;
    background: var(--clrYellow);
    padding: 7px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--clrWhite);
    transition: 0.3s;
}
.pro_footer a:hover{
    background: var(--clrDark);
    color: var(--clrWhite);
    transition: 0.3s;
}