@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap'); 
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&display=swap'); 
.slick-has-nav {
    position: relative;
}

.ks-right .slick-prev {
    left: auto;
    right: 58px;
    top: auto;
    bottom: 14px;
    transform: none;
}

.ks-right .slick-next {
    right: 14px;
    top: auto;
    bottom: 14px;
    transform: none;
}

/* ============================================================ */
.slider-section {
    position: relative;
    width: 100%;
    height: 75vh;
    /* Premium desktop height */
    min-height: 500px;
    overflow: hidden;
    background: #000;
}

@media (max-width: 992px) {
    .slider-section {
        /* height: 70vh; */ min-height: 400px;
    }
}

@media (max-width: 768px) {
    .slider-section {
        height: 40vh;
        min-height: 350px;
    }
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-wrapper .slick-list, .slider-wrapper .slick-track {
    height: 100%;
}

.slide-item {
    position: relative;
    width: 100%;
    height: 100%;
    outline: none;
}

.slide-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #33333300;
}

.slide-item img, .slide-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s ease;
    /* For zoom effect */
}

.slider-wrapper .slick-active img, .slider-wrapper.slick-active video {
    /* transform: scale(1.1); */
    /* Subtle zoom in when active */
}

/* Overlay text */
.slide-item .slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: left;
    color: var(--color-3);
    z-index: 2;
    width: 100%;
    max-width: 1280px;
    display: flex;
    flex-direction: column;
    padding: 0 10px;
}

.slide-content h2 {
    font-size: clamp(24px, 4vw, 49px);
    font-weight: 700;
    margin-bottom: 20px;
    /* text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); */
    text-transform: none;
    letter-spacing: 0.1em;
    margin-top: 0;
    line-height: 1.4;
    color: #074091;
    opacity: 0;
    filter: blur(10px);
    text-transform: uppercase;
    max-width: 70%;
    font-family: "Roboto", sans-serif;
}

.slide-content span {
    text-transform: uppercase;
    color: #074091;
    font-weight: 700;
    font-size: 60px;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 7px;
}

.slide-content p {
    font-size: clamp(15px, 3vw, 19px);
    /* text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4); */
    font-weight: 400;
    margin-bottom: 0;
    color: var(--color-3);
    max-width: 850px;
    line-height: 1.6;
    opacity: 0;
    filter: blur(10px);
    max-width: 50%;
}

.slide-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin-bottom: 10px;
    margin-top: 30px;
}

.slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 30px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
    text-transform: uppercase;
}

.slide-btn svg {
    width: 20px;
}

.slide-btn-primary {
    background-color: #074091;
    color: #fff;
    border: 1px solid #074091;
}

.slide-btn-primary svg {
    /* fill: #fff; */
}

.slide-btn-primary:hover {
    background-color: transparent;
    border-color: #1d1d1d;
    transform: translateY(-3px);
    color: #1d1d1d;
}

.slide-btn-outline {
    background-color: rgba(255, 255, 255, 0.1);
    color: #1d1d1d;
    border: 1px solid #1d1d1d;
}

.slide-btn-outline:hover {
    background-color: #074091;
    border-color: #074091;
    transform: translateY(-3px);
    color: #fff;
}

.slide_content_in {
    max-width: 890px;
}

.slide_video {
    max-width: 150px;
    position: absolute;
    right: 0;
    bottom: 0;
}

.slide_video .slide_video_in {
    display: flex;
    gap: 10px;
}

