.memo-book {
    padding: 3px 0 0 10px;
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.text-justify {
    text-align: justify;
}

.memo-book.active .memo-book-cell {
    display: none;
}

.memo-book-cancel-cell {
    display: none;
}

.memo-book.active .memo-book-cancel-cell {
    display: block;
}

.memo-popor {
    position: absolute;
    width: 100px;
    top: 0;
    left: 50%;
    transform: translate(-50%, -120%);
    padding: 7px 0;
    text-align: center;
    border-radius: 5px;
    background-color: #000;
    color: #fff;
    font-size: 13px;
    display: none;
}

.memo-book svg {
    transition: transform 200ms;
}

.memo-book:hover svg {
    transform: scale(1.1);
}

.memo-book:hover .memo-popor {
    display: block;
}

.el-notification {
    align-items: center !important;
}

.el-notification__group {
    border: none !important;
    box-shadow: none !important;
}

.hero-gradient {
    background-image: url(https://res.cloudinary.com/dba7l52gn/image/upload/v1749688182/2_cfhgql.png);
    background-size: 76%;
    background-position: 0 0;
    background-repeat: no-repeat;
}

.hidden {
    display: none !important;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.floating-dots {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.dot-1 {
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.dot-2 {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.15);
    bottom: 20%;
    left: 5%;
    animation-delay: -3s;
}

.hero-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation: morphing 20s ease-in-out infinite;
}

@keyframes morphing {
    0% {
        border-radius: 10% 23.33% 23.33% 10% / 10% 10% 23.33% 23.33%;
    }

    25% {
        border-radius: 29% 21% 37.5% 12.5% / 38% 23% 27% 12%;
    }

    50% {
        border-radius: 16.67% 16.67% 11% 22.33% / 18.33% 9% 24.33% 15%;
    }

    75% {
        border-radius: 11% 22.33% 19.33% 14% / 21% 22.67% 10.67% 12.33%;
    }

    100% {
        border-radius: 10% 23.33% 23.33% 10% / 10% 10% 23.33% 23.33%;
    }
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.hover-scale {
    transition: all 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.glass-effect {
    color: #333;
}

.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to bottom right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.1) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.feature-block {
    width: 150px;
    height: 150px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    text-align: center;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 10px;
}

.feature-block svg {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
}

.feature-block-text {
    font-size: 18px;
    margin-top: 10px;
}

.guide-block {
    background: linear-gradient(135deg, #FFB300, #FFA000);
}

.funding-block {
    background: linear-gradient(135deg, #00BFA5, #009688);
}

.approval-block {
    background: linear-gradient(135deg, #43A047, #2E7D32);
}

.online-block {
    background: linear-gradient(135deg, #3949AB, #303F9F);
}

.feature-blocks-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    background-color: #002B5C;
}

.section-title {
    color: #002756;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 49%;
    transform: translateX(-50%);
    width: 10rem;
    height: 3px;
    background: #0619ac;
}

.offer-card {
    background: white;
    border-radius: 20px;
    padding: 1rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #0619ac;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 161, 155, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    padding: 1rem;
}

.offer-card:hover .icon-wrapper {
    background: rgba(0, 161, 155, 0.2);
    transform: scale(1.1);
}

.icon-wrapper svg {
    width: 100%;
    height: 100%;
    fill: #0619ac;
    transition: all 0.3s ease;
}

.offer-title {
    color: #002756;
    font-size: 21px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.offer-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.sticky-button {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

/* Hiá»‡u á»©ng hover vÃ  shine giá»¯ nguyÃªn */
.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

.shine-effect {
    position: relative;
    overflow: hidden;
    color: #333;
}

.shine-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    transition: all 0.3s;
    opacity: 0;
}

.shine-effect:hover::after {
    opacity: 1;
}

* {
    font-family: "Inter", sans-serif;
}

p {
    color: var(#66757F);
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

h2.title {
    color: #1B2D3F;
    text-align: center !important;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.btn {
    padding: 0.725rem;
    text-align: center;
    background: #21ab5e;
    color: #fff;
    font-weight: 700;
    border-radius: 5px;
    border: none;
    outline: none;
}

.btn:hover {
    background: #0d6efd;
    color: #fff;
}


.hero-section {
    position: relative;
    padding: 2rem 0 5rem;
    background: linear-gradient(180deg, #00A8A9 0%, #001451 100%);
}

.hero-section .left-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-section .left-col .title-box h1.title {
    font-size: 3.125rem;
    color: white;
    line-height: 1.28;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.hero-section .left-col .title-box h1.title span {
    color: #FFE606;
}

.hero-section .left-col .title-box .sub-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: #A1CCE6;
    line-height: 1.25;
    margin-bottom: 0;
}

.hero-section .left-col .title-box-2 h2.title {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    color: #69E4FF;
    position: relative;
    margin-bottom: 0;
    padding: 0.5rem 0;
    width: fit-content;
}

.hero-section .left-col .title-box-2 h2.title::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #69E4FF;
    bottom: 0;
    left: 0;
}

.hero-section .left-col .title-box-2 .text {
    color: #A1CCE6;
    line-height: 1.75;
}

.hero-section .left-col .form-box {
    border-radius: 1rem;
}

.hero-section .left-col .form-box form {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    width: 270px;
    justify-content: space-between;
}

.hero-section .left-col .form-box form select {
    flex: 0 0 calc(50% - 0.5rem);
    padding: 1rem;
    border-radius: 1rem;
    font-weight: 600;
    background-color: rgba(255, 242, 242, 1);
    border: 1px solid rgba(228, 200, 200, 1);
    outline: none;
    line-height: 1;
    appearance: none;
    -webkit-appearance: none;
    background-image: url(../../image/down-arrow.svg);
    background-repeat: no-repeat;
    background-size: 0.75rem;
    background-position-x: calc(100% - 1rem);
    background-position-y: center;
}

.hero-section .left-col .form-box form button {
    flex: 0 0 100%;
    background: #be2121;
    border-radius: 2rem;
    padding: 0.725rem;
    color: #FFE606;
    font-weight: 700;
    outline: none;
    border: none;
    font-size: 30px;
}

.hero-section .left-col .form-box form button:hover {
    background: #e93737;
    color: #fff;
}

.hero-section .left-col .logo {
    margin-bottom: 0.5rem;
}

.hero-section .right-col {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
    width: 35%;
    max-width: 600px;
}

.hero-section .right-col img {
    width: 100%;
    max-width: 100%;
}


.do-we-section {
    padding: 7.5rem 0;
}

.do-we-section h2.title {
    margin-bottom: 5rem;
}

.do-we-section .box-content {
    display: flex;
    padding: 1.5rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background-color: white;
    box-shadow: 0px 8px 24px 0px rgba(24, 87, 192, 0.16);
    border-radius: 1rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.do-we-section .box-content .img-wrap {
    background: #ADF0FF;
    display: flex;
    padding: 0.75rem;
    border-radius: 50%;
}

.do-we-section .box-content p {
    margin-bottom: 0;
}


.apply-section {
    background: linear-gradient(86deg, #ef4541 0%, #ff5722b5 100%);
    padding: 1.5rem 0;
}

.apply-section .content-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.apply-section .content-box h2.title {
    color: white;
    font-size: 25px;
    font-weight: 500;
    line-height: 1;
    text-align: left;
}

.apply-section .content-box h2.title span {
    color: #95ECFF;
}

.apply-section .content-box .btn {
    padding: 0.625rem 2rem;
}



.step-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #F0F7FF 29.47%, #FAFBFD 100%);
}

.step-section h2.title {
    margin-bottom: 2rem;
}

.step-section .content-wrap {
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.60);
    box-shadow: 0px 24px 40px 0px rgba(24, 87, 192, 0.15);
    backdrop-filter: blur(1.5rem);
    display: flex;
    padding: 2.5rem 5rem;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
}

.step-section .content-wrap .content-box {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 1.5rem;
    padding: 2.25rem 0;
    border-bottom: 1px solid #E5E5E5;
}

.step-section .content-wrap .content-box:last-child {
    border-bottom: none;
}

.step-section .content-wrap .content-box .number {
    color: #0619ac;
    font-size: 1.375rem;
    font-weight: 700;
}

.step-section .content-wrap .content-box .text-box {
    flex: 1;
}

.step-section .content-wrap .content-box .text-box h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-section .content-wrap .content-box .text-box p {
    margin-bottom: 0;
}


.customer-section {
    padding: 3.5rem 0;
    position: relative;
}

.customer-section .left-col {
    position: absolute;
}

.customer-section .right-col .title {
    text-align: left;
    margin-bottom: 0;
}

.customer-section .right-col .title span {
    color: #0619ac;
}

.customer-section .right-col .slide {
    overflow-x: scroll;
    overflow-y: auto;
    scroll-behavior: smooth;
    padding: 2rem 0;
    cursor: grab;
    user-select: none;
}

.customer-section .right-col .slide::-webkit-scrollbar {
    display: none;
}

.customer-section .right-col .slide.active {
    cursor: grabbing;
}

.customer-section .right-col .slide .slide-box {
    display: flex;
    flex-wrap: nowrap;
    gap: 2rem;
    align-items: stretch;
}

.customer-section .right-col .slide .slide-box .slide-item {
    flex: 0 0 50%;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 1rem;
    padding: 2rem 2.5rem;
    box-shadow: 0px 8px 24px 0px rgba(223, 223, 223, 0.80);
}

.customer-section .right-col .slide .slide-box .slide-item p {
    font-size: 1.125rem;
}

.customer-section .right-col .slide .slide-box .slide-item p.name {
    font-weight: bold;
    color: #1B1928;
    font-size: 23px;
}

.customer-section .right-col .panigation {
    padding-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
}

.customer-section .right-col .panigation .link {
    font-weight: 700;
    color: #0619ac;
    text-decoration: none;
    margin-right: 1rem;
}

.customer-section .right-col .panigation button {
    background-color: transparent;
    border: none;
}


.faq-section {
    padding: 7.5rem 0;
}

.faq-section h2.title {
    margin-bottom: 1.5rem;
}

.faq-section .faq-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-section .faq-wrap .faq-item {
    padding: 2rem;
    padding-right: 4rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.50);
    background: #DCE5ED;
    backdrop-filter: blur(5px);
    display: flex;
    gap: 1.5rem;
    flex-direction: column;
    cursor: pointer;
    position: relative;
}

.faq-section .faq-wrap .faq-item.active {
    background-color: white;
    border-color: #0619ac;
    box-shadow: 0px 70px 150px -50px rgba(26, 64, 72, 0.20);
}

.faq-section .faq-wrap .faq-item.active .heading {
    color: #0619ac;
}

.faq-section .faq-wrap .faq-item.active .content {
    display: block;
}

.faq-section .faq-wrap .faq-item.active .icon::after {
    height: 0;
}

.faq-section .faq-wrap .faq-item .heading {
    font-size: 1.375rem;
    font-weight: 700;
}

.faq-section .faq-wrap .faq-item .content {
    display: none;
}

.faq-section .faq-wrap .faq-item .icon {
    position: absolute;
    width: 1.5rem;
    height: 1.5rem;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.faq-section .faq-wrap .faq-item .icon::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    border-radius: 1rem;
    background-color: #0619ac;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-section .faq-wrap .faq-item .icon::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    border-radius: 1rem;
    background-color: #0619ac;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}


.site-footer {
    border-top: 1px solid #dbe3e8;
    color: #9298a1;
    font-size: 17.6px;
    font-size: 1.1rem;
    margin-top: auto;
    padding: 4rem 0
}



.site-footer__brand {
    padding-bottom: 3rem;
    position: relative
}

.site-footer__logo {
    margin: 0;
    width: var(--footer_logo_mobile_width, 170px)
}


.site-footer__info {
    padding: .5rem 1.5rem
}

.site-footer__brand .site-footer__info {
    bottom: 0;
    position: absolute;
    left: 0;
    width: 100%
}

.site-footer__menu {
    margin-bottom: 0
}

.site-footer__menu li {
    line-height: 2.55
}

.site-footer__menu li a {
    color: #9298a1;
    text-decoration: none;
    padding: 0
}

.site-footer__menu li a:hover {
    color: #9298a1;
    text-decoration: underline
}

.site-footer__menu--column {
    -moz-column-count: var(--footer_menu_columns, 3);
    column-count: var(--footer_menu_columns, 3)
}


.page-template-i-4-landing-cpc .site-footer {
    margin-top: inherit
}

.refreshment-footer {
    background-color: #000748
}

.refreshment-footer.refreshment-footer--sweepstakes,
.theme-refreshment-sweepstakes .refreshment-footer {
    background-color: #1e0030
}

.refreshment-footer.refreshment-footer--orange,
.theme-refreshment-orange .refreshment-footer {
    background-color: #000
}

.refreshment-footer.refreshment-footer--green,
.theme-refreshment-green .refreshment-footer {
    background-color: #000f03
}

.refreshment-footer.refreshment-footer--stoneblue,
.theme-refreshment-stoneblue {
    background-color: #002038
}

.theme-refreshment-rge .refreshment-footer {
    background-color: #1b3253
}

.refreshment-footer__container {
    max-width: 1904px;
    max-width: 119rem
}

.refreshment-footer__logo img {
    width: var(--footer_logo_mobile_width, 272px);
    width: var(--footer_logo_mobile_width, 17rem)
}



.refreshment-footer__menu {
    border-top: 1px solid hsla(0, 0%, 100%, .2);
    -moz-column-count: 1;
    column-count: 1
}


.refreshment-footer__menu .nav-item {
    margin-bottom: .5rem
}

.refreshment-footer__menu .nav-item .nav-link {
    font-family: Poppins Medium, sans-serif;
    font-weight: 500;
    color: #fff;
    font-size: 25.6px;
    font-size: 1.2rem;
    padding: 0 .5rem;
    opacity: .6;
    text-align: center;
    text-decoration: none
}


.refreshment-footer__menu .nav-item .nav-link:hover {
    opacity: 1
}

.refreshment-footer__copyright {
    border-top: 1px solid hsla(0, 0%, 100%, .2);
    color: #fff;
    opacity: .6
}

.verify-tag {
    display: flex;
    justify-content: center;

    .ver {
        font-size: 13px !important;
        padding: 5px 10px;
        background: #25a0cb;
        color: #fff;
        width: 190px;
        border-radius: 4px;
    }
}

.submit-btn {
    padding: 7px 20px;
    font-size: 35px;
}

.features {
    margin-bottom: 20px;
    color: #333;
}

.feature-badge {
    background: rgba(0, 161, 155, 0.8);
    padding: 10px 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-icon {
    color: #fff;
    font-size: 16px;
    padding: 5px;
    background: #21ab5e;
    border-radius: 5px;
    margin-right: 3px;
}


.logo {
    height: 3.5rem;
    max-width: 375px;
    margin-bottom: 2rem;
    margin-top: 2rem;
}


.rating-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.star-icon {
    width: 148px;
    height: auto;
    object-fit: contain;
}

/* Animation for rating container */
.rating-container {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Custom Slick Slider Styles */
.success-stories-slider .slick-prev,
.success-stories-slider .slick-next {
    width: 40px;
    height: 40px;
    z-index: 1;
}

.success-stories-slider .slick-prev {
    left: -50px;
}

.success-stories-slider .slick-next {
    right: -50px;
}

.success-stories-slider .slick-prev:before,
.success-stories-slider .slick-next:before {
    color: #002756;
    font-size: 40px;
}

.success-stories-slider .slick-dots {
    bottom: -40px;
}

.success-stories-slider .slick-dots li button:before {
    font-size: 12px;
    color: #002756;
}

.hover-scale {
    transition: transform 0.3s ease;
    transform: scale(1.02);
}

.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect:after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: rotate(30deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    from {
        transform: translateX(-100%) rotate(30deg);
    }

    to {
        transform: translateX(100%) rotate(30deg);
    }
}


.slide-txt-content {
    min-height: 110px;
}

.min-des-height {
    min-height: 100px;
}

.unemploy-icon {
    position: relative;
    display: inline-block;
    width: 2.5rem;
    /* Match font-size of other icons */
    height: 2.5rem;
    margin-bottom: 1rem;
    /* Match margin of other icons */
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.unemploy-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/unemployee.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: brightness(0) invert(1);
    /* Make the SVG white to match other icons */
}

.shine-effect span.secure-span {
    display: block;
    font-size: 18px;
    margin-top: 14px;
    line-height: 27px;
    font-weight: 500;
}

.title-desc {
    font-size: 19px;
    font-weight: normal;
    color: #333;
}

#success-stories .slides {
    display: flex;
    cursor: grab;
    user-select: none;
    transform: translateX(0);
    /* XÃƒÂ³a translateX(-100%) */
    transition: transform 0.5s ease;
    /* ThÃƒÂªm transition mÃ¡ÂºÂ·c Ã„â€˜Ã¡Â»â€¹nh */
}

#success-stories .slides:active {
    cursor: grabbing;
}

#success-stories .card {
    width: 100%;
    flex-shrink: 0;
    pointer-events: none;
}

#verified-successes .row {
    min-height: 400px;
    height: 100%;
}

#verified-successes .row>* {
    padding: 0 !important;
}

#verified-successes .col-12 {
    height: 100%;
}

#proud-to-be-recognized-for-our-service p {
    width: 60%;
}

.verified-success-image {
    max-width: 168px;
    height: auto;
    width: 500px;
    margin: 0px 10px 20px 10px;
}

.verified-success-image-3 {
    max-width: 100%;
    height: auto;
}

.carousel-inner {
    padding: 20px 80px;
}

.slide-fake .carousel-inner {
    padding: unset;
}

.star-background {
    display: flex;
    gap: 5px;
}

.star-icon img {
    width: 20px;
    height: 20px;
}

.carousel-item .card {
    width: 45%;
    min-width: 300px;
}

.star-background {
    display: flex;
    gap: 5px;
}

.star-background {
    justify-items: center;
    justify-content: center;
}

.star-background .star-icon {
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #00b67b;
    margin-top: 12px;
}


.star-background .four-star-icon {
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(115, 207, 17);
    margin-top: 12px;
}


.star-background .third-star-icon {
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(255, 206, 0);
    margin-top: 12px;
}

.star-background .star-icon img {
    max-width: 60%;
    max-height: 60%;
}

.star-background .star-icon-half {
    background: linear-gradient(to right, #00b67b 50%, #ccc 50%);
}

.sc-slide-item {
    margin-right: 20px;
}

.sc-slide-item>.card {
    min-height: 490px;
}

.slick-dotted.slick-slider {
    margin-bottom: 0 !important;
}

.feature-item {
    margin-bottom: 10px;
    font-weight: 500;
}

.btn-cta {
    animation: button 2s infinite;
    background-color: #0d6efd !important;
    color: white !important;
}


#proud-to-be-recognized-for-our-service {
    background-color: #eef2fa;
    padding: 70px;
}

#proud-to-be-recognized-for-our-service img {
    width: 100%;
    padding: 10px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 50%;
}

#proud-to-be-recognized-for-our-service img:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 50%;
}

#proud-to-be-recognized-for-our-service p {
    width: 60%;
}

.footermain .current-menu-item a {
    color: #fff !important
}

.footermain {
    background: #051032
}

.footerwrapper {
    max-width: 725px;
    margin: 0 auto
}

.footerlogo {
    max-width: 156px;
    margin: 0 auto;
    padding: 31px 0 40px
}

.footerlogo img {
    width: 100%
}

#menu-footer-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 650px;
    margin: 0 auto;
    padding-bottom: 36px;
    flex-wrap: wrap;
    list-style: none;
}

#menu-footer-menu li a {
    font-family: Poppins, sans-serif;
    font-weight: 400;
    font-size: 11.6923px;
    line-height: 19px;
    text-align: center;
    color: #fff;
    position: relative;
    padding: 0 6px
}


.footermain .current-menu-item a {
    color: #fff !important
}

.footermain {
    background: #0619ac
}

.footerwrapper {
    max-width: 725px;
    margin: 0 auto
}

.footerlogo {
    max-width: 156px;
    margin: 0 auto;
    padding: 31px 0 40px
}

.footerlogo img {
    width: 100%
}

#menu-footer-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 650px;
    margin: 0 auto;
    padding: 36px;
    flex-wrap: wrap
}

