@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&amp;display=swap');

*{
    padding: 0; margin: 0;
    box-sizing: border-box; text-transform: capitalize;
    transition: .4s linear;
    outline: none; border: none; text-decoration: none;
    font-family: 'Montserrat', sans-serif;
}

:root{
    --main-color: linear-gradient(90deg,#E90000, #810000);
    --blue-color: #6B64F6;
    --green-color: #70E03B;
    --black-color: #1b1b1b;
    --dark-black-color: #000212;
    --white-color: #fff;
    --gray-color: gray;
    --light-gray: #e5e5e5;
    --box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
    --font1: font-family: 'Outfit', sans-serif;
}


html{
    font-size: 65.5%;
    scroll-behavior: smooth;
    transition: .10s all;
}

body{
    background: #fff;
    overflow-x: hidden;
}

a{
    text-decoration: none!important;
}

::-webkit-scrollbar{
    width: .6rem;
}

::-webkit-scrollbar-track{
    background: transparent;
}

::-webkit-scrollbar-thumb{
    border-radius: 5rem;
    background-color: transparent;
}

/*Start navbar*/
header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 8%;
    height: 75px;
    z-index: 1000;
    position: fixed;
    top: 0; left: 0; right: 0;
    background: transparent;
}

.btn{
    background: var(--main-color);
    color: var(--white-color);
    padding: .6rem 2rem;
    font-size: 1.6rem;
    margin-top: 1rem;
    display: inline-block;
    border-radius: 33px;
}

.btn:hover{
    letter-spacing: 1px;
}

.header .logo img{
    height: 100px;;
}

.header .navbar a{
    margin: 0 1rem;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--white-color);
}

.header .navbar a:hover{
    color: var(--white-color);
    padding-bottom: .4rem;
    border-bottom: 2px solid var(--main2-color);
}

header.black{
  background: #03021369;
  opacity: 1;
  transition: .9s all!important;
  position: fixed;
  backdrop-filter: blur(2px);
  position: fixed;
  right: 0;
  left: 0;
  border-bottom: none;
  top: 0;
}

.nav-btn a{
    background: linear-gradient(45deg, #00b137, #056b25);
    color: var(--white-color);
    display: inline-block;
    text-decoration: none;
    padding: 0.4rem 1rem;
    font-size: 1.4rem;
    font-weight: 600!important;
    margin: 0 1rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    height: 45px;
    border-radius: 8px;
}

.nav-btn a img{
    width: 25px;
    height: auto;
}

.nav-left{
    display: none;
}

.header .icons div{
    color: var(--black-color);
    cursor: pointer;
    font-size: 2.3rem;
    margin-left: 2rem;
    display: none;
}

.header .icons div:hover{
    color: var(--main-color);
}

.header div #menu-btn{
    display: none;
}

.navbar{
  padding-bottom: 0!important;
}

.display-none{
  display: none;
}
/*End navbar*/

/*Start home section*/
/*section{
    padding: 6rem 8%;
}
*/
.home-section{
    width: 100%;
    min-height: ;
    background: url(../img/bg.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 8rem 8% 0 8%;
}

.home-img img{
/*    transform: scale(1.2);*/
    width: 100%;
    height: auto;
    animation: fadeInUp 0.6s both 0.6s;
}

.home-text{
    animation: fadeInUp 0.6s both 0.6s;
    max-width: 440px;
}

.home-text h2{
    color: var(--white-color);
    font-size: 3.8rem;
    font-family: var(--font1);
    font-weight: 800;
    line-height: 1.4;
    padding-bottom: .4rem;
}

.home-text h2 span{
    color: transparent;
    background: var(--main-color);
    font-size: 3.8rem;
    font-family: var(--font1);
    font-weight: 800;
    padding-bottom: .4rem;
    line-height: 1.2;
    border-bottom: 2px solid #F1B21B;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home-rating{
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: center;
    background-color: #ffffff1c;
    border-radius: 12px;
    padding: 2.4rem;
    height: 120px;
    backdrop-filter: blur(15px);
    margin-top: 4rem;
    border-radius: 6px; padding: 2rem;
    animation: fadeInUp 0.6s both 0.6s;
}

.home-rating-inner{
    display: flex;
    align-items: center;
    gap: 1.6rem;
}

.home-rating-inner i{
    color: #fff;
    font-size: 2.8rem;
}

.home-rating-inner h4{
    color: var(--white-color);
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font1);
    margin: 0;
}


.home-rating-inner p{
    color: var(--white-color);
    font-size: 1.2rem;
    margin: 0;
}

