.about-section {
    position: sticky;
    z-index: 2;
    margin-top: -100vh;
    min-height: 100vh;
    background: #fff;
    padding-bottom: 40px;
}

.about {
    padding: 160px 0 120px;
    display: flex;
}

.about__title {
    min-width: 435px;
    font-family: "Inter Tight", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: rgba(90, 97, 108, 1);
    text-transform: uppercase;
}

.about__description {
    margin: 0 0 64px;
    font-family: "Noto Serif Display", sans-serif;
    font-weight: 500;
    font-size: 72px;
    line-height: 80px;
    color: rgba(60, 36, 21, 1);
}

.about__texts {
    display: grid;
    grid-template-columns: 580px minmax(auto, 1fr);
    gap: 145px;
}

.about__text {
    margin: 0;
    font-family: "Inter Tight", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    color: rgba(90, 97, 108, 1);
    text-align: justify;
}

@media (max-width: 1700px) {
    .about__texts {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1250px) {
    .about {
        flex-direction: column;
        gap: 16px;
    }

    .about__title {
        min-width: unset;
    }

    .about__texts {
        flex-direction: column;
        gap: 64px;
    }

    .about__description {
        font-size: 60px;
        line-height: 68px;
    }

    .doctors__stage {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .about__description {
        font-size: 48px;
        line-height: 54px;
        margin-bottom: 24px;
    }

    .about__texts {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

@media (max-width: 576px) {
    .about {
        padding: 64px 0 40px;
    }

    .about__title {
        font-size: 18px;
        line-height: 24px;
    }

    .about__description {
        font-size: 32px;
        line-height: 40px;
    }

    .about__text {
        font-size: 16px;
        line-height: 28px;
    }
}