#menu-footer-menu li a {
    font-family: Poppins, sans-serif;
    font-weight: 400;
    font-size: 11.6923px;
    line-height: 19px;
    text-align: center;
    color: #fff;
    position: relative;
    padding: 0 6px;
    text-decoration: none;
}

#menu-footer-menu li a:hover {
    text-decoration: underline;
}

ul#menu-footer-menu li:not(:last-of-type) a::after {
    position: absolute;
    content: '';
    border-right: 1px solid;
    height: 10px;
    top: 4px;
    right: 0;
}

#fomo {
    display: flex;
    position: fixed;
    z-index: 99999;
    align-items: center;
    gap: 10px;
    background: #fff;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 95%;
    font-size: 14px;
    animation: slideUp 0.5s ease forwards;
    /* ThÃƒÂªm hiÃ¡Â»â€¡u Ã¡Â»Â©ng */
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    top: 83%;
    /* Ã„ÂÃ¡ÂºÂ©y phÃ¡ÂºÂ§n tÃ¡Â»Â­ xuÃ¡Â»â€˜ng 70% */
    left: 50%;
    transform: translate(-50%, 50%);
    /* BÃ¡ÂºÂ¯t Ã„â€˜Ã¡ÂºÂ§u tÃ¡Â»Â« dÃ†Â°Ã¡Â»â€ºi (Ã¡ÂºÂ©n) */
}

