section.map-full iframe {
    display: block
}

.footer-section ul li a {
    color: #aaa
}

.footer-section.lien-ket ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
    grid-template-rows: repeat(3, auto);
    grid-auto-columns: 1fr;
}

.footer-section ul li {
    margin-bottom: 10px;
    font-size: 16px;
}

section.map-full .image-caption {
    display: none
}

.footer-section ul li a {
    color: #fff;
}

.footer-section ul li a:hover {
    color: var(--color-main3);
}

.footer {
    background: #000000f2;
    color: #fff;
    position: relative;
    overflow: hidden
}

section.map-full iframe {
    width: 100%
}

.social-links ul {
    display: flex;
    gap: 10px
}

.social-links ul li {
    max-width: 45px
}

.footer .contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px
}

.footer .contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    border-right: 1px solid #cdcdcd47
}

.footer .contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    flex-shrink: 0
}

.footer .contact-details h3 {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 5px;
    font-weight: 500
}

.footer .contact-details p {
    font-size: 18px;
    color: #fff;
    font-weight: 600
}

.footer .footer-content {
    display: grid;
    grid-template-columns: 30% 43% 18%;
    gap: 52px;
    align-items: start
}

.footer .footer-section h2 {
    font-size: 21px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 10px;
    padding-bottom: 10px;
    position: relative;
}

.footer .footer-section h3 {
    font-size: 21px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 9px
}

.footer .brand-section {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px
}

.footer .logo {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    font-weight: 700;
    flex-shrink: 0
}

.footer .brand-name {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 0
}

.footer .brand-description {
    color: #fff;
    line-height: 1.6;

    font-size: 16px
}

.footer .brand-description:not(:last-child) {
    margin-bottom: 15px;
}

.footer .social-links {
    display: flex;
    gap: 15px
}

.footer .social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all .3s ease;
    font-size: 18px
}

.footer .social-link:hover {
    background: linear-gradient(135deg, #ffc107, #ff9800);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.4)
}

.footer .footer-links {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 40px
}

.footer .footer-links li {
    margin-bottom: 12px
}

.footer .footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 16px;
    transition: all .3s ease;
    position: relative
}

.footer .footer-links a:hover {
    color: #ffc107;
    transform: translateX(5px)
}

.footer .newsletter-section {}

.footer .newsletter-description {
    color: #aaa;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.5
}

.footer .email-input-container {
    position: relative;
    margin-top: 20px
}

.footer .email-input {
    width: 100%;
    padding: 18px 59px 18px 0;
    color: #fff;
    font-size: 16px;
    outline: none;
    transition: all .3s ease;
    background: none;
    border-bottom: 1px solid #fff;
    padding-left: 10px
}

.footer .email-input::placeholder {
    color: #888
}

.footer .submit-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    transition: all .3s ease;
    display: flex;
    align-items: center;
    justify-content: center
}

.footer .submit-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.4)
}

.footer .copyright {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #777;
    font-size: 14px
}

@media (max-width: 768px) {
    .footer .contact-info {
        grid-template-columns: 1fr;
        gap: 30px
    }

    .footer .footer-content {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .footer .footer-links {
        grid-template-columns: 1fr;
        gap: 15px
    }

    .footer .newsletter-section {
        padding: 30px 0
    }
}

.footer .contact-item {
    animation: slideInUp .8s ease
}

.footer .contact-item:nth-child(2) {
    animation-delay: .2s
}

.footer .contact-item:nth-child(3) {
    animation-delay: .4s;
    border: none
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.footer main {
    height: 1000px
}

.newsletter-section p {
    color: #aaa
}

.footer .social-links ul li img {
    width: 28px
}

.footer-top {
    padding: 40px 0;
    background: #15141a
}

.footer-bottom {
    background: #411204;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0 20px
}

.footer .footer-section h2 img {
    height: 88px
}

.footer .footer-section h3:before {
    content: "";
    position: absolute;
    width: 100px;
    height: 2px;
    background: #fff;
    bottom: 0
}

@media(max-width: 990px) {
    .footer .contact-item {
        border: none
    }
}

#button-contact-vr {
    bottom: 35px;
    right: 10px;
    margin: -10px;
    transform: scale(0.8);
    margin-bottom: 0px !important;
    position: fixed;
    z-index: 90;
}

#gom-all-in-one {
    display: flex;
    flex-direction: column-reverse;
}

