﻿.service-detail-area {
    display: flex;
    flex-direction: column;
    row-gap: 46px;
}

.service-detail-text {
    display: flex;
    flex-direction: column;
    row-gap: 46px;
}


.service-detail-title {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 52px;
    line-height: 62px;
    letter-spacing: -1%;
    color: #292838;
    width: 1024px;
    max-width: 100%;
    word-break: break-word;
}

.service-detail-description {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #3A394F;
}

    .service-detail-description * {
        margin: 0;
    }



/*Markalar*/

.brands-area {
    display: grid;
    grid-template-columns: repeat(5,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;
    cursor: pointer;
    background: white;
}

    .brand-card img {
        object-fit: contain;
        width: 100%;
        height: 100%;
    }


    @media only screen and (max-width: 991px)
    {
        .service-detail-title {
            font-size: 34px;
            line-height: 44px;
        }

        .service-detail-description {
            font-size: 16px;
            line-height: 26px;
        }
    }

@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);
    }
}