*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}
:root {
    --primary-font: "Montserrat-Regular";
    --bold-font: "Montserrat-Bold";
    --semibold-font: "Montserrat-SemiBold";
    --medium-font: "Montserrat-Medium";
    --medium-font: "Montserrat-Medium";
    --primary-color: #a53c41;
    --second-color: #f0ecd3;
}
html {
    box-sizing: border-box !important;
}
body {
    font-family: "Montserrat-Regular";
    line-height: 24px;
    width: 100%;
    height: 100%;
    font-size: 16px;
}
img {
    max-width: 100%;
}
iframe {
    max-width: 100%;
}
ul li {
    list-style-type: none;
}
a:hover {
    text-decoration: none;
    color: #0049bc;
}
.clear-fix {
    clear: both;
}
.main-color {
    color: var(--primary-color);
}
.text-white {
    color: #ffffff;
}
.text-blue {
    color: #0046af;
}
.text-yellow {
    color: #ffc50b;
}
.bg-blue {
    background-color: #0046af;
}
.d-flex {
    display: flex;
}
.text-bold {
    font-weight: bold;
    /* font-family: var(--bold-font); */
}
.text-upper {
    text-transform: uppercase;
}
.font-montserrat-bold {
    font-family: "Montserrat-bold";
}
.justify-content-between {
    justify-content: space-between;
}
.align-items-center {
    align-items: center;
}
.pulse {
    animation: pulse 1.5s ease-in infinite;
}
.navbar-nav .nav-item .nav-link.language {
    background-color: #ffffff;
    padding: 10px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 8px;
    display: inline-block;
    margin-right: 10px;
    font-family: var(--bold-font);
}
.navbar-nav .nav-item .nav-link.language:hover,.navbar-nav .nav-item .nav-link.language.active{
    color: #ffffff;
    background-color: var(--primary-color);
}
#selectLocal.selectLocal span{
    display: none;
}
@keyframes pulse {
    25% {
        transform: scale(0.9);
    }
    75% {
        transform: scale(1.1);
    }
}
@keyframes push {
    50% {
        transform: scale(0.8);
    }
}
@keyframes pop {
    50% {
        transform: scale(1.2);
    }
}
/*three ugly*/
.has-underline {
    position: relative;
}
.has-underline:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 45%;
    height: 2px;
    background-color: var(--primary-color);
    transition: 0.5s all ease-out;
}
.has-underline:hover:after {
    width: 100%;
}
/* Container for dots and arrows */
.slick-controls-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: 20px;
}
/* Arrow styles */
.slick-controls-container .arrow {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    height: 30px;
    width: 30px;
}
.slick-controls-container .prev {
    margin-right: 20px;
}
.slick-controls-container .next {
    margin-left: 20px;
}
/* Slick dots */
.slick-controls-container .slick-dots {
    display: flex !important;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}
