/* Header */
header {
    background-color: transparent;
    box-shadow: none;
}

header.active {
    background-color: #f4f3ee;
    box-shadow: 0 0 15px -3px var(--default-color);
}

header.active .logo-div img {
    max-height: 110px;
}

@media screen and (max-width: 991px) {
    header {
        background-color: #f4f3ee;
        box-shadow: 0 0 15px -3px var(--default-color);
    }    

    header .logo-div img {
        max-height: 110px;
    }
}

.home-banner {
    height: 100vh;
    max-height: 840px;
}

.home-banner .up-side {
    position: absolute;
    bottom: 0;
    left: -1px;
    right: -1px;
}

.home-banner .container {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.home-banner h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 900;
    background: linear-gradient(white 60%, transparent 85%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home-banner p {
    max-width: 768px;
}

.home-banner button {
    margin-bottom: 2rem;
}

@media screen and (min-width: 768px) {
    .home-banner h1 {
        font-size: 5rem;
    }
}

@media screen and (min-width: 1200px) {
    .home-banner h1 {
        font-size: 6.5rem;
    }

    .home-banner button {
        margin-bottom: 2.5rem;
    }
}

@media screen and (min-width: 1440px) {
    .home-banner h1 {
        font-size: 8rem;
    }

    .home-banner button {
        margin-bottom: 3rem;
    }
}

@media screen and (max-width: 470px) {
    .home-banner h1 {
        background: linear-gradient(white 70%, transparent 95%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}



.abt-desc h5 {
    line-height: 1.5;
}

@media screen and (max-width: 575px) {
    .abt-desc h2.title {
        font-size: 2rem;
    }

    .abt-desc h5 {
        font-size: 1rem;
    }
}

.why-choose-us .container {
    padding-top: 1.5rem;
    padding-bottom: 3.5rem;
}

.wcu-card .image {
    max-width: 180px;
}

.wcu-card svg path {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.wcu-card:hover .image svg circle,
.wcu-card.active .image svg circle,
.wcu-card:hover .image svg path:not(.no-fill),
.wcu-card.active .image svg path:not(.no-fill) {
    fill: var(--primary-color);
}

.wcu-card.active p,
.wcu-card:hover p {
    color: var(--primary-color);
}

.wcu-card .wcu-title {
    font-size: 1.125rem;
}

@media screen and (min-width: 1440px) {
    .wcu-card .wcu-title {
        font-size: 1.25rem;
    }
}

@media screen and (min-width: 1680px) {
    .wcu-card .wcu-title {
        font-size: 1.3rem;
    }
}

.work-with-us .container {
    z-index: 5;
    top: -10rem;
    margin-bottom: -9rem;
}

.work-with-us .container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000d4;
}

.work-with-us .container h5 {
    line-height: 1.6;
    letter-spacing: 0.03rem;
}

@media screen and (min-width: 1440px) {

}

.owl-carousel .item {
    padding: 0.5rem;
}

.prd-card {
    position: relative;
    padding: 0.75rem;
    padding-bottom: 2.25rem;
    background-color: white;
    border: 1px solid var(--card-border);
    height: 100%;
}

.prd-card:hover {
    box-shadow: 0 0 20px -3px #24242440;
}

.prd-img {
    border: 1px solid var(--card-border);
}

.prd-img img {
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    object-position: center;
    -o-object-position: center;
}

.prd-title {
    font-size: 1.125rem;
    text-transform: uppercase;
}

.prd-desc {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
}

.prd-card a {
    position: absolute;
    bottom: 1rem;
    left: 0;
    width: 100%;
}

@media screen and (min-width: 768px) {
    .prd-img {
        height: 130px;
    }
}

@media screen and (min-width: 992px) {
    .prd-img {
        height: 170px;
    }
}

@media screen and (min-width: 1200px) {
    .prd-img {
        height: 150px;
    }
}

@media screen and (min-width: 1440px) {
    .prd-img {
        height: 175px;
    }

    .prd-title {
        font-size: 1.25rem;
    }
}

@media screen and (min-width: 1680px) {
    .prd-img {
        height: 195px;
    }

    .prd-title {
        font-size: 1.3rem;
    }
}

@media screen and (min-width: 1920px) {
    .prd-img {
        height: 220px;
    }
}

@media screen and (max-width: 992px) {

    .product-list .col-xl-3 {
        padding: 0.35rem;
    }
}

@media screen and (min-width: 576px) and (max-width: 768px) {

    .prd-img {
        height: 145px;
    }
}