html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
}

:root {
    --color-primary: #A91919;
    --color-primary-dark: #590808;
    --color-about-section-title: #CA1D1D;
    --spacing: 0.25rem;

}

::selection {
    background-color: var(--color-primary);
    color: #fff;
}
a,
a:hover{
    text-decoration: none !important;
}


.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

/* Car image and name animation styles */
.car-card-handy img[alt="slider-img"] {
    transition: opacity 0.4s ease, transform 0.4s ease;
    will-change: opacity, transform;
}

.car-card-handy .absolute.bottom-0 p {
    transition: opacity 0.4s ease, transform 0.4s ease;
    will-change: opacity, transform;
}


/* Optional: Add smooth hover effects */
.car-card-handy img[alt="slider-img"]:hover {
    transform: scale(1.05);
}

/* Fade animation for smoother transitions */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.swiper-button-next::after,
.swiper-button-prev::after {
    display: none;
}

.swiper-pagination-bullet {
    width: 30px;
    height: 4px;
    border-radius: 4px;
    background: black;
    opacity: 1;
    margin: 0 4px !important;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

/* active bullet */
.swiper-pagination-bullet-active {
    background: #fff;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.4);
}

.swiper-button-prev,
.swiper-button-next {
    width: auto !important;
    height: auto !important;
}

.swiper-container {
    overflow: visible !important;
}

.custom-checkbox {
    width: 18px;
    height: 18px;
    appearance: none;
    border: 2px solid red;
    border-radius: 4px;
    background-color: transparent;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

/* Prevent Swiper default from hiding bullet text */
.swiper-pagination-custom {
    border: 2px solid rgba(255, 255, 255, 0.2);
    width: auto;
}

.swiper-pagination-custom .swiper-pagination-bullet {
    background: transparent;
    color: #ccc !important;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-indent: 0 !important;
    font-size: 15px;
    padding: 20px 25px;
    margin: 0 !important;
    border-right: 2px solid rgba(255, 255, 255, 0.2);
}

.swiper-pagination-custom .swiper-pagination-bullet:last-child {
    border-right: none !important;
}

.swiper-pagination-custom .swiper-pagination-bullet-active {
    background-color: #B91C1C;
    color: #fff !important;
}

.custom-checkbox:checked::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 0px;
    width: 6px;
    height: 10px;
    border: solid red;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.desktop-checkbox {
    width: 18px;
    height: 18px;
    appearance: none;
    border: 2px solid red;
    border-radius: 4px;
    background-color: transparent;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

.desktop-checkbox:checked::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 0px;
    width: 6px;
    height: 10px;
    border: solid red;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

#desktopDropdownMenu li:hover {
    background-color: rgba(255, 255, 255, 0.1);
}


.thin-border {
    border: 0.5px solid white !important;
}

.sub-title {
    font-weight: 350;
    font-size: 3.3rem;
    line-height: normal;
}


.title-red {
    font-size: 50px;
    color: var(--color-about-section-title);
}

.title-white {
    font-size: 50px;
    color: #fff;
}

.book-now-btn {
    display: inline-flex;
    align-items: center;
    justify-content: end;
    gap: 2rem;
    padding: 4px 6px;
    width: 234px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(8px);
    font-size: 1.5rem;
    transition: all ease 0.3s;

    &:hover {
        background: linear-gradient(to right, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.02));
        color: var(--color-primary);

        .arrow-default {
            display: none;
        }

        .arrow-hover {
            display: block;
        }
    }
}

.book-now-btn-service {
    display: inline-flex;
    align-items: center;
    justify-content: end;
    gap: 2rem;
    padding: 4px 6px;
    width: 234px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(8px);
    font-size: 1.5rem;
    transition: all ease 0.3s;

    &:hover {
        background: linear-gradient(to right, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.02));
        color: var(--color-primary);

        .arrow-default {
            display: none;
        }

        .arrow-hover {
            display: block;
        }
    }
}

.book-now-btn-overview {
    display: inline-flex;
    align-items: center;
    justify-content: end;
    gap: 2rem;
    padding: 4px 6px;
    width: 234px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(8px);
    font-size: 1.5rem;
    transition: all ease 0.3s;

    &:hover {
        background: linear-gradient(to right, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.02));
        color: var(--color-primary);

        .arrow-default {
            display: none;
        }

        .arrow-hover {
            display: block;
        }
    }
}

.book-now-btn-service-sub {
    display: none;
}

.whatsapp-blink {
    display: inline-block;
    animation: fadeUpBlink 1.8s ease-in-out infinite;
    -webkit-animation: fadeUpBlink 1.8s ease-in-out infinite;
    will-change: transform, opacity;
}

/* Standard keyframes */
@keyframes fadeUpBlink {
    0% {
        opacity: 0.3;
        transform: translateY(5px);
    }

    50% {
        opacity: 1;
        transform: translateY(-5px);
    }

    100% {
        opacity: 0.3;
        transform: translateY(5px);
    }
}

/* Safari-prefixed keyframes */
@-webkit-keyframes fadeUpBlink {
    0% {
        opacity: 0.3;
        transform: translateY(5px);
    }

    50% {
        opacity: 1;
        transform: translateY(-5px);
    }

    100% {
        opacity: 0.3;
        transform: translateY(5px);
    }
}

.slider-book-now-btn {
    display: inline-flex;
    align-items: center;
    justify-content: end;
    gap: 1rem;
    padding: 4px;
    width: 150px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    color: #fff;
    background: var(--color-primary);
    /* background: linear-gradient(to right, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.03)); */
    /* backdrop-filter: blur(8px); */
    font-size: 0.97rem;
    transition: all ease 0.3s;
}

header {
    .logo-img {
        width: 90px;
    }
}

.our-fleets {
    .slider-container {
        .slider-card {
            border: 1px solid rgba(255, 255, 255, 0.6) !important;
            transition: all ease 0.4s;
            height: 300px;

            &:hover {
                background: var(--color-primary);
                box-shadow:
                    0 0 10px var(--color-primary),
                    0 0 20px var(--color-primary),
                    0 0 40px var(--color-primary),
                    0 0 56px var(--color-primary);
            }
        }
    }
}

.our-services {
    .swiper {
        .book-now {
            transition: all ease 0.3s;

            &:hover {
                .arrow-default {
                    display: none;
                }

                .arrow-hover {
                    display: block;
                }
            }
        }
    }
}

.our-benefits {
    .know-more {

        span,
        img {
            transition: all ease 0.3s;
        }

        &:hover {
            span {
                font-weight: 300;
            }

            .arrow-default {
                display: none;
            }

            .arrow-hover {
                display: block;
            }
        }
    }
}

.our-offers {
    .swiper {
        .offer-rate {
            border: 1px solid rgba(255, 255, 255, 0.5);
        }
    }
}


