.section {
    padding: 4rem 0;
}

.section_lite {
    background-color: #f8f9fa;
}

.section__article div {
    max-width: 700px;
}

@media only screen and (max-width: 768px) {
    .section {
        padding: 2rem 0;
    }

    .section__article div {
        max-width: 500px;
    }
}

.box-article {
    border-radius: .375rem;
    background-color: #f8f9fa;
    padding: 4rem;
}

.form-control::placeholder {
    color: #212529;
    opacity: 0.4;
}

.title-underline {
    position: relative;
}

.title-underline:after {
    content: '';
    border-bottom: 3px solid #f06000;
    display: block;
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 4rem;
}


.section-menu-card {
    position: relative;
    border-radius: 0.375rem;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: all .4s ease .2s;
}

.section-menu-card-1 {
    background-color: #f8f9fa;
}

.section-menu-card-2 {
    background-color: #f3f2fa;
}

.section-menu-card:hover .section-menu-card__image {
    transform: scale(1.1);
}

.section-menu-card__image {
    position: absolute;
    pointer-events: none;
    bottom: 0;
    right: 0;
    width: 270px;
    height: 270px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    transition: all .4s ease .2s;
    z-index: 1;
}

.section-menu-card__inner {
    padding: 4rem 8rem 15% 4rem;
    display: flex;
    flex-direction: column;
    position: static;
    height: 100%;
    z-index: 2;
}