.about-preview h2 span {
    color: #0065DC;
    color: var(--blue-color, #0065DC);
}

.about-preview p {
    color: #37474F;
    color: var(--main-color, #37474F);
    font-family: "Open Sans";
    font-family: var(--main-font-family, "Open Sans");
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20.8px;
}

.about-preview__wrapper-img {
    margin-top: 30px;
    width: 100%;
    height: 719px;
}

.about-preview__wrapper-img img {
    width: 100%;
    height: 100%;
}

.about-preview__footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 150px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.about-preview__description {
    width: 100%;
    max-width: 625px;
}

.about-preview__description p + p {
    margin-top: 20px;
}


@media (max-width: 1280px) {
    .about-preview__footer {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .about-preview__footer {
        gap: 24px;
    }

    .about-preview__wrapper-img {
        height: 150px;
    }
}


.about-indicators {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr) [ 2 ];
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: (1fr) [ 2 ];
    grid-template-rows: repeat(2, 1fr);
    grid-gap: 24px;
    gap: 24px;
}

.about-indicators__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    height: 216px;
    padding: 30px 20px 30px 30px;
    border-radius: 10px;
    border-radius: var(--main-radius, 10px);
    border: 1px solid rgba(0, 101, 220, 0.3019607843);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.about-indicators__item_big {
    height: 100%;
    -ms-grid-row-span: 2;
    grid-row: 2 span;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.about-indicators__number {
    color: #E6274D;
    color: var(--pink-color, #E6274D);
    font-family: "Raleway";
    font-family: var(--secondary-font-family, "Raleway");
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 41.6px;
    letter-spacing: 0.32px;
    text-transform: uppercase;
}

.about-indicators__item_big .about-indicators__number {
    color: #E6274D;
    color: var(--pink-color, #E6274D);
    font-size: 64px;
    line-height: 83.2px;
}

@media (max-width: 768px) {
    .about-indicators {
        -ms-grid-columns: (1fr) [ 1 ];
        grid-template-columns: repeat(1, 1fr);
        -ms-grid-rows: (1fr) [ 1 ];
        grid-template-rows: repeat(1, 1fr);
        gap: 10px;
    }

    .about-indicators__item_big .about-indicators__number {
        font-size: 32px;
    }

    .about-indicators__item {
        height: 160px;
        min-height: -webkit-fit-content;
        min-height: -moz-fit-content;
        min-height: fit-content;
    }
}