@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    margin: 0;
    box-sizing: border-box;
}
html,body{
    margin: 0;
    height: 100%;
}
body{
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 16px;
    line-height: 25px;
    background: #fff;
}
body:before,body:after{
    display: none !important;
}
.container{
    max-width: 1600px;
    margin: 0 auto;
}
h1, .h1{
    font-size:80px;
    font-weight: 500;
    line-height: 80px;
    color: #fff;
    margin-bottom: 25px;
}
h3{
    font-size:30px;
    font-weight: 300;
    line-height: 30px;
    color: #fff;
    margin-bottom: 25px;
}
.h2{
    font-size:60px;
    font-weight: 300;
    line-height: 60px;
    color: #fff;
    margin-bottom: 4rem;
}
p{
    color: #fff;
    margin-bottom: 0;
}
.btn{
    border: 1px solid #9F97FE;
    border-radius: 100px;
    padding: 14px 60px 12px 20px;
    color: #fff;
    position: relative;
    transition: all .3s ease-in-out;
    display: block;
    outline: none;
}
.btn span{
    width: 40px;
    height: 40px;
    background: #89AAFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 5px;
    top: 5px;
    transition: all .3s ease-in-out;
}
a.btn.btn-register {
    background: #000;
    max-width: 185px;
    text-align: center;
    padding-right: 20px;
    margin-bottom: 20px;
}
a.btn.btn-register:hover,a.btn.btn-register:active,a.btn.btn-register:focus{
    background:#fff;
    color:#000;
}
.btn:hover span{    
    border-radius: 100px;    
    width: 100%;
    right: 0;
    top:0;
    bottom: 0;
    height:100%;
    display: flex;
    overflow: hidden;
}
header a.btn {
    background: #000;
}
.btn span svg{
    transition: all .3s ease-in-out;
}   
.btn span em{
    opacity: 0;
    visibility: hidden;
    position: absolute;
    transition: all .3s ease-in-out;
    display: block;
    padding-right: 30px;   
    white-space: nowrap;
    color: #fff;
}
.btn:hover span em{
    opacity: 1;
    visibility: visible;   
    position: inherit;
}
.btn:hover span svg{
    position: absolute;
    right: 14px;
}
.dFlx{
    display: flex;
}
a{
    text-decoration:none
}


/* Header */
header{
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    padding: 30px 0;
}
header h1{
    margin-bottom: 0;
}

/* Banner */
.banner {
    position: relative;
}

.banner:before {
    content: '';
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.90) 0%, rgba(0, 0, 0, 0.00) 34.29%);
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 8;
}

.video_wraper {
    position: relative;
    overflow: hidden;
    width: 100%;
    /* Keep it the right aspect-ratio */
    padding-bottom: 56.25%; /* 16:9 */ 
    aspect-ratio: 16/9;
    /* No clicking/hover effects */
    pointer-events: none;
  }
  
 .controls {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translatex(-50%) translateY(-50%);
    z-index: 999;
}
#pauseButton{
    display:none;
}
.controls button {
    background: rgb(197 118 252);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    overflow: hidden;
    padding: 0;
}
.controls button img {
    filter: invert(4) brightness(3.5);
    /* max-width: 50px; */
}
.controls button:hover{
    transform:scale(1.2);
}
/*.banner.playing:hover .controls #pauseButton{*/
/*    display:block !important;*/
/*}*/

.banner iframe{
    /* width: 100%;
    min-height: 950px;
    display: block; */
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*width: 300%;*/
    width:100%;
    height: 100%;
    /* ...and bring it back again */
    /*margin-left: -100%;*/
    max-width: inherit;
    margin-bottom: 0;
}
header .wrap{
    justify-content: space-between;
    align-items: center;
}

/* SERVICES */
.services {    
    background: linear-gradient(285deg, #C576FC 3.7%, #89A9FF 99.14%);
    position: relative;
    overflow: hidden;
    padding: 8rem 0;
    text-align: center;
}
svg#sec_abs_1 {
    POSITION: absolute;
    left: 0;
    top: 0;
}
svg#sec_abs_2 {
    position: absolute;
    right: 0;
    bottom: 0;
}
.services .container > p{
    max-width: 56%;
    margin: auto;
}
.services_items {
    margin-top: 17rem;
    padding: 0;
    list-style: none;
    gap: 30px;
    justify-content: space-between;
    margin-left: 0;
}
.services_items li {
    max-width: 500px;
}
.service_item_inner {
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(5px);
    border-radius: 40px;
    border: 2px solid rgba(255, 255, 255, .30);
    padding: 3rem;
}
.service_image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    border-bottom: 8px solid #fff;
    margin: auto;
    margin-top: -180px;
    margin-bottom: 40px;
}
.service_image img {
    height: 100%;
    object-fit: cover;
}
.service_content {
    color: #fff;
}
.service_content p{
    font-weight: 400;
    margin-bottom: 25px;
}
ul.services_items.dFlx li:nth-of-type(2) {
    transform: translateY(-80px);
}
.service_content a.btn {
    display: inline-block;
    border-color: #fff;
    padding: 10px 50px 10px 15px;
}
.service_content a.btn span {
    width: 37px;
    height: 37px;   
    right: 4px;
    top: 4px;
}
.service_content a.btn span{    
    background-color: #fff;
}
.service_content a.btn span svg path{
    fill: #000 ;
}
.service_content a.btn span em{
    color: #000;
}
.service_content a.btn:hover span{
    width: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100%;
}
.services .container {
    position: relative;
}

