a:focus, a:hover{
    text-decoration: none;
}
/* BEGIN c-button-9 */
.c-button-1 {
    display: inline-block;
    border-radius: var(--border-radius-md);
    padding: 2px;
    color: #fcf0a4;
    background-color: transparent;
    font-size: var(--font-size-Body-2);
    font-weight: 700;
    background: linear-gradient(90deg, #fdf1a4 0%, #e7bb43 34%, #fff29e 63%, #e6bb3f 100%);
    border-radius: 8px; /* Tùy chỉnh bo góc */
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 2px solid transparent;
    background-origin: border-box;
}
.c-button-1 span {
    background-color: var(--color-primary);
    padding: 3px;
    width: 100%;
    display: block;
    padding: var(--spacing-xs) var(--spacing-lg);
    border-radius: var(--border-radius-md);
    transition: 0.5s;
}
.c-button-1:hover span {
    background-color: transparent;
    color: var(--color-primary);
}

/* END c-button-9 */
/* BEGIN c-button-4 */
.c-button-4 {
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    background-color: var(--color-primary);
    display: inline-flex;
    padding: 16px 60px;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-xs, 8px);
    font-weight: 700;
    margin-top: var(--spacing-xl);
    border-radius: 8px;
}

/* END c-button-4 */
/* Style chung s-header */
.hd-logo {
    line-height: 0;
}

.hd-menu h2 {
    font-size: inherit;
    font-weight: inherit;
}
.hd-menu h2 span,
.hd-menu-mobile h2 span {
    padding: 2px 8px;
    border-radius: var(--border-radius-round);
    background: var(--color-border-input-error);
    font-weight: 500;
    color: var(--color-text-body-3);
}
a[ht-trigger="hd-menu"] {
    display: none;
    font-size: 25px;
    line-height: 1;
    text-transform: uppercase;
}
a[ht-trigger="hd-menu"] i:first-child {
    float: left;
}
a[ht-trigger="hd-menu"] i:last-child {
    float: right;
}

@keyframes slide-up {
    0% {
        opacity: 0;
        transform: translateY(50px) translateX(50%);
    }
    100% {
        opacity: 1;
        transform: translateY(0%) translateX(50%);
    }
}

/* Style chung b-search */
[class*="b-search-"] {
    color: var(--color-text-input-default);
    font-size: 13px;
    width: 338px;
    background-color: #fff;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: stretch;
    align-items: stretch;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--color-border-input-default);
    background: var(--color-surface-input, #feffff);
}
[class*="b-search-"] > input {
    width: 100%;
    color: inherit;
    font-size: 1em;
    padding: 0 5px 0 7px;
    line-height: normal;
    border: none;
    background-color: transparent;
}
[class*="b-search-"] > input::-webkit-input-placeholder {
    color: var(--color-text-input-default);
}
[class*="b-search-"] > input::-moz-placeholder {
    color: var(--color-text-input-default);
}
[class*="b-search-"] > input:-moz-placeholder {
    color: var(--color-text-input-default);
}
[class*="b-search-"] > input:-ms-input-placeholder {
    color: var(--color-text-input-default);
}
[class*="b-search-"] > input:focus {
    outline: none;
}
[class*="b-search-"] > button {
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    font-size: 1em;
    box-shadow: none;
    line-height: 0;
}
[class*="b-search-"] > button i {
    line-height: inherit;
}

