/* 
general
navbar
banner
client
about
features
pricing
testimonials
faqs
footer
*/


/* general */

/* import google font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&family=Quicksand:wght@400;700&display=swap');

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
:root{
    /* background color */
    --bg-black:#090b3c;
    --bg-white:#fff;
    --bg-light-white:#fcfcfc;
    --bg-light-2:#f2f7fa;
    --bg-dark-green:#0e9d80;
    --bg-features-1:#fff6d6;
    --bg-features-2:#ebdcf9;
    --bg-features-3:#ddf5fc;
    --bg-features-4:#dcf6e8;
    --bg-features-5:#f8e4e1;
    --bg-features-6:#fbffd4;

    /* text color */
    --text-black:#000000;
    --text-white:#fff;
    --text-dark-grey:#4c535d;
    --text-light-2:#798089;
    --text-light-3:#5e5e72;
    --text-light-4:#a0a0a0;
    --text-dark-green:#12c4a0;
    --text-orange:#ff5d2a;
    --text-yellow:#ffc100;

    /* font */
    --primary-font:'Quicksand', sans-serif;
    --secondary-font:'Poppins', sans-serif;
    --normal-font-weight:400;
    --bold-font-weight:700;
}
body{
    font-family:var(--primary-font);
    font-weight:var(--normal-font-weight);
    background-color: var(--bg-white);
}

/* coustom css */
.learn-more-btn{
    background-color: var(--bg-black);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white) !important;
    padding: 12px 29px !important;
    border-radius: 10px;
    border: 2px solid var(--bg-black);
    box-shadow: 0 10px 20px rgb(0 0 0 /10%);
    display: inline-block;
    text-decoration: none;
    transition: 0.7s;
}
.btn-extra-header{
    color: var(--text-dark-grey) !important;
    background-color: transparent;
    border: 2px solid var(--text-dark-grey);
}

/* navbar */
.header_wrapper .navbar{
    -webkit-transition: all .2s linear;
    -o-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    transition: all .2s linear;
}
.header_wrapper .navbar-brand img{
    max-width: 210px;
    height: auto;
}
.header_wrapper .menu-navbar-nav{
    width: 70%;
    display: flex;
    justify-content:center;
}
.header_wrapper .nav-item{
    margin: 0 10px;
}
.header_wrapper .nav-item .nav-link{
    font-weight: var(--bold-font-weight);
    font-size: 18px;
    color: var(--text-dark-grey);
    line-height: 1;
}
.header_wrapper .nav-item .active{
    color: var(--bg-dark-green);
}
.header_wrapper .nav-item .nav-link:hover{
    color: var(--bg-dark-green);
}

/* banner */
.banner_wrapper{
    display: flex;
    width: 100%;
    padding: 100px 0 125px;
    background: url(../images/bg.png) no-repeat;
    background-size: cover;
    justify-content: center;
    align-items: center;
}
.banner_wrapper .banner-subtitle{
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 15px;
    color: var(--text-light-3);
}
.banner_wrapper .banner-title{
    font-family: var(--secondary-font);
    font-weight: 800;
    font-size: 60px;
    text-transform: capitalize;
    line-height: 1.15;
    margin-bottom: 25px;
    color: var(--text-black);
}
.banner_wrapper .banner-title span{
    color: var(--text-dark-green);
}
.banner_wrapper .banner-title-text{
    font-size: 17px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 40px;
    max-width: 450px;
    color: var(--text-light-2);
}
.banner_wrapper .learn-more-btn-section{
    display: flex;
    justify-content: left;
    align-items: center;
    margin-top: 20px;
}
.banner_wrapper .header-img-section img{
    width: 100%;
    animation: float 5s ease-in-out infinite;
}
@keyframes float {
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(20px);
    }
    100%{
        transform: translateY(0px);
    }
}


/* about */
.about_wrapper{
    padding: 100px 0 0;
}
.about_wrapper .about_number{
    font-family: var(--secondary-font);
    font-weight: 800;
    font-size: 24px;
    padding: 4px 17px;
    border-radius: 10px;
    margin-bottom: 25px;
    max-width: 44px;
    color: var(--text-white);
    background-color: var(--bg-dark-green);
}
.about_wrapper .about_title{
    font-family: var(--secondary-font);
    font-weight: 800;
    font-size: 34px;
    line-height: 1.25;
    max-width: 1000px;
    margin-bottom: 25px;
    color: var(--text-black);
}
.about_wrapper .about_text{
    font-size: 15px;
    font-weight: 600;
    line-height: 1.7;
    max-width: 700px;
    color: var(--text-light-2);
}
.about_wrapper .innovate{
    background: var(--bg-light-2);
    padding: 80px 0;
}
.about_wrapper .projects{
    padding: 30px 0;
}
.about_wrapper .projects h2{
    color: var(--text-orange);
    font-family: var(--secondary-font);
    font-weight: 800;
    font-size: 50px;
    line-height: 1.5;
    margin-bottom: 0%;
}
.about_wrapper .projects p{
    color: var(--text-light-2);
    /* font-family: var(--secondary-font); */
    font-weight: 600;
    font-size: 17px;
    line-height: 1.5;
    /* margin-bottom: 0%; */
}


