@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
:root {
    --marquee-width: 100%;
    --marquee-height: 120px;
    --marquee-elements-displayed: 6;
    --marquee-element-width: calc(
        var(--marquee-width) / var(--marquee-elements-displayed)
    );
    --marquee-animation-duration: calc(var(--marquee-elements) * 3s);
}
a,
h1,
h2,
h3,
h4,
h5,
h6,
p,
strong,
span,
li {
    font-family: "Inter", sans-serif !important;
}
.slider {
    min-height: 55vh;
    display: flex;
    align-items: center;
    padding-top: 61px;
}
.slider h1 {
    color: #0a1d08;
    font-size: 46px;
    font-weight: 500;
}
.slider p {
    color: #1e3a27;
    max-width: 530px;
    margin: 0px auto;
}
.slider .slider-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 20px;
    padding: 9px 11px 9px 14px;
}
.get-demo-btn {
    color: #1e3a27 !important;
    /* background-color: #e0dece !important; */
    background-color: #e0dece !important;
    font-size: 16px !important;
    transition: 0.3s;
    padding: 9px 11px 9px 14px !important;

    /* font-weight: 600 !important; */
}
.get-demo-btn:hover {
    background-color: #1e3a27 !important;
    color: white !important;
}

.marquee-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.marquee {
    width: var(--marquee-width);
    height: var(--marquee-height);
    overflow: hidden;
    position: relative;
}

.marquee::before,
.marquee::after {
    position: absolute;
    top: 0;
    width: 10rem;
    height: 100%;
    content: "";
    z-index: 2;
    pointer-events: none;
}

.marquee::before {
    left: 0;
    /* background: linear-gradient(to right,  #eee9db -40%,#f0e7d6 0%, transparent 100%); */
    /* background: linear-gradient(to right, #eee9db 18%, #eee9db 22%, transparent 100%); */
    border-radius: 20px;
}

.marquee::after {
    right: 0;
    /* background: linear-gradient(to left, #eee9db -40%, #f0e7d6 0%, transparent 100%); */
    /* background: linear-gradient(to left, #eee9db 18%, #eee9db 22%, transparent 100%); */
    border-radius: 20px;
}

.marquee-content {
    list-style: none;
    height: 100%;
    display: flex;
    align-items: center;
    animation: scrolling var(--marquee-animation-duration) linear infinite;
    padding: 0;
    margin: 0;
}

.marquee.reverse .marquee-content {
    animation: scrolling-reverse var(--marquee-animation-duration) linear
        infinite;
}

@keyframes scrolling {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(
            calc(-1 * var(--marquee-element-width) * var(--marquee-elements))
        );
    }
}

@keyframes scrolling-reverse {
    0% {
        transform: translateX(
            calc(-1 * var(--marquee-element-width) * var(--marquee-elements))
        );
    }
    100% {
        transform: translateX(0);
    }
}

.marquee-content li {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: var(--marquee-element-width);
    height: 100%;
    padding: 1rem;
}

.marquee-content li img {
    max-height: 60%;
    max-width: 100%;
    object-fit: contain;
    /* filter: invert(17%) sepia(92%) saturate(6614%) hue-rotate(258deg) brightness(96%) contrast(105%); */
}

@media (max-width: 768px) {
    :root {
        --marquee-elements-displayed: 3;
    }

    .marquee::before,
    .marquee::after {
        width: 5rem;
    }
}

/* slider */

/* .section two */

.section-two {
    padding: 100px 0px;
    background-color: #fbfdf6;
}
.second-section .hero-image {
    border-radius: 25px;
    padding: 15px;
    background-color: #ffffff5e;
    overflow: hidden;
}
.second-section .hero-image img {
    border-radius: 20px;
}
.section-two .sub-head {
    color: #21292c;
    border: 1px solid #d7dbca;
    width: fit-content;
    text-align: center;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 400;
}
.section-two h1 {
    font-size: 48px;
    max-width: 560px;
    margin-bottom: 24px;
}
.section-two .sec-2-p {
    color: #21292ce5;
    max-width: 640px;
    font-weight: 400;
    margin-bottom: 163px;
}
/* .sec-2-card{
    border: 1px solid #E9E9EB;
    padding: 10px;
    border-radius: 10px;
    background-color: white;
} */
.section-two ul {
    padding: 0px;
}
.section-two ul li {
    list-style: none;
    border-bottom: 1px solid #d1d5da;
    padding: 12px 0px;
}

