.about {
    padding-top: 80px;
    padding-bottom: 90px;
}

.about .about__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 14.3px;
    margin-top: 32px;
}

.about .about__block {
    color: #fff;
    padding: 24px 26px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.about .about__block::before {
    content: '';
    background-color: #6598EF;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: block;
    z-index: -5;
}

.about .about__block::after {
    position: absolute;
    --size: 567.01px;
    content: url('../../img/main-page/about/about-bg.svg');
    width: var(--size);
    height: var(--size);
    z-index: -3;
    top: 50%;
    right: -301px;
    transform: translateY(-50%) rotate(-18.28deg);
}

.about .about__text {
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 0%;
    margin-top: 16px;
}

.about .about__text.short {
    max-width: 420px;
}

.about .about__checkmark {
    width: 60px;
    height: auto;
}

@media screen and (max-width: 900px) {
    .about .about__grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-top: 24px;
    }
}

@media screen and (max-width: 600px) {
    .about .about__grid {
        gap: 8px;
        margin-top: 16px;
    }

    .about .about__text {
        font-size: 16px;
    }

    .about .about__checkmark {
        width: 40px;
    }

    .about .about__block {
        padding-right: 23px;
    }

    .about .about__block::after {
        top: -277px;
        right: -360px;
        transform: rotate(-18.28deg);
    }
}
