@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import "https://unpkg.com/open-props@1.6.17/easings.min.css";

@keyframes pulse {
    50% {
        transform: scale(1.1);
    }
}

@keyframes pulseLarge {
    70% {
        transform: scale(5);
    }
}

@keyframes glow {
    50% {
        box-shadow: 0 0 10px hsl(12, 100%, 60%);
    }
}

@keyframes scale {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(2);
    }

    100% {
        transform: scale(5);
    }
}

@keyframes fadeInUp {
    from {
        transform: translate3d(0, 40px, 0)
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

@-webkit-keyframes fadeInUp {
    from {
        transform: translate3d(0, 40px, 0)
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-timeline: view(50px);
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: both
}

.animatedFadeInUp {
    opacity: 0;
    animation-timeline: view(50px);
}

.fadeInUp {
    opacity: 0;
    animation: fadeInUp linear;
    animation-timeline: scroll(10px);
}

.fade-in {
    opacity: 0;
    /* Start invisible */
    transform: translateY(20px);
    /* Optional: slight upward movement */
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.visible {
    opacity: 1;
    /* Fully visible */
    transform: translateY(0);
    /* Reset position */
}

[anim="glow"]:not(.toggled) {
    animation: glow var(--ease-elastic-in-1) 600ms infinite alternate;
}

[anim="pulse"]:not(.toggled) {
    animation: pulse var(--ease-elastic-in-1) 1400ms infinite alternate;
}

[anim="pulseLarge"]:not(.toggled) {
    animation: pulse var(--ease-elastic-in-1) 600ms infinite alternate;
}

[anim="scale"]:not(.toggled) {
    animation: pulse var(--ease-elastic-in-1) 1400ms infinite alternate;
}

:root {
    --primary-color: #2CD5C4;
    /* Màu chính */
    --secondary-color: #17CB49;
    /* Màu phụ */
    --text-color: #333333;
    /* Màu chữ */
    --background-color-app: #000;
    /* Màu nền */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.common-btn {
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 10px;
    font-size: 16px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    transition: all 0.3s ease;
    font-weight: 600;
    margin: 10px 0;
}

.common-btn:hover {
    background-color: #fff;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    font-weight: 600;
}

.banner-section {
    color: #000;
    text-align: center;
}

.hero-section {
    position: relative;
    /* background: url("../images/hero-banner.png") no-repeat center center;
    background-size: cover;
    height: 300px;
    padding: 250px 0;
    color: #fff; */

}

.hero-section .title {
    position: absolute;
    bottom: 15px;
    right: 80px;
    width: 500px;
    height: auto;
}

.hero-section .banner {
    width: 100%;
}

.hero-section .banner img {
    width: 100%;
    height: auto;
}

.section-header {
    margin: 50px 0;
}

#benefit-one .section-header .container p {
    width: 70%;
    margin: 15px auto;
}

.section-header .container h2 {
    font-size: 42px;
    font-weight: 900;
    font-style: italic;
    color: var(--primary-color);
}

.section-header .container a:hover {
    color: #fff;
}

.feature-card {
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.cta-section {
    background-color: #f8f9fa;
    padding: 50px 0;
    text-align: center;
}

#pricing {
    padding-top: 40px;
}

#pricing .pricing-wrapper {
    margin: 0 80px;
}

#pricing .pricing-wrapper h2 {
    margin-bottom: 70px;
}

#pricing .package {
    border-radius: 15px;
    cursor: pointer;
}

#pricing .package.popular {

    position: relative;
    transform: scale(1.04);
}

#pricing .package.popular .label-popular {
    position: absolute;
    top: -36px;
    background-color: var(--primary-color);
    padding: 6px 10px;
    border-radius: 5px;
    z-index: 2;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    font-weight: 700;
    color: #fff;
    left: 50%;
    transform: translateX(-50%);
    /* transition: all 0.3s ease; */
    display: flex;
    gap: 2px;
    align-items: center;
}

#pricing .package.popular .label-popular p {
    margin: 0;
    line-height: 1;
}

#pricing .package.popular .label-popular .hot-deal {
    width: 30px;
}

#pricing .package.popular .label-popular .hot-deal img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
}

#pricing .package.popular .card {
    border: 3px solid var(--primary-color);
    /* background: linear-gradient(267deg, #b11d31 23.73%, #ed0521 128.4%); */
    /* color: #fff; */
    /* box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px; */
}

#pricing .package.popular .card-header {
    /* background: linear-gradient(267deg, #b11d31 23.73%, #ed0521 128.4%); */
    /* color: #fff; */
    /* box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px; */
}

#pricing .package .card {
    border-radius: 10px !important;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    transition: all 0.3s ease;
    border: none;
}

#pricing .package:hover .card {
    transform: scale(1.02);
    box-shadow: 5px 7px 67px -28px rgba(0, 0, 0, 0.37);
    border: 3px solid var(--primary-color);
}