.pricing {
    .pricing-card {
        max-width: 400px;
        height: auto;
        background: linear-gradient(to top,
                rgba(0, 0, 0, 0.4),
                rgba(67, 4, 8, 0.9));
        backdrop-filter: blur(2px);
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.6);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 1rem;
        transition: all ease 0.4s;

        .top-section {
            padding-top: 26px;
            padding-left: 38px;
            padding-right: 38px
        }

        .bottom-section {
            padding-bottom: 26px;
            padding-left: 20px;
            padding-right: 20px;
        }

        &:hover {
            background:
                linear-gradient(184.31deg, rgba(65, 12, 14, 0.94) -75.06%, rgba(110, 20, 24, 0.966538) -13.22%, rgba(131, 8, 14, 0.977789) 11.19%, rgba(156, 0, 8, 0.985) 38.73%, rgba(188, 0, 10, 0.991923) 65.98%, #FF212D 97.43%),
                url('/wp-content/themes/patriot-limo/assets/images/test-bg.png');
            background-size: cover;
            box-shadow:
                0 0 10px var(--color-primary),
                0 0 20px var(--color-primary),
                0 0 40px var(--color-primary),
                0 0 56px var(--color-primary);

        }
    }
}


/* About page styles */
.about-us-title-div {
    border-right: 5px solid var(--color-primary);
}

.our-story {

    .our-story-card,
    .image-wrapper {
        width: 33%;
        height: 515px;
        border-radius: 20px;
    }

    .our-story-man {
        height: 515px;
    }

    .our-story-card {
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 16px;
        padding: 20px;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        transition: all ease 0.4s;

        &:hover {
            background: var(--color-primary);
            box-shadow:
                0 0 10px var(--color-primary),
                0 0 20px var(--color-primary),
                0 0 40px var(--color-primary),
                0 0 56px var(--color-primary);
        }
    }
}

.our-vision-card-img:hover {
    transition: all ease 0.3s;
    background: var(--color-primary);
    box-shadow:
        -10px 0 10px var(--color-primary),
        -20px 0 20px var(--color-primary),
        -20px 0 20px var(--color-primary),
        -26px 0 56px var(--color-primary);
}

.our-vision {
    .our-vision-card-img {
        transition: all ease 0.3s;

        &:hover {
            background: var(--color-primary);
            box-shadow:
                -8px 0 10px var(--color-primary),
                -10px 0 20px var(--color-primary),
                -10px 0 20px var(--color-primary),
                -20px 0 56px var(--color-primary);
        }
    }

    .our-vision-card {
        transition: all ease 0.3s;

        /* &:hover {
            background: black;

        } */
    }
}



