:root {
    --color-primary: #233992;
    --maincolor: #233992;
    --color-social: linear-gradient(270deg, #BF8728 -4%, #FFE87A 24.3%, #BF8728 49.98%, #FFE87A 79.32%, #BF8728 105%);
    --color-hover: #ffe87a;
    --color-text: #1e1e1e;
    --color-tex1: #313131;
    --color-main: #233992;
    --m1: #233992;
    --m2: #233992;
}

@font-face {
    font-family: 'Archivo';
    font-weight: 400;
    font-display: block;
    src: url('../fonts/Archivo-Regular.ttf');
}

@font-face {
    font-family: 'Archivo';
    font-weight: 500;
    font-display: block;
    src: url('../fonts/Archivo-Medium.ttf');
}

@font-face {
    font-family: 'Archivo';
    font-weight: 600;
    font-display: block;
    src: url('../fonts/Archivo-SemiBold.ttf');
}

@font-face {
    font-family: 'Archivo';
    font-weight: 700;
    font-display: block;
    src: url('../fonts/Archivo-Bold.ttf');
}

@font-face {
    font-family: '1FTV';
    font-display: block;
    src: url('../fonts/1FTV-VIP-Sakana.otf');
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes shake-anim {
    0% {
        transform: rotate(0) scale(1) skew(1deg);
    }

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

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

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

@keyframes rotate {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeup {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

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

@keyframes pulse-animation {
    0% {
        transform: scale3d(1, 1, 1);
        opacity: 0;
    }

    10% {
        transform: scale3d(1.1, 1.1, 1.1);
        opacity: 1;
    }

    100% {
        transform: scale3d(1.6, 1.6, 1.6);
        opacity: 0;
    }
}

@keyframes border-animation {
    0% {
        transform: scale3d(0.6, 0.6, 0.6);
        opacity: 0;
    }

    20% {
        transform: scale3d(1.2, 1.2, 1.2);
        opacity: 1;
    }

    100% {
        transform: scale3d(1.4, 1.4, 1.4);
        opacity: 0;
    }
}

@keyframes slideAnimationlinear {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

html {
    overflow-x: hidden;
}

body {
    font-size: 14px;
    font-family: 'Archivo';
    max-width: 1920px;
    top: 0;
    position: relative;
    margin: 0 auto;
    line-height: 1.5
}

.wrap-content {
    width: 100%;
    max-width: 1230px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

.max-width {
    max-width: 1230px;
    margin: 0px auto;
    padding-left: 15px;
    padding-right: 15px;
}

img {
    max-width: 100%;
    height: auto;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
}
a:hover{text-decoration: none;}
.social-plugin {
    display: flex;
    margin-top: 10px;
    position: relative;
    z-index: 5;
}

.scale-img img {
    transform: scale(1, 1);
}

.scale-img:hover>img {
    transform: scale(1.1, 1.1);
}

.hover_sang1 {
    position: relative;
    overflow: hidden
}

.hover_sang1:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    content: '';
    z-index: 10;
    -webkit-transition: -webkit-transform 0.6s;
    transition: transform 0.6s;
    -webkit-transform: scale3d(2.2, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -120%, 0);
    transform: scale3d(2.2, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -120%, 0)
}

.hover_sang1:hover:before {
    -webkit-transform: scale3d(2.2, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 120%, 0);
    transform: scale3d(2.2, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 120%, 0)
}

.hover-img {
    position: relative;
    overflow: hidden;
    display: block;
}

.text-split {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 3;
}

.p-relative {
    position: relative;
}

.w-clear:after {
    display: block;
    content: "";
    clear: both
}

.none {
    display: none;
}

.oh {
    overflow: hidden;
}

.hiding-seo {
    display: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    margin: 0;
    -webkit-appearance: none;
}

/* Transition All */
.transition,
.btn-frame .kenit-alo-circle-fill,
.control-owl button,
.carousel-comment-media .carousel-control a span,
.menu ul li a.has-child:after,
.menu ul li ul,
.menu ul li:hover>ul,
.scale-img img,
.scale-img:hover>img,
.support-online .kenit-alo-circle-fill {
    transition: 0.3s all;
}

/*   Header   */
.header {
    position: relative;
    z-index: 9;
    background: linear-gradient(to bottom, #003573 0%, rgba(0, 0, 0, 0) 100%);
}

.header-bottom {
    position: relative;
    z-index: 53;
}

.header-bottom .wrap-content {
    min-height: 95px;
}

.logo-mn {
    position: relative;
    z-index: 52;
    text-align: center;
    /* background: url(../images/web/logo.png) no-repeat center top/100% 100%; */
    min-height: 100px;
}

.logo-mn a {
    display: block;
}

/* slideshow */
.slideshow {
    position: relative;
    z-index: 2;
    margin-top: -100px;
}

/* Menu */
.menu {
    position: relative;
    z-index: 9;
}

.menu .wrap-content {
    position: relative;
}

.menu ul.menu-main {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: space-between;
}

.menu ul {
    width: 100%;
    padding: 0;
    margin: auto;
    list-style: none
}

.menu ul li {
    position: relative;
    z-index: 1;
}

.menu ul li.line {
    position: relative;
    width: 14px;
    height: 14px;
    background: url(../images/web/line.html) no-repeat center;
    margin: 0;
}

.menu ul li.li-home a {}

.menu ul li.li-contact a {}

.menu ul li.timkiem i {
    color: #fff;
    text-align: center;
    line-height: 1.5;
    font-size: 18px;
    padding-left: 20px;
}

.menu ul li a {
    display: block;
    position: relative;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    padding: 13px 15px;
    text-decoration: none;
    cursor: pointer;
    line-height: 1.5;
    text-transform: uppercase;
}

.menu-fix .menu ul li a {
    color: #233992;
}

.menu ul li a p {
    margin-bottom: 0 !important
}

.menu ul li a.menu-mn span {
    display: inline-block;
    position: relative;
}

.menu ul li:hover>a,
.menu ul li a.active {
    /* background:url(../images/web/mn1.png) no-repeat center left; */
}

.menu ul li:hover>a span,
.menu ul li a.active span {
    /* background: var(--color-social); */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
}
.menu ul li:hover>a span:after,
.menu ul li a.active span:after {
    content:"";
    position: absolute;
    width: 100%;
    height: 1px;
    background: #fff;
    bottom: -5px;
    left: 0px;
}
.menu-fix .menu ul li:hover>a span:after,
.menu-fix .menu ul li a.active span:after {
    background: var(--color-primary);
}
.menu ul li:hover>a.has-child::after,
.menu ul li a.has-child.active::after {
    border-color: var(--color-main);
}

.menu ul li a.has-child {
    padding-right: 16px;
    margin-right: 16px
}

.menu ul li a.has-child:after {
    content: "";
    position: absolute;
    bottom: calc(50% - 1px / 2);
    right: 15px;
    width: 5px;
    height: 5px;
    border: 1px solid #000;
    border-top: 0;
    border-left: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.menu ul li ul {
    position: absolute;
    min-width: 250px;
    margin-top: 0;
    background: #ffffff !important;
    -webkit-box-shadow: 1px 1px 15px #00000026;
    box-shadow: 1px 1px 15px #00000026;
    -webkit-transform: perspective(600px) rotateX(-90deg);
    transform: perspective(600px) rotateX(-90deg);
    -webkit-transform-origin: 0 0 0;
    transform-origin: 0 0 0;
    opacity: 0;
    visibility: hidden
}

.menu ul li:hover>ul {
    -webkit-transform: perspective(600px) rotateX(0);
    transform: perspective(600px) rotateX(0);
    transform-origin: 0 0 0;
    -webkit-transform-origin: 0 0 0;
    opacity: 1;
    visibility: visible
}

.menu ul li ul li {
    margin: 0;
    background: transparent
}

.menu ul li ul li a {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    border: 0;
    border-bottom: 1px solid #ccc;
    padding: 10px .75rem 9px !important;
    text-transform: capitalize;
    letter-spacing: 0;
    border-radius: 0;
}

.menu ul li ul li:last-child a {
    padding-bottom: 10px
}

.menu ul li ul li a.has-child {
    margin-right: 0
}

.menu ul li ul li a.has-child:after {
    border-color: #000;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.menu ul li ul li a.active,
.menu ul li ul li:hover>a {
    color: var(--color-main);
    padding-left: 1.5rem !important;
    border-color: #ccc;
    background: none;
}

.menu ul li ul li:last-child>a {
    border-bottom: 0
}

.menu ul li ul li ul {
    left: 100%;
    top: 0
}

.menu_mobi,
.menu_mobi_add {
    display: none
}

/* Search */
.search {
    position: absolute;
    width: 35%;
    max-width: 300px;
    border-radius: 8px;
    border: 1px solid #BEC4CF;
    background: #fff;
    padding: 4px;
    right: 0;
    top: calc(100% + 10px);
}

.search input {
    width: calc(100% - 40px);
    color: #666;
    font-size: 14px;
    font-weight: 400;
    padding: 0 10px;
    background: transparent;
    line-height: 35px;
    border: 0 !important;
    !i;
    !;
    float: left;
    border-radius: 5px;
}

.search input::-webkit-input-placeholder {
    color: #666
}

.search input:-moz-placeholder {
    color: #666
}

.search input::-moz-placeholder {
    color: #666
}

.search input:-ms-input-placeholder {
    color: #666
}

.search input:focus,
.search input:focus-visible {
    border: none !important;
    box-shadow: none !important;
    outline: unset;
}

.search p {
    width: 35px;
    height: 35px;
    cursor: pointer;
    text-align: center;
    float: right;
    font-size: 16px;
    color: #fff;
    SVG;
    margin: 0;
    background: var(--color-main);
    border-radius: 7px;
}

.box-search {
    padding: 10px;
    border-bottom: 1px solid #f1f1f1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ds-item-search {
    width: calc(100% - 70px);
}

.ds-item-search a {
    font-size: 14px;
    color: #333;
}

.show-search {
    position: absolute;
    z-index: 9999;
    top: 100%;
    background: #fff;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

/* end */

/* Slider */
.control-owl {
    position: absolute;
    width: 100%;
    z-index: 2;
    left: 0px;
    top: calc(50% - 22.5px);
}

.control-owl button {
    opacity: 0.5;
    top: 0px;
    position: absolute;
    outline: none;
    border: 2px solid #fff;
    padding: 0px;
    margin: 0px;
    display: block;
    cursor: pointer;
    color: #ffffff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
    text-align: center;
    font-size: 25px;
    margin: 0px;
    background-color: #00a3ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-owl button:hover {
    opacity: 1;
}

.control-owl button.owl-prev {
    left: 20px;
}

.control-owl button.owl-next {
    right: 20px;
}

.box-photo-ct {
    border-radius: 20px;
    overflow: hidden;
}

.title-detail {
    position: relative;
}

.title-detail h1,
.title-main span {
    font-size: 40px;
    color: var(--color-primary);
    text-align: center;
    text-transform: uppercase;
    font-family: '1FTV';
    line-height: 1.5;
    margin-bottom: 25px;
    display: block;
}

.title-main {
    margin-bottom: 1.5rem;
    position: relative;
}

.tt-week {
    font-size: 25px;
    text-align: center;
    margin: 20px 0px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
}

.title-cat-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0px;
    gap: 20px;
}

.title-cat-main span {
    display: block;
    color: #999;
    background: linear-gradient(64.85deg, #fca600 23.67%, #ffd41d 106.12%);
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
}

.title-cat-main span:hover,
.title-cat-main span.active {
    background: linear-gradient(64.85deg, #ffd41d 23.67%, #fca600 106.12%);
    color: #000;
}

.product-page a:hover,
.product-page a.active {
    color: var(--color-hover) !important;
}

.product-page {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
    margin-top: 40px;
}

.product-page a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #644D43;
    cursor: pointer;
    font-size: 15px;
    font-weight: 400;
    border-radius: 5px;
    background: none;
    border: 1px solid #cdcdcd;
    );
    background: #fff;
}

/* Toc */
.box-readmore {
    padding: 8px 15px;
    border: 1px solid #dedede;
    margin-bottom: 2rem;
    border-radius: 5px;
    background-color: #eeeeee;
}

.box-readmore li ul>li {
    margin: 0;
    margin-bottom: 8px;
}

.box-readmore li ul>li:before {
    content: counters(item, '.') ' ';
}

.box-readmore ul {
    list-style-type: none;
    counter-reset: item;
    margin-bottom: 0px;
    padding-left: 0px !important;
    margin-top: 8px;
}

.box-readmore ul li {
    display: table;
    counter-increment: item;
    margin-bottom: 5px;
}

.box-readmore ul li:before {
    content: counters(item, '.') '. ';
    display: table-cell;
    padding-right: 5px;
}

.box-readmore ul li a {
    color: #333333;
    cursor: pointer;
    font-weight: 600;
}

.box-readmore ul li a:hover {
    color: #767676;
}

/* Partner */
.info-partner {
    background: #f8f8f8;
    padding: 15px 0px;
}

/* Tags */
.title-tags {
    position: relative;
    font-size: 1em;
    font-weight: 600;
    padding-bottom: 15px;
    margin-bottom: 15px;
    color: #777;
}

.title-tags:after {
    content: '';
    position: absolute;
    left: 0px;
    bottom: 0px;
    background-color: rgba(0, 0, 0, 0.1);
    display: block;
    height: 3px;
    width: 30px;
}

.flex-tags {
    display: flex;
    gap: 5px;
}

.flex-tags a {
    color: #333;
    border: 1px solid;
    border-radius: 3px;
    display: inline-block;
    font-size: 0.8em !important;
    opacity: 0.8;
    padding: 2px 5px;
}

.flex-tags a:hover {
    background-color: #446084;
    border-color: #446084;
    color: #fff;
    opacity: 1;
}

/* TC */
.item-criteria a {
    display: flex;
    align-items: center;
    color: #333;
}

.item-criteria a .ds-criteria {
    width: calc(100% - 60px);
    margin-left: 10px;
}

.item-criteria a .ds-criteria h3 {
    -webkit-line-clamp: 2;
    font-size: 16px;
    color: var(--color-main);
}

.item-criteria a .ds-criteria p {
    -webkit-line-clamp: 2;
    margin: 0px;
}

/* About */
.box-about {
    max-width: 700px;
    margin: 0px auto;
    text-align: center;
}

.box-about h3 {
    color: #ca0000;
    font-family: SVN;
    font-size: 22px;
    margin-bottom: 10px;
    text-transform: lowercase;
}

.box-about a {
    padding: 10px 20px;
    color: white;
    text-transform: uppercase;
    font-size: 15px;
    display: block;
    background: #ca0000;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    font-weight: 600;
    border-radius: 10px;
}

/* Service */
.item-service {
    position: relative;
}

.item-service h3 {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    color: #fff;
    text-transform: uppercase;
    padding: 10px;
    font-size: 17px;
    margin: 0px;
}

/* Sort */
.sort-select {
    display: flex;
    justify-content: end;
    margin: 20px 0px;
    position: relative;
}

.sort-select .click-sort {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    padding: 6px 10px 6px 8px;
    margin: 0px;
}

.sort-select-main {
    display: grid;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgb(0 0 0 / 20%);
    position: absolute;
    padding: 0 7px;
    top: 30px;
    right: 0;
    width: 160px;
    z-index: 2;
}

.sort-select-main p {
    border-bottom: 1px solid #f1f1f1;
    margin: 0px;
    order: 2;
}

.sort-select-main p:has(.check) {
    order: 1;
}

.sort a {
    color: #000;
    font-size: 14px;
    line-height: 17px;
    padding: 11px 3px;
    display: block;
    cursor: pointer;
}

.sort a.check i {
    box-sizing: border-box;
    position: relative;
    display: inline-block;
    transform: scale(var(--ggs, 1));
    width: 22px;
    height: 16px;
    border: 2px solid transparent;
    border-radius: 100px;
    vertical-align: middle;
}

.sort a.check i::after {
    content: '';
    display: block;
    box-sizing: border-box;
    position: absolute;
    left: 3px;
    top: -4px;
    width: 6px;
    height: 10px;
    border-width: 0 2px 2px 0;
    border-style: solid;
    transform-origin: bottom left;
    transform: rotate(45deg);
}

.sort-select .sort-show {
    padding-right: 12px;
    position: relative;
}

.sort-select .sort-show::before {
    content: '';
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #333;
    content: '';
    height: 0;
    position: absolute;
    top: 6px;
    right: 0;
    width: 0;
}

/* modal-detail */
.modal-detail::-webkit-scrollbar {
    width: 10px;
}

.modal-detail::-webkit-scrollbar-thumb {
    width: 10px;
    background: #4d90e0;
    border-radius: 10px;
    height: 50px;
}

.modal-detail {
    position: fixed;
    z-index: 999;
    background: #000000c4;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
}

.content-modal-detail {
    background: #fff;
    max-width: 1200px;
    margin: 0px auto;
    min-height: 100vh;
}

.content-modal-detail .tabs {
    display: flex;
    cursor: pointer;
    padding: 0;
    list-style: none;
    justify-content: center;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0px;
    background: #fff;
    z-index: 99;
}

.content-modal-detail .tabs li {
    padding: 20px 20px;
    margin-right: 5px;
    font-weight: bold;
    position: relative;
    border-bottom: 4px solid #fff;
}

.content-modal-detail .tabs li.active {
    color: #2d9cdb;
    border-bottom: 4px solid #2d9cdb;
}

.content-modal-detail .tab-content {
    padding: 20px;
    max-width: 900px;
    margin: 0px auto;
}

.content-modal-detail .tab-content.active {
    display: block;
}

.close-tab {
    position: fixed;
    top: 15px;
    right: 20px;
    z-index: 10;
}

.btn-closemenu {
    position: fixed;
    top: 10px;
    right: 20px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    color: #333;
    cursor: pointer;
    line-height: 21px;
    padding: 7px;
    text-align: right;
    width: 72px;
}

.btn-closemenu::before {
    transform: rotate(45deg);
}

.btn-closemenu::after {
    transform: rotate(-45deg);
}

.btn-closemenu::before,
.btn-closemenu::after {
    background-color: #333;
    content: '';
    left: 13px;
    height: 14px;
    position: absolute;
    top: 10px;
    width: 1px;
}

.cursor-pointer {
    cursor: pointer;
}

/*css CT */

/* Tien ich */
.wrap-ti {
    padding: 20px 0px;
}

.box-ti {
    background: #f1f1f1;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    min-height: 135px;
}

.wrap-ti .owl-item:nth-child(n + 1) .box-ti {
    background-color: rgb(220, 238, 255);
}

.wrap-ti .owl-item:nth-child(n + 2) .box-ti {
    background-color: rgb(254, 245, 207);
}

.wrap-ti .owl-item:nth-child(n + 3) .box-ti {
    background-color: rgb(255, 239, 219);
}

.wrap-ti .owl-item:nth-child(n + 4) .box-ti {
    background-color: rgb(225, 254, 207);
}

.ds-ti {
    width: calc(100% - 45px);
}

.ds-ti h3 {
    font-size: 15px;
}

.ds-ti h3 a {
    color: #333;
}

.ds-ti h3 a:hover {
    color: #f00;
}

/* Contact */
.contact-map {
    position: relative;
    height: 500px;
    margin-top: 30px;
}

.contact-map iframe {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
}

/*  breadCrumbs */
.breadCrumbs {
    padding: 12px 0px;
    line-height: 1.5;
    background: #f5f5f5;
}

.breadCrumbs ol {
    margin: 0px;
}

.breadCrumbs ol li a {
    color: #333;
}

.breadCrumbs ol li a:hover {
    color: var(--maincolor);
}

/* Xu huong */
.wrap-xh {
    background: linear-gradient(90deg, #ffecd2 0%, #fcb69f 100%);
    padding: 10px;
    border-radius: 10px;
}

.title-xh {
    font-size: 25px;
    margin: 20px 0px;
    color: #333;
    font-weight: 700;
    text-align: left;
    text-transform: uppercase;
}

.image-xh {
    border-radius: 10px;
    overflow: hidden;
}

.name-xh {
    text-align: center;
    color: #333;
    font-size: 16px;
    margin: 10px 0px 0px;
}

/* scrollToTop */
.scrollToTop {
    width: 41px;
    height: 41px;
    text-align: center;
    font-weight: bold;
    color: #444;
    text-decoration: none;
    position: fixed;
    bottom: 65px;
    right: 25px;
    display: none;
    z-index: 10;
    cursor: pointer;
    box-shadow: 0 0 5px #fff;
    border-radius: 5px;
}

/* Hidden Google Captcha */
.grecaptcha-badge {
    display: none !important;
    width: 0px !important;
    height: 0px !important;
    visibility: hidden !important;
    overflow: hidden;
}

[x-cloak] {
    display: none !important;
}

.scale-img {
    overflow: hidden;
    display: inline-block;
}

.sp_flex {
    margin: 0 -10px;
    display: flex;
    flex-wrap: wrap;
}

.sp_flex .product {
    width: calc(100%/4 - 20px);
    margin: 0 10px 20px;
}

.tintuc {
    width: calc(100%/3 - 20px);
    /* margin:0 10px 30px; */
}

.tintuc-slick {
    margin: 0 -10px;
}

.box-cp1 {
    display: flex;
    justify-content: center;
    margin: 10px 0;
    gap: 10px;
    flex-wrap: wrap;
}

.cp1 {
    background: transparent;
    color: #000;
    padding: 4px 17px;
    font-size: 17px;
    border-radius: 100px;
    border: 1px solid lightskyblue;
    cursor: pointer;
}

.cp1.active,
.cp1:hover {
    color: #fff;
    background: lightskyblue;
}

.title {
    text-align: center;
}

/* btn-frame */
.btn-frame {
    display: block;
    width: 50px;
    height: 50px;
    position: fixed;
    right: 20px;
    z-index: 10;
    cursor: pointer;
}

.btn-frame i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #1182fc;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-frame i img {
    vertical-align: middle;
    width: 70%;
}

.btn-frame .animated.infinite {
    animation-iteration-count: infinite;
}

.btn-frame .kenit-alo-circle {
    width: 60px;
    height: 60px;
    top: -5px;
    right: -5px;
    position: absolute;
    background-color: transparent;
    border-radius: 100%;
    border: 2px solid rgba(7, 41, 103, 0.8);
    opacity: 0.1;
    border-color: #1182fc;
    opacity: 0.5;
}

.btn-frame .zoomIn {
    animation-name: zoomIn;
}

.btn-frame .animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.btn-frame .kenit-alo-circle-fill {
    width: 70px;
    height: 70px;
    top: -10px;
    right: -10px;
    position: absolute;
    border-radius: 100%;
    border: 2px solid transparent;
    background-color: rgba(7, 41, 103, 0.35);
    opacity: 0.4;
}

.btn-frame .pulse {
    animation-name: pulse;
}

/* btn-frame */

.hidden-seoh {
    visibility: hidden;
    height: 0px;
    margin: 0px;
    overflow: hidden
}

.thongtin-mb {
    padding: 0 20px;
    margin-top: 20px;
}

.thongtin-mb i {
    color: var(--maincolor);
    margin-right: 10px;
}

.thongtin-mb span {
    color: #000;
}

.load-menu .search {
    display: none;
}

.ml-auto {
    margin-left: auto !important;
}

/* footer */
.footer {
    position: relative;
}

.footer-article {
    padding: 80px 0;
    background: #212121;
    font-size: 14px;
    color: #fff;
}

.footer-article .wrap-content {
    position: relative;
}

.footer-news:nth-child(1) {
    width: 63.5%;
}

.footer-news:nth-child(2) {
    width: 35%;
}

.footer-news2:nth-child(1) {
    width: 65.5%;
}

.footer-news2:nth-child(2) {
    width: 27%;
}

.footer-news2:nth-child(3) {
    width: 47.5%;
    padding-top: 30px;
}

.footer-news2:nth-child(4) {
    width: 49%;
    padding-top: 65px;
}

.footer-title {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 10px;
}

.footer-ft {
    display: inline-block;
    color: #fff;
    font-family: '1FTV';
    font-size: 36px;
    background: var(--color-social);
    background-clip: text;
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
    margin-bottom: 12px;
}

.contentdt-ft {
    padding: 0;
    margin: 0;
}
.footer-policy ul{
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-policy a {
    display: inline-block;
    color: #fff;
    position: relative;
    line-height: 1.5;
}

.footer-policy a:hover {
    color: var(--color-hover);
    transition: 0.5s;
}

.footer-policy a:not(:last-child) {
    margin-bottom: 10px;
}

.social-ft {
    padding-top: 10px;
}

.social-ft a {
    display: inline-block;
}

.social-ft a:not(:last-child) {
    margin-right: 8px;
}

.social-ft a img {
    max-height: 40px;
}

.btn-hotline-ft {
    display: inline-block;
    background: url(../images/web/hl.png) no-repeat center left 14px;
    padding: 6px 20px 6px 50px;
    border: 1px solid #636363;
    border-radius: 6px;
}

.btn-hotline-ft span {
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
    background: var(--color-social);
    background-clip: text;
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
    color: #fff;
}

.footer-copyright {
    position: relative;
    line-height: 1.7;
}

.footer-copyright span {
    display: inline-block;
    background: var(--color-social);
    background-clip: text;
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
    font-weight: 700;
}

#footer-map {
    width: 100%;
    background: #FFF;
    border-radius: 20px;
    padding: 4px;
}

#footer-map iframe {
    width: 100%;
    height: 200px;
    display: block;
    border-radius: 20px;
}

/* end */

/* product detail */
.grid-pro-detail {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.left-pro-detail {
    width: calc(45% - 30px);
}

.right-pro-detail {
    width: calc(55%);
}

.thumb-pro-detail,
.slick_photo1 {
    border: 1px solid #ddd;
    text-align: center;
}

.attr-pro-detail {
    margin: auto;
    padding: 0;
    font-size: 15px;
}

.desc-pro-detail {
    font-size: 15px;
}

.desc-pro-detail p {
    margin-bottom: 0.5rem
}

.right-pro-detail .title-detail h1 {
    text-align: left;
    font-size: 24px;
    margin-bottom: 10px;
}

.right-pro-detail ul {
    list-style: none;
    padding: 0px;
}

.right-pro-detail ul li {
    margin-bottom: 20px;
}

.right-pro-detail ul li .attr-content-pro-detail {
    display: inline-block;
    margin-bottom: 0px;
}

.right-pro-detail ul li .attr-content-pro-detail .price-new-pro-detail {
    font-weight: 700;
    font-size: 22px;
    color: var(--color-main);
}

.price-old-pro-detail {
    text-decoration: line-through;
    color: #666;
    padding-left: 10px;
}

.tabs-pro-detail .nav-tabs {
    margin-bottom: 10px;
}

.tabs-pro-detail .nav-link {
    color: #333;
    font-size: 15px;
}

.tabs-pro-detail .nav-link.active {
    background: var(--maincolor);
    color: #fff;
}

/* product */
.product {
    position: relative;
    display: block;
    width: calc(100%/3 - 20px);
    margin: 10px;
    overflow: hidden;
}

.product:before {
    position: absolute;
    content: '';
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    background: var(--color-text);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.pic-product {
    display: block;
    position: relative;
    margin: 0;
    overflow: hidden;
}

.pic-product .img {
    position: relative;
    width: 100%;
    aspect-ratio: 410/290;
    background: #fff;
    -webkit-mask-image: url(../images/web/sp3.png);
    mask-image: url(../images/web/sp3.png);
    mask-size: 100% 100%;
    mask-repeat: no-repeat;
}

.box-product {
    position: relative;
    display: block;
    line-height: 0;
    background: url(../images/web/sp1.png) no-repeat center top/100% 100%;
    padding: 10px;
    width: 100%;
    height: 100%;
    min-height: 490px;
}

.product:hover .box-product {
    background: url(../images/web/sp2.png) no-repeat center top/100% 100%;
    transition: 0.5s
}

.product:hover:before {
    background: var(--color-social);
    transition: 0.5s
}

.pic-product img {
    width: 100%;
    -webkit-transform-style: preserve-3d;
    height: 100%;
    object-fit: cover;
}

.product-info {
    position: relative;
    display: block;
    padding: 13px 10px 10px 10px;
    line-height: 1.5;
}

.name-product {
    color: #1F1F1F;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    margin-bottom: 0;
    transition: 0.5s;
}

.name-product.text-split {
    -webkit-line-clamp: 1;
    line-height: 33px;
    m;
    max-height: calc(33px * 1);
}

.name-product:hover {
    color: var(--color-main);
}

.loai-product {
    display: inline-block;
    color: #1F1F1F;
    font-size: 15px;
    font-style: italic;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
    border-radius: 4px;
    background: #EEE;
    padding: 6px 16px;
    min-width: 90px;
    margin: 10px 0;
}

.desc-product {
    color: #444;
    line-height: 24px;
    -webkit-line-clamp: 2;
    max-height: calc(24px * 2);
}

.btn-phone-product {
    padding: 4px 10px;
}

.btn-phone-product a {
    position: relative;
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    background: var(--color-text);
    align-items: center;
    padding: 2px;
    padding-right: 20px;
    border-radius: 50px;
}

.btn-phone-product a i {
    width: 34px;
    height: 34px;
    background: var(--color-social);
    border-radius: 50%;
    margin-right: 9px;
}

.btn-phone-product a:hover {
    background: var(--color-main);
    transition: 0.5s;
}

.btn-phone-product a:hover i {
    background: var(--color-text);
    transition: 0.5s;
}

.price-product {
    position: relative;
    margin: 0;
    padding-top: 5px;
}

.price-product b {
    font-weight: 400;
    text-transform: capitalize;
}

.price-new {
    position: relative;
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--color-hover);
}

.price-old {
    color: #7E8286;
    font-size: 15px;
    padding-left: 8px;
    text-decoration: line-through;
}

.price-per {
    display: inline-block;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    line-height: normal;
    border-radius: 8px;
    background: #DF4447;
    padding: 5px 6px;
    margin: 0 10px;
}

.flex-product {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

.page-item.active .page-link {
    background: var(--maincolor);
    border-color: var(--maincolor);
}

.page-link {
    color: #6c757d;
    font-weight: 350;
}

.flex-news {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

input:focus {
    box-shadow: unset !important;
}

.hidden {
    display: none;
}

.statistic {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
}

.item-news {
    position: relative;
    width: calc(100%/2 - 30px);
    margin: 15px;
}

.img-news-dt1 {
    line-height: 0;
    width: 35%;
}

.img-news-dt {
    width: 100%;
    border-radius: 7px;
}

.ds-news {
    width: calc(100% - 35% - 20px);
}

.ds-news h3 {
    font-size: 15px;
    font-weight: 700;
    color: #000;
    margin: 0 !important;
    -webkit-line-clamp: 2;
    line-height: 1.5;
}

.item-news:hover .ds-news h3 {
    transition: 0.5s;
    color: var(--color-main);
}

.ds-news .desc-news {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin-top: 7px;
}

.time-news {
    color: #000;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    background: url(../images/web/bv2.png) no-repeat center left;
    padding-left: 25px;
    margin-bottom: 5px;
}

.flex-newsts .time-news {
    display: block;
}

.menu-fix {
    position: fixed;
    left: 0px;
    right: 0px;
    top: 0px;
    z-index: 999;
    -webkit-animation: fadeInDown 1.3s ease backwards;
    -moz-animation: fadeInDown 1.3s ease backwards;
    -o-animation: fadeInDown 1.3s ease backwards;
    -ms-animation: fadeInDown 1.3s ease backwards;
    margin: 0;
    width: 100%;
    box-shadow: 0 0 5px #b6b6b6;
    max-width: 100%;
    padding: 0;
    min-width: 1356px;
    background: #fff;
}

.swiper,
.slick-none {
    display: none;
}

.swiper.swiper-horizontal,
.slick-none.slick-slider {
    display: block;
}

.wrap-home {}

.wap_1300 {
    max-width: 1300px;
    width: calc(100% - 20px);
    margin: 0 auto;
}

.contact-form .btn-primary {
    background: var(--color-main);
    border-color: var(--color-main);
}

.tieude1 {
    position: relative;
    text-align: center;
    color: var(--color-tex1);
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 35px;
}

.tieude1 h2 {
    display: inline-block;
    color: var(--color-text);
    text-align: center;
    font-size: 40px;
    font-family: '1FTV';
    font-weight: normal;
    line-height: 1.5;
    text-transform: uppercase;
    /* background: url(../images/web/td1.png) no-repeat top 60% left, url(../images/web/td2.png) no-repeat top 60% right; */
    /* padding: 0 60px; */
    margin-bottom: 5px;
}

/* gioi thieu */
.wrap-aboutHome {
    position: relative;
    padding: 70px 0 75px 0;
    /* background: url(../images/web/bg1.png) no-repeat center top/cover; */
}

.left-aboutHome {
    width: 43%;
    order: 2;
}

.right-aboutHome {
    position: relative;
    width: 53%;
    padding-top: 95px;
    /* background: url(../images/web/gt2.png) no-repeat top 7px right; */
}

.right-aboutHome:before {
    position: absolute;
    content: '';
    width: 80px;
    height: 35px;
    background: url(../images/web/gt1.png) no-repeat center;
    right: 100%;
    top: 31%;
    display: none;
}

.aboutHome-info {
    position: relative;
}

.title-aboutHome {
    position: relative;
    margin-bottom: 28px;
}

.title-aboutHome span {
    display: block;
    color: var(--color-tex1);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 3.6px;
    margin-bottom: -10px;
}

.title-aboutHome h2 {
    position: relative;
    color: var(--color-primary);
    font-size: 50px;
    font-family: "1FTV";
    line-height: 1.5;
    margin-bottom: 0;
}

.desc-aboutHome {
    color: #2B2C37;
    font-size: 14px;
    line-height: 24px;
    max-height: 190px;
    overflow-y: auto;
    padding-right: 5px;
}

.desc-aboutHome::-webkit-scrollbar {
    background: #fff;
    width: 4px;
    height: 11px;
}

.desc-aboutHome::-webkit-scrollbar-thumb {
    background: var(--color-text);
}

.view-aboutHome {
    padding-top: 40px;
}

.xt_gt {
    position: relative;
    display: inline-block;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 42px;
    background: var(--color-primary);
    clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
    padding-right: 4px;
    min-width: 150px;
    text-align: center;
}

.xt_gt:before {
    position: absolute;
    content: '';
    width: 27px;
    height: 100%;
    background: var(--color-main);
    clip-path: polygon(83% 0%, 100% 0%, 75% 100%, 0% 100%);
    right: -1px;
    top: 0;
}

.xt_gt span {
    display: inline-block;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    background: var(--color-social);
    background-clip: text;
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
}

.xt_gt:hover {
    background: var(--color-main);
    transition: 0.5s
}

.xt_gt:hover:before {
    background: #000
}

.xt_gt:hover span {
    background: unset;
    background-clip: unset;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    color: #fff
}

/* end */

/* tieu chi */
.wrap-tieuchi-tc {
    background: url(../images/web/bg2.png) no-repeat center top/cover;
    padding: 85px 0 65px 0;
    /* background: var(--color-primary); */
}

.item_db .it_db {
    position: relative;
    text-align: center;
}

.item_db .img_tt {
    width: 96px;
    height: 108px;
    /* background: url(../images/web/tc.png) no-repeat center; */
    margin: 0 auto;
    padding-top: 7px;
    background: var(--color-primary);
    clip-path: polygon(0 25%, 50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%);
}

.item_db .img_tt img {
    position: relative;
    width: auto;
    transition: all 1s ease;
    aspect-ratio: 67/58;
}

.item_db:hover .img_tt img {
    transform: rotateY(360deg);
}

.item_db .info_tt {
    padding-top: 15px;
    max-width: 130px;
    margin: 0 auto;
}

.item_db .name_tt {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    -webkit-line-clamp: 2;
    line-height: 32px;
    max-height: calc(32px * 2);
    margin-bottom: 0;
}

/* end */

/* sanpham nb*/
.wrap-productnb-tc {
    padding: 70px 0 80px 0;
    background: url(../images/web/bg3.png) no-repeat top center/cover;
}

.pronb-slide .product {
    width: 100%;
    margin: 0;
}

.xemth_sp {
    text-align: center;
    padding-top: 40px;
}

/* end */

/* fanpage - video - tkitok */
.wrap-video-tc {
    padding: 80px 0;
    background: url(../images/web/vd2.png) no-repeat center left, url(../images/web/vd2.png) no-repeat center right, url(../images/web/bg5.png) no-repeat center top/cover;
}

.video-tc {
    max-width: 1000px;
    margin: 0 auto;
}

.item_vd a {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.item_vd a:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: url(../images/web/vd1.png) no-repeat center;
    pointer-events: none;
    left: 0;
    top: 0
}

.item_vd a img {
    aspect-ratio: 1000/530;
    width: 100%;
    object-fit: cover;
}

.wrap-manglk-dv {
    padding: 80px 0 40px 0;
}

.social-flex-tc {
    max-width: 1180px;
    margin: 0 auto;
}

.social-flex {
    margin: 0 -30px;
}

.item_sc {
    width: calc(100%/2 - 60px);
    margin: 0 30px;
}

.footer-tt {
    position: relative;
    color: var(--color-text);
    font-size: 30px;
    font-family: '1FTV';
    line-height: 1.5;
    text-transform: capitalize;
    border-bottom: 1px solid #EDEDED;
    padding: 15px 0 15px 55px;
    margin-bottom: 20px;
}

.footer-tk1 {
    background: url(../images/web/ic1.png) no-repeat center left;
}

.footer-tk2 {
    background: url(../images/web/ic2.png) no-repeat center left;
}

.footer-fanpage1 {
    padding: 0 30px 20px 30px;
    background: #FFF;
    border-radius: 10px;
    border: 1px solid #EDEDED;
}

.footer-fanpage {
    background: #fff;
    border-radius: 10px;
}

.footer-fanpage iframe {
    border-radius: 12px;
}

.item_sc .tiktok-embed {
    margin: 0;
}

.tiktok-embed iframe {
    height: 395px !important;
    max-height: 395px !important;
}

/* end */

/* doi tac */
.wrap-doitac-tc {
    padding: 40px 0 80px 0
}

.left-dt {
    width: calc(100% - 86% - 30px);
}

.right-dt {
    width: 86%;
}

.doitac-slide {
    margin: 0 -10px;
}

.item_dt a {
    display: block;
    text-align: center;
    border: 1px dashed #C8C8C8;
    background: #FFF;
    margin: 0 10px;
    padding: 7px;
}

.tieidedt {
    display: inline-block;
    color: var(--color-text);
    text-align: center;
    font-size: 30px;
    font-family: '1FTV';
    font-weight: normal;
    line-height: 1.5;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.doitacmn span {
    display: inline-block;
    margin: 0 4px;
    padding: 5px 14px;
    border-radius: 60px;
}

.doitacmn span:nth-child(1) {
    background: #F3F3F3;
}

.doitacmn span:nth-child(2) {
    background: #BCBCBC;
}

/* end */

/* tin tuc */
.wrap-newsVideo {
    position: relative;
    padding: 60px 0 100px 0;
    background: url(../images/web/bg4.png) no-repeat center top/cover
}

.left-intro {
    width: 48.5%;
    background: #FFF;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.10);
    padding: 0 19px 40px 19px;
}

.right-intro {
    width: calc(100% - 48.5% - 40px);
    background: url(../images/web/bg6.png) no-repeat center/cover;
    padding: 0 30px 52px 30px;
}

.tieude2 h2 {
    color: var(--color-text);
    font-family: "1FTV";
    font-size: 30px;
    line-height: 1.5;
    padding: 24px 0 20px 0;
    margin-bottom: 0;
}

.right-intro .tieude2 h2 {
    display: inline-block;
    background: var(--color-social);
    background-clip: text;
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
    color: #fff;
}

.newshome-slide1 {
    overflow: hidden;
}

.newshome-slide {
    margin: -19px 0
}

.box-newsHome {
    display: block;
    border: unset !important;
}

.newsHome {
    position: relative;
    line-height: 0;
    padding: 19px 0;
    border-bottom: 1px solid #E0E0E0;
}

.pic-newsHome {
    margin: 0;
    line-height: 0;
    width: 34%;
}

.pic-newsHome p {
    aspect-ratio: 350/300;
    width: 100%;
    position: relative;
}

.pic-newsHome img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-newsHome {
    width: calc(100% - 34% - 15px);
    position: relative;
}

.time-newsHome {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    background: url(../images/web/bv2.png) no-repeat center left;
    padding-left: 26px;
    margin-bottom: 5px;
}

.name-newsHome {
    position: relative;
    color: #222;
    font-size: 15px;
    font-weight: 600;
    line-height: 23px;
    -webkit-line-clamp: 2;
    max-height: calc(23px * 2);
    margin: 0;
}

.name-newsHome:hover {
    color: var(--color-hover);
    transition: 0.5s
}

.desc-newsHome {
    position: relative;
    color: #666;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    -webkit-line-clamp: 2;
    max-height: calc(22px * 2);
    margin-top: 5px;
}

.view-newsHome {
    text-align: right;
    line-height: 1.5;
    margin-top: 7px;
}

.view-newsHome span {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    background-clip: text;
    color: var(--color-primary);
}

.view-newsHome span:hover {
    color: var(--color-main);
    transition: 0.5s;
    background: var(--color-main);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* end */

/* y kien */
.wrap-ykien-tc {
    padding: 70px 0;
    background: url(../images/web/bg3.png) no-repeat top center/ cover;
}

.ykien-slide .slick-list {
    padding: 0 !important
}

.item_yk .it_yk {
    position: relative;
    line-height: 0;
}

.item_yk .img_tt {
    width: 162px;
    line-height: 0;
}

.item_yk .img_tt p {
    aspect-ratio: 1/1;
    border-radius: 50%;
    width: 100%;
}

.item_yk .info_tt {
    position: relative;
    padding: 0;
    width: calc(100% - 192px);
    color: #fff;
}

.item_yk .name_tt {
    font-size: 18px;
    font-weight: 500;
    -webkit-line-clamp: 1;
    line-height: 27px;
    max-height: calc(27px * 1);
    margin-bottom: 0;
}

.item_yk .cv_tt {
    font-weight: 400;
    line-height: 24px;
}

.item_yk .des_t {
    background: url(../images/web/yk1.png) no-repeat right bottom 5px, url(../images/web/yk2.png) no-repeat left bottom;
    padding-bottom: 22px;
}

.item_yk .des_tt {
    line-height: 24px;
    -webkit-line-clamp: 5;
    max-height: calc(24px * 5);
    margin-top: 13px;
}

.ykien2-slide {
    margin: 0 -15px;
    padding-top: 40px;
}

.item_yk1 .it_yk {
    margin: 0 15px;
}

.item_yk1 .img_tt {
    width: 80px
}

.item_yk1 .info_tt {
    width: calc(100% - 100px);
}

.item_yk1 .name_tt {
    font-size: 15px;
    -webkit-line-clamp: 1;
    line-height: 24px;
    max-height: calc(24px * 1);
}

/* end */

/* dich vu */
.wrap-dichvunb-tc {
    padding: 70px 0 80px 0;
}

.item_dv {
    width: 100%;
}

.item_dv .it_dv {
    position: relative;
    line-height: 0;
}

.item_dv .img_tt {
    display: block;
    aspect-ratio: 600/500;
    width: 50%;
    line-height: 0
}

.item_dv .img_tt img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item_dv .info_tt {
    position: relative;
    width: 50%;
    background: #fff;
    border: 1px solid #EDEDED;
    border-left: 0;
    padding: 55px 40px;
}

.item_dv .name_cty {
    display: block;
    color: var(--color-tex1);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 3.6px;
    text-transform: capitalize;
    margin-bottom: 2px;
}

.item_dv .name_tt {
    color: var(--color-text);
    font-size: 40px;
    font-family: '1FTV';
    -webkit-line-clamp: 1;
    line-height: 1.5;/margin-bottom: 0;
    margin-bottom: 0;
}

.item_dv .name_tt:hover {
    color: var(--color-main);
    transition: 0.5s
}

.item_dv .des_tt {
    color: #2B2C37;
    line-height: 24px;
    -webkit-line-clamp: 7;
    margin-top: 25px;
}

.item_dv .view_tt {
    padding-top: 25px;
}

.item_dv:nth-child(2n) .info_tt {
    order: -1;
    border-left: 1px solid #EDEDED;
    border-right: 0
}

.service-box {}

.service-box a {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #cfd5dc;
    border-radius: 14px;
    overflow: hidden;
    margin: 0;
    padding: 0;
    transition: box-shadow 0.22s, transform 0.22s, border-color 0.22s;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);

}

.service-box a:hover {
    text-decoration: none;
    border-color: var(--color-primary)
}

.photo-service {}

.photo-service img {}

.info-service {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px 20px 20px;
    margin: 0;
    color: #0f172a;
}

.info-service h3 {
    font-size: 18px;
}

.info-service p {
    display: -webkit-box;
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 12px 0;
    padding: 0;
    background: none;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* end */

/* dang ky nhan tin */
.wrap-dangky-tc {
    position: relative;
    z-index: 5;
    padding-top: 100px;
    margin-top: -200px;
}

.dangky-tc {
    max-width: 910px;
    border-radius: 20px;
    background: linear-gradient(0deg, var(--color-primary) 0%, #23399263 26.51%, #FFF 53.01%);
    box-shadow: 0px 0px 5px 4px rgba(56, 43, 28, 0.10);
    padding: 30px 60px 50px 60px;
    margin: 0 auto;
}

.tieudedk {
    position: relative;
    text-align: center;
    color: var(--color-tex1);
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.tieudedk h2 {
    text-align: center;
    font-size: 50px;
    font-family: '1FTV';
    font-weight: normal;
    line-height: 1.5;
    text-transform: uppercase;
    margin-bottom: 7px;
    color: var(--color-primary);
}

.newsletter-input {
    position: relative;
}

.newsletter-input input:nth-child(7) {
    width: 100%
}

.newsletter-form .form-row {
    row-gap: 16px;
    justify-content: space-between;
}

.newsletter-input input {
    width: 100%;
    font-size: 14px !important;
    font-weight: 400;
    height: 50px;
    color: #737272 !important;
    border: none;
    background: #fff;
    border-radius: 4px;
    box-shadow: 1px 1px 4px 1px rgb(206 206 206 / 60%);
}

.newsletter-input input:focus {
    background: transparent;
}

.newsletter-input input::placeholder {
    color: #737272;
    font-size: 14px;
    font-weight: 400;
}

.newsletter-button {
    width: calc(100% - 16px);
    text-align: center;
    margin: 10px 8px;
    gap: 15px;
}

.newsletter-button input {
    display: inline-block;
    color: #fff;
    width: 175px;
    font-size: 18px;
    font-weight: 700;
    line-height: 48px;
    text-transform: uppercase;
    background: var(--color-primary);
    padding: 0 10px;
    border-radius: 5px;
    text-align: center;
    border: 1px solid var(--color-primary);
}

.newsletter-button input.btn-secondary-tc {
    background: none;
    color: var(--color-primary);
    background: #fff;
}

.newsletter-button input:hover {
    background: var(--color-main);
    border-color: var(--color-main);
    transition: 0.5s;
    color: #fff;
}

/* end */

/* news detail */
.share {
    padding: 10px;
    line-height: normal;
    background: #eee;
    margin-top: 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
    color: #000;
}

.share b {
    display: block;
    margin-bottom: 5px;
    font-size: 15px;
    font-weight: 500;
}

.othernews b {
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 600;
}

.list-news-other {
    padding-left: 17px;
    list-style: square;
    margin: 0;
}

.list-news-other li {
    margin-bottom: 2px;
}

.list-news-other li a {
    text-transform: none;
    color: #333333;
    line-height: 1.5;
}

.list-news-other li a:hover {
    color: var(--maincolor);
}

.title-detail-news h1 {}

.pagination {
    flex-wrap: wrap
}

.content-main {
    line-height: 1.5;
}

/* end */
/* Like Share */
.social-plugin {
    display: flex;
    justify-content: flex-start;
    margin-top: 0px;
    gap: 9px;
}

.social-plugin .at-share-btn {
    margin-bottom: 0px !important;
}

.social-plugin .zalo-share-button {
    margin-left: 3px;
}

.social-product ul {
    display: flex;
    justify-content: flex-start;
    margin-top: 0px;
    padding-left: 0px;
    list-style: none;
    margin-bottom: 0px;
}

.addthis_inline_share_toolbox_dc09 {
    display: none
}

.social-product li {
    margin-top: 0px;
    margin-right: 8px;
}

.social-product button {
    width: 30px;
    display: flex;
    height: 30px;
    border: none;
    cursor: pointer;
    color: #ffffff;
    border-radius: 3px;
    padding: 0px;
    font-size: 15px;
    transition: all 0.3s;
    justify-content: center;
    align-items: center;
}

.social-product button:hover {
    transform: translateY(-5px);
}

.social-product .sharer1 {
    background: #1c96e8;
}

.social-product .sharer2 {
    background: #3d548e;
}

.social-product .sharer3 {
    background: #3294bd;
}

.social-product .sharer4 {
    background: #cb362d;
}

.social-product .sharer5 {
    background: #df0022;
}

.lph-fc:hover {
    box-shadow: 0 8px 28px rgba(37, 99, 235, 0.1);
    transform: translateY(-4px);
    border-color: var(--color-primary);
}

.lph-fc {
    flex: 1 1 280px;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e8edf3;
    border-radius: 14px;
    overflow: hidden;
    margin: 0;
    padding: 0;
    transition: box-shadow 0.22s, transform 0.22s;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.lph-fc:hover {}

.lph-fc:nth-child(2) {
    animation: lph-fadeUp 0.5s ease 0.15s both;
}

.lph-fc-img-wrap {
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.lph-fc-img {
    width: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
    transition: transform 0.4s;
}

.lph-fc-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(15, 23, 42, 0.75);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: 0.3px;
    display: block;
    margin: 0;
}

.lph-fc-popular {
    position: absolute;
    top: 12px;
    right: 0;
    background: var(--color-primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 6px 0 0 6px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    display: block;
    margin: 0;
}

.lph-fc-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px 20px 20px;
    margin: 0;
}

.lph-fc-name {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 3px 0;
    padding: 0;
    background: none;
}

.lph-fc-pax {
    display: inline-block;
    font-size: 12px;
    color: var(--color-primary);
    font-weight: 600;
    padding: 0;
    background: none;
}

.lph-fc-desc {
    display: block;
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 12px 0;
    padding: 0;
    background: none;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
}

.lph-fc-routes {
    display: block;
    font-size: 12px;
    color: #94a3b8;
    margin: 0 0 20px 0;
    padding: 10px 12px;
    background: #f8fafc;
    border-radius: 7px;
    border-left: 3px solid #e2e8f0;
    line-height: 1.5;
}

.lph-fc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: auto 0 0 0;
    padding: 0;
    flex-wrap: wrap;
}

.lph-fc-price {
    display: block;
    font-size: 17px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    padding: 0;
    background: none;
    line-height: 1.2;
}

.lph-fc-price-lbl {
    display: block;
    font-size: 12px;
    color: #94a3b8;
    margin: 1px 0 0 0;
    padding: 0;
    background: none;
}

a.lph-fc-btn,
a.lph-fc-btn:link,
a.lph-fc-btn:visited {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #eff6ff;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 13px;
    padding: 9px 16px;
    border-radius: 7px;
    text-decoration: none;
    border: 1px solid var(--color-primary);
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
    margin: 0;
}

a.lph-fc-btn:hover {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}


.lph-rcard {
    flex: 1 1 220px;
    display: block;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    margin: 0;
    padding: 0;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.lph-rcard-img {
    width: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
}

.lph-rcard-body {
    padding: 18px;
    display: block;
    margin: 0;
}

.lph-rcard-name {
    display: block;
    font-size: 16px;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 8px 0;
    padding: 0;
    background: none;
}

.lph-rcard-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 14px 0;
    padding: 0;
    flex-wrap: wrap;
}

.lph-rcard-price {
    font-size: 20px;
    font-weight: 900;
    color: var(--color-primary);
    display: block;
    margin: 0;
    padding: 0;
    line-height: 1;
}

.lph-rcard-time {
    font-size: 12px;
    color: #64748b;
    background: #f1f5f9;
    padding: 3px 10px;
    border-radius: 100px;
    display: inline-block;
    margin: 0;
}

a.lph-rcard-btn,
a.lph-rcard-btn:link,
a.lph-rcard-btn:visited {
    display: block;
    width: 100%;
    background: var(--color-primary);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    padding: 11px 16px;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    border: none;
    cursor: pointer;
    margin: 0;
    transition: background 0.15s, transform 0.15s;
}

.hinhanh-item {
    display: block !important;
    padding: 10px;
}

.ykien-tc .slick-list {
    margin: -10px;
}

#hotline {
    left: var(--left, inherit);
    right: var(--right, inherit);
    bottom: var(--bottom, inherit);
    display: none;
}

#hotline.btn-frame i {
    background: var(--background);
}

#hotline.btn-frame .kenit-alo-circle {
    border: 2px solid var(--background);
    border-color: var(--background);
}

#hotline.btn-frame .kenit-alo-circle-fill {
    background-color: var(--background);
}

#hotline.btn-phone span {
    position: absolute;
    --location: 30px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--backgroundText);
    padding: 5px 40px 5px 25px;
    z-index: -1;
    border: 1px solid var(--backgroundText);
    border-radius: 30px;
    color: var(--color);
    font-weight: 700;
    font-size: 17px;
}

.contact-group {
    position: fixed;
    z-index: 999999;
}

.contact-group .icon,
.btn-icon-facebook .icon-fb {
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    border-radius: 50%;
    position: relative;
    cursor: pointer;
}

.contact-group .icon:after,
.btn-icon-facebook .icon-fb:after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: inherit;
    border-radius: inherit;
    -webkit-animation: pulse-animation 1s cubic-bezier(0.24, 0, 0.38, 1) infinite;
    animation: pulse-animation 1s cubic-bezier(0.24, 0, 0.38, 1) infinite;
    z-index: -1;
}

.contact-group .icon:before,
.btn-icon-facebook .icon-fb:before {
    content: '';
    display: block;
    position: absolute;
    width: 60px;
    height: 60px;
    top: -7px;
    left: -7px;
    border: 1px solid rgba(243, 113, 33, 0.2);
    border-radius: inherit;
    -webkit-animation: pulse-animation 1.5s cubic-bezier(0.24, 0, 0.38, 1) infinite;
    animation: pulse-animation 1s cubic-bezier(0.24, 0, 0.38, 1) infinite;
    animation-delay: 0.5s;
    -webkit-animation-delay: 0.5s;
    z-index: -1;
    background: transparent;
    -webkit-animation-fill-mode: forwards;
}

.contact-group .icon span {
    width: 24px;
    height: 1px;
    background: #fff;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all 240ms linear;
}

.contact-group .icon.active span:first-child {
    transform: rotate(45deg);
    top: 22px;
    left: 11px;
}

.contact-group .icon.active span:nth-of-type(2) {
    transform: scale(0);
}

.contact-group .icon.active span:nth-of-type(3) {
    transform: rotate(-45deg);
    top: 22px;
    left: 11px;
}

.contact-group .icon span:first-child {
    top: 17px;
}

.contact-group .icon span:nth-of-type(2) {
    top: 24px;
}

.contact-group .icon span:nth-of-type(3) {
    top: 31px;
}

.btn-icon-facebook {
    display: block;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99999;
    cursor: pointer;
}

.contact-group .button-action-group {
    position: absolute;
    right: -244px;
    bottom: 55px;
    min-width: 290px;
}

.contact-group .button-action-group:not(.active) a {
    display: none;
}

.contact-group .button-action-group a {
    display: block;
    opacity: 0;
    padding: 5px 10px;
    background: var(--backgroundText);
    margin-bottom: 15px;
    color: var(--color);
    font-size: 35px;
    font-weight: bold;
    border-radius: 30px;
    letter-spacing: 1px;
    -webkit-animation: fadeup 1s cubic-bezier(0.24, 0, 0.38, 1);
    animation: fadeup 1s cubic-bezier(0.24, 0, 0.38, 1);
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.contact-group .button-action-group a+a {
    animation-delay: 0.5s;
    -webkit-animation-delay: 0.5s;
}

.contact-group .button-action-group a i {
    width: 48px;
    height: 48px;
    background: var(--background);
    line-height: 48px;
    text-align: center;
    border-radius: 50%;
    margin: -10px 10px -10px -10px;
    box-shadow: 2px 0 7px -2px #00000078;
    position: relative;
}

.contact-group .button-action-group a i:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    left: 3px;
    top: 3px;
    border-radius: 50%;
    border-width: 1px;
    border-left-color: #f1f1f1;
    border-style: solid;
    border-right-color: #f1f1f1;
    border-top-color: transparent;
    border-bottom-color: transparent;
    -webkit-animation: rotate 1s cubic-bezier(0.24, 0, 0.38, 1) infinite;
    animation: rotate 1s cubic-bezier(0.24, 0, 0.38, 1) infinite;
}

div.wpcf7-select-parent select option {
    color: black;
}

.fb_dialog_advanced,
.fb_dialog_mobile {
    bottom: 20px !important;
    right: 20px !important;
    display: none !important;
}

input:focus {
    outline: #f37121 5px !important;
}

#social {
    position: fixed;
    z-index: 999;
    left: var(--left, inherit);
    right: var(--right, inherit);
    bottom: var(--bottom, inherit);
    display: none;
}

#social .btn-frame {
    position: relative;
    margin: 30px 0px;
}

#social .btn-frame i {
    background-color: var(--color-primary);
}

#social .btn-frame img {
    border-radius: 50%;
}

#social .btn-frame .kenit-alo-circle {
    border: 2px solid var(--color-primary);
    border-color: var(--color-primary);
}

#social .btn-frame .kenit-alo-circle-fill {
    background-color: var(--color-primary);
}


/* TODO: Toolbar */
.toolbar {
    background: var(--background);
    width: 100%;
    padding: 7px;
    bottom: 0px;
    position: fixed;
    z-index: 500;
    height: auto;
    left: 0px;
    max-height: 65px;
    display: none;
}

.toolbar ul {
    list-style: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0px;
    margin: 0px;
}

.toolbar ul li {
    text-align: center;
    width: 25%;
}

.toolbar ul li a {
    display: block;
    width: 100%;
    cursor: pointer;
}

.toolbar ul li a img {
    height: 20px;
    width: 20px;
    -webkit-animation: tada 1.2s infinite;
    -moz-animation: tada 1.2s infinite;
    -o-animation: tada 1.2s infinite;
    animation: tada 1.2s infinite;
}

.toolbar ul li a span {
    color: var(--color);
    font-size: 10px;
}
.grid-4{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.grid-3{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
#fanpage-facebook{
    width: 100%;
    background: #FFF;
    border-radius: 20px;
    padding: 4px;
    overflow: hidden;
}
.btn-mmenu{display: none;width: 40px;}
/* Mmenu */
.menu-res{display:none;height:55px;z-index:10;background:var(--color-red);position:relative;line-height:normal;}
.menu-bar-res{height:55px;padding:0px 15px;display:-webkit-flex;display:-moz-flex;display:-ms-flex;display:-o-flex;display:flex;align-items:center;justify-content:space-between;}
#menu{display:none;}
#hamburger{display:block;width: 25px;height: 20px;position:relative;}
#hamburger:before,#hamburger:after,#hamburger span{background: #333333;content:'';display:block;width:100%;height: 2.5px;position:absolute;left:0px;}
#hamburger:before{top:0px;}
#hamburger span{top: 9px;}
#hamburger:after{top: 18px;}
#hamburger:before,#hamburger:after,#hamburger span{-webkit-transition:none 0.5s ease 0.5s;transition:none 0.5s ease 0.5s;-webkit-transition-property:transform,top,bottom,left,opacity;transition-property:transform,top,bottom,left,opacity;}
.mm-wrapper_opening #hamburger:before,.mm-wrapper_opening #hamburger:after{top:10px;}
.mm-wrapper_opening #hamburger span{left:-50px;opacity:0;}
.mm-wrapper_opening #hamburger:before{transform:rotate(45deg);}
.mm-wrapper_opening #hamburger:after{transform:rotate(-45deg);}
.mm-menu_opened{display:block!important;}

/* Search Responsive */
.search-res{position:relative;}
.search-res .icon-search{width:40px;height:40px;cursor:pointer;text-align:center;line-height:42px;color: #333333;font-size:17px;margin:0px;}
.search-res .icon-search.active{color:var(--color-red);background:#ffffff;border-radius:100%;}
.search-res .search-grid{position:absolute;top:50px;right:0px;width:0px;height:40px;overflow:hidden;background:#ffffff;border:1px solid var(--color-red);z-index:2;opacity:0;border-radius:25px;line-height:normal;}
.search-res .search-grid p{float:left;width:35px;height:38px;cursor:pointer;outline:none;border:none;margin:0px;font-size:17px;display:block;color:var(--color-red);line-height:40px;text-align:center;}
.search-res .search-grid input{width:calc(100% - 35px);float:right;line-height:38px;outline:none;border:none;color:var(--color-red);}
.search-res .search-grid input::-webkit-input-placeholder{color:#ccc;}
.search-res .search-grid input:-moz-placeholder{color:#ccc;}
.search-res .search-grid input::-moz-placeholder{color:#ccc;}
.search-res .search-grid input:-ms-input-placeholder{color:#ccc;}
/* Responsive */
@media(max-width:1001px){
    .menu{display: none;}
    .btn-mmenu{display: block;}
    .wrap-dangky-tc{margin-top: 0px;padding-top: 20px;}
    .slideshow{margin-top: 0px;}
    .logo-header img{
        width: 135px;
    }
    .logo-mn, .header-bottom .wrap-content{min-height: unset;padding: 5px 15px;}
    .header{background: #fff;min-width: unset;}
}
@media(max-width:768px){
    .tieudedk h2{font-size: 25px;}
    .dangky-tc{padding: 20px;}
    .wap-aboutHome{flex-direction: column;row-gap: 30px;}
    .right-aboutHome{width: 100%;text-align: center;padding-top: 0px;}
    .left-aboutHome{width: 100%;order: unset;}
    .wrap-aboutHome{padding: 50px 0px 50px 0px;}
    .wrap-productnb-tc{padding: 50px 0px 50px 0px;}
    .title-aboutHome h2{font-size: 25px;}
    .title-aboutHome span{margin-bottom: 0px;}
    .item_db .name_tt{font-size: 16px;}
    .wrap-tieuchi-tc{padding: 50px 0px;}
    .tieude1 h2{font-size: 25px;}
    .newsVideo-flex{flex-direction: column;}
    .newsVideo-flex > div{width: 100% !important;}
    .tieude2 h2{font-size: 25px;}
    .wrap-newsVideo{padding: 50px 0px;}
    .wap_footer{flex-direction: column;row-gap: 25px;}
    .footer-news{width: 100% !important;}
    .footer-news1{
        flex-direction: column;
        row-gap: 25px;
    }
    .footer-news1 > div{
        width: 100% !important;
        padding: 0px !important;
    }
    .grid-4 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .grid-3 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .grid-pro-detail{flex-direction: column;row-gap: 30px;}
    .grid-pro-detail > div{width: 100% !important;}
    .title-detail h1, .title-main span{font-size: 25px;}
    .flex-news{flex-direction: column;margin: 0;row-gap: 20px;}
    .item-news{width: 100%;margin: 0;}
    .newsletter-button input {
        display: inline-block;
        color: #fff;
        width: 130px;
        font-size: 16px;
        font-weight: 700;
        line-height: 48px;
        text-transform: uppercase;
        background: var(--color-primary);
        padding: 0 10px;
        border-radius: 5px;
        text-align: center;
        border: 1px solid var(--color-primary);
    }
    .wrap-dichvunb-tc {
        padding: 50px 0 30px 0;
    }
    .right-intro {
        padding: 0 20px 25px 20px;
    }

}
@media(max-width:576px){
    .footer-article{padding: 50px 0px;}
        .grid-3 {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }
    .item_db .info_tt{width:100%;max-width: 100%;}
    .lph-rcard-body{padding: 10px;}
    .lph-rcard-name{font-size: 14px;}
    .lph-rcard-price{font-size: 14px;}
    .lph-fc-body{padding: 10px;}
    .lph-fc-name{font-size: 14px;}
    .lph-fc-desc{font-size: 12px;}
    .lph-fc-routes{display: none;}
    .lph-fc-price{font-size: 14px;}
    .info-service{padding: 10px;}
    .info-service h3{font-size: 14px;}
    .contact-group .button-action-group a{font-size: 18px;}
    .contact-group .button-action-group {
        position: absolute;
        right: -144px;
        bottom: 55px;
        min-width: 195px;
    }
    .footer-ft{font-size: 25px;}
    .info-service p{font-size: 12px;}
}
@media(max-width:369px){
}