*{
    margin: 0;
    padding: 0;
}
a{
    text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
    font-family: "Inter",sans-serif;
    color: #0f4332;
    margin-top: 0;
    font-style: normal;
    font-weight: 500;
    text-transform: normal;
}
p{
    font-family: "Chivo",sans-serif;
    color: #4c5753;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 15px;
    font-weight: 400;
    line-height: 1.6;
}
/* 
font-family: 'Chivo', sans-serif;
font-family: 'Inter', sans-serif; 
*/
button{
    transition: .3s;

}
.btnh:hover{
    background: #10c98f;
    color: #fff;
    border: 2px solid #10c98f;
    transition: .3s;
}
/* Dropdown */
.dropdown{
    position: relative;
}
.dropdown:hover .d-menu{
    display: block !important;
    transition: .5s;
}
.d-menu{
    position: absolute;
    z-index: 9999999;
    margin-left: -650%;
    margin-top: 10px;
    display: none;
    transition: .5s;
}
.ddown{
    display: flex;
    background-color: #0c8760;
    padding: 20px 40px;
    border-radius: 5px;

}
.ditem{
    padding: 0px 30px;
    width: 250px;
}
.ddown li{
    list-style: none;
    padding: 5px 5px;
}
.ddown li:hover{
    background-color: #20be89;
}
.ddown li a{
    text-decoration: none;
    color: #fff;
    font-weight: 600;
}
/* Dropdown */
/* Header section css start from here */
.sticky{
	position: fixed;
	width: 100%;
    z-index: 99;
	background: #26be9f !important;
    box-shadow: -4px 12px 23px -13px rgba(13,13,13,0.54);
    -webkit-box-shadow: -4px 12px 23px -13px rgba(13,13,13,0.54);
    -moz-box-shadow: -4px 12px 23px -13px rgba(13,13,13,0.54);
}
header{
    background-image: url(../image/header-background.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: auto;
}
.header{
    position: relative;
    z-index: 1;
}
.header::before{
    position: absolute;
    content: "";
    background-color: rgba(16,201,143,.4);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 0;
    background-repeat: no-repeat;
}
.nav-item{
    margin: 0px 14px;
}
.nav-link{
    font-family: "Inter",sans-serif;
    color:  #fff !important;
    font-weight: 600;
    padding: 28px 5px;
    display: block;
    font-size: 16px;
    text-transform: inherit;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
}
.nav-link:hover{
    transform: scale(1.2);
    transition: .3s;
}

.btn {
        font-family: "Inter",sans-serif;
        color: #fff !important;
        font-weight: 600;
        padding: 18px 36px !important;
        display: block;
        font-size: 14px !important;
        background: #10c98f !important;
        border-radius: 0px !important;
        text-transform: inherit;
        -webkit-transition: all .3s ease-out 0s;
        -moz-transition: all .3s ease-out 0s;
        -ms-transition: all .3s ease-out 0s;
        -o-transition: all .3s ease-out 0s;
        transition: all .3s ease-out 0s;
}
/* Header section css End from here */

/* Banner section css start from here */

.banner{
    padding: 90px 0px;

}
.b-content{
    display: flex;
    justify-content: space-between;
}
.banner-left{
    position: relative;
}
.banner-left h1{
    font-size: 62px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    padding-bottom: 29px;
    font-family: "Inter",sans-serif;
    position: relative;
}
.banner-left h1::after{
    content: "";
    position: absolute;
    width: 110px;
    bottom: 0;
    height: 3px;
    left: 0;
    background: #fff;
}
.banner-left p{
    margin-bottom: 30px;
    color: #fff;
    font-size: 24px;
    line-height: 1.6;
    font-weight: 500;
}
.btn-2{
    color: #FFF;
    border: 2px solid #fff;
    display: inline-block;
    padding: 17px 45px;
    text-transform: uppercase;
    font-size: 16px;
    background: none;
    font-weight: 600;
}
.banner-right{
    position: relative;
    margin-bottom: 70px;
}
.form{
    background: #fff;
    padding: 45px 35px 35px 35px;
    border-radius: 0;
    margin-bottom: -100px;
    box-shadow: 0 16px 30px rgb(15 67 50 / 10%);
}
.f-head{
    text-align: center;

    position: relative;
    margin-bottom: 12px;
    padding-bottom: 13px;
}
.f-head h1{
    color: #0f4332;
    font-size: 30px;
    display: block;
    font-weight: 700;
    margin-bottom: 6px;
}
.f-head p{
    color: #3f4854;
    font-size: 14px;
    line-height: 1.8;
}
.f-head p::after{
    content: "";
    position: absolute;
    width: 110px;
    bottom: 0;
    height: 3px;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: #10c98f;
}
label{
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 400;
    color: #4c5753;
    padding-top: 15px;
    margin-bottom: 15px;
}
label span{
    font-size: 18px;
    color: #10c98f;
    font-weight: 800;
}
select {
    word-wrap: normal;
    width: 100%;
    padding: 10px 10px;
    line-height: 30px;
    border: 1px solid #c9d6cb;
    height: 50px;
    width: 100%;
    color: #071112;
    font-weight: 500;
    text-transform: capitalize;
    padding-top: 10px;
    border-radius: 0;
}
select:focus{
    outline: none;
}
#select1{
}
.submit-form{

}
.submit-form p{
    text-align: center;
    font-family: "Chivo",sans-serif;
    color: #4c5753;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 15px;
    font-weight: 400;
    line-height: 1.6;
    margin-top: 12px;
}
.btn-3{
    background: #10c98f;
    height: 50px;
    padding: 10px 36px;
    border: 0;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    border-radius: 0;
    text-transform: uppercase;
    font-weight: 600;
    width: 100%;
}
option{
    background-color: #10c98f;


}
option:hover{
    background: #fff !important;
}

