
.hero {
    position: relative;
    padding: 6rem 0;
    width: 100%;
    background-image: url("/images/hero.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover
}

/* Hide .hero section on screens smaller than 768px */
@media (max-width: 768px) {
    .hide-on-mobile {
        display: none;
    }
}

@media screen and (min-width: 992px) {
    .hero .hero-content {
        width: 65%
    }
}

.hero:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5960784314), rgba(0, 0, 0, 0.2549019608), rgba(0, 0, 0, 0))
}

.brand {
    width: 6.5rem;
}

.brand .brand-image {
    width: 100%;
    aspect-ratio: 1 / 1;
}

.brand .brand-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.products-section .product .product-image {
    position: relative;
    height: 200px;
    z-index: 10;
    transform-origin: 0% 100%;
    transition: all .3s ease-in-out
}

.products-section .product .product-image img {
    width: auto;
    height: 100%
}

.products-section .product .product-image:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--src);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -2;
    opacity: 1;
    transform: scale(0.65);
    transition: all .3s ease-in-out
}

.products-section .product .product-image:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--src);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    opacity: 1;
    transform: scale(0.85);
    transition: all .3s ease-in-out
}

.products-section .product:hover .product-image {
    transform: rotate(-5deg)
}

.products-section .product:hover .product-image:before {
    opacity: .6;
    transform: translateX(4.1rem) rotate(20deg) scale(0.65)
}

.products-section .product:hover .product-image:after {
    opacity: .75;
    transform: translateX(2rem) rotate(10deg) scale(0.85)
}

.gallery {
    background-color: #fffdf6
}

.gallery .gallery-card {
    aspect-ratio: 15/10
}

.about .about-image {
    aspect-ratio: 15/10
}

.contact {
    background-color: #1d2f52
}

.brand {
    width: 8.5rem;
}

.brand1 {
    width: 10.5rem;
}

.brand .brand-image {
    width: 100%;
    aspect-ratio: 1 / 1;
}

.brand .brand-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand1 .brand1-image {
    width: 100%;
    aspect-ratio: 1 / 0.7;
}

.brand1 .brand1-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.color-button {
    display: inline-flex;
    align-items: center;
    margin: 5px;
    padding: 5px 8px;
    border-radius: 20px;
    border: 1px solid #ddd;
    cursor: pointer;
}

.color-circle {
    align-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #ddd;
}