@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,500;0,6..96,600;0,6..96,700;0,6..96,800;0,6..96,900;1,6..96,400;1,6..96,500;1,6..96,600;1,6..96,700;1,6..96,800;1,6..96,900&family=Manrope:wght@200;300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root{
    --main-type:'Manrope', sans-serif;
    --secondary-type:"Playfair Display", serif;
    --cover:rgba(0, 0, 0, 0.8);
    --accent-color:#000;
    --color-100:#d8d8d8;
    --color-200:#c7c7c7;
    --color-focus: #fff;

    --ruby:#fd4d4d;


}

*{
    padding:0;
    margin:0;
    font-family:var(--main-type);
    box-sizing: border-box;
}

html,body{
    background:#000;
}

.max-width{
    margin:0px auto;
    width:95%;
    max-width:2000px;
}

.display-none{
    display:none !important;
}



.loading-badge {
    position: fixed;
    z-index: 25;
    top: 50%;
    left: 50%;
    border-radius: 20px;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 15px 20px;
    transition: all ease-in-out 0.3s;
    box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.4);
}

.hide-loading-badge {
    top: -100%;
    transform: translate(-50%, 0%);
    transition: all ease-in-out 0.3s;
}





@keyframes gradient {
    0% {background-position: 0%}
    100% {background-position: 100%}
}


.focus{
    color:var(--color-focus);
}
.quicklink{
    border-bottom:1px solid #fff;
}

a{
    color: inherit;
    text-decoration: none;
}


