/* General  */
/* fonts  */


@import url('https://fonts.googleapis.com/css2?family=Quicksand&display=swap');

  @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@1,200&display=swap');

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body{
    font-family: "poppins";
    background-color: white;
}
.learn-more-btn{
    background-color: black;
    font-size: 18px;
    font-weight: 700;
    color: white;
    padding: 12px 29px;
    border-radius: 10px;
    border: 2px solid black;
    box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
    display: inline-block;
    text-decoration: none;
    transition: 0.7s;
}
.btn-extra-header{
    color: darkgrey;
    background-color: transparent;
    border: 2px solid darkgray;
}

/* Navbar  */
.header_wrapper .navbar{
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition:all 0.2s linear;

}
.header_wrapper .navbar-brand img{
    max-width:80px;
    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: 700;
    font-size: 18px;
    color:gray;
}
.header_wrapper .nav-item .nav-link.active{
    color: darkgreen;
}
.header_wrapper .nav-item .nav-link:hover{
    color: darkgreen;
}
.header-scrolled{
    position: fixed;
    margin-top: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 85px;
    
    background-color: white;
    box-shadow: 0 4px 6px rgba(12, 0, 46, .05);
}
.header-scrolled .navbar-brand img{
    width: 80px;
    height: auto;
    animation: animated 0.1s ease-in-out;
}
.header-scrolled .nav-link{
    color: black;
}
@keyframes animated{
    0%{
        width:110px;
    }
    50%{
        width: 80px;
    }
    100%{
        width: 60px;
    }


    
}
.header-scrolled .nav-item .nav-link {
    font-size: 17px;
} 

/* Banner section  */
.banner_wrapper{
    display: flex;
    width: 100%;
    padding: 100px 0 125px;
    background:url(../img/bg.jpg) 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: rgb(47, 46, 46);
}
.banner_wrapper .banner-title{
    font-weight: 800;
    font-family:"Poppins";
    font-size: 60px;
    text-transform: capitalize;
    line-height: 1.15;
    margin-bottom: 25px;
    color: black;
}
.banner_wrapper .banner-title span{
    color: rgb(235, 209, 44);
    font-weight: bolder;
}
.banner_wrapper .banner-title-text{
    font-size: 17px;
    font-weight: 600;
    color: rgb(40, 39, 39);
    line-height: 1.5;
    margin-bottom: 40px;
    max-width: 450px;
    color: rgb(19, 19, 19);
   

}
.banner_wrapper .learn-more-btn-section{
    display: flex;
    justify-content:left;
    align-items: center;
    margin-top: 20px;
    animation: btn 2s ease-in-out infinite;}
    @keyframes btn {
        0%{
            transform :translatex(0px);
        }
        50%{
            transform: translateX(40px);
        }
        100%{
            transform: translateX(0px);
        }
        
    }


.banner_wrapper .header-img-section img{
    width: 100%;
    animation: float 2s ease-in-out infinite;
}
@keyframes float{
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(20px);
    }
    100%{
        transform: translateY(0px);
    }
}

/* client section  */
.clients{
    padding: 50px 0 50px;
    background-color: gray;
  
    
}
.clients h2{
    font-weight: 600;
    font-size: 25px;
    color: rgb(47, 46, 46);
    line-height: 1.23;
    margin-bottom: 40px;
}
.clients .item{
    display: flex;
    justify-content: center;
    width: 100%;
}
.clients .item img{
    width: 100px;
    height: 100px;
    margin: 0px 40px;
   
}