.section-two ul span {
    background-color: #003631;
    color: white;
    border-radius: 20px;
    display: inline-flex;
    width: 25px;
    align-items: center;
    justify-content: center;
    height: 25px;
    text-align: center;
    font-size: 12px;
    margin-right: 10px;
}
.sec-2-card h2 {
    font-size: 22px;
    font-weight: 500;
}
.sec-2-room-det {
    display: flex;
    flex-wrap: wrap;
    gap: 0px 15px;
}
.sec-2-room-det p {
    font-size: 14px;
    font-weight: 600;
    margin-left: 5px;
}
.sec-2-week {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    background-color: #f4f2e899;
    border-radius: 12px;
    padding: 5px 0px;
}

.sec-2-week p {
    text-align: center;
    margin: 0px;
}
.sec-2-week p:nth-child(1) {
    font-size: 14px;
}
/* .sec-2-card:nth-child(2){
    padding: 24px;
} */
.sec-2-main-row {
    max-height: 722px;
    overflow: hidden;
    position: relative;
}
.sec-2-main-row:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100px;
    width: 140%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(251, 253, 246, 0) 75.76%,
        rgba(251, 253, 246, 0.394533) 84.23%,
        rgba(251, 253, 246, 0.5) 86.59%,
        #fbfdf6 100%
    );
    transform: rotate(90deg);
    pointer-events: none;
}
.sec-2-main-row:after {
    content: "";
    position: absolute;
    top: 0;
    right: -100px;
    width: 140%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(251, 253, 246, 0) 75.76%,
        rgba(251, 253, 246, 0.394533) 84.23%,
        rgba(251, 253, 246, 0.5) 86.59%,
        #fbfdf6 94%
    );
    transform: rotate(-90deg);
    pointer-events: none;
}

.sec-2-main-col-1 {
    animation: movement 10s linear alternate-reverse infinite;
}
.sec-2-main-col-2 {
    animation: movement-2 10s linear alternate-reverse infinite;
}
@keyframes movement {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(0, -27%);
    }
}
@keyframes movement-2 {
    0% {
        transform: translate(0, -27%);
    }
    100% {
        transform: translate(0, 0);
    }
}