.diamond-shine {
    background: linear-gradient(90deg, #008AC6 0, #70F6FF 10%, 
    #008AC6 20%, #70F6FF 30%, #008AC6 40%, #70F6FF 50%, 
    #008AC6 60%, #70F6FF 70%, #008AC6 80%, #70F6FF 90%, #008AC6);
    background-size: 1000% auto;
    color: #000;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-animation: shine 10s linear infinite;
    animation: shine 10s linear infinite;
}

@keyframes shine {
    100% {
        background-position: 100%;
    }
}
.gold-shine {
    background: linear-gradient(90deg, #FFC14E 0, #e89700 10%, 
    #FFC14E 20%, #e89700 30%, #FFC14E 40%, #e89700 50%, 
    #FFC14E 60%, #e89700 70%, #FFC14E 80%, #e89700 90%, #FFC14E);
    background-size: 1000% auto;
    color: #000;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-animation: shine 10s linear infinite;
    animation: shine 10s linear infinite;
}
.emerald-shine {
    background: linear-gradient(90deg, #4DCD6B 0, #225A2F 10%, 
    #4DCD6B 20%, #225A2F 30%, #4DCD6B 40%, #225A2F 50%, 
    #4DCD6B 60%, #225A2F 70%, #4DCD6B 80%, #225A2F 90%, #4DCD6B);
    background-size: 1000% auto;
    color: #000;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-animation: shine 10s linear infinite;
    animation: shine 10s linear infinite;
}












.section-content{
    margin:10vh auto 0 auto;
    text-align: center;
    padding:0 100px;
    position:relative;
    z-index:5;
}

.section-title{
    font-size:30px;
    color:#fff;
    font-weight:700;
}



.section-subtitle{
    padding:20px 0 0 0;
    font-size:20px;
    color:#fff;
    font-weight:400;
}

.section-description{
    font-size:18px;
    opacity:0.8;
    padding:20px 0;
    color:#fff;
}

.section-action{
    display:flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    width:max-content;
    margin:0 auto;
}

.action-button{
    border-radius:200px;
    padding: 14px 46px;
    position:relative;
    z-index:2;
    display:block;
    text-decoration: none;
    font-size:16px;
    width:max-content;
    margin:5px;
    transition: all ease-in-out 0.6s;
}

.secondary-action-button{
    background:#0000002d;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border:1px solid #fff;
    color:#fff;
}

.primary-action-button{
    background:#fff;
    color:#000;
}





.continue-reading{
    margin:20px auto;
    padding:10px;
    background:#212121;
}
.continue-reading .slide{
    display:flex;
    align-items: center;
    justify-content: center;
}
.continue-reading-book-image{
    text-align: center;
}
.continue-reading-book-image img{
    width:100%;
    max-width:150px;
}
.carousel{
    position:relative;
    z-index:1;
}
.slides-wrapper {
    overflow: hidden;
    
}

.slides {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}

.slide {
    flex: 0 0 100%;
}

.carousel-slide-button{
    border-radius: 200px;
    border:none;
    background:#fff;
    padding:10px;
    cursor:pointer;
}
.carousel-slide-button:disabled{
    opacity:0.2;
    cursor: not-allowed;
}

#prev{
    position:absolute;
    top:50%;
    left:0;
    transform:translateY(-50%);
    z-index:2;
}
#next{
    position:absolute;
    top:50%;
    right:0;
    transform:translateY(-50%);
    z-index:2;

}



.continue-reading-content{
    padding:0 50px;
    text-align: left;
}

.continue-reading-small-title{
    text-transform: uppercase;
    color:#fff;
    opacity:0.4;
    font-size:12px;
    font-weight:900;
}
.continue-reading-title{
    color:#fff;
    font-size:24px;
}
.continue-reading-progress-bar-container{
    background:#4d4d4d;
    width:90%;
    border-radius: 200px;
    height:5px;
    margin:10px 0 0 0;
    max-width:500px;
}

.continue-reading-progress-bar{
    width:0%;
    border-radius: 200px;
    height:5px;
  animation: changeBackgroundColor 10s infinite;
  background: linear-gradient(-45deg, #006cfa, #64a7ff, #003983, #006cfa);
  background-size: 400% 400%;
    position: relative;
    transition: all ease-in-out 1s;
}
.continue-reading-percentage-completed{
    color:#fff;
    opacity:0.4;
    margin:0 0 50px 0;
}

.remove-from-queue{
    background:transparent;
    border:transparent;
    color:#fff;
    opacity:0.5;
}

.remove-from-queue:hover{
    cursor:pointer;
}

@keyframes changeBackgroundColor {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}








.main-book .primary-action-button{
    background:#0071e3 !important;
    color:#fff !important;
    border:1px solid #0071e3 !important;
    box-shadow: none !important;
}

.main-book .primary-action-button i{

    color:#fff !important;

}

.main-book .section-image img{
    
    max-width:300px;
}



.action-button:hover{
    cursor:pointer;
    transition: all ease-in-out 0.3s;
}

.action-button i{
    position:absolute;
    transform:translate(-100%, -50%);
    opacity:0;
    transition: all ease-in-out 0.5s;
    right:15px;
    top:50%;
}

.action-button:hover i{
    transform:translate(0%, -50%);
    opacity:1;
    transition: all ease-in-out 0.2s;
}




.section-image{
    position:relative;
    width:100%;
    
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

.section-image img{
    max-width:450px;
}

.section-small{
    font-size:12px;
    padding:15px 0 0 0;
    color:#7e7e7e;
}

.section-small img{
    width:15px;
    margin:0 5px 0 0;
}




.main-book{
    position:relative;
    border:1px solid #6F6F6F;
    background:#101010;
}

.main-book .quicklink{
    border-bottom:1px solid #7e7e7e;
}

.main-book-shader{
    position:absolute;
    z-index:2;
    width:100%;
    height:100%;
    background:#1f1f1fdb;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius:20px;
}

.main-book .section-content{
    padding:10px 50px 20px 50px;
}
.main-book .section-title{
    font-family: var(--secondary-type);
    font-size:50px;
}

.main-book .section-title img{
    width:100%;
    max-width:400px;
}



.reviews{
    position:relative;
    width:100%;
    margin:50px auto;
    padding:20px;
    display:flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    z-index:3;
}

.review{
    border-radius: 10px;
    background:#2e2e2e;
    color:#c2c2c2;
    width:max-content;
    margin:5px;
    padding:20px;
    font-size:14px;
    text-align: center;
}
.review-start{
    display:none;
    color:#c2c2c2;
    font-weight:100;
    margin:0 20px 0 0;
}


.disabled-button{
    background:#c0c0c0;
    color:#717171;
    border:none;
}





.announcement{
    
    background: #bd0048;
    background-size: 600% 100%;
    animation: gradient 10s linear infinite;
    animation-direction: alternate;
    text-align: center;
    padding:20px 10px;
    
}

a .announcement{
    color:#fff;
    text-decoration: none;
}








nav{
    width:100%;
    color:#fff;
    padding:30px 0;
    z-index:5;
    transition: all ease-in-out .3s;
}

.nav-active{
    background: rgba(1, 4, 21, 0.6);
    -webkit-backdrop-filter: saturate(100%) blur(10px);
    backdrop-filter: saturate(100%) blur(10px);
    transition: all ease-in-out .3s;
}

.nav-content{
    display:flex;
    flex-wrap: nowrap;
    align-items: center;
    animation: navappear 1.3s forwards;
}

.nav-logo{
    color:#000;
}

.nav-logo img:hover{
    cursor:pointer;
}

.nav-logo img{
    object-fit: contain;
    height:30px;
}

.nav-menu-items{
    display:flex;
    flex-wrap: nowrap;
    align-items: center;
    flex-grow: 1;
    justify-content: right;
}

.nav-menu-item{
    margin:0px 0 0 30px;
    font-size:14px;
    font-weight:200;
    color:#fff;
}

.nav-menu-item:hover{
    cursor:pointer;
}


.nav-menu-item i {
    color:#fff;
    margin:0 5px 0 0;
}

.menu{
    display:none;
    font-size: 20px;
    flex-grow: 1;
    text-align: right;
}
.menu:hover{
    cursor: pointer;
}


menu{
    display:block;
    width:100%;
    background:#0000009c;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position:fixed;
    top:0px;
    left:100%;
    transition: all cubic-bezier(1,0,.16,1.02) .3s;
    z-index:6;
    height:100vh;
}

menu h3{
    margin:0 0 20px 0;
    color:#fff;
}

.menu-close{
    color:#fff;
    font-weight:200;
    text-align: right;
    padding:20px 20px 0 0;
}

.menu-close:hover{
    cursor:pointer;
}

.show-menu{
    left:0;
    transition: all cubic-bezier(1,0,.16,1.02) 0.8s;
}

.menu-item{
    color:#fff;
    padding:20px 0;
    font-weight:200;
    font-size: 24px;
}

.menu-item:hover{
    cursor: pointer;
}

.menu-item i{
    vertical-align: middle;
    margin:0 5px 0 0;
}

.menu-content{
    padding:30px;
}

.menu-content a,
.nav-content a{
    text-decoration: none;
    color:inherit;
}


.club-effect,
.club-effect i{
    
    color:#70F6FF;
}

.club-header-img{
    background: url(/assets/images/royal.jpg) center center / cover no-repeat;
    width:100%;
    height:300px;
    position:relative;
}

.club-header-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(19, 19, 19, 0), rgba(19, 19, 19, 1));
  }









.creds{
    padding:5vh 0;
    height:auto;
    background-size:contain;
    
    
background:#171717;
margin:20px auto;
}

.creds-container{
    width:90%;
}

.creds-boxes{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.creds-box{
    text-align: center;
    margin:10px;
}

.creds-box-title{
    font-family: var(--primary-type);
    font-size:50px;
    color:var(--color-100);
    font-weight:800;
}

.creds-box-description{
    font-family: var(--main-type);
    font-size:15px;
    color:var(--color-200);
}






.double-box-container{
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, auto);
    grid-template-rows: repeat(2, auto);
}

.club{
    /* border:1px solid #00405c;
    background:#00263707;
    background:#e8e8e8; */
}
.club .section-title,
.club .section-subtitle,
.club .section-description{
    color:#131313;
}
/* .club .action-button{
    filter:invert(1);
} */
/* .club .section-image{
    align-items: end !important;
} */
.yt{

}

.yt .section-title img{
    width:30px; 
    margin:0 5px 0 0;
}

.shop{

}












.button-buy{
    font-weight:bold;
}

.old-price{
    text-decoration:line-through;
    opacity:0.5;
    font-weight: lighter;
}






.connect{
    color:#fff;
    display:flex;
    flex-wrap: nowrap;
    font-size:20px;
    align-items: center;
}

.connect a{
    color:#fff;
    text-decoration: none;
}

.connect-icon{
    padding:0 0 0 30px;
}


section{
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    --x-px: calc(var(--x) * 1px);
--y-px: calc(var(--y) * 1px);
border:1px solid #393939;
overflow: hidden;
}
section::before{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: inherit;
    background: radial-gradient(1000px circle at var(--x-px) var(--y-px), rgba(255, 255, 255, 0.05), transparent 40%);
  }
  section::before {
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  section:hover::before {
    opacity: 1;
  }



.section-img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;

}

buy{
    background:#000;
    width:100%;
    display:block;
}

.buy-content{
    padding:20px 0;
    margin:0 auto;
    text-align: center;
}

.buy-content img{
    width:200px;
}

.buy-action{
    display:flex;
    justify-content: center;
}



#main{
    z-index: 2;
}
#title{
    z-index: 3;
    opacity:.3;
}
















