@font-face {
    font-family: 'OpenSauceSans Light';
    src: url("fonts/OpenSauceSans-Light.ttf");
}
@font-face {
    font-family: 'OpenSauceSans Regular';
    src: url("fonts/OpenSauceSans-Regular.ttf");
}
@font-face {
    font-family: 'OpenSauceSans Medium';
    src: url("fonts/OpenSauceSans-Medium.ttf");
}
@font-face {
    font-family: 'OpenSauceSans Bold';
    src: url("fonts/OpenSauceSans-Bold.ttf");
}
@font-face {
    font-family: 'OpenSauceSans SemiBold';
    src: url("fonts/OpenSauceSans-SemiBold.ttf");
}
@font-face {
    font-family: 'OpenSauceSans ExtraBold';
    src: url("fonts/OpenSauceSans-ExtraBold.ttf");
}
@font-face {
    font-family: 'OpenSauceSans Black';
    src: url("fonts/OpenSauceSans-Black.ttf");
}
*{
    outline: none !important;
}
html {
    scroll-behavior: smooth;
}
body{
    background-color:#00FF88;
}
nav{
    border-radius: 30px;
    font-family: 'OpenSauceSans Medium';
    text-align: center;
    background: rgba(50, 50, 50, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    margin:20px 25px;
}
nav a{
    font-size: 18px;
    margin: 0px 15px;
    color: white;
}
nav i{
    color: black;
    border: 2px solid black;
    padding:5px 7px;
    background-color: #00FF88;
    border-radius: 10px;
}
.row:has(.hero-title){
    background-image:url("../assets/images/bg/hero-bg.png");
    background-attachment: fixed;
    background-size: cover;
    position: relative;
    height: 100vh;
}

.hero-banner{
    padding-top: 70px;
}
.hero-title{
    font-size: 3rem;
    padding: 20px;
    text-shadow: 0px 2px 5px #000000c0;
    color: white;
    font-family: 'OpenSauceSans Black';
}
.filter{
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.2));
}
.hero-subtitle{
    color: white;
    font-family: 'OpenSauceSans Light';
}
.hero-btn{
    color: black;
    font-family: 'OpenSauceSans Bold';
    text-transform: uppercase;
    background-color: white;
    border: 1px solid black;
    border-radius: 5px;
    padding: 10px 35px;
    box-shadow: 5px 5px 0px #00FF88;
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out, padding 0.3s ease-in-out;
}
.hero-btn:hover{
    color:black;
    text-decoration: none;
    background-color: #00FF88;
    box-shadow: 5px 5px 0px white; 
    padding: 10px 20px;
}
.shop-name{
    color: white;
    font-family:'OpenSauceSans Medium';
    border: 1px solid white;
    border-radius: 15px;
    padding: 10px 20px; 
    white-space: nowrap;
}
.colored-text{
    color: #00FF88;
}
.col-12:has(.moving-banner){
    background-color: #00ff88;
}
.moving-banner{
    font-family: 'OpenSauceSans Medium';
    text-align: center;
    margin: 0;
    white-space: nowrap;
}
.moving-banner{
    animation: banner 20s infinite linear ;
}

@keyframes banner {
    0%,100%{
        transform: translateX(0);
    }
    50%{
        transform: translateX(-100%);
    }
}

