@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
:root{
    --primary: #FCC60A;
    --black: #000000;
    --white: #ffffff;
    --lightgray: #D9D9D9;
    --lightgray100: #A3A3A3;
    --gray: #ACABAB;
    --dark: #191919;
    --dark100: #202020;
    --dark200: #2B2B2B;
    --dark300: #1E1E1E;
    --dark400: #434343;
}
html{
    font-size: 16px;
}
@media screen and (max-width: 768px) and (max-width: 1280px) {
    html{
        font-size: 14px;
    }
}
@media screen and (max-width: 767px) {
    html{
        font-size: 12px;
    }
}
body{
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark);
    background-image: url('../assets/images/bg/bg-main.svg');
    background-position: top center;
    background-repeat: no-repeat;
    color: var(--white);
}
.main-site-wrapper{
    display: flex;
    width: 100%;
    flex-direction: column;
    background-image: 
        url(../assets/images/bg/bg-glow-top-right.svg), 
        url(../assets/images/bg/bg-sec-top-right.svg), 
        url(../assets/images/bg/bg-glow-bottom-left.svg), 
        url(../assets/images/bg/bg-bottom-left-circle-footer.svg), 
        url(../assets/images/bg/bg-bottom-right-circle-footer.svg);
    background-position: top right, top right, left bottom, left 14px bottom 260px, right bottom 650px;
    background-repeat: no-repeat;
}
.main-content-wrapper{
    display: flex;
    flex-direction: column;
    min-height: 30rem;
}
a{
    color: var(--primary);
    /* font-size: 0.75rem; */
    font-weight: 400;
}
a.link{
    background: linear-gradient(90deg, #FCCA14 1.5%, #FEE878 48.01%, #FCC60A 94.52%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: underline;
    text-decoration-color: #FCC60A;
}
.elementor-button{
    background: linear-gradient(90deg, #FCCA14 1.5%, #FEE878 48.01%, #FCC60A 94.52%);
    background-clip: inherit;
    -webkit-background-clip: inherit;
    -webkit-text-fill-color: inherit;
}
strong{
    font-weight: 600;
}
h1, h2{
    background: linear-gradient(93deg, #FFF 2.58%, #FCC812 105.59%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
h1{
    font-size: 2.25rem;
    font-weight: 600;
}
h2{
    font-size: 1.875rem;
    font-weight: 400;
}
h3{
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary);
}
h4{
    font-size: 1.25rem;
    font-weight: 600;
}
h5{
    font-size: 1.125rem;
    font-weight: 600;
}
h6{
    font-size: 1rem;
    font-weight: 400;
}
.btn{
    font-family: "Poppins", Sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    text-decoration: none;
    line-height: 1.25rem;
    color: var(--black);
    background-color: var(--primary);
    background: linear-gradient(90deg, #FCCA14 1.5%, #FEE878 48.01%, #FCC60A 94.52%);
    background-clip: inherit;
    -webkit-background-clip: inherit;
    -webkit-text-fill-color: inherit;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
    border-style: none;
    border-radius: 6.25rem 6.25rem 6.25rem 6.25rem;
    padding: 0.625rem 2.25rem 0.625rem 2.25rem;
}
.section-wrapper{
    display: flex;
    flex-direction: column;
}
.who-are-we-section{
    padding-top: 8.75rem;
}
.unlock-section{
    padding-top: 8.75rem;
}
.trust-us-section{
    padding-top: 8.75rem;
}
.payment-easy-section{
    padding-top: 8.75rem;
}
.business-tools-section{
    padding-top: 8.75rem;
}
.powerful-dashboard-section{
    padding-top: 8.75rem;
}
.text-subtitle{
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--gray);
}
.mb-20{
    margin-bottom: 1.25rem;
}
.mb-30{
    margin-bottom: 1.875rem;
}
.mb-32{
    margin-bottom: 2rem;
}
.mb-40{
    margin-bottom: 2.5rem;
}
.gap-32{
  gap: 2rem;
}
.reveal{
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: 1s all ease;
}
.reveal.active{
    transform: translateY(0);
    opacity: 1;
}
.header-wrapper{
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
    transition: all ease-in 0.5s;
}
.header-wrapper.header-sticky{
    backdrop-filter: blur(10px);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
.navbar-brand{
    padding: 0;
}
.header-wrapper .navbar{
    padding-top: 0;
    padding-bottom: 0;
}
.navbar .navbar-nav .nav-item{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}
.navbar .navbar-nav .nav-item .nav-link{
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--lightgray);
    padding: 0;
    transition: all ease-in 0.2s;
}
.navbar .navbar-nav .nav-item .nav-link:hover{
    color: var(--primary);
}
.hero-caption-wrp .hero-title{
    font-weight: 300;
}
.box-main-wrapper{
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: 1rem;
    background-color: var(--dark100);
    box-shadow: 0 4px 10px 0px rgba(0,0,0,0.1);
    padding: 2.5rem;
}
.unlock-main-box-wrapper{
    background-image: url('../assets/images/bg/bg-brand-pattern-img.svg');
    background-position: right top;
    background-repeat: no-repeat;
}
.trust-us-box-wrapper{
    background-image: url('../assets/images/bg/bg-brand-pattern-two-img.svg');
    background-position: left 0.625rem top 1.625rem;
    background-repeat: no-repeat;
    padding: 0;
}
.supercharge-us-box-wrapper{
    background-image: url('../assets/images/bg/bg-brand-pattern-three-img.svg');
    background-position: left 58% center;
    background-repeat: no-repeat;
    padding: 0;
}
.business-tools-box-wrapper{
    background-image: none;
    padding-bottom: 0;
}
.unlock-access-card{
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 1.5rem 2rem;
    background-color: rgba(217, 217, 217, 0.1);
    background-image: url('../assets/images/unlock-bg-img.png');
    background-repeat: no-repeat;
    background-position: right top;
    border-radius: 0.5rem;
}
.unlock-access-card .unlock-access-icon{
    display: flex;
    margin-bottom: 1.5rem;
}
.unlock-access-card .unlock-access-title{
    display: flex;
    max-width: 8.75rem;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.125rem;
    color: var(--white);
    margin-bottom: 0;
}
.trust-content-wrp{
    display: flex;
    flex-direction: column;
    padding: 5.625rem 2.5rem 2.5rem;
    width: 100%;
}
.trust-content-wrp .trust-content-title-box{
    display: flex;
    align-items: center;
    width: calc(100% + 4rem);
    margin-left: 4rem;
    background-color: var(--dark100);
    border: 4px solid var(--dark400);
    min-height: 10rem;
    margin-bottom: 2.5rem;
    position: relative;
    mix-blend-mode: lighten;
}
.trust-content-wrp .trust-content-title-box .trust-content-title{
    display: flex;
    margin-left: -4rem;
    margin-bottom: 0;
    position: relative;
}
.trust-content-wrp .trust-content-title-box::before{
    content: '';
    width: 4px;
    height: calc(100% - 2.25rem);
    background-color: var(--dark100);
    position: absolute;
    left: -4px;
    top: 2.25rem;
}
.trust-content-wrp .trust-content-title-box::after{
    content: '';
    width: 50%;
    height: 4px;
    background-color: var(--dark100);
    position: absolute;
    left: -4px;
    bottom: -4px;
}
.trust-right-content-group{
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 1.75rem 0 2.5rem;
}
.trust-right-text-desc{
    display: flex;
    flex-direction: column;
    width: 100%;
}
.trust-right-text-desc h3{
    margin-bottom: 1rem;
}
.trust-right-text-desc p{
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--gray);
    line-height: 1.125rem;
    margin-bottom: 0;
    max-width: 95%;
}
.supercharge-us-section{
    padding-top: 10rem;
}
.supercharge-img-right{
    display: flex;
    flex-direction: column;
    margin-top: -10rem;
}
.supercharge-content-wrapper{
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 2.5rem;
}
.supercharge-content-caption{
    width: 100%;
    max-width: 85%;
}
.business-tools-group-items{
    display: flex;
    width: 100%;
    max-width: 1060px;
    margin-left: auto;
    margin-right: auto;
    border-top: 1px solid #292828;
    border-left: 1px solid #292828;
    border-right: 1px solid #292828;
}
.bt-item-box{
    display: flex;
    width: 100%;
    max-width: 25%;
}
.bt-item-card{
    display: flex;
    position: relative;
    width: 100%;
    padding: 1.25rem 2rem 2rem;
    border-right: 1px solid #292828;
}
.bt-item-img{
    display: flex;
    width: 100%;
    position: relative;
}
.bt-item-content{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    min-height: 12.25rem;
    padding: 1.625rem 0.5rem 0;
    background-color: var(--dark100);
}
.bt-item-content-heading{
    display: flex;
    flex-direction: column;
}
.bt-item-content-heading-title{
    display: flex;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5rem;
    color: var(--white);
    margin-bottom: 0.75rem;
    min-height: 3rem;
}
.bt-item-content-heading-desc{
    font-size: 0.875rem;
    font-weight: 400;
    color: #868686;
    margin-bottom: 0.625rem;
}
.bt-item-content-bottom{
    display: flex;
}
.bt-item-content-bottom a.link{
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.125rem;
}
.icon-list-items{
    display: flex;
    flex-direction: column;
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
}
.icon-list-items .icon-list-item{
    display: flex;
    margin-bottom: 1.5rem;
}
.icon-list-items .icon-list-item .icon-list-text{
    display: flex;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 300;
    color: var(--white);
    background-image: url('../assets/images/list-tick-icon.svg');
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 1.5rem auto;
    padding-left: 2.75rem;
}
.supercharge-icon-list-items.icon-list-items{
    flex-direction: row;
    flex-wrap: wrap;
}
.supercharge-icon-list-items.icon-list-items .icon-list-item{
    margin-bottom: 1.25rem;
    width: 50%;
}
.supercharge-icon-list-items.icon-list-items .icon-list-item .icon-list-text{
    font-size: 0.875rem;
    background-image: url('../assets/images/list-arrow-up-icon.svg');
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 1.5rem auto;
    padding-left: 2.5rem;

}
.footer-wrapper{
    display: flex;
    flex-direction: column;
    width: 100%;
    border-top: 1px solid var(--dark300);
    background-image: url('../assets/images/bg/footer-bg-right.png');
    background-position: right top;
    background-repeat: no-repeat;    
}
.footer-main-area{
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}
.foot-block{
    display: flex;
    flex-direction: column;
    width: 100%;
}
.footer-logo{
    display: flex;
    margin-bottom: 2.5rem;
}
.newsletter-wrapper{
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 2.5rem;
}
.newsletter-wrapper p{
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
}
.newsletter-form{
    position: relative;
    width: 100%;
    max-width: 26.5rem;
}
.newsletter-form .form-group{
    width: 100%;
    max-width: calc(100% - 9rem);
}
.newsletter-form .form-group .form-control{
    background-color: var(--dark400);
    border-color: var(--dark400);
    border-radius: 0.5rem 0rem 0rem 0.5rem;   
    height: 3.75rem;
    font-size: 0.8125rem;
    font-weight: 400;
    color: rgba(255,255,255,0.8);
    box-shadow: none;
    outline: none;
}
.newsletter-form .form-group .form-control::placeholder{
    color: var(--white);
    opacity: 0.8;
}
.newsletter-form .form-submit{
    position: absolute;
    right: 0;
    top: 0;
    width: 9rem;
}
.newsletter-form .form-submit .btn{
    width: 100%;
    border-radius: 0 6.25rem 6.25rem 0;
    height: 3.75rem;
    border: 0px;
    background: linear-gradient(90deg, #FCCA14 1.5%, #FEE878 48.01%, #FCC60A 94.52%);
    color: #000000;
    border: 0px;
    outline: none;
    box-shadow: none;
}
.social-media-wrp .nav .nav-link{
    display: flex;
    padding: 0 1.5rem 0 0;
}
.social-media-wrp .nav .nav-link .nav-item{
    display: flex;
    transition: all ease-in 0.2s;
    opacity: 0.5;
    color: var(--white);
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
}
.social-media-wrp .nav .nav-link .nav-item:hover{
    color: var(--primary);
    opacity: 1;
}
.foot-nav-list{
    display: flex;
    flex-direction: column;
    width: 100%;
}
.foot-nav-list .foot-nav-list-headtitle{
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}
.foot-nav-list .nav{
    display: flex;
    flex-direction: column;
}
.foot-nav-list .nav .nav-item{
    display: inline-flex;
    margin-bottom: 1rem;
}
.foot-nav-list .nav .nav-item .nav-link{
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    font-weight: 400;
    padding: 0;
    transition: all ease-in 0.2s;
}
.foot-nav-list .nav .nav-item .nav-link:hover{
    color: var(--primary);
}
.copyrights{
    display: flex;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    border-top: 1px solid var(--dark200);
    font-size: 0.875rem;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
    text-align: center;
}
.navbar-toggler{
    padding: 0;
    border: 0px;
    box-shadow: none;
    outline: none;
}
.navbar-toggler:focus{
    outline: none;
    box-shadow: none;
}
.navbar-toggler-icon{
    width: 2rem;
    height: 2rem;
}
.policy-content-wrp p{
    font-weight: 300;
    color: var(--gray);
}

.policy-content-wrp h2,
.policy-content-wrp h3,
.policy-content-wrp h4{
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}
.policy-content-wrp h4{
    color: var(--gray);
}
.policy-content-wrp ul{
    color: var(--gray);
    padding-left: 2.5rem;
}
@media screen and (max-width: 991px) {
    .header-wrapper .navbar-collapse{
        position: absolute;
        top: 100%;
        min-width: 15rem;
        right: 0.75rem;
        background-color: var(--dark100);
        padding: 1rem;
        border-radius: 0.5rem;
    }
    .header-wrapper .navbar-collapse .navbar-nav .nav-item{
        padding: 0;
    }
    .header-wrapper .navbar-collapse .navbar-nav .nav-item .nav-link{
        padding: 1rem;
    }
}
@media screen and (max-width: 767px) {
    h1{
        font-size: 2rem;
    }
    .header-wrapper{
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
    .main-content-wrapper{
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    .hero-caption-wrp{
        margin-bottom: 2rem;
    }
    .box-main-wrapper{
        padding: 1.5rem;
    }
    .unlock-access-card{
        margin-bottom: 1rem;
    }
    .trust-content-wrp{
        padding: 5.625rem 0 1.5rem;
    }
    .trust-content-wrp .trust-content-title-box{
        width: 100%;
        margin-left: 0;
    }
    .trust-content-wrp .trust-content-title-box .trust-content-title{
        margin-left: 0;
    }
    .trust-right-content-group{
        padding: 3rem 0 0;
    }
    .trust-right-content-group > .row{
        gap: 3rem;
    }
    .trust-right-text-desc{
        margin-bottom: 0rem;
        text-align: center;
    }
    .trust-right-text-desc p{
        max-width: 100%;
    }
    .supercharge-img-right{
        margin-top: 0;
    }
    .supercharge-content-wrapper{
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    .supercharge-us-box-wrapper{
        padding: 0;
    }
    .supercharge-content-caption{
        max-width: 100%;
        margin-bottom: 1rem;
    }
    .business-tools-group-items{
        max-width: 100%;
        flex-wrap: wrap;
    }
    .bt-item-box{
        max-width: 50%;
        margin-bottom: 2rem;
    }
    .bt-item-card{
        padding: 1rem;
    }
    .footer-main-area{
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    .social-media-wrp{
        margin-bottom: 2rem;
    }
    .newsletter-form{
        max-width: 100%;
    }
}