/* Footer */
footer {
    background: #000 url(../images/footer_mask.png) top left no-repeat;
    background-size: cover;
    padding: 8rem 0 0 0 ;
    text-align: center;
}
footer a.btn{
    display: inline-block;
    margin: 5rem 0;
}
footer a.btn {
    display: inline-block;
    margin: 3rem 0 5rem 0;
}
.footer_bottom {
    padding-bottom: 2rem;
}
.footer_bottom a{
    text-decoration: underline;
    color: #fff;
}
.down_arrow_animation {
    position: absolute;
    z-index: 9;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 100px;
}
.down_arrow_animation svg{
    position: absolute;
    left:7px;
    top: 7px;
    display: block;   
    animation: downAnimation 2s linear infinite;
}
@keyframes downAnimation {
    0% {
        top: 5px;
    }
    50% {
        top: 20px;
    }
    100% {
        top: 5px;
    }
}


/* Inner Page */
.inner_banner{
    height:480px;
    background: #000 url(./../images/innerbanner.png) top left no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 7% 0;
    padding-top: 200px;
}
.inner_banner h2{
    position: relative;
    z-index: 91;
}
.inner_banner:before{
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    bottom: 0;
    z-index: 2;
    background-color: rgba(0,0,0,.5);
}
ul.br {
    display: flex;
    padding: 0;
    list-style: none;
    gap: 30px;
    position: absolute;
    bottom: 10%;
    color: #fff;
    z-index: 9;
    width: 100%;
    left: 0;
    right: 0;
    justify-content: center;
    margin: 0;
}
ul.br a {
    color: #fff;
    position: relative;
}
ul.br a:after {
    content: "\f005";
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-weight: var(--fa-style, 900);
    position: absolute;
    font-size: 10px;
    right: -20px;
}
.details_wrap {
    column-gap: 5rem;
}
.details_media {
    width: 50%;
    border-radius:40px;
    overflow: hidden;
}
.details_media img{
    display: block;
    width: 100%;
        height: 100%;
    object-fit: cover;
}
.details_content {
    width: 50%;
    text-align: left;
}
.details_content h2{
    font-size:80px;
    font-weight: 500;
    line-height: 80px;
    color: #fff;
    margin-bottom: 25px;
}
.details_content h3 {
    font-size: 26px;
    font-weight: 300;
    line-height: 30px;
    color: #fff;
    margin-bottom: 20px;
}
.details_content p {
   margin-bottom: 20px;
}
.details_content ul{
    list-style-type:none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    row-gap: 20px;
    color: #fff;
    margin-top: 30px;
    justify-content: space-between;
}
.details_content ul li{
    width: 47%;
    position: relative;
}
.details_content ul li:before {
    content: "\f00c";
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-weight: var(--fa-style, 900);
    width: 25px;
    height: 25px;
    background: #fff;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    margin-right: 20px;
    color: #000;
}
/* Inner Page end*/

/* Form */
.form_section {
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(5px);
    border-radius: 40px;
    border: 2px solid rgba(255, 255, 255, .30);
    padding: 3rem;
    margin-top: 5rem;
}
.input_wrap_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}
.form_input{
    position: relative;
    flex: 1;
}
.form_input input,.form_input textarea {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 100px;
    height: 60px;
    text-indent: 50px;
    font-family: "Poppins", sans-serif;
}
.form_input textarea{
    height: 110px;
    border-radius: 20px;
    margin-bottom: 30px;
}
.form_input input:focus{
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    font-family: "Poppins", sans-serif;
}
.form_input i.fa {
    position: absolute;
    left: 26px;
    top: 21px;
}
::placeholder{
    color: #fff;
    font-family: "Poppins", sans-serif;
}
.form_section .btn {
    border: 1px solid #9F97FE;
    border-radius: 100px;
    padding: 14px 60px 12px 20px;
    color: #fff;
    position: relative;
    transition: all .3s ease-in-out;
    display: block;
    letter-spacing: normal;
    height: auto !important;
    max-height: inherit;
    font-size: large;
    line-height: inherit;
    background: transparent;
    border-color: #fff;
    text-transform: none;
    font-weight: 300;
    display: block;
    margin: auto;
    width: 200px;
}
.form_section .btn span {
    width: 40px;
    height: 40px;
    background: #ffffff;
}
.form_section .btn span svg path{
   fill:#000
}
.form_section .btn:hover span {
    width: 100%;
    height: 100%;
    background: #ffffff;
}
.form_section .btn:hover span em{
   color: #000;
}
span.wpcf7-not-valid-tip {   
    font-size: 14px;
    color: #000;
}
.wpcf7-response-output {
    background: #000;
    color: #fff;
    border: none !important;
}
/* Form end */


