@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&family=Onest:wght@100..900&display=swap');

:root {
    --primary-color: #335FAD;
    --secondary-color: #58B032;
    --third-color: #005049;
    --red-color: #ff0000;
    --yellow-color: #FCBF2E;
    --dark-color: #200055;
    --white-color: #FFFFFF;
    --text-color: #4D4D4D;
    --text-color-2: #7B7B7B;
    --my-font: "Cormorant", serif;
    --my-shadow: 0 2px 2px 0px rgba(0, 0, 0, 0.1)
}

*,
html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-size: 100%;
    margin: 0;
    padding: 0;
    font-family: "Onest", sans-serif;
    letter-spacing: 0.25px;
    color: #121212;
}

a {
    text-decoration: none;
    color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul {
    margin-bottom: 0;
}

ul {
    list-style: none;
}

.pointer {
    cursor: pointer;
}

.red-color {
    color: var(--red-color) !important;
}


.section-padding {
    padding: 50px 0;
}

.slick-prev {
    left: 5px;
}

.slick-next {
    right: 5px;
}

.btn1 {
    display: inline-block;
    text-align: center;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 5px;
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid #c3c3c3;
    font-size: 14px;
    transition: all 0.35s ease-in-out;
    cursor: pointer;

    &:hover {
        background: #ffefb7;
    }
}

.btn2 {
    display: inline-block;
    text-align: center;
    font-weight: 500;
    padding: 14px 30px;
    border-radius: 5px;
    background-color: transparent;
    color: var(--secondary-color);
    border: 1px solid #000000;
    font-size: 14px;
    transition: all 0.35s ease-in-out;
    line-height: 1;

    &:hover {
        background: #000000;
        color: var(--white-color);
    }
}


.title {
    font-size: 40px;
    font-weight: 500;
    position: relative;
    color: var(--primary-color);
    margin-bottom: 50px;
    display: inline-block;

    &::after {
        content: '';
        width: 75px;
        height: 2px;
        position: absolute;
        bottom: -12px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--primary-color);
    }
}

.mb-40 {
    margin-bottom: 40px !important;
}

.my-font {
    font-family: var(--my-font);
}

/* ================================ 
Header section 
=================================== */
.navbar {
    padding-top: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e9e9e9;
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    background: #fffbf860;
    backdrop-filter: blur(2px);
}

.navbar-brand img {
    height: 55px;
}

.navbar .nav-link {
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
    position: relative;
    overflow: hidden;
    padding: 8px 0 !important;
    margin: 0 1rem;
    color: #121212;
}

.navbar .nav-link::before {
    content: "";
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 0;
    transition: all 0.25s ease-in-out;
    height: 2px;
    background-color: var(--primary-color);
}

.navbar .nav-link:hover::before {
    width: 100%;
}

.navbar .nav-link:hover {
    color: var(--primary-color);
}

.navbar.scroll-on {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #fff;
    transition: all ease-in-out 0.2s;
    box-shadow: 0 -2px 20px 5px #0000000f;
    animation: fadeInDown 0.5s ease-in-out;
    border: none;
}

@keyframes fadeInDown {
    0% {
        top: -30%;
    }

    50% {
        top: -15%;
    }

    100% {
        top: 0;
    }
}


/* ================================ 
Banner Section 
=================================== */
.banner-slider {
    .slick-prev {
        left: 45px;
    }

    .slick-next {
        right: 45px;
    }
}

.banner img {
    width: 100%;
    object-fit: cover;
    object-position: center;

}


/* ================================ 
Category Section 
=================================== */
.category {
    .inner-contain {
        position: relative;
        transition: all 0.25s ease-in-out;
        overflow: hidden;
        display: block;

        &:hover {
            .cat-img {
                transform: scale(1.05);
                filter: brightness(0.7);
            }
        }

        .cat-img {
            filter: brightness(0.7);
            width: 100%;
            aspect-ratio: 3/4;
            object-fit: cover;
            transition: all 0.25s ease-in-out;
        }

        span {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: var(--white-color);
            font-size: 30px;
            font-family: var(--my-font);
            font-weight: 900;
        }
    }
}







