    body {
        font-family: "Roboto", sans-serif;
        margin: 0;
        padding: 0;
        font-size: 16px;
        overflow-x: hidden;
        background-color: #ededf2;
    }


    a {
        text-decoration: none;
    }

    .mr-5 {
        margin-right: 5px;
    }

    .pd-30 {
        padding: 30px;
    }

    .reset_margin {
        margin: 0;
    }

    .text-bold {
        font-weight: bold;
    }

    .btn-more {
        width: 140px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        font-size: 14px;
        background-color: #0171bb;
        border-radius: 30px;
        color: #fff;
        border: none;
        position: relative;
        cursor: pointer;
        transition-duration: .2s;
        box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.116);
        padding-left: 8px;
        transition-duration: .5s;
    }


    .btn-more:hover {
        background-color: #0099ff;
        transition-duration: .5s;
        scale: 1.05;
    }

    .btn-more:active {
        transform: scale(0.97);
        transition-duration: .2s;
    }

    /* =========================================
   NÚT LIÊN HỆ TRÔI NỔI (ZALO, PHONE)
========================================= */
    .floating-contact {
        position: fixed;
        bottom: 30px;
        left: 30px;
        /* Đổi thành right: 30px nếu muốn nằm bên phải */
        z-index: 9999;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .contact-btn {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #fff;
        font-size: 22px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        position: relative;
        transition: all 0.3s ease;
    }

    /* Hiệu ứng scale khi hover chuột */
    .contact-btn:hover {
        transform: scale(1.1);
        color: #fff;
    }

    /* Màu riêng cho từng nút */
    .zalo-btn {
        background-color: #ffffff;
        /* Nền trắng để nổi logo Zalo xanh */
    }

    .zalo-btn img {
        width: 30px;
        height: 30px;
    }

    .phone-btn {
        background-color: #28a745;
        /* Màu xanh lá tạo cảm giác muốn gọi */
    }

    /* Hiệu ứng vòng tròn tỏa ra (Pulse) */
    .contact-btn::before,
    .contact-btn::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        z-index: -1;
        animation: pulse-ring 2s infinite;
    }

    .zalo-btn::before,
    .zalo-btn::after {
        background-color: rgba(0, 104, 255, 0.4);
        /* Màu tỏa ra của Zalo */
    }

    .phone-btn::before,
    .phone-btn::after {
        background-color: rgba(40, 167, 69, 0.4);
        /* Màu tỏa ra của Phone */
    }

    .contact-btn::after {
        animation-delay: 1s;
        /* Vòng thứ 2 trễ hơn vòng 1 tạo cảm giác lan tỏa */
    }

    /* Keyframe tạo chuyển động tỏa ra */
    @keyframes pulse-ring {
        0% {
            transform: scale(1);
            opacity: 0.8;
        }

        100% {
            transform: scale(1.6);
            /* Độ to của vòng lan tỏa */
            opacity: 0;
        }
    }

    /* Header */

    #header {
        background-color: #fff;
        height: 75px;
        line-height: 75px;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }

    .logo {
        height: 75px;
    }

    .name {
        font-size: 24px;
        font-weight: bold;
        color: #000;
        display: inline-block;
        margin-left: 10px;
    }

    .logo_img {
        height: 100%;
        width: auto;
        display: inline-block;
    }

    #list_menu {
        display: flex;
        justify-content: end;
        align-items: center;
        height: 75px;
        margin: 0;
        padding: 0;
    }

    .item-menu {
        text-decoration: none;
        font-size: 16px;
        list-style: none;
        min-width: 100px;
        text-align: center;
        padding: 0 20px;
        font-weight: bold;
    }

    .item-menu a {
        color: #000;
    }

    .item-menu a:hover {
        color: #0171bb;
        text-decoration: underline;
    }


    /* Main */

    .slider {
        margin: 105px 0 15px 0;
    }

    .main-content {}

    .item-content {
        padding: 15px;
        background-color: #fff;
        border-radius: 8px;
        margin-bottom: 30px;
        justify-content: space-between;
        padding-bottom: 30px;
    }

    .item-service {
        min-height: 350px;
        margin-bottom: 30px;
        width: 49%;
        padding: 30px;
        border-radius: 8px;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    }

    .item-profile {
        min-height: 350px;
        margin-bottom: 30px;
        width: 30%;
        padding: 30px;
        border-radius: 8px;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    }

    .item-service,
    .item-profile {
        transition: transform 0.2s ease;
    }

    .item-service:hover,
    .item-profile:hover {
        transform: translateY(-15px);
    }

    .item-service-wrap,
    .item-profile-wrap {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        height: 100%;
    }

    .form-title {
        font-size: 18px;
        font-weight: bold;
        text-align: center;
        margin-bottom: 15px;
    }

    .form-box {
        padding: 15px 30px;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        border-radius: 8px;
    }

    .form-label {
        font-weight: bold;
    }



    /* Footer */
    #footer {
        padding-top: 15px;
        border-top: 5px solid #0171bb;
        background-color: #fff;
    }

    .copyright-text {
        background-color: #0171bb;
        font-size: 14px;
        color: #ff0;
        margin: 0;
        padding: 8px 0;
    }

    .footer-logo {
        height: 150px;
    }

    .name-footer {
        font-size: 16px;
        font-weight: bold;
        display: inline-block;
    }

    .footer-content {
        margin-bottom: 15px;
    }

    .item-footer {
        margin-bottom: 6px;
    }

    .item-footer a {
        color: #000;
    }

    .item-footer a:hover {
        color: #0171bb;
        text-decoration: underline;
    }

    .title-section {
        font-weight: bold;
        font-size: 28px;
    }

    .item-profile img {
        object-fit: cover;
    }

    .why-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        width: 100%;
        padding: 0 15px 15px;
    }

    .why-card {
        border-radius: 14px;
        padding: 1.5rem 1.25rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        transition: transform 0.2s;
        cursor: default;
    }

    .why-card:hover {
        border-color: #0171bb;
        transform: translateY(-4px);
    }

    .why-icon-wrap {
        text-align: center;
        width: 44px;
        height: 44px;
        border-radius: 10px;
        background: #deeef9;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .why-icon-wrap svg {
        width: 20px;
        height: 20px;
        stroke: #0171bb;
        fill: none;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .why-card h5 {
        font-size: 16px;
        font-weight: bold;
        color: #111;
        margin: 0;
    }

    .why-card p {
        font-size: 14px;
        color: #666;
        line-height: 1.6;
        margin: 0;
    }

    .why-card.c1 {
        background: #EBF4FD;
    }

    .why-card.c1 .why-icon-wrap {
        background: #BDD9F5;
    }

    .why-card.c1 .why-icon-wrap svg {
        stroke: #1565C0;
    }

    .why-card.c1 h5 {
        color: #0D47A1;
    }

    .why-card.c1 p {
        color: #1976D2;
    }

    .why-card.c2 {
        background: #E3F5EF;
    }

    .why-card.c2 .why-icon-wrap {
        background: #A8DFC9;
    }

    .why-card.c2 .why-icon-wrap svg {
        stroke: #1B7A57;
    }

    .why-card.c2 h5 {
        color: #145C40;
    }

    .why-card.c2 p {
        color: #1B7A57;
    }

    .why-card.c3 {
        background: #FEF3E8;
    }

    .why-card.c3 .why-icon-wrap {
        background: #FBCFA0;
    }

    .why-card.c3 .why-icon-wrap svg {
        stroke: #C05C10;
    }

    .why-card.c3 h5 {
        color: #8D400A;
    }

    .why-card.c3 p {
        color: #C05C10;
    }

    .why-card.c4 {
        background: #F0EEFF;
    }

    .why-card.c4 .why-icon-wrap {
        background: #CAC3F7;
    }

    .why-card.c4 .why-icon-wrap svg {
        stroke: #4A3AB5;
    }

    .why-card.c4 h5 {
        color: #352A8A;
    }

    .why-card.c4 p {
        color: #4A3AB5;
    }

    .why-card.c5 {
        background: #FDEEF3;
    }

    .why-card.c5 .why-icon-wrap {
        background: #F5BCCE;
    }

    .why-card.c5 .why-icon-wrap svg {
        stroke: #B03060;
    }

    .why-card.c5 h5 {
        color: #831848;
    }

    .why-card.c5 p {
        color: #B03060;
    }

    .why-card.c6 {
        background: #EEFAE3;
    }

    .why-card.c6 .why-icon-wrap {
        background: #C5EDA0;
    }

    .why-card.c6 .why-icon-wrap svg {
        stroke: #437B18;
    }

    .why-card.c6 h5 {
        color: #2E5A0E;
    }

    .why-card.c6 p {
        color: #437B18;
    }

    .why-content {
        text-align: justify
    }


    /* Thay toàn bộ .why-card và .why-card:hover cũ bằng đoạn này */

    .why-card {
        border-radius: 14px;
        padding: 1.5rem 1.25rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        cursor: default;
        position: relative;
        overflow: hidden;
        transition: transform 0.3s cubic-bezier(.25, .8, .25, 1), box-shadow 0.3s ease;
    }

    .why-card::before {
        content: '';
        position: absolute;
        inset: 0;
        opacity: 0;
        transition: opacity 0.3s ease;
        border-radius: 14px;
    }

    .why-card:hover {
        transform: translateY(-6px);
    }

    .why-card:hover::before {
        opacity: 1;
    }

    .why-icon-wrap {
        width: 46px;
        height: 46px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        position: relative;
        z-index: 1;
        transition: transform 0.3s cubic-bezier(.34, 1.56, .64, 1);
    }

    .why-card:hover .why-icon-wrap {
        transform: scale(1.18) rotate(-6deg);
    }

    .why-card h5,
    .why-card p {
        position: relative;
        z-index: 1;
    }

    .why-card.c1::before {
        background: linear-gradient(135deg, #BDD9F5 0%, #EBF4FD 60%);
    }

    .why-card.c1:hover {
        box-shadow: 0 12px 28px rgba(21, 101, 192, 0.18);
    }

    .why-card.c2::before {
        background: linear-gradient(135deg, #A8DFC9 0%, #E3F5EF 60%);
    }

    .why-card.c2:hover {
        box-shadow: 0 12px 28px rgba(27, 122, 87, 0.18);
    }

    .why-card.c3::before {
        background: linear-gradient(135deg, #FBCFA0 0%, #FEF3E8 60%);
    }

    .why-card.c3:hover {
        box-shadow: 0 12px 28px rgba(192, 92, 16, 0.18);
    }

    .why-card.c4::before {
        background: linear-gradient(135deg, #CAC3F7 0%, #F0EEFF 60%);
    }

    .why-card.c4:hover {
        box-shadow: 0 12px 28px rgba(74, 58, 181, 0.18);
    }

    .why-card.c5::before {
        background: linear-gradient(135deg, #F5BCCE 0%, #FDEEF3 60%);
    }

    .why-card.c5:hover {
        box-shadow: 0 12px 28px rgba(176, 48, 96, 0.18);
    }

    .why-card.c6::before {
        background: linear-gradient(135deg, #C5EDA0 0%, #EEFAE3 60%);
    }

    .why-card.c6:hover {
        box-shadow: 0 12px 28px rgba(67, 123, 24, 0.18);
    }

    .cta-section {
        background: linear-gradient(135deg, #0171bb 0%, #0099e6 100%);
        border-radius: 8px;
        padding: 60px 40px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .cta-section::before {
        content: '';
        position: absolute;
        top: -60px;
        right: -60px;
        width: 220px;
        height: 220px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.07);
    }

    .cta-section::after {
        content: '';
        position: absolute;
        bottom: -80px;
        left: -40px;
        width: 280px;
        height: 280px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.05);
    }

    .cta-badge {
        display: inline-block;
        background: rgba(255, 255, 255, 0.18);
        color: #fff;
        font-size: 13px;
        font-weight: 600;
        padding: 6px 18px;
        border-radius: 30px;
        margin-bottom: 20px;
        letter-spacing: 0.5px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        position: relative;
        z-index: 1;
    }

    .cta-title {
        color: #fff;
        font-size: 32px;
        font-weight: bold;
        margin: 0 0 12px;
        position: relative;
        z-index: 1;
    }

    .cta-sub {
        color: rgba(255, 255, 255, 0.85);
        font-size: 16px;
        margin: 0 auto 36px;
        max-width: 520px;
        line-height: 1.7;
        position: relative;
        z-index: 1;
    }

    .cta-buttons {
        display: flex;
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
        position: relative;
        z-index: 1;
        margin-bottom: 40px;
    }

    .btn-cta-primary {
        background: #fff;
        color: #0171bb;
        border: none;
        padding: 14px 32px;
        border-radius: 50px;
        font-size: 15px;
        font-weight: bold;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: all .25s;
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
        text-decoration: none;
    }

    .btn-cta-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        background: #f0f8ff;
    }

    .btn-cta-outline {
        background: transparent;
        color: #fff;
        border: 2px solid rgba(255, 255, 255, 0.7);
        padding: 13px 30px;
        border-radius: 50px;
        font-size: 15px;
        font-weight: bold;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: all .25s;
        text-decoration: none;
    }

    .btn-cta-outline:hover {
        background: rgba(255, 255, 255, 0.15);
        border-color: #fff;
        transform: translateY(-3px);
    }

    .cta-stats {
        display: flex;
        justify-content: center;
        gap: 48px;
        flex-wrap: wrap;
        position: relative;
        z-index: 1;
        padding-top: 28px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .cta-stat-item {
        text-align: center;
    }

    .cta-stat-num {
        font-size: 28px;
        font-weight: bold;
        color: #fff;
        display: block;
        line-height: 1.2;
    }

    .cta-stat-label {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.75);
        margin-top: 4px;
    }

    .item-menu.dropdown {
        position: relative;
    }

    .dropdown-content {
        display: none;
        position: absolute;
        background-color: #ffffff;
        min-width: 250px;
        box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.15);
        z-index: 999;
        list-style: none;
        padding: 0;
        margin: 0;
        top: 100%;
        left: 0;
        border-radius: 5px;
        /* overflow: hidden; */
    }

    .dropdown-content li {
        border-bottom: 1px solid #f1f1f1;
    }

    .dropdown-content li:last-child {
        border-bottom: none;
    }

    .dropdown-content li a {
        padding: 0 0 0 16px;
        text-decoration: none;
        text-align: left;
        display: block;
        height: 40px;
        line-height: 40px;
        transition: background-color 0.3s, color 0.3s;
        font-size: 14px;
    }

    .dropdown-content li a:hover {
        background-color: #0171bb;
        color: #ffffff !important;
    }

    @media (min-width: 768px) {
        .item-menu.dropdown:hover>.dropdown-content {
            display: block;
        }

        .dropdown-submenu:hover>.submenu-content {
            display: block;
        }
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .dropdown-submenu {
        position: relative;
    }

    .submenu-content {
        display: none;
        position: absolute;
        top: 0;
        left: 100%;
        background-color: #ffffff;
        min-width: 250px;
        box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.15);
        z-index: 1000;
        list-style: none;
        padding: 0;
        margin: 0;
        border-radius: 5px;
        overflow: hidden;
    }

    .dropdown-submenu:hover .submenu-content {
        display: block;
        animation: fadeInLeft 0.3s ease-in-out;
    }

    .submenu-content li {
        border-bottom: 1px solid #f1f1f1;
    }

    .submenu-content li:last-child {
        border-bottom: none;
    }

    .submenu-content li a {
        color: #333333 !important;
        text-decoration: none;
        display: block;
        font-size: 14px;
        transition: background-color 0.3s, color 0.3s;
    }

    .submenu-content li a:hover {
        background-color: #0171bb;
        color: #ffffff !important;
    }

    @keyframes fadeInLeft {
        from {
            opacity: 0;
            transform: translateX(10px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .submenu-content::before {
        content: "";
        position: absolute;
        top: 0;
        left: -40px;
        width: 40px;
        height: 100%;
        background-color: transparent;
        z-index: 10;
    }


    .news-card {
        border: none;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        overflow: hidden;
    }

    .news-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .news-img-wrapper {
        width: 100%;
        height: 220px;
        overflow: hidden;
    }

    .news-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .news-card:hover .news-img {
        transform: scale(1.08);
    }

    .news-date {
        font-size: 13px;
        color: #888;
        margin-bottom: 10px;
        display: block;
    }

    .news-title {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 12px;
        line-height: 1.4;
    }

    .news-title a {
        color: #333;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .news-title a:hover {
        color: #0171bb;
    }

    .news-summary {
        font-size: 14px;
        color: #555;
        margin-bottom: 20px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }


    .contact-info-box p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .contact-form-box .form-control,
    .contact-form-box .form-select {
        border-radius: 5px;
        border: 1px solid #ddd;
        padding: 10px 15px;
        font-size: 14px;
    }

    .contact-form-box .form-control:focus,
    .contact-form-box .form-select:focus {
        border-color: #0171bb;
        box-shadow: 0 0 0 0.2rem rgba(1, 113, 187, 0.25);
    }

    .map-container {
        overflow: hidden;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }


    .document-group-title {
        color: #0171bb;
        font-weight: bold;
        border-bottom: 2px solid #0171bb;
        padding-bottom: 10px;
        margin-bottom: 20px;
        font-size: 20px;
    }

    .document-list {
        list-style: none;
        padding-left: 0;
    }

    .document-list li {
        position: relative;
        padding: 12px 15px 12px 45px;
        margin-bottom: 12px;
        background-color: #fcfcfc;
        border-radius: 6px;
        border-left: 4px solid #0171bb;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04);
        transition: all 0.3s ease;
        line-height: 1.5;
    }

    .document-list li:hover {
        background-color: #f0f8ff;
        transform: translateX(5px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    }

    .document-list li::before {
        content: "\f15c";
        font-family: "Font Awesome 6 Free";
        font-weight: 400;
        position: absolute;
        left: 15px;
        top: 14px;
        color: #0171bb;
        font-size: 16px;
    }

    .document-list li strong {
        color: #333;
    }


    .toggle-btn {
        cursor: pointer;
        color: #0171bb;
        font-size: 14px;
        transition: 0.2s;
        display: none;

    }

    .toggle-btn:hover {
        background-color: #f5f5f5;
        border-radius: 4px;
    }

    .item-menu.dropdown>div,
    .dropdown-submenu>div {
        display: flex;
        width: 100%;
        align-items: center;
    }



    @media (min-width: 1200px) {

        .submenu-content {
            top: 0px !important;
            left: 95% !important;
        }
    }

    @media (min-width: 768px) {
        .item-menu.dropdown {
            position: relative;
        }

        .dropdown-submenu {
            position: relative;
        }

        .dropdown-content,
        .submenu-content {
            display: none;
            position: absolute;
            background-color: #ffffff;
            min-width: 250px;
            box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.15);
            z-index: 1000;
            list-style: none;
            padding: 0;
            margin: 0;
            border-radius: 5px;
        }

        .dropdown-content {
            top: 100%;
            left: 0;
        }

        .submenu-content {
            top: 40px;
            left: 16px;
        }

        .dropdown-content li,
        .submenu-content li {
            border-bottom: 1px solid #f1f1f1;
        }

        .dropdown-content li a,
        .submenu-content li a {
            text-decoration: none;
            display: block;
            color: #333;
            transition: 0.3s;
        }

        .dropdown-content li a:hover,
        .submenu-content li a:hover {
            background-color: #0171bb;
            color: #ffffff !important;
        }
    }

    @media (max-width: 1200px) and (min-width: 767px) {

        .news-menu,
        .references-menu {
            display: none;
        }
    }

    @media (max-width: 767px) {

        .slider {
            display: none !important;
        }

        .item-profile {
            width: 100%;
        }

        .why-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .slider-mobile {
            display: block !important;
        }

        .fa-chevron-down {
            display: none !important;
        }

        .item-service {
            width: 100% !important;
        }

        .toggle-btn {
            display: block !important;
            padding: 8px;
        }

        .item-menu a {
            display: flex;
            height: 30px;
            align-items: center;
            justify-content: space-between;

        }

        #list_menu {
            display: none;
            flex-direction: column;
            width: 100%;
            background-color: #ffffff;
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
            position: absolute;
            top: 75px;
            left: 0;
            height: auto !important;
            z-index: 1000;
        }

        .item-menu {
            width: 100%;
            padding: 10px 15px;
            border-bottom: 1px solid #f0f0f0;
            line-height: normal;
            text-align: left;
        }

        .dropdown-content,
        .submenu-content {
            display: none;
            position: static;
            box-shadow: none;
            border-left: 3px solid #0171bb;
            margin-left: 10px;
            margin-top: 10px;
            min-width: 100%;
            list-style: none;
            padding: 0;
        }

        .dropdown-content li a,
        .submenu-content li a {
            display: block;
        }
    }

    .dropdown-content,
    .submenu-content {
        transition: none !important;
        animation: none !important;
    }

    .slider-img img {
        width: 100%;
    }

    .news-img-wrapper img {
        width: 100%;
    }