.StripeElement {
    padding: 14px 30px 30px 30px !important;
}
.payment-container-custom {
    padding: 60px 0;
}
.payment-container-custom form {
    /* width: 500px !important; */
    margin: 0 auto !important;
    max-width: 500px;
    border: 1px solid #ddd !important;
    padding: 20px !important;
    margin-top: 50px !important;
    border-radius: 15px !important;
}
.payment-container-custom h2, .payment-container-custom p {
    text-align: center;
    color: #000;
}
 .payment-container-custom h2{
     margin-bottom:25px;
 }




























/* RESPONSIVE */

@media(max-width:1600px){
    .container{
        padding: 0 20px;
    }
}
@media(max-width:640px){
    .banner:before{
        display:none;
    }
    .controls button {
        width: 75px;
    }
    .down_arrow_animation{
        display: none;
    }
    h1, .h1 {
        font-size: 30px;       
        line-height: 30px;      
        margin-bottom: 20px;
    }
    .logo img{
        max-width: 180px;
    }
    header {       
        padding: 10px 0;
        background: #000;
        position: inherit;
        overflow: hidden;
    }
    .btn {
        border: 1px solid #9F97FE;       
        padding: 8px 40px 8px 13px;        
        font-size: 14px;
    }
    .btn span {
        width: 30px;
        height: 30px;       
    }
    .services {        
        padding: 25px 0;
    }
    .services .container > p {
        max-width: 100%;        
    }
    .services_items {
        margin-top: 30px;
        padding: 0;
        list-style: none;
        gap: 30px;
        justify-content: space-between;
        flex-direction: column;
    }
    ul.services_items.dFlx li:nth-of-type(2) {
        transform: none;
    }
    .services_items li {
        max-width: 500px;
        margin-top: 8rem;
    }
    .service_image {
        width: 250px;
        height: 250px;        
        border-bottom: 4px solid #fff;       
        margin-top: -150px;
        margin-bottom: 30px;
    }

    h3 {
        font-size: 26px;        
        line-height: 26px;      
        margin-bottom: 20px;
    }
    footer {        
        padding: 5rem 0 0 0;
    }
    svg#sec_abs_1 {
        position: absolute;
        left: 0;
        top: -13%;
        width: 100%;
    }
    body{
        padding-top: 73px;
    }
    header {       
        padding: 10px 0;
        background: transparent;
        position: fixed;
        overflow: hidden;
        background: #959fff;
        z-index:9999;
    }
    header .wrap {
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }
    
    .video_wraper {
        padding-bottom: 75%;
    }
    .inner_banner {
        height: 350px;
        padding: 30% 0;
        padding-top: 150px;
        background-position: center !important;
        display: none;
    }
    ul.br {       
        bottom: 30%;
        display: none;
    }
    body:not(.home) header .wrap {
        justify-content: space-between;
        align-items: center;
       
        gap: 0;
    }
    .form_section {        
        padding: 20px;
        margin-top: 0rem;
        border-radius: 20px;
    }
    .input_wrap_row {       
        flex-direction: column;
    }
    .form_input input, .form_input textarea {        
        border-radius: 10px;       
    }
    .form_input {        
        width: 100%;
    }
    .h2 {
        font-size: 30px;       
        line-height: 40px;      
        margin-bottom: 20px;
    }
    .details_wrap {        
        flex-direction: column;
        gap: 30px;
        margin-bottom: 50px;
    }
    .details_media {
        width: 100%;
        border-radius: 20px;
        overflow: hidden;
    }
    .details_content {
        width: 100%;
        text-align: center;
    }
    .details_content h2 {
        font-size: 40px;
        font-weight: 400;
        line-height: 40px;       
        margin-bottom: 20px;
    }
    .details_content h3 {
        font-size: 20px;       
        line-height: 25px;       
    }
    .details_content ul li {
        text-align: left;
        width: 100%;
        position: relative;
    }
    

}
@media (max-width: 380px) {
     body {
        padding-top: 64px;
    }
    .logo img {
        max-width: 150px;
    }
}