/* ======= menu-mobile ====== */

.menu-mobile {
    top: 0;
    left: -100%;
    height: 100%;
    width: 80%;
    background: #fff;
    z-index: 5;
    transition: all .2s linear;
}

.menu-mobile-main li:not(:last-child) {
    margin-bottom: 14px;
}

.menu-mobile-main a {
    color: var(--text-color);
    font-size: 16px;
}

.menu-mobile .menu-mobile-main li a {
    position: relative;
}

.menu-mobile .menu-mobile-main .parent::before {
    content: '\f078';
    font-family: var(--fontAwesome);
    display: block;
    padding: 10px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    font-weight: 900;
}

.elementBefore::before {
    content: '\f077' !important;
    font-family: var(--fontAwesome);
    display: block;
    padding: 10px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
}

.parent+ul {
    left: -100%;
    position: relative;
    display: none;
}

.menu-mobile .menu-mobile-main .submenu {
    display: block;
    left: 0;
    margin: 20px 0 20px 20px;
    animation: showSubMenuMobile .3s ease-in-out forwards;
}

.menu-mobile .menu-mobile-main .submenu li {
    list-style: disc;
    margin-left: 20px;
}

@keyframes showSubMenuMobile {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}

.showMenu {
    left: 0;
    animation: showMenuMain .3s linear forwards;
    transition: all .3s linear;
}

@keyframes showMenuMain {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }

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

.overlay {
    height: 100%;
    width: 100%;
    background: #000000a8;
    top: 0;
    left: -100%;
    opacity: 1;
}

.showOverlay {
    z-index: 2;
    left: 0;
    animation: showOverlay .5s ease-in-out forwards;
}