/* features */
.features_wrapper{
    padding: 100px 0 80px;
    background: var(--bg-light-2);
}
.features_wrapper .features_subtitle{
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 5px;
    color: var(--text-light-2);
}
.features_wrapper .features_title{
    font-family: var(--secondary-font);
    font-weight: 800;
    font-size: 34px;
    line-height: 1.25;
    margin-bottom: 25px;
    color: var(--text-black);
}
.features_wrapper h3{
    font-family: var(--secondary-font);
    font-size: 20px;
    font-weight: var(--bold-font-weight);
    line-height: 1.5;
    margin-bottom: 20px;
    color: var(--text-black);
}
.features_wrapper .features_text{
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--text-light-2);
}
.features_wrapper .ft-1{
    background: var(--bg-features-1);
    padding: 40px;
    border-radius: 15px;
}
.features_wrapper .ft-1:before{
    content: url(../images/consultancy.png);
    position: absolute;
    display: block;
    margin-top: -70px;
}
.features_wrapper .ft-2{
    background: var(--bg-features-2);
    padding: 40px;
    border-radius: 15px;
}
.features_wrapper .ft-2:before{
    content: url(../images/solutions.png);
    position: absolute;
    display: block;
    margin-top: -70px;
}
.features_wrapper .ft-3{
    background: var(--bg-features-3);
    padding: 40px;
    border-radius: 15px;
}
.features_wrapper .ft-3:before{
    content: url(../images/simple.png);
    position: absolute;
    display: block;
    margin-top: -70px;
}
.features_wrapper .ft-4{
    background: var(--bg-features-4);
    padding: 40px;
    border-radius: 15px;
}
.features_wrapper .ft-4:before{
    content: url(../images/deadline.png);
    position: absolute;
    display: block;
    margin-top: -70px;
}
.features_wrapper .ft-5{
    background: var(--bg-features-5);
    padding: 40px;
    border-radius: 15px;
}
.features_wrapper .ft-5:before{
    content: url(../images/data.png);
    position: absolute;
    display: block;
    margin-top: -70px;
}
.features_wrapper .ft-6{
    background: var(--bg-features-6);
    padding: 40px;
    border-radius: 15px;
}
.features_wrapper .ft-6:before{
    content: url(../images/flexible.png);
    position: absolute;
    display: block;
    margin-top: -70px;
}


