/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Pretendard';
    src: url('../fonts/PretendardVariable.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Pretendard', sans-serif;
    line-height: 1.6;
    font-size: 18px;
}
h1 {
    font-size: 45px;
    line-height: 1.2;
    font-weight: 700;
}

h2 {
    font-size: 38px;
    line-height: 1.25;
    font-weight: 700;
}

h3 {
    font-size: 30px;
    line-height: 1.3;
    font-weight: 600;
}

h4 {
    font-size: 25px;
    line-height: 1.3;
    font-weight: 600;
}

h5 {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 600;
}
a {color: #43B5D2;}
a:hover {color: black;cursor: pointer;}
h2.name {line-height: 30px;color: #43B5D2; font-weight: bold;}

/* Main Header Content */
.logo-wrap {display: flex; justify-content: space-between; align-items: center;}
.logo img {width: 80px;}
.logo-img .inner {
    display: flex;
    justify-content: start;
    margin: 3px 0 2px;
}
.main-header {gap: 30px;justify-content: space-between;position: relative;}
.ico-phone {
    background: url(../images/ico-phone.png) no-repeat;
    width: 25px;
    height: 25px;
    display: inline-block;
}
.search-bar {
    position: relative;
    margin: 0;
    border: 1px solid #43B5D2;
    border-radius: 5px;
    padding: 8px 10px 5px 10px;
    display: flex;
    justify-content: space-between;
    color: #43B5D2;
    max-width: 163px;
}
.search-bar form {
    width: 100%;
}
.search-bar input {
    border: none;
    outline: none;
    background: transparent; 
    color: #43B5D2;
    width: 96%;
}
.search-bar input::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color: #43B5D2;
    font-style: italic;
    opacity: 1; /* Ensures full color in older browsers that might default to lower opacity */
}

.search-bar input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #43B5D2;
    font-style: italic;
    opacity: 1;
}

.search-bar input::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #43B5D2;
    font-style: italic;
    opacity: 1;
}

.search-bar input:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #43B5D2;
    font-style: italic;
}

