﻿/*Markalar*/

.brands-area {
    display: grid;
    grid-template-columns: repeat(8,1fr);
    border-top: 1px solid #1818211F;
    border-left: 1px solid #1818211F;
}

.brand-card {
    aspect-ratio: 1/1;
    border-right: 1px solid #1818211F;
    border-bottom: 1px solid #1818211F;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

    .brand-card img {
        object-fit: contain;
        width: 100%;
        height: 100%;
        filter: grayscale(100%) contrast(0.5) brightness(1.2);
        transition: all 0.4s ease;
        opacity: 0.6;
    }

    .brand-card:hover img {
        filter: none;
        opacity: 1;
    }


    @media only screen and (max-width: 1399px)
    {
        .brands-area {
            grid-template-columns: repeat(6,1fr);
        }
    }

    @media only screen and (max-width: 767px)
    {
        .brands-area {
            grid-template-columns: repeat(4,1fr);
        }
    }

    @media only screen and (max-width: 575px)
    {
        .brands-area {
            grid-template-columns: repeat(3,1fr);
        }
    }

    @media only screen and (max-width: 475px)
    {
        .brands-area {
            grid-template-columns: repeat(2,1fr);
        }
    }