/* career page styles */
.career-card {
    background: linear-gradient(#272727, #272727) padding-box,
        linear-gradient(to top right, #6e6e6e, #1a1a1a) border-box;
    border: 2px solid transparent;
}

/* service sub styles */

footer {
    .logo {
        width: 170px;
    }
}

 
/* responsive styles */
@media screen and (min-width: 2200px) {
    section {
        .content {
            max-width: 1800px;
            margin: 0 auto;
        }
    }

    .footerContent {
        max-width: 1800px;
        margin: 0 auto;
    }


    .header-content {
        max-width: 1800px;
        margin: 0 auto;
    }
}


@media screen and (min-width: 767px) and (max-width: 769px) {
    .ourFleetNav {
        top: 220px !important;
    }
}

@media screen and (min-height: 1023px) and (max-height: 1375px) {
    /*section {*/
    /*    min-height: 60vh;*/
    /*}*/

    .ourFleetNav {
        margin-top: 40px;
    }

    .footer {
        padding-bottom: 20px;
    }
}

@media screen and (max-width: 1500px) {
    .curve-line {
        display: none;
    }
}
@media screen and (min-width: 1024px) and (min-height: 1365px) {
    .our-offers {
        min-height: 44vh !important;

        .ourOffersNav {
            margin-top: 1px !important;
        }
    }

    /* .calltoAction {
        margin-bottom: -34px;
    } */

    .ourFleetNav {
        top: 135px;
    }

}

@media screen and (min-height: 720px) and (max-height: 780px) {
    /* .calltoAction {
        margin-bottom: 50px !important;
    } */
}


@media screen and (max-width: 1468px) {
    .sub-title {
        font-weight: 350;
        font-size: 2.9rem;
        line-height: normal;
    }
}

@media screen and (max-width: 1155px) {
    .title-red {
        font-size: 40px;
        color: var(--color-about-section-title);
    }

    .title-white {
        font-size: 40px;
        color: #fff;
    }

    .sub-title {
        font-weight: 350;
        font-size: 2.7rem;
        line-height: normal;
    }

    header {
        .nav-items {
            .nav-item {
                font-size: 0.87rem !important;
            }
        }

        .header-button {
            padding: 8px 10px !important;
            font-size: 0.9rem !important;
        }
    }

    .our-story {

        .our-story-card,
        .our-story-man {
            width: 400px;
            height: 500px;
            border-radius: 20px;
            object-fit: cover;

            h2 {
                font-size: 1.7rem !important;
                ;
            }

            p {
                font-size: 1.2rem !important;
                line-height: 1.5 !important;
            }

            img {
                width: 50px;
            }
        }
    }
}

@media screen and (min-width: 1278px) and (max-width: 1420px) {
    .our-story {

        .our-story-card,
        .our-story-man {
            width: 440px;
            height: 600px;
            border-radius: 20px;
        }

        .our-story-man {
            object-fit: cover;
        }
    }
}

@media screen and (min-width: 1154px) and (max-width: 1278px) {
    .our-story {

        .our-story-card,
        .our-story-man {
            width: 440px;
            height: 670px;
            border-radius: 20px;
        }

        .our-story-man {
            object-fit: cover;
        }
    }
}


@media screen and (min-width: 767px) and (max-width: 967px) {
    .our-story {

        .our-story-card,
        .our-story-man {
            width: 440px;
            height: 440px !important;
            border-radius: 20px;
        }

        .our-story-man {
            object-fit: cover;
        }
    }
}




@media screen and (max-width: 820px) and (max-height: 1180px) {
    /* .calltoAction {
        margin-bottom: -34px;
    } */
}

/* ipad mini */
@media screen and (max-width: 768px) and (min-height: 1024px) {
    .our-benefits {
        min-height: 70vh !important;
    }
}

@media screen and (max-width: 1040px) {
    .title-red {
        font-size: 40px;
        color: var(--color-about-section-title);
    }

    .title-white {
        font-size: 40px;
        color: #fff;
    }

    .our-story {

        .our-story-card,
        .our-story-man {
            width: 380px;
            height: 470px;
            border-radius: 20px;
            object-fit: cover;

            h2 {
                font-size: 1.5rem !important;
                ;
            }

            p {
                font-size: 1.1rem !important;
                line-height: 1.5 !important;
            }

            img {
                width: 50px;
            }
        }
    }
}

@media screen and (max-width: 1025px) {
    .title-red {
        font-size: 36px;
        color: var(--color-about-section-title);
    }

    .title-white {
        font-size: 36px;
        color: #fff;
    }

    .sub-title {
        font-weight: 350;
        font-size: 2.8rem;
        line-height: normal;

        span {
            margin: 0 !important;
        }
    }

    .pricing {
        .pricing-card {
            flex: 1 1 45%;
            max-width: 45%;
            height: auto;
            background: linear-gradient(to top,
                    rgba(0, 0, 0, 0.4),
                    rgba(67, 4, 8, 0.9));
            backdrop-filter: blur(2px);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.6);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 1rem;

            .top-section {
                padding-top: 26px;
                padding-left: 38px;
                padding-right: 38px
            }

            .bottom-section {
                padding-bottom: 26px;
                padding-left: 20px;
                padding-right: 20px;
            }

            &:hover {
                background: linear-gradient(to top,
                        rgba(0, 0, 0, 0.4),
                        rgba(67, 4, 8, 0.9));

            }
        }
    }

    .our-story {

        .our-story-card,
        .our-story-man {
            width: 360px;
            height: 400px;
            border-radius: 20px;
            object-fit: cover;

            h2 {
                font-size: 1.4rem !important;
            }

            p {
                font-size: 1rem !important;
                line-height: 1.3 !important;
            }

            img {
                width: 50px;
            }
        }
    }

    .ourMissionCardIcon {
        margin-left: -10px !important;
    }

    footer {
        .footer-bottom-img {
            height: 90px;
        }
    }
}

@media screen and ((min-width: 1024px) and (max-width: 1200px)) {
    .myOffersContent {
        .top-content {
            p {
                font-size: 12px;
            }
        }

        .bottom-content {
            h3 {
                font-size: 16px;
            }


        }
    }
}

@media screen and ((min-width: 1000px) and (max-width: 1024px)) {
    .ourMissionCardIcon {
        margin-left: -10px !important;
    }
}

@media screen and ((min-width: 912px) and (max-width: 1000px)) {
    .ourMissionCardIcon {
        margin-left: 20px !important;
    }
}

@media screen and ((min-width: 817px) and (max-width: 912px)) {
    .ourMissionCardIcon {
        margin-left: 8px !important;
    }
}

@media screen and ((min-width: 769px) and (max-width: 817px)) {
    .ourMissionCardIcon {
        margin-left: -5px !important;
    }
}

@media screen and (max-width: 760px) {
    .book-now-btn-overview {
        display: none;
    }
}

@media screen and ((min-width: 500px) and (max-width: 768px)) {
    .ourMissionCardIcon {
        margin-left: -6px !important;
    }
}

@media screen and ((min-width: 376px) and (max-width: 500px)) {
    .ourMissionCardIcon {
        margin-left: 10px !important;
    }
}

@media screen and ((min-width: 330px) and (max-width: 376px)) {
    .ourMissionCardIcon {
        margin-left: 5px !important;
    }
}

@media screen and ((min-width: 319px) and (max-width: 330px)) {
    .ourMissionCardIcon {
        margin-left: -1px !important;
    }
}

/* @media screen and ((min-width: 767px) and (max-width: 1000px)) {
    .calltoAction {
        margin-bottom: 440px !important;
        margin-right: 10px !important;
    }
} */

@media screen and (max-width: 991px) {
    .title-red {
        font-size: 32px;
        color: var(--color-about-section-title);
    }

    .title-white {
        font-size: 32px;
        color: #fff;
    }

    .sub-title {
        font-weight: 350;
        font-size: 2.7rem;
        line-height: normal;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 40px !important;
        height: 40px !important;
    }
}

@media screen and (min-width: 767px) and (max-width: 940px) {
    .why-choose-us {
        min-height: 40vh !important;
    }

    #mobile-menu .menu-item a {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 820px) and (max-height: 1180px) {
    .our-story {
        .our-story-card {
            h2 {
                font-size: 1.1rem !important;
            }

            p {
                line-height: 1.2 !important;
            }
        }
    }
}


@media screen and (min-width: 600px) and (max-width: 769px) {
    .ourFleetNav {
        top: 170px;
    }
}


@media screen and (min-width: 360px) and (max-width: 600px) {
    .ourFleetNav {
        top: 300px;
    }
}

@media screen and (min-width: 769px) and (max-width: 811px) {
    .our-story {

        .our-story-card {
            width: 50%;
            height: 430px;
            border-radius: 20px;
            object-fit: cover;

            h2 {
                font-size: 1.1rem !important;
                margin-left: -10px;
            }

            p {
                font-size: 1rem !important;
                line-height: 1.325 !important;
            }

            img {
                width: 36px;
            }
        }

        .our-story-man {
            object-fit: cover;
            width: 100%;
        }

    }
}

@media screen and (max-width: 768px) {
    .title-red {
        font-size: 32px;
        color: var(--color-about-section-title);
    }

    .title-white {
        font-size: 32px;
        color: #fff;
    }

    .sub-title {
        font-weight: 350;
        font-size: 2rem;
        line-height: 1.1;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 38px !important;
        height: 38px !important;
    }


    .book-now-btn-service {
        display: inline-flex;
        align-items: center;
        justify-content: end;
        gap: 2rem;
        padding: 4px 5px;
        width: 230px;
        border: 1px solid rgba(255, 255, 255, 0.4);
        border-radius: 8px;
        color: #fff;
        background: linear-gradient(to right, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.03));
        backdrop-filter: blur(8px);
        font-size: 1.5rem;
        transition: all ease 0.3s;

        &:hover {
            background: linear-gradient(to right, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.02));
            color: var(--color-primary);

            .arrow-default {
                display: none;
            }

            .arrow-hover {
                display: block;
            }
        }
    }

    .book-now-btn-service-sub {
        display: inline-flex;
        align-items: center;
        justify-content: end;
        gap: 1rem;
        padding: 3px 2px;
        width: 180px;
        border: 1px solid rgba(255, 255, 255, 0.4);
        border-radius: 8px;
        color: #fff;
        background: linear-gradient(to right, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.03));
        backdrop-filter: blur(8px);
        font-size: 1.1rem;
        transition: all ease 0.3s;

        &:hover {
            background: linear-gradient(to right, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.02));
            color: var(--color-primary);

            .arrow-default {
                display: none;
            }

            .arrow-hover {
                display: block;
            }
        }
    }

    .our-fleets {
        .slider-container {
            .slider-card {
                border: 1px solid rgba(255, 255, 255, 0.6) !important;
                transition: all ease 0.4s;

                &:hover {
                    background: rgba(255, 255, 255, 0.2);
                    box-shadow: none;
                }
            }
        }

    }

    .pricing {
        .pricing-card {
            &:hover {
                background: linear-gradient(to top,
                        rgba(0, 0, 0, 0.4),
                        rgba(67, 4, 8, 0.9));

            }
        }
    }

    .our-story {

        .our-story-card,
        .our-story-man {
            width: 300px;
            height: 400px;
            border-radius: 20px;
            object-fit: cover;

            &:hover {
                box-shadow: none;
            }

            h2 {
                font-size: 1.1rem !important;
            }

            p {
                font-size: 0.97rem !important;
                line-height: 1.3 !important;
            }

            img {
                width: 28px;
            }
        }

        .our-story-card {
            &:hover {
                background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.4), rgba(67, 4, 8, 0.9));
            }
        }
    }

    .our-vision {
        .our-vision-card-img {
            transition: all ease 0.3s;

            &:hover {
                background: none;
                box-shadow: none;
            }
        }

        .our-vision-card {
            transition: all ease 0.3s;

            /* &:hover {
            background: black;

        } */
        }
    }

}