/* About section  */
.about_wrapper{
    padding: 100px 0 0 ;
}
.about_wrapper .about_number{
    font-family: "Quicksand";
    font-weight: 800;
    font-size: 24px;
    padding: 4px 17px;
    border-radius: 10px;
    margin-bottom: 25px;
    max-width: 44px;
    color: white;
    background-color: rgb(77, 77, 143);
}
.about_wrapper .about_title{
    font-family: "Quicksand";
    font-weight: 800;
    line-height: 1.25;
    max-width: 1000px;
    margin-bottom: 25px;
    color: black;


}
.about_wrapper .about_text{
    font-family: "Quicksand";
    font-size: 15px;
    font-weight: 600;
    line-height:1.7 ;
    max-width: 700px;
    color: rgb(62, 60, 60);
}
.about_wrapper .container1{
    width: 600px;
    height: auto;
   

}
.about_wrapper .innovate{
    background-color: rgb(174, 168, 168);
    padding: 30px;

}
.about_wrapper .projects{
    padding: 30px 0;
}
.about_wrapper .projects h2{
    color: orange;
    font-family: "Poppins";
    font-weight: 800;
    font-size: 50px;
    line-height: 1.5;
    margin-bottom: 0;
}
.about_wrapper .projects p{
    color: gray;
    font-family: "Poppins";
    font-weight: 600;
    font-size: 17px;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Features Section  */
.feature_wrapper{
    padding: 50px 0 ;
    background-color: gray;

}
.feature_wrapper .features_subtitle{
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 5px;
    color: gray;
}
.feature_wrapper .features_title{
    font-family: "Poppins";
    font-weight: 800;
    font-size: 35px;
    line-height: 2.5;
    margin-bottom: 25px;
    color: black;
}
.feature_wrapper h3{
    font-family: "Poppins";
    font-size: 20px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 20px;
    color: black;
}
.feature_wrapper .features_text{
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    color: gray;
}
.feature_wrapper .ft-1{
    background: rgb(244, 203, 203);
    padding: 40px;
    border-radius: 15px;
}
.feature_wrapper .ft-2{
    background: rgb(160, 219, 184);
    padding: 40px;
    border-radius: 15px;
}
.feature_wrapper .ft-3{
    background: rgb(154, 144, 208);
    padding: 40px;
    border-radius: 15px;
}
.feature_wrapper .ft-4{
    background: rgb(223, 192, 167);
    padding: 40px;
    border-radius: 15px;
}
.feature_wrapper .ft-5{
    background: rgb(185, 219, 234);
    padding: 40px;
    border-radius: 15px;
}
.feature_wrapper .ft-6{
    background: rgb(236, 169, 204);
    padding: 40px;
    border-radius: 15px;
}
/* .feature_wrapper .ft-1:before{
    content: url(../img/m1.jpg);
    position: absolute;
    display: block;
    margin-top: -70px;
    
    width: 20px;
} */

/* 7. Pricing section  */

.price_wrapper{
    padding: 60px 0;

}
.price_wrapper .pricing_subtitle{
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 5px;
    color: gray;
}

.price_wrapper .pricing_title{
    font-family: "Quciksand";
    font-weight: 800;
    line-height: 1.25;
    font-size: 34px;
    margin-bottom: 25px;
    color: black;
}
.price_wrapper .pricing_card{
    background-color: white;
    box-shadow: 0 1px 20px rgb(0 0 0 / 45%);
    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 / 60%);
    z-index: 5;
    cursor: pointer;
}
.price_wrapper .pricing_period{
    font-family: "Quicksand";
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    padding-bottom: 0;
    color: gray;
}
.price_wrapper .pricing_card img{
    max-width: 75%;

}
.price_wrapper .pricing_rate{
    font-size: 34px;
    font-family: "Quicksand";
    font-weight: 800;
    color: black;
    line-height: 1.25;
    margin:0;

}
.price_wrapper .pricing_text{
    font-size: 12px;
    font-family: "Quicksand";
    font-weight: 600;
    color: 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 ul li{
    font-size: 14px;
    color: gray;
    font-weight: 500;
    line-height: 1.25;
    text-align: center;
    margin-top: 5px;
}
.price_wrapper .pricing_all_plan ul li strike{
    color: rgb(164, 162, 162);
}
.price_wrapper .learn-more-btn{
    background: rgb(91, 132, 91);
    border-color: rgb(91, 132, 91);
}
.price_wrapper .featured{
    box-shadow: 0 2px 40px rgb(0 0 0 / 5%);
    background-color: white;
    border: 5px solid 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: "Quicksand";
    position: absolute;
    display: block;
    width: 225px;
    padding: 5px 0;
    background-color: black;
    color: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: rgb(9, 9, 45);
    border-color: rgb(9, 9, 45);
}
.price_wrapper .featured .pricing_rate{
    font-size: 40px;
}
/* Free trail in price section  */
.free_trial{
    background-color: rgb(185, 182, 182);
    padding: 40px 0;
    margin-top: 100px;
}
.free_trial .free_title{
    font-family: "Quicksand";
    font-weight: 800;
    font-size: 34px;
    line-height: 1.5;
    margin-bottom: 0;
    color: black;
}
.free_trial .learn-more-btn{
    background-color: black;
    border-color: black;

}
.free_trial .learn-more-btn .fa{
    font-size: 22px;
    margin-right: 5px;
    vertical-align: bottom;
    color: yellow;
}

/* 8. reviews  */
.testimonial_wrapper{
    padding: 50px 0;

}
.testimonial_wrapper .testimonials_subtitle{
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 5px;
    color: gray;
}
.testimonial_wrapper .testimonials_title{
    font-weight: 800;
    font-family: "Quicksand";
    font-size: 34px;
    line-height: 1.25;
    margin-bottom:
    color: black;
}
.testimonial_wrapper .testimonial_card{
    border-radius: 15px;
    padding: 50px;
    background-color: white;
    box-shadow:  0 5px 40px rgb(0 0 0 /40%);
}
.testimonial_wrapper .testimonial_card h3{
    font-family: "Quicksand";
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 5px;
    color: black;
}
.testimonial_wrapper .testimonial_role{
    font-size: 19px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 25px;
    color: rgb(128, 179, 128);
}
.testimonial_wrapper .testimonials_text{
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
}

/* 10.Faq section  */
.faq_wrapper{
    padding: 100px 0;
}
.faq_wrapper .faq_subtitle{
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 5px;
    color: gray;

}
.faq_wrapper .faq_title{
    font-family: "Quicksand";
    font-weight: 800;
    font-size: 34px;
    line-height: 1.25;
    margin-bottom: 100px;
    color: black;

}
.accordion-button:hover,
.accordion-button:focus{
    box-shadow: none;
    color: green;
    background-color: rgb(198, 198, 128);
}
.faq_wrapper .accordion-item{
    border: 0;
}
.accordion-button{
    font-size: 21px;
    font-weight: 600;
    color: black;
    background: white;
    border-radius: 0;
    padding:  0 0 15px 0;
    border-bottom:  0px solid gray;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: ;
}
.faq_wrapper .accordion-button::after{
    content: '\002B';
    display: inline-block;
    background-image: none;
}
.faq_wrapper .accordion-button:not(.collapsed)::after{
    content: '\2212';
    display: inline-block;
    background-image: none;
    transform: unset;
}
.faq_wrapper .accordion-body{
    color: black;
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 20px 0;
    padding-bottom: 25px;
    line-height: 1.5;
}

/* footer section  */
.footer_wrapper{
    padding: 100px 0 25px;
    background-color: rgb(12, 24, 24);
    color: white;

}
.footer_logo img{
    max-width: 30%;
}
.footer_wrapper .footer_text,
.footer_wrapper .footer_text a{
    margin-top: 30px;
    color: white;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none;
}
.footer_wrapper .footer_title{
    font-family: "Quickand";
    text-transform: capitalize;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    color: white;
    margin-bottom: 25px;
}
.footer_wrapper .footer_social_icon{
    padding-right: 30px;
    color: white;
    font-size: 20px;
}
.footer_wrapper .footer_credits{
    color: white;
    border-top: 1px solid white;
    padding-top: 20px;
    margin-top: 30px;
}
.footer_wrapper .footer_credits a{
    color: yellow;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}