/* pricing */
.price_wrapper{
    padding: 100px 0 0;
}
.price_wrapper .pricing_subtitle{
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 5px;
    color: var(--text-light-3);
}
.price_wrapper .pricing_title{
    font-family: var(--secondary-font);
    font-weight: 800;
    font-size: 34px;
    line-height: 1.5;
    margin-bottom: 25px;
    color: var(--text-black);
}
.price_wrapper .pricing_card{
    background: var(--bg-white);
    box-shadow: 0 1px 20px rgb(0 0 0/15%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 40px 45px 40px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 30px;
}
.price_wrapper .pricing_card:hover{
    box-shadow: 0 2px 29px rgb(0 0 0/20%);
    z-index: 5;
    cursor: pointer;
}
.price_wrapper .pricing_period{
    font-family: var(--secondary-font);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    padding-bottom: 0;
    color: var(--text-light-2);
}
.price_wrapper .pricing_card img{
    max-width: 75%;
}
.price_wrapper .pricing_rate{
    font-size: 34px;
    font-family: var(--secondary-font);
    font-weight: 800;
    color: var(--text-black);
    line-height: 1.25;
}
.price_wrapper .pricing_text{
    font-size: 12px;
    font-family: var(--secondary-font);
    font-weight: 600;
    color: var(--text-black);
    margin: 0%;
}
.price_wrapper .pricing_all_plan{
    text-align: center;
    width: 100%;
    display: flex;
    margin: 15px 0;
}
.price_wrapper .pricing_all_plan ul{
    width: 100%;
    list-style: none;
    padding-inline-start: 0%;
}
.price_wrapper .pricing_all_plan li{
    font-size: 14px;
    color: var(--text-dark-grey);
    font-weight: 500;
    line-height: 1.25;
    text-align: center;
    margin-top: 5px;
}
.price_wrapper .pricing_all_plan li strike{
    color: var(--text-light-4);
}
.price_wrapper .learn-more-btn{
    background: var(--bg-dark-green);
    border-color: var(--bg-dark-green);
}
.price_wrapper .featured{
    box-shadow: 2px 40px rgb(0 0 0 /5%);
    background: var(--bg-white);
    border: 5px solid var(--text-black);
    padding-top: 80px;
    padding-bottom: 80px;
}
.price_wrapper .pricing_ribbon{
    width: 120px;
    height: 120px;
    overflow: hidden;
    position: absolute;
    top: 0%;
    left: 20%;
}
.price_wrapper .pricing_ribbon span{
    font-family: var(--secondary-font);
    position: absolute;
    display: block;
    width: 225px;
    padding: 5px 0px;
    background-color: var(--bg-black);
    color: var(--text-white);
    font-size: 15px;
    font-weight: 600;
    text-shadow: 0 1px 1px rgb(0 0 0 /20%);
    text-transform: uppercase;
    text-align: center;
    right: -45px;
    top: 30px;
    transform: rotate(-45deg);
}
.price_wrapper .btn-featured{
    background: var(--bg-black);
    border-color: var(--bg-black);
}
.price_wrapper .featured .pricing_rate{
    font-size: 40px;
}
.free_trial{
    background: var(--bg-light-2);
    padding: 80px 0;
    margin-top: 100px;
}
.free_trial .free_title{
    font-family: var(--secondary-font);
    font-weight: 800;
    font-size: 34px;
    line-height: 1.25;
    margin-bottom: 0;
    color: var(--text-black);
}
.free_trial .learn-more-btn{
    background: var(--bg-black);
    border-color: var(--bg-black);
}


/* testimonial */
.testimonial_wrapper{
    padding: 100px 0px;
}
.testimonial_wrapper .testimonials_subtitle{
    font-size: 20px;
    font-weight: 700;
    font-family: var(--primary-font);
    line-height: 1.5;
    margin-bottom: 5px;
    color: var(--text-light-3);
}
.testimonial_wrapper .testimonials_title{
    font-family: var(--secondary-font);
    font-weight: 800;
    font-size: 34px;
    line-height: 1.25;
    margin-bottom: 80px;
    color: var(--text-black);
}
.testimonial_wrapper .testimonials_card{
    border-radius: 15px;
    padding: 50px;
    background-color: var(--bg-white);
    box-shadow: 0 5px 40px rgb(0 0 0/15%);
}
.testimonial_wrapper .testimonials_card h3{
    font-family: var(--secondary-font);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 5px;
    color: var(--text-black);
}
.testimonial_wrapper .testimonials_role{
    font-weight: 700;
    font-size: 19px;
    line-height: 1;
    margin-bottom: 25px;
    color: var(--text-dark-green);
}
.testimonial_wrapper .testimonials_text{
    font-weight: 600;
    font-size: 15px;
    line-height: 1.5;
}


/* faq section */
.faq_wrapper{
    padding: 100px 0px 0px; 
}
.faq_wrapper .faq_subtitle{
    font-size: 20px;
    font-weight: 700;
    font-family: var(--primary-font);
    line-height: 1.5;
    margin-bottom: 5px;
    color: var(--text-light-3);
}
.faq_wrapper .faq_title{
    font-family: var(--secondary-font);
    font-weight: 800;
    font-size: 34px;
    line-height: 1.25;
    margin-bottom: 25px;
    color: var(--text-black);
}
.faq_wrapper .accordion-button:hover,
.faq_wrapper .accordion-button:focus{
    box-shadow: none;
    color: var(--text-dark-green);
}
.faq_wrapper .accordion-item{
    border: 0;
}
.faq_wrapper .accordion-button{
    font-size: 21p;
    font-family: var(--secondary-font);
    font-weight: 600;
    color: var(--text-black);
    background: var(--bg-white);
    padding: 0 0 15px 0;
    border-bottom: 0px solid var(--text-light-3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

/* footer */
.footer_wrapper{
    padding: 100px 0 25px;
    background: url(../images/bg_footer.png) no-repeat;
    background-size: cover;
    background-color: var(--bg-black);
    color: var(--text-white);
}
.footer_wrapper .footer_logo img{
    max-width: 30%;
}
.footer_wrapper .footer_text,
.footer_wrapper .footer_text a{
    margin-top: 30px;
    color: var(--text-white);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none;
}
.footer_wrapper .footer_title{
    font-family: var(--secondary-font);
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--text-white);
    margin-bottom: 25px;
}
.footer_wrapper .footer_social_media_icon{
    padding-right: 30px;
    color: var(--text-white);
    font-size: 20px;
}
.footer_wrapper .footer_credits{
    color: var(--text-white);
    border-top: solid var(--text-white);
    padding-top: 20px;
    margin-top: 30px;
}
.footer_wrapper .footer_credits a{
    color: var(--text-yellow);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}