.slick-controls-container .slick-dots li {
    margin-right: 10px;
}
.slick-controls-container .slick-dots li button {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    height: 30px;
    width: 30px;
}
.slick-controls-container .slick-dots li.slick-active button {
    color: #ffffff;
    background-color: var(--primary-color);
}
.navbar-brand img {
    height: 40px;
}
.navbar-nav .nav-link {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    transition: 0.2s;
    color: #000000;
    font-weight: 700;
    padding-bottom: 10px;
}
#main-menu .navbar-nav {
    margin-top: 0 !important;
}
.navbar {
    padding: 0;
}
.navbar .col-sm-4 {
    display: flex;
    align-items: center;
}
.nav-item:hover .nav-link {
    color: var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
}
.nav-item.active .nav-link {
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}
#main-menu a.logo {
    padding: 12px 10px;
    display: inline-block;
    flex: 1;
    text-align: center;
}
#main-menu a.logo:first-child img {
    height: auto;
}
#main-menu a.logo:nth-child(2) img {
    height: 26px;
}
@media (max-width: 767px) {
    .navbar .col-sm-4, .navbar .col-sm-3,.navbar .col-sm-1 {
        justify-content: space-around;
    }
    .navbar .col-sm-4:nth-child(1),
    .navbar .col-sm-2:nth-child(3) {
        justify-content: space-around;
    }
    #main-menu a.logo {
        padding: 5px;
        padding: 12px 11px;
        text-align: left;
    }
    #main-menu a.logo:first-child img {
        height: auto;
    }
    #main-menu a.logo:nth-child(2) img {
        height: 22px;
    }
    #main-menu a.logo img {
    }
    #main-menu #selectLocal.selectLocal {
        padding: 10px 30px;
    }
    #main-menu #selectLocal.selectLocal span{
        display: inline-block;
    }
    #main-menu #selectLocal.selectLocal li.nav-item{
        width: auto;
        display: inline-block;
        margin: 0;
    }

}
header {
    width: 100%;
    z-index: 99999;
    /* padding: 5px 0; */
    background-color: #ffffff;
    box-sizing: border-box;
}
.baoquanh_header {
    max-width: 90%;
    margin: 0 auto;
}
nav#main-menu {
    position: relative;
    margin: 0 auto;
}
header.scrollq {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background-color: #fff;
    left: 0;
    /* padding: 10px 0; */
}
header.scrollq .col-logo img {
    max-width: 150px;
    transition: 0.3s;
}
#main-menu ul {
    text-align: center;
    margin-bottom: 0;
    padding: 5px 0;
    display: flex;
}
#main-menu,
#main-menu ul,
#main-menu ul li,
#main-menu #head-mobile {
    line-height: 1;
    display: flex;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    justify-content: center;
    width: 100%;
    color: #000000;
    font-weight: 700;
}
#main-menu:after,
#main-menu > ul:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}
#main-menu #head-mobile {
    display: none;
}
#main-menu > ul > li {
    display: inline-flex;
    align-items: center;
}
#main-menu > ul > li > a {
    padding: 10px 10px;
    font-size: 16px;
    text-decoration: none;
    color: #414042;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Montserrat-ExtraBold";
}
#main-menu > ul > li:hover > a {
    color: #ffc50b;
}
#main-menu > ul > li:hover,
#main-menu ul li.has-sub.active:hover {
    background-color: #337ab7;
    border-radius: 19px;
    -webkit-transition: background 0.3s ease;
    -ms-transition: background 0.3s ease;
    transition: background 0.3s ease;
}
#main-menu > ul > li.has-sub > a {
    padding-right: 30px;
}
#main-menu > ul > li.has-sub > a:after {
    position: absolute;
    top: 17px;
    right: 11px;
    width: 8px;
    height: 2px;
    display: block;
    background: #0078eb;
    content: "";
}
#main-menu > ul > li.has-sub > a:before {
    position: absolute;
    top: 14px;
    right: 14px;
    display: block;
    width: 2px;
    height: 8px;
    background: #0078eb;
    content: "";
    -webkit-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
#main-menu > ul > li.has-sub:hover > a:before {
    top: 23px;
    height: 0;
}
#main-menu ul ul {
    position: absolute;
    left: -9999px;
    z-index: 99999;
    top: 36px;
}
#main-menu ul ul li {
    -webkit-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
    background: #fff;
    transition: all 0.25s ease;
}
#main-menu ul ul li:hover {
}
#main-menu li:hover > ul {
    left: auto;
}
#main-menu li:hover > ul > li {
    border-bottom: 1px solid #fff;
}
#main-menu ul ul ul {
    margin-left: 100%;
    top: 0;
}
#main-menu ul ul li a {
    border-bottom: 1px solid rgba(150, 150, 150, 0.15);
    line-height: 24px;
    padding: 11px 15px;
    width: 280px;
    font-size: 16px;
    text-align: left;
    text-decoration: none;
    color: #fff;
    font-weight: 400;
}
#main-menu ul ul li:last-child > a,
#main-menu ul ul li.last-item > a {
    border-bottom: 0;
}
#main-menu ul ul li:hover > a,
#main-menu ul ul li a:hover {
    color: #ffc50b;
}
#main-menu ul ul li.has-sub > a:after {
    position: absolute;
    top: 16px;
    right: 11px;
    width: 8px;
    height: 2px;
    display: block;
    background: #ddd;
    content: "";
}
#main-menu ul ul li.has-sub > a:before {
    position: absolute;
    top: 13px;
    right: 14px;
    display: block;
    width: 2px;
    height: 8px;
    background: #ddd;
    content: "";
    -webkit-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