.feedback-content {
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    text-align: left;
    color: #050B20;
}

/* Keyframes cho hiÃ¡Â»â€¡u Ã¡Â»Â©ng */
@keyframes slideUp {
    0% {
        transform: translate(-50%, 100%);
        /* BÃ¡ÂºÂ¯t Ã„â€˜Ã¡ÂºÂ§u tÃ¡Â»Â« dÃ†Â°Ã¡Â»â€ºi */
        opacity: 0;
        /* Ã¡ÂºÂ¨n */
    }

    100% {
        transform: translate(-50%, -50%);
        /* VÃ¡Â»Â vÃ¡Â»â€¹ trÃƒÂ­ giÃ¡Â»Â¯a */
        opacity: 1;
        /* HiÃ¡Â»â€¡n */
    }
}

#fomo .product_image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

#fomo .wrapper {
    display: flex;
    flex-direction: column;
}

#fomo .buyer {
    line-height: 1.4;
}

#fomo .user_name {
    font-weight: bold;
    color: #333;
    font-size: 15px;
}

#fomo .location {
    color: #555;
    font-size: 15px;
}

#fomo .Boked .loanAmount {
    color: green;
    font-weight: bold;
    font-size: 15px;
}

#fomo .time {
    margin-top: 0px;
    font-size: 12px;
    color: #555;
    font-size: 15px;
}

