*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --primary-color: #FAAF40;
    --secondary-color:#FA7572;
}

@font-face {
    font-family: heading-font;
    src: url("../font/heading/Georgia\ Regular\ font.ttf");
}
@font-face {
    font-family: body-font;
    src: url("../font/montserrat/Montserrat-Regular.ttf");
}

html, body{
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

/* common css */
h1, h2, h3, h4, h5, h6{
    font-family: heading-font;
}

li, a, .btn, span, label, .form-control {
    font-family: body-font;
}
section{ 
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
    width: 100%;
}
.common_heading h1{
    font-size: 42px;
    margin-bottom: 60px;
    text-transform: uppercase;
    color:#000;
    position: relative; 
}
.common_heading h1:after{
    content: "";
    position: absolute;
    width: 25%;
    height: 2px;
    background-color: #000;
    bottom: -7px;
    left: 50%;
    right: 50%;
    transform: translate(-50%, -50%);
}
.heading_left h1:after{
    content: "";
    position: absolute;
    left: 0 !important;
    right: 0 !important;
    transform: translate(-0%, -0%) !important;
}
.banner_heading{
    font-size: 52px;
    text-transform: capitalize;
    margin: 10px 0px 30px 0px;
    color: #000;
    text-align: center;
    line-height: 130%;
}
.content{ 
        font-size: 20px;
        margin-bottom: 30px;
        color: #000;
        line-height: 170%;
 }
.product_btn{
    background-color: var(--primary-color);
    font-size: 16px;
    padding: 7px 40px;
    border-radius: 50px;
    color: #000;
    border: 2px solid var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: capitalize;
    box-shadow: 2px 2px 4px #b4b2b2;
}
.product_btn:hover{
    background-color: #faaf4000;
    border: 2px solid var(--primary-color);
    color: #000;
    box-shadow: 2px 1px 8px 0px #fddfad;
}
.view_more_btn{
    background-color: #faaf4000;
    font-size: 18px;
    padding: 10px 60px;
    border-radius: 50px;
    color: #000;
    border: 2px solid var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: capitalize;
    box-shadow: 2px 1px 8px 0px #fddfad;
}
.view_more_btn:hover{
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: #000;
    box-shadow: 2px 2px 4px #b4b2b2;
}
.btn_outer{
    padding-top: 70px;
    padding-bottom: 20px;
    text-align: center;
}

/* header */
.navbar{
    padding: 0px 30px;
    box-shadow: 1px -4px 10px 0px grey;
}
.navbar-brand{
    float: right;
    margin-right: 30px;
}
.navbar-brand img{
    width: 130px;
}
.nav-link{
    font-size: 18px;
    font-family: body-font;
    color:#000;
    text-transform: capitalize;
}
.nav-item{
    margin: 0px 7px;
    padding-left: 30px;
}
.navbar-nav .nav-link.active, .navbar-nav .show>.nav-link {
    color: #000;
    font-weight: 600;
}
  
/* header end */

/* main section */
.categoryDiv{
    width: 11%;
    cursor: pointer;
}
.category{
    margin-bottom: 20px;
}
.category img{
    width: 90%;
}
.category .category_caption{
    font-size: 16px;
    text-transform: capitalize;    
}
.category_section, .banner-section{
    background-color: #fcfcfc;
}
.category_border{
    padding: 1% 0%;
    border-top: 3px solid;
    margin: 0% 5%;
}
.banner-inner{
    padding:0% 5%;
}
.about_logo{
    margin-bottom: 30px;
}
.about_logo img{
    width: 170px;
}

 
.banner_inner_section{
    position: absolute;
    width: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
  
 
.product{
    box-shadow: 0px 0px 8px 0px #c7c7c7;
    background-color: #fff;
    padding: 30px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 7px 7px 30px 7px;
    border-radius: 10px;
}
.product_img{
    width: 80%;
}
.product_caption{
    text-align: center;
    padding: 20px 0px;
}
.product_caption h3{
    font-size: 25px;
    color: #000;
    text-transform: capitalize;
    font-family: body-font !important;
}
.swiper-button-next, .swiper-button-prev {
    background-color: var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    box-shadow: 1px 1px 4px 0px grey;
}
.swiper-button-next:after, .swiper-button-prev:after { 
    font-size: 22px;
    font-weight: 600;
    color: #000;
}
.product_feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 0px;
}
.product_feature img{
    width: 80%;
}
.feature_caption p{
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin: 20px 0px 10px 0px;
    text-transform: capitalize;

}
 
.contact_section{
    background-color: var(--primary-color);
}
.address_div{
    background-color: #fff;
    padding: 30px 20px;
}
.addr_inner{
    margin-bottom: 30px;
}
/* form */
.contact_form{
    padding-top: 30px;
}
.contact_form .form-control {
    background-color: #ffffff05;
    border-bottom: 2px solid #000;
    border-left: 0;
    border-top: 0;
    border-right: 0;
    border-radius: 0;
    padding: 0px;
    font-size: 16px;
}
label{
    font-size: 18px;
    font-weight: 600;
}
.form-control:focus { 
    box-shadow: none !important;
}
 
.submit_btn{
    background-color: #fff;
    font-size: 20px;
    padding: 12px 80px;
    border-radius: 50px;
    color: #000;
    border: 2px solid #fff;
    margin-top: 30px;
    font-weight: 600;
    text-transform: capitalize;
    box-shadow: 2px 2px 2px #ac740f;
}
.submit_btn:hover{
    background-color: #faaf4000;
    border: 2px solid #000;
    color: #000;
    box-shadow: 2px 1px 3px 0px #bf821c;
}

.error-message{
    color: red;
    margin-bottom: 10px;
    text-transform: capitalize;
}
.captcha {
    /* margin-bottom: 15px; */
    display: flex;
    margin-top: 20px;
    gap: 10px;
}



.captcha .preview {
    color: #000;
    width: 100%;
    text-align: center;
    height: 40px;
    line-height: 40px;
    letter-spacing: 8px;
    border: 1px dashed #000;
    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: #fff;
    color: #000;
    padding: 8px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}
/* .captcha label {
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
    display: block;
} */
footer{
    background-color: #000;
}
.footer__copyright{
    padding: 15px 0px;
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-family: body-font;
} 
.social_icon{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    list-style: none;
    padding: 0;
}
.social_icon li{
    background-color: #000;
    width: 37px;
    height: 37px;
    border-radius: 50px;
    position: relative;
    margin-right: 10px;
} 
.social_icon a{
   
    color: #fff;
    width: 35px;
    height: 35px;
}
 
.social_icon i{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    color: #fff;
}
/* product page */
.product_page{
    background-color: rgb(250 250 250 / 63%);
}


/* RESPONSIVE */

@media screen and (max-device-width: 991px) {
    .about p {
        font-size: 16px;
        text-align: justify;
    }
    .navbar-collapse{
        padding: 20px 0px;
        background-color: whitesmoke;
    }

}
@media screen and (min-device-width: 992px) {


}
@media screen and (max-device-width: 767px) {
    .pd_right{
        padding-right: 0px;
        padding-bottom: 40px;
    }
 
    .categoryDiv {
        width: 28%;
    }
    .captcha {
        display: block !important;
    }
    .captcha-form {
        margin-top: 14px;
       
        width: 100%;
    }
}

@media screen and (min-device-width: 768px) {

    .pd_right{
        padding-right: 50px;
    }
 

}
@media (max-width: 991px) and (min-width: 768px) {
    .categoryDiv {
        width: 16%;
    }

 
}
@media (max-width: 991px) and (min-width: 571px) { 
    section {
        padding-top: 30px;
        padding-bottom: 30px;
    }    
    .product_caption h3 {
        font-size: 18px;
        font-family: body-font;
        font-weight: 500;
    }
    .banner_heading {
        font-size: 36px;
    }
    .common_heading h1 {
        font-size: 36px;
        margin-bottom: 40px;
    }
    .product_btn {
        background-color: var(--primary-color);
        font-size: 16px;
        padding: 3px 20px;
    }
}
 
@media screen and (max-device-width: 570px) {
    .navbar {
        padding: 0;
    }
    section{
        padding-top: 10px;
        padding-bottom: 30px;
    }
    .view_more_btn {
        background-color: #faaf4000;
        font-size: 16px;
        padding: 7px 40px;
    }
    .product_btn { 
        font-size: 14px;
        padding: 1px 12px;
        font-weight: 500;
        margin-bottom: 10px;
    }
    .btn_outer {
        padding-top: 40px;
        padding-bottom: 0px;
    }
    .category .category_caption{
        font-size: 14px;
    }
    .common_heading h1 {
        font-size: 25px;
        margin-bottom: 35px;
        margin-top: 20px;
        text-align: center;
        line-height: 140%;
    }
    .heading_left h1:after {
        content: "";
        position: absolute;
        left: 50% !important;
        right: 50% !important;
        transform: translate(-50%, -50%) !important;
    }
    .product_caption h3 {
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 0;
        line-height: 150%;
        font-family: body-font;
    }
    .product { 
        padding: 20px 5px;
    }

    .product_caption {
        text-align: center;
        padding: 10px 0px;
    }
    .product_img {
        width: 60%;
    }
    .banner_content p { 
        font-size: 14px;
    }
    .feature_caption p { 
        font-size: 14px;
        font-weight: 500; 
        margin: 5px 0px 30px 0px;
    }
    .submit_btn { 
        font-size: 16px;
        padding: 8px 50px; 
    }
    label {
        font-size: 16px;
    }
    .contact_section {
        padding-top: 30px;  
    }
    .product_feature img {
        width: 50%;
    }
    .swiper-button-next, .swiper-button-prev {
        background-color: #fac576;
        border-radius: 50%;
        width: 20px;
        height: 20px;
    }
    .swiper-button-next:after, .swiper-button-prev:after {
        font-size: 10px;
    }
    .banner_heading {
        font-size: 22px;
    } 
}
@media screen and (min-device-width: 1920px) {
   .container_xl{
    width: 1400px !important;
   }  
    .nav-link {
        font-size: 22px;
    }
    .navbar-brand { 
        margin-right: 70px;
    }
    .navbar-brand img {
        width: 200px;
        padding: 10px;
    }
    .about_logo img {
        width: 270px;
    }
    .common_heading h1 {
        font-size: 52px;
        margin-bottom: 80px;
        margin-top: 20px;
    }
    .product_caption h3 {
        font-size: 30px;  
    }
    .product_btn { 
        font-size: 20px;
        padding: 10px 60px;
    }
    .view_more_btn { 
        font-size: 22px;
        padding: 15px 100px;
    } 
    .banner_content p { 
        font-size: 22px;
    }
    .content{
        font-size: 22px !important;
    }
    .category .category_caption {
        font-size: 22px;
    }
    .search input{
        width: 280px;
    }
    .categoryDiv {
        width: 13%;
    }

}