#main-menu ul ul > li.has-sub:hover > a:before {
    top: 17px;
    height: 0;
}
#main-menu ul ul ul li.active a {
    border-left: 1px solid #fff;
}
#main-menu > ul > li.has-sub > ul > li.active > a,
#main-menu > ul ul > li.has-sub > ul > li.active > a {
    border-top: 1px solid #fff;
}
#main-menu .submenu-button {
    display: none;
}
@media (min-width: 1001px) and (max-width: 1300px) {
    #main-menu ul {
        margin-right: 0px;
    }
}
@media (max-width: 1000px) {
    nav#main-menu {
        width: 100%;
    }
    #main-menu {
        width: 100%;
    }
    #main-menu ul {
        width: 100%;
        display: none;
    }
    #main-menu ul li {
        width: 100%;
        display: inline-grid;
    }
    #main-menu ul li:hover {
        background: #fef3f8;
        min-height: 46px;
    }
    #main-menu > ul > li > a {
        text-align: left;
        text-transform: none;
    }
    #main-menu ul ul li,
    #main-menu li:hover > ul > li {
        height: auto;
    }
    #main-menu ul li a,
    #main-menu ul ul li a {
        width: 100%;
        border-bottom: 0;
    }
    #main-menu > ul > li {
        float: none;
    }
    #main-menu ul ul {
        top: 0;
        padding-bottom: 0;
    }
    #main-menu ul ul li a {
        padding-left: 25px;
    }
    #main-menu ul ul li {
        background: #fff !important;
    }
    #main-menu ul ul li:hover {
        background: #fef3f8 !important;
    }
    #main-menu ul ul ul li a {
        padding-left: 35px;
    }
    #main-menu ul ul li a {
        color: #fff;
        background: none;
    }
    #main-menu ul ul li:hover > a,
    #main-menu ul ul li.active > a {
        color: #ffac00;
    }
    #main-menu ul ul,
    #main-menu ul ul ul {
        position: relative;
        left: 0;
        width: 100%;
        margin: 0;
        text-align: left;
    }
    #main-menu > ul > li.has-sub > a:after,
    #main-menu > ul > li.has-sub > a:before,
    #main-menu ul ul > li.has-sub > a:after,
    #main-menu ul ul > li.has-sub > a:before {
        display: none;
    }
    #main-menu #head-mobile {
        display: block;
        padding: 0px;
        color: #1f4a36;
        font-size: 18px;
        font-weight: 700;
    }
    #main-menu .button {
        width: 55px;
        height: 46px;
        position: absolute;
        right: 0;
        top: 0;
        cursor: pointer;
        z-index: 12399994;
    }
    #main-menu .button:after {
        position: absolute;
        top: 22px;
        right: 20px;
        display: block;
        height: 8px;
        width: 20px;
        border-top: 3px solid #0046ae;
        border-bottom: 3px solid #0046ae;
        content: "";
    }
    #main-menu .button:before {
        -webkit-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        transition: all 0.3s ease;
        position: absolute;
        top: 16px;
        right: 20px;
        display: block;
        height: 3px;
        width: 20px;
        background: #0046ae;
        content: "";
    }
    #main-menu .menu-opened:after {
        -webkit-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        transition: all 0.3s ease;
        top: 23px;
        border: 0;
        height: 2px;
        width: 19px;
        background: #0046ae;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    #main-menu .menu-opened:before {
        top: 23px;
        background: #0046ae;
        width: 19px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    #main-menu .submenu-button {
        position: absolute;
        z-index: 99;
        right: 0;
        top: 0;
        display: block;
        height: 46px;
        width: 46px;
        cursor: pointer;
    }
    #main-menu .submenu-button.submenu-opened {
        background: #ded7da;
    }
    #main-menu ul ul .submenu-button {
        height: 34px;
        width: 34px;
    }
    #main-menu .submenu-button:after {
        position: absolute;
        top: 22px;
        right: 19px;
        width: 8px;
        height: 2px;
        display: block;
        background: #000;
        content: "";
    }
    #main-menu ul ul .submenu-button:after {
        top: 15px;
        right: 13px;
    }
    #main-menu .submenu-button.submenu-opened:after {
        background: #ffc50b;
    }
    #main-menu .submenu-button:before {
        position: absolute;
        top: 19px;
        right: 22px;
        display: block;
        width: 2px;
        height: 8px;
        background: #000;
        content: "";
    }
    #main-menu ul ul .submenu-button:before {
        top: 12px;
        right: 16px;
    }
    #main-menu .submenu-button.submenu-opened:before {
        display: none;
    }
    #main-menu ul ul ul li.active a {
        border-left: none;
    }
    #main-menu > ul > li.has-sub > ul > li.active > a,
    #main-menu > ul ul > li.has-sub > ul > li.active > a {
        border-top: none;
    }
    .col2_header {
        padding: 0;
    }
    #main-menu ul {
        background-color: #ffc50b;
    }
    #main-menu > ul > li:last-child {
        border: 0px solid #fff;
        margin-left: 0px;
    }
}
.btn-red {
    background-color: var(--primary-color);
    color: #ffffff;
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    padding: 9px 20px;
    display: inline-block;
    margin-top: 20px;
}
/* end menu */
@media (max-width: 767px) {
    nav#main-menu {
        margin-top: 0px;
    }
    #main-menu .button {
        right: 0px;
        z-index: 10;
    }
    .col-logo img {
        max-width: 80px;
    }
}