.b-search-2 > button:not([class]) {
    color: inherit;
    padding: 0;
    background-color: transparent;
}
/* BEGIN s-header-2 */
.s-header-2 {
    position: relative;
}
.s-header-2 .s_top {
    color: #fff;
    padding: var(--spacing-xs) 0;
    background-color: #05a;
    background: var(--Gradient-blue);
}
.s-header-2 .hd-search-top {
    margin-right: auto;
}
.s-header-2 .hd-contact {
    margin-left: var(--spacing-lg);
    font-size: var(--font-size-H5);
    font-weight: 700;
}
.s-header-2 .s_bot {
    box-shadow: 0px 2px 5px #999;
    z-index: 111;
}
.s-header-2 .hd-logo {
    font-size: 14px;
    padding: 0.715em 0 0.715em 0;
}
.s-header-2 .hd-logo > img {
    height: 44px;
    width: auto;
}
.s-header-2 .hd-menu {
    margin: 0 auto;
}
.s-header-2 .hd-menu > ul > li {
    display: inline-block;
    position: relative;
}
.s-header-2 .hd-menu > ul > li > a {
    display: block;
    padding: 14px var(--spacing-sm);
    line-height: 35px;
    color: var(--color-text-body-1);
    transition: all 0.3s linear;
    font-weight: 500;
    position: relative;
}
.s-header-2 .hd-menu > ul > li > a::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-border-stroke-blue);
    transform: scale(0);
    transition: 0.3s;
    position: absolute;
    left: 0;
    bottom: 0;
}
.s-header-2 .hd-menu > ul > li:hover > a::after {
    transform: scale(1);
}
.s-header-2 .hd-menu > ul > li > ul {
    visibility: hidden;
    min-width: 200px;
    background-color: #fff;
    z-index: 2000;
    position: fixed;
    left: 0;
    padding: var(--spacing-sm);
    box-shadow: 0px 62px 17px 0px rgba(186, 186, 186, 0), 0px 40px 16px 0px rgba(186, 186, 186, 0.01), 0px 22px 13px 0px rgba(186, 186, 186, 0.05),
        0px 10px 10px 0px rgba(186, 186, 186, 0.09), 0px 2px 5px 0px rgba(186, 186, 186, 0.1);
}
.s-header-2 .hd-menu > ul > li > ul > li a {
    display: block;
    padding: var(--spacing-xs);
}
.s-header-2 .hd-menu > ul > li > ul > li:hover a {
    color: var(--color-primary);
}
.s-header-2 .hd-menu > ul > li.is-active > a {
    color: var(--color-primary);
}
.s-header-2 .hd-menu > ul > li:not(.no-hover):hover > ul {
    visibility: visible;
    position: absolute;
}
.s-header-2 .hd-search {
    position: relative;
    line-height: 0;
    margin-left: 20px;
    display: none;
}
.s-header-2 .hd-search > a {
    font-size: 22px;
}
.s-header-2 .hd-search > a i {
    font-size: 0.819em;
}
.s-header-2 .hd-search > form {
    display: none;
    width: 300px;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
    z-index: 9999;
    position: absolute;
    top: calc(100% + 2px);
    right: 0;
    -webkit-animation: slide-up 0.3s;
    -o-animation: slide-up 0.3s;
    animation: slide-up 0.3s;
}
.s-header-2 .hd-search > form.is-active {
    display: -webkit-flex;
    display: flex;
}
.s-header-2 .hd-menu-mobile {
    position: absolute;
    left: -100%;
    top: 0;
    background-color: #fff;
    width: 100%;
    transition: 0.5s;
    z-index: 99999;
    height: 100vh;
}
.s-header-2 .hd-menu-mobile.is-active {
    left: 0;
}
.s-header-2 .hd-menu-mobile > ul > li a {
    display: flex;
    align-items: center;
    padding: 14px var(--spacing-md);
    font-weight: 500;
    position: relative;
    justify-content: space-between;
}
.s-header-2 .hd-menu-mobile > ul > li.hd-menu-mobile-sub > a::after {
    content: "\f105";
    font-family: FontAwesome;
    display: block;
}
.s-header-2 .hd-menu-mobile-sub-box {
    min-width: 200px;
    background-color: #fff;
    z-index: 2000;
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    padding: var(--spacing-sm);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}
.s-header-2 .hd-menu-mobile-sub-box.is-active {
    left: 0;
    opacity: 1;
    pointer-events: visible;
}
.s-header-2 .hd-menu-mobile-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md);
}
.s-header-2 .hd-menu-mobile-top-logo {
    margin: 0 auto;
}
.s-header-2 .hd-menu-mobile-top-logo img {
    height: 40px;
}
.s-header-2 .hd-menu-mobile-top-close {
    font-size: 30px;
}
.s-header-2 .hd-menu-mobile-top-title {
    font-size: var(--font-size-H6);
    font-weight: 700;
}
.s-header-2 .hd-menu-mobile-top-back {
    font-size: 22px;
    color: #7a7a7a;
}