/*@media screen and (max-width: 760px) {*/
/*    .book-now-btn {*/
/*        display: none;*/
/*    }*/
/*}*/

@media screen and ((min-width: 450px) and (max-width: 767px)) {
    .pricing {
        .pricing-card {
            max-width: 900px;
        }
    }
}

@media screen and (max-width: 450px) {
    .title-red {
        font-size: 30px;
        color: var(--color-about-section-title);
    }

    .title-white {
        font-size: 30px;
        color: #fff;
        line-height: 1.2;
    }

    .pricing {
        .pricing-card {
            max-width: 400px;
            height: auto;
            background: linear-gradient(to top,
                    rgba(0, 0, 0, 0.4),
                    rgba(67, 4, 8, 0.9));
            backdrop-filter: blur(2px);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.6);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 1rem;

            .top-section {
                padding-top: 26px;
                padding-left: 38px;
                padding-right: 38px
            }

            .bottom-section {
                padding-bottom: 26px;
                padding-left: 20px;
                padding-right: 20px;
            }

            &:hover {
                background: linear-gradient(to top,
                        rgba(0, 0, 0, 0.4),
                        rgba(67, 4, 8, 0.9));

            }
        }
    }


    .sub-title {
        font-weight: 350;
        font-size: 1.7rem;
    }

    .our-story {

        .our-story-card,
        .our-story-man {
            width: 100%;
            height: auto;
            border-radius: 20px;
            object-fit: cover;

            h2 {
                font-size: 1.7rem !important;
            }

            p {
                font-size: 1.12rem !important;
                line-height: 1.45 !important;
            }

            img {
                width: 36px;
            }
        }
    }

}

@media screen and (max-width: 400px) {
    .title-red {
        font-size: 28px;
        color: var(--color-about-section-title);
    }

    .title-white {
        font-size: 28px;
        color: #fff;
        line-height: 1.2;
    }

    .sub-title {
        font-weight: 350;
        font-size: 1.7rem;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 36px !important;
        height: 36px !important;
    }



}



@media screen and (max-width: 350px) {
    .our-story {

        .our-story-card,
        .our-story-man {
            width: 100%;
            height: auto;
            border-radius: 20px;
            object-fit: cover;

            h2 {
                font-size: 1.4rem !important;
            }

            p {
                font-size: 1.12rem !important;
                line-height: 1.3 !important;
            }

            img {
                width: 36px;
            }
        }
    }

}

.our-mission-card-container {
    /* background-color: red; */
    /* width: fit-content; */
    width: 400px;
    height: 150px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;

    .top-div {
        /* background-color: green; */
        height: 42%;
        width: 85.2%;
        margin-left: auto;
        border-top-left-radius: 20px;
        border-top: 1.5px solid rgba(255, 255, 255, 0.5);

        h3 {
            color: #fff;
            font-size: 1.5rem;
            padding-left: 10px;
            font-weight: 400;
            margin-top: 14px;
        }
    }

    .bottom-div {
        height: 58%;
        width: 100%;
        /* background-color: blue; */
        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px;
        border-bottom: 1.5px solid rgba(255, 255, 255, 0.5);
        border-left: 1.5px solid rgba(255, 255, 255, 0.5);

        p {
            color: #fff;
            padding: 10px;
            font-size: 0.8rem;
            margin-top: 0;
            font-weight: lighter;
        }
    }

}

.our-mission-card-container::after {
    content: "";
    position: absolute;
    width: 2.8rem;
    height: 3.1rem;
    /* background-color: red; */
    top: 0.9rem;
    left: 1rem;
    border-bottom-right-radius: 12px;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.2);
    border-right: 0.5px solid rgba(255, 255, 255, 0.2);
}

.our-mission-card-container {
    .icon {
        position: absolute;
        top: 3px;
        left: 3px;
        width: 50px;
        height: 50px;
        padding: 1px;
        border-radius: 12px;

        img {
            width: 100%;
            height: 100%;
        }
    }
}

.our-mission-card-container:hover {
    .top-div {
        background: rgba(255, 255, 255, 0.1);
    }

    .bottom-div {
        background: rgba(255, 255, 255, 0.1);
    }
}

@media screen and (max-width: 1024px) {
    .our-mission-card-container::after {
        content: "";
        position: absolute;
        width: 2.8rem;
        height: 3.1rem;
        /* background-color: red; */
        top: 0.9rem;
        left: 1rem;
        border-bottom-right-radius: 12px;
        border-bottom: 0.5px solid rgba(255, 255, 255, 0.35);
        border-right: 0.5px solid rgba(255, 255, 255, 0.35);
    }

    .our-mission-card-container {
        .icon {
            position: absolute;
            top: 3px;
            left: 14px;
            width: 50px;
            height: 50px;
            padding: 1px;
            border-radius: 12px;

            img {
                width: 100%;
                height: 100%;
            }
        }
    }

    .our-mission-card-container:hover {
        .top-div {
            background: transparent;
        }

        .bottom-div {
            background: transparent;
        }
    }
}

@media screen and (max-width:1000px) and (min-width:930px) {
    .our-mission-card-container {
        /* background-color: red; */
        /* width: fit-content; */
        width: 100%;
        height: 150px;
        border-radius: 20px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        border-right: 1px solid rgba(255, 255, 255, 0.5);
        position: relative;

        .top-div {
            /* background-color: green; */
            height: 42%;
            width: 91.5%;
            margin-left: auto;
            border-top-left-radius: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.5);

            h3 {
                color: #fff;
                font-size: 1.5rem;
                padding-left: 10px;
                font-weight: 400;
                margin-top: 14px;
            }
        }

        .bottom-div {
            height: 58%;
            width: 100%;
            /* background-color: blue; */
            border-top-left-radius: 20px;
            border-bottom-left-radius: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.5);
            border-left: 1px solid rgba(255, 255, 255, 0.5);

            p {
                color: #fff;
                padding: 10px;
                font-size: 0.8rem;
                margin-top: 0;
                font-weight: lighter;
            }
        }

    }

    .our-mission-card-container::after {
        content: "";
        position: absolute;
        width: 3.7rem;
        height: 3.1rem;
        /* background-color: red; */
        top: 1rem;
        left: 0.8rem;
        border-bottom-right-radius: 14px;
        border-bottom: 1.6px solid rgba(255, 255, 255, 0.5);
        border-right: 1px solid rgba(255, 255, 255, 0.5);
    }

    .our-mission-card-container {
        .icon {
            position: absolute;
            top: 10px;
            left: -12px;
            width: 48px;
            height: 48px;
            padding: 1px;
            border-radius: 12px;

            img {
                width: 100%;
                height: 100%;
            }
        }
    }
}