@keyframes fadeInUp{
    0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
}

100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
}

/*Download btns*/
.fixed-download-btns{
    position: fixed;
    bottom: -9px;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 1000;
}

.fixed-download-btns a{
    width: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
}

.fixed-download-btns a img{
    max-width: 200px;
    width: 100%; height: auto;
}

/*End fixed button design*/

/*Start feature section*/
.feature-section{
    padding: 6rem 8%;
    width: 100%; min-height: 100vh;
}

.feature-section-img-part img{
    width: 100%;
    height: auto;
}

.feature-section-content-part h2{
    color: var(--black-color);
    font-size: 4rem;
    font-weight: 800;
    font-family: var(--font1);
}

.feature-section-content-part h2 span{
    -webkit-background-clip: text!important;
    -webkit-text-fill-color: transparent;
    color: transparent;
    background: var(--main-color);
}

.feature-section-content-part p{
    color: var(--gray-color);
    font-size: 1.4rem;
    line-height: 1.5;
    padding: 2rem 0;
}

.feature-section-content-part-feature-box{
    display: flex; align-items: center; gap: 1rem;
    border-left: 4px solid #ffffff4a;
    backdrop-filter: blur(10px);
    padding: 1.4rem; margin-bottom: 1.5rem;
    box-shadow: var(--box-shadow);
    border-radius: 12px;
    height: 100px;
    background: linear-gradient(45deg, #ffffff2e, transparent);

}

.feature-section-content-part-feature-box img{
    width: 45px; height: auto;
}

.feature-section-content-part-feature-box-txt h4{
    margin: 0;
    color: var(--black-color);
    font-weight: 600;
    font-family: var(--font1);
    font-size: 1.4rem;
}

.feature-section-content-part-feature-box-txt p{
    margin: 0; padding: .5rem 0 0 0!important;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-color);
    letter-spacing: .2px;
}

/*Start process section*/
.process-section{
    padding: 6rem 8%;
    width: 100%;
    background: #F6F7FB;
}

.process-section h2{
    color: var(--black-color);
    font-size: 4rem;
    font-weight: 800;
    font-family: var(--font1);
    text-align: center;
}

.process-box{
    padding: 2rem;
    text-align: center;
}

.process-box img{
    width: 150px;
    height: auto;
}

.process-box p{
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.5;
    padding: 1rem 0;
    color: var(--black-color);
}

.process-section h2 span{
    -webkit-background-clip: text!important;
    -webkit-text-fill-color: transparent;
    color: transparent;
    background: var(--main-color);
    border-bottom: 2px solid #F1B21B;
}
/*End process section*/

