/* General */

html {
    scroll-behavior: smooth;
}

.menu-header__link--hightlight {
    font-weight: 700;
    color: #b2060f;
}

.menu-header__link--hightlight:hover {
    font-weight: 700;
    color: #8E8E8E;
}

/* VNA banner */
.vnabanner {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.vnabanner__overlay {
    background-color: rgb(178, 6, 15, 0.9);
}

.vnabanner__inner {
    max-width: 1200px;
    padding: 40px;
    margin: 0 auto;
}

.vnabanner__heading {
    font-size: 42px;
    line-height: 1.25;
    color: #fff;
    font-weight: 700;
    text-align: center;
}
@media screen and (max-width: 768px) {
    .vnabanner__heading {
        font-size: 36px;
    }
}
@media screen and (max-width: 500px) {
    .vnabanner__heading {
        font-size: 32px;
    }
}

.vnabanner__button-wrap {
    margin-top: 30px;
}

.vnabanner__button {
    font-size: 25px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 20px;
    margin: 0 auto;
}
@media screen and (max-width: 768px) {
    .vnabanner__button {
        font-size: 18px;
        padding: 15px;
    }
}

/* VNA Box */
.boxvna {
    display: block;
}

.boxvna__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.boxvna__item {
    display: grid;
    min-height: 270px;
    grid-template-columns: 270px auto;

    background-color: rgba(178, 6, 15, 0.7);
}
@media screen and (max-width: 768px) {
    .boxvna__item {
        display: grid;
        min-height: 0;
        grid-template-columns: 1fr;

        background-color: rgba(178, 6, 15, 0.7);
    }
}

.boxvna__item--gray {
    background-color: rgb(142, 142, 142);
}

.boxvna__itemLeft {
    height: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.boxvna__itemLeftInner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;

    background-color: rgba(178, 6, 15, 0.7);
}
.boxvna__item--gray .boxvna__itemLeftInner {
    background-color: rgba(142, 142, 142, 0.7);
}

.boxvna__itemRight {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.boxvna__itemName {
    font-size: 22px;
    color: #fff;
    font-weight: 600;
    text-align: center;
}

.boxvna__itemHeading {
    font-size: 22px;
    color: #fff;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}

.boxvna__itemText {
    font-size: 20px;
    color: #fff;
    font-weight: 400;
    text-align: center;
}

/* RED banner */

.redbanner {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.redbanner__overlay {
    background-color: rgb(178, 6, 15, 0.9);
}

.redbanner__inner {
    max-width: 1200px;
    padding: 40px;
    margin: 0 auto;
}

.redbanner__heading {
    font-size: 60px;
    line-height: 1.25;
    color: #fff;
    font-weight: 700;
    text-align: center;
}
@media screen and (max-width: 768px) {
    .redbanner__heading {
        font-size: 50px;
    }
}
@media screen and (max-width: 500px) {
    .redbanner__heading {
        font-size: 40px;
    }
}

.redbanner__text {
    font-size: 20px;
    line-height: 1.25;
    color: #fff;
    font-weight: 700;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    margin-top: 20px;
}

.redbanner__list {
    margin: 0 auto;
    margin-top: 30px;
    max-width: 400px;
    list-style-type: disc;
    color: #fff;
    text-align: left;
}
.redbanner__list li {
    font-size: 20px;
    line-height: 1.25;
    color: #fff;
    font-weight: 700;
    text-align: left;
}

.redbanner__button-wrap {
    margin-top: 30px;
}

.redbanner__button {
    font-size: 25px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 20px;
    margin: 0 auto;
}
@media screen and (max-width: 768px) {
    .redbanner__button {
        font-size: 18px;
        padding: 15px;
    }
}

/* FORM VNA */
.form-vna__content1 {
}

.form-vna__content2 {
    margin-top: 50px;
}

.form-vna__button {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10 40px;
}
@media screen and (max-width: 768px) {
    .form-vna__button {
        font-size: 15px;
        padding: 10px 20px;
    }
}

.form-vna {
    display: block;
    margin-top: 20px;
}

.form-vna__content {
    display: block;
    margin-bottom: 20px;
}

.form-vna__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    grid-gap: 30px;
}
@media screen and (max-width: 768px) {
    .form-vna__row {
        grid-template-columns: 1fr;
        gap: 0px;
        grid-gap: 0px;
    }
}

.form-vna__column {
    display: block;
}

.form-vna__column * {
    width: 100%;
}

.form-vna__input-field {
    width: 100%;
    height: 37px;
    color: #b2060f;
    border: none;
    border-bottom: 2px solid #b2060f;
    margin-bottom: 10px;
    margin-top: 10px;
}

.form-vna__input-field::-webkit-input-placeholder {
    font-size: 1.5rem;
    color: #b2060f;
}

.form-vna__input-field::-moz-placeholder {
    font-size: 1.5rem;
    color: #b2060f;
}

.form-vna__input-field:-ms-input-placeholder {
    font-size: 1.5rem;
    color: #b2060f;
}

.form-vna__input-field::-ms-input-placeholder {
    font-size: 1.5rem;
    color: #b2060f;
}

.form-vna__input-field::placeholder {
    font-size: 1.5rem;
    color: #b2060f;
}

.form-vna__input-field:focus {
    outline: none;
}