@media screen and (max-width:930px) and (min-width:917px) {
    .our-mission-card-container {
        /* background-color: red; */
        /* width: fit-content; */
        width: 100%;
        height: 150px;
        border-radius: 20px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        border-right: 1px solid rgba(255, 255, 255, 0.5);
        position: relative;

        .top-div {
            /* background-color: green; */
            height: 42%;
            width: 91.5%;
            margin-left: auto;
            border-top-left-radius: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.5);

            h3 {
                color: #fff;
                font-size: 1.5rem;
                padding-left: 10px;
                font-weight: 400;
                margin-top: 14px;
            }
        }

        .bottom-div {
            height: 58%;
            width: 100%;
            /* background-color: blue; */
            border-top-left-radius: 20px;
            border-bottom-left-radius: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.5);
            border-left: 1px solid rgba(255, 255, 255, 0.5);

            p {
                color: #fff;
                padding: 10px;
                font-size: 0.8rem;
                margin-top: 0;
                font-weight: lighter;
            }
        }

    }

    .our-mission-card-container::after {
        content: "";
        position: absolute;
        width: 3.7rem;
        height: 3.1rem;
        /* background-color: red; */
        top: 1rem;
        left: 0.8rem;
        border-bottom-right-radius: 14px;
        border-bottom: 1.6px solid rgba(255, 255, 255, 0.5);
        border-right: 1px solid rgba(255, 255, 255, 0.5);
    }

    .our-mission-card-container {
        .icon {
            position: absolute;
            top: 10px;
            left: -1px;
            width: 48px;
            height: 48px;
            padding: 1px;
            border-radius: 12px;

            img {
                width: 100%;
                height: 100%;
            }
        }
    }
}


@media screen and (max-width:916px) and (min-width:900px) {
    .our-mission-card-container {
        /* background-color: red; */
        /* width: fit-content; */
        width: 100%;
        height: 150px;
        border-radius: 20px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        border-right: 1px solid rgba(255, 255, 255, 0.5);
        position: relative;

        .top-div {
            /* background-color: green; */
            height: 42%;
            width: 91.5%;
            margin-left: auto;
            border-top-left-radius: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.5);

            h3 {
                color: #fff;
                font-size: 1.5rem;
                padding-left: 10px;
                font-weight: 400;
                margin-top: 14px;
            }
        }

        .bottom-div {
            height: 58%;
            width: 100%;
            /* background-color: blue; */
            border-top-left-radius: 20px;
            border-bottom-left-radius: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.5);
            border-left: 1px solid rgba(255, 255, 255, 0.5);

            p {
                color: #fff;
                padding: 10px;
                font-size: 0.8rem;
                margin-top: 0;
                font-weight: lighter;
            }
        }

    }

    .our-mission-card-container::after {
        content: "";
        position: absolute;
        width: 3.57rem;
        height: 3.1rem;
        /* background-color: red; */
        top: 1rem;
        left: 0.8rem;
        border-bottom-right-radius: 14px;
        border-bottom: 0.3px solid rgba(255, 255, 255, 0.35);
        border-right: 0.3px solid rgba(255, 255, 255, 0.35);
    }

    .our-mission-card-container {
        .icon {
            position: absolute;
            top: 10px;
            left: 10px;
            width: 48px;
            height: 48px;
            padding: 1px;
            border-radius: 12px;

            img {
                width: 100%;
                height: 100%;
            }
        }
    }
}

@media screen and (max-width:900px) and (min-width:840px) {
    .our-mission-card-container {
        /* background-color: red; */
        /* width: fit-content; */
        width: 100%;
        height: 150px;
        border-radius: 20px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        border-right: 1px solid rgba(255, 255, 255, 0.5);
        position: relative;

        .top-div {
            /* background-color: green; */
            height: 42%;
            width: 91.5%;
            margin-left: auto;
            border-top-left-radius: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.5);

            h3 {
                color: #fff;
                font-size: 1.5rem;
                padding-left: 10px;
                font-weight: 400;
                margin-top: 14px;
            }
        }

        .bottom-div {
            height: 58%;
            width: 100%;
            /* background-color: blue; */
            border-top-left-radius: 20px;
            border-bottom-left-radius: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.5);
            border-left: 1px solid rgba(255, 255, 255, 0.5);

            p {
                color: #fff;
                padding: 10px;
                font-size: 0.8rem;
                margin-top: 0;
                font-weight: lighter;
            }
        }

    }

    .our-mission-card-container::after {
        content: "";
        position: absolute;
        width: 3.57rem;
        height: 3.1rem;
        /* background-color: red; */
        top: 1rem;
        left: 0.8rem;
        border-bottom-right-radius: 14px;
        border-bottom: 0.3px solid rgba(255, 255, 255, 0.35);
        border-right: 0.3px solid rgba(255, 255, 255, 0.35);
    }

    .our-mission-card-container {
        .icon {
            position: absolute;
            top: 10px;
            left: 10px;
            width: 48px;
            height: 48px;
            padding: 1px;
            border-radius: 12px;

            img {
                width: 100%;
                height: 100%;
            }
        }
    }
}

@media screen and (max-width:840px) and (min-width:810px) {
    .our-mission-card-container {
        /* background-color: red; */
        /* width: fit-content; */
        width: 100%;
        height: 150px;
        border-radius: 20px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        border-right: 1px solid rgba(255, 255, 255, 0.5);
        position: relative;

        .top-div {
            /* background-color: green; */
            height: 42%;
            width: 91.5%;
            margin-left: auto;
            border-top-left-radius: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.5);

            h3 {
                color: #fff;
                font-size: 1.5rem;
                padding-left: 10px;
                font-weight: 400;
                margin-top: 14px;
            }
        }

        .bottom-div {
            height: 58%;
            width: 100%;
            /* background-color: blue; */
            border-top-left-radius: 20px;
            border-bottom-left-radius: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.5);
            border-left: 1px solid rgba(255, 255, 255, 0.5);

            p {
                color: #fff;
                padding: 10px;
                font-size: 0.8rem;
                margin-top: 0;
                font-weight: lighter;
            }
        }

    }

    .our-mission-card-container::after {
        content: "";
        position: absolute;
        width: 3.3rem;
        height: 3.1rem;
        /* background-color: red; */
        top: 1rem;
        left: 0.8rem;
        border-bottom-right-radius: 14px;
        border-bottom: 0.3px solid rgba(255, 255, 255, 0.35);
        border-right: 0.3px solid rgba(255, 255, 255, 0.35);
    }

    .our-mission-card-container {
        .icon {
            position: absolute;
            top: 10px;
            left: 2px;
            width: 48px;
            height: 48px;
            padding: 1px;
            border-radius: 12px;

            img {
                width: 100%;
                height: 100%;
            }
        }
    }
}