/* END s-header-2 */
.s-footer-1 {
    background: url(../images/background_footer.png);
    background-size: cover;
    background-position: center;
    margin-top: 80px;
}
.s-footer-1 .ft-dcm {
    /* margin-bottom: 46px; */
    text-align: center;
    transform: translateY(-46px);
}
.s-footer-1 .ft-top {
    background: url(../images/background_footer.png);
    background-size: cover;
}
.s-footer-1 .ft-dcm img {
    width: 450px;
    margin: 0 auto;
}
.s-footer-1 .ft-logo {
    margin-bottom: 20px;
}
.s-footer-1 .ft-logo img {
    width: 130px;
}
.s-footer-1 .ft-menu li {
    color: var(--color-text-body-1);
    margin-bottom: var(--spacing-sm);
    display: flex;
    gap: 8px;
}
.s-footer-1 .ft-menu li div span {
    display: block;
}
.s-footer-1 .ft-title {
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
}
.s-footer-1 .ft-center {
    display: flex;
    align-items: center;
    justify-content: center;
}
.s-footer-1 .ft-info {
    text-align: left;
}
.s-footer-1 .ft-social {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}
.s-footer-1 .ft-social a {
    font-size: 16px;
}
.s-footer-1 .ft-social a img {
    filter: grayscale(1);
    transition: 0.5s;
}
.s-footer-1 .ft-social a:hover img {
    filter: grayscale(0);
}
.s-footer-1 .ft-bot {
    color: #fff;
    padding: var(--spacing-xs) 0;
    background: var(--Gradient-blue);
    margin-top: 56px;
    text-align: center;
}
.headline-1 {
    margin-bottom: var(--spacing-md);
    font-size: var(--font-size-H3);
    font-style: normal;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}
.headline-1 .sub {
    color: var(--color-text-heading-1);
}
.headline-1 .title {
    color: var(--color-text-heading-2);
    text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.7);
}
.c-form-border {
    border: 1px solid #ccc;
    border-radius: 3px;
    display: flex;
    align-items: center;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--color-border-input-default);
    background: var(--color-surface-input);
    padding: 0 var(--spacing-sm);
}
.c-form-border .c_icon {
    padding: 10px 0;
}
.c-form-border .c_icon svg {
    transform: translateY(4px);
}
.c-form-border .c_input {
    height: unset;
    padding: 10px;
}
.c-form-border .c_input:focus {
    outline: none;
    border-color: #05a;
}

.c-form-border.is-error {
    margin-bottom: 1.786em;
    border-color: #f55145;
}
.c-form-border.is-error .c_label {
    color: #f55145 !important;
}
.c-form-border.is-error .c_icon + .c_error {
    left: 0.143em;
    text-align: left;
}
.c-form-border.is-error .c_icon + .c_error > span {
    left: 0;
    margin: 0;
}
.c-form-border textarea.c_input + .c_error span {
    position: absolute;
    width: max-content;
    right: 0;
    top: calc(100% + 1px);
}

/* BEGIN s-tab-4 */
.s-tab-4 .s_menu {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
    margin-top: 32px;
}

.s-tab-4 .s_menu > li a {
    display: block;
    padding: unset;
    color: #444;
    font-weight: 400;
    text-align: center;
    cursor: pointer;
    border-radius: 30px;
    transition: 0.3s;
}

.s-tab-4 .s_menu > li a i {
    display: block;
    font-size: 20px;
    line-height: 30px;
}
.s-tab-4 .s_content {
    padding: 20px 0;
}
.s-tab-4 .s_content > div {
    display: none;
}
.s-tab-4 .s_content > div:first-child {
    display: block;
}
.s-tab-4.s-tab--icon .s_menu div a {
    border-radius: 5px;
}

