/* logo's colors 
        orange EF9614 
        green 3B680C */
@import url('https://fonts.googleapis.com/css2?family=Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap');

/*---------------------------------------
        TYPOGRAPHY              
        -----------------------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Spartan', sans-serif;
}

html {
    font-family: "Poppins", sans-serif;
    overscroll-behavior: contain;
}

h1 {
    font-size: 50px;
    line-height: 64px;
    color: #222;
}

h2 {
    font-size: 46px;
    line-height: 54px;
    color: #222;
}

h4 {
    font-size: 20px;
    color: #222;
}

h5 {
    font-size: 13px;
}

h6 {
    font-weight: 700;
    font-size: 10px;
}

p {
    font-size: 16px;
    color: #465b52;
    margin: 15px 0 20px 0
}

hr {
    width: 30px;
    height: 2px;
    background-color: #fb774b;
}

/*---------------------------------------
        HEADER              
        -----------------------------------------*/
#header {
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 70px;
    /* background: #E3E6F3; */
    background-color: #222222;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    z-index: 999;
    position: sticky;
    top: 0;
    left: 0;
}

.header-logo {
    width: 70%;
}

#header-navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0rem;
}

#header-navbar li {
    list-style: none;
    padding: 0 20px;
    position: relative;
}

#header-navbar li a {
    text-decoration: none;
    font-size: .8rem;
    font-weight: 400;
    color: white;
    transition: 0.3s ease;
}

#header-navbar li a:hover,
#header-navbar li a.active {
    color: #EF9614;
}

#header-navbar li a.active::after,
#header-navbar li a:hover::after {
    content: "";
    width: 30%;
    height: 2px;
    background: #EF9614;
    position: absolute;
    bottom: -4px;
    left: 20px;

}

#header-mobile {
    display: none;
    align-items: center;
}

#header-navbar-close {
    display: none;
}

@media (max-width:799px) {
    #header-navbar {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        position: fixed;
        top: 0;
        right: -300px;
        height: 100vh;
        width: 300px;
        background-color: #222222;
        box-shadow: 0 40px 60px rgba(0, 0, 0, 0.1);
        padding: 80px 0 0 10px;
        transition: 0.3s ease;
    }

    #header-navbar.active {
        right: 0px;
    }

    #header-navbar li {
        margin-bottom: 25px;
    }

    #header-mobile {
        display: flex;
        align-items: center;
    }

    #header-mobile i {
        color: white;
        font-size: 20px;
        padding-left: 20px;
    }

    #header-mobile i:hover {
        cursor: pointer;
    }

    #header-navbar-close {
        display: initial;
        position: absolute;
        top: 30px;
        left: 30px;
        color: white;
        font-size: 18px;
    }
}

/*---------------------------------------
        FOOTER              
        -----------------------------------------*/
footer {
    background-color: #222222;
}

footer h6 {
    color: #D8D8D8;
    /* font-weight: 700;
            font-size: 1.2rem; */
}

footer h5 {
    color: #D8D8D8;
    /* font-weight: 700;
            font-size: 1.2rem; */
}

footer h4 {
    color: #D8D8D8;
    font-weight: 700;
    font-size: 1.2rem;
}

footer li {
    padding-bottom: 4px;
}

footer li a {
    font-size: 0.7rem;
    color: #999;
}

footer li a:hover {
    color: #fb774b;
}

footer p {
    color: #999;
    font-size: 0.7rem;
}

footer .copyright a {
    color: black;
    width: 38px;
    height: 38px;
    background-color: #fff;
    display: inline-block;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
    transition: 0.3s ease;
    margin: 0 5px;
}

footer .copyright a:hover {
    color: #fff;
    background-color: #fb774b;
}




/*---------------------------------------
        CONTACT US FORM              
        -----------------------------------------*/

#form-group-message {
    border: none;
    border-bottom: 1px solid #dddd;
    font-size: 11px;
    height: 75px;

}



.form-popup {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1099;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
}

.form-popup .box {
    background-color: #fff;
    width: 750px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-wrap: wrap;
}

.form-popup .box .img-area {
    flex: 0 0 50%;
    max-width: 50;
    overflow: hidden;
    /* padding: 30px; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-popup .box .img-area .img {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/contact/top-view-colorful-thread.jpg');
    background-size: cover;
    background-position: center;
    /* animation: zoomInOut 7s linear infinite; */
}

