.about {
    padding-top: 120px;
    margin-bottom: 130px;
}

.about_title {
    font-weight: 600;
    font-size: 42px;
    color: #262626;
    margin-bottom: 50px;
}

.about_flex {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.flex_block{
    max-width: 380px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex: 1;
}

.about_flex-item {
    border: 1px solid rgba(225, 225, 225, 0.35);
    border-radius: 12px;
    box-shadow: -4px 8px 14px 0 rgba(38, 38, 38, 0.16);
}

.flex_blue {
    background: #2b47a9;
    text-align: center;
    height: 140px;
    align-content: center;
}

.flex_blue-title {
    font-weight: 600;
    font-size: 32px;
    color: #fff;
    margin-bottom: 10px;
}

.flex_blue-desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #fff;
}

.flex_sphere {
    padding-top: 20px;
    padding-bottom: 35px;
}

.flex_sphere-title {
    font-weight: 600;
    font-size: 32px;
    line-height: 105%;
    text-align: center;
    color: #262626;
    max-width: 225px;
    margin: 0 auto;
    margin-bottom: 18px;
}

.flex_sphere-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 288px;
    justify-content: center;
    margin: 0 auto;
}

.flex_sphere-items-line {
    display: flex;
    align-items: center;
    gap: 12px;
}

.flex_sphere-item {
    border: 1px solid #2b47a9;
    border-radius: 6px;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    text-transform: lowercase;
    color: #262626;
    max-width: fit-content;
    padding: 0 7px;
}

.flex_sphere-item.center{
    align-self: center;
}
.flex_sphere-item.end{
    align-self: end;
}

.flex_certificate {
    padding-top: 30px;
    padding-bottom: 47px;
}

.flex_certificate-title {
    font-weight: 600;
    font-size: 32px;
    text-align: center;
    color: #262626;
    margin-bottom: 11px;
}

.flex_certificate-desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    text-align: center;
    color: #262626;
    max-width: 236px;
    margin: 0 auto;
}

.flex_image{
    height: 100%;
}

.flex_image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.flex_target {
    height: 100%;
    padding: 30px 20px;
}

.flex_target-title {
    font-weight: 600;
    font-size: 32px;
    text-align: center;
    color: #262626;
    margin-bottom: 10px;
}

.flex_target-desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    text-align: center;
    color: #262626;
    margin-bottom: 40px;
}

.flex_target-sub {
    font-weight: 600;
    font-size: 18px;
    line-height: 120%;
    text-align: center;
    color: #262626;
    margin-bottom: 30px;
}

.flex_target-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.flex_target-items-line {
    display: flex;
    align-items: center;
    gap: 20px;
}

.flex_target-items-line.second{
    margin-left: 30px;
}

.flex_target-item {
    border-radius: 6px;
    background: #b42533;
    max-width: fit-content;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: #fff;
    padding: 0 7px;
}

.flex_target-item.end{
    align-self: end;
}

.more .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.more_text {
    max-width: 560px;
    width: 100%;
}

.more_text-desc {
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: #262626;
    margin-bottom: 45px;
}

.more_text-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #262626;
}

.more_image {
    max-width: 580px;
    width: 100%;
}

@media (max-width: 1100px) {
    .about_flex{
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    .flex_block{
        max-width: none;
        gap: 15px;
    }
    .flex_block:last-child{
        grid-column-start: 1;
        grid-column-end: 3;
    }
    .flex_target-items-line.second{
        margin: 0 auto;
    }
    .flex_sphere-block{
        gap: 36px;
    }
    .about{
        margin-bottom: 50px;
        padding-top: 20px;
    }
    .more .container{
        flex-direction: column-reverse;
        gap: 50px;
    }
    .more_text,
    .more_image{
        max-width: none;
    }
    .more_image img{
        width: 100%;
    }
}
@media (max-width: 700px) {
    .about_flex{
        grid-template-columns: 1fr;
    }
    .flex_block:last-child{
        grid-column-start: auto;
        grid-column-end: auto;
    }
}
