* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;

}

:root {
    --light: #59555524;
    --white: #ffffff;
    --black: #0000001b;
    --green: #169913;
    --darklight: #807b7baf;
    --btn: #c6ab91;
    --foot: #353535;
}

html {
    scroll-behavior: smooth !important;
}

body {
    background-color: var(--light) !important;
}

/*Header*/
header {
    background-color: var(--white);
    height: 40px;
    position: sticky;
    top: 0px;
    z-index: 1;
}

/*Logo*/
.logo {
    width: 130px;
    height: 70px;
}

/*Navbar*/

nav {
    background-color: var(--white);
    width: 80%;
    margin: auto;
    border-radius: 0px 0px 15px 15px;
    box-shadow: 0px 10px 5px var(--black);

}

nav ul li a:hover {
    color: red !important;
    background-color: var(--light);
    border-radius: 5px;
}

/*Slider*/
.carousel img {
    height: 75vh !important;
}

.carousel-caption {
    top: 45%;
}

@media (max-width:600px) {
    .carousel-caption {
        top: 30%;
    }
}

.carousel-caption h5 {
    color: rgb(255 255 255);
    font-family: 'Franklin Gothic Medium',
        'Arial Narrow',
        Arial,
        sans-serif;
    font-weight: lighter !important;
}

.carousel-caption p {
    color: #ffffffa6;
}

/*products*/
.product {
    position: relative;
    padding-bottom: 20px;
    overflow: hidden;
}

.product img {
    width: 100% !important;
    height: 100% !important;
    transition: 1s;
    padding: 10px;

}

.product img:hover {
    transform: scale(1.05);
}

.txt {
    color: var(--green);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
}

.product_txt {
    color: var(--darklight);
    font-weight: 600;
    padding-top: 5px;
}




.bg-img {
    width: 100%;
    height: 30vh;
    background-image: url('/Images/dreamstime_xxlfd.jpg');
    background-size: cover;
    background-position: center;
}

/*Footer*/


.foot {
    background-color: var(--foot);
    margin: auto !important;
}

.social i {
    font-size: 20px;
    padding: 8px;
}

.rights {
    background-color: var(--black) !important;
    color: var(--white);
    padding-top: 20px !important;
}

/*GALLRY*/
.containers {
    width: 70%;
    margin: auto;
}

.gallry {
    border: 1px solid;
}

.gallry img {
    width: 100%;
    height: 100%;
    padding: 10px 20px;
}

/*Contact Us*/
.bg-img_contact {
    width: 100%;
    height: 30vh;
    background-image: url('/Images/dreamstime_xrt.jpg');
    background-size: cover;
    background-position: center;
}

/*Social*/
.social_us {
    text-align: center;

}

.social_us a i {
    font-size: 40px;
    padding: 0 10px;
    margin-top: 20px;
    border-radius: 50%;
    color: var(--foot);
}

/*About us*/
.bg-img_about {
    width: 100%;
    height: 30vh;
    background-image: url('/Images/dreamstime_xxlfd.jpg');
    background-size: cover;
    background-position: center;
}

.card.hide {
    display: none;
}

.about {
    color: var(--green);
    margin-bottom: 15px;
}

/*Product Details*/
.Product-txt {
    margin: 30px 0 20px 0px;
    font-family: Arial, Helvetica, sans-serif;
}

.btn {
    background-color: var(--btn) !important;
}

.bg {
    color: #169913;
}



/*Acive button*/
/* .btn.active {
    background-color: #85cb84 !important;
    color: #251b1b !important;
} */

/* :hover.btn {
    background-color: var(--white) !important;
    color: var(--btn) !important;
    border-color: 5px var(--btn) !important;
} */