body {
    margin: 0;
    width: 100%;
    height: 100vh;
}

@font-face {
    font-family: 'Innervers';
    src: url('/fonts/Innervers\ Gothic\ 40\ Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    /* hızlı yükleme davranışı (opsiyonel) */
}

.description {
    font-family: Innervers;
    font-weight: 400;
    font-style: 40 Regular;
    font-size: 43.41px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 6%;
    color: rgba(59, 59, 59, 1);
    padding: 27px;
    margin-top: 80px;
}

.background {
    background-image: url(/img/back.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    background-position: right;
}

.text-area {
    padding: 139px;
}

.logos {
    display: flex;
    flex-direction: row;
    align-items: start;
    column-gap: 34px;
    margin-left: 27px;
    margin-top: 20px;
}

.argede-logo img {
    max-width: 100%;
}

.responsive {
    display: none;
}

@media only screen and (max-width: 1212px) {
    .background {
        display: none;
    }
    .responsive {
        display: flex;
        background-image: url(/img/backresponsive.png);
        background-size: 100% 100%;
        background-repeat: no-repeat;
        width: 100%;
        height: 100vh;
        background-position: right;
    }
    .text-area {
        padding: 0px;
    }
    .logos {
        display: flex;
        flex-direction: row;
        align-items: start;
        column-gap: 32px;
        flex-wrap: wrap;
    }
    .logos img {
        display: flex;
        flex-direction: row;
        align-items: start;
        column-gap: 8px;
        margin-top: 20px;
        width: 20% !important;
    }
    .argede-logo {
        max-width: 100%;
        width: 297px;
        margin-top: 31px;
        margin-left: 11px;
    }
}

@media only screen and (max-width: 767px) {
    .responsive {
        background-size: 100% 390px;
        background-position: bottom right;
    }
    .description {
        font-family: Innervers;
        font-weight: 400;
        font-style: 40 Regular;
        font-size: 35.41px;
        leading-trim: NONE;
        line-height: 100%;
        letter-spacing: 6%;
        color: rgba(59, 59, 59, 1);
        padding: 27px;
        margin-top: 80px;
    }
    .description br {
        display: none;
    }
    .logos-mobile {
        padding: 29px;
        flex-wrap: wrap;
        gap: 40px;
        display: flex;
    }
}