/* END s-tab-4 */
.s-tab-4 {
    background-image: linear-gradient(
            180deg,
            #fff 4.18%,
            rgba(255, 255, 255, 0.61) 12.62%,
            rgba(255, 255, 255, 0) 46.34%,
            rgba(255, 255, 255, 0.54) 81.01%,
            #fff 97.88%
        ),
        url(../images/bg/bg-address.jpg);
    background-size: cover;
    background-position: center;
    padding-bottom: 80px;
}
.s-tab-4 .arrow-box {
    width: 90%;
    margin: 0 auto;
}
.s-tab-4 .swiper {
    width: 90%;
}
.s-tab-4 .swiper .swiper-button-prev,
.s-tab-4 .swiper .swiper-button-next {
    opacity: 0;
}
.card-address {
    border-radius: var(--border-radius-lg);
    background: #feffff;
    box-shadow: 0px 34px 10px 0px rgba(186, 186, 186, 0), 0px 22px 9px 0px rgba(186, 186, 186, 0.01), 0px 12px 7px 0px rgba(186, 186, 186, 0.05),
        0px 5px 5px 0px rgba(186, 186, 186, 0.09), 0px 1px 3px 0px rgba(186, 186, 186, 0.1);
}
.card-address img {
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}
.card-address .card-address-info {
    padding: var(--spacing-md);
}
.card-address h3 {
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}
.card-address .card-map {
    display: block;
    text-align: right;
    margin-top: var(--spacing-md);
    text-decoration: underline;
    color: var(--color-primary);
}
.card-address svg {
    transform: translateY(4px);
    margin-right: 8px;
}
#swiper-banner-mobile {
    display: none;
}
.arrow-box {
    position: relative;
}
.arrow-box-next,
.arrow-box-prev {
    position: absolute;
    top: 50%;
    font-size: 32px;
    transform: translateY(-50%);
    color: #b0b0b0;
    cursor: pointer;
    transition: 0.5s;
}
.arrow-box-next:hover,
.arrow-box-prev:hover {
    color: var(--color-primary);
}
.arrow-box-next {
    right: 0;
}
.arrow-box-prev {
    left: 0;
}
.swiper-banner .swiper-button-next,
.swiper-banner .swiper-button-prev {
    opacity: 0;
    transition: 0.5s;
}
.swiper-banner:hover .swiper-button-next,
.swiper-banner:hover .swiper-button-prev {
    opacity: 1;
}
.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
    color: #b3a9a9;
}
/* BEGIN s-breadcrumb-1 */
.s-breadcrumb-1 {
    font-size: 14px;
    margin-bottom: 30px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    margin: var(--spacing-xl) 0;
}
.s-breadcrumb-1 li:not(:first-child)::before {
    content: "\f101";
    font-family: FontAwesome;
    font-size: 0.786em;
    margin: 0 0.637em;
    color: #888;
}
.s-breadcrumb-1 li:first-child a > i {
    font-size: 1.429em;
}
.s-breadcrumb-1 li a {
    color: #636363;
}
.s-breadcrumb-1 li a:hover {
    color: var(--color-primary);
}