faq{
    width:100%;
    padding:100px 0 0 0;
    color:var(--color-200);
    display:block;
}

faq h2{
    font-size:25px;
    margin:0 0 50px 0;
    font-family: var(--secondary-type);
    color:var(--color-100);
}

.question{
    margin:0px 0;
    padding:40px 10px;
    border-bottom:1px solid rgba(97, 97, 97, 0.288);
}

.question h3{
    margin:0 0 5px 0;
}

.question-title{
    display:flex;
}

.question-icon{
    flex-grow: 1;
    text-align: right;
    font-size:25px;
    transition: all ease-in-out .5s;
    transform: rotate(0deg);
}

.question-icon i{
    transition: all ease-in-out .3s;
}

.question p{
    font-weight:200;
    color:rgb(209, 209, 209);
    padding:0 0 0 20px;
}

faq a{
    color:#c0c0c0 !important;
}

footer{
    background:#000;
}

.footer-content{
    padding:40px 0 60px 0;
    display:flex;
    align-items: center;
}

.footer-details{
    flex-grow: 1;
}

.footer-details a{
    color:#c0c0c0;
}

.privacy-policy{
    font-size:12px;
    color:#c0c0c0;
    margin:20px 0 0 0;
}

.not-found{
    color:#fff;
    text-align:center;
    padding:25vh 0;
    margin:0 auto;
    width:100%;
}

