.about {
    background-color: $gray2;
    position: relative;
    z-index: 1;

    &__container {
        padding-top: 68px;
        padding-bottom: 80px;
        position: relative;
    }

    &__iero {
        color: $gray3;
    }

    &__title {
        margin-bottom: 10px;
    }

    &__lead {
        max-width: 540px;
    }

    &__author-image {
        position: absolute;
        top: 0;
        right: 0;
        max-width: 100%;
        height: 100%;
        z-index: 1;
        pointer-events: none;
    }

    &__author-image--mobile {
        display: none;
    }

    &__line {
        width: 100vw;
        height: 1px;
        background-color: rgba($black, .2);
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }

    &__item {
        position: relative;
        z-index: 9;
    }

    &__item--1 {
        padding-bottom: 17px;
    }

    &__item--2 {
        padding-top: 30px;
        max-width: 65%;
    }

    &__columns {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -15px;
    }

    &__column {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 25%;
        width: 25%;
    }

    &__block {
        margin-bottom: 35px;
    }

    &__subtitle {
        margin-bottom: 3px;
        white-space: nowrap;
    }

    &__caption {
        margin-top: 0;
        color: rgba($black, .7);
        font-size: 14px;
        line-height: 1.4;
    }

    &__info {
        margin-top: 28px;
    }

    &__info &__column {
        max-width: 100%;
        width: auto;
    }

    &__list {
        display: flex;
        align-items: center;
        position: relative;
        margin-right: 18px;

        &::before {
            content: '';
            position: absolute;
            top: 50%;
            left: -15px;
            width: 8px;
            height: 8px;
            margin-top: -4px;
            border: 1px solid rgba($black, .2);
            border-left: none;
            border-bottom: none;
            transform: rotate(45deg);
        }
    }

    &__list &__subtitle,
    &__list &__caption {
        margin: 0;
    }

    &__list &__subtitle {
        margin-right: 12px;
    }


    &__kettle {
        position: absolute;
        bottom: -92px;
        left: -133px;
        pointer-events: none;
    }

    @media (max-width:1300px) {
        &__author-image {
            right: -100px;
        }
    }

    @media (max-width:1200px) {
        &__author-image {
            right: -200px;
        }
    }

    @media (max-width:991px) {
        &__container {
            padding-top: 0;
        }

        &__item--1 {
            padding-top: 68px;
        }

        &__item--2 {
            max-width: 100%;
        }

        &__author-image {
            display: none;
            right: -100px;
        }

        &__author-image--mobile {
            display: block;
            z-index: -1;
        }

        &__list {
            display: block;
            margin-right: 0;
        }
    }

    @media (max-width:767px) {
        &__container {
            padding-bottom: 50px;
        }

        &__iero {
            font-size: 26px;
            line-height: 37px;
        }

        &__item--1 {
            padding-top: 56px;
            padding-bottom: 51px;
        }

        &__item--2 {
            padding-top: 34px;
        }

        &__author-image {
            right: -160px;
        }

        &__columns {
            margin: 0 -15px;
        }

        &__column {
            max-width: 50%;
            width: 50%;
        }

        &__title {
            max-width: 50%;
            margin-bottom: 13px;
        }

        &__subtitle {
            font-size: 40px;
        }

        &__lead {
            font-size: 16px;
            max-width: 65%;
        }

        &__lead--2 {
            font-size: 20px;
            max-width: 100%;
            margin-bottom: 35px;
        }

        &__info &__columns {
            flex-wrap: nowrap;
        }

        &__list {
            &::before {
                top: 20px;
                margin-top: 0;
            }
        }

        &__kettle {
            bottom: -78px;
            left: -93px;
            max-height: 170px;
        }
    }

    @media (max-width:576px) {
        &__item--1 {
            height: 346px;
        }

        &__title {
            font-size: 8.4vw;
        }

        &__author-image {
            right: -160px;
            width: 320px;
            min-width: 320px;
            height: 346px;
        }

        &__info &__column {
            max-width: 50%;
            width: 50%;
        }

        &__info &__caption br {
            display: none;
        }
    }

    @media (max-width:374px) {
        &__iero {
            font-size: 18px;
            line-height: 1.2;
        }

        &__title {
            font-size: 7vw;
        }
    }
}