/*=========================
    Google Font
==========================*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --black-color:#000000;
    --white-color:#ffffff;
    --theme-color:#019394;
}
body{
    margin:0;
    font-family:'Montserrat',sans-serif;
    background:var(--white-color);
}

/*=========================
    Announcement Bar
==========================*/

.announcement-bar{
    background:var(--theme-color);
    color:var(--black-color);
    height:50px;
    display:flex;
    align-items:center;
}

.announcement-content{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    font-size:15px;
    font-weight:500;
}

.announcement-content i{
    font-size:18px;
}

/*=========================
    Header
==========================*/

.main-header{
    background:var(--white-color);
    border-bottom:1px solid #ececec;
}

.main-header .container{
    position:relative;
}

.navbar{
    min-height:95px;
}

/*=========================
    Menu
==========================*/

.header-menu{
    gap:40px;
}

.header-menu .nav-link{
    color:#111;
    font-size:15px;
    font-weight:500;
    padding:0;
    transition:.3s;
}

.header-menu .nav-link:hover{
    color:var(--theme-color);
}
.dropdown-menu{
    min-width: 230px;
    margin-top: 37px !important;
    padding: 0px 0;
    border: 0;
    border-radius: 0px !important;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .12);
}

.dropdown-item{
    padding:12px 22px;
    font-size:15px;
    font-weight:500;
    transition:.3s;
}

.dropdown-item:hover, .dropdown-item:active,
.dropdown-item.active{
    background: var(--theme-color);
    color: var(--white-color);
}

.dropdown-toggle::after{
    margin-left:8px;
    vertical-align:middle;
}
.dropdown-menu li {
    border-bottom: 1px solid #ddd;
}

/*=========================
    Logo
==========================*/

/* .header-logo{
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    margin:0;
} */

.header-logo img{
    height:55px;
}

/*=========================
    Icons
==========================*/

.header-icons{
    margin-left:auto;
    display:flex;
    align-items:center;
    gap:28px;
}

.header-icons a{
    color:#111;
    font-size:23px;
    transition:.3s;
}

.header-icons a:hover{
    color:var(--theme-color);
}
/* Logo */

/* .header-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
} */
@media (min-width: 992px) {
    .navbar-expand-lg #navbarMenu.navbar-collapse {
        display: flex !important;
        flex-basis: auto;
        justify-content: end;
        margin-right: 30px;
        padding-right: 30px;
        border-right: 1px solid var(--black-color);
    }
}
.logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.logo-title {
    font-size: 30px;
    font-weight: 900;
    color: #031d3b;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logo-subtitle {
    margin-top: 6px;
    font-size: 10px;
    font-weight: 600;
    color: var(--theme-color);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.navbar-toggler i{
    font-size:34px;
}
.product-section{
    background: var(--white-color);
}
#productSlider {
    padding: 0px 70px 30px;
}
.product-image img{
    border-radius:18px;
}

.product-thumbnails .thumb {
    border: 2px solid transparent;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all .3s ease;
}

.product-thumbnails .thumb img {
    width: 100%;
    display: block;
    border-radius: 10px;
    max-width: 70px;
}

.product-thumbnails .thumb.active {
    border-color: var(--black-color); /* or #c79b39 */
}

.product-thumbnails .thumb:hover {
    border-color: var(--theme-color);
}
.custom_thumb {
    width: 10%;
    padding: 5px 10px;
}
.product-title{
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}

.price-wrapper{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:12px;
}

.sale-price{
    font-size: 30px;
    color: var(--theme-color);
    font-weight: 700;
}

.old-price{
    text-decoration:line-through;
    color:#444;
    font-weight:600;
}

.save-badge{
    background: var(--theme-color);
    color: var(--white-color);
    font-size: 13px;
    padding: 5px 10px;
    border-radius: 6px;
    font-weight: 700;
}

.qty-box{
    display:flex;
    align-items:center;
    width:140px;
    border:1px solid #ddd;
    border-radius:10px;
    overflow:hidden;
}

