.mw-screen {
    max-width: 1110px;
    margin: 0 auto;
}

.intro-banner {
    aspect-ratio: 5 / 2.75;
}

.intro-banner img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-section-ver {
    padding-top: 30px;
    padding-bottom: 30px;
}

.header-section {
    display: flex;
    flex-direction: column;
    padding: 30px 0;
}

.title-section {
    position: relative;
    font-size: 30px;
    font-weight: 700;
    font-family: 'SVN-Gilroy Bold';
    line-height: 46px;
    color: #292824;
}

.title-item {
    font-size: 18px;
    font-weight: 700;
    font-family: 'SVN-Gilroy Bold';
    line-height: 26px;
    color: #E5A823;
}

.header-section .title-section:not(.no-affter):after {
    content: "";
    display: block;
    width: 50px;
    height: 5px;
    background-color: #F99F1B;
    margin: 15px auto 0;
}

.header-section .title-section.text-white::after {
    background-color: white;
}

.img-aspect-ratio {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.item-interactive {
    display: block;
    width: 100%;
    padding: 15px 30px;
    padding-left: 50px;
    border-radius: 10px;
    transition: all .25s linear;
    color: #52504D;
    position: relative;
    margin-bottom: 10px;
}
.item-interactive::before {
    content: '\2713';
    font-family: system-ui;
    font-size: 12px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    text-align: center;
    color: #FFFFFF;
    background-color: #E6A922;
    margin-left: -25px;
    margin-top: 3px;
    float: left;
}

.item-interactive .title-item {
    color: #292824;
    transition: all .25s linear;
}
.item-interactive:not(.no-hover):hover, .item-interactive.active {
    color: #52504D;
    text-decoration: none;
    box-shadow: 1px 2px 15px 1px rgba(0, 0, 0, 0.12);
}
.item-interactive:not(.no-hover):hover .title-item, .item-interactive.active .title-item {
    color: #E5A823;
}

.bg-img-section {
    position: absolute;
    display: flex;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.bg-img-section>img {
    max-width: 100%;
    min-height: 100%;
    width: 100%;
    object-fit: cover;
}

.bg-img-section+* {
    position: relative;
    z-index: 2;
}

.h1-unit {
    font-size: 53px;
    font-weight: 700;
    font-family: 'SVN-Gilroy Bold';
    line-height: 56px;
    color: #E5A823;
}

@media (min-width: 992px) {
    .intro-banner {
        aspect-ratio: 5 / 2.5;
    }

    .p-section-ver {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

@media (min-width: 1200px) {
    .intro-banner {
        aspect-ratio: auto;
    }
}