/*Start testimonial section*/
.testimonial-section{
    background: url(../img/bg.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 6rem 8%;
}

.testimonial-section-img img{
    width: 100%;
}

.testimonial-section h2{
    color: var(--white-color);
    font-size: 4rem;
    font-weight: 800;
    font-family: var(--font1);
    max-width: 500px;
}

.testimonial-section h2 span{
    -webkit-background-clip: text!important;
    -webkit-text-fill-color: transparent;
    color: transparent;
    background: var(--white-color);
}

.testimonial-section p{
    color: var(--white-color);
    font-size: 1.4rem;
    padding: 1rem 0;
    max-width: 500px;
}

.review-section-card{
    text-align: center;
    max-width: 400px;
    background: #fff;
    width: 100%; margin: 0 1rem;
    border-radius: 12px; margin-bottom: 1.5rem;
}

.review-section-card .review-section-card1{
    background: #F6F7FB;
    padding: 2rem;
    border-radius: 12px;
}

.review-section-card .review-section-card1 img{
    width: 80px; height: 80px; border-radius: 50%;
    margin: auto;
}

.review-section-card .review-section-card1 h4{
    font-size: 1.8rem; color: var(--black-color);
    margin-top: .8rem;
}

.review-section-card .review-section-card1 p{
    font-size: 1.4rem; color: var(--gray-color);
    padding: 0!important;
}

.review-section-card-body {
    padding: 2rem;
}

.review-section-card-body .fa-quote-right {
    -webkit-background-clip: text!important;
    -webkit-text-fill-color: transparent;
    background: var(--main-color);
    color: transparent;
    font-size: 3.5rem;
}

.review-section-card-body p{
    font-size: 1.4rem; color: var(--gray-color);
    line-height: 1.5; 
    padding: 1rem 0;
}
.review-rating i{
    color: orange;
    font-size: 1.4rem;
}
/*End testimonial section*/

/*Start question section*/
.question-section{
    padding: 6rem 8%;
    background: #000;
    width: 100%; min-height: 100vh;
}

.question-section h2{
    color: var(--white-color);
    font-size: 4rem;
    font-weight: 800;
    font-family: var(--font1);
}

.question-section h2 span{
    -webkit-background-clip: text!important;
    -webkit-text-fill-color: transparent;
    color: transparent;
    background: var(--main-color);
}


.question-section p{
    color: var(--light-gray);
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: .3px;
    line-height: 1.6;
    padding: 1rem 0;
    max-width: 800px; width: 100%;
}

.accordion-item{
    background-color: transparent;
    border: none;
}

.accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1.4rem;
    height: 50px;
    color: var(--white-color);
    background: linear-gradient(329deg, #ffffff1c, transparent 20%, #ffffff24);
    border: 0;
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: 4px!important;
    margin: 1.5rem 0;
}

.accordion-button:not(.collapsed){
    color: var(--white-color);
    background: linear-gradient(329deg, #ffffff4a, transparent 20%, #ffffff4a);
}

.accordion-body {
    font-size: 1.4rem;
    padding: 1rem 1.25rem;
    color: var(--white-color);
    line-height: 1.7;
}

.accordion-button:focus{
    border-color: #fff;
    box-shadow: 0 0 0 0.25rem rgb(255 255 255 / 25%);
}
/*End question section*/

/*Start footer section*/
.bg-footer {
    background-size: cover;
    background: url(../img/footer-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    margin: 0!important;
}

footer{
    padding: 3.5rem 5%!important;
}

.footer-heading {
    letter-spacing: 2px;
}

.footer-link a {
    color: var(--white-color);
    line-height: 40px;
    font-size: 1.6rem;
    transition: all 0.5s;
    font-family: var(--font1);
}

.footer-link a:hover {
    color: var(--white-color);
}

.contact-info {
    color: #acacac;
    font-size: 14px;
}

.footer-social-icon {
    font-size: 15px;
    height: 34px;
    width: 34px;
    line-height: 34px;
    border-radius: 3px;
    text-align: center;
    display: inline-block;
}

.list-inline-item a i{
    color: var(--black-color);
    background-color: var(--white-color);
    transition: .5s transform;
}

.list-inline-item a i:hover{
   transform: translateY(-10px);
}

.footer-alt {
    color: #acacac;
}

.footer-heading {
    position: relative;
    padding-bottom: 12px;
    font-size: 2rem;
    font-weight: 800;
}

.footer-heading:after {
    content: '';
    width: 25px;
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    border-bottom: 1px solid var(--main-color);
}

.text-center-footer{
    text-align: center;
}

.text-center-footer img{
    height: 100px;
    margin: auto;
    display: block;
}

.text-center-footer p{
    font-size: 1.6rem;
    color: var(--light-gray);
}
/*End footer section*/











/*Media quaries*/
@media screen and (max-width: 991px){
html{
    font-size: 55%;
}

.header div #menu-btn{
    color: var(--white-color);
    display: inline-block;
}

.header .navbar{
    position: absolute;
    top: 100%;
    display: block;
    width: 100%;
    background: #030213;
    right: 0;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    height: auto;
    z-index: 1000000;
}

.header .navbar.active{
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.header .navbar a{
    color: var(--white-color);
    display: block;
    padding: 1.4rem 1rem;
    font-size: 2rem;
}

.nav-left{
    display: block;
}

.nav-btn{
    display: none;
}


}

@media screen and (max-width: 991px){ 
   
}

@media screen and (max-width: 768px){
    .home-rating{
        display: flex;
        align-items: center;
        gap: 2rem;
        justify-content: space-between;
        background-color: #ffffff1c;
        backdrop-filter: blur(15px);
        margin-top: 4rem;
        border-radius: 6px;
        padding: 2rem;
        height: auto;
    }

    .home-rating-inner{
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .home-section{
        padding: 12rem 8% 0 8%;
    }

}

@media screen and (max-width: 650px){
   
.home-text h2 span{
    font-size: 3.4rem;
    font-family: var(--font1);
    font-weight: 800;
    padding-bottom: .4rem;
    line-height: 1.2;
    border-bottom: 2px solid #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home-text h2{
    font-size: 3.4rem;
    text-align: center;
}

.fixed-download-btns a img{
    max-width: 145px;
}

}

@media screen and (max-width: 450px){
html{
    font-size: 50%;
}



}

@media screen and(max-width:400px) {
    
}