#pricing .package:hover .label-popular {
    transform: scale(1.05);
    left: 50%;
    transform: translateX(-50%);
    /* top: -45px; */
}

#pricing .package .card .card-header h3 {
    color: var(--primary-color);
    font-weight: 800;
    font-style: italic;
    font-size: 22px;
}

#pricing .package .card .card-header {
    border-radius: 10px 10px 0 0;
    background-color: #fff;
    padding: 15px 20px;

}



#pricing .package.popular .card-header h3 {
    /* background: linear-gradient(267deg, #b11d31 23.73%, #ed0521 128.4%);  */
    /* color: #fff; */
    /* box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px; */
}

#pricing .package .card .card-body h4 {
    font-size: 30px;
    color: red;
    font-weight: 700;
}

#pricing .package.popular .card .card-body h4 {
    font-size: 45px;
}

#pricing .package .card .card-body ul {
    text-align: left;
}

#pricing .package .card .card-body ul li {
    margin: 15px 0;
}


#dealer {
    /* position: relative; */
    padding: 0 80px 80px;
}


#dealer .dealer-slider .item img {
    width: 100%;
    height: auto;
}

#certification {
    background: url("../images/certification.png") no-repeat center center;
    background-size: cover;
    padding: 80px;
    overflow: hidden;
}

#certification .cer-slider .item img {
    width: 100%;
    height: auto;
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.popup.show {
    display: flex;
    opacity: 1;
}

.popup-wrapper {
    background-color: white;
    background: url("../images/pop-up.png") no-repeat center center;
    background-size: cover;
    padding: 20px;
    border-radius: 5px;
    width: 500px;
    height: 500px;
    text-align: center;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transform: scale(0.7);
    transition: transform 0.3s ease-in-out;
    display: flex;
    align-items: end;
}

.popup-content {
    position: relative;
    z-index: 1;
    bottom: 10px;
    margin-bottom: 10px;
}

.popup-content p {
    text-align: left;
    font-size: 14px;
    margin-bottom: 20px;
}

.popup.show .popup-wrapper {
    transform: scale(1);
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
    color: #333;
}

/* .open-popup-btn {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
}

.open-popup-btn:hover {
    background-color: #0056b3;
} */

.featured_categories {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 40px 0 50px;
}

.featured_categories a:hover {
    color: var(--primary-color);
}

.featured_categories .cate-item {
    display: flex;
    justify-content: start;
    flex-direction: column;
    align-items: center;
    width: calc(100% / 4 - 30px);
    cursor: pointer;
    background-color: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 10px;
    overflow: hidden;
    transition: transform .3s, box-shadow 0.8s;
}

.featured_categories .wsus__banner_img {
    width: 100%;
    height: auto;
    overflow: hidden;
    background: var(--primary-color);
    /* box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px; */
}

.featured_categories .cate-item:hover {
    transform: scale(1.02) perspective(0px);
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.featured_categories .wsus__banner_img img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.featured_categories .wsus__banner_title {
    font-size: 16px;
    margin: 10px;
}

.featured_categories .wsus__banner_title:hover {
    color: var(--primary-color);
}

#benefit-two .section-header {
    margin: 50px 0;
}

.commitment-list {
    margin-top: 35px;
    text-align: left;
}

.commitment-list li {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 20px 0;
}

.commitment-list li span {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    width: 45px;
    height: 45px;
    color: #fff;
    font-weight: 600;
    /* padding: 5px 10px; */
    border-radius: 50%;
}

.commitment-list li p {
    font-size: 18px;
    margin: 0;
    /* width: 100%; */
}

.commitment-video {
    border: 1px solid var(--primary-color);
    width: 98%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

#series .series-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    width: 500px;
    text-align: left;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

#series .series-item p {
    margin: 0;
    color: #9f9f9f;
    font-weight: 600;
}

#series .series-item h3 {
    margin: 0;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 24px;
}

#series .series-item .series-image {
    width: 100%;
    height: auto;
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    overflow: hidden;
    margin: 10px 0;
}

.footer_2 {
    background: #fff;
    /* #0b2c3d; */
}

.footer_2 form button {
    position: absolute;
    top: 2px;
    right: 2px;
    height: 94%;
    border-radius: 30px;
}

footer {
    background: #def0ff;
    padding-top: 70px;
}

.wsus__footer_content img {
    width: 160px;
    margin-bottom: 7px;
}

.wsus__footer_content .action,
.wsus__footer_content p {
    display: block;
    font-size: 15px;
    margin-top: 10px;
    color: #353535;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s ease;
    -moz-transition: all linear 0.3s ease;
    -ms-transition: all linear 0.3s ease;
    -o-transition: all linear 0.3s ease;
}

.wsus__footer_content .action i {
    width: 20px;
}

.wsus__footer_content p {
    position: relative;
    padding-left: 25px;
}

.wsus__footer_content p i {
    position: absolute;
    top: 8px;
    left: 0;
}