/* section-3 */
.section-three {
    background-color: #fcf9f2;
    border-top: 1px solid #d7dbca;
    border-bottom: 1px solid #d7dbca;
    padding: 174px 0px 174px 0px;
}
.section-three h1 {
    color: #0f0f0f;
    font-size: 32px;
    max-width: 80%;
    width: 100%;
    text-align: center;
}
/* section-4 */
.seciton-four {
    background-color: #fcf9f2;
    padding: 100px 0px 100px 0px;
}
.seciton-four .sub-head {
    color: #21292c;
    border: 1px solid #d7dbca;
    width: fit-content;
    text-align: center;
    padding: 4px 8px;
    margin: 0px auto 20px auto;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 400;
}
.seciton-four h1 {
    font-size: 48px;
    color: #0f0f0f;
    max-width: 596px;
    margin: 0px auto;
    text-align: center;
}
.sec-4-card .sec-4-img {
    background: linear-gradient(180deg, #e4f3f0 50%, #faffaf 100%);
    text-align: center;
    /* padding: 30px 20px; */
    padding-top: 34px;
    min-height: 376.2px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}
.sec-4-card .sec-4-content {
    padding: 16px 25px;
}
.sec-4-card h2 {
    font-size: 20px;
    color: #232222;
}
.sec-4-card p {
    color: #788082;
    font-weight: 400;
    max-width: 314px;
}
.sec-4-row-2 {
    background-color: #d7dbca3d;
    border-radius: 12px;
    padding: 40px;
}

.sec-4-card {
    background-color: transparent;
    padding: 4px;
    border-radius: 12px;
}

.sec-4-card:hover {
    background-color: #efefe9b2;
    padding: 4px;
    border-radius: 12px;
}

.card-hover {
    padding: 10px;
    border-radius: 12px;
    width: 370px;
    height: 522px;
}

.card-hover:hover {
    background-color: #efefe9b2;
    padding: 10px;
    border-radius: 12px;
}
.sec-4-card-2 h2 {
    font-size: 18px;
    color: #111827fa;
}
.sec-4-card-2 p {
    color: #788082;
    margin: 0px;
    max-width: 343px;
    font-weight: 400;
}

.section-five {
    padding: 100px 0px;
    background-color: #fbfdf6;
}
.sec-5-main {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
}
.sec-5-main h1 {
    color: #21292c;
    font-size: 48px;
    max-width: 567px;
}
.sec-5-main p {
    color: #21292ce5;
    margin: 0px;
    max-width: 550px;
    font-weight: 400;
}
.sec-5-main a {
    display: block;
    width: fit-content;
    border-radius: 50px;
    background-color: #1e3a27;
    color: white;
    font-size: 16px;
    padding: 9px 11px 9px 14px;
    margin-top: 30px;
    text-transform: uppercase;
    transition: 0.3s;
}
.sec-5-main a:hover {
    background-color: #dadbd2;
    color: #0a1d08;
}
.sec-5-counter h2 {
    font-size: 48px;
    color: #21292c;
    margin: 0px;
}
.sec-5-counter p {
    font-size: 18px;
    color: #0a1d08;
    margin: 0px;
    font-weight: 600;
    max-width: 195px;
}
.sec-5-counter {
    border-bottom: 1px dashed #afb3a2;
    border-top: 1px dashed #afb3a2;
    padding-top: 30px;
    padding-bottom: 30px;
}
.sec-5-counter div {
    display: flex;
    align-items: center;
}
.extra-border {
    /* border-top: 1px dashed #AFB3A2; */
    border-bottom: 1px dashed #afb3a2;
}
.extra-border .sec-5-counter:nth-child(1) {
    border-top: 0px !important;
}
.section-six {
    background: linear-gradient(180deg, #1e3a27 0%, #0a5042 100%);
    border-radius: 40px 40px 0px 0px;
    padding: 100px 0px 150px 0px;
    min-height: 1057px;
}
.section-six h1 {
    font-size: 48px;
    color: white;
    text-align: center;
}
.section-six h2 {
    font-size: 32px;
    color: white;
    /* max-width: 350px; */
    margin-bottom: 33px;
    width: 100%;
}

.six-content a {
    display: block;
    width: fit-content;
    border-radius: 50px;
    background-color: #fbfdf6;
    color: #0b3b31;
    font-size: 16px;
    padding: 9px 11px 9px 14px;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0);
    text-transform: uppercase;
    min-width: 159px;
    height: 42px;
}
.six-content a:hover {
    background-color: #1e3a27;
    color: white;
    border: 1px solid white;
}
.six-content {
}
.sec-6-accordion .accordion-item {
    background: rgba(255, 0, 0, 0);
    border: none !important;
    border-radius: 0px !important;
}

.sec-6-accordion .accordion-button {
    background: rgba(255, 0, 0, 0) !important;
    color: white !important;
    border: none !important;
    box-shadow: none !important;
    font-size: 32px;
    border-left: 3px solid rgb(255, 255, 255) !important;
    transition: 0.3s;
    border-radius: 0px !important;
}
.sec-6-accordion .accordion-button.collapsed {
    border-left: 3px solid rgba(255, 255, 255, 0.24) !important;
    color: rgba(255, 255, 255, 0.24) !important;
}
.sec-6-accordion .accordion-button::after {
    background-image: unset !important;
}
.sec-6-accordion .accordion-body {
    color: #ffffffb2;
    padding: 0rem 1.25rem;
    font-weight: 400;
    padding-bottom: 20px;
    max-width: 420px;
}

.sec-6-accordion .accordion-collapse {
    border-left: 3px solid rgb(255, 255, 255) !important;
}
.accordion-item:last-of-type .accordion-collapse {
    border-radius: 0px !important;
}
.section-six .sec-6-img {
    background: linear-gradient(180deg, #e4f3f0 50%, #faffaf 100%);
    padding: 30px 0px 30px 30px;
    border-radius: 12px;
}
.section-six .sec-6-img img {
    border-radius: 5px 0px 0px 5px;
    overflow: hidden;
}
.section-six .sub-head {
    color: white;
    border: 1px solid #ffffff40;
    width: fit-content;
    text-align: center;
    padding: 4px 8px;
    margin: 0px auto 20px auto;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 400;
}
.flex-between-all {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.section-seven {
    padding: 100px 0px;
    background-color: #fbfdf6;
}
.sec-7-main {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
}
.sec-7-main h1 {
    color: #0f0f0f;
    font-size: 48px;
    max-width: 567px;
}
.sec-7-main p {
    color: #232222;
    margin: 0px;
    max-width: 626px;
    font-size: 20px;
}
.sec-7-btns {
    display: flex;
    gap: 10px;
}
.sec-7-main a {
    display: block;
    width: fit-content;
    border-radius: 50px;
    background-color: #1e3a27;
    color: white;
    font-size: 16px;
    padding: 9px 11px 9px 14px;
    text-transform: uppercase;
    transition: 0.3s;
    border: 1px solid #e0e5d500;
}
.sec-7-main a:hover {
    background-color: #fbfdf6;
    border: 1px solid #e0e5d5;
    color: #1e3a27;
}
.sec-7-btns a {
    cursor: pointer;
    background-color: #fbfdf6;
    border: 1px solid #e0e5d5;
    color: #1e3a27;
    padding: 9px 11px 9px 14px;
}
.sec-7-btns a.active {
    background-color: #1e3a27;
    color: white;
}

.sec-7-main a.sec-7-btn-1 {
    background-color: #fbfdf6;
    border: 1px solid #e0e5d5;
    color: #1e3a27;
    padding: 9px 11px 9px 14px;
}
.sec-7-main a.sec-7-btn-1:hover {
    background-color: #1e3a27;
    color: white;
}
.sec-7-card {
    border-radius: 12px;
    position: relative;
    z-index: 2;
}
.sec-7-card .sec-7-p2 {
    font-size: 20px;
    color: #0f0f0f;
    font-weight: 400;
}
.sec-7-card h2 {
    font-size: 48px;
    color: #0f0f0f;
    font-weight: 400;
}
.section-seven ul {
    padding: 0px 26px;
}
.section-seven ul li {
    list-style: none;
    position: relative;
    margin-bottom: 20px;
    color: #232222;
    font-size: 14px;
    font-weight: 400;
}
.section-seven ul li.cross {
    color: #788082;
}
.section-seven ul li.check::before {
    content: "";
    position: absolute;
    top: 2px;
    left: -27px;
    width: 30px;
    height: 30px;
    background: url("../assets/images/check-icon.png") no-repeat;
}
.section-seven ul li.cross::before {
    content: "";
    position: absolute;
    top: 2px;
    left: -27px;
    width: 30px;
    height: 30px;
    background: url("../assets/images/cross-icon.png") no-repeat;
}
.sec-7-card a {
    display: block;
    padding: 12px 12px;
    border-radius: 50px;
    text-align: center;
    background-color: #dadbd2;
    color: #0a1d08;
    transition: 0.3s;
    margin-top: 30px;
}
.sec-7-card a:hover {
    background-color: #1e3a27;
    color: white;
}
.sec-7-card.active {
    background-color: #a98943;
    padding: 0px;
    border-radius: 20px 20px 12px 12px;
}
.sec-7-card-inner {
    padding: 20px 40px;
    background-color: #f4f2e8;
    border-radius: 12px;
    border: 2px solid #1e3a2700;
    transition: 0.3s;
}
.sec-7-card-inner:hover {
    border: 2px solid #1e3a27;
}
.sec-7-card.active:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.sec-7-card.active a {
    background-color: #1e3a27;
    color: white;
}
.sec-7-card.active a:hover {
    background-color: #dadbd2;
    color: #0a1d08;
}
.section-seven .best-plan {
    color: white;
    border-radius: 20px;
    padding: 7px 0px 7px 0px;
    text-align: center;
    visibility: hidden;
    font-size: 14px;
}
.sec-7-card.active .best-plan {
    visibility: visible;
}
.sec-7-row-2 {
    background-color: #f4f2e899;
    border-radius: 12px;
}
.sec-7-row-2 h2 {
    font-size: 24px;
    color: #0f0f0f;
    font-weight: 400;
}

.sec-7-row-2 h3 {
    font-size: 48px;
    color: #0f0f0f;
}
.sec-7-row-2 p {
    color: #232222;
    padding: 0px 15px 0px 0px;
    max-width: 300px;
}
.sec-7-row-2-card {
    /* padding: 20px 30px; */
}
.sec-7-row-2-card a {
    display: block;
    padding: 12px 12px;
    border-radius: 50px;
    text-align: center;
    background-color: #dadbd2;
    color: #0a1d08;
    transition: 0.3s;
    transition: 0.3s;
    min-width: 180px;
}
.sec-7-row-2-card a:hover {
    background-color: #1e3a27;
    color: white;
}
.flex-end {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    height: 100%;
}
.section-eight h1 {
    color: #0f0f0f;
    font-size: 48px;
}
.s8-transform-card {
    transform: translateY(-104%);
}
/* section-4 */
.section-eight {
    /* background-color: #fcf9f2; */
    padding: 100px 0px 100px 0px;
    background-color: #fbfdf6;
}
.section-eight .sub-head {
    color: #1e3a27;
    border: 1px solid #d7dbca;
    width: fit-content;
    text-align: center;
    padding: 4px 8px;
    font-size: 14px;
    font-weight: 400;
    border-radius: 20px;
}
.sec-8-card {
    padding: 20px;
    border-radius: 5px;
    min-height: 336px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.sec-8-card p {
    font-size: 31px;
    font-weight: 400;
    line-height: 36px;
}
.sec-8-card .s8-2-p P {
    font-size: 15px;
    margin: 0px;
    line-height: 21px;
}
.sec-8-card {
}
.s8-b-1 {
    background-color: #ad977e;
    color: white;
}
.s8-b-1 p {
    max-width: 292px;
}
.s8-b-2 {
    background-color: #2b2b2b;
    color: white;
}
.s8-b-2 p {
    max-width: 274px;
}
.s8-b-3 {
    background-color: #0000000d;
}
.s8-b-3 p {
    max-width: 318px;
}

.s8-b-4 {
    background-color: #1e3a27;
    color: white;
}
.s8-b-4 p {
    max-width: 355px;
}

.s8-b-5 {
    background-color: #e3ebd7;
}
.s8-b-5 p {
    max-width: 277px;
}
.footer-content {
    background: #0a0f23;
    background: linear-gradient(
        180deg,
        rgba(10, 15, 35, 0) 11%,
        rgba(10, 15, 35, 1) 31%,
        rgba(0, 0, 0, 1) 37%
    );
    position: absolute;
    bottom: 0;
    z-index: 4;
    width: 100%;
    padding: 100px 0px;
}

.footer-content h2 {
    font-size: 14px;
    color: #fbfdf699;
    margin-bottom: 30px;
    font-weight: 400;
}
.footer-content .footer-links {
    font-size: 14px;
    margin-bottom: 4px;
    color: white;
    display: block;
    transition: 0.3s;
}
.footer-content .footer-links:hover {
    color: #f4f2e899;
}
.copyright {
    color: #fbfdf6;
    font-size: 16px;
    padding: 32px 0px;
    margin-bottom: 0px;
}
.copyright-a {
    display: block;
    width: fit-content;
    border-radius: 20px;
    background-color: white;
    color: #1e3a27;
    font-size: 16px;
    padding: 11px 9px 9px 14px;
    transition: 0.3s;
    font-weight: 400;
    text-transform: uppercase;
}
.copyright-a-2 {
    color: #0b3b31;
}
.copyright-a:hover {
    background-color: #1e3a27;
    color: white;
}

.footer-image-box {
    position: absolute;
    bottom: 0;
    width: 100%;
}
.footer-img {
    position: relative;
    text-align: center;
}
.footer-hero-img {
}
.footer-hero-image {
    border-radius: 25px;
    padding: 15px;
    background-color: #ffffff5e;
    overflow: hidden;
    width: 80%;
    margin: 0px auto;
    position: relative;
    top: -320px;
}
.footer-hero-img img {
    width: 100%;
    border-radius: 20px;
}
.footer-text {
    text-align: center;
    margin-bottom: 400px;
    transform: translateY(170%);
}
.footer-text h1 {
    color: white;
    font-size: 48px;
    max-width: 430px;
    text-align: center;
    margin: 30px auto;

    /* transform: translateY(-29%); */
}
.footer-text a {
    margin-bottom: 100px;
    cursor: pointer;
    padding: 9px 11px 9px 14px;
}
.footer-img::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../assets/images/footer-bg.png") no-repeat bottom / contain;
    z-index: 2;
    pointer-events: none;
}
.navbar-collapse {
    display: flex;
    justify-content: space-between;
    padding: 12px 48px;
}

@media (max-width: 1280px) {
    .footer-img::before {
        bottom: 120px;
    }
}
@media (max-width: 1199px) {
    .s8-transform-card {
        transform: unset !important;
    }
}
@media (max-width: 992px) {
    .footer-img::before {
        bottom: 250px;
    }
    .navbar-collapse {
        display: block;
        /* box-shadow: 0px 3px 14px 2px rgb(185 185 185); */
    }
}
@media (max-width: 576px) {
    .navbar {
        background-color: #efebdc;
        
    }
    .header-section {
        height: 120vh !important;
    }
    .second-section {
        bottom: 35px !important;
    }
    .main-banner img.main-image {
        top: 49% !important;
    }
    .slider h1 {
        margin-top: 35px;
        font-size: 36px !important;
    }
    h1 {
        font-size: 30px !important;
    }
    .footer-img::before {
        bottom: 350px;
    }
    .footer-hero-image {
        top: -420px;
    }
    .footer-text h1 {
        font-size: 26px !important;
        max-width: 220px;
    }
    .footer-text {
        margin-bottom: 500px;
    }
    .footer-items div {
        flex: 1;
    }
    .sec-2-main-row {
        max-height: unset !important;
    }
    .sec-2-main-col-1,
    .sec-2-main-col-2 {
        animation: unset !important;
    }
    .section-three {
        padding: 100px 0px 100px 0px;
    }
    .section-eight {
        padding-top: 0px;
    }
    .section-six h2 {
        font-size: 25px;
    }
    .copyright {
        padding: 15px 0px;
    }
    .copyright-a {
        margin-bottom: 30px;
    }
    .footer-content {
        padding: 175px 0px 15px 0px;
    }
    .footer-items {
        flex-wrap: wrap;
    }
    .footer-items .col-lg-3 {
        flex: 0 0 50%;
        margin-bottom: 50px;
    }
    .footer-image-box {
        bottom: 218px;
    }
    .navbar-collapse {
        padding: 12px 14px;
    }
}
.navbar {
    width: 100% !important;
    pointer-events: all !important;
    position: fixed;
    padding: 0.5rem 16px;
    z-index: 999 !important;
}

/* animations */

/* Base hidden state */
.fade-up,
.fade-down,
.fade-left,
.fade-right {
    opacity: 0;
    transition: all 1.2s ease;
    will-change: transform, opacity;
}

/* Fade Up (comes from bottom → up) */
.fade-up {
    transform: translateY(40px);
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Fade Down (comes from top → down) */
.fade-down {
    transform: translateY(-40px);
}
.fade-down.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Fade Left (comes from right → left) */
.fade-left {
    transform: translateX(40px);
}
.fade-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Fade Right (comes from left → right) */
.fade-right {
    transform: translateX(-40px);
}
.fade-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.sec-2-card {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 375px) {
    .slider .slider-btns {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        margin-top: 20px;
        flex-direction: column;
    }

    .section-two .sec-2-p {
        color: #21292ce5;
        max-width: 640px;
        font-weight: 400;
        margin-bottom: 20px;
    }

    .section-two ul li {
        list-style: none;
        border-bottom: 1px solid #d1d5da;
        padding: 12px 0px;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .sec-7-btns {
        display: flex;
        gap: 10px;
        flex-direction: column;
    }

    .flex-end {
        display: flex;
        align-items: flex-end;
        justify-content: center;
        height: 100%;
    }

    .footer-hero-image {
        border-radius: 12px;
        padding: 4px;
        background-color: #ffffff5e;
        overflow: hidden;
        width: 100%;
        margin: 0px auto;
        position: relative;
    }

    .footer-hero-img img {
        width: 100%;
        border-radius: 4px;
    }
}

@media (max-width: 1100px) {
    .sec2-row {
        display: flex;
        flex-direction: column !important;
    }

    .col {
        width: 100%;
    }

    .section-two .sec-2-p {
        color: #21292ce5;
        max-width: 640px;
        font-weight: 400;
        margin-bottom: 20px;
    }

    .sec-2-main-row:before {
        content: "";
        position: absolute;
        top: 0;
        left: -250px;
        width: 140%;
        height: 100%;
        z-index: 1;
        background: linear-gradient(
            180deg,
            rgba(251, 253, 246, 0) 75.76%,
            rgba(251, 253, 246, 0.394533) 84.23%,
            rgba(251, 253, 246, 0.5) 86.59%,
            #fbfdf6 100%
        );
        transform: rotate(90deg);
        pointer-events: none;
    }

    .sec-2-main-row:after {
        content: "";
        position: absolute;
        top: 0;
        right: -250px;
        width: 140%;
        height: 100%;
        z-index: 1;
        background: linear-gradient(
            180deg,
            rgba(251, 253, 246, 0) 75.76%,
            rgba(251, 253, 246, 0.394533) 84.23%,
            rgba(251, 253, 246, 0.5) 86.59%,
            #fbfdf6 94%
        );
        transform: rotate(-90deg);
        pointer-events: none;
    }

    .sec-7-card-inner {
        padding: 20px;
        background-color: #f4f2e8;
        border-radius: 12px;
        border: 2px solid #1e3a2700;
        transition: 0.3s;
    }
}

@media (min-width: 600px) and (max-width: 920px) {
    .footer-items {
        display: flex;
        gap: 20px;
        width: 100%;
        justify-content: space-evenly;
    }
}

@media (max-width: 425px) {
    /* .section-two ul span {
        background-color: #003631;
        color: white;
        border-radius: 20px;
        display: inline-flex;
        width: 35px;
        align-items: center;
        justify-content: center;
        height: 25px;
        text-align: center;
        font-size: 12px;
        margin-right: 10px;
    } */

    .dnone {
        display: none;
    }

    .section-three h1 {
        color: #0f0f0f;
        font-size: 32px;
        max-width: 100%;
        width: 100%;
        text-align: center;
    }

    .section-three .container .row {
        width: auto !important;
    }

    .footer-hero-image {
        border-radius: 12px;
        padding: 4px;
        background-color: #ffffff5e;
        overflow: hidden;
        width: 90%;
        margin: 0px auto;
        position: relative;
        top: -460px;
    }

    .footer-hero-img img {
        width: 100%;
        border-radius: 12px;
    }

    .second-section .hero-image {
    border-radius: 12px;
    padding: 4px;
    background-color: #ffffff5e;
    overflow: hidden;
}

.second-section .hero-image img {
    border-radius: 12px;
}
}

@media (max-width: 1000px) {
    .login-head {
        display: flex !important;
        flex-direction: column-reverse !important;
        align-items: center !important;
        gap: 10px !important;
    }
}