@media screen and (max-width:810px) and (min-width:768px) {
    .our-mission-card-container {
        /* background-color: red; */
        /* width: fit-content; */
        width: 100%;
        height: 150px;
        border-radius: 20px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        border-right: 1px solid rgba(255, 255, 255, 0.5);
        position: relative;

        .top-div {
            /* background-color: green; */
            height: 42%;
            width: 91.5%;
            margin-left: auto;
            border-top-left-radius: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.5);

            h3 {
                color: #fff;
                font-size: 1.5rem;
                padding-left: 10px;
                font-weight: 400;
                margin-top: 14px;
            }
        }

        .bottom-div {
            height: 58%;
            width: 100%;
            /* background-color: blue; */
            border-top-left-radius: 20px;
            border-bottom-left-radius: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.5);
            border-left: 1px solid rgba(255, 255, 255, 0.5);

            p {
                color: #fff;
                padding: 10px;
                font-size: 0.8rem;
                margin-top: 0;
                font-weight: lighter;
            }
        }

    }

    .our-mission-card-container::after {
        content: "";
        position: absolute;
        width: 3rem;
        height: 3.1rem;
        /* background-color: red; */
        top: 1rem;
        left: 0.75rem;
        border-bottom-right-radius: 14px;
        border-bottom: 0.3px solid rgba(255, 255, 255, 0.35);
        border-right: 0.3px solid rgba(255, 255, 255, 0.35);
    }

    .our-mission-card-container {
        .icon {
            position: absolute;
            top: 10px;
            left: 16px;
            width: 44px;
            height: 44px;
            padding: 1px;
            border-radius: 12px;

            img {
                width: 100%;
                height: 100%;
            }
        }
    }
}

@media screen and (max-width: 450px) and (min-width: 420px) {
    .our-mission-card-container {
        /* background-color: red; */
        /* width: fit-content; */
        width: 100%;
        height: 150px;
        border-radius: 20px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        border-right: 1px solid rgba(255, 255, 255, 0.5);
        position: relative;

        .top-div {
            /* background-color: green; */
            height: 42%;
            width: 84.5%;
            margin-left: auto;
            border-top-left-radius: 20px;
            border-top: 2px solid rgba(255, 255, 255, 0.5);

            h3 {
                color: #fff;
                font-size: 1.5rem;
                padding-left: 10px;
                font-weight: 400;
                margin-top: 14px;
            }
        }

        .bottom-div {
            height: 58%;
            width: 100%;
            /* background-color: blue; */
            border-top-left-radius: 20px;
            border-bottom-left-radius: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.5);
            border-left: 1px solid rgba(255, 255, 255, 0.5);

            p {
                color: #fff;
                padding: 10px;
                font-size: 0.8rem;
                margin-top: 0;
                font-weight: lighter;
            }
        }

    }

    .our-mission-card-container::after {
        content: "";
        position: absolute;
        width: 3rem;
        height: 3.2rem;
        /* background-color: red; */
        top: 0.8rem;
        left: 0.8rem;
        border-bottom-right-radius: 14px;
        border-bottom: 0.3px solid rgba(255, 255, 255, 0.38);
        border-right: 0.3px solid rgba(255, 255, 255, 0.38);
    }

    .our-mission-card-container {
        .icon {
            position: absolute;
            top: 3px;
            left: -4px;
            width: 50px;
            height: 50px;
            padding: 1px;
            border-radius: 12px;

            img {
                width: 100%;
                height: 100%;
            }
        }
    }
}

@media screen and (max-width: 420px) and (min-width: 400px) {
    .our-mission-card-container {
        /* background-color: red; */
        /* width: fit-content; */
        width: 90%;
        height: fit-content;
        border-radius: 20px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        border-right: 1px solid rgba(255, 255, 255, 0.5);
        position: relative;

        .top-div {
            /* background-color: green;  */
            height: 42%;
            width: 82.6%;
            margin-left: auto;
            border-top-left-radius: 15px;
            border-top: 1px solid rgba(255, 255, 255, 0.5);

            h3 {
                color: #fff;
                font-size: 1.2rem;
                padding-left: 10px;
                font-weight: 400;
                margin-top: 14px;
            }
        }

        .bottom-div {
            height: 58%;
            width: 100%;
            /* background-color: blue; */
            border-top-left-radius: 20px;
            border-bottom-left-radius: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.5);
            border-left: 1px solid rgba(255, 255, 255, 0.5);

            p {
                color: #fff;
                padding: 6px 3px;
                font-size: 0.8rem;
                margin-top: 0;
                font-weight: lighter;
            }
        }

    }

    .our-mission-card-container::after {
        content: "";
        position: absolute;
        width: 2.938rem;
        height: 1.6rem;
        /* background-color: red; */
        top: 0.9rem;
        left: 0.7rem;
        border-bottom-right-radius: 14px;
        border-bottom: 1.6px solid rgba(255, 255, 255, 0.1);
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    .our-mission-card-container {
        .icon {
            position: absolute;
            top: -4px;
            left: 11px;
            width: 32px;
            height: 50px;
            padding: 1px;
            border-radius: 12px;

            img {
                width: 100%;
                height: 100%;
            }
        }
    }
}

@media screen and (max-width: 400px) and (min-width: 375px) {
    .our-mission-card-container {
        /* background-color: red; */
        /* width: fit-content; */
        width: 100%;
        height: fit-content;
        border-radius: 20px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        border-right: 1px solid rgba(255, 255, 255, 0.5);
        position: relative;

        .top-div {
            /* background-color: green; */
            height: 42%;
            width: 84.5%;
            margin-left: auto;
            border-top-left-radius: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.5);

            h3 {
                color: #fff;
                font-size: 1.2rem;
                padding-left: 10px;
                font-weight: 400;
                margin-top: 14px;
            }
        }

        .bottom-div {
            height: 58%;
            width: 100%;
            /* background-color: blue; */
            border-top-left-radius: 18px;
            border-bottom-left-radius: 18px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.5);
            border-left: 1px solid rgba(255, 255, 255, 0.5);

            p {
                color: #fff;
                padding: 6px 3px;
                font-size: 0.8rem;
                margin-top: 0;
                font-weight: lighter;
            }
        }

    }

    .our-mission-card-container::after {
        content: "";
        position: absolute;
        width: 2.4rem;
        height: 1.4rem;
        /* background-color: red; */
        top: 1rem;
        left: 1.02rem;
        border-bottom-right-radius: 14px;
        border-bottom: 0.3px solid rgba(255, 255, 255, 0.1);
        border-right: 0.3px solid rgba(255, 255, 255, 0.1);
    }

    .our-mission-card-container {
        .icon {
            position: absolute;
            top: 2px;
            left: 5px;
            width: 40px;
            height: 34px;
            padding: 1px;
            border-radius: 12px;

            img {
                width: 100%;
                height: 100%;
            }
        }
    }
}

