.general-banner {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 200px;
    display: flex;
    align-items: center;
}

    .general-banner h2 {
        font-size: 44px;
        font-weight: 800;
        line-height: 54px;
        color: #ffffff;
        margin-bottom: 0;
    }

iframe#contact-google-map {
    width: 100%;
    height: 100%;
    border-radius: 12px !important;
}

.form-contact .col {
    padding-bottom: 20px;
}

    .form-contact .col:last-child {
        padding-bottom: 0;
    }

input, textarea {
    border-radius: 12px !important;
    border: 1.5px solid var(--normal-bg) !important;
    border-radius: 12px !important;
}

.btn-submit {
    border-radius: 6px;
    white-space: nowrap;
    background-color: var(--primary-color);
    border: none !important;
    outline: none !important;
    padding: 8px 16px;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 13px;
    line-height: 18px;
    min-height: 36px;
}

.small-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 34px;
    color: var(--main-title);
    margin-bottom: 15px;
}

.contact-infor {
    margin-bottom: 30px;
}

.infor-list .infor-item:not(:last-child) {
    margin-bottom: 10px;
}

.infor-list .infor-item:last-child {
    margin-bottom: unset;
}

.infor-list .infor-item span {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--sub-text);
}

.contact-infor .infor-item img {
    width: 16px;
    margin-right: 8px;
}

#contact-branches {
    margin-bottom: 30px;
}

    #contact-branches svg.bi.bi-caret-down-fill.collapse-arrow {
        transform: rotate(180deg);
        transform-origin: center;
    }

    #contact-branches .branch-info {
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        color: var(--sub-text);
        margin-bottom: 15px;
        position: relative;
    }

    #contact-branches svg.bi.bi-caret-down-fill {
        color: var(--bs-red);
        transition: transform 0.3s ease; /* Smooth transition */
        z-index: 10
    }

.branch-list {
    margin-left: 2rem;
}

.branch-contact-info {
    margin-left: 2rem;
}

#contact-branches.not-open .branch-list {
    display: none
}

#contact-branches.open-info .branch-list {
    animation: moveUpFadeIn .5s ease forwards;
}

#contact-branches.collapse-info .branch-list {
    transform: translateY(-100%);
    position: absolute;
    z-index: -100;
    animation: moveUpFadeOut .5s ease forwards;
}

.branch-info.not-open table {
    display: none
}

.branch-info.open-info table {
    animation: moveUpFadeIn .5s ease forwards;
}

.branch-info.collapse-info table {
    transform: translateY(-100%);
    position: absolute;
    z-index: -100;
    animation: moveUpFadeOut .5s ease forwards;
}

img.branch-direction{
    width: 25px;
    height: 25px;
    cursor: pointer;
}

.branch-contact-info .branch-address td:first-child {
    width: 500px;
}

@keyframes moveUpFadeOut {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(-20px);
        opacity: 0;
    }
}

@keyframes moveUpFadeIn {
    0% {
        transform: translateY(-20px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@media only screen and (max-width: 767px) {
    .general-banner h2 {
        font-size: 36px;
        line-height: 54px;
    }

    .infor-list .infor-item {
        padding-bottom: 0;
    }

    .support {
        padding-bottom: 30px;
    }

    iframe#contact-google-map {
        height: 372px;
    }
}