.qty-btn{
    width:42px;
    height:42px;
    border:none;
    background:var(--white-color);
    font-size:22px;
}

.qty-box input{
    width:56px;
    border:none;
    text-align:center;
    outline:none;
    font-weight:600;
}

.cart-btn{
    background: var(--theme-color);
    color: var(--white-color);
    border: none;
    border-radius: 8px;
    height: 60px;
    font-size: 17px;
    font-weight: bold;
    padding: 16px 10px;
}

.cart-btn:hover{
    background:var(--black-color);
    color:var(--white-color);
}


.workbook-section{
    background:#fafafa;
}

.section-label{
    display: inline-block;
    color: var(--theme-color);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 15px;
}

.section-title{
    font-size:44px;
    font-weight:800;
    margin-bottom:20px;
}

.section-desc{
    color:#666;
    font-size:18px;
    line-height:1.9;
}
.feature-list{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
    margin-top:35px;
}

.feature-list div{
background: var(--theme-color);
    padding: 18px;
    color: var(--white-color);
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.learn-card{
    background:var(--white-color);
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    height:100%;
    transition:.35s;
    box-shadow:0 12px 35px rgba(0,0,0,.06);
}

.learn-card:hover{
    transform:translateY(-8px);
}

.learn-card .icon{
    font-size:48px;
    margin-bottom:20px;
}

.learn-card h5{
    font-weight:700;
}

.preview-img{
    width:100%;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.preview-img:hover{
    transform:scale(1.04);
}


.author-section{
    background:#f8f9fb;
}

.author-card,
.benefit-card{
    background:var(--white-color);
    border-radius:24px;
    padding:40px;
    height:100%;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
}

.section-tag{
    display:inline-block;
    background:rgb(183 203 126 / 20%);
    color:var(--theme-color);
    padding:8px 16px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:18px;
}

.author-image{
    overflow:hidden;
    border-radius:20px;
}

.author-image img{
    width:100%;
    border-radius:20px;
}

.author-card h2,
.benefit-card h2{
    font-weight:800;
    margin-bottom:10px;
}

.author-card h6{
    color:var(--theme-color);
    margin-bottom:20px;
}

.author-card p{
    color:#666;
    line-height:1.8;
}

.benefit-item{
    display:flex;
    gap:18px;
    margin-top:25px;
}

.benefit-icon{
    width:30px;
    height:30px;
    border-radius:50%;
    background:var(--theme-color);
    color:var(--white-color);
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:bold;
    flex-shrink:0;
}

.benefit-item h5{
    margin-bottom:5px;
    font-weight:700;
}
.faq-section{
    background:var(--white-color);
}

.faq-accordion .accordion-item{
    border:0;
    border-bottom:1px solid #e8e8e8;
    border-radius:0;
}

.faq-accordion .accordion-button{
    background:var(--white-color);
    box-shadow:none;
    padding:24px 0;
    display:flex;
    align-items:center;
    font-size:18px;
    font-weight:700;
    color:#111;
}

.faq-accordion .accordion-button:not(.collapsed){
    background:var(--white-color);
    color:#111;
    box-shadow:none;
}

.faq-icon{
    margin-right:18px;
    color:#111;
    font-size:22px;
    display:flex;
    align-items:center;
}

.faq-title{
    flex:1;
    padding-right:20px;
}

.faq-accordion .accordion-body{
    padding:0 0 25px 42px;
    color:#666;
    line-height:1.8;
}

.faq-accordion .accordion-button::after{
    width:18px;
    height:18px;
    background-size:18px;
}

.faq-accordion .accordion-button:focus{
    box-shadow:none;
}
.cta-section{
    background:#f8f9fa;
}

.cta-wrapper{
    background:linear-gradient(135deg,#0d1b2a,#1b263b);
    color:var(--white-color);
    padding:70px 50px;
    border-radius:30px;
    overflow:hidden;
    position:relative;
}

.cta-wrapper::before{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
    top:-120px;
    right:-100px;
}

.cta-badge{
    display:inline-block;
    background:var(--theme-color);
    color:var(--white-color);
    padding:8px 22px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:20px;
}

.cta-title{
    font-size:48px;
    font-weight:800;
    margin-bottom:20px;
}

.cta-description{
    max-width:720px;
    margin:auto;
    color:#d9d9d9;
    line-height:1.9;
    font-size:18px;
}

.cta-features{
    display:flex;
    justify-content:center;
    gap:35px;
    flex-wrap:wrap;
    margin:40px 0;
}

.feature-item{
    font-weight:600;
    display:flex;
    align-items:center;
    gap:10px;
}

.feature-item i{
    color:var(--theme-color);
    font-size:20px;
}

.cta-price{
    margin-bottom:35px;
}

.old-price{
    text-decoration:line-through;
    color:#bcbcbc;
    font-size:22px;
    margin-right:15px;
}

.new-price{
    color:var(--theme-color);
    font-size:42px;
    font-weight:800;
}

.cta-btn{
    background:var(--theme-color);
    color:var(--white-color);
    font-weight:700;
    padding:16px 45px;
    border-radius:8px;
    font-size:18px;
    transition:.3s;
}

.cta-btn:hover{
    background:var(--black-color);
    color:var(--white-color);
    transform:translateY(-2px);
}

.small-note{
    color:#cfcfcf;
    font-size:15px;
}
.footer-section{
    background:var(--white-color);
    border-top:1px solid #ececec;
}

/* Top */

.footer-top{
    border-bottom:1px solid #ececec;
}

.footer-title{
    font-size:30px;
    font-weight:700;
    margin-bottom:25px;
}

.footer-text{
    color: #555;
    font-size: 16px;
    /* line-height: 0.8; */
    margin-bottom: 17px;
}

.newsletter-input{
    height:50px;
    border-radius:10px;
    border:1px solid #bdbdbd;
    font-size:18px;
    padding:15px 20px;
}

.newsletter-input:focus{
    box-shadow:none;
    border-color:var(--theme-color);
}

.newsletter-btn{
    height: 55px;
    border-radius: 10px;
    background: var(--theme-color);
    color: var(--white-color);
    font-size: 20px;
    font-weight: 700;
}

.newsletter-btn:hover{
    background:var(--black-color);
    color:var(--white-color);
}

.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin-bottom:18px;
}

.footer-links a{
    color:#222;
    text-decoration:none;
    font-size:16px;
    transition:.3s;
}

.footer-links a:hover{
    color:var(--theme-color);
}

.social-icons{
    display:flex;
    gap:15px;
}

.social-icons a{
    width: 44px;
    height: 44px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #222;
    font-size: 18px;
    text-decoration: none;
    transition: .3s;
}

.social-icons a:hover{
    background:var(--theme-color);
    color:var(--white-color);
    border-color:var(--theme-color);
}

.footer-bottom{
    padding:15px 0;
    text-align:center;
}

.copyright{
    color:#444;
    font-size:13px;
    margin:0;
}

.cart-offcanvas{
    width:500px;
}

.cart-title{
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 25px;
}

.continue-btn{
    width: 100%;
    max-width: 260px;
    height: 50px;
    background: var(--theme-color);
    color: var(--white-color);
    font-size: 18px;
    font-weight: 700;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.continue-btn:hover{
    background:var(--black-color);
    color:var(--white-color);
}
.login-box{
    margin-top:50px;
}

.login-box h3{
    font-size:20px;
    font-weight:800;
}

.login-box p{
    font-size: 15px;
    color: #555;
}

.login-box a{
    color:var(--theme-color);
    text-decoration:none;
}

.cart-offcanvas .btn-close{
    font-size:22px;
}
.workbook-section-lession .feature-list {
    grid-template-columns: repeat(3, 1fr);
}
.contact-section{
    padding:80px 0;
    background:var(--white-color);
}

.contact-title{
    font-size:64px;
    font-weight:800;
    color:var(--black-color);
    margin-bottom:10px;
}

/* Inputs */

.contact-input,
.contact-textarea{

    border:1px solid #707070;
    color:#222;
    box-shadow:none;
    resize:none;

}
.contact-textarea{
    height:100px !important;
}

/* Placeholder */

.contact-input::placeholder,
.contact-textarea::placeholder{

    color:#222;
    opacity:1;

}

/* Focus */

.contact-input:focus,
.contact-textarea:focus{
    border-color: var(--theme-color);
    box-shadow: none;
}

/* Button */

.contact-btn{
    background: var(--theme-color);
    color: var(--white-color);
    height: 47px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 700;
    transition: .3s;
    text-transform: uppercase;
}

.contact-btn:hover{
    background:var(--black-color);
    color:var(--white-color);
}

.get_lession#productSlider {
    padding: 0px 100px 30px;
}
.download-cta{
    background:#f8f8f8;
    padding:90px 0;
}

.download-wrapper{
    background:var(--white-color);
    border-radius:20px;
    padding:60px 40px;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
}

.download-label{
    display: inline-block;
    background: var(--theme-color)24;
    color: var(--theme-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.download-heading{
    font-size:48px;
    font-weight:800;
    color:#111;
    margin-bottom:20px;
}

.download-description{
    max-width:650px;
    margin:0 auto 35px;
    color:#666;
    font-size:18px;
    line-height:1.8;
}

.download-btn{
    background: var(--theme-color);
    color: var(--white-color);
    font-size: 22px;
    font-weight: 700;
    padding: 18px 55px;
    border-radius: 10px;
    transition: .3s;
}

.download-btn:hover{
    background:var(--black-color);
    color:var(--white-color);
    transform:translateY(-3px);
}

.download-note{
    color:#777;
    font-size:15px;
}



/* Toggle */

.navbar-toggler{
    font-size:28px;
}

/* Mobile Menu */

.mobile-menu{
    width:320px;
}

.mobile-menu .offcanvas-header{
    height:72px;
    border-bottom:1px solid #e9e9e9;
    padding:0 24px;
}

.mobile-menu h4{
    font-size:24px;
    font-weight:700;
    color:#111;
}

.mobile-menu .btn-close{
    font-size:17px;
    opacity:1;
}

.mobile-menu .nav-link{
    padding: 11px 24px;
    color: #111;
    font-size: 18px;
    font-weight: 500;
    border-bottom: 1px solid #ececec;
}

.mobile-menu .nav-link:hover{
    background:#f7f7f7;
}

.mobile-login{
    padding:22px 24px;
}

.mobile-login a{
    display: flex;
    align-items: center;
    gap: 12px;
    color: #111;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}

.mobile-login i{
    font-size:26px;
}
.mobile-menu {
    display: none;
}

.cart-header{
    background:var(--theme-color);
    padding:20px 15px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.cart-header h2{
    font-size:22px;
    font-weight:800;
    margin:0;
    color: var(--white-color);
}

.cart-timer{

    background:var(--black-color);

    color:var(--white-color);

    text-align:center;

    padding:12px;

    font-weight:700;
}

.cart-item{
    display: flex;
    gap: 15px;
    padding: 20px 0;
    position: relative;
}

.product-img{
    width: 60px;
    border-radius: 6px;
}

.product-info{
    flex:1;
}

.product-info h5{
    font-weight:700;
    font-size: 14px;
}

.qty{
    display:flex;
    width:120px;
    border:1px solid var(--theme-color);
    border-radius:6px;
    overflow:hidden;
    margin-top:15px;
}

.qty button{
    width:35px;
    border:0;
    background:var(--theme-color);
    color:var(--white-color);
}

.qty input{
    width:50px;
    border:0;
    text-align:center;
}

.price{
    text-align:left;
    margin-top: 0px;
}

.price del{
    display:block;
    color:#777;
}

.price strong{
    color:var(--theme-color);
    font-size:18px;
}

.remove{
    position: absolute;
    right: 0px;
    top: 40px;
    color: var(--black-color);
    font-size: 20px;
}

.upsell{
    display:flex;
    align-items:center;
    gap:15px;
    padding:20px;
}

.upsell img{
    width:70px;
}

.cart-footer{
    border-top:1px solid #ddd;
    padding:20px;
    background:var(--white-color);
}

.checkout-btn{
    width: 100%;
    max-width: 260px;
    height: 50px;
    background: var(--theme-color);
    color: var(--white-color);
    font-size: 18px;
    font-weight: 700;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border-color: var(--theme-color);
    box-shadow: none;
    box-sizing: border-box;
}
.checkout-btn:hover {
    background: var(--black-color);
    color: var(--white-color);
}
.highlight_taglines {
    background-color: var(--black-color);
    padding: 20px 0;
    color: var(--white-color);
}
.highlight_taglines h2 {
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 0px;
}
.addon-box {
    max-width: 600px;
    background: #ffffff;
    border: 1px solid #e8eaf5;
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0 4px 15px rgba(35, 42, 90, 0.05);
    margin-top: 15px;
}
.addon-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}
.addon-title-wrapper {
    display: flex;
    align-items: center;
    gap: 7px;
}
.addon-gear {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f0efff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-color);
    font-size: 16px;
}

.addon-title {
    margin: 0;
    color: #11164b;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
}
.addon-item {
    display: flex;
    align-items: center;
    gap: 9px;
    background: linear-gradient(
        90deg,
        #eef2ff 0%,
        #f5f7ff 100%
    );
    border-radius: 10px;
    padding: 8px 10px;
    min-height: 38px;
}
.addon-checkbox {
    width: 14px;
    height: 14px;
    margin: 0;
    border-radius: 3px;
    border: 1px solid #b9bfd3;
    cursor: pointer;
    flex-shrink: 0;
}

.addon-checkbox:checked {
    background-color: var(--black-color);
    border-color: var(--black-color);
}
.addon-icon {
    width: 28px;
    height: 28px;
    border-radius: 5px;
    background: var(--theme-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 13px;
    flex-shrink: 0;
}
.addon-content {
    min-width: 0;
    flex: 1;
}

.addon-name {
    margin: 0;
    color: #101545;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
}

.addon-description {
    margin: 2px 0 0;
    color: #5f6680;
    font-size: 8px;
    line-height: 1.2;
}
.addon-price {
    color: #11143d;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    margin-left: auto;
}

.cart-section {
    background: #f8f9fb;
    padding: 60px 0;
}

.cart-heading {
    font-size: 28px;
    font-weight: 700;
    color: #111;
}

.cart-table-wrapper {
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    overflow: hidden;
}

.cart-table {
    min-width: 900px;
}

.cart-table thead th {
    background: #fff;
    border-bottom: 1px solid #ddd;
    padding: 15px 14px;
    font-size: 13px;
    font-weight: 700;
    color: #333;
    vertical-align: middle;
}

.cart-table tbody td {
    height: 79px;
    padding: 12px 14px;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
    font-weight: 600;
    color: #111;
    vertical-align: middle;
}

.cart-table tbody tr:last-child td {
    border-bottom: 0;
}

/* Column widths */

.remove-col {
    width: 55px;
    text-align: center;
}

.product-col {
    width: 50%;
}

.cart-table th:nth-child(3),
.cart-table td:nth-child(3) {
    width: 110px;
}

.cart-table th:nth-child(4),
.cart-table td:nth-child(4) {
    width: 120px;
}

.cart-table th:nth-child(5),
.cart-table td:nth-child(5) {
    width: 120px;
}

/* Remove */

.remove-product {
    border: 0;
    background: transparent;
    color: #c00000;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    padding: 0;
    cursor: pointer;
}

.remove-product:hover {
    color: #800000;
}

/* Product */

.product-info {
    display: flex;
    align-items: center;
    gap: 28px;
}

.product-image {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-name {
    color: #002b66;
    text-decoration: none;
    font-weight: 600;
}

.product-name:hover {
    text-decoration: underline;
}

/* Price */

.product-price,
.product-subtotal {
    white-space: nowrap;
}

/* Quantity */

.quantity-box {
    width: 60px;
}

.quantity-input {
    width: 60px;
    height: 55px;
    border: 0;
    background: #eee;
    padding: 10px;
    text-align: center;
    color: #888;
    font-size: 14px;
}

.quantity-input:focus {
    outline: none;
    box-shadow: none;
}

.cart-totals-section {
    background: #f8f9fb;
    padding: 0px 0 50px;
}

.cart-totals-title {
    font-size: 26px;
    font-weight: 700;
    color: #111;
    margin-bottom: 18px;
}

.cart-totals-box {
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}

.cart-total-row {
    display: grid;
    grid-template-columns: 48% 52%;
    min-height: 48px;
    border-bottom: 1px solid #d5d5d5;
}

.cart-total-row:last-child {
    border-bottom: 0;
}

.cart-total-label,
.cart-total-value {
    padding: 11px 12px;
    font-size: 14px;
    color: #111;
}

.cart-total-label {
    font-weight: 600;
}

.cart-total-value {
    font-weight: 600;
}

.shipping-row {
    min-height: 67px;
}

.shipping-row .cart-total-value {
    display: flex;
    flex-direction: column;
    gap: 8px;
    line-height: 1.3;
}

.shipping-note {
    font-weight: 600;
}

.total-row {
    min-height: 40px;
}

.total-row .cart-total-value {
    font-size: 15px;
    font-weight: 700;
}
.traning_video {
    display: block;
    font-weight: 400;
    font-size: 12px;
}
.height-auto {
    height: auto !important;
}
.proceed_to_pay {
    background: var(--theme-color);
    color: var(--white-color);
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: bold;
    padding: 10px 10px;
    /* margin-top: 15px; */
}
.proceed_to_pay:hover, .proceed_to_pay:focus, .proceed_to_pay:active {
    background: var(--black-color);
    color: var(--white-color);
}
.final_btn {
    background-color: #fff;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
}
.final_btn h4 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}
.download_book_option {
    text-align: center
}
@media (max-width: 767px) {

    .cart-totals-section {
        padding: 35px 0;
    }

    .cart-totals-title {
        font-size: 24px;
    }

    .cart-total-row {
        grid-template-columns: 42% 58%;
    }

    .cart-total-label,
    .cart-total-value {
        font-size: 13px;
        padding: 11px 10px;
    }

    .shipping-row {
        min-height: 90px;
    }
}

@media (max-width: 767px) {

    .cart-section {
        padding: 40px 0;
    }

    .cart-heading {
        font-size: 24px;
    }

    .cart-table {
        min-width: 850px;
    }

    .cart-actions {
        justify-content: center;
    }

}

@media (max-width: 480px) {
    .addon-box {
        padding: 8px;
    }
    .addon-title {
        font-size: 14px;
    }
    .addon-item {
        padding: 8px;
    }
    .addon-description {
        font-size: 7px;
    }
}
@media(max-width:576px){
    .cart-drawer{
        width:100%;
    }
    #productSlider,
    .get_lession#productSlider {
        padding: 0px 0px 30px;
    }
    .product-title {
        font-size: 22px;
        margin-top: 30px;
        margin-bottom: 10px;
    }
    .sale-price {
        font-size: 22px;
    }
    .old-price {
        font-size: 18px;
    }
    .author-card, .benefit-card {
        padding: 20px;
    }
    .author-image {
        margin-bottom: 30px;
    }
    .cta-title {
        font-size: 22px;
    }
}



@media (max-width:991px){
    .mobile-menu {
        display: block;
    }
    .header-logo{
        position:static;
        transform:none;
        margin:auto;
    }

    .logo-title{
        font-size:30px;
    }

    .logo-subtitle{
        font-size:10px;
        letter-spacing:3px;
    }

}

@media(max-width:768px){

    .download-wrapper{
        padding:40px 25px;
    }

    .download-heading{
        font-size:34px;
    }

    .download-description{
        font-size:16px;
    }

    .download-btn{
        width:100%;
        font-size:18px;
        padding:16px;
    }

}
@media(max-width:991px){

.contact-title{
    font-size:48px;
}

}

@media(max-width:767px){
.highlight_taglines h2 {
    font-size: 13px;
}
.highlight_taglines {
    padding: 10px 0;
}
.contact-section{
    padding:60px 0;
}

.contact-title{
    font-size:36px;
}

.contact-input,
.contact-textarea{

    font-size:18px;
    padding:16px 18px;

}

.contact-btn{

    font-size:20px;

}

}
@media(max-width:576px){

.cart-offcanvas{

    width:100%;

}

.cart-title{

    font-size:36px;

}

.login-box h3{

    font-size:30px;

}

.continue-btn{

    font-size:20px;

}

}

@media(max-width:991px){

.footer-title{
    font-size:32px;
}

.footer-text{
    font-size:18px;
}

.footer-links a{
    font-size:18px;
}

.newsletter-btn{
    font-size:20px;
}

}

@media(max-width:576px){

.footer-title{
    font-size:28px;
}

.footer-text{
    font-size:16px;
}

.payment-icons img{
    height:26px;
}

}
@media(max-width:768px){

.cta-wrapper{
    padding:50px 25px;
}

.cta-title{
    font-size:34px;
}

.cta-description{
    font-size:16px;
}

.cta-features{
    flex-direction:column;
    gap:18px;
}

.new-price{
    font-size:34px;
}

}
@media(max-width:768px){

    .faq-accordion .accordion-button{
        font-size:16px;
        padding:18px 0;
    }

    .faq-icon{
        font-size:20px;
        margin-right:12px;
    }

    .faq-accordion .accordion-body{
        padding-left:34px;
    }

}
@media(max-width:991px){

.author-card,
.benefit-card{
    padding:30px;
}

}

@media(max-width:768px){

.section-title{
    font-size:32px;
}

.feature-list,
.workbook-section-lession .feature-list{
    grid-template-columns:1fr;
}

}


@media(max-width:991px){

    .product-title{
        font-size:32px;
    }

    .sale-price{
        font-size:28px;
    }

}

@media (max-width: 991px) {
    .header-logo {
        position: static;
        transform: none;
        margin: 0 auto;
    }

    .logo-title {
        font-size: 28px;
    }

    .logo-subtitle {
        font-size: 10px;
        letter-spacing: 3px;
    }
}
@media(max-width:991px){

    .navbar{
        min-height:90px;
    }

    .header-logo{
        position:static;
        transform:none;
        margin:auto;
    }

    .header-logo img{
        height:45px;
    }

    .header-icons{
        gap:16px;
    }

    .header-icons a{
        font-size:22px;
    }

    .navbar-collapse{
        margin-top:20px;
    }

    .header-menu{
        gap:0;
    }

    .header-menu .nav-link{
        padding:12px 0;
    }
    .dropdown-menu {
        margin-top: 0px !important;
        box-shadow: none !important;
    }
    .dropdown-item {
        padding: 12px 40px;
    }
}

@media(max-width:575px){

    .announcement-bar{
        height:50px;
    }

    .announcement-content{
        font-size:15px;
    }

    .header-icons{
        gap:12px;
    }

    .header-icons a{
        font-size:20px;
    }

}
@media (min-width:992px) and (max-width:1200px) {
    #productSlider {
        padding: 0px 140px 30px;
    }
    .get_lession#productSlider {
        padding: 0px 100px 30px;
    }
    .download-heading {
        font-size: 30px;
    }
    .header-menu {
        gap: 10px;
    }
}