.main_three_boxes {
    background: #f7f7f7;
    padding-top: 50px;
}

.main_three_boxes_container {
    max-width: 1920px;
    width: 75%;
    padding: 0 5% 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 50px auto 0;
    position: relative;
}

@media(max-width: 1100px) {
    .main_three_boxes_container {
        width: auto;
        padding: 0 20px 60px;
    }
}

.main_three_boxes_container h2 {
    text-transform: uppercase;
    font-size: 50px;
    line-height: 60px;
    margin: 8px 0 10px;
    font-weight: 800;
    color: #1a1a1a;
}

@media(max-width: 900px) {
    .main_three_boxes_container h2 {
        font-size: 30px !important;
        line-height: 30px !important;
    }
}

.main_three_boxes_container .line {
    width: 80px;
    height: 4px;
    background: #f30101;
    margin: 10px 0 20px;
}

.main_three_boxes__content {
    width: 100%;
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
}

@media(max-width: 1100px) {
    .main_three_boxes__content {
        gap: 20px !important;
    }
}

@media(max-width: 700px) {
    .main_three_boxes__content {
        grid-template-columns: 1fr !important;
    }
}

.main_three_boxes__content--box {
    background: #fff;
    padding: 20px;
    color: inherit;
    text-decoration: none;
    display: block;
}

a.main_three_boxes__content--box {
    cursor: pointer;
}

.main_three_boxes__content--box img {
    max-width: 100%;
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    display: block;
}

.main_three_boxes__content--box__text {
    margin-top: 20px;
    font-size: 18px;
    line-height: 24px;
    color: #999;
}

.main_three_boxes__content--box__title {
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    margin: 0 0 16px;
    color: #999;
}

.main_three_boxes__content--box__subtitle {
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    margin: 0 0 16px;
    color: #999;
}

.main_three_boxes__content--box__description,
.main_three_boxes__content--box__description p {
    font-size: 18px;
    line-height: 24px;
    color: #999;
    margin: 0 0 16px;
}

.main_three_boxes__content--box__description p:last-child {
    margin-bottom: 0;
}

@media(max-width: 1000px) {
    .main_three_boxes__content--box__text,
    .main_three_boxes__content--box__title,
    .main_three_boxes__content--box__subtitle,
    .main_three_boxes__content--box__description,
    .main_three_boxes__content--box__description p {
        font-size: 14px !important;
    }
}
