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

.menu-mobile {
    top: 0;
    left: -100%;
    height: 100%;
    width: 80%;
    background: #fff;
    z-index: 3;
    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;
    font-weight: 900;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
}

.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: 120px;
    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;
    left: 0;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
}

.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;
}

.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/bg-4-min.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-top: 8px dashed #cceffe;
    position: relative;
}

.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;
}

.coppy-right {
    font-size: 18px;
}

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

.footer-content {
    background: #fff;
    border-radius: 10px;
    padding: 60px 105px 60px;
    overflow: hidden;
    z-index: 3;
}

/* ====== POPUP ====== */
#popup {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 11;
    display: none;
    transform: translate(-50%, -50%);
    width: 100%;
}

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

.popup-main {
    width: 800px;
    max-width: 90%;
    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: 90px;
    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;
}

.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%);
}

.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;
}

.catagory-main {
    background-color: var(--bg-color);
}

/* ====== WARRANTY ====== */


.warranty-item {
    background: url('../../img/bg1234.jpg');
    background-repeat: no-repeat;
    background-position: left;
    z-index: 1;
    border-radius: 0px 80px 0px 80px;
    padding: 60px 170px 120px;
    position: relative;
    background-size: cover;
}

.warranty-content {
    background: #fff;
    border-radius: 10px;
    width: 600px;
    max-width: 100%;
    padding: 40px;
    border-radius: 0px 80px 0px 80px;
}

.warranty-heading,
.warranty-description {
    text-align: center;
}

.warranty-check,
.warranty-info {
    width: 400px;
    margin: 0 auto;
    max-width: 80%;
    text-align: center;
}

.warranty-info {
    margin-top: 20px;
}

.warranty-sales {
    left: 20px;
    bottom: -10px;
}

.warranty-info table {
    font-size: 16px;
    text-align: left;
}

.warranty-info table td {
    padding: 10px;
}

.warranty-info p {
    font-size: 18px;
}

.warranty-close {
    text-align: center;
}

.catagory-main .warranty-item {
    border-radius: initial;
}

.new-item {
    background: #fff;
    border: 1px solid #f0f0f0;
}

.new-body {
    overflow: hidden;
}

.new-line {
    background-color: #8ccbea;
    height: 100px;
    width: 100px;
    right: -32px;
    bottom: -69px;
    rotate: 330deg;
}

.new-line::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: inherit;
    opacity: 0.5;
    right: 34px;
    bottom: 11px;
    rotate: 0deg;
}

.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;
}

.popup-content small {
    display: block;
    font-size: 13px;
}