@keyframes showOverlay {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ======= slide ======== */
.slide-mobile {
    display: none;
}

.slide-pc img {
    width: 100%;
}

.swiper-button-next,
.swiper-button-prev {
    border-radius: 50%;
    background: var(--bg-color);
    color: var(--red-color);
    width: 40px;
    height: 40px;
    border: 1px solid #ffb800;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}



/* ===== HEADE-MENU ======*/
.header-left {
    text-align: center;
}

.logo img {
    width: 180px;
    max-width: 100%;
}

.form-search input {
    border-radius: 20px;
    padding-right: 60px;
}

.icon-search {
    height: 100%;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    background: var(--main-color);
    display: flex;
    align-items: center;
    width: 60px;
    justify-content: center;
}

.hotline-item img {
    height: 40px;
}

.hotline-item .contain {
    width: auto;
}

/* ====== MENU PC===== */
/* .menu {
    background-color: var(--main-color);
} */

.menu ul {
    display: flex;
}

.menu ul li a {
    font-size: 16px;
    /* text-transform: uppercase; */
    padding: 14px 22px;
    /* color: #313131; */
    display: block;
}

.menu ul li a:hover {
    background-color: #038598;
    transition: background-color .2s linear;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    color: var(--white-color);
}

/* .menu ul li a.active {
    background-color: #2c8397;
} */

.menu li {
    position: relative;
}

.menu li:hover .submenu {
    display: block;
}

.menu .submenu {
    position: absolute;
    display: block;
    content: '';
    top: 100%;
    min-width: 250px;
    z-index: 3;
    background-color: var(--white-color);
    border-radius: 0px 0 8px 8px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    overflow: hidden;
    display: none;
}

.menu .submenu a {
    color: #000;
    font-size: 15px;
}

.menu .submenu a:hover {
    color: var(--white-color);
    transition: background-color .15s linear;
}

.form-search {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.box-search {
    top: -250%;
    bottom: 0;
    width: 100%;
    z-index: -1;
}

.box-search.showBoxSearch {
    top: 0;
    z-index: 1;
    background: #fff;
    animation: showBoxSearch linear .3s;
}

@keyframes showBoxSearch {
    0% {
        top: -180%;
    }

    50% {

        top: -100%;
    }

    100% {
        top: 0;
    }
}

.box-search.hiddenBoxSearch {
    animation: hiddenBoxSearch ease-out .2s;
}

@keyframes hiddenBoxSearch {
    0% {
        top: 0;
    }

    100% {
        top: -180%;
    }
}

.close-box.absolute {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
}

.footer-main {
    background-image: url('../../img/ft-bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    color: white;
    padding-top: 100px;
}

.footer-main::before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #000000;
    content: "";
    opacity: 0.90;
    z-index: -1;
}

.footer-title {
    font-size: 30px;
    z-index: 2;
}

.footer-main li {
    font-size: 16px;
    margin-bottom: 14px;
}

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

.icon-footer {
    color: var(--yellow-color);
    font-size: 18px;
    margin-right: 10px;
    margin: 0;
}

.footer-social a {
    display: flex;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    /* background: #0f2a46; */
    align-items: center;
    justify-content: center;
}

.footer-social li {
    margin-bottom: 0;
}

.coppy-right {
    font-size: 18px;
    padding: 30px 0;
    background: #ff8a00;
    color: #000;
    position: relative;
}

.coppy-right::before {
    position: absolute;
    left: 100%;
    top: 0;
    border-right: 40px solid transparent;
    border-bottom: 87px solid #ff8a00;
    content: "";
}

.footer-bottom>.col-xl-6.relative::before {
    content: '';
    position: absolute;
    display: block;
    background: #ff8a00;
    width: 100%;
    height: 100%;
    left: -50%;
}

.nav-footer li:not(:last-child) {
    margin-right: 20px;
}

.map iframe {
    width: 100%;
    height: 200px;
}

.footer-bottom {
    border-top: 1px solid #222222;
}

.footer-title.line::before {
    position: absolute;
    left: 0;
    top: 50%;
    font-size: 16px;
    line-height: 30px;
    color: #e39c05;
    font-weight: 900;
    content: "\f142";
    font-family: var(--fontAwesome);
    transform: translateY(-50%);
}

/* ====== POPUP ====== */
#popup {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 5;
    display: none;
    transform: translate(-50%, -50%);
    width: 800px;
    max-width: 90%;
}

.overlay-main {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #00000087;
    z-index: 1;
    display: none;
}

.overlay-main.open {
    display: block;
}

.popup-main {
    margin: 200px auto;
    background: var(--main-color);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.popup-main::before {
    content: '';
    position: absolute;
    display: block;
    padding: 100px;
    background: #29b1c4;
    border-radius: 50%;
    left: -50px;
    bottom: -50px;
}

.popup-main::after {
    content: '';
    position: absolute;
    display: block;
    padding: 100px;
    background: #3db7c8;
    border-radius: 50%;
    left: -30px;
    bottom: -30px;
    opacity: 0.5;
}

.popup-overlay {
    position: absolute;
    content: '';
    display: block;
    background-image: url('../../img/bg12.jpg');
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.2;
    top: -260%;
    bottom: 50px;
    left: -78px;
    width: 50%;
    rotate: 323deg;
}

.popup-title {
    text-align: center;
    width: 50%;
}

.popup-title img {
    width: 143px;
}

.popup-content {
    background-color: #fff;
    width: 50%;
    z-index: 1;
}

.popup-close {
    top: 10px;
    right: 10px;
    border: 1px solid #ccc;
    border-radius: 50%;
    height: 45px;
    width: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    cursor: pointer;
}

.zalo-btn {
    position: fixed;
    margin: 0;
    padding: 0;
    left: 0;
    bottom: 180px;
    background: #fff;
    background-color: transparent;
    cursor: pointer;
    font-size: 0;
    width: 110px;
    height: 110px;
    z-index: 1000;
}

.call-btn {
    position: fixed;
    margin: 0;
    padding: 0;
    left: 0;
    bottom: 0;
    background: #fff;
    background-color: transparent;
    cursor: pointer;
    font-size: 0;
    width: 110px;
    height: 110px;
    z-index: 1000;
}

.call-btn.call-tow {
    bottom: 90px;
}

.call-btn.call-tow .zoomIn {
    border: 2px solid #02a546;
}

.call-btn.call-tow .pulse {
    background: rgba(1, 131, 70, 0.6);
}

.call-btn.call-tow .tada {
    background: rgba(1, 131, 70, 1);
}

.call-btn.call-tow .tel {
    background: rgba(1, 131, 70, 0.8);
    border-color: rgba(1, 131, 70, 0.6);
}

.zalo-btn .zoomIn {
    width: 80px;
    height: 80px;
    border: 2px solid var(--zalo-color);
    border-radius: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -40px;
    margin-left: -40px;
    animation-name: zoomIn;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-out;
}

.call-btn .zoomIn {
    width: 80px;
    height: 80px;
    border: 2px solid #db0005;
    border-radius: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -40px;
    margin-left: -40px;
    animation-name: zoomIn;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-out;
}

.zalo-btn .pulse {
    width: 60px;
    height: 60px;
    background: var(--zalo-color);
    opacity: .75;
    border-radius: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -30px;
    margin-left: -30px;
    animation-name: pulse;
    animation-duration: .5s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
}

.call-btn .pulse {
    width: 60px;
    height: 60px;
    background: rgba(219, 0, 5, 0.6);
    border-radius: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -30px;
    margin-left: -30px;
    animation-name: pulse;
    animation-duration: .5s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
}

.zalo-btn .tada {
    overflow: hidden;
    background: var(--zalo-color);
    border-radius: 100px;
    width: 40px;
    height: 40px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -20px;
    margin-left: -20px;
    animation-name: tadaa;
    animation-duration: .5s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.call-btn .tada {
    background: #db0005;
    border-radius: 100px;
    width: 40px;
    height: 40px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -20px;
    margin-left: -20px;
    animation-name: tadaa;
    animation-duration: .5s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.call-btn .tada a:before {
    content: "\f095";
    font-size: 20px;
    font-family: var(--fontAwesome);
    text-decoration: none;
    color: #fff;
    margin-left: 10px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 900;
}

.zalo-btn a {
    display: block;
    width: 40px;
}

.zalo-btn img {
    width: 100%;
}

.call-btn .tel {
    position: absolute;
    top: 50%;
    left: 45px;
    color: #fff;
    font-size: 17px;
    width: 180px;
    text-align: center;
    padding-left: 50px;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    line-height: 36px;
    border: 1px solid #fb0309;
    border-radius: 20px;
    background: #fb0309;
    z-index: -1;
    font-weight: 700;
    font-family: Arial;
    text-shadow: 1px 1px 2px #5f5f5f;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

.call-action button {
    font-size: 16px;
    padding: 8px 14px;
}


.zalo-btn.messenger {
    bottom: 270px;
}

.heading {
    text-align: center;
    position: relative;
    display: inline-block;
    line-height: 1;
    margin-bottom: 40px !important;
}

.heading::before,
.heading::after {
    content: '';
    display: block;
    position: absolute;
    height: 10px;
    width: 220px;
}

.heading::before {
    background: url('../../img//line_titl2.png');
    background-repeat: no-repeat;
    background-position: center;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
}


.heading::after {
    background: url('../../img/line_title.png');
    background-repeat: no-repeat;
    background-position: center;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
}

.search-mobile .close-box {
    font-size: 30px;
}

.popup-search {
    position: fixed;
    top: 0;
    left: -150%;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 0;
    background: #0e0e0ec7;
    z-index: 3;
    transition: all .3s ease-in-out;
}

.search-mobile {
    max-width: 90%;
    width: 600px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 100px;
    border-radius: 20px;
}

.action-search--mobile {
    position: absolute;
    right: 0;
    top: 0;
}

.action-search--mobile input {
    padding: 8px 14px;
    background-color: var(--main-color);
    color: var(--white-color);
}

.form-search>.form-group:not(:last-child)>input {
    padding-right: 110px;
}

.close-mobile {
    font-size: 30px;
    position: absolute;
    top: 10px;
    right: 10px;
    text-align: right;
    width: 55px;
    padding: 10px;
    cursor: pointer;
}

.popup-search.open {
    animation: searchMobile .3s ease-in-out forwards;
}

@keyframes searchMobile {
    to {
        width: 100%;
        left: 0;
    }
}

.catagory__info a:hover {
    color: #038598;
}

.project-title a:hover {
    color: #ffae00;
}

.breadcrumb {
    background-color: #f7fdff;
}

.breadcrumb ul {
    display: flex;
    align-items: center;
}

.breadcrumb ul a {
    display: block;
    padding: 14px;
    font-size: 16px;
    position: relative;
}

.breadcrumb ul a.active {
    color: var(--main-color);
    pointer-events: none;
    user-select: none;
}

.breadcrumb ul a::after {
    position: absolute;
    content: '';
    display: block;
    top: 50%;
    transform: translateY(-50%);
    background-color: #c1c1cf;
    height: 10px;
    width: 2px;
    right: 0;
}

.breadcrumb ul a.active::after {
    display: none;
}

.result {
    font-size: 16px;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.result strong {
    color: red;
}

.fancybox__caption {
    font-size: 16px;
}

.action-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
    background: #FD0308;
    display: none
}

.connect-item a,
.connect-item span {
    display: block;
    color: var(--white-color);

}


.icon-connect-item {
    font-size: 20px;
}

.connect-item {
    width: 25%;
    padding: 10px;
    background: #FA3637;
    text-align: center;
}

.connect-item:not(:last-child) {
    margin-right: 10px;
}

.backtop {
    position: fixed;
    right: 0;
    bottom: 90px;
    z-index: 5;
    right: 30px;
    display: none;
}

.blade-label {
    display: inline-block;
    padding: 2px 12px;
    border-radius: 8px;
    color: var(--white-color);
    font-size: 13px !important;
}

.label-gray {
    background: #e48b05;
}

.label-green {
    background: #03aa27;
}

.label-red {
    background: #a50a0a;
}