.about {
    padding: 40px 0;
    background-size: cover;
    background-position: center center
}

.about__head {
    margin-bottom: 40px
}

.about__title {
    color: var(--white);
    text-transform: uppercase
}

.about__description {
    margin-top: 20px;
    color: var(--white)
}

.about__description a {
    text-decoration: underline;
    color: var(--white);
    -webkit-transition: color var(--transition);
    transition: color var(--transition)
}

.about__description a:hover {
    color: var(--accent)
}

.about__grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns:(1fr) [ 2 ];
    grid-template-columns:repeat(2, 1fr);
    gap: 12px
}

@media (min-width: 1034px) {
    .about {
        padding: 60px 0 100px
    }

    .about__head {
        text-align: center;
        width: 100%;
        max-width: 480px;
        margin-right: auto;
        margin-left: auto;
        margin-bottom: 60px
    }

    .about__grid {
        -ms-grid-columns:(1fr) [ 3 ];
        grid-template-columns:repeat(3, 1fr);
        gap: 20px
    }
}

.about__card {
    border: 1px solid rgba(255, 255, 255, .5);
    background: rgba(255, 255, 255, .14);
    color: var(--white);
    padding: 19px;
    overflow: hidden
}

.about__card--1 {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 1/1/2/2
}

.about__card--2 {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 1/2/2/3
}

.about__card--3 {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 2/1/3/2
}

.about__card--4 {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 2/2/3/3
}

.about__card--5 {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: 3/1/4/3
}

.about__card--5 .about__card-items {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns:(1fr) [ 2 ];
    grid-template-columns:repeat(2, 1fr);
    gap: 20px
}

@media (min-width: 1034px) {
    .about__card--5 {
        -ms-grid-row: 1;
        -ms-grid-row-span: 2;
        -ms-grid-column: 3;
        -ms-grid-column-span: 1;
        grid-area: 1/3/3/4
    }

    .about__card--5 .about__card-items {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 0;
        height: 100%;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }
}

.about__card-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px
}

.about__card-name {
    font-size: var(--text-size-18);
    font-weight: var(--fw-bold);
    line-height: var(--lh-sm);
    text-transform: uppercase
}

@media (min-width: 1200px) {
    .about__description {
        margin-top: 28px
    }

    .about__card {
        padding: 27px 39px
    }

    .about__card-name {
        font-size: var(--text-size-32);
        line-height: normal
    }
}

.about__card-text {
    font-size: var(--text-size);
    line-height: var(--lh-sm);
    font-weight: var(--fw-normal)
}

@media (min-width: 1200px) {
    .about__card-text {
        font-size: var(--text-size-20)
    }
}

.about__card-text p {
    margin-bottom: 0
}

.about__card-text p:not(:first-of-type) {
    margin-top: 26px
}
