:root{
    --s-danger: #be1e2d;
    --s-danger-fainted:#dc884106;
    --s-danger-checked-input:#dc884122;
    --s-primary:#2A438C;
    --s-success:#198754;
    --s-hover:#dff3f5;
    --s-dark:black;
    --s-light:white;
    --s-light-muted: #9cbbea;
    --footer-bg:#082129;
    --s-top-bg:#2A438C;
    --br:0.5rem;
    --br-s:0.35rem;
    --site-orange:#ff5f00;
    --site-blue:#093e87;
    --site-black:#212121;
    --site-white:#fff;
    --site-light:#ccc;
    --site-light-2:rgb(129 147 164);
    --btn-br: 0.25rem;
    --card-br: 0.5rem;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
    /* color-scheme: light dark; */
}
body{
    font-family: 'Inter', sans-serif;
    line-height: 2;
    font-weight: 300;
}
a{
    text-decoration: none !important;
}
.top-sec{
    background-color: var(--s-top-bg);
    color: var(--s-light);
}
.top-sec h2{
    font-weight: 300;
    font-size: 2.5rem;
}
.text-s-orange{
    color: var(--site-orange)!important;
}
.dropbtn {
    color: white;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 90vw;
    z-index: 1;
    left: -479.484px;
}
.dropdown-content a {
    background-color: #f2f2f2;
    display: block;
    color:#4b4b4b;
}
.dropdown-content a:hover {
    background-color: #e6e6e6 !important;
    color: #007bc0!important;
    text-decoration: none !important;
}
.dropdown:hover .dropdown-content {
    display: inline-block;
}

.btn{
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    font-weight: 500 !important;
    text-transform: uppercase;
    border-radius: var(--br-s) !important;
}
.navbar .nav-link{
    margin-left: 1.5rem;
    font-weight: 500 !important;
    text-transform: uppercase;
    font-size: 0.9rem;
}
.btn{
    padding: 0.35rem 0.75rem 0.4rem !important;
    border-radius: var(--btn-br);
}
.btn-block{
    display: block;
    width: 100%;
    text-align: center;
}
.btn-orange{
    background-color: var(--site-orange) !important;
    color: var(--site-white) !important;
    border: 1px solid var(--site-orange) !important;
}
.btn-blue{
    background-color: var(--site-blue) !important;
    color: var(--site-white) !important;
    border: 1px solid var(--site-blue) !important;
}