.not-found p{
    opacity:.8;
    font-weight:200;
    padding:20px 0;
}

.not-found a{
    margin:0 auto;
}





.support{
    background:#252525;
    color:1px solid #888888;
    padding:50px;

}

.support-container,
.support-links{
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
}

.support-title{
    color:#fff;
    font-size:25px;
    font-weight:700;
}

.support-link{
    position:relative;
    z-index:5;
    padding:20px;
    font-size:18px;
    opacity:0.8;
    color:#fff;
}










.memberships-container{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:30px;
}

.memberships-container .diamond-royal{
    
}

.royal-box{
    padding-bottom: 100px;
    margin:5px auto;
    color:#000;
}

.royal-box .action-button img{
    width:20px;
    margin:0 5px 0 0;
}

.silver-royal{
    grid-column-end: span 3;
}
.gold-royal{
    
    
    border:1px solid #5c461c;
}
.ruby-royal{
    border:1px solid var(--ruby);
    
}
.diamond-royal{
    border:3px solid #008AC6;
    
    background:#002637;
    transform: scale(1.05);
}
.emerald-royal{
    
    border:1px solid #1e522a;
    
}

.gold-royal-text{
    color:#FFC14E;
}
.ruby-royal-text{
    color:var(--ruby);
}
.diamond-royal-text{
    color:#05b4ff;
}