.form-popup .box .form {
    flex: 0 0 50%;
    max-width: 50%;

    padding: 40px 30px;
}

.form-popup .box .form h4 {
    color: #000;
    font-size: 15px;
    margin: 0 0 30px
}

.form-popup .box .form .form-control {
    height: 45px;
    margin-bottom: 30px;
    width: 100%;
    border: none;
    border-bottom: 1px solid #dddd;
    font-size: 12px;
    color: #000;
}

.form-popup .box .form .form-control:focus {
    outline: none;
}

.form-popup .box .form label {
    font-size: 15px;
    color: #555;
}

.form-popup .box .form .btn {
    width: 100%;
    background-color: #000;
    margin-top: 40px;
    height: 45px;
    border: none;
    /* border-radius: 25px; */
    font-size: 12px;
    text-transform: uppercase;
    color: #D8D8D8;
    cursor: pointer;
}

.form-popup .box .form .btn:focus {
    outline: none;
}

.form-popup .box .form .close {
    position: absolute;
    right: 10px;
    top: 0px;
    font-size: 30px;
    cursor: pointer;
}

/*responsive*/
@media(max-width: 767px) {
    .form-popup .box {
        width: calc(100% - 30px);
    }

    .form-popup .box .img-area {
        display: none;
    }

    .form-popup .box .form {
        flex: 0 0 100%;
        max-width: 100%;
    }
}


@media screen and (max-width:960px) {
    .col {
        flex: 100%;
        max-width: 80%;
    }
}

@media screen and (max-width:600px) {
    .col {
        flex: 100%;
        max-width: 100%;
    }
}

/*---------------------------------------
        HOME          
        -----------------------------------------*/

#home {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    position: relative;
}

#home .container {
    width: 100%;
}

.home-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100vh;
}

.countdown {
    text-align: center;
    margin: 50px 0;
    padding: 0;
}

.countdown li {
    color: black;
    list-style: none;
    display: inline-block;
    margin: 0 20px;
}

.countdown span {
    font-size: 25px;
}

.countdown h3 {
    font-size: 14px;
    text-transform: uppercase;
    margin: 10px 0;
}


/*---------------------------------------
        SINGLE PRODUCT SECTION          
        -----------------------------------------*/
.single-product-small-img-group {
    display: flex;
    justify-content: space-between;
}

.single-product-small-img-col {
    flex-basis: 19%;
    cursor: pointer;

}

.sproduct select {
    display: block;
    padding: 5px 10px;

}

.sproduct input {
    width: 50px;
    height: 40px;
    padding-left: 16px;
    font-size: 16px;
    margin-right: 10px;
}

.sproduct input:focus {
    outline: none;
}

#single-product-small-product-img:hover {
    transform: scale(1.1);
}

.container .single-product-popup-image {
    position: fixed;
    background: rgba(0, 0, 0, .9);
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, .9);
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    display: none;
}

.container .single-product-popup-image img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 5px solid #fff;
    border-radius: 5px;
    width: 750px;
    object-fit: cover;
}