@media screen and (max-width: 375px) and (min-width: 365px) {
    .our-mission-card-container {
        /* background-color: red; */
        /* width: fit-content; */
        width: 100%;
        height: fit-content;
        border-radius: 20px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        border-right: 1px solid rgba(255, 255, 255, 0.5);
        position: relative;

        .top-div {
            /* background-color: green; */
            height: 42%;
            width: 84.5%;
            margin-left: auto;
            border-top-left-radius: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.5);

            h3 {
                color: #fff;
                font-size: 1.2rem;
                padding-left: 10px;
                font-weight: 400;
                margin-top: 14px;
            }
        }

        .bottom-div {
            height: 58%;
            width: 100%;
            /* background-color: blue; */
            border-top-left-radius: 18px;
            border-bottom-left-radius: 18px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.5);
            border-left: 1px solid rgba(255, 255, 255, 0.5);

            p {
                color: #fff;
                padding: 6px 3px;
                font-size: 0.8rem;
                margin-top: 0;
                font-weight: lighter;
            }
        }

    }

    .our-mission-card-container::after {
        content: "";
        position: absolute;
        width: 2.2rem;
        height: 1.2rem;
        /* background-color: red; */
        top: 1.2rem;
        left: 1.08rem;
        border-bottom-right-radius: 14px;
        border-bottom: 0.3px solid rgba(255, 255, 255, 0.2);
        border-right: 0.3px solid rgba(255, 255, 255, 0.2);
    }

    .our-mission-card-container {
        .icon {
            position: absolute;
            top: 2px;
            left: 6px;
            width: 40px;
            height: 34px;
            padding: 1px;
            border-radius: 12px;

            img {
                width: 100%;
                height: 100%;
            }
        }
    }
}

@media screen and (max-width: 367px) and (min-width: 350px) {
    .our-mission-card-container {
        /* background-color: red; */
        /* width: fit-content; */
        width: 100%;
        height: fit-content;
        border-radius: 20px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        border-right: 1px solid rgba(255, 255, 255, 0.5);
        position: relative;

        .top-div {
            /* background-color: green; */
            height: 42%;
            width: 84.5%;
            margin-left: auto;
            border-top-left-radius: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.5);

            h3 {
                color: #fff;
                font-size: 1.2rem;
                padding-left: 10px;
                font-weight: 400;
                margin-top: 14px;
            }
        }

        .bottom-div {
            height: 58%;
            width: 100%;
            /* background-color: blue; */
            border-top-left-radius: 20px;
            border-bottom-left-radius: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.5);
            border-left: 1px solid rgba(255, 255, 255, 0.5);

            p {
                color: #fff;
                padding: 6px 3px;
                font-size: 0.8rem;
                margin-top: 0;
                font-weight: lighter;
            }
        }

    }

    .our-mission-card-container::after {
        content: "";
        position: absolute;
        width: 2rem;
        height: 1.3rem;
        /* background-color: red; */
        top: 1.1rem;
        left: 1.15rem;
        border-bottom-right-radius: 14px;
        border-bottom: 0.3px solid rgba(255, 255, 255, 0.2);
        border-right: 0.3px solid rgba(255, 255, 255, 0.2);
    }

    .our-mission-card-container {
        .icon {
            position: absolute;
            top: 2px;
            left: 8px;
            width: 34px;
            height: 34px;
            padding: 1px;
            border-radius: 12px;

            img {
                width: 100%;
                height: 100%;
            }
        }
    }
}


@media screen and (max-width: 350px) and (min-width: 330px) {
    .our-mission-card-container {
        /* background-color: red; */
        /* width: fit-content; */
        width: 100%;
        height: fit-content;
        border-radius: 20px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        border-right: 1px solid rgba(255, 255, 255, 0.5);
        position: relative;

        .top-div {
            /* background-color: green; */
            height: 42%;
            width: 84.5%;
            margin-left: auto;
            border-top-left-radius: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.5);

            h3 {
                color: #fff;
                font-size: 1.2rem;
                padding-left: 10px;
                font-weight: 400;
                margin-top: 14px;
            }
        }

        .bottom-div {
            height: 58%;
            width: 100%;
            /* background-color: blue; */
            border-top-left-radius: 20px;
            border-bottom-left-radius: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.5);
            border-left: 1px solid rgba(255, 255, 255, 0.5);

            p {
                color: #fff;
                padding: 6px 3px;
                font-size: 0.8rem;
                margin-top: 0;
                font-weight: lighter;
            }
        }

    }

    .our-mission-card-container::after {
        content: "";
        position: absolute;
        width: 2.4rem;
        height: 1.5rem;
        /* background-color: red; */
        top: 1rem;
        left: 0.65rem;
        border-bottom-right-radius: 14px;
        border-bottom: 0.3px solid rgba(255, 255, 255, 0.2);
        border-right: 0.3px solid rgba(255, 255, 255, 0.2);
    }

    .our-mission-card-container {
        .icon {
            position: absolute;
            top: 2px;
            left: 8px;
            width: 34px;
            height: 34px;
            padding: 1px;
            border-radius: 12px;

            img {
                width: 100%;
                height: 100%;
            }
        }
    }
}

@media screen and (max-width: 330px) {
    .our-mission-card-container {
        /* background-color: red; */
        /* width: fit-content; */
        width: 100%;
        height: fit-content;
        border-radius: 20px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        border-right: 1px solid rgba(255, 255, 255, 0.5);
        position: relative;

        .top-div {
            /* background-color: green; */
            height: 42%;
            width: 84.5%;
            margin-left: auto;
            border-top-left-radius: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.5);

            h3 {
                color: #fff;
                font-size: 1.2rem;
                padding-left: 10px;
                font-weight: 400;
                margin-top: 14px;
            }
        }

        .bottom-div {
            height: 58%;
            width: 100%;
            /* background-color: blue; */
            border-top-left-radius: 20px;
            border-bottom-left-radius: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.5);
            border-left: 1px solid rgba(255, 255, 255, 0.5);

            p {
                color: #fff;
                padding: 6px 3px;
                font-size: 0.8rem;
                margin-top: 0;
                font-weight: lighter;
            }
        }

    }

    .our-mission-card-container::after {
        content: "";
        position: absolute;
        width: 1.8rem;
        height: 1.35rem;
        /* background-color: red; */
        top: 1.05rem;
        left: 1.05rem;
        border-bottom-right-radius: 14px;
        border-bottom: 0.3px solid rgba(255, 255, 255, 0.2);
        border-right: 0.3px solid rgba(255, 255, 255, 0.2);
    }

    .our-mission-card-container {
        .icon {
            position: absolute;
            top: 2px;
            left: 8px;
            width: 34px;
            height: 34px;
            padding: 1px;
            border-radius: 12px;

            img {
                width: 100%;
                height: 100%;
            }
        }
    }
}