/*slide partials*/
.first_news {
    padding: 0 15px;
}
.first_news .first_news-image {
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}
.first_news .first_news-image .first_news-title {
    position: absolute;
    bottom: 20px;
    width: 95%;
    font-family: "Montserrat-Bold";
    left: 18px;
    padding: 25px;
    border-radius: 20px;
}
.first_news .first_news-image .first_news-title p {
    margin-bottom: 0;
}
.first_news .first_news-image .first_news-title a.text-white.text-bold {
    line-height: 23pt;
    font-size: 18pt;
    display: block;
    margin-bottom: 13px;
}
.first_news .first_news-image p small.text-white {
    font-family: "Montserrat-SemiBold";
    font-size: 16px;
}
.first_news .first_news-image .first_news-title p a {
    font-family: "Montserrat-SemiBold";
    margin-bottom: 0px !important;
    font-size: 12pt !important;
}
.slideshow_tintuchome {
    background-color: #f4f4f6;
    padding: 10px 0;
    margin-bottom: 10px;
    border-radius: 13px;
    max-height: 536px;
}
.slideshow_tintuchome-more {
    padding: 30px 20px;
    border-radius: 25px;
}
.slideshow_tintuchome-more .more_link {
    font-family: "Montserrat-ExtraBold";
    font-size: 18pt;
}
/*end slide partials*/
.scrollq .col-logo img {
    margin-top: 5px;
}
.scrollq #main-menu ul {
    margin-top: 15px;
}
.trietly_img {
    width: 50px;
    margin-right: 12px;
    padding: 2%;
    border-radius: 8px;
}
.slide_home {
    position: relative;
}
.slide_home img {
    width: 100%;
}
.slide_home span.item-title {
    position: absolute;
    z-index: 9999;
    color: #fff;
    font-size: 5.375rem;
    font-family: "Montserrat-Black";
    top: 30%;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    line-height: 62px;
}
.tintuc_slide_home {
    max-width: 90%;
    margin: 0 auto;
}

