*{
    margin: 0px;
    padding: 0px;
    box-shadow: border-box;
    list-style-type: none;
}
:root{
    --primary-color: #1EAA90;
    --secoundary-color: #73C380;
}
@font-face {
    font-family: body-font;
      src: url(../font/Poppins/Poppins-Light.ttf);
}
@font-face {
    font-family: heading-font;
    src: url(../font/Poppins/Poppins-Bold.ttf);
}
html, body{
    width: 100%;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    font-family: body-font;
    font-weight: 400;
}
main{
    margin-top: 10px;
}
section{
    /* position: relative; */
    padding-top: 70px;
    padding-bottom: 70px; 
    /* z-index: -1; */

}
a{
    text-decoration: none;
    color: inherit;
}
img{
    width: 100%;
}
h1, h2, h3, h4, h5,h6{
    font-family: heading-font;
    margin-bottom: 0px;
    text-transform: capitalize;
}
.ph_view{
    display: none;
}
.subheading{
    color: var(--primary-color);
    position: relative;
    margin-bottom: 10px;
}

.main-heading{
    color: black;
    font-size: 26px;
    margin-bottom: 20px;
    word-break: break-word;
    line-height: 1.5em;
}
.product-heading{
    margin-bottom: 50px;
}
.product-heading h1{
    text-align: center;
    color: var(--primary-color);
    font-size: 26px;
}
.content p{
    font-size: 15px;
    color: black;
    text-align: justify;
        text-wrap: balance;
}
.contactbtn{
    background-color: var(--secoundary-color);
    border: 2px solid var(--secoundary-color);
    color: white;
    padding: 8px 30px;
}
.contactbtn:hover{
    border: 2px solid white;
    background-color: transparent;
    color: white;
}
header{
    background-color: #fff;
    padding: 0px 40px;
    box-shadow: 0px 5px 4px #80808040;
    position: sticky;
    top: 0%;
    z-index: 1;
}
header .logo{
    width: 130px;
}
header .collapse{
    display: flex;
    justify-content: end;
    align-items: center !important;
    margin: 20px 0px;
}
header .nav-item .nav-link{
    color: black;
    font-size: 15px;
    font-weight: 500;
    margin: 0px 10px;
    text-transform: capitalize;
}
header .collapse button{
    background-color: var(--secoundary-color);
    color: white;
    border: 1.5px solid var(--secoundary-color);
    padding: 5px 25px;
    text-transform: capitalize;
    border-radius: 10px;
    margin-left: 20px;
}
header .collapse button:hover{
    border:  1.5px solid var(--secoundary-color);
    background-color: transparent;
    color: var(--secoundary-color);
    transition: all .5s ease-in-out;
}
.about .about-wrap,
.highlightproduct,
.products,
.banner{
    position: relative;
    z-index: -1;
}
.about .about-wrap ul{
    padding-left: 0px;

}
.about .about-wrap ul li{
    position: relative;
    padding-left: 25px;
    font-size: 15px;
    margin-bottom: 10px;
}
.about .about-wrap ul li::before{
    position: absolute;
    font: var(--fa-font-solid);
    content: ' \f14a';
    color: var(--primary-color);
    /* margin-right: 20px; */
    padding-left: -100px;
    left: 0px;
    top: 2px;
    font-size: 20px;
}
.highlightproduct{
    background-image: url(../img/bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
}
.highlightproduct .highlightcontent h1{
    font-size: 26px;
    line-height: 1.5em;
    margin-bottom: 20px;
    color: var(--primary-color);
    /* background-color: #1EAA90; */
}
.highlightproduct .border-highlight{
    border-right: 2px dotted grey;
}
.highlightproduct .highlightcontent{
    padding: 45px 0px 42px 0px;
    margin-left: -50px;
    padding-right: 27px;
}
.highlightproduct .ml{
    margin-right: -50px;
}
.highlightproduct .card img{
    width: 70%;
    margin: auto;
    border-bottom: 1px solid black;
}
.highlightproduct .card .card-body .card-text{
    font-size: 13px;
}
.highlightproduct .card{
    text-align: center;
}
.whyus .about-wrap ul li::before{
    font-size: 15px;
} 
.contact{
    background:url(../img/contactbg.webp);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
}
.contact .contact_details_wrap span{
    color: var(--primary-color);
}
.contact .contact_details_wrap h3{
    margin-bottom: 20px;
    font-size: 30px;
    text-transform: capitalize;
}
.contact .btn-wrap{
    text-align: center;
}
.products .card,
.highlightproduct .card{
    text-align: center;
    border: none;
    border-radius: 20px;
    /* border: 1px solid red; */
    box-shadow:0px 0px 5px 0px #c4afaf73;;
}
.products .card img{
    width: 100%;
}
.products .card .card-title,
.highlightproduct .card .card-title{
    color: black;
    text-transform: capitalize;
    font-size: 18px;
}
/* ******************conatct form******************/
.contact_section{
    padding-top: 0px !important;
}
.form_wrap .form-heading{
    margin-bottom: 50px;
}
.form_wrap .form-heading h1{
    font-size: 20px;
    text-align: center;
    text-transform: uppercase;
}

.form_wrap .form_inner{
    width: 90%;
    background-color: white;
    box-shadow: 0px 0px 12px 1px #80808047;
    margin: auto;
    padding: 50px;
}
.form_wrap input:not(input[type="submit"]),
.form_wrap textarea{
    font-size: 14px;
    text-transform: capitalize;
    color: #000;
    border: 1.5px solid black;
        padding: 10px 8px;
}
.form_wrap .form-group{
    margin-bottom: 4px;
}
.form_wrap input:focus,
.form_wrap textarea:focus{
    border: 1.5px solid var(--primary-color) !important;
    box-shadow: none;
}
.form_wrap input::placeholder{
    color: black;
    text-transform: capitalize;
}
.contact_us_btn{
    background-color: var(--secoundary-color);
    padding: 9px 60px;
    border-radius: 10px;
    border: 1.5px solid var(--secoundary-color);
    color: white;
    margin-bottom: 10px;
    align-items: center !important;
    text-transform: capitalize;
}
.contact_us_btn:hover{
    border: 1.5px solid var(--secoundary-color);
    color: var(--primary-color);
    background-color: transparent;
    transition: all .5s ease-in-out;
}
.btn-element{
    text-align: center;
    padding-top: 30px
}

label {
    display: inline-block;
    margin-left: 0px;
    font-size: 13px;
    color: black;
    text-transform: capitalize;
} 


.error-message{
    color: red;
    margin-bottom: 10px;
}
.captcha {
    /* margin-bottom: 15px; */
    display: flex;
    margin-top: 20px;
    gap: 10px;
}



.captcha .preview {
    color: #555;
    width: 100%;
    text-align: center;
    height: 40px;
    line-height: 40px;
    letter-spacing: 8px;
    border: 1px dashed #888;
    font-family: monospace;
    /* margin-bottom: 10px; */
}
.captcha .preview span{
    display: inline-block;
    user-select: none;
}

.captcha-form {
    display: flex;
    align-items: center;
}

.captcha-form input {
    flex: 1;
    padding: 8px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 3px;
    margin-right: 5px;
}

.captcha-form button {
    background-color: #4caf50;
    color: #fff;
    padding: 8px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

footer{
    margin-top: 60px;
    /* position: relative;
    bottom: -181px; */
}
footer .footer-inner{
    background-color: #000;
    padding: 30px 0px;
    text-align: center;
}
footer .footer__logo{
    width: 150px;
}
footer ul{
    padding-left: 0px;
    margin-bottom: 0px;
}
footer .contact-info-list li{
    color: white;
    font-size: 15px;
    margin-bottom: 15px;
}
footer .contact-info-list li i{
    margin-right: 10px;
    color: var(--primary-color);
}
footer .contact-info-list li a:hover{
    color: white;
}
footer .social__icons{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
footer .social__icons li{
    color: white;
    background-color: #1EAA90;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
}
footer .social__icons li:hover{
    color: var(--primary-color);
    background-color: transparent;
    border: 1.3px solid white;
}
footer .social__icons li:hover a{
    color: var(--primary-color);
}
footer .links{
    display: flex;
    justify-content: center;
    margin-bottom: 0px;
}
footer  h6{
    color:white;
}
footer .links li a{
    margin-right: 10px;
    color: white;
    font-size: 15px;
}
footer .footer-bottom{
    background-color: var(--secoundary-color);
}
footer .footer__copyright{
    text-align: center;
    padding:0px 0px;
    
}
footer .footer__copyright span,
footer .footer__copyright  a{
    font-size: 10px;
    font-weight: 500;
}
footer .footer__copyright a:hover{
    color: var(--primary-color);
    font-weight: 700;
}
.thankyou .card{
    position: relative;
    z-index: -1;
}

.thankyou .card i{
    font-size: 40px;
    color: var(--primary-color);
}
.thankyou .card-body h3{
    font-size: 25px;
    margin-bottom: 20px;
}
.thankyou .card-body p{
    font-size: 15px;
}



@media screen and (max-device-width: 991px){
    .ph_view{
        display: block;
    }
    .desk_view{
        display: none;
    }
    header {
        padding: 0px 0px;
    }
    header .collapse {
        display: block;
        margin: 20px 0px;
    }
    header .nav-item{
        border: 1px solid grey;
    }
    header .collapse button{
        margin: 16px 0px;
        /* position: absolute;
        top: 0px;
        right: 85px; */
    }
    .highlightproduct .border-highlight{
        border-right: 0px dotted grey;
    }
    .highlightproduct .highlightcontent{
        padding: 30px 0px 0px 0px;
        margin-left: 0px;
        padding-right: 0px;
        text-align: center;
    }
    .highlightproduct .ml {
        margin-right: -0.5rem;
    }
    .highlightproduct {
        background-size: cover;
    }
    .highlightproduct .content p{
        text-align: center;
    }

}
@media screen and (max-device-width: 768px){
    section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .main-heading,
    .highlightproduct .highlightcontent h1,
    .product-heading h1 {
        font-size: 20px;
    }
    .contact{
        padding: 50px 0px;
        background-size: cover;
    }
    .contact .contact_details_wrap h3{
        font-size: 20px;
        line-height: 1.5em;
    }
    .content p,
    .about .about-wrap ul li,
    footer .contact-info-list li,
    footer .links li a,
    .products .card .card-title{
        font-size: 13px;
    }
    .about .about-wrap ul li::before {
        top: 4px;
        font-size: 15px;
    }
    .contact_details_wrap{
        text-align: center;
    }
    .contact_details_wrap .content p{
        text-align: center;
    }
    .btn-wrap{
        display: flex;
        justify-content: center;
        margin-top: 30px;
    }
    .contactbtn{
        padding: 8px 20px;
    }
    .form_wrap .form-heading {
        margin-bottom: 30px;
    }
    .form_wrap .form_inner{
        padding: 35px 16px;
    }
    .checkbox-group{
        display: flex;
        gap: 10px;
    }
    .contact_us_btn{
        margin-bottom: 0px;
        padding: 9px 30px;
    }
    .products{
        padding-top: 15px;
    }
    
    footer {
        margin-top: 40px;
    }
    .captcha {
		display: block !important;
	}
	.captcha-form {
		margin-top: 14px;
		    display: block !important;
    width: 100%;
	}
	.captcha-form button{
	    width: 100%;
    margin-top: 10px;
	}
		.captcha-form input {
		width: 100%;
	}
   
}

@media screen and (max-device-width: 576px){
    .products{
        padding-top: 0px;
        padding-bottom: 15px;
    }
    .product-heading {
        margin-bottom: 40px;
    }
 
}