*{
    padding: 0;
    margin: 0;
    outline: 0;
    box-sizing: border-box;
}
h1,h2,h3,h4,h5,p{
    margin: 0;
}
h1,h2,h3,h4,h5{
    font-family: 'Rufina', serif;
}
a{
    text-decoration: none;
}
body{
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    font-weight: 400;
    
}

/* header part start */
.logo-a{
    font-family: 'Rufina', serif;
    font-size: 50px;
    font-weight: 700;
    color: #1dbf73;
}
.logo-a:hover,
.logo-a:focus{
    color: #1dbf73;
}
.navbar-toggler{
    padding: 0;
    border: none;
}
.navbar-toggler-icon{
    background-image: url("../images/menu.svg");
    width: 40px;
    height: 40px;
}
.scrolled{
    
    background: rgba(3, 78, 62, 0.8);
}
.header{
    
    position: relative;
    z-index: 900;
    transition: background-color 0.4s ease;
}
.logo{
    width: 180px;
    
}
.nav-item a{
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #fff;
}
.nav-item .m-active,
.nav-item a:hover,
.com-btn{
    color: #1dbf73;
}
.nav-item a:focus{
    color: #fff;
}
.nav-item .nav-btn,
.com-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    width: 180px;
    background: #1dbf73;
    border-radius: 5px;
    color: #fff;
    border: 1px solid #1dbf73;
    transition: .4s linear;

}
.nav-item .nav-btn:hover,
.com-btn:hover{
    background-color: transparent;
    color: #1dbf73;
}
/* header part end */

/* banner part start */
.banner{
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("../images/banner.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
    position: relative;
    z-index: 10;
}
.banner::before,
.com-banner::before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: #040E27;
    opacity: .7;
}
.banner-content-box{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
    align-items: center;
}
.com-h1{
    font-size: 60px;
    font-weight: 700;
    line-height: 74px;
    color: #fff;
    text-transform: capitalize;
}
.banner-form{
    max-width: 460px;
    width: 100%;
    margin-left: auto;
}
.banner-form-box{
    padding: 50px;
    background-color: #fff;
    border-radius: 5px;
}
.banner-form-box h4{
    font-size: 30px;
    line-height: 36px;
    font-weight: 400;
    color: #040e27;
}
.banner-form-box h4 span{
    text-transform: uppercase;
    color: #1dbf73;
}
.banner-form-box p{
    color: #7a838b;
}
.banner-form .input-box select{
    width: 100%;
    padding: 15px 18px;
    border: 1px solid #dbdbdb;
    color: #7a838b;
    border-radius: 5px;
}

/* banner part end */

/* quick step part start */
.quick-step{
    position: relative;
}
.quick-step-box{
    display: grid;
    grid-template-columns: 300px 1fr;
    position: absolute;
    right: 0;
    top: 0;
}
.quick-content{
    background-color: #1dbf73;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    padding: 0 60px;
    gap: 40px;
}
.single-quick{
    display: grid;
    grid-template-columns: 55px 1fr;
    align-items: center;
    gap: 15px;
}
.single-quick-text p{
    font-size: 18px;
    font-weight: 400;
    line-height: 31px;
    color: #fff;
}
/* quick step part end */

/* offer part start */
.com-h2{
    font-size: 44px;
    line-height: 53px;
    color: #001d38;
    font-weight: 400;
    position: relative;
}
.com-h2::before{
    content: "";
    width: 60px;
    height: 3px;
    background-color: #1dbf73;
    border-radius: 3px;
    position: absolute;
    left: 50%;
    top: -13px;
    transform: translateX(-50%);
}
.com-top p{
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    color: #7a838b;
}