/* END s-breadcrumb-1 */
@media (min-width: 992px) {
    .s-tab-4 .s_menu > li a::after {
        content: "";
        display: block;
        width: 0;
        height: 2px;
        background-color: var(--color-primary);
        transition: 0.5s;
    }
    .s-tab-4 .s_menu > li a:hover::after,
    .s-tab-4 .s_menu > li.is-active a::after {
        width: 100%;
    }
    .s-tab-4 .s_menu > li:not(:last-child) a {
        margin-right: 40px;
    }
}
@media screen and (max-width: 1259px) {
    .s-header-2 .hd-menu > ul > li > a {
        padding: 14px 4px;
    }
}
@media screen and (max-width: 991px) {
    .s-header-2 .hd-menu {
        display: none;
    }
    .s-header-2 a[ht-trigger="hd-menu"] {
        display: block;
    }
    .s-header-2 .hd-search {
        display: block;
        position: unset;
    }
    .s-header-2 .hd-logo {
        margin: 0 auto;
    }
    .s-header-2 .hd-search-top {
        display: none;
    }
    .s-header-2 .hd-contact {
        margin-left: auto;
    }
    .s-footer-1 .ft-center {
        display: block;
        margin: var(--spacing-lg) 0;
    }
    .s-footer-1 .ft-bot {
        margin-top: 20px;
    }
    .s-tab-4 .s_menu {
        justify-content: flex-start;
        gap: 8px;
    }
    .s-tab-4 .s_menu li {
        width: calc(100% / 3 - 8px);
    }
    .s-tab-4 .s_menu li a {
        border-radius: var(--border-radius-md);
        border: 1px solid var(--color-border-divider-disabled, #d1d1d1);
        color: #6d6d6d;
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    .s-tab-4 .s_menu li.is-active a {
        background-color: var(--color-primary);
        color: #fff;
    }
    .s-tab-4 .arrow-box {
        width: 100%;
    }
    .s-tab-4 .swiper {
        width: 100%;
    }
}
@media screen and (max-width: 575px) {
    .s-header-2 .hd-logo > div,
    .s-header-2 .hd-social {
        display: none;
    }

    .s-header-2 .hd-search > form {
        width: 95%;
        right: 50%;
        transform: translateX(50%);
        margin-top: var(--spacing-md);
    }
    #swiper-banner-mobile {
        display: block;
    }
    #swiper-banner-destop {
        display: none;
    }
    ul.s-breadcrumb-1{
        display: inline;
    }
    ul.s-breadcrumb-1>li{
        display: inherit;
    }
    .container-editor > .row {
        padding-top: 20px;
      }
      .container-editor {
        padding-top: 20px;
      }
      .col-1,.col-2,.col-3 {
        width: 100%;
      }
}
.clear40{
    clear:both;
    margin: 20px 0;
    height: 40px;
}
.maincontent img{
    height: auto;
    /* height: auto!important; */
}
img.img-logo-mnmb{
    max-width: 200px;
}
/**Nút gọi điện*/
.block-media-contact {
    z-index: 9999;
    position: fixed;
    right: 20px;
    bottom: 250px;
}
.block-media-contact .call-now-button {
    display: flex !important;
    background: #193560;
}
.block-media-contact .call-now-button {
    display: none;
    clear: both;
    margin: 0 auto;
    border-radius: 50px;
    position: relative;
    margin-top: 60px;
}
.block-media-contact .call-now-button div p {
    color: #eee;
    display: table;
    padding: 10px;
    border-radius: 21px;
    height: 34px;
    line-height: 14px;
    font-size: 14px;
    margin: 8px 5px 8px 50px !important;
    text-transform: uppercase;
    font-weight: 400;
    text-align: center;
    box-sizing: content-box;
    text-decoration: none !important;
    box-sizing: border-box;
}
.block-media-contact .call-now-button .call-text {
    color: #eee;
}
.footer-bottom .block-media-contact p:not(.widgettitle):not(.widget-title), .footer-bottom .block-media-contact-right p:not(.widgettitle):not(.widget-title) {
    margin-bottom: 0;
}
.block-media-contact .quick-alo-ph-img-circle.shake {
    width: 50px;
    height: 50px;
    top: 0;
    right: 10px;
    position: absolute;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid transparent;
    opacity: 1;
    background: var(--background);
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    background-size: contain;
}
.block-media-contact .call-now-button.active-ring .quick-alo-ph-img-circle.shake {
    -webkit-animation: quick-alo-circle-img-anim 1s infinite ease-in-out;
    -moz-animation: quick-alo-circle-img-anim 1s infinite ease-in-out;
    -ms-animation: quick-alo-circle-img-anim 1s infinite ease-in-out;
    -o-animation: quick-alo-circle-img-anim 1s infinite ease-in-out;
    animation: quick-alo-circle-img-anim 1s infinite ease-in-out;
}
@-moz-keyframes quick-alo-circle-anim {
    0% {
        -moz-transform: rotate(0) scale(.5) skew(1deg);
        opacity: .1;
        -moz-opacity: .1;
        -webkit-opacity: .1;
        -o-opacity: .1
    }
    30% {
        -moz-transform: rotate(0) scale(.7) skew(1deg);
        opacity: .5;
        -moz-opacity: .5;
        -webkit-opacity: .5;
        -o-opacity: .5
    }
    100% {
        -moz-transform: rotate(0) scale(1) skew(1deg);
        opacity: .6;
        -moz-opacity: .6;
        -webkit-opacity: .6;
        -o-opacity: .1
    }
}