#fomo .time img {
    width: 15px;
    border-radius: 50%;
    filter: hue-rotate(352deg) saturate(150%) brightness(120%);
    position: relative;
    top: 2px;
    margin-left: 8px;
}

#fomo .time .number {
    font-weight: bold;
    font-size: 15px;
}

#fomo .time .type {
    color: #555;
    font-size: 15px;
}

#fomo .time span:last-child {
    color: #00a8ff;
    font-size: 15px;
    margin-left: 5px;
    margin-top: 4px;
    font-size: 15px;
}

.headline {
    margin-bottom: 43px;
    font-size: 25px;
    position: relative;
    top: 2px;
    text-align: left;
}

.pre-headline {
    font-size: 18px;
    position: relative;
    top: -15px;
    font-weight: 500;
    display: block;
    margin-top: 14px;
    line-height: 27px;
}

.btn-cta-pc {
    margin-top: 30px;
}

.btn-sticker {
    border: none;
    font-size: 14px;
    margin-top: 10px;
}

.faq-item .faq-content p {
    line-height: 1.6;
}

.testimonial-box-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
    border-radius: 5px;
    width: 100%;
}

.testimonial-box {
    background-color: #ffffff;
    padding: 19px 65px 14px 15px;
    border-radius: 8px !important;
    box-shadow: 6vw 0vw 11vw 2vw #43424236 !important;
    margin: auto;
    margin-top: 27px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.testimonial-box:nth-child(n + 5) {
    display: none;
}

.profile {
    display: flex;
    align-items: center;
}

.profile-img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 16px;
    border: 1.6px solid #f0f0f0;
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.vmark {
    margin: 10px 0px 0px -24px;
    background-image: url(https://res.cloudinary.com/dba7l52gn/image/upload/v1677955009/ezgif-5-d304ed3972_ubmwtk.webp);
    width: 23px;
    height: 23px;
    position: relative;
    top: 22px;
    left: -14px;
    zoom: 0.9;
}

.name-user {
    color: #2c2c2c;
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    margin-left: -2px;
}

.age {
    padding: 7px 0px 3px 6px;
    color: #696a6a;
    display: block;
    font-weight: 400;
    font-size: 16px;
}

.stamped-verified-badge {
    color: #009dff;
    font-family: sans-serif;
    font-weight: lighter;
    font-style: italic;
    padding-left: 7px;
    font-size: 16px;
}

.flag {
    background-image: url(https://cdnjs.cloudflare.com/ajax/libs/flag-icon-css/3.4.3/flags/4x3/us.svg);
    margin: 16px 0px 20px 0px;
    width: 36px;
    height: 27px;
}

.date {
    margin: 5px 0px 0px 0px;
    font-size: 15px;
    color: #696a6a;
}

.insta {
    font-size: 3.5vw;
    color: #696a6a;
}

.adress {
    padding: 0px 0px 0px 1px;
    margin: 4px 0px 0px 0px;
    font-size: 18px;
    color: #696a6a;
    line-height: 21px;
}

.stars {
    padding: 0px;
    margin: 0px 0px 0px 0px;
    border-bottom: 1.2px solid #f0f0f0;
}

.readMoreInit {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #333333;
    margin: 12px 2px 0px 2px;
}

.btnllink {
    text-align: center;
    display: block;
}

.arrow_animated {
    animation: bounce 1s infinite ease-in-out;
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.partially-visible {
    opacity: 0.5;
    transition: opacity 0.3s ease-in-out;
    height: 55vh;
    overflow: hidden;
    width: 100%;
}

.show-more {
    background: linear-gradient(to bottom, #bfbfbfd6, #fdfdfd);
    width: 93vw;
    text-align: center;
    padding: 9px 0px 7px 0;
    font-size: 1vw;
    box-shadow: 0rem -1rem 1rem 0rem #00000033;
    position: relative;
    top: -37px;
    color: #0d6efc;
    font-weight: bold;
}

.show-more.show-all {
    height: auto;
    /* Remove height restriction */
    overflow: visible;
    /* Show all content */
}

.partially-visible.hidden {
    opacity: 1;
    height: auto;
    overflow: hidden;
}

.testimonial-reply-box {
    background-color: #f1f1e9;
    padding: 13px 6px 18px 19px;
    margin: 9px 2px 5px -4px;
    border-radius: 4px;
    border: 1.8px solid #f0f0f0;
}

.reply-profile-img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 16px;
    border: 1.6px solid #f0f0f0;
}

.reply-profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.phone {
    padding: 0px 0px 0px 2px;
    margin: 3px 0px 8px 0px;
    font-size: 3.5vw;
    color: #696a6a;
}

.partially-visible.show {
    opacity: 1;
    height: auto;
    overflow: hidden;
}


@keyframes button {
    0% {
        transform: translate(-10px);
    }

    5% {
        transform: translate(10px);
    }

    10% {
        transform: translate(-5px);
    }

    15% {
        transform: translate(5px);
    }

    20% {
        transform: translate(0);
    }

    100% {
        transform: translate(0);
    }
}


.review {
    background-color: #fffcf3;
    padding: 16px 24px;
    border-radius: 8px;
    width: 54%;
    border: 1px solid #c5c5c5;
}

.progress-bar-container {
    display: flex;
    flex-direction: column;
    /* gap: 10px; */
    justify-content: space-around;
}

.progress-bar {
    width: 62%;
    height: 10px;
    background-color: #f1f1e8 !important;
    border-radius: 5px;
    position: relative;
    margin-left: 20px;
}

.progress-fill {
    height: 100%;
    background-color: #000;
    border-radius: 5px;
}

.justify-content-between {
    justify-content: space-between !important;
}


.justify-content-around {
    justify-content: space-around !important
}

#grants-assistance-programs .card .card-text,
#step .card .card-text,
.progress-bar-container span:not(:has(input[type="checkbox"])) {
    color: #050b20;
    font-size: 17px;
    font-weight: 400;
    line-height: 23px;
    margin: 10px 0;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-container:hover input[type="checkbox"],
.checkbox-container {
    cursor: pointer;
}

.checkbox-container:hover .progress-fill-5-star {
    background-color: #009855;
}

.checkbox-container:hover .progress-fill-4-star {
    background-color: #73cf11;
}

.checkbox-container:hover .progress-fill-3-star {
    background-color: #ffce00;
}

.checkbox-container:hover .progress-fill-2-star {
    background-color: #ff8622;
}

.checkbox-container:hover .progress-fill-1-star {
    background-color: #ff3722;
}

.checkbox-container input[type="checkbox"] {
    margin: 0;
}

.checkbox-container input[type="checkbox"]:checked~.progress-bar .progress-fill-5-star {
    background-color: #009855;
}

.checkbox-container input[type="checkbox"]:checked~.progress-bar .progress-fill-4-star {
    background-color: #73cf11;
}

.checkbox-container input[type="checkbox"]:checked~.progress-bar .progress-fill-3-star {
    background-color: #ffce00;
}

.checkbox-container input[type="checkbox"]:checked~.progress-bar .progress-fill-2-star {
    background-color: #ff8622;
}

.checkbox-container input[type="checkbox"]:checked~.progress-bar .progress-fill-1-star {
    background-color: #ff3722;
}

.truncated-content {
    margin: 0;
    /* Äáº£m báº£o nÃ³ khÃ´ng cÃ³ margin */
    display: inline;
    /* Äáº£m báº£o nÃ³ lÃ  inline */
    width: 100%;
}

/* =============================== */

.ellipsis {
    display: inline;
}

.read-more-btn {
    color: #007bff;
    background: none;
    border: none;
    padding-top: 3px;
    font: inherit;
    font-size: 16px;
    cursor: pointer;
    text-decoration: underline;
    display: block;
    text-align: center;
    width: 100%;
}

.read-more-btn:hover {
    color: #0056b3;
}

.expandable-text {
    margin: 0;
    /* Reset margin máº·c Ä‘á»‹nh cá»§a p */
    display: inline;
    /* Äá»ƒ nÃºt Read more náº±m cÃ¹ng hÃ ng */
    width: 100%;
}

.trusted-publications {
    background: linear-gradient(45deg, #f7f2e1, #f7f2f3, #f7dcf1);
    text-align: center;
    padding: 0.6%;
    position: relative;
    border: 1px solid #d7d7d7;
}

.trusted-publications h2 {
    color: #94a5b3;
    font-size: 26px;
    margin-bottom: 46px;
}

.logos {
    display: -webkit-inline-box;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 6%;
}

.logos img {
    height: auto;
    /* Adjust based on actual logo sizes */
    margin: 0 10px;
    vertical-align: middle;
}

.newsimg {
    width: 90%;
    max-width: 1079px;
    border-radius: 18px;
    border: 12px solid #000000;
}

body>section.hero-gradient.position-relative>div>div>div.col-lg-7.text-white.position-relative.z-2>div>div:nth-child(4)>a,
body>section:nth-child(45)>div>div>a,
body>section:nth-child(48)>div>div>a {
    background: #0d6efd; !important;
}

body>section.hero-gradient.position-relative>div>div>div.col-lg-5.d-lg-block.trustpilot>div.rating-container.mt-3.p-3.rounded-3>div>div.rating-text.mb-2.rated-score {
    color: #85919c;
}

.ni-1j3weux {
    display: block;
    margin: auto;
}

.ni-1v3h4gb {
    display: flex;
    color: #8f8b8b;
    padding: 35px 0 0px 14px;
    position: relative;
    gap: 2vw;
}

.ni-1rr7oha {
    width: 20px;
    height: 20px;
    object-fit: contain;
    margin-inline-end: 5px;
}

.ni-8i4z3c {
    text-align: center;
    line-height: 1.8;
    font-style: italic;
}

.ni-7xxscu {
    font-size: 3.5vw;
    display: flex;
}

.hero-stats-wrapper {
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    display: flex;
    position: relative;
    background: linear-gradient(86deg, #ef4541 0%, #ff5722b5 100%);
    color: white;
    padding: 2.1rem 11px 2.1rem 17px;
    text-align: center;
    gap: 4rem;
    /* width: 100vw; */
    /* left: -16px; */
    line-height: .4;
}

.styles_ratingDistributionCard .styles_text {
    min-width: 96px;
}

.typography_display-l,
.typography_display-l.typography_disableResponsiveSizing {
    font-family: Trustpilot Display, Arial, sans-serif;
    font-weight: 900;
    line-height: 130%;
    font-size: 32px;
    letter-spacing: -0.48px;
}

/* Giữ lại một khai báo cho lớp này */
.typography_appearance-default {
    color: #1c1c1c;
}

.styles_ratingDistributionCard .styles_trustScore {
    margin-bottom: 8px;
    line-height: 40px;
}

.typography_heading-xxs,
.typography_heading-xxs.typography_disableResponsiveSizing {
    font-family: TrustpilotDefaultFont, Arial, sans-serif;
    font-weight: 700;
    line-height: 120%;
    font-size: 14px;
    letter-spacing: -0.154px;
}

.styles_ratingDistributionCard .styles_starRatingName {
    margin-bottom: 4px;
}

.star-rating_starRating {
    display: flex;
    min-width: 90px;
}

.star-rating_responsive {
    width: auto;
    max-width: 340px;
}

.typography_body-s,
.typography_body-s.typography_disableResponsiveSizing {
    font-family: TrustpilotDefaultFont, Arial, sans-serif;
    font-weight: 400;
    line-height: 140%;
    font-size: 12px;
    letter-spacing: 0.132px;
}

.styles_ratingDistributionCard .styles_distributions {
    width: 100%;
    position: relative;
    left: 21px;

}

.rating-distribution-row_row {
    display: flex;
    gap: 8px;
    justify-content: space-between;
    align-items: center;
}

.rating-distribution-row_row .rating-distribution-row_bar {
    height: 8px;
    width: 100%;
    display: flex;
    background-color: #d2d2d2;
    border-radius: 9999px;
    position: relative;
    overflow: hidden;
}

.rating-distribution-row_row .rating-distribution-row_bar .rating-distribution-row_barValue {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 8px;
    border-radius: inherit;
}


.rating-distribution-row_row>span {
    min-width: 55px;
    display: inline-flex;
}

.rating-distribution-row_row[data-star-rating=five] .rating-distribution-row_barValue {
    background-color: #00b67a;
}

.rating-distribution-row_row[data-star-rating=four] .rating-distribution-row_barValue {
    background-color: #73cf11;
}

.rating-distribution-row_row[data-star-rating=three] .rating-distribution-row_barValue {
    background-color: #ffce00;
}

.rating-distribution-row_row[data-star-rating=two] .rating-distribution-row_barValue {
    background-color: #ff8622;
}

.rating-distribution-row_row[data-star-rating=one] .rating-distribution-row_barValue {
    background-color: #ff3722;
}

@media (max-width: 1024px) {
    .testimonial-box {
        width: 100%;
    }

    .trusted-publications h2 {
        color: #94a5b3;
        font-size: 26px;
        margin-bottom: 46px;
    }

    .styles_ratingDistributionCard {
        padding: 16px 20px;
        border: .95px solid #e5e5dd;
        box-shadow: 0 3px 9px 0 rgba(0, 0, 0, .14);
        border-radius: 16px;
        display: flex;
        gap: 16px;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }

    .styles_businessInfoSideBar {
        align-self: flex-start;
        gap: 24px;
        /* Giá trị của --CDS-spacing-l */
        grid-area: sidebar;
        padding-bottom: 72px;
        position: -webkit-sticky;
        position: sticky;
        top: 40px;
        /* Giá trị của --CDS-spacing-xxl */
        transition: top .3s ease-in-out;
    }

    /* Giữ lại một khai báo cho lớp này */
    .typography_body-s {
        font-family: TrustpilotDefaultFont, Arial, sans-serif;
        font-weight: 400;
        line-height: 140%;
        font-size: 12px;
        letter-spacing: 0.132px;
    }

    .typography_display-l {
        font-family: Trustpilot Display, Arial, sans-serif;
        font-weight: 900;
        line-height: 130%;
        font-size: 48px;
        letter-spacing: -0.72px;
    }

    .typography_heading-xxs {
        font-family: TrustpilotDefaultFont, Arial, sans-serif;
        font-weight: 700;
        line-height: 120%;
        font-size: 14px;
        letter-spacing: -0.154px;
    }

}

body>section.customer-section>div>div>div>div.styles_businessInfoSideBar>div {
    background-color: #ffffff;
    padding: 19px 65px 14px 15px;
    border-radius: 8px !important;
    box-shadow: 6vw 0vw 11vw 2vw #43424236 !important;
    margin: auto;
    margin-top: 27px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 600px;
    float: left;
}

.text-muted {
    color: #ffffff !important;
    font-size: 12px;
    position: relative;
    top: 26px;
    text-align: center;
}

#success-stories .slides {
    display: flex;
    cursor: grab;
    user-select: none;
    transform: translateX(0);
    /* Xóa translateX(-100%) */
    transition: transform 0.5s ease;
    /* Thêm transition mặc định */
}

#success-stories .slides:active {
    cursor: grabbing;
}

#success-stories .card {
    width: 100%;
    flex-shrink: 0;
    pointer-events: none;
}

#verified-successes .row {
    min-height: 400px;
    height: 100%;
}


#verified-successes .col-12 {
    height: 100%;
}


#proud-to-be-recognized-for-our-service p {
    width: 60%;
}

#step > div {
    padding: 0 95px;
}