.tintuc_slide_home .cot1 h2 {
    color: #0046ae;
    font-family: "Montserrat-ExtraBold";
    font-size: 56pt;
}
.tintuc_slide_home .cot1 h3 {
    color: #0046ae;
    font-family: "Montserrat-Medium";
    font-size: 26pt;
}
.flex_wrap {
    display: flex;
    flex-wrap: wrap;
    margin: 5px 0;
    border-radius: 8px;
    overflow: hidden;
}
.content_tintuc_home {
    border: 2px solid #c5c6cb;
    padding: 15px;
    border-radius: 0 20px 20px 0;
}
.content_tintuc_home {
    color: #0046ae;
    font-weight: bold;
}
.img_slide_home {
    padding: 20px 0;
    padding-bottom: 30px;
    background: 0% 0% / cover rgb(255, 255, 255);
    overflow: hidden;
    width: 100%;
    display: inline-block;
}
.icon_readmore {
    text-align: right;
    color: #414042;
    font-family: "Montserrat-SemiBold";
}
.icon_readmore span {
    border: 2px solid #0046af;
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 14px;
}
.icon_readmore span:hover {
    background: #0046af;
    color: #fff;
}
.icon_readmore img {
    max-width: 50px;
}
/*start productions*/
#productions {
    padding: 2% 0;
    background-color: var(--second-color);
}
.cate_product-image {
    overflow: hidden;
    border-radius: 15px;
}
h2.cate_product-title {
    line-height: normal;
    text-transform: uppercase;
    font-family: var(--bold-font);
    color: var(--primary-color);
    font-size: clamp(23px, 4vw, 44px);
    text-wrap: balance;
    margin-top: 0;
}
.cate_product {
    margin-bottom: 2%;
}
#productions hr {
    background-color: var(--primary-color);
    height: 1px;
    border: none;
}
.products {
    margin-top: 20px;
}
.product-item {
    background-color: #ffffff;
    border-radius: 10px;
    text-align: center;
    margin: 0 10px;
    overflow: hidden;
    padding: 20px;
}
a.productModal {
    display: inline-block;
    min-height: 48px;
}
a.introModalLink:focus {
    text-decoration: none;
    color: #0049bc;
    outline: none;
}

a#cateProduct:focus {
    color: #0049bc;
    text-decoration: none;
}
a.productModal:focus {
    outline: none;
    color: #000000;
    text-decoration: none;
}
.product-item:hover a.productModal {
    color: #000000;
}
.product-item:hover img {
    transform: scale(1.1);
    filter: drop-shadow(0.4rem 0.4rem 0.45rem rgba(0, 0, 30, 0.5));
}

.product-image img {
    max-height: 293px;
    min-height: 175px;
    object-fit: contain;
    width: auto;
    margin: 0 auto;
    transition: 1s;
}
.product-item a {
    color: var(--primary-color);
    font-family: var(--bold-font);
    transition: 0.5s;
    font-size: clamp(12px, 3vw, 20px);
    text-wrap: pretty;
    /* margin-bottom: 10px; */
    display: inline-block;
}
.product-price {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 700;
    padding: 6px 5px;
    border-radius: 10px;
    margin-top: 10px;
}
#modalProductInfo .product-info h3.product-name {
    font-family: var(--bold-font);
    color: var(--primary-color);
    text-wrap:pretty;
}
.modal-body{
    max-height: 100vh;
    overflow-y: scroll;
}
span.product-price-modal {
    color: var(--primary-color);
}
.intro_home {
    padding: 3% 0;
}
h2.intro-title {
    margin-top: 0;
    margin-bottom: 5%;
}
h2.intro-title a {
    font-family: var(--bold-font);
    color: var(--primary-color);
    font-size: 30pt;
    margin-top: 3%;
}
.intro-item {
    padding: 2% 0;
}
.intro_home .title_intro_home {
    text-align: left;
    margin: 0;
    border-radius: 10px;
    overflow: hidden;
}
/* Feedback Section */
.feedback {
    padding: 1% 3%;
}
/* Feedback Section Container */
.feedback .container {
}
#feeback h2 {
    text-transform: uppercase;
    font-family: var(--bold-font);
    margin-top: 8px;
}
/* Feedback Slider */
.feedback .feedback-slider {margin-top: 20px;}
/* Feedback Item */
.feedback .feedback-item {
    background-color: #30525b;
    border-radius: 10px;
    min-height: 140px;
    margin: 0 20px;
    padding: 10px 20px;
}
/* Feedback Image */
.feedback .feedback-item .feeback-img {
    border-radius: 50%;
    overflow: hidden;
    text-align: center;
    max-height: 120px;
}
.feedback .feedback-item .feeback-img img {
    max-width: 100%;
    min-height: 110px;
    max-height: 150px;
    width: auto;
    object-fit: cover;
}
/* Feedback Info */
.feedback .feedback-item .feedback-info {
}
/* Feedback User */
.feedback .feedback-item .feedback-info .feedback-user {
    color: #ffffff;
}
/* Feedback Rate */
.feedback .feedback-item .feedback-info .feedback-rate {
    color: yellow;
    font-size: 23px;
}
/* Feedback Content */
.feedback .feedback-item .feedback-content {
    color: #ffffff;
    margin-top: 10px;
    padding: 0 5px;
    text-align: justify;
}
/*Product Manaul*/
section.productManaul {
    background-color: var(--second-color);
    padding: 2% 0;
}
h2.mananul-title a:hover {
    color: var(--primary-color);
}