/* Banner section css End from here */
/* Feature section css Start from here */
.feature{
    width: 100%;
    padding: 80px 0px;
}
.feature-head{
    text-align: center;
    margin-bottom: 70px;
}
.feature-head h1{
    color: #0f4332;
    font-size: 40px;
    display: block;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -.04em;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 24px;
}
.feature-head h1::after{
    content: "";
    position: absolute;
    width: 110px;
    bottom: 0;
    height: 3px;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: #10c98f;
}
.feature-head p{
    color: #6d6d6d;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    padding: 0% 33%;
}
.f-box{
    transition: .3s;
}
.f-box h2 a{
    transition: .3s;

}
.f-box:hover h2 a{
    color: #10c98f;
    transition: .3s;
}
.f-box img{
    margin-bottom: 30px;
}
.f-box h6{
    color: #0c8760;
    font-size: 14px;
    margin-bottom: 20px;
}
.f-box h2 a{
    color: #0f4332;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 20px;
    display: block;
    text-decoration: none;
}
.f-box p{
    font-size: 18px;
    font-weight: 500;
    color: #4c5753;
    line-height: 1.6;
}
/* Feature section css End from here */
/* Offer-1 section css Start from here */
.offer-1{
    background-color: #e4f1ed;
    padding: 120px 0px;
}
.i-box{
    position: relative;
}
.r-text{
    text-align: center;
    position: absolute;
    padding: 63px 47px;
    bottom: -50px;
    right: -10px;
    background-color: #10c98f;
}
.r-text span{
    color: #fff;
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
}
.r-text p{
    font-size: 16px;
    color: #fff;
    margin-top: 15px;
}
.offer-head{
    border-bottom: 2px solid #cee0da;
}
.offer-head h2{
    color:#0f4332;
    font-size: 40px;
    display: block;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -.04em;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 24px;

}
.offer-head p{
    margin-bottom: 30px;
}
.btn-4{
    color: #10c98f;
    display: inline-block;
    padding: 17px 45px;
    text-transform: uppercase;
    font-size: 16px;
    background: none;
    font-weight: 600;
    border: 2px solid #10c98f;
}
.dot{
    margin: 30px 0px;
}
.dot-p{
    display: inline-block !important;
    padding-left: 20px;
    color: #0f4332;
    font-size: 18px;
    font-weight: 400;
}
/* Offer-1 section css End from here */
/* Feature-2 section css End from here */
.feature-2{
    background-color: #f4fcfa;
    width: 100%;
    padding: 80px 0px;
}
.f2-head{
    text-align: center;
    margin-bottom: 70px;
}
.f2-head h2{
    color: #0f4332;
    font-size: 40px;
    display: block;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -.04em;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 24px;
}
.f2-head h2::after{
    content: "";
    position: absolute;
    width: 110px;
    bottom: 0;
    height: 3px;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: #10c98f;
}
.f2-head p{
    color: #6d6d6d;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    padding: 0% 33%;
}
.f2-box{
    text-align: center;
}
.f2-box img{
    margin-bottom: 26px;
}
.f2-box:hover h3 a{
    color: #10c98f;
    transition: .3s;
}
.f2-box h3 a{
    color: #0f4332;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 20px;
    display: block;
    text-decoration: none;
    transition: .3s;

}
.f2-box p{
    font-size: 17px;
    font-weight: 500;
    color: #4c5753;
    line-height: 1.6;
}