.lang-switcher select {
  background: transparent;
}

a[aria-current="page"] {
  color: #ffffff !important; /* force white */
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.nav-items a {
  color: #ffffff;
  opacity: 0.9;
}

.nav-items a:hover {
  opacity: 1;
  text-decoration: underline;
}

footer a {
  color: #ffffff;
  opacity: 0.85;
}

footer a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* ============================ */

.bg-gradient-white {
  background-image: linear-gradient(
    to right,
    #2e2e2e,
    #131313
  ) !important;
}

.bg-black-gradient{
background-image: linear-gradient(to right, #272727, #1C1717) !important;
}
.bg-gradient-dark-red {
  background-color: #0B0606; /* fallback */
  background-image: linear-gradient(
    135deg,
    #0B0606,
    #420000
  );
}
.bg-gradient-black-overlay {
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.5)
  );
}

.bg-black-88{
    background-color: color-mix(
  in oklab,
  #000 88%,
  transparent
);

}
.bg-gradient-black-horizontal {
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.1)
  );
}
.contact-sec svg{
    top: 50%;
}



/* BG GRADIENTS CUSTOM */

.bg-white-10 {
    background-color: rgba(255, 255, 255, 0.10);
}
.bg-white-19 {
    background-color: rgba(255, 255, 255, 0.19);
}
.bg-white-14 {
    background-color: rgba(255, 255, 255, 0.14);
}
.bg-white-13 {
    background-color: rgba(255, 255, 255, 0.13);
}
.bg-white-20 {
    background-color: rgba(255, 255, 255, 0.20);
}
.bg-black-20 {
    background-color: rgba(0, 0, 0, 0.20);
}
.bg-black-23 {
    background-color: rgba(0, 0, 0, 0.23);
}
.bg-black-34 {
    background-color: rgba(0, 0, 0, 0.34);
}
@media (min-width: 768px) {
    .md-bg-white-16 {
        background-color: rgba(255, 255, 255, 0.16);
    }
}


.bg-white-gradient-30-7 {
    background-image: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.3),
        rgba(0, 0, 0, 0.07)
    );
}
.bg-white-gradient-40-1 {
    background-image: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.4),
        rgba(0, 0, 0, 0.01)
    );
}
.bg-gray-gradient-500-700 {
    background-image: linear-gradient(
        135deg,
        #6B7280,
        #374151
    );
}
.bg-gradient-primary {
    background-image: linear-gradient(
        90deg,
        #a91919 0%,
        #590808 100%
    );
}
.bg-white-gradient-40-20 {
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.4),
        rgba(255, 255, 255, 0.2)
    );
}
.bg-white-gradient-30-10 {
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.3),
        rgba(255, 255, 255, 0.1)
    );
}
.bg-white-gradient-50-15 {
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.5),
        rgba(255, 255, 255, 0.15)
    );
}
.bg-white-gradient-20-6 {
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.2),
        rgba(255, 255, 255, 0.06)
    );
}
.bg-white-black-gradient-20-20 {
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.2),
        rgba(0, 0, 0, 0.2)
    );
}
.bg-white-black-gradient-40-10 {
    background-image: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.4),
        rgba(0, 0, 0, 0.1)
    );
}
.bg-black-gradient-30-60 {
    background-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3),
        rgba(0, 0, 0, 0.6)
    );
}
.bg-black-gradient-70-4 {
    background-image: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.7),
        rgba(0, 0, 0, 0.04)
    );
}
.bg-black-gradient-1-60 {
    background-image: linear-gradient(
        to bottom left,
        rgba(0, 0, 0, 0.01),
        rgba(0, 0, 0, 0.6)
    );
}
.bg-white-gradient-50-1 {
    background-image: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.5),
        rgba(255, 255, 255, 0.01)
    );
}

.bg-white-black-gradient-20-10 {
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.2),
        rgba(0, 0, 0, 0.1)
    );
}
.bg-black-gradient-80-20 {
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.8),
        rgba(0, 0, 0, 0.2)
    );
}
.bg-dark-gradient-322f2f-110202 {
    background: linear-gradient(
        to right,
        #322F2F,
        #110202
    );
}
.bg-gradient-red {
    background-image: linear-gradient(
        to bottom right,
        #7f1d1d, /* red-900 */
        #dc2626  /* red-600 */
    );
}

.backdrop-blur-lg {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}




/* HOVER BG */

.bg-white-14-hover:hover {
    background-color: rgba(255, 255, 255, 0.14);
}
.bg-black-hover:hover {
    background-color: #000000;
}
.bg-gray-600-hover:hover {
    background-color: #4B5563;
}
.bg-primary-hover:hover {
    background-color: var(--color-primary);
}
.bg-primary-hover:hover {
    background-color: var(--color-primary);
}
.text-white-hover:hover {
    color: #ffffff;
}
.bg-gray-600-hover:hover {
    background-color: #4B5563;
}
.bg-white-10-hover:hover {
    background-color: rgba(255, 255, 255, 0.10);
}
.bg-transparent-hover:hover {
    background-color: transparent;
}
.bg-gradient-gray-white-hover:hover {
    background-image: linear-gradient(
        to bottom right,
        #111827,                 /* gray-900 */
        rgba(255, 255, 255, 0.1) /* white/10 */
    );
}



@media (min-width: 768px) {
    .bg-gradient-gray-hover-md:hover {
        background-image: linear-gradient(
            to bottom right,
            #4B5563, 
            #111827  
        );
    }
     .bg-gradient-gray-hover-md:hover {
        background-image: linear-gradient(
            to bottom right,
            #4B5563, /* gray-600 */
            #111827  /* gray-900 */
        );
    }
}




/* SPACING  */
.h-62 {
    height: calc(var(--spacing) * 62);
}
.ml-48 {
    margin-left: calc(var(--spacing) * 48);
}
.w-254{
    width: calc(var(--spacing) * 254);
}
.top-48{
    top: 3rem;
}
.mt-18 {
    margin-top: calc(var(--spacing) * 18);
}



.xl\:h-130 {
    @media (width >=80rem) {
        height: calc(var(--spacing) * 130);
    }
}
.lg\:ml-0 {
    @media (width >= 64rem) {
        margin-left: calc(var(--spacing) * 0);
    }
}
button, input, select, optgroup, textarea, ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    border-radius: 0;
    background-color: transparent;
    opacity: 1;
}



.backdrop-blur-md{
    --tw-backdrop-blur:blur(12px);
}