h2.mananul-title {
    margin-bottom: 20px;
    margin-top: 0px;
    font-size: clamp(22px, 4vw, 26px);
    font-family: var(--bold-font);
}
.manaul-image {
    border-radius: 10px;
    overflow: hidden;
}
footer i {
    color: #fff;
}
.footer_top .dong2 .cot1_dong2 {
    color: #fff;
}
.footer_top .dong2 .cot1_dong2 p {
    margin-bottom: 3px;
    font-size: 3.5em;
    line-height: 66px;
    font-family: "Montserrat-ExtraBold";
}
.footer_top .dong2 .cot1_dong2 a {
    color: #fff;
}
.footer_top .dong2 .cot1_dong2 p.ketnoi {
    display: grid;
}
.footer_top .dong2 .cot1_dong2 p.ketnoi span {
    font-family: "Montserrat-Black";
    font-size: 54pt;
}
.footer_top {
    background-color: #30525b;
}
.baoquanh_ft_top {
    padding: 60px 0;
    max-width: 90%;
    margin: 0 auto;
    margin-bottom: 20px;
    border-radius: 30px;
}
.footer_top .row:first-child {
    margin-top: 30px;
}
.col-dong1-ft {
    padding: 0;
    min-height: 100px;
    color: #fff;
    display: inline-flex;
    align-items: center;
}
.col-dong1-ft i {
    background-color: #fafafa82;
    padding: 10px 15px;
    margin-top: 8px;
    margin-right: 15px;
    font-size: 32px;
}
.footer_top .col-ft1 {
    background-color: #0f3a53;
}
.footer_top .col-ft2 {
    background-color: #22a1c7;
}
.footer_top .col-ft3 {
    background-color: #415968;
}

.footer_top .dong2 {
    margin-top: 40px;
}
.title_lienhe {
    text-transform: uppercase;
    color: #ffffff;
    font-family: "Montserrat-Bold";
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: bold;
}
.footer_top .dong2 .cot1_dong2 {
    padding: 0;
}
.footer_top .dong2 .cot1_dong2 iframe {
    max-height: 300px;
}
.footer_top .dong2 .cot2_dong2 {
    padding: 0;
}
.footer_top .dong2 .cot2_dong2 #form_contact_home input {
    border: none;
    border-bottom: 2px solid #ffffff;
    color: #ffffff;
    border-inline: none;
    border-radius: 0;
    margin-bottom: 20px;
    background-color: transparent;
    outline: none;
    /* inset: 0px; */
}
.footer_top .dong2 .cot2_dong2 #form_contact_home textarea {
    border: none;
    border-bottom: 2px solid #ffffff;
    color: #22a1c7;
    background-color: transparent;
    margin-bottom: 30px;
    border-radius: 0px;
}
.footer_top
    .dong2
    .cot2_dong2
    #form_contact_home
    input::-webkit-input-placeholder {
    color: #ffffff;
}
.footer_top
    .dong2
    .cot2_dong2
    #form_contact_home
    textarea::-webkit-input-placeholder {
    color: #ffffff;
}