/* Feature-2 section css End from here */
/* Offer-2 section css End from here */
.offer-2{
    background-color: #e4f1ed;
    padding: 100px 0px;
}
.offer-head-2{
    padding: 30px 0px;
}
.offer-head-2 p{
    margin-bottom: 5px;
    color: #6d6d6d;
}
/* Offer-2 section css End from here */
/* Slider section css Start from here */
.slider{
    position: relative;
    padding: 60px 0px;
    background-color: #0f4332;
    z-index: -1;
}
.slide-p{
    background-image: url(../image/slider-background.png);
    background-position: left top;
    background-repeat: no-repeat;
}
.slide-p p{
    font-size: 24px;
    color: #d5ece5;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 500;
    padding: 30px 20px;
    margin-bottom: 0px;
}
.review{
    display:-webkit-inline-box;
}
.review img{
    width: auto;
}
.review-text{
    margin-left: 30px;
}
.review span{
    font-size: 24px;
    color: #d5ece5;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 600;
}
.review p{
    font-size: 14px;
    color: #fff;
    padding: 0px;
}
.desh12{
    position: absolute;
    position:absolute;
    right: 20px;
    bottom: 20px;
    color: #fff;
}
.desh12 ul li{
    list-style: none;
    display: inline-block;
}
.s-bottom{
    width: 50px;
    vertical-align: middle;
    background: rgba(206, 190, 190, 0.301)240, 236, 236);
    height: 3px;
    border: none;
    opacity: .3;
}

.owl-carousel .owl-item img {
    width: auto !important;
}
.owl-dot{
    display: none !important;
}
/* Slider section css End from here */
/* News section css Start from here */
.news{
    padding: 120px 0px;
}

.news h2{
    color: #0f4332;
    font-size: 40px;
    display: block;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -.04em;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 24px;
    text-align: center;
}
.news h2::after{
    content: "";
    position: absolute;
    width: 110px;
    bottom: 0;
    height: 3px;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: #10c98f;
}
.n-box{
    padding-top: 20px;
}
.n-box img{
    padding: 20px 0px;
}
.n-box span{
    color: #a4aca9;
    margin-bottom: 14px;
    display: block;
}
.n-box h3 a{
    text-decoration: none;
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 12px;
    font-weight: 700;
    display: block;
    color: #0f4332;
    transition: .3s;

}
.n-box:hover h3 a{
    color: #10c98f;
    transition: .3s;
}
.n-box p{

    color: #4c5753;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 24px;

}
/* News section css End from here */
/* Footer section css Start from here */

footer{
    background: #f4fcfa;
    padding-top: 100px;
    position: relative;

}

footer h4{
    color: #0f4332;
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: 600;
}

.logo2-text p{
    width:75%;
    margin-top: 40px;
}
footer ul{
    margin: 0;
    padding: 0;
}
footer ul li{
    list-style: none;
    padding: 10px 0px;
    color: #4c5753;
    font-weight: 500;
    font-size: 16px;
    transition: .3s;
}
footer ul li:hover{
    color: #10c98f;
    text-decoration: underline;
    transition: .3s;
}
.socil-icon ul {
    margin-top: 20px;
}
.socil-icon ul li{
    display: inline-block;
    margin-right: 20px;
    transition: .5s; 
}
.socil-icon ul li i{
    font-size: 22px;
}
.socil-icon ul li:hover {
     transform: rotateY(3.142rad);
     transition: .5s;
}
input{
}
 .f-input{
     width: 100%;
     padding: 18px;
     border: 2px solid #10c98f !important;
}
button, input, optgroup, select, textarea{
    font-weight: 500;

}
.send-icon{
    position: absolute;
    padding: 23px 32px;
    background: #10c98f;
    margin-left: -75px;
}
.cpyright{
    text-align: center;
    border-top: 1px solid #c9d1ce;
    margin-top: 100px;
}
.cpyright p{
    padding: 20px 0px;
}
.fa-heart{
    color: #10c98f;
}
.cpyright span{
    color: #10c98f;
    font-weight: 500;
}

.up-arrow .fa-long-arrow-up{
    position: absolute;
    right: 20px;
    bottom: 20px;
    padding: 25px;
    border-radius: 25px;
    background-color: #10c98f;
    
    position: absolute;
    right: 30px;
    bottom: 20px;
    border-radius: 50%;
    background-color: #10c98f;
    color: #fff;
    height: 50px;
    width: 50px;
    padding-left: 19px;
    padding-top: 13px;
    font-size: 23px;
    box-shadow: 0px 0px 10px #a4aca9;

}

/* Footer section css End from here */