#gom-all-in-one #viber-vr {
    transition: 1.3s all;
    -moz-transition: 1.3s all;
    -webkit-transition: 1.3s all;
}

#button-contact-vr .button-contact {
    position: relative;
    margin-top: -5px;
}

#button-contact-vr .button-contact .phone-vr {
    position: relative;
    visibility: visible;
    background-color: transparent;
    width: 90px;
    height: 90px;
    cursor: pointer;
    z-index: 11;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transition: visibility .5s;
    left: 0;
    bottom: 0;
    display: block;
}

#viber-vr .phone-vr-circle-fill {
    box-shadow: 0 0 0 0 #2196f3;
    background-color: rgba(33, 150, 243, 0.7);
}

.phone-vr-circle-fill {
    width: 65px;
    height: 65px;
    top: 17px;
    left: 17px;
    position: absolute;
    box-shadow: 0 0 0 0 #c31d1d;
    background-color: rgba(230, 8, 8, 0.7);
    border-radius: 50%;
    border: 2px solid transparent;
    -webkit-animation: phone-vr-circle-fill 2.3s infinite ease-in-out;
    animation: phone-vr-circle-fill 2.3s infinite ease-in-out;
    transition: all .5s;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animuiion: zoom 1.3s infinite;
    animation: zoom 1.3s infinite;
}

#button-contact-vr .button-contact .phone-vr {
    position: relative;
    visibility: visible;
    background-color: transparent;
    width: 90px;
    height: 90px;
    cursor: pointer;
    z-index: 11;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transition: visibility .5s;
    left: 0;
    bottom: 0;
    display: block;
}

.phone-vr-img-circle a {
    display: block;
    line-height: 37px;
}

.phone-vr-img-circle img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    width: 28px;
    height: 28px;
}

#viber-vr .phone-vr-img-circle img {
    width: 37px;
    height: 37px;
}

#gom-all-in-one #zalo-vr {
    transition: 1s all;
    -moz-transition: 1s all;
    -webkit-transition: 1s all;
}

#button-contact-vr .button-contact {
    position: relative;
    margin-top: -5px;
}

#zalo-vr .phone-vr-circle-fill {
    box-shadow: 0 0 0 0 #2196f3;
    background-color: rgba(33, 150, 243, 0.7);
}

#gom-all-in-one #phone-vr {
    transition: 0.7s all;
    -moz-transition: 0.7s all;
    -webkit-transition: 0.7s all;
}

#phone-vr .phone-vr-circle-fill {
    opacity: 0.7;
    box-shadow: 0 0 0 0 #dd2223;
}

.phone-bar a,
#phone-vr .phone-vr-circle-fill,
#phone-vr .phone-vr-img-circle,
#phone-vr .phone-bar a {
    background-color: #dd2223;
}

.phone-bar a,
#phone-vr .phone-vr-circle-fill,
#phone-vr .phone-vr-img-circle,
#phone-vr .phone-bar a {
    background-color: #dd2223;
}

#phone-vr .phone-vr-circle-fill {
    opacity: 0.7;
    box-shadow: 0 0 0 0 #dd2223;
}

.phone-vr-img-circle {
    background-color: #e60808;
    width: 50px;
    height: 50px;
    line-height: 40px;
    top: 25px;
    left: 25px;
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    -webkit-animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
    animation: phone-vr-circle-fill 1s infinite ease-in-out;
}

#zalo-vr .phone-vr-img-circle {
    background-color: #2196F3;
}

#viber-vr .phone-vr-img-circle {
    background-color: #2196f3;
}

#phone-vr span {
    position: absolute;
    background: var(--color-main2);
    text-decoration: none;
    color: #fff;
    display: inline-block;
    text-align: center;
    font-weight: 500;
    font-size: 21px;
    line-height: 1.2;
    padding: 10px 12px 10px;
    border-radius: 4px;
    /* box-shadow: inset 0 -10px 0 -6px rgba(0, 0, 0, .17); */
    margin-right: 10px;
    width: 168px;
    right: 100%;
    top: 30%;
    display: none;
}