#heroBgSection{
    transition: background-image 1s ease;
    min-height: 600px;

}
.hero-section,.blog-hero-section{
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 1;
    background-image: url('../img/manLaptop.jpeg')
}
.hero-bg-1{
    background-image: url('../img/money-grow.jpg');
}
.hero-bg-2{
    background-image: url('../img/join.jpeg');
}
.hero-bg-3{
    background-image: url('../img/members.jpg');
}
.hero-section .btn{
    border-color: #fff4 !important;
}
.blog-hero-section{
    background-image: url('../img/blog-bg.jpg');
}
.hero-section::before,.blog-hero-section::before{
    content: '';
    height: 100%;
    width: 100%;
    background:linear-gradient(to bottom right, var(--site-blue), #e7800d44, var(--site-blue));
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    opacity: 0.95;
}
.blog-hero-section::before{
    background:linear-gradient(to bottom right, var(--site-blue), var(--site-blue));
    opacity: 0.75;
}
:is(.hero-section,.blog-hero-section) h1{
    color: var(--site-white);
    font-weight: 600;
}
:is(.hero-section,.blog-hero-section) h4{
    color: var(--site-white);
    margin: 1rem 0;
    font-weight: 500;
}
:is(.hero-section,.blog-hero-section) p{
    color: var(--site-white);
    margin: 1rem 0;
    font-weight: 500;
}

.hero-section .btn-blue{
    font-size: 1.25rem;
    padding: 0.6rem 1.5rem !important;
}


.h-section{
    background-image: url('../img/manLaptop.jpeg');
    background-size: cover;
    background-position: right;
    position: relative;
    padding: 4rem 0 0;
    overflow: hidden;
}
.h-section img{
    margin-bottom: -2rem;
}
.h-section::before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    /*background-color: var(--s-primary);*/
    background: -webkit-linear-gradient(left,var(--s-primary),var(--s-primary) 25%,var(--site-orange) 50%,#e1e5e5 100%);
    opacity: 0.5;
}

.h-move-up{
    background-color: var(--s-light);
    border-radius: var(--br);
    box-shadow: 0 0 1px #0002;
    padding: 1.5rem;
    margin-top: -2rem;
    position: relative;
}
.contact-cards{
    margin-top: -3rem;
    position: relative;
}
.h-section *{
    position: relative;
    color: #fff;
}
.h-section h1{
    font-size: 3rem;
    font-weight: 600;
}

.blog-card{
    border-radius: var(--br);
    box-shadow: 0 1px 3px #0003;
    overflow: hidden;
    border: 1px solid #0003;
    transition: 0.5s transform ease;
    color: unset;
    display: block;
}
.blog-card:hover{
    transform: translateY(-5px);
    color: unset;
}
.blog-card:hover .blog-title{
    color: var(--s-success);
}
.blog-img,.blog-content{
    background-color:#e5eae4;
    padding: 1.25rem;
}
.blog-img img{
    width: 100%;
}
.blog-content{
    background-color: var(--s-light);
}
.blog-content .blog-tags{
    margin-bottom: 0.75rem;
}
.blog-tags span,.blog-tags a{
    display: inline-block;
    font-size: 0.7rem;
    line-height: 1.2;
    padding: 0.125rem 0.35rem;
    margin: 0 0.25rem 0.25rem 0;
    color: var(--s-danger);
    border: 1px solid #be1e2d22;
    border-radius: var(--br-s);
    transition: all 0.25s ease;
}
.blog-tags a:hover{
    border-color: var(--s-danger);
    color: var(--s-danger);
    background-color: #dd6b2822;
}
.featured-img{
    width: 100%;
    height: 7.5rem;
    object-fit: cover;
    object-position: top;
}
.blog-list-title{
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 0;
    color: var(--s-primary);
}
.blog-tab-pills{
    justify-content: center;
}
.blog-tab-pills .nav-link{
    border-bottom: 2px solid #fff;
    color: #888;
    border-radius: 0 !important;
    padding: 0.25rem 1rem;
}
.blog-tab-pills .nav-link.active{
    border-radius: 0 !important;
    background-color: transparent !important;
    border-color: var(--s-primary);
    color: var(--s-primary);
}
.m-small{
    font-size: 0.8rem;
    line-height: 1.3;
}
.s-small{
    font-size: 0.7rem;
    line-height: 1.3;
}
.xs-small{
    font-size: 0.6rem;
    line-height: 1.3;
}
.xs-small b{
    font-weight: 600;
}


.home-content-section{
    height: 500px;
    padding-right: 2rem;
    overflow: auto;
}
.hiw-tabs .nav-link{
    width:100%;
    text-align: left;
    border: 1px solid #2d6eb922;
    margin-bottom: 0.5rem;
    border-radius: var(--br) !important;
    padding: 0.75rem 1rem !important;
    color: #212121;
    font-weight: 500;
}
.hiw-tabs .nav-link.active{
    background-color: var(--s-light) !important;
    box-shadow: 0 0 10px #0001;
    border: 1px solid var(--s-primary);
    color: var(--s-primary);
}
.hiw-step{
    display: flex;
    gap: 0.75rem;
}
.hiw-icon{
    width: 2.5rem;
    font-size: 2.5rem;
    line-height: 1.1;
    -webkit-text-stroke-width: 1px;
    color: transparent;
  -webkit-text-stroke-color: #666;
}
.hiw-title{
    width: calc(100% - 2.75rem);
    font-size: 1.1rem;
    line-height: 1.3;
    color: #666 ;
}
.hiw-tabs .nav-link.active .hiw-title{
    color: var(--s-primary);
}
.hiw-tabs .nav-link .hiw-step-desc{
    font-size: 0.9rem;
    color: #888;
    line-height: 1.5;
    margin-top: 0.5rem;
    display: none;
}
.hiw-tabs .nav-link.active .hiw-step-desc{
    display: block;
}
.hiw-tabs .nav-link.active .hiw-icon{
    -webkit-text-stroke-width: 0;
    color: var(--s-primary);
    -webkit-text-stroke-color: var(--s-primary);
}
.hiw-tab-content .tab-pane{
    border-radius: var(--br);
    overflow: hidden;
    padding: 0.75rem;
    box-shadow: 0 0 10px #0001;
    background-color: var(--s-light);
}
.hero-move-up{
    background-color: var(--s-light);
    border-radius: var(--br);
    box-shadow: 0 0 10px #0002;
    padding: 1.5rem;
    /*margin-top: -2rem;*/
    position: relative;
}

.service-card{
    padding: 1.5rem;
    border:1px solid #0e439411;
    border-radius: var(--br);
    text-align: center;
    box-shadow: 0 3px 30px #0001;
    position: relative;
    overflow: hidden;
    background-color: var(--s-light);
}
.service-card p{
    margin-bottom: 1rem;
}
.service-icon-bx{
    height: 5rem;
    width: 5rem;
    background-color: #0e439422;
    color: var(--s-primary);
    display: flex;
    margin: 0 auto 1rem;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 2.25rem;
    transition: all 0.5s ease;
}
.sc-more-btn{
    position: absolute;
    left: 50%;
    bottom: -2rem;
    font-size: 0.8rem;
    transform: translateX(-50%);
    background-color: white;
    color: var(--s-primary);
    transition: all 0.5s ease;
}
.service-card:hover .service-icon-bx{
    background-color: var(--s-primary);
    color: white;
}
.service-card:hover .sc-more-btn{
    bottom: 0.5rem;
}
.flex-card{
    display: flex;
    gap: 1rem;
}
.text-s-danger{
    color: var(--s-danger);
}
.hib-img{
    height: 4rem;
    width: 4rem;
    font-size: 1.75rem;
    display: flex;
    color: var(--s-primary);
    align-items: center;
    justify-content: center;
    padding: 0.65rem;
    border-radius: var(--br-s);
    background-color: #2d6eb922;
}
.hib-img img{
    width: 100%;
}
.hib-content{
    width: calc(100% - 5rem);
}
.carousel-control-next, .carousel-control-prev{
    opacity: 1;
}
.carousel-control-prev-icon,.carousel-control-next-icon{
    background-color: var(--s-light);
    color: var(--s-primary);
    border: 1px solid var(--s-primary);
    opacity: 1 !important;
    border-radius: 100%;
    height: 3rem;
    width: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 50px var(--s-primary);
}
.rating-nav-pills{
    flex-wrap: nowrap;
    justify-content: center;
    gap: 1rem
}
.rating-nav-pills .nav-item{
    width: 100%;
    max-width: 250px;
}
.rating-nav-pills .nav-link{
    width: 100%;
    background-color: var(--s-light);
    padding: 0.75rem 1rem !important;
    border-radius: var(--br);
}
.rating-nav-pills .nav-link.active{
    border: 1px solid var(--s-primary);
    background-color: var(--s-light) !important;
    color: var(--s-primary) !important;
}
.rating-nav-pills .home-rating-box{
    display: flex;
    width: 100%;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
}
.rating-nav-pills .home-rating-box img{
    width: 30px;
}
.rating-nav-pills .hrb-content h6{
    width: calc(100% - 40px);
    margin-bottom: 0;
    font-size: 1.25rem !important;
}
.tab-pane .carousel-inner{
    padding: 0.5rem 2rem;
}
.testimonial-card{
    padding: 1rem 1.5rem 0.5rem;
    border-radius: var(--br);
    background-color: var(--s-light);
    box-shadow: 0 0 10px #2d6eb944;
}
.testimonial-card hr{
    opacity: 0.1;
}
.testimonial-card .fa-stack{
    margin-right: 0.25rem;
}
.price-included-card{
    border-radius: var(--br);
    padding: 1.5rem;
    border: 3px double #2d6eb944;
}
.pic-feature{
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin-bottom: 0.25rem; */
}
.inner-flex{
    display: flex;
    align-items: center;
    gap: 1rem;
}
.ff-icon{
    font-size: 1.75rem;
    -webkit-text-stroke-width: 1px;
    color: transparent;
    -webkit-text-stroke-color: var(--s-primary);
}
.ff-title{
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--s-primary);
}
.old-price{
    color: #888;
    font-weight: 500;
    position: relative;
}
.old-price::before{
    content: '';
    height: 2px;
    width: calc(100% + 0.5rem);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #888;;
}
.new-price{
    color: var(--s-danger);
    font-weight: 600;
}
.fancy-title{
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}
.fancy-title::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 3rem;
    background-color: var(--site-orange);
    height: 2px;
}
.subject-card{
    display: flex;
    gap: 1rem;
    padding: 0.5rem 1rem;
    border-radius: var(--br);
    border: 1px solid #888;
    position: relative;
    transition: 0.5s ease all;
    color: var(--s-primary);
}
.subject-card:hover{
    transform: translateY(-5px);
}
.subject-card::before{
    content: '';
    height: 0.5rem;
    width: 0.5rem;
    border-right: 1px solid #212121;
    border-bottom: 1px solid #212121;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}
.sc-icon{
    font-size: 3rem;
    line-height: 1;
    width: 3rem;
}
.sc-content{
    width: calc(100% - 4rem);
}
.sc-content .sc-title{
    display: block;
    font-size: 1.1rem;
    line-height: 1;
    font-weight: 500;
}
.sc-price{
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
}

.sc-price small{
    font-size: 0.65rem;
    line-height: 1;
}
.site-card{
    padding: 1.5rem;
    border-radius: var(--br);
    background-color: var(--s-light);
    box-shadow: 0 0 10px #0002;
}
.service-tab-content li{
    margin-left: 0.5rem;
}
.bg-services{
    margin-top: 5rem;
    padding: 0 2rem 0 0;
    min-height: 290px;
    position: relative;
}
.bg-services *{
    position: relative;
}
.bg-services::before{
    content: '';
    background-color: #e5eae4;
    height: 100%;
    width: 90%;
    border-radius: var(--br);
    position: absolute;
    right: 0;
    bottom: 0;
}
.service-tabs-card{
    margin-top: -3rem;
}
.bg-services .tab-pane{
    padding: 2rem 0;
}
.service-card-icon{
    height: 4rem;
    width: 4rem;
    background-color: #2d6eb922;
    border: 1px solid #2d6eb933;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--s-primary);
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}
.accordion-item{
    border: none !important;
    margin-bottom: 1rem;
    border-radius: var(--br) !important;
    overflow: hidden;
    border:1px solid #8886 !important;
}
.accordion-button{
    padding-block: 0.75rem !important;
    box-shadow: none !important;
    outline: none !important;
}
.accordion-button:not(.collapsed){
    color: var(--s-primary);
    background-color: #2d6eb911;
}
.accordion-button::after{
    height: 1rem;
    width: 1rem;
    background-size: 1rem;
}
.sidebar-card{
    border: 3px double var(--s-primary);
    padding: 1.5rem;
    border-radius: var(--br);
}
.cta{
    background-image: url('../img/hero-section.jpg');
    position: relative;
    padding: 2rem;
    border-radius: var(--br);
    text-align: center;
    color: var(--s-light);
    overflow: hidden;
}
.cta *{
    position: relative;
}
.cta::before{
    content: '';
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background-color: var(--s-primary);
    position: absolute;
    opacity: 0.7;
}
.cta h2{
    color: var(--s-light);
    font-weight: 700;
    font-size: 3rem;
}
footer{
    background-color: #212121;
    color: #aaa;
}
footer .footer-logo{
    filter: brightness(0) invert(1);
}
footer h4{
    text-transform: uppercase;
    color: var(--s-light);
    font-size: 1.1rem;
}
footer a{
    color: #ccc;
}
.footer-social-icons{
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}
.footer-social-icons a i{
    margin: 0 !important;
}
.footer-social-icons a{
    height: 1.5rem;
    width: 1.5rem;
    background-color: #fff2;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    border-radius: var(--br-s);
    color: var(--s-light);
}
@media screen and (max-width:999px) {
    .hero-section h1{
        font-size: 2rem;
    }
    .h-section h1{
        font-size: 2rem;
    }
    .navbar .nav-link.btn{
        margin-bottom: 1rem;
    }
    .hib-img{
        height: 2.5rem;
        width: 2.5rem;
    }
    .hib-content{
        width: calc(100% - 3.5rem);
    }
    .hiw-step{
        gap: 0.5rem;
    }
    .hiw-icon{
        width: 1.5rem;
        font-size: 1.5rem;
    }
    .hiw-title{
        font-size: 1rem;
    }
}
@media screen and (max-width:767px) {
    .hero-section{
        padding: 2rem 0 !important;
    }
    .hero-section h1, .cta h2{
        font-size: 1.75rem;
        line-height: 1.4;
    }
    .h-section{
        padding: 2rem 0 !important;
    }
    .h-section h1, .cta h2{
        font-size: 1.75rem;
        line-height: 1.4;
    }
    .rating-nav-pills .hrb-content{
        display: none;
    }
    .bg-services::before{
        display: none;
    }
    .carousel-caption {
        bottom: 165px;
    }
    .carousel-caption h5 {
        font-size: 17px;
    }
    .carousel-caption a {
        padding: 10px 15px;
        font-size: 15px;
    }
}