.wsus__footer_content .action:hover {
    color: var(--primary-color);
}

.wsus__footer_social {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.wsus__footer_social li {
    margin-right: 10px;
}

.wsus__footer_social li a {
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 37px;
    border-radius: 50%;
    font-size: 15px;
    background: #fff;
    color: #353535;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s ease;
    -moz-transition: all linear 0.3s ease;
    -ms-transition: all linear 0.3s ease;
    -o-transition: all linear 0.3s ease;
}

.facebook:hover {
    background: #1b4f9b !important;
    color: #fff;
}

.twitter:hover {
    background: #00adef !important;
    color: #fff;
}

.whatsapp:hover {
    background: #26cb46 !important;
    color: #fff;
}

.pinterest:hover {
    background: #c51f27 !important;
    color: #fff;
}

.behance:hover {
    background: #1666f7 !important;
    color: #fff;
}

.linkedin:hover {
    background: #0077b0 !important;
    color: #fff;
}

.instagram:hover {
    background: #d51332 !important;
    color: #fff;
}

.youtube:hover {
    background: #d51332 !important;
    color: #fff;
}

.wsus__footer_content h5 {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wsus__footer_menu {
    padding: 0;
}

.wsus__footer_menu li {
    margin: 8px 0;
    color: var(--primary-color);
}

.wsus__footer_menu li a {
    font-weight: 400;
    text-transform: capitalize;
    font-size: 15px;
    width: 100%;
    margin-top: 11px;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s ease;
    -moz-transition: all linear 0.3s ease;
    -ms-transition: all linear 0.3s ease;
    -o-transition: all linear 0.3s ease;
}

.wsus__footer_menu li a i {
    margin-right: 5px;
}

.wsus__footer_menu li a:hover {
    color: var(--primary-color) !important;
}

.wsus__footer_bottom {
    padding: 6px 0px;
    margin-top: 40px;
    background: #f8f8f8;
}

.wsus__copyright {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

}

.wsus__copyright p {
    color: #ffffffde;
    text-transform: capitalize;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    margin: 0;
}

.wsus__copyright p img {
    width: 150px;
    margin-left: 15px;
}

.wsus__footer_2_logo {
    width: 100%;
    border-radius: 5px;
    padding: 0px 10px 10px 10px;
    margin-bottom: 10px;
}


.footer_2 form {
    position: relative;
    width: 100%;
    margin: 15px 0px 25px 0px;
}

.footer_2 form input {
    width: 100%;
    padding: 17px 20px;
    font-size: 16px;
    font-weight: 400;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    border: none;
}

.wsus__footer_content_2 h3 {
    font-weight: 600;
    font-size: 25px;
    color: var(--primary-color);
}

.wsus__footer_content_2 p {
    padding: 0px;
    margin-top: 22px;
}

.footer_payment p {
    margin: 0px 0px 10px 0px;
    text-transform: capitalize;
}

.footer_payment img {
    width: auto;
}

.footer_2 .wsus__footer_social li a {
    display: block;
    background: var(--primary-color);
    color: #fff;
}

.wsus__footer_2_logo {
    width: 100%;
    border-radius: 5px;
    padding: 0px 10px 10px 10px;
    margin-bottom: 10px;
}

.footer_2 .wsus__footer_content img {
    margin-bottom: 0;
}

.footer_2 .wsus__footer_content h5 {
    border-bottom: 2px solid #eee;
    display: inline-block;
}

.footer_2 .wsus__footer_content h5 {
    color: var(--primary-color);
}

.footer_2 .wsus__footer_content p,
.footer_2 .wsus__footer_menu li a,
.footer_2 .wsus__footer_content .action,
.footer_2 .wsus__footer_content p,
.footer_2 .wsus__footer_bottom p {
    color: var(--text-color);
    text-decoration: none;
}

.footer_payment img {
    width: 100%;
}

.wsus__scroll_btn {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    right: 25px;
    bottom: 10px;
    font-size: 16px;
    position: fixed;
    cursor: pointer;
    z-index: 99;
    display: none;
    background: #fff;
    border-radius: 50%;
    animation: move linear 0.8s infinite alternate;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s ease;
    -moz-transition: all linear 0.3s ease;
    -ms-transition: all linear 0.3s ease;
    -o-transition: all linear 0.3s ease;
}

.wsus__scroll_btn:hover {
    color: #fff;
    background: var(--secondary-color);
}

/* CONTACT BOX START */
.fixed-contact-box {
    /* width: 35px;
    height: 35px; */
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: fixed;
    bottom: 52px;
    right: 25px;

}

.fixed-contact-box a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    cursor: pointer;
    z-index: 99;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    animation: move linear 0.8s infinite alternate;
    transition: all linear 0.3s;
    background: #fff;
}

.fixed-contact-box a:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 5px 15px var(--primary-color);
}

.fixed-contact-box a img {
    width: 70%;
}

/* CONTACT BOX END */