.mc {
    &__container {
        padding-bottom: 30px;
        position: relative;
        z-index: 1;
    }

    &__columns {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -15px;
    }

    &__column {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 33.333%;
        width: 33.333%;
    }

    &__item {
        margin-top: 13px;
        margin-bottom: 28px;
    }

    &__pict {
        margin-bottom: 10px;
        height: 48px;
        display: flex;
        align-items: center;
    }

    &__img {
        max-height: 48px;
    }

    &__name {
        font-weight: 400;
        font-size: 25px;
        line-height: 1.4;
        margin-top: 0;
        margin-bottom: 8px;
        letter-spacing: 0.05em;
        text-transform: uppercase;
    }

    &__caption {
        margin: 0;
        line-height: 1.4;
    }

    &__fish {
        position: absolute;
        top: -63px;
        right: -125px;
        pointer-events: none;
        z-index: -1;
    }

    @media (max-width:1300px) {
        &__fish {
            top: -72px;
            right: -34px;
            max-height: 260px;
            transform: rotate(12deg);
        }
    }

    @media (max-width:767px) {        
        &__container {
            padding-top: 49px;
            padding-bottom: 52px;
        }

        &__column {
            max-width: 50%;
            width: 50%;
        }

        &__pict {
            margin-bottom: 10px;
            height: 30px;
        }

        &__img {
            max-height: 30px;
        }
    }

    @media (max-width:576px) {
        &__column {
            max-width: 100%;
            width: 100%;
        }

        &__item {
            margin-bottom: 18px;
        }

        &__caption {
            font-size: 16px;
        }
    }

    @media (max-width:374px) {
        &__fish {
            max-height: 220px;
        }
    }
}