.offer-card-box{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}
.single-offer-card{
    background: linear-gradient(to bottom, #1dbf73 0%, #0e7c49 100%);
    border-radius: 5px;
}
.offer-card-top{
    padding:  30px;
    min-height: 249px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.offer-card-top img{
    width: 68px;
    margin: 0 auto;
}
.offer-card-top p{
    line-height: 24px;
    color: #fff;
}
.offer-card-top h4{
    font-size: 30px;
    line-height: 30px;
    font-weight: 400;
    color: #fff;
}
.offer-card-bottom{
    padding: 30px;
    
    
}
.offer-bottom-content{
    min-height: 214px;
    margin-bottom: 30px;
}
.offer-card-bottom p{
    font-size: 15px;
    line-height: 26px;
    color: #fff;
    padding-left: 17px;
    position: relative;
    
}
.offer-card-bottom p span{
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #1dbf73;
    position: absolute;
    left: 0;
    top: 9px;
    z-index: 10;
    
}
/* offer part end */

/* how it work part start */
.how-it{
    background-color: #F5FBFF;
}
.how-it-box{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px 50px;
}
.works-number{
    width: 72px;
    height: 72px;
    background-color: #DDF0FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 500;
    color: #1dbf73;
}
.works-text h5{
    font-size: 24px;
    line-height: 29px;
    font-weight: 400;
    color: #040e27;
}
.works-text p{
    color: #7a838b;
    line-height: 28px;
}
/* how it work part end */

/* our team part start */
.team-box{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    gap: 30px 20px;
}

.team-img{
    height: 256px;
    width: 100%;
    object-fit: cover;
    overflow: hidden;
    border: 1px solid #ddd;
}
.team-img img{
    transition: .3s linear;
    
    
}
.single-team:hover .team-img img{
    transform: scale(1.05);
}
.team-text h5{
    font-size: 25px;
    font-weight: 700;
    line-height: 30px;
    color: #040e27;
}
.team-text p{
    color: #7a838b;
    line-height: 26px;
}
/* our team part end */

/* footer part start */
.footer-text p{
    font-size: 15px;
    line-height: 28px;
    color: #7a838b;
    font-weight: 400;
}
/* footer part end */

/* why choose us part start */
.why-choose-box{
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
    align-items: center;
}
.why-choose-text p{
    font-size: 16px;
    line-height: 32px;
    font-weight: 400;
    color: #7a838b;
}
.why-choose-img img{
    max-width: 450px;
    width: 100%;
}
/* why choose us part end */



/* ===========about page start=========== */
.com-banner{
    min-height: 450px;
    display: flex;
    align-items: center;
    background-image: url("../images/about-banner.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 10;
}
.com-banner-text .com-h2::before{
    display: none;
}
/* ===========about page end=========== */




/* ===========contact page start=========== */
.contact-banner{
    background-image: url("../images/contact-banner.webp");
}

.contact-box{
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px 100px;
}
.grid-input{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
}
.input-box input,
.input-box textarea{
    font-family: 'Rubik', sans-serif;
    width: 100%;
    border: 1px solid #e5e6e9;
    border-radius: 0px;
    height: 48px;
    padding-left: 18px;
    font-size: 13px;
    background: transparent;
    color: #7a838b;
}
::placeholder{
    font-family: 'Rubik', sans-serif;
    
}
.mb-30{
    margin-bottom: 30px;
}
.input-box textarea{
    height: 190px;
    padding-top: 12px;
}
.submit-box button{
    background: #fff;
    display: inline-block;
    padding: 14px 44px;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    border: 1px solid #1dbf73;
    text-align: center;
    color: #1dbf73 ;
    text-transform: uppercase;
    cursor: pointer;
    transition: .3s all  ease;
}

.submit-box button:hover{
    background: #1dbf73;
    color: #fff ;
}


.single-contact{
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 20px;
    align-items: center;
}
.single-contact h4,
.single-contact h4 a{
    font-size: 16px;
    line-height: 19px;
    font-weight: 500;
    color: #2a2a2a;
}
.contact-details p{
    color: #2a2a2a;
    line-height: 28px;
}
/* legal text part start */
.legal-text{
    background-color: #212530;
}
.l-2{
    border: 1px solid #373B3F;
    border-radius: 10px;
    max-width: 200px;
    margin: 0 auto;
}
/* legal text part end */
/* ===========contact page end=========== */


/* thank you page start */

.thankyou-card{
    max-width: 550px;
    width: 95%;
    min-height: 300px;
    background-color: #fff;
    position: relative;
    margin: 0 auto;
    z-index: 200;
    padding: 50px;
    padding-top: 70px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    transition: .5s all ease-in-out;
    
  
  }
  .tik-box{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #1dbf73;
    color: #fff;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    top: -50px;
    transform: translateX(-50%);
    border: 2px solid #fff;
    
  }
  .tik-box i{
    font-size: 50px;
  }
  .ok-btn a{
    margin-top: 30px;
    display: block;
    width: 270px;
    
    background-color: #1dbf73;
    border: none;
    outline: 0;
    padding: 12px 20px;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
  }
  .ok-btn .apply-btn:hover{
    background-color: #1dbf73;
  }
  
  .thanks-banner{
    min-height: 300px;
  }
  /* thank you page end */