﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

* {
    font-family: "Inter", sans-serif;
}

#about {
    padding: 60px 0px;
}

.about-bennar {
    padding: 60px 0px;
    background: #67a4c226;
}

.abo-row {
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
}
    .abo-row .abo-col .abo-main-title {
        font-size: 55px;
        line-height: 1.2;
    }

    .abo-row .abo-col p {
        margin: 20px 0px -9px;
        font-size: 16px;
        color: #4c4c4c;
        line-height: 1.5;
        padding-right : 20px;
    }
        .abo-row .abo-col img {
    width: 100%;
}


.abo-details-row {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 85px auto 76px;
}

.abo-details-col {
    width : 50%;
    min-height: 100px;
}

.abo-details-col img {
    width : 100%;
}

    .abo-details-col span {
        position: relative;
        font-size: 18px;
        font-weight: 500;
        color: black;
        display: block;
        width: fit-content;
        margin-top: 50px;
    }

        .abo-details-col span:after {
            content: '';
            width: 80px;
            height: 1px;
            background: #265df5;
            position: absolute;
            top: 50%;
            left: 114%;
            transform: translateY(-50%)
        }

        .abo-details-col h3 {
        font-size: 28px;
        font-weight: 500;
        color: black;
        margin: 17px 0px 5px;
    }

    .abo-details-col p {
        font-size: 15px;
        line-height: 1.6;
        letter-spacing: 0.5px;
        margin-top: 10px;
    }


    @media screen and (max-width : 1280px) {
        .abo-row .abo-col .abo-main-title {
            font-size: 44px;
        }
    }

@media screen and (max-width : 900px) {
    .abo-row .abo-col .abo-main-title {
        font-size: 36px;
    }
    .abo-details-row {
        flex-direction: column !important;
    }

    .abo-details-col {
        width: 100%;
    }

}

@media screen and (max-width : 700px) {
    .abo-row {
        display: flex;
        flex-direction: column-reverse;
        gap: 30px;
        align-items: center;
    }

        .abo-row .abo-col:last-child {
            text-align : center;
        }

        .abo-row .abo-col img {
            width: 78%;
        }

        .abo-row .abo-col .abo-main-title {
            font-size: 36px;
        }

   
    }