.footer_top .dong2 .cot2_dong2 #form_contact_home {
    text-align: right;
}
.footer_top .dong3 ul li {
    float: left;
    margin-right: 15px;
}
.wrapper_footer {
    background-color: #ffffff;
    /* border-radius: 30px 30px 0px 0px; */
    padding: 1% 0;
}
.title_intro_home:hover img {
    transform: scale(1.5);
}

.title_intro_home img {
    transition: 1s;
}

.cate_product-image img {
    transition: 1s;
}

.cate_product-image:hover img {
    transform: scale(1.5);
}

.manaul-image:hover img {
    transform: scale(1.5);
}

.manaul-image img {
    transition: 1s;
}
#modalProductInfo .product-img {
    text-align: center;
}
footer p a {
    color: #414042;
    font-size: 11pt;
}
.footer_top .dong3 ul li a {
    color: #fff;
    font-weight: bold;
}
.title_ft {
    text-transform: uppercase;
    font-size: 14pt;
    font-family: "Montserrat-ExtraBold";
    margin-bottom: 12px;
}
.title_ft a {
    color: #0049bc;
}
.cot4_chan_ft {
    padding: 0;
    padding-top: 5%;
}
.bocongthuong img {
    max-height: 200px;
    margin-bottom: 10px;
}
@media (max-width: 767px) {
    .col3_header {
        padding: 0;
    }
    .col3_header ul {
        position: absolute;
        top: -34px;
        right: 0;
    }
    .col3_header > ul > li.language {
        padding: 0;
    }
    .col3_header > ul > li.language > a {
        padding: 8px 4px;
        font-size: 12px;
    }
    header.scrollq .col-logo img {
        max-width: 100px;
        transition: 0.3s;
    }
    .col3_header > ul > li.language {
        max-width: 37px;
        float: left;
    }
    .col-logo {
        text-align: center;
    }
    .img_slide_home {
        padding: 10px 0;
        padding-top: 0;
        padding-bottom: 70px;
    }
    .first_news {
        padding: 0 !important;
    }
    .first_news .first_news-image .first_news-title a.text-white.text-bold {
        line-height: 16pt;
        font-size: 12pt !important;
    }
    .first_news .first_news-image .first_news-title p a.text-white.text-bold {
        font-size: 9pt !important;
        padding: 5px 10px;
    }
    .first_news .first_news-image .first_news-title p {
        align-items: baseline;
    }
    .first_news .first_news-image .first_news-title {
        left: 3%;
        width: 94%;
        bottom: 10px;
        padding: 10px;
    }
    .first_news .first_news-image {
        min-height: 350px !important;
    }
    .tintuc_slide_home {
        max-width: 100%;
    }
    .slideshow .slick-list.draggable {
    }
    .tintuc_slide_home .cot1 h2 {
        font-size: 20pt;
        margin-bottom: 5px;
        text-align: center;
    }
    .tintuc_slide_home .cot1 h3 {
        font-size: 14pt;
        margin-top: 0;
        text-align: center;
    }
    .tintuc_slide_home .cot1 {
        padding-top: 0;
        margin: 15px 0;
    }
    .tintuc_slide_home .cot2 .img_tintuc_home {
        min-height: 150px !important;
    }
    .name_tintuc_home {
        font-size: 14px;
        margin-bottom: 12px;
        line-height: 20px;
    }
    .time_tintuc_home {
        margin-bottom: 10px;
        font-size: 14px;
    }
    .icon_readmore span {
        padding: 6px 14px;
        font-size: 12px;
    }
    .slideshow_tintuchome-more {
        padding: 20px 20px;
    }
    .slideshow_tintuchome-more .more_link {
        font-size: 14pt;
    }
    .slideshow_tintuchome .slick-arrow i {
        font-size: 20px;
        color: #fff;
    }
    .slideshow_tintuchome .slick-arrow.prev {
        bottom: -17%;
        right: 19%;
    }
    .slideshow_tintuchome .slick-arrow.next {
        bottom: -17%;
    }
    .slideshow_tintuchome .slick-arrow {
        padding: 5px 12px;
    }
    .icon_readmore img {
        max-width: 30px;
    }
    .intro_home .title_intro_home a {
        font-size: 36pt;
        margin-bottom: 20px;
    }
    .around_trietly {
        padding: 22px;
    }
    .product-image {
        max-height: 148px;
        min-height: 148px;
        overflow: hidden;
    }

    a.productModal {
        display: inline-block;
        min-height: 52px;
        max-height: 52px;
        /* overflow: hidden; */
    }

    .product-item{
        padding: 10px;
    }
    .product-item a {
        margin-bottom: 0px;
        padding: 0;
    }
    .product-image img{
        min-height: 148px;
    }
    .product-price {
        padding: 0;
    }
    #productions .productions_title h1 {
        font-size: 24pt;
    }
    #productions .productions_title h4 {
        font-size: 15pt;
    }
    #modalProductInfo .product-img{
        max-height: 300px;
        overflow: hidden;
    }
    #modalProductInfo .product-img img{
        max-height: 255px;
        object-fit: cover;
    }
    h2.cate_product-title{
        margin-top: 15px;
    }
    h2.mananul-title{
        margin-top: 15px;
    }
    .product_item-image {
        min-height: 90px;
        position: static;
    }
    .product_item {
        padding: 5px;
        position: relative;
        border-radius: 10px;
        min-height: 151px;
    }
    .product_item-title {
        position: absolute;
        width: 90%;
        bottom: 0;
        left: 5%;
        background-color: #69606078;
        height: auto;
        border-radius: 10px;
        line-height: 17px;
    }
    .product_item-title a {
        font-size: 12px;
        padding: 0 !important;
        text-transform: capitalize;
    }
    .title_service {
        font-size: 36pt;
        margin-bottom: 10px;
    }
    .slide_home span.item-title {
        top: auto;
        bottom: 5%;
    }
    .intro_home {
        padding: 4px 0;
    }
    .slide_home span.item-title {
        font-size: 3rem;
        margin: 0 auto;
        left: 0;
        line-height: 36px;
        right: 0;
        text-align: center;
    }
    .col-service {
        margin-bottom: 15px;
    }
    #form_contact_home button {
        width: 100%;
    }
    .footer_top .row:first-child {
        margin-left: 0px;
        margin-right: 0px;
    }
    .img-service {
        min-height: 163px;
    }
    .service_home {
        padding: 20px 0;
    }
    .tintuc_image img {
        margin-bottom: 15px;
    }
    .title_news_home {
        margin-bottom: 10px;
    }
    .service_home.tin2 .icon_readmore {
        margin: 20px 0;
        text-align: center;
    }
    .baoquanh_ft_top {
        padding: 20px 0;
    }
    .footer_top .dong2 .cot1_dong2 p.ketnoi span {
        font-size: 29pt;
    }
    .footer_top .dong2 .cot1_dong2 p {
        font-size: 1.5em;
        line-height: 36pt;
    }
    .footer_top .row:first-child {
        margin-top: 5px;
    }
    .title_ft {
        margin-bottom: 15px;
        margin-top: 10px;
    }
    .social-network {
        justify-content: center !important;
    }
    h2.intro-title {
        margin-top: 5%;
    }

    h2.intro-title a {
        font-size: 22pt;
    }

    .products {
        margin-top: 5%;
    }
    .feedback .feedback-item .feeback-img img {
        min-height: 62px;
    }
    .feedback .feedback-item .feeback-img {
        max-height: 88px;
    }
    .feedback-item {
        min-height: 160px;
    }
}
@media(max-width: 425px){
    .product-image{
        max-height: 200px;
        min-height: 200px;
    }
}