.search-bar input::placeholder { /* Most modern browsers */
    color: #43B5D2;
    font-style: italic;
    opacity: 1;
}
.search-bar button i {
    color: #43B5D2;
}
.search-bar button {
    background: none;
    color: #43B5D2;
    border: none;
    outline: none;
    cursor: pointer;
    position: absolute;
    padding: 8px;
    border-radius: 0 5px 5px 0;
    top: -2px;
    width: 40px;
    right: 0px;
}
.text-red {color: #fd0100;}
.text-green {color: #43B5D2;}
/* Navigation Menu Styles */
#menu-top {background: #43B5D2;}
.menu-top {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    justify-content: space-between;
}
.menu-wrap {padding-top: 18px;display: flex;
    justify-content: space-between;
    width: 100%;}
.menu-top li {position: relative;}
.menu-top li a {
    color: black;
    text-decoration: none;
    padding: 10px 0;
    display: block;
    font-size: 18px;
    line-height: 30px;
}
.menu-top li a:hover {color: #dae4eb;}

.menu-top li ul {
    position: absolute;
    top: 67px;
    left: -15px;
    background: #43B5D2;
    margin: 0;
    padding: 0;
    list-style: none;
    z-index: 99;
    width: 365px;
    display: none;
}
.menu-top li:hover ul {
    display: block;
}
.menu-top li ul li  {
    list-style: none;
}
.menu-top li ul li a {
    padding: 5px 15px;
    margin: 0;
    border-top: 1px solid #195d8e;
}
.mm-navbar__title {
    text-transform: uppercase;
}
.location-search {padding-top: 9px;}
.location-search .location-info,
.location-search .contact-search {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    padding-top: 10px;
}
.location-search .contact-info {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
}
.location-search a {
    align-items: center;
    justify-content: center;
    display: flex;
    gap: 10px;
    text-decoration: none;
    background: #E90001;
    border-radius: 30px;
    height: 48px;
    line-height: 48px;
    width: 200px;
    text-align: center;
}
.location-search a .phone-number {color: white; font-weight: bold;white-space: nowrap;}
.location-search a:hover {
    color: white;
    cursor: pointer;
}
.contact-item-left img {max-width: 60px;}
section {padding: 20px 0 0;}
.section-header {
    padding: 40px 0 35px;
}

.section-header .section-title {
    color: #43B5D2;
    font-size: 40px;
    margin: 15px 0;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
}
.section-header .section-title.left {text-align: left;padding-left: 50px;}
.category-sub {
    list-style: none;
    display: flex;
    justify-content: start;
    gap: 15px;
    padding: 0;
    margin: 0;
}
.category-sub li a {
    color: black;
    text-decoration: none;
}
.category-sub li a.active { color: #43B5D2; font-weight: bold;}
.section-header p {
    color: #43464d;
    margin: 0;
}
.line {
    width: 120px;
    height: 2px;
    margin: 10px auto 0;
    position: relative;
}
.line hr {
    border-top: 2px solid#dedede;
}
.line hr,
.line span {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
}
.line span {
    width: 40px;
    display: inline-block;
    border-top: 3px solid#33844d;
}
.department {
    position: relative;
    text-align: center;
    margin-bottom: 30px;
}
.department .dept-title {
    position: absolute; bottom: 3px; text-transform: uppercase; font-weight: bold; color: #43B5D2;
    text-shadow: 0 5px 5px rgba(0, 0, 0, 0.25);
    width: 100%;
}

.gallery-home .gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-home .gallery-item img {
    border-radius: 6px;
}
.gallery-home .gallery-item .tech-title {
    position: absolute;
    bottom: 0;
    width: 100%;
    color: white;
    text-align: center;
    background: linear-gradient(180deg,rgba(0, 0, 0, 0) 10%, rgba(206, 16, 24, 1) 100%);
    height: 40px;
    line-height: 40px;
    margin: 0;
    border-radius: 6px;
    text-transform: uppercase;
    font-weight: bold;
}
.technology .tech-item {
    position: relative;
    overflow: hidden;
}

.technology .tech-item img {
    border-radius: 6px;
}
.technology .tech-item .tech-title {
    position: absolute;
    bottom: 20px;
    width: 100%;
    color: #36539D;
    text-align: center;
    margin: 0;
    border-radius: 6px;
    text-transform: uppercase;
    font-weight: bold;
    text-shadow: 0 5px 5px rgba(0, 0, 0, 0.25);
}
.brand-slider {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.brand-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.brand-card:hover {
    transform: translateX(-1px);
}

.brand-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Categories Section */
.news-page .news-body,
.knowledge-section .news-body {
    padding: 10px
}
.news-body .title {line-height: 30px; text-align: left; font-weight: normal;}
.news-body .position {text-align: center; color: #43464d;}
.news-card-title {color: black; font-weight: bold; margin-bottom: 10px; display: inline-block;text-decoration: none;line-height: 30px;}
.news-card-title:hover {color: #43B5D2; text-decoration: none;}
.news-short-desc {line-height: 30px;}
.news-body .title:hover {color: #43B5D2;}
.home-news {padding-bottom: 30px;}
.home-news .news-card .news-img {
    max-height: 200px;
    overflow: hidden;
}
.news-card.has-shadow {
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.news-card.has-border-radius {border-radius: 6px;}
.news-card.has-border-radius img {border-top-left-radius: 6px; border-top-right-radius: 6px;}

.news-card-item {
    width: auto;
    min-height: 350px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.news-card-item img {
    max-height: 180px;
}
.news-card-item .news-card-title {
    min-height: 85px;
}
.space-slider .news-card .news-image {
    overflow: hidden;
    padding: 0 5px;
    max-height: 600px;
}
.home-news .news-card {
    box-shadow: none;
    margin: 0;
}
.home-news .news-card.right {
    margin-bottom: 10px;
}
.news-card.left .news-img {
    margin-bottom: 15px;
    overflow: hidden;
    max-height: none;
}

.img-h {
    max-height: 200px;
}
.news-card img {
    width: 100%;
    height: auto;
}
.knowledge-section .news-card { margin: 0; }
.btn-warranty {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    margin: auto;
    width: 220px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    text-decoration: none;
    padding: 0;
}
.btn-warranty:hover {
    color: white;
    text-decoration: none;
}

.category-brand {
    margin-right: -15px;
}

.category-item { margin-bottom: 20px;}
.category-item a {
    text-decoration: none;
    color: inherit;
}
.content h4 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    line-height: 22px;
    min-height: 45px;
}
.feature-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.feature-item i {
    color: #0054A6;
    margin-bottom: 15px;
}

.feature-item h3 {
    margin-bottom: 10px;
    color: #333;
}

.feature-item p {
    color: #43464d;
}
.news-home-section .title { color: #43B5D2; font-weight: bold; text-align: center; text-transform: uppercase; margin-bottom: 10px; }
.news-home-section ul { margin: 0; padding: 0; height: 500px; overflow-y: auto;}
.news-home-section ul li { list-style: none; padding-bottom: 10px;}
.news-home-section ul li a { color: black; 
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
/* main slider */
.owl-nav {
    position: absolute;
    top: 45%;
    left: 2%;
    z-index: 99;
    width: 96%;
    display: flex;
    justify-content: space-between;
}
.owl-nav i {line-height: 40px;}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    color: rgba(0, 0, 0, 0.7);
    border: none;
    outline: none;
}
/* end main slider */

.home-category .owl-nav {
    z-index: 99;
    display: flex;
    justify-content: space-between;
}
.home-category .owl-nav i {}

.warranty-wrapper {
    min-height: 320px;
}

/* Support Section */
.support-section {
    background: url(../images/bg.png) no-repeat left top;
    padding-bottom: 30px;
}
.support-section .inner {
    background: #04AE4E;
    padding: 20px 0;
    text-align: center;
}
.support-section .container {
    position: relative;
}
.support-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: white;
}
.support-content p strong {
    
}
.btn-wrap-register { align-items: flex-end; display: flex; justify-content: flex-end;}
.btn-register {
    background-color: #43B5D2;
    color: white;
    padding: 10px 25px;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
}
.appointment-form .consultant-desc {margin-bottom: 25px;}
.appointment-form .form-control::placeholder {
    color: #43B5D2;
    opacity: 1;
    font-style: italic;
    letter-spacing: 1px;
}
.appointment-form .form-control {
    border-color: #43B5D2;
    border-radius: initial;
}
.appointment-form .has-error .form-control,
.form-control.error {border-color: #fd0100;}
.card-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f8f9fb;
    margin: 0 40px;
    padding: 55px 20px 20px;
    border-radius: 220px;
    aspect-ratio: 0.615 / 1;
    position: relative;
    overflow: hidden;
}
.service-slider .category-item.active .card-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.service-slider .category-item {
    flex: 1 1 0;
    min-width: 0;
}
.service-slider .card-item {
    width: calc(100% - 40px);
    box-sizing: border-box;
}
.service-slider .category-item.active .card-item {
    border-radius: 250px;
    transform: scale(1.1);
    transform-origin: center;
    z-index: 2;
}
.service-slider .category-item.active .card-item::before {
    opacity: 1;
    z-index: 1;
}
.service-slider.owl-carousel.owl-drag .owl-item {padding: 40px 25px;}
.card-item > * {
    position: relative;
    z-index: 1;
}
.card-item .card-text {
    text-align: center;
    color: #43b5d2;
    transition: color 0.3s ease;
    flex-grow: 1;
}
.card-item .card-text .card-sname {text-transform: uppercase;margin-bottom: 0;font-size: 24px;}
.card-item .card-image {
    aspect-ratio: 1;
}
.card-item .card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    border-radius: 50%;
    transition: border-radius 0.3s ease;
}
.service-slider .category-item.active .card-item .card-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.service-slider .category-item.active .card-item .card-image img {
    border: 0;
    border-radius: inherit;
}
.service-slider .category-item.active .card-item .card-text {
    position: absolute;
    top: 22%;
    left: 20px;
    right: 20px;
    z-index: 2;
    color: #fff;
}
.service-slider .category-item.active .card-item .card-text::after {
    content: "CHI TIẾT";
    display: block;
    width: max-content;
    margin: 42px auto 0;
    padding: 11px 28px;
    border: 1px solid #fff;
    border-radius: 999px;
    color: #fff;
    font-weight: 700;
}

@media (max-width: 767px) {
    .card-item {
        margin: 0 1px;
        padding: 22% 3.5% 7%;
        border-radius: 150px;
    }
    .card-item .card-text .card-sname {}
    .card-item .card-text .card-author {}
    .read-story-btn {margin: 0 auto;}
}
/* Footer Styles */
.site-footer {
    padding: 0 0 20px;
    background: #F8FBFD;
}
#map {padding: 0 0 30px 0;}
.footer-information {
    color: white;
    background: #43B5D2;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}
.footer-column {padding-top: 30px;}
.footer-column h3 {
    color: white;
    margin: 0 0 30px;
    font-weight: bold;
}
.footer-column ul {
    list-style: none;
    padding: 0;
}
.footer-column ul li {
    margin-bottom: 0;
}
.footer-column ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    font-weight: bold;
}

.social-links {
    display: flex;
    margin-bottom: 20px;
    flex-direction: column;
}

.social-link {
    color: white;
    text-decoration: none;
}

.qr-container {
    display: flex;
    gap: 15px;
    align-items: center;
}

.qr-container img {
    max-width: 100px;
    height: auto;
}

.store-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.store-buttons img {
    max-width: 120px;
    height: auto;
}

.footer-contact h3 { color: #43B5D2; font-weight: bold; margin-bottom: 15px;}
.footer-contact .fc-desc { margin-bottom: 30px;}
.footer-contact .contact-item {
    display: flex;
    justify-self: flex-start;
    gap: 10px;
}
.payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.payment-icons img {
    height: 30px;
    width: auto;
}

.logo-img .company-name,
.company-info .phone-wrap,
.company-info .address {
    margin-bottom: 10px;
}
.logo-img p {
    margin-bottom: 0;
}
.company-info .phone-wrap span,
.company-info .address span {
    color:#0054A6;
}
.company-info .cart {
    color: #F21606;
}
.payment-wrap {
    display: flex;
    justify-content: space-between;
}
.footer-site-name {color: #C48B54;}
.guarantee {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding-bottom: 15px;
}
.contact-info li {
    display: flex;
    flex-direction: column;
}

.site-footer .company-info {
    margin-top: 30px;
    text-align: left;
}
.site-footer hr {
    border-top: 1px solid #9D9D9D;
}
.company-logo { text-align: center; }
.company-logo img { height: 120px; border-radius: 50%; border: 1px solid #FD0100; }
#hamburger {display: none;}
#hamburger i {
    color: black;
    cursor: pointer;
}
#menu {display: none; z-index: 9999;}
.prompt-field {padding: 20px 0}
label.error {
    color: red;
    display: block;
    font-weight: normal;
    margin-bottom: 0;
}
.section-desc p {text-align: center;}
/* Responsive Styles */
/* News Styles */
.news-section .section-header {padding: 30px 0 25px;text-align: center;}
.news-section .section-desc p { color: #848484; }
.news-section .section-header ul { margin: 0; padding: 20px 0 0; list-style-type: none;}
.company-license {text-align: center;}
.company-license p {line-height: 30px;}
/* End News Styles */

.owl-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
}

.owl-dots .owl-dot {
    width: 10px !important;
    height: 10px !important;
    background-color: gray !important;
    border-radius: 20px !important;
    margin-right: 10px !important;
}

.owl-dots .owl-dot.active {
    width: 10px !important;
    height: 10px !important;
    background-color: white !important;
    border-radius: 20px !important;
}

/*start images products*/
.detail-gallery {position:relative}
.gallery-control {width: 78px; float: left;}
.gallery-control a {width:76px;height:76px;display:inline-block;margin-right:10px; margin-bottom: 5px; overflow: hidden; border: 1px solid #ddd; padding: 1px; border-radius: 3px;}
.gallery-control a img {border-radius: 3px;overflow: hidden;}

.popup-gallery { margin-left: 95px; }
.no-click {pointer-events: none;}
.overlay {position: absolute;top: 0;bottom: 0;left: 0;right: 0;height: 100%;background-color: rgba(0,0,0,0.58);transition: transform .3s, opacity .6s;pointer-events: none;}
header .overlay {z-index: 1;}
/*end images products*/

/* Scroll Top */
.scrollToTop {
    width: 40px;
    height: 40px;
    text-align: center;
    font-weight: bold;
    color: #444;
    text-decoration: none;
    position: fixed;
    bottom: 10px;
    right: 10px;
    display: none;
    z-index: 10;
    cursor: pointer;
}
.scrollToTop img {border-radius: 50%;}
/* Text Hide */
.text-split {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 3;
}

/* Transition All */
.transition,
.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,
.btn-frame .kenit-alo-circle-fill,
.support-online .kenit-alo-circle-fill {
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
}


/* Button Frame */
.btn-frame {
    display: block;
    width: 40px;
    height: 40px;
    position: fixed;
    right: 10px;
    z-index: 10;
    cursor: pointer;
}

.btn-frame i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #006ECD;
    position: relative;
    z-index: 1;
    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: center;
}

.btn-frame i img {
    vertical-align: middle;
    width: 70%;
}

.btn-frame .animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.btn-frame .kenit-alo-circle {
    width: 50px;
    height: 50px;
    top: -5px;
    right: -5px;
    position: absolute;
    background-color: transparent;
    border-radius: 100%;
    border: 2px solid rgba(7, 41, 103, 0.8);
    border-color: #006ECD;
    opacity: 0.5;
}

.btn-frame .zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}

.btn-frame .animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.btn-frame .kenit-alo-circle-fill {
    width: 50px;
    height: 50px;
    top: -5px;
    right: -5px;
    position: absolute;
    border-radius: 100%;
    border: 2px solid transparent;
    background-color: rgba(7, 41, 103, 0.35);
    opacity: 0.4;
}

.btn-frame .pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

.btn-messenger {bottom: 500px;}
.btn-tiktok {bottom: 245px;}
.btn-zalo {bottom: 125px;}
.btn-fb {bottom: 185px;}
.btn-phone {bottom: 65px;}

.mm-listview li a {
    text-transform: uppercase;
}
.name {
    text-transform: uppercase;
}

.filter-header {display: flex; justify-content: space-between;}
.filter-header i { display: none;}
.slider-section { padding-top: 0;}
#c2.owl-carousel .owl-item .desc img { width: auto!important;}
#c1 {padding: 40px 0;}
#c1.owl-carousel .owl-item img {border-radius: 50%;height: 200px;width: 200px;object-fit: cover;}
#c1.owl-carousel .owl-item .team-item {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
#c1.owl-carousel .owl-item .team-item .title {font-weight: bold; text-align: center; padding: 5px 0 0;margin: 0;}
.team-large .position {font-weight: bold;}
.team-large .name {color: #43B5D2; font-weight: bold;padding: 15px 0;font-size: 26px;}
#site-index .site-footer { margin-top: 0;}
#article-category-view .news-img {max-height: 160px; overflow: hidden;}
#article-category-view .news-card-title {display: inline-block; padding: 5px;text-decoration: none;}
#article-category-view .view-more {display: inline-block; padding: 0 5px;}
.view-more a:hover { color: #43B5D2;}
.page-content img,
.page-content iframe {
    max-width: 100%;
    height: auto;
}

.fix_head {
    position: fixed !important;
    top: 0;
    width: 100%;
    z-index: 999 !important;
    background: white;
}
/*page-loading*/
@keyframes page-load {
    from {
        background-color: #ffc422;
    }
    to {
        background-color: #c0392b;
    }
}

/* Transition All */
.scale-img img,
.scale-img:hover > img {
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
}

/* Scale IMG */
.scale-img {
    overflow: hidden;
    display: block;
}

.scale-img img {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.scale-img:hover > img {
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
}
.company-details p {line-height: 40px;}
.read-story-left {padding-top: 150px;}
.read-story-left p {
    padding-right: 200px;
    text-align: justify;
}
.read-story-right {
    padding-left: 110px;
}
.read-story-btn {display: block;text-transform: uppercase; text-decoration: none; font-weight: bold; height: 60px; width: 300px; color: #43b5d2; border: 1px solid #43b5d2; text-align: center; line-height: 60px;}
.read-story-section {
    background-color: #f3f7ff;
}

.bg-story {
    background: url(../images/read-story-bg1.png) no-repeat center top;
    background-size: contain;
    min-height: 680px;
}
.read-story-btn:hover {border-color: black;}
/* Responsive Styles */
@media (max-width: 1900px) {
    .space-slider .news-card .news-image {max-height: 600px;}
    .read-story-section {min-height: 840px;}
    .read-story-left {padding-top: 150px;}
}
@media (max-width: 1600px) {
    .space-slider .news-card .news-image {max-height: 445px;}
    .read-story-section {min-height: 640px;}
}
@media (max-width: 1280px) {
    
}
@media (max-width: 1024px) {
    .space-slider .news-card .news-image {max-height: 380px;}
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    /* .slider-section .owl-carousel .owl-item img {
        min-height: auto;
    } */

    .scrollToTop {
        bottom: 5px;
        right: 10px;
    }

    .btn-tiktok {bottom: 235px;}
    .btn-messenger {bottom: 375px;}
    .btn-zalo {bottom: 115px;}
    .btn-fb {bottom: 175px;}
    .btn-phone {bottom: 55px;}
}

#popupSlider .close {
    position: absolute;
    top: -15px;
    right: -15px;
    margin: 0;
    padding: 5px 10px;
    font-size: 22px;
    line-height: 1;
    z-index: 2;
    border-radius: 50%;
}

#popupSlider .close:hover {
    opacity: 1;
}

#popupSlider .modal-body {
    padding: 0;
    width: 800px;
    height: 600px;
}

#modalCarousel .carousel-item img {
    width: 100%;
    max-width: 800px;
    height: 600px;
    object-fit: fill;
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .logo-wrap {
        display: initial;
    }
    .support-content {
        flex-direction: column;
    }
    .categories-grid {
        grid-template-columns: 1fr;
    }

    .team-large .name, .section-header .section-title {
        font-size: 25px;
    }
    h1 {
        font-size: 30px;
    }
    h2 {
        font-size: 25px;
    }
    h3 {
        font-size: 20px;
    }
    h4 {
        font-size: 18px;
    }
    h5 {
        font-size: 16px;
    }
    .section-desc p {
        
    }
    .read-story-left p {
        color: #43B5D2;
    }
    .read-story-right {
        padding-left: unset;
        text-align: center;
    }
    .service-slider.owl-carousel.owl-drag .owl-item {
        padding: 0;
        padding-left: 30px;
        padding-top: 30px;
        padding-bottom: 10px;
    }

    #popupSlider .modal-body {
        padding: 0;
        width: auto;
        height: auto;
        min-height: 350px;
    }

    #modalCarousel .carousel-item img {
        width: 100%;
        max-width: auto;
        height: auto;
        min-height: 350px;
        object-fit: fill;
        display: block;
        margin: 0 auto;
    }
}
@media (max-width: 1024px) {
    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

@media (max-width: 600px) {
    .technology .tech-item:nth-child(2n+1) {margin-top: 20px;}
    .phone-field {padding-top: 20px;}
    .section-header .section-title.left {text-align: center;}
    .menu-wrap { display: none;}
    .menu-top li a {
        text-align: center;
    }
    .logo-img .inner {
        justify-content: center;
        position: relative;
    }
    .menu-top {display: none;}
    .category-sub {
        flex-direction: column;
        display: none;
    }
    .section-header {
        padding: 40px 0;
    }
    .location-search { padding: 10px 0 0;}
    
    .location-search .contact-search {
        display: block;
    }
    .contact-info {
        display: flex;
        justify-content: flex-start;
        gap: 20px;
    }
    .fix_head {padding-top: 15px;}
    .fix_head .contact-info {display: none;}
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .qr-container {
        flex-direction: column;
    }

    .brand-slider {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        
    }
    .site-footer .company-info {
        flex-direction: column;
    }
    .company-license {
        padding: 15px 15px 0;
    }
    .category-brand {display: none;}
    #menu {display: block;}
    #hamburger {display: block; padding: 22px 20px 0 0 ;}
    .news-card { width: 100%;}
    .hot-brands .section-desc { flex-direction: column; }
    .news-section .section-desc { flex-direction: column; }
    .logo-img .company-name {text-align: center;}
    .filter-header {cursor: pointer;}
    .filter-header i {
        display: block;
        line-height: 54px;
        
    }
    .item-cate {
        display: none;
    }

    .guarantee { justify-content: center; flex-direction: row; gap: 10px;}
    .guarantee img { width: auto; max-width: 100%;}
    .department img{padding-left: 0}
    .department .dept-title {}
    .home-news .news-card .news-img {max-height: 250px; padding: 0 5px;}
    .home-news .news-card.left {padding: 0 5px;}
    .home-news .news-card.left .news-img {max-height: 250px;}
    .company-license {text-align: center; padding: 15px;}
    .search-bar {max-width: none;}
    .section-header .section-title.left {padding: 0;}
    .read-story-section {
        background: url(../images/beauty.png) no-repeat left top;
        min-height: 470px;
        background-size: cover;
    }
    .read-story-left {padding-bottom: 40px;}
    .read-story-left p {padding-right: 0;}
}

.pri-color-bold {
    color: #43B5D2;
    font-weight: bold;
}
.pri-color {
    color: #43B5D2;
}

.news-page a {
    text-decoration: none;
}

.news-item {
    display: block;
    min-height: 350px;
}
.news-short-desc,
.news-card-title,
.news-page .news-body .title,
.category-page .news-body .title,
.knowledge-section .news-body .title {
    /* Maximum 2 lines */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    max-height: 62px;
    margin: 0;
}
.category-page .news-body .title {margin: 0;}
.news-card .news-body { padding: 10px;}
.category-page .category-item .news-image img {
    max-height: 285px;
}
.space-slider .owl-stage .owl-item {
    padding-right: 10px;
}
.news-short-desc { -webkit-line-clamp: 3;}

.technology-section .tech-item, .news-image, .team-item, .news-img, .story-item-img {
    overflow: hidden;
}

.technology-section .tech-item img, .news-image img, .team-item img, .news-img img, .story-item-img img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.technology-section .tech-item img:hover, 
.news-image img:hover, .news-img img:hover, .story-item-img img:hover {
    transform: scale(1.08);
}

.resource-section .team-item .img-fluid {
    cursor: pointer;
}

.news-body h3 {
    padding: 0 0 10px 10px;
}
.mb-20 {
    margin-bottom: 20px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-40 {
    padding-top: 40px;
}