.section-label{
    font-family: 'OpenSauceSans Medium';
    background-color: #00FF881A;
    white-space: nowrap;
    display: inline-block;
    border: 1px solid #00FF88;
    border-radius: 30px;
    padding:5px 20px;
}
.subs-container{
    background-image: url('../assets/images/bg/container-bg.png');
    position: relative;
    overflow: hidden;
    background-attachment:scroll;
    background-size: cover;
    border-radius: 0 0 50px 50px;
}
.blur-filter{
    background: rgba(255, 255, 255, 0.4);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(3px);
    position: absolute;
    width: 100%;
    height: 100%;
}
.section-subtitle{
    font-family: 'OpenSauceSans Light';
}
.section-header{
    font-size: 50px;
    font-family: 'OpenSauceSans Black';
    background: linear-gradient(to right, #f1f1f1, #000000);
    -webkit-background-clip: text; 
    background-clip: text;
    color: transparent;
}
.more-btn{
    background-color: white;
    border: 1px solid black;
    border-radius: 5px;
    padding: 5px 15px;
    box-shadow: 5px 5px 0px #00FF88;
    white-space: nowrap;
    display: inline-block;
    margin: 5px;
    color: black;
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.more-btn:hover{
    text-decoration: none !important;
    background-color: #00FF88;
    box-shadow: 5px 5px 0px #00000040;
    color: black;
    transform: rotate(-10deg);
}
.animated-scroll{
    width: 60px;
    padding-top: 60px;
}
.most-popular-badge{
    position: absolute;
    display: inline-block;
    top: -2%; 
    right: -2%;
    width: 20% !important; 
    filter: drop-shadow(0px 0px 4px rgb(126, 126, 126)); 
}
.membership-card{
    position: relative;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0px 0px 5px #00000040;
    transition: transform 0.2s ease-in-out;
}
.membership-card:hover{
    transform: scale(1.01);
}
.price-month-banner{
    font-family: 'OpenSauceSans Semibold';
    font-size: 15px;
    padding: 5px 25px;
    border-radius: 20px 0px 20px 0px;
    display: inline-block;
}
.cta-button{
    font-family: 'OpenSauceSans Medium';
    display: flex;
    justify-content: center;
    text-transform: uppercase;
    color: white;
    padding: 10px;
    border-radius: 15px;
    outline: none;
    border: none;
    box-shadow: 0px 5px 5px #f1f1f1;
    transition: transform 0.3s ease-in-out;
}
.cta-button:hover{
    color: white;
    text-decoration: none;
    transform: scale(1.1);
}
.text-muted{
    font-family: 'OpenSauceSans Light';
}
.standard-text{
    background: linear-gradient(to right, #F4EBD0, #8E8979 40%);
    -webkit-background-clip: text; 
    background-clip: text;
    color: transparent;
}
.standard-vip{
    background: linear-gradient(to right, #F4EBD0, #8E8979 40%);
    color: black;
}
.standard-btn{
    background: linear-gradient(to right, #F4EBD0, #8E8979 40%);
    color: white;
}
.toggled-standard{
    background: linear-gradient(to right, #F4EBD0, #8E8979);
}

.value-text{
    background: linear-gradient(to right, #F4E1D2, #8E837A 40%);
    -webkit-background-clip: text; 
    background-clip: text;
    color: transparent;
}
.value-vip{
    background: linear-gradient(to right, #F4E1D2, #8E837A 40%);
    color: black;
}
.value-btn{
    background: linear-gradient(to right, #F4E1D2, #8E837A 40%);
    color: white;
}
.toggled-value{
    background: linear-gradient(to right, #F4E1D2, #8E837A);
}

.arbitrage-text{
    background: linear-gradient(to right, #B68D40, #6E572A 40%);
    -webkit-background-clip: text; 
    background-clip: text;
    color: transparent;
}
.arbitrage-vip{
    background: linear-gradient(to right, #B68D40, #6E572A 40%);
    color: black;
}
.arbitrage-btn{
    background: linear-gradient(to right, #B68D40, #6E572A 40%);
    color: white;
}
.toggled-arbitrage{
    background: linear-gradient(to right, #B68D40, #6E572A);
}
.standard-bordered{
    border: 1px solid #F4EBD0;
}
.value-bordered{
    border: 1px solid #F4E1D2;
}
.arbitrage-bordered{
    border: 1px solid #B68D40;
}
.full-bordered{
    border: 1px solid #00FF88;
}
.full-text{
    background: linear-gradient(to right, #00FF88, #009952 40%);
    -webkit-background-clip: text; 
    background-clip: text;
    color: transparent;
}
.full-vip{
    background: linear-gradient(to right, #00FF88, #009952 40%);
    color: black;
}
.full-btn{
    background: linear-gradient(to right, #00FF88, #009952 40%);
    color: white;
}
.toggled-full{
    background: linear-gradient(to right, #00FF88, #009952);
}
.membership-cat{
    font-size: 37px;
    font-family: 'OpenSauceSans Black';
    margin: 0;
}
img.membership-logo{
    padding: 10px;
    width: 50px !important;
    height: 50px !important;
}
.membership-price{
    font-family: 'OpenSauceSans Black';
    font-size: 80px; 
    margin: 0;
}
.membership-info{
    font-family: 'OpenSauceSans Light';
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.monthly-toggle{
    font-size: 14px;
    display: flex;
    justify-content: space-between;
}
.monthly-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    padding: 7px 20px;
    border: 1px solid #DEDEDE40;
    background-color: #f1f1f1;
    text-align: center;
    font-family: 'OpenSauceSans Light';
    color: black !important;
    border-radius: 10px;
    transition: 0.3s ease-in-out;
}
.monthly-btn:hover{
    text-decoration: none;
    border: 1px solid transparent;
    background-color: white;
}
.toggled{
    cursor: pointer;
    border: transparent;
    background-color: white;
    transform: scale(1.15);
    border-radius: 10px;
    box-shadow: 0px 0px 5px #00000040;
    font-family: 'OpenSauceSans Semibold';
    transition: 0.3s ease-in-out;
}
.faqs-container{
    background-image: url('../assets/images/bg/container-bg.png');
    position: relative;
    overflow: hidden;
    background-attachment:scroll;
    background-size: cover;
    border-radius: 50px 50px 0px 0px;
}
.faqs-question{
    font-family: 'OpenSauceSans Bold';
}
.faqs-answer{
    font-family: 'OpenSauceSans Light';
}
.card-header{
     background-color: #00FF88;
     border: 1px solid white;
     border-radius: 7px;
}
.footer{
    background-image: url('../assets/images/bg/footer-bg.png');
    position: relative;
    overflow: hidden;
    background-attachment:fixed;
    background-size: cover;
    color: white;
}
.footer h1{
    font-family: 'OpenSauceSans Black';
}
.footer p{
    font-family: 'OpenSauceSans Regular';
}
.footer-email a{
    color: black;
    background-color: white !important;
    padding: 7px 35px;
    border-radius: 7px;
    border: 1px solid black;
    box-shadow: 5px 5px 0px #00FF88;
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.footer-email a:hover{
    text-decoration: none;
    background-color: #00ff88 !important;
    box-shadow: 5px 5px 0px white;
}
.footer-social-icons img{
    width: 60px;
    padding-right: 20px;
    transition: filter 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.footer-social-icons img:hover{
    transform: scale(1.1);
    filter: drop-shadow(0px 0px 4px #f1f1f1);
}
.copyright{
    font-family: 'OpenSauceSans Medium';
}

@media screen and (max-width: 660px) {
    .hidden-sm-phone{
        display: none !important;
    }
}
@media screen and (max-width: 610px) {
    .hero-title{
        font-size: 2.2rem;
    }
    .sm-phone-colored{
        color:#00FF88;
    }
}
@media screen and (max-width: 655px) {
    .membership-cat{
        font-size: 1rem;
    }
    .membership-logo{
        display: none;
    }
    .monthly-toggle{
        font-size: .6rem;
        display: flex;
        justify-content: space-between;
    }
}
@media screen and (max-width: 799px) {
    .owl-carousel{
        display: none !important; 
    }
    nav{
        border: 1px solid transparent;
        border-radius:0px 0px 10px 10px;
        margin:0px;
    }
}
@media screen and (max-width: 446px) {
    .membership-card-details{
        padding: 15px !important;
    }
    .member-choose, .membership-footer{
        font-size: 10px;
        margin: 0;
    }
    .price-month-banner{
        font-size: 11px;
    }
}
@media screen and (max-width: 490px) {
    .cta-button{
        font-size: 9px !important;
        margin-bottom: 0 !important;
    }
}
@media screen and (max-width: 385px) {
    .section-header{
        font-size: 2.2rem;
    }
    .section-subtitle{
        font-size: 1rem !important;
    }
    .membership-cat{
        font-size: 1rem;
    }
    .membership-card hr{
        margin: 5px;
    }
}
@media screen and (max-width: 550px) {
    .membership-price{
        font-size: 2.7rem;
    }
    .membership-info{
        display: none;
    }
    .monthly-toggle{
        font-size: 11px;
    }
    .monthly-btn{
        padding: 5px 0px;
        border-radius: 5px;
        display: block;
        width: 100%;
    }
    .toggled{
        transform: scale(.90);
    }
}
@media screen and (max-width:399px){
    .cta-button{
        font-size: 7px !important;
        margin-bottom: 0 !important;
    }
    .membership-card{
        border-radius: 10px;
    }
    .price-month-banner{
        border-top-left-radius:10px ;
    }
}