.img_video_slide svg {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.img_video_slide svg path {
    stroke: #fff;
}

.slide_video .slide_video_in .text_video_slide {
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    line-height: 1.3;
}

.btn-view-all {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    filter: blur(10px);
}

.slick-active .slide-content h2 {
    animation: softEntrance 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.3s;
}

.slick-active .slide-content p {
    animation: softEntrance 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.5s;
}

.slick-active .btn-view-all {
    animation: softEntrance 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.7s;
}

@keyframes softEntrance {
    from {
        opacity: 0;
        filter: blur(10px);
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

/* Dark overlay */
.slide-item1::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 0%);
    z-index: 1;
}

.slider-section .slick-prev, .slider-section .slick-next {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    opacity: 0;
    transition: all 0.3s;
    width: 50px;
    height: 50px;
}

.slider-section:hover .slick-prev, .slider-section:hover .slick-next {
    opacity: 1;
}

.slider-section .slick-prev:hover, .slider-section .slick-next:hover {
    background: rgba(255, 255, 255, 0.4) !important;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-section .slick-prev {
    left: 40px;
}

.slider-section .slick-next {
    right: 40px;
}

@media (max-width: 768px) {
    .slider-section .slick-prev, .slider-section .slick-next {
        width: 44px;
        height: 44px;
    }

    .slider-section .slick-prev {
        left: 15px;
    }

    .slider-section .slick-next {
        right: 15px;
    }
}

.slider-section .slick-dots {
    gap: 8px;
    z-index: 10;
    list-style: none;
    padding: 0;
    width: auto;
}

.slider-section .slick-dots li {
    margin: 10px 0;
    padding: 0;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    border-radius: 0;
    border: 0;
}

.slider-section .slick-dots li button {
    width: 25px;
    color: #333;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 2px;
    padding: 0;
    margin: 0;
    border: none;
    box-shadow: none;
    line-height: 0;
    font-size: 19px;
    display: block;
}

.slider-section .slick-dots li.slick-active {
    background-color: transparent;
}

.slider-section .slick-dots li button::before {
    display: none !important;
}

.slider-section .slick-dots li.slick-active button {
    font-weight: 700;
    color: #fff;
    font-size: 20px;
    width: 25px;
    background: transparent;
}

.slider-section .slick-prev, .slider-section .slick-next {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.65);
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    outline: none;
}
.thongtin_slide {
    margin-top: 20px;
}
.thongtin_slide .list .card {
    display: flex;
    gap: 10px;
}
.thongtin_slide .list .card .icon {
    width: 35px;
    margin: 0;
}
.thongtin_slide .list .card .icon img {
    height: auto;
}
.thongtin_slide .list .text {
    padding: 0 !important;
}
.thongtin_slide .list .text h2 {
    font-size: 24px;
    color: #0f2e61;
    font-weight: 700;
    margin-bottom: 0;
    text-align: left !important;
}
.thongtin_slide .list .text p {
    font-size: 12px !important;
    text-transform: uppercase;
    color: #333;
    font-weight: 600;
    max-width: 100%;
    text-align: left;
}
.ks-section {
    padding: 40px 0 20px 0;
    position: relative;
}
.title_sanpham {
    text-align: center;
    padding: 0 0 20px 0;
}

.title_sanpham span {
    font-size: 15px;
    color: #fc8601;
    font-weight: 600;
    text-transform: uppercase;
}

.title_sanpham h2 {
    font-size: 27px;
    color: #074091;
    font-weight: 700;
    text-transform: none;
    margin: 5px 0;
}

.title_sanpham p {
    font-size: 16px;
    padding-bottom: 0;
}
.sub-grid {
    display: grid;
    background: #eee;
    border-radius: 10px;
}
.sub-grid .wrap-img {
    padding-bottom: 60%;
    border-radius: 10px;
}
.sub-card .card-body {
    padding: 10px 20px 20px;
    /* position: absolute; */
    /* bottom: 0; */
    /* left: 0; */
    /* right: 0; */
}
.sub-card .brand-label {
    font-size: 14px;
}
.sub-card .card-title {
    font-size: 23px;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.sub-card .card-link {
    font-size: 13px;
}
.sub-grid img {
    border-radius: 10px 10px 0 0;
}
.card-body {
    padding: 10px 10px 20px 10px;
    text-align: center;
}
.card-body .img_kst {
    margin-bottom: 10px;
    min-height: 60px;
}
.card-body .img_kst img {
    width: 145px;
}
.card-link {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: #074091;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color .25s;
    border: solid 1px #002150;
    margin-top: 10px;
    border-radius: 5px;
    padding: 5px 10px;
}
.card-link a {
    color: #074091;
    font-size: 13px;
}
.card-link svg {
    width: 13px;
    height: 15px;
}
.brand-label {
    color: #002150;
    font-size: 16px;
}

.item-doitacs{
    padding: 5px 10px;
}

.item-doitacs img{
    width:100%;
    height: 60px;
    object-fit:contain;
    display:block;
}
.partner .title_sanpham {
    padding-top: 30px;
}
.title_post {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
}
.title_post h2 {
    font-size: 22px;
    color: #074091;
    font-weight: 700;
    text-transform: uppercase;
    margin: 5px 0;
}
.title_post span {

}
.title_post span a {
    font-size: 14px;
    color: #fc8601;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
}
.title_post span a svg {
    width: 23px;
    height: 20px;
    position: relative;
    top: 4px;
}
.home-about-section {
    padding: 20px 0 40px;
}
.list-news-pages {
    margin-top: 15px;
    background: #fff;
}
.item-blog-pages {
    padding: 0;
}
.images-blog-member {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    width: 100%;
}
.images-blog-member img {
    object-fit: cover;
    transform: scale(1);
    transition: 0.5s ease;
    height: 180px;
    width: 100%;
    border-radius: 5px;
}
.content-sales-blog-pages {
    width: 100%;
    margin-top: 0;
    padding: 5px 0px 10px 0px;
}

.name-action-member {
    min-height: 30px;
    margin-top: 5px;
}

.name-action-member a {
    display: inline-block;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: #171f50;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}
.time {
    color: #333;
    padding-bottom: 5px;
    padding-top: 0;
}
i.fa.fa-clock-o svg {
    width: 17px;
    height: 17px;
    margin-bottom: -5px;
}
i.fa.fa-eye.pl-1 svg {
    width: 15px;
    height: 15px;
    margin-bottom: -3px;
    margin-left: 15px;
}
.title_nangluc {
    text-align: center;
    margin-bottom: 20px;
}
.title_nangluc h2 {
    font-size: 22px;
    color: #074091;
    font-weight: 700;
    text-transform: uppercase;
    margin: 5px 0;
}
.read_more {
    text-align: center;
    margin-top: 20px;
}
.about-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background: #fff;
    border: solid 1px #04235538;
    color: #074091;
}
.about-link-btn svg {
    transition: transform 0.3s ease;
}.list .card {
    text-align: center;
    display: grid;
    margin-bottom: 10px;
}
.list .card .icon {
    text-align: center;
    margin: 20px auto;
}
.list .card .icon img {
    width: 55px;
}
.list .card .text {
    padding: 0 5px;
}
.list .card .text h2 {
    font-size: 14px;
    color: #074091;
    font-weight: 700;
    margin-bottom: 5px;
    text-align: center;
}
.list .card .text p {
    font-size: 14px;
}
.hppt .title_sanpham {
    padding-bottom: 20px;
    margin-top: 15px;
}
.hanh_trinh_phat_trien_ct h3 {
    font-size: 18px;
    font-weight: 800;
    color: #042355;
    text-transform: uppercase;
    margin: 0 0 8px 0;
    padding-bottom: 7px;
    letter-spacing: 0.5px;
    border-bottom: solid 1px #e1e1e1;
}
.hanh_trinh_phat_trien_ct h2 {
    font-size: 15px;
    font-weight: 700;
    color: #042355;
    margin-bottom: 5px;
}
.hanh_trinh_phat_trien_ct p {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    margin: 0;
}
.hanh_trinh_phat_trien_ct {
    text-align: center;
}










@media (max-width: 1500px) { 
    .list .card .text h2 {
        font-size: 14px;
    }
    .list .card .text p {
        font-size: 13px;
    }
}

@media (min-width: 1500px) { 
    .slide-item .slide-content {
        max-width: 1500px;
    }
    .list .card .text h2 {
        font-size: 16px;
    }
}
@media (max-width: 767px) { 
    .slide-content h2 {
        font-size: 25px;
        max-width: 100%;
        margin-bottom: 5px;
    }
    .list .card .text h2 {
        font-size: 16px;
    }
    .slide-content p {
        max-width: 90%;
    }
    .slide_content_in {
        padding-top: 120px;
    }
    .sub-grid {
        margin-bottom: 15px;
    }
    .hanh_trinh_phat_trien {
        margin-bottom: 20px;
    }
    .hanh_trinh_phat_trien_ct h3 {
        font-size: 20px;
    }
    .title_sanpham h2 {
        font-size: 25px;
    }
    .partner .title_sanpham {
        border-top: solid 1px #eee;
        padding-top: 20px;
    }
    .read_more {
        margin-bottom: 30px;
    }
    .images-blog-member img {
        height: 230px;
    }
}
@media (max-width: 575px) {
    .slider-section .slick-dots li button {
        width: 30px;
    }
    .slider-section .slick-dots li.slick-active button {
        width: 50px;
    }

    .slider-section .slick-dots {
        bottom: 20px;
    }

    .slide-btn {
        padding: 10px 16px;
        font-size: 12px;
    }
}