/* ================================ 
Product Section 
=================================== */
.product-list {
    background-color: #F5EEDE;

    .image-contain {
        position: relative;
        overflow: hidden;
        border-radius: 10px;
        transition: all 0.35s ease-in-out;
        border: 1px solid #c3c3c3;

        &:hover .add-to-cart {
            bottom: 30px;
        }
    }

    .product-short-dets {
        padding: 0 16px;
        margin-top: 14px;

        h3 {
            font-size: 20px;
            line-height: 26px;
            text-overflow: ellipsis;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            color: #191919;
            font-weight: 400;
            margin-bottom: 12px;
            text-align: center;
        }
    }
}



/* ================================ 
About Section 
=================================== */
.about {
    h1 {
        font-size: 24px;
        margin-bottom: 18px;
        line-height: 34px;
    }
}


/* ================================ 
Testimonials Section 
=================================== */
.testimonials {
    background-color: #F5EEDE;

    .inner-contain {
        padding: 24px;
        box-shadow: 4px 4px 0 0 #d8320071;
        border: 1px solid #c3c3c3;
        transition: all 0.35s ease-in-out;
        background-color: var(--white-color);
        border-radius: 10px;

        p {
            text-overflow: ellipsis;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 6;
            -webkit-box-orient: vertical;
            min-height: 150px;
            margin-bottom: 0;
        }

        h5 {
            font-size: 18px;
            margin-bottom: 4px;
        }

        span {
            font-size: 14px;
            color: #4b4b4b;
        }
    }

    .test-slider {
        .slick-prev {
            left: -45px;
            background: var(--primary-color);
            color: var(--white-color);
            border-color: var(--primary-color);
        }

        .slick-next {
            right: -45px;
            background: var(--primary-color);
            color: var(--white-color);
            border-color: var(--primary-color);
        }
    }

}


/* ============================== */
/* Footer Panel */
/* =============================== */
footer {
    padding-top: 3rem;
    background-color: #000e22;
    color: #eeeeee;
    position: relative;
    padding-bottom: 1rem;
}

footer ul li {
    margin-bottom: 10px;
}

footer h2 {
    font-size: 24px;
    line-height: 38px;
    margin-bottom: 10px;
}

.top-border {
    border-top: 1px solid #454D59;
}

.contact {
    background: #F3F1FF;
}

.contact .contact-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.contact .inner-contain {
    padding: 30px;
    border: 1px solid #cacaca;
    border-radius: 10px;
    background: white;
}

.contact .inner-contain label {
    font-size: 14px;
    margin-bottom: 8px;
}

.contact .inner-contain .form-control,
.contact .inner-contain .form-select {
    font-size: 14px;
    min-height: 40px;
    padding-left: 1rem;
    border: 1px solid #121212;
}

.contact .inner-contain .form-control:hover,
.contact .inner-contain .form-control:focus,
.contact .inner-contain .form-select:hover,
.contact .inner-contain .form-select:focus {
    border: 1px solid var(--secondary-color);
}


/* ============================== */
/* Modal Panel */
/* =============================== */
.getquoteModal .my-btn-close {
    position: absolute;
    top: -12px;
    right: -12px;
    border-radius: 50%;
    padding: 10px;
    background-color: var(--red-color);
    color: var(--white-color);
    width: 30px;
    height: 30px;
    border-radius: 5px;
    z-index: 88;
    border: none;
    outline: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}


.terms h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.terms p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.terms ul {
    list-style: disc;
}


.inner-banner {
    width: 100%;
    background-color: #1f1a5f;
    align-content: center;
    height: 200px;
}

.inner-banner h1,
.inner-banner h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white-color);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--white-color);
}