.benefit{
    padding:10px 0;
    border-radius: 20px;
    border:1px solid transparent;
    font-weight:200;
    text-align: left;
    font-size:15px;
    letter-spacing: 0.05em;
}

.benefit .ph{
    padding:0 10px 0 0;
}

.benefit img{
    max-width:20px;
    margin:0 0 0 5px;
}


.benefitreadfreeactive{
    color:#fff;
    border-color: transparent;
    animation: highlightBenefit 1s forwards 1s;
    animation-iteration-count: 3;
}

.benefitreadfreebuttonactive{
    color:#000;
    background: #fff;
    animation: highlightBenefitButton 1s forwards 1s;
    animation-iteration-count: 3;
}











/* Club Section */
.club-max-width{
    max-width:900px;
    margin:0 auto;
    width:90%;
}
.club-gradient-effect{
    animation: gradient-fade 40s linear infinite alternate;
    background-image: radial-gradient(circle,#cdd5df,#e7cdd3,#e8e0d9);
    background-position: 0 0;
    background-size: 100% 300%;
}
.club-gold-effect{
    animation: gradient-fade 40s linear infinite alternate;
    background-image: radial-gradient(circle,#dfd7cd,#e7d8cd,#dfd7cd);
    background-position: 0 0;
    background-size: 100% 300%;
}
.club-diamond-effect{
    animation: gradient-fade 40s linear infinite alternate;
    background-image: radial-gradient(circle,#d7e6ed,#e1edee,#eef6fa);
    background-position: 0 0;
    background-size: 100% 300%;
}
.club-emerald-effect{
    animation: gradient-fade 40s linear infinite alternate;
    background-image: radial-gradient(circle,#d7edd9,#e7eee1,#eefaf4);
    background-position: 0 0;
    background-size: 100% 300%;
}


.transition-fade-up.enter {
    opacity: 1;
    transform: translateY(0);
}

.transition-fade-up{
    opacity: 0;
    transform: translateY(50px);
    transition-delay: .15s,0;
    transition-duration: 1s,1s;
    transition-property: transform,opacity;
    transition-timing-function: cubic-bezier(.28,1.1,.74,1),cubic-bezier(.59,.41,.68,.49);
}

.blend-overlay{
    mix-blend-mode: overlay;
}

.opacity-5{
    opacity:0.5;
}

.focused-text{
    opacity:1 !important;
}

@keyframes gradient-fade{
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 150%;
    }
}


.club-section{
    display:block;
    padding:16rem 1.5rem;
    text-align: center;
}

.club-section-title{
    font-size: 97px;
    line-height: 103px;
    letter-spacing: -0.15rem;
    font-weight:600;
    padding:0 0 50px 0;
}

.club-section-description{
    font-size: 36px;
    font-weight: 400;
    letter-spacing: -0.035rem;
    padding:0 0 50px 0;
    opacity:0.7;
}
.club-section-benefits{
    text-align: left;
    padding: 0 0 100px 0;
}

.club-section-benefit{
    display:flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    border-bottom:1px solid #2b2b2b2c;
    padding:50px 0;
}

.club-section-benefit-highlight{
    font-size: 28px;
    line-height: 120%;
    width:50%;
    font-weight:700;
}

.club-section-benefit-highlight-text{
    max-width:200px;
    display:inline-block;
}

.club-section-benefit-description{
    font-size: 24px;
    line-height: 32px;
    width:50%;
    opacity:0.5;
}
.club-section-benefit-description a{
    padding:0 0 3px 0;
    border-bottom:1px solid #000;
}
.club-section-benefit-description img {
    max-width: 25px;
}
.club-section-animation{
    width:100%;
    margin:20px auto 30px auto;
}
.club-section-animation-box{
    position:relative;
    border-radius: 20px;
    padding: 100px 10px;
    background:#ffffff4b;
    width:100%;
    overflow:hidden;
}

.club-section-animation-subtext{
    font-size:11px;
    opacity:0.5;
    padding:10px 0 0 0;
}

.club-section-animation-notification,
.club-section-animation-notification-second,
.club-section-animation-notification-third{
    max-width:300px;
    margin:0 auto;
    width:90%;
    background:#fff;
    border-radius: 10px;
    padding:20px;
    box-shadow: 2px 4px 20px #0000000a;
    color:#000;
    text-align: left;
    position:relative;
    overflow: hidden;
}
.club-section-animation-notification{
    z-index:3;
}
.club-section-animation-notification-second{
    margin-top: -20px;
    z-index: 2;
    transform: scale(0.94);
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);

}
.club-section-animation-notification-third{
    margin-top: -20px;
    z-index: 1;
    transform: scale(0.85);
    background-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}
.club-section-animation-notification-subheader{
    font-size:12px;
    opacity:0.5;
}
.club-section-animation-notification-message{
    overflow: hidden;
}
.club-section-animation-notification-message img{
    max-width:16px;
}
.club-section-animation-notification-timestamp{
    font-size:10px;
    opacity:0.5;
    text-transform: uppercase;
    padding:10px 0 0 0;
}


.club-section-action a{
    width:100%;
    font-size: 23px;
}
.club-gold-effect .club-section-action i{
    color:#e89700 !important;
}
.club-diamond-effect .club-section-action i{
    color:#008AC6 !important;
}
.club-emerald-effect .club-section-action i{
    color:#225A2F !important;
}


.club-nav{
    -webkit-backdrop-filter: blur(36px);
    backdrop-filter: blur(36px);
    background-color: #f0f0f052;
    border-radius: 1rem;
    box-shadow: 2px 4px 20px #0000000a;
    overflow: hidden;
    position: fixed;
    top: 1rem;
    z-index: 10;
    left:50%;
    transform: translateX(-50%);
    width:90%;
    max-width:900px;
    padding:20px;
    height: 60px;
}
.club-nav-active-cover{
    z-index: 9;
    position: fixed;
    width:100%;
    height:101vh;
    top:0;
    left:0;
}
.club-nav-container{
    display:flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    position: relative;
}

.club-nav-container > *{
    cursor: pointer;
}
.club-nav-image img{
    max-width:25px;  
}

.club-nav-image-standard-color{
    filter:invert(1);
}

.club-menu{
    border-top:1px solid #42424219;
    padding:1rem 0;
    margin:20px 0;
    display:flex;
}
.club-menu-col{
    padding:0 20px;
}
.club-menu-col-title{
    text-transform: uppercase;
    font-size:14px;
    opacity:0.4;
    font-weight:800;
}
.club-menu-col-list-item{
    padding:10px 0;
    font-weight:300;
    display:block;
}
.club-menu-col-list-item img{
    max-width:16px;
    width:100%;
    margin:0 5px 0 0;
}
.club-nav-active{

}




.club-atf-section{
    min-height:100vh;
    background:url(/assets/images/bglight.svg) center bottom / cover no-repeat, #131313;
}
.club-atf-section .club-section-title{
    color:#e8e0d9;
}
.club-atf-section .club-section-description{
    color:#e8e0d9;
    
}
.club-atf-section .club-section-content img{
    width:90%;
    margin:0 auto;
}

.club-faq-section{
    background:#fff;
}

.gold-notification-animation{
    position:absolute;
    top:100%;
    left:50%;
    transform: translate(-50%,-50%);
    animation: gnotifanim ease-in-out 3s infinite;
    -webkit-animation: gnotifanim ease-in-out 3s infinite;
    opacity:0;
}

.diamond-animation-box{
    position: relative;
}

@keyframes gnotifanim{
    0% {
        top:100%;
        opacity:0;
    }
    20% {
        top:50%;
        opacity:1;
    }
    90% {
        top:50%;
        opacity:1;
    }
    100% {
        top:-100%;
        opacity:0;
    }
}

.diamond-text-animation{
    transform: translateX(-50%);
    animation: dtextanim ease-in-out 3s infinite;
    -webkit-animation: dtextanim ease-in-out 3s infinite;
    opacity:0;
}


@keyframes dtextanim{
    0% {
        transform: translateX(-50%);
        opacity:0;
    }
    20% {
        transform: translateX(0);
        opacity:1;
    }
    90% {
        transform: translateX(0);
        opacity:1;
    }
    100% {
        transform: translateX(200%);
        opacity:0;
    }
}


.text-fade-up{
    transform: translateY(50%);
    opacity:0;
    animation: tfadeup ease-in-out 2s forwards;
    -webkit-animation: tfadeup ease-in-out 2s forwards; 
}

@keyframes tfadeup{
    0% {
        transform: translateY(50%);
        opacity:0;
    }
    100% {
        transform: translateY(0);
        opacity:1;
    }
}

.typewriter .t{
    overflow: hidden;
    /* border-right: .15em solid #4DCD6B; */
    white-space: nowrap;
    letter-spacing: .05em;
    animation: typing 3.5s steps(50, end) infinite, blink-caret .5s step-end infinite;
  }
  

  @keyframes typing {
    from { width: 0; }
    to { width: 100%; }
  }
  

  /* @keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #4DCD6B; }
  } */

  .emerald-input{
    padding:20px;
  }

  .emerald-input label{
    font-size:14px;
    opacity:0.6;
  }

  .emerald-input input{
    border:1px solid #c0c0c0;
    border-radius: 10px;
    padding:5px;
    background:#ffffff;
    outline:none;
    font-size:16px;
  }
  .emerald-input input:focus{
    border:1px solid #4DCD6B;
    background:#fff;
  }
  .emerald-input input::placeholder{
    opacity:0.5;
  }



@media only screen and (max-width: 991px) {
    .club-section{
        padding: 10rem 1.5rem;
    }
    .club-section-title{
        font-size: 67px;
        line-height:105%;
    }
    .club-section-description{
        font-size: 23px;
        line-height:105%;
    }
    .club-section-benefit-highlight{
        font-size: 21px;
        line-height: 120%; 
    }
    .club-section-benefit-description{
        font-size: 16px;
        line-height: 140%;
    }
    .club-menu-col-title{
        font-size:12px;
    }
    .club-menu-col-list-item{
        font-size:14px;
    }
    .club-section-benefit-highlight-text{
        max-width:120px;
        display:inline-block;
    }
    .club-section-benefit-description img {
        max-width: 15px;
    }
}
@media only screen and (max-width: 590px) {
    .club-menu{
        flex-wrap: wrap;
    }
    .club-menu-col{
        padding:20px;
    }

}





.signature-logo{
    width:100%;
    padding:10px;
    background:#000;
    display:flex;
    justify-content: center;
}
.signature-logo img{
    max-width:70px;
    margin:0 auto;
    width:100%;
}
.links-page-light{
    background: #f6f4f2;
    color: #181818;
}

.links-page-books-list{
    max-width:700px;
    width:90%;
    margin:10vh auto 0px auto;
}

.links-page-books-list-book{
    background: #fff;
    box-shadow: 0 5px 50px 5px #b9b9b932;
    display: flex;
    flex-wrap: nowrap;
    margin: 20px 0;
    border-radius: 10px;
}

.links-page-books-list-book-cover{
    position:relative;
    width:20%;
    overflow: hidden;
    padding:20px;
}
.links-page-books-list-book-cover img{
    position:absolute;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    width:50%;
}
.links-page-books-list-book-text{
    width:80%;
    padding:30px 20px;
}
.links-page-books-list-book-text-title{
    font-weight:700;
}
.books-content-box-new{
    padding:0 0 10px 0;
}
.books-content-box-new span{
    background:#0071e3;
    color:#fff;
    font-size:10px;
    padding:5px 10px;
    border-radius: 100px;
    
}
.visit-website{
    width:100%;
    text-align: center;
    padding:10px 5px;
    margin:50px 0 100px 0;
    opacity:0.7;
    display:block;
}












@keyframes highlightBenefit {
    0% { color: #fff; border-color: transparent; }
    50% { color: #00b3ff; border-color: #00b3ff;}
    100% { color: #fff; border-color: transparent;}
}
@keyframes highlightBenefitButton {
    0% { color: #000; background: #fff; }
    50% { color: #fff; background: #00b3ff;}
    100% { color: #000; background: #fff;}
}




@keyframes animatedBackground {
    0% { background-position: 0 0; }
    100% { background-position: -1000px 0; }
}
  
  
  

@keyframes appear2 {
    from{transform: translate(-50%, -100px); opacity:0;}
    to {transform: translate(-50%, -50%); opacity:1;}
}

@keyframes navappear {
    from{transform: translateY(-100px); opacity:0;}
    to {transform: translateY(0); opacity:1;}
}

@keyframes appear {
    from {transform: translateY(20px); opacity:0;}
    to {transform: translateY(0); opacity:1;}
}



@media only screen and (max-width: 1500px) {
    .section-content{
        padding:0 50px;
    }
}

@media only screen and (max-width: 1300px) {
    .memberships-container{
        display:grid;
        grid-template-columns: repeat(2, 1fr);
        gap:30px;
    }
    .silver-royal{
        grid-column-end: auto;
    }
    .benefit{
        text-align: left;
    }
}

@media only screen and (max-width: 1020px) {
    .memberships-container{
        display:grid;
        grid-template-columns: repeat(1, 1fr);
        gap:30px;
    }
    .double-box-container{
        display: grid;
        gap: 20px;
        grid-template-columns: repeat(1, auto);
        grid-template-rows: repeat(2, auto);
        margin:0 auto 20px auto;
    }

    .section-content{
        padding:0 50px;
    }


    .primary-action-button i{
        transform:translate(0%, -50%);
        opacity:1;
        color:#000;
    }
    .secondary-action-button i{
        transform:translate(0%, -50%);
        opacity:1;
        color:#fff;
    }

    .bab i{
        color:#fff;
    }

}

@media only screen and (max-width: 1000px) {


    .section-image {
        width: 100%;
        min-height: 40vh;
    }

    .main-book .section-title {
        font-family: var(--secondary-type);
        font-size: 30px;
    }

}


@media only screen and (max-width: 800px) {
    .creds-box{
        width:100%;
    }
    .menu{
        display:block;
    }
    
    .nav-menu-item{
        display:none;
    }
    
    .section-action{
        display:flex;
        flex-wrap: wrap;
        width:100%;
    }
    .action-button{
        width:100%;
    }
    
    .support-container,
    .support-links{
        display:grid;
        grid-template-columns: repeat(1, 1fr);
        align-items: center;
        text-align: center;
    }
    
    .continue-reading .slide{
        
    }
    .continue-reading-content{
        padding:5px;
    }
    .continue-reading-book-image img{
        width:70%;
        max-width: 150px;
    }
    .continue-reading-title{
        font-size:16px;
    }
    .continue-reading .action-button {
        font-size: 12px;
        padding: 10px;
    }
    .continue-reading-percentage-completed{
        font-size:12px;
    }
    .continue-reading .action-button {
        width:auto;
    }



    
}
@media only screen and (max-width: 500px) {
    .continue-reading-title{
        font-size:16px;
    }
    .continue-reading .action-button {
        font-size: 12px;
        padding: 10px;
    }
    .continue-reading-percentage-completed{
        font-size:12px;
    }
}
@media only screen and (max-width: 470px) {
    .club .section-image{
        align-items: normal !important;
    }
}