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

.about .about__block {
    border: 1px solid #F1F1F1;
    box-shadow: 0px 149px 60px rgba(184, 184, 184, 0.01), 0px 84px 50px rgba(184, 184, 184, 0.05), 0px 37px 37px rgba(184, 184, 184, 0.09), 0px 9px 20px rgba(184, 184, 184, 0.1);
    border-radius: 32px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.about .about__block::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    z-index: -2;
}

.about .about__block.big {
    grid-row: 1/3;
}

.about .about__block-bg {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    height: 360px;
    width: auto;
}

.about .about__big-text {
    font-size: 100px;
    font-weight: 800;
    line-height: 150%;
    color: #2589FF;
    margin-top: 114px;
    margin-bottom: 24px;
}

.about .about__icon {
    height: 40px;
    width: 40px;
}

.about .about__block.big .about__icon {
    height: 80px;
    width: 80px;
}

@media screen and (max-width: 1160px) {
    .about .about__big-text {
        font-size: 75px;
    }

    .about .about__icon {
        margin-bottom: 30px;
    }
    
}

@media screen and (max-width: 950px) {
    .about .about__grid {
        display: flex;
        flex-direction: column;
    }

    .about .about__icon {
        margin-bottom: 50px;
    }

    .about .about__big-text {
        margin-top: 0;
    }
}

@media screen and (max-width: 750px) {
    .about .about__block {
        padding: 25px;
        border-radius: 30px;
    }

    .about .about__big-text {
        font-size: 50px;
    }

    .about .about__icon {
        margin-bottom: 20px;
    }

    .about .about__block-bg {
        height: 200px;
    }
}