.slide-fake {
    display: none;
}

.slide-main {
    display: block;
}

#verified-successes {
    width: 80%;
    margin: 0 auto;
}
/* Đảm bảo hình ảnh trong slider được căn chỉnh đẹp */
.carousel-inner img {
    max-height: 600px;
    object-fit: cover;
    cursor: pointer;
}

.carousel-inner img.rounded-circle.mr-3 {
    max-height: 100px;
    max-width: 100px;
}

#verifiedSuccessSlider {
    padding: 20px;
}


#grants-assistance-programs .card {
    padding: 11px 12px 11px 12px;
    border-radius: 0%;
    background: radial-gradient(
        circle,
        rgb(245 245 245) 76%,
        rgb(217 216 216) 100%
    );
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#grants-assistance-programs .card .card-text,
#step .card .card-text,
.progress-bar-container span:not(:has(input[type="checkbox"])) {
    color: #050b20;
    font-size: 17px;
    font-weight: 400;
    line-height: 23px;
    margin: 10px 0;
}

#grants-assistance-programs .card h1,
#step .card h1 {
    font-weight: bold;
    font-size: 80px;
    color: #1344b5;
}

#grants-assistance-programs .card h5,
#step .card h5 {
    font-size: 25px;
    font-weight: 700;
    line-height: 33.44px;
}