#phone-vr span::before {
    content: "";
    width: 0;
    height: 0;
    border-width: 8px;
    border-style: solid;
    border-color: transparent transparent transparent var(--color-main2);
    position: absolute;
    left: 100%;
    top: 0;
    bottom: 0;
    margin: auto;
    -ms-transition: all 200ms linear;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

#phone-vr:hover span {
    display: block;
}




@-webkit-keyframes phone-vr-circle-fill {
    0% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }

    10% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    }

    20% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    }

    30% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    }

    40% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    }

    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }

    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }
}

@-webkit-keyframes zoom {
    0% {
        transform: scale(.9)
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px transparent
    }

    100% {
        transform: scale(.9);
        box-shadow: 0 0 0 0 transparent
    }
}

@keyframes zoom {

    0% {
        transform: scale(.9)
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px transparent
    }

    100% {
        transform: scale(.9);
        box-shadow: 0 0 0 0 transparent
    }
}

@media(max-width: 1300px) {
    .footer-primary .hotline-support a span {
        font-size: 17px
    }
}

@media(max-width: 1300px) {
    .footer-primary .hotline-support a span {
        font-size: 17px
    }
}

@media(max-width: 990px) {
    .hotline-bar {
        display: none
    }
}

@media (min-width: 980px) {
    .support-bottom {
        box-shadow: none;
        border-top: none
    }
}

.support-bottom {
    width: 50px;
    bottom: 92px;
    right: 10px;
    position: fixed !important;
    z-index: 99800;
    background-color: transparent !important;
    padding: 6px 0;
    border-radius: 3px 0 0 3px;
    box-shadow: none;
    border-top: none
}

.support-bottom .btn-list {
    display: block !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    padding: 6px !important;
    justify-content: space-around !important
}

.support-bottom .btn-float-container {
    width: 100%;
    margin-bottom: 6px
}

.support-bottom a {
    width: 44px;
    height: 44px;
    line-height: 44px;
    display: inline-block !important;
    border: none !important;
    font-size: 18px !important;
    color: #fff !important;
    text-align: center !important;
    position: relative;
    border-radius: 50% !important;
    cursor: pointer !important;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .11);
    background: none
}

.support-bottom .button-call {
    background-image: url(../images/calling.gif);
    background-size: 100% 100%
}

.support-bottom i {
    width: 44px;
    height: 44px;
    display: block
}

.support-bottom i {
    font-size: 28px
}

.support-bottom .btn-float-container span {
    display: none !important
}

.support-bottom .button-messenger {
    background-image: url(../images/icon-messenger.svg);
    background-size: 75% 75% !important;
    background: #2460dd;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%
}

.support-bottom .button-zalo {
    background-image: url(../images/icon-zalo.svg)
}

.backtotop {
    cursor: pointer;
    background: #999;
    bottom: 10px;
    color: #fff !important;
    font-size: 12px;
    font-weight: 700;
    height: 40px;
    padding: 2px;
    position: fixed;
    right: 12px;
    text-align: center;
    text-transform: uppercase;
    width: 40px;
    z-index: 9999;
    border-radius: 2px
}

.backtotop svg {
    width: 28px;
    height: 22px;
    margin-bottom: -8px
}

.backtotop svg path {
    stroke: #fff
}

.footer .footer-section h2:before {
    content: "";
    position: absolute;
    width: 100px;
    height: 2px;
    background: #fff;
    bottom: 0;
}

h2.brand-name:before {
    content: "";
    background: none !important;
}

.footer .brand-name {
    margin-bottom: 0px !important;
    padding-bottom: 0px !important;
}

@media(max-width: 990px) {

    .footer .footer-content {
        gap: 25px;
    }

    .footer-section.lien-ket ul {
        grid-template-rows: repeat(2, auto);
    }
}

@media(max-width: 767px) {
    .footer-section ul li {
        font-size: 14px;
    }

    .footer-section.lien-ket ul {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-auto-flow: initial;
    }

    .footer-bottom {
        padding-top: 30px;
    }

    .footer .copyright {
        margin-top: 15px;
    }
}

@media(max-width:550px) {
    .footer .footer-section h2 {
        font-size: 17px;
    }
}