.hero-gradient {
    background-image: url(https://grants-assistance.com/wp-content/themes/wp_infinity_theme/dist/assets/images/refreshment/desktop_intersect.svg);
    background-size: 60%;
    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: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }

    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }

    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }

    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

.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: #158346;
    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(90deg, #0619ac 0%, #162283 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 {
    width: 350px;
    max-width: 375px;
    /* margin-bottom: 2rem;
    margin-top: 2rem; */
}


.rating-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.star-icon {
    width: 148px;
    /* Increased size for Trustpilot icon */
    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%;
}

.verified-success-image {
    /* display: block;
    max-width: 100%; */
}

#proud-to-be-recognized-for-our-service p {
    width: 60%;
}

.verified-success-image {
    max-width: 100%;
    height: auto;
}

.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 .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;
    letter-spacing: -0.3px;
}

.btn-cta {
    animation: button 2s infinite;
    background-color: #21ab5e !important;
    color: white !important;
}

.verified-success-image {
    max-width: 100%;
    height: auto;
    width: 500px;
}

.verified-success-image-3 {
    max-width: 100%;
    height: auto;
}

/* Hình ảnh trong layout gốc không bị méo */
.verified-success-image {
    max-width: 168px;
    height: auto;
    margin-bottom: 15px;
}

#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
}

ul#menu-footer-menu li:not(:last-child) a::after {
    position: absolute;
    content: '';
    border-right: 1px solid;
    height: 10px;
    top: 4px;
    right: 0
}

.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-bottom: 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
}

ul#menu-footer-menu li:not(:last-child) 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: left;
    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% !important;
    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: 1.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;
}