.trustpilot-rating p {
    margin: 0;
    font-size: 1rem;
}
.card {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.slide-fake .carousel-inner {
    padding: unset;
}

.star-background {
    display: flex;
    gap: 5px;
}

#success-stories .card {
    min-height: 100%;
    border-radius: 0;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #c5c5c5;
    align-items: start;
}

.star-off-full {
    background: linear-gradient(to right, #00b67b 0%, #ccc 0%) !important;
}

.star-off-half {
    background: linear-gradient(to right, #00b67b 50%, #ccc 50%) !important;
}

.star-off-two-thirds {
    background: linear-gradient(to right, #00b67b 66%, #ccc 66%) !important;
}


@media (max-width: 768px) {
    #prevButton, #nextButton {
        display: none;
    }

    
    .review {
        width: 100%;
    }

    .checkbox-container {
        gap: 6px;
    }

    #reviewCarousel_1 {
        display: none;
    }

    .slide-fake {
        display: block;
    }

    #success-stories {
        margin: 30px auto;
    }

    .verified-success-image {
        margin: 0px 10px 10px 0px;
        padding: 10px;
        max-width: 168px;
    }
}

.arrow-container {
    animation: moveDownUp 1.5s infinite ease-in-out;
}
/* 
#targetBox {
      transition: margin-top 0.3s ease;
}

#targetBox.before-click {
    margin: 40px 0px;
    background: linear-gradient(45deg, #0f0c29, #24243e, #302b63, #0f3460);
    animation: gradientShift 15s ease infinite;
}

#targetBox.after-click {
    margin-top: -18px;
    background: linear-gradient(45deg, #0f0c29, #24243e, #302b63, #0f3460);
    animation: gradientShift 15s ease infinite;
} */