@-webkit-keyframes quick-alo-circle-anim {
    0% {
        -webkit-transform: rotate(0) scale(.5) skew(1deg);
        -webkit-opacity: .1
    }
    30% {
        -webkit-transform: rotate(0) scale(.7) skew(1deg);
        -webkit-opacity: .5
    }
    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        -webkit-opacity: .1
    }
}

@-o-keyframes quick-alo-circle-anim {
    0% {
        -o-transform: rotate(0) kscale(.5) skew(1deg);
        -o-opacity: .1
    }
    30% {
        -o-transform: rotate(0) scale(.7) skew(1deg);
        -o-opacity: .5
    }
    100% {
        -o-transform: rotate(0) scale(1) skew(1deg);
        -o-opacity: .1
    }
}

@-moz-keyframes quick-alo-circle-fill-anim {
    0% {
        -moz-transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2
    }
    50% {
        -moz-transform: rotate(0) -moz-scale(1) skew(1deg);
        opacity: .2
    }
    100% {
        -moz-transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2
    }
}

@-webkit-keyframes quick-alo-circle-fill-anim {
    0% {
        -webkit-transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2
    }
    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        opacity: .2
    }
    100% {
        -webkit-transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2
    }
}

@-o-keyframes quick-alo-circle-fill-anim {
    0% {
        -o-transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2
    }
    50% {
        -o-transform: rotate(0) scale(1) skew(1deg);
        opacity: .2
    }
    100% {
        -o-transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2
    }
}

@-moz-keyframes quick-alo-circle-img-anim {
    10% {
        transform: rotate(0) scale(1) skew(1deg);
        -moz-transform: rotate(-25deg) scale(1) skew(1deg)
    }
    20% {
        -moz-transform: rotate(25deg) scale(1) skew(1deg)
    }
    30% {
        -moz-transform: rotate(-25deg) scale(1) skew(1deg)
    }
    40% {
        -moz-transform: rotate(25deg) scale(1) skew(1deg)
    }
    50% {
        -moz-transform: rotate(0) scale(1) skew(1deg)
    }
    100% {
        -moz-transform: rotate(0) scale(1) skew(1deg)
    }
}

@-webkit-keyframes quick-alo-circle-img-anim {
    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)
    }
}

@-o-keyframes quick-alo-circle-img-anim {
    0% {
        -o-transform: rotate(0) scale(1) skew(1deg)
    }
    10% {
        -o-transform: rotate(-25deg) scale(1) skew(1deg)
    }
    20% {
        -o-transform: rotate(25deg) scale(1) skew(1deg)
    }
    30% {
        -o-transform: rotate(-25deg) scale(1) skew(1deg)
    }
    40% {
        -o-transform: rotate(25deg) scale(1) skew(1deg)
    }
    50% {
        -o-transform: rotate(0) scale(1) skew(1deg)
    }
    100% {
        -o-transform: rotate(0) scale(1) skew(1deg)
    }
}
/**Nút gọi điện*/
/**tra cứu bảo hành*/
.block-ttbh p{
    margin-bottom: 10px;
}
.block-ttbh table{
    width: 100%;
}
.block-ttbh table tr,
.block-ttbh table tr td,
.block-ttbh table tr th{
    border: 1px solid #ccc;
    padding: 10px;
}
.block-ttbh table tr td,
.block-ttbh table tr th{
    width: 50%;
}
.block-ttbh{
    overflow: auto;
}

