@import "home/header.css";
@import "home/collections.css";
@import "home/process-sec.css";
@import "home/shop-product-sec.css";
@import "product.css";


.navbar {
    margin-bottom: 0px !important;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
}

footer {
    margin-top: 0px !important;
}

section {
    margin-block: 3rem;
    display: flex;
    flex-direction: column;
}


section .sec-heading {
    text-align: center;
    margin: auto;
    font-weight: bolder;
    font-size: 35px;
    color: black;
}

section .sec-description {
    font-size: 15px;
    text-align: center;
    letter-spacing: 1.3px;
    color: #777;
    margin-block: 1rem;
}

section .sec-body {
    margin-top: 2rem;
}


section.catalog .items .item {
    margin-bottom: 2rem;
}

section.catalog .items .item .item-wraper {
    width: 100%;
    height: 100%;
    position: relative;
}

section.catalog .items .item img {
    width: 100%;
    height: 100%;
}

section.catalog .items .item .link {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 0px;
    left: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.3s;
}

section.catalog .items .item .link a {
    text-decoration: none;
    color: #fff;
    font-size: 25px;
}

section.catalog .items .item:hover .link {
    opacity: 1;
}

section.products .product-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    padding: 15px;
    background: white;
    box-shadow: 0px 0px 10px 0px #dddddd85;
    border-radius: 7px;
    margin-bottom: 2rem;
    cursor: pointer;
}

section.products .product-card a {
    text-decoration: none;
}


@media screen and (max-width: 992px) {
    .owl-carousel .item .info-card .left-item {
        max-width: 60%;
    }
}


@media screen and (max-width:650px) {
    .owl-carousel .item .info-card .left-item {
        max-width: 80%;
    }

    .owl-carousel .item .info-card .left-item {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .owl-carousel .item .info-card .left-item .heading {
        text-align: center;
    }

    .owl-carousel .item .info-card {
        padding-inline: 3rem;
    }

    .owl-carousel .item .info-card .description {
        font-size: 13px;
        margin-block: .5rem;
    }
}

@media screen and (max-width:574px) {
    .owl-carousel .item .info-card .left-item {
        max-width: 100%;
    }
}