.warn {
    position: relative;
    top: 35px;
    color: #f9fafa;
    font-size: 4.6vw;
    font-weight: bold;
    text-align: center;
    margin-top: 16px;
    line-height: 1.6;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(96, 165, 250, 0.6);
    border-radius: 50%;
    animation: particle-float 25s linear infinite;
}

@keyframes particle-float {
    0% {
    transform: translateY(10vh) rotate(0deg);
    opacity: 0;
    }

    10% {
    opacity: 1;
    }

    90% {
    opacity: 1;
    }

    100% {
    transform: translateY(-10vh) rotate(360deg);
    opacity: 0;
    }
}

.particle:nth-child(4n) {
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(4n+1) {
    left: 30%;
    animation-delay: -5s;
}

.particle:nth-child(4n+2) {
    left: 60%;
    animation-delay: -10s;
}

.particle:nth-child(4n+3) {
    left: 80%;
    animation-delay: -15s;
}

.carousel-container {
    display: flex;
    overflow-x: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.card {
    min-width: 100vw;
    scroll-snap-align: start;
    display: flex;
    /* justify-content: center; */
    /* align-items: center; */
    padding: 15px 0;
}

.comparison-table {
    width: 60vw;
    border-collapse: collapse;
    border-radius: 4px;
    overflow: hidden;
    background: #faf2f3;
    box-shadow: rgb(24 87 192 / 36%) 1px 0px 40px 0px;
    margin: 50px auto;
}


.comparison-table th {
        font-size: 2.5vw;
    font-weight: 700;
    text-align: center;
    padding: 10px 5px;
    border-bottom: 1px solid #cdcdcd;
    color: #4f667a;

}

.comparison-table th:first-child {
    text-transform: capitalize;
    background-color: #f2faf8;
}

.comparison-table td {
    padding: 10px 12px;
    font-size: 13px;
    text-align: left;
    border-bottom: 1px solid #cdcdcd;
}

.comparison-table td:nth-child(1) {
    font-weight: 600;
    color: #00b386;
    background-color: #f2faf8;
}

.comparison-table td:nth-child(2) {
    font-weight: 600;
    color: #e27d7d;
}

.comparison-table td span {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    color: #5b5b5b;
}

.smltxt {
    color: #4f657a;
    font-size: 1.5vw;
    margin-bottom: 11px;
    text-align: center;
}

.green {
    color: #4f657a;
    font-size: 1.3vw;
    text-align: center;
}

.comparison-table img {
    position: relative;
            width: 5vw;
            top: 50%;
            left: 44%;
            opacity: .5;
}

.red {
    color: #e27d7d;
    font-size: 1.3vw;
    text-align: center;
}


.check {
    background-color: white;
    color: #00b486;
}

.check,
.cross {
    font-size: 15px;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: auto;
}


@media (max-width: 768px) {

.warn {
    position: relative;
    top: 35px;
    color: #f9fafa;
    font-size: 4.6vw;
    font-weight: bold;
    text-align: center;
    margin-top: 16px;
    line-height: 1.6;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(96, 165, 250, 0.6);
    border-radius: 50%;
    animation: particle-float 25s linear infinite;
}

@keyframes particle-float {
    0% {
    transform: translateY(10vh) rotate(0deg);
    opacity: 0;
    }

    10% {
    opacity: 1;
    }

    90% {
    opacity: 1;
    }

    100% {
    transform: translateY(-10vh) rotate(360deg);
    opacity: 0;
    }
}

.particle:nth-child(4n) {
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(4n+1) {
    left: 30%;
    animation-delay: -5s;
}

.particle:nth-child(4n+2) {
    left: 60%;
    animation-delay: -10s;
}

.particle:nth-child(4n+3) {
    left: 80%;
    animation-delay: -15s;
}

.carousel-container {
    display: flex;
    overflow-x: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.card {
    min-width: 100vw;
    scroll-snap-align: start;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
}

.comparison-table {
    width: 94vw;
    border-collapse: collapse;
    border-radius: 4px;
    overflow: hidden;
    background: #faf2f3;
    box-shadow: rgb(24 87 192 / 36%) 1px 0px 40px 0px;
    margin: 30px auto;
    /* margin-top: 12px; */
}


.comparison-table th {
    font-size: 6.5vw;
    font-weight: 700;
    text-align: center;
    padding: 20px 16px;
    border-bottom: 1px solid #cdcdcd;
    color: #4f667a;

}

.comparison-table th:first-child {
    text-transform: capitalize;
    background-color: #f2faf8;
}

.comparison-table td {
    padding: 18px 16px;
    font-size: 14px;
    text-align: left;
    border-bottom: 1px solid #cdcdcd;
}

.comparison-table td:nth-child(1) {
    font-weight: 600;
    color: #00b386;
    background-color: #f2faf8;
}

.comparison-table td:nth-child(2) {
    font-weight: 600;
    color: #e27d7d;
}

.comparison-table td span {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    color: #5b5b5b;
}

.smltxt {
    color: #4f657a;
    font-size: 5vw;
    margin-bottom: 11px;
    text-align: center;
}

.green {
    color: #4f657a;
    font-size: 4vw;
    text-align: center;
}

.red {
    color: #e27d7d;
    font-size: 4vw;
    text-align: center;
}


.check {
    background-color: white;
    color: #00b486;
}

.check,
.cross {
    font-size: 16px;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: auto;
}

.comparison-table img {
    position: relative;
            width: 10vw;
            top: 50%;
            left: 50%;
            opacity: .5;
}

}
/* Container bao bọc bảng để tạo shadow và bo góc */
.table-container {
    width: 100%;
    margin: 30px auto;
    max-width: 960px;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Bảng */
.app-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

/* Header của bảng */
.app-table__header tr {
    background-color: #f7fafc;
}

.app-table__header th {
    font-weight: 600;
    padding: 24px 16px;
    text-align: left;
    border-bottom: 2px solid #e2e8f0;
}

.app-table__header th:first-child {
    background-color: #ffffff;
    border-top-left-radius: 16px;
}

.app-table__header th:last-child {
    border-top-right-radius: 16px;
}

.app-table__header .text-2xl {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Thân bảng */
.app-table__row td {
    padding: 24px 16px;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: middle;
    text-align: center;
}

/* Cột đầu tiên trong các hàng */
.app-table__row td:first-child {
    font-weight: 600;
    color: #4a5568;
    text-align: left;
    background-color: #ffffff;
}

.app-table__row td:not(:first-child) {
    background-color: #f7fafc;
}

/* Các hàng chẵn có màu nền khác */
.app-table__row:nth-child(even) td:not(:first-child) {
    background-color: #ffffff;
}

/* Các hàng cuối cùng */
.app-table__row:last-child td {
    border-bottom: none;
}

.app-table__row:last-child td:first-child {
    border-bottom-left-radius: 16px;
}

.app-table__row:last-child td:last-child {
    border-bottom-right-radius: 16px;
}

/* Định dạng màu cho giá trị */
.green {
    color: #008000;
    font-weight: 700;
}

.light-green {
    color: #4CAF50;
    font-weight: 700;
}

.red {
    color: #EF4444;
    font-weight: 700;
}

/* Kích thước và màu sắc của các icon SVG */
.app-table__cell-icon--check,
.app-table__cell-icon--xmark {
    width: 24px;
    height: 24px;
    display: inline-block; /* Cần thiết để căn chỉnh */
}

.app-table__cell-icon--check {
    color: #22c55e;
}

.app-table__cell-icon--xmark {
    color: #ef4444;
}

.app-table__header_title, .app-table__cell_number {
    font-size: 20px;
}

/* Các quy tắc mới cho màn hình nhỏ */
@media (max-width: 640px) {
    /* Vô hiệu hóa bố cục dạng thẻ và tạo khu vực cuộn ngang */
    .table-container {
        overflow-x: auto;
        box-shadow: none;
        border-radius: 0;
    }

    .app-table {
        display: block; /* Cho phép cuộn */
        width: max-content; /* Đảm bảo bảng đủ rộng để cuộn */
        min-width: 100%;
    }

    .app-table__header {
        display: table-header-group; /* Hiển thị lại tiêu đề bảng */
    }

    .app-table__header th {
        white-space: nowrap; /* Ngăn tiêu đề bị xuống dòng */
    }

    .app-table__header th:first-child {
        position: sticky; /* Cột đầu tiên sẽ cố định */
        left: 0;
        z-index: 10;
        background-color: #fff;
        border-top-left-radius: 0; /* Bỏ bo góc để cuộn mượt hơn */
    }

    .app-table__row {
        display: table-row; /* Hiển thị lại các hàng */
    }

    .app-table__row td:first-child {
        font-size: 14px;
    }

    .app-table__row td {
        display: table-cell; /* Hiển thị lại các ô */
        white-space: nowrap; /* Ngăn nội dung ô bị xuống dòng */
        padding: 12px 5px;
        border-right: 1px solid #e2e8f0;
    }

    .app-table__row td:first-child {
        display: table-cell; /* Hiển thị lại cột đầu tiên */
        position: sticky; /* Cột đầu tiên sẽ cố định */
        left: 0;
        z-index: 5;
        background-color: #fff;
    }
    
    .app-table__row td:nth-child(2) {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }
    
    .app-table__row td:nth-child(3) {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }
    
    .app-table__row td:not(:first-child) {
        background-color: #f7fafc;
    }

    .app-table__row:nth-child(even) td:not(:first-child) {
        background-color: #ffffff;
    }

    .app-table__row:last-child td:first-child,
    .app-table__row:last-child td:last-child {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    /* Ẩn các tiêu đề thêm cho mobile đã thêm trước đó */
    .app-table__row td::before {
        content: none;
    }

    .app-table__header_title, .app-table__cell_number {
        font-size: 18px;
    }

    #menu-footer-menu {
        padding: 10px 15px 30px 15px;
        margin-bottom: 100px;
    }
}