.main-thong-tin-bao-hanh{
    /* background: url(../img/bn-bg.jpg) top center no-repeat; */
    background-size: cover;
    padding: 80px 0;
    position: relative;
}
.main-thong-tin-bao-hanh:before{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: var(--color-primary);
}
.main-thong-tin-bao-hanh .container{
    position: relative;
    z-index: 9;
}
.ip-ttbh {
    padding: 6px 12px;
    width: 240px;
    text-align: center;
    border-radius: 4px;
    border: none;
}
.sm-ttbh {
    background: #16666f;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
}
/**tra cứu bảo hành*/
.modal-system form {
    width: 50%;
    margin: 0 auto;
}
.btn-sys {
    border-radius: 50px;
    border: none;
    font-style: italic;
    background: #3b7663;
    min-width: 80px;
    display: inline-block;
    padding: 7px 10px;
    color: #fff;
}
.hot-sys {
    font-family: futurabook;
    text-transform: uppercase;
    color: #909393;
    text-align: center;
    font-style: italic;
    font-size: 20px;
}
.hot-sys a {
    color: #3b7663 !important;
    font-weight: 700;
}
.center {
    text-align: center;
}
.clear20 {
clear: both;
height: 20px;
}

.pagi a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    margin-right: 2px;
    background-image: var(--Gradient-blue);
    color: #fff;
}
.pagi a.active,
.pagi a:hover{
    background: #16666f;
}
.news_content > h3 {
min-height: 36px;
}
.quangcao{
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 99;
}
.bn-quangcao{
    position: relative;
}
.bn-quangcao img {
    max-width: 300px;
  }
.close-qc{
    position: absolute;
    top: -16px;
    right: -16px;
    z-index: 999;
}
.close-qc img {
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 50%;
}

.hide767 {
    display: block;
}
.show767 {
display: none;
}
@media (max-width: 767px) {
    .hide767 {
        display: none;
    }
    .show767 {
    display: block;
    }
    .maincontent iframe{
        max-width: 100%!important;
        
    }
}
.maincontent ul {
    list-style: disc;
    padding-left: 30px;
}

.block-mucluc {
    padding: 15px;
    background: #f5fbff;
    margin: 20px 0;
    color: #0067b2;
    border: 1px solid #ccc;
    font-size: 15px;
}
.top-mucluc {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    color: #000;
}
.content-mucluc {
    font-weight: 700;
    margin-left: 10px;
}
.bottom-mucluc {
    line-height: 25px;
    display: none;
}
.bottom-mucluc ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.bottom-mucluc ul li a {
    color: #0067B2;
}
.bottom-mucluc ul li ul {
    padding-left: 20px;
}
.top-mucluc .flex {
display: flex;
align-items: center;
}
.maincontent h1, .maincontent h2, .maincontent h3 {
margin: 8px 0;
}
.maincontent {
line-height: 1.6;
}
.modal-body .center img {
    width: 250px;
    margin: 0 auto;
}
div#contact-menu{
	display:none;
}
div#contact-menu {
    position: fixed;
    z-index: 3;
    right: 25px;
    top: 110px;
    width: 80px;
    text-align: center;
    box-shadow: 0 19px 35px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
    border-radius: 35px;
    padding: 25px 0 20px;
    background: #fff;
}

div#contact-menu ul {
    list-style: none;
    padding: 0;
}

div#contact-menu ul li {
    padding: 2px 0;
}

div#contact-menu ul li a {
    font-size: 14px;
    white-space: nowrap;
    color: #0d6799;
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

div#contact-menu ul li a img {
    margin: 0 auto;
}

@media screen and (max-width: 991.98px) {
    div#contact-menu {
        bottom: 0;
        left: 0;
        top: auto;
        width: 100%;
        padding: 10px 0 1px;
        background: var(--Gradient-blue);
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
        border-radius: 30px 30px 0px 0px;
    }

    div#contact-menu > ul {
        display: flex;
        flex-direction: row;
    }

    div#contact-menu > ul > li {
        width: 25%;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    div#contact-menu > ul > li img {
        height: 35px;
    }

    div#contact-menu > ul > li a {
        color: #fff;
        font-weight: normal;
    }
}

.is-pc {
    display: block;
}

@media screen and (max-width: 767px) {
	
div#contact-menu{
	display:block;
}
    .bubleicon,
	.quangcao,
	.is-pc {
        display: none !important;
    }
}
.is-sp {
    display: none !important;
}

@media screen and (max-width: 767px) {
    .is-sp {
        display: block !important;
    }
}
