.about-third7__container {
    max-width: var(--CONTAINER_WIDTH);
    margin: 0px auto;
    padding: 60px 20px;
}

.about-third7__titling {
    margin-bottom: 40px;
}
@media (min-width: 768px) {
    .about-third7__titling {
        display: flex;
    }
}
.about-third7__title {
    font-size: 20px;
    line-height: 150%;
    color: var(--SECONDARY_MAJOR_COLOR);
    font-family: var(--TITLE_FONT);
}
@media (min-width: 768px) {
    .about-third7__title {
        flex: 0 0 320px;
        font-size: 30px;
        margin-right: 40px;
    }
}

.about-third7__text {
    color: var(--TEXT_COLOR);
    margin-bottom: 10px;
}
@media (min-width: 768px) {
    .about-third7__text {
        color: var(--TEXT_COLOR);
        margin-bottom: 20px;
    }
}
.about-third7__subtitle {
    color: var(--EXTRA_COLOR);
}

@media (min-width: 576px) {
    .about-third7__row {
        margin: 0 -20px;
        display: flex;
        flex-wrap: wrap;
    }
}
.about-third7__column {
    margin-bottom: 40px;
}
@media (min-width: 576px) {
    .about-third7__column {
        flex: 1 1 50%;
        margin-bottom: 0px;
        padding: 20px;
    }
}
@media (min-width: 992px) {
    .about-third7__column {
        flex: 0 0 33.333%;
    }
}
.about-third7__column:last-child {
    margin-bottom: 0;
}
.about-third7__card {
    width: 100%;
    overflow: hidden;
    position: relative;
}
.about-third7__card:hover .about-third7__label {
    transform: translateY(0);
}
.about-third7__pic {
    border-radius: 15px;
    width: 100%;
    height: 400px;
    overflow: hidden;
}
@media (min-width: 768px) {
    .about-third7__pic {
        height: 600px;
    }
}
@media (min-width: 992px) {
    .about-third7__pic {
        height: 400px;
    }
}
.about-third7__pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-third7__label {
    padding: 12px;
    border-radius: 0 10px 0 0;
    background-color: var(--SECONDARY_MINOR_COLOR);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all 0.3s ease 0s;
    transform: translateY(100%);
}
.about-third7__name {
    font-weight: bold;
    font-size: 14px;
    color: var(--EXTRA_COLOR);
}
.about-third7__data {
    font-size: 13px;
    line-height: 16px;
    color: var(--TEXT_COLOR);
}