.container .single-product-popup-image .btn {
    position: absolute;
    top: 84%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    background-color: #050505;
    color: white;
    font-size: 16px;
    padding: 4px 13px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.container .single-product-popup-image .btn:hover {
    color: #fff;
    background-color: #fb774b;
}

.container .single-product-popup-image .btn-next {
    position: absolute;
    top: 84%;
    left: 53%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    background-color: #555;
    color: white;
    font-size: 16px;
    padding: 4px 13px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.container .single-product-popup-image .btn-previous {
    position: absolute;
    top: 84%;
    left: 47%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    background-color: #555;
    color: white;
    font-size: 16px;
    padding: 4px 13px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

@media (max-width:768px) {
    .container .single-product-popup-image img {
        width: 95%;
    }
}

.single-product-margin {
    margin-bottom: 3px;
}

#single-product-strikeoff-price {
    font-size: 12px;
}

.single-product-div {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.fa-phone {
    font-size: x-large;
    padding: 10px 12px;
}

.single-product-whatsapp {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 75%;
    border: 0;
    background: #000;
    height: 50px;
    color: #fff;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 600;
    outline: none;
    cursor: pointer;
    width: 100%;
    height: 48px;
    outline: none;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    font-size: 12px;
    font-weight: 600;
    line-height: 24px;
    -webkit-letter-spacing: 0;
    -moz-letter-spacing: 0;
    -ms-letter-spacing: 0;
    letter-spacing: 0;
}

.single-product-whatsapp:hover {
    background-color: #fb774b;
    transition: 0.3s ease;
}


.fa-brands {
    font-size: x-large;
    padding: 10px 12px;
}

#single-product p {
    font-size: .9rem;
}


/*---------------------------------------
        RELATED PRODUCTS SECTION          
        -----------------------------------------*/

.product img {
    transition: 0.3s all;
}

.product {
    cursor: pointer;
    margin-bottom: 2rem;
}

.product:hover img {
    opacity: 0.7;
}

.buy-btn {
    background-color: #fb774b;
    opacity: 1;
    transition: 0.3s all;
    font-size: .8rem;
    font-weight: 700px;
    padding: 15px 30px;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    outline: none;
    text-transform: uppercase;
}

.product .buy-btn {
    background-color: #fb774b;
    transform: translateY(20px);
    opacity: 0;
    transition: 0.3s;
}

.product:hover .buy-btn {
    transform: translateY(0);
    opacity: 1;
}

.star {
    padding: 10px 0px;
}

.star i {
    font-size: 0.8rem;
    color: goldenrod;
}

.p-price {
    font-size: 1rem;
}


/*---------------------------------------
        TESTIMONIALS         
        -----------------------------------------*/
.testimonials {
    padding: 40px 0;
    /* background: #f1f1f1; */
    color: #434343;
    text-align: center;
}

.inner {
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}

.border {
    width: 110px;
    height: 2px;
    background: #6ab04c;
    margin: 20px auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.col {
    flex: 50%;
    max-width: 50%;
    box-sizing: border-box;
    padding: 15px;

}

.testimonial {
    /* background: #fff; */
    background: #faf9f9;
    padding: 30px;
}

.testimonial img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.name {
    font-size: 14px;
    text-transform: uppercase;
    margin: 20px 0;
}

.stars {
    color: #6ab04c;
    margin-bottom: 20px;

}

/*---------------------------------------
HERO SECTION            
-----------------------------------------*/
#hero {
    /* background-image: url('../img/hero.jpg'); */
    height: 90vh;
    width: 100%;
    background-size: cover;
    background-position: top 25% right 0;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

#hero h4 {
    padding-bottom: 15px;
}

#hero h1 {
    color: #088178;
}

/* 
#hero button{
    background-image: url("img/button.png");
    background-color: transparent;
    color: #088178;
    border: 0;
    padding: 14px 80px 14px 65px;
    background-repeat: no-repeat;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
} */

#hero button:hover {
    background-color: #fb774b;
    color: #fff;
}


/* FOR PRODUCT FILTER SCREEN  */
.filterDiv {
    /* float: left;
    /* background-color: #2196F3;
    color: #ffffff; 
    width: 100px;
    line-height: 100px;
    text-align: center;
    margin: 2px; */
    display: none;
    /* Hidden by default */
}

/* The "show" class is added to the filtered elements */
.show {
    display: block;
}

/* Style the buttons */
.btn {
    border: none;
    outline: none;
    padding: 12px 16px;
    background-color: #f1f1f1;
    cursor: pointer;
}

/* Add a light grey background on mouse-over */
.btn:hover {
    background-color: #ddd;
}

/* Add a dark background to the active button */
.btn.active {
    background-color: #fb774b;
    color: black;
}


/*---------------------------------------
        RESPONSIVE STYLES              
        -----------------------------------------*/

@media screen and (max-width: 480px) {

    .home-info {
        padding: 0 1em 0 1em;
    }

    .countdown li {
        margin: 0 12px;
    }

    address {
        margin-top: 50px;
    }
}

@media screen and (max-width: 360px) {

    h1 {
        font-size: 1.50em;
    }

    .menu-items {
        margin: 100px 0;
    }

    .countdown span {
        font-size: 20px;
    }

    .countdown h3 {
        font-size: 12px;
    }
}

/* FOR GDRIVE LINK  */
video {
    display: none;
}

[style*="--aspect-ratio"]> :first-child {
    width: 100%;
}

[style*="--aspect-ratio"]>img {
    height: auto;
}

@supports (--custom:property) {
    [style*="--aspect-ratio"] {
        position: relative;
    }

    [style*="--aspect-ratio"]::before {
        content: "";
        display: block;
        padding-bottom: calc(100% / (var(--aspect-ratio)));
    }

    [style*="--aspect-ratio"]> :first-child {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
    }
}