﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
    font-weight: normal;
    font-style: normal;
    line-height: normal;
    background-color: #fff;
    color: #000;
}

#validationNumEmployees::-webkit-outer-spin-button,
#validationNumEmployees::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.container {
    max-width: 1370px;
    padding-inline: 15px;
}

.gradient-text-main {
    background-image: linear-gradient(to right, #53d0f8 0%, #85bbff 50%, #9da0ff 82%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    font-weight: 800;
}

.gradient-text {
    background-image: linear-gradient(to right, #000204 0%, #004ace 32%, #1e1a8b 56%, #004ace 72%, #00086d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    letter-spacing: -2px;
}

.bg-white-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 60px;
    border: 3px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(90deg, #a9dbff, #232ec2, #a9dbff);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    background-size: 200% 200%;
    animation: rotateBorder 3s linear infinite;
    overflow: hidden;
    font-size: 19px;
    font-weight: 500;
    color: #30356b;
    border-radius: 10px;
    transition: all 0.4s ease;
    box-shadow: rgba(0, 0, 0, 0.1) 2px 2px 6px;
}

@keyframes rotateBorder {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

.bg-white-btn:after {
    content: '»';
    position: absolute;
    opacity: 0;
    top: 6.5px;
    right: -20px;
    transition: 0.5s ease;
    font-size: 34px;
    font-weight: 300;
    color: #232ec2;
}

.bg-white-btn span {
    display: inline-block;
    transition: all 0.4s ease;
    position: relative;
}

.bg-white-btn:hover {
    transform: scale(1.05);
    background-image: linear-gradient(120deg, #f6faff, #e9f0ff, #f6faff), linear-gradient(90deg, #a9dbff, #232ec2, #a9dbff);
    background-size: 200% 200%;
    animation: rotateBorder 3s linear infinite, innerGlow 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(35, 46, 194, 0.25), 0 6px 12px rgba(0, 0, 0, 0.1);
}

@keyframes innerGlow {
    0% {
        background-position: 0% 50%, 0% 50%;
    }

    50% {
        background-position: 100% 50%, 100% 50%;
    }

    100% {
        background-position: 0% 50%, 200% 50%;
    }
}

.bg-white-btn:hover:after {
    opacity: 1;
    right: 20px;
}

.bg-white-btn:hover span {
    color: #232ec2;
/*    transform: translateX(-8px);
    opacity: 0.9;*/
}

.gradient_gwp_btn {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 10px 70px;
    background: white;
    cursor: pointer;
    color: #30356b;
    font-weight: 500;
    font-size: 20px;
    border: 3px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(90deg, #a9dbff, #232ec2, #a9dbff);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    background-size: 200% 200%;
    animation: rotateBorder 3s linear infinite;
    overflow: hidden;
    border-radius: 10px;
    transition: all 0.4s ease;
    box-shadow: rgba(0, 0, 0, 0.1) 2px 2px 6px;
}

@keyframes rotateBorder {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

.gradient_gwp_btn:after {
    content: '»';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s ease;
    font-size: 34px;
    font-weight: 300;
    color: #232ec2;
}

.gradient_gwp_btn:hover {
    transform: scale(1.05);
    background-image: linear-gradient(120deg, #f6faff, #e9f0ff, #f6faff), linear-gradient(90deg, #a9dbff, #232ec2, #a9dbff);
    background-size: 200% 200%;
    animation: rotateBorder 3s linear infinite, innerGlow 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(35, 46, 194, 0.25), 0 6px 12px rgba(0, 0, 0, 0.1);
}

@keyframes innerGlow {
    0% {
        background-position: 0% 50%, 0% 50%;
    }

    50% {
        background-position: 100% 50%, 100% 50%;
    }

    100% {
        background-position: 0% 50%, 200% 50%;
    }
}

    .gradient_gwp_btn:hover:after {
        opacity: 1;
        right: 40px;
    }

    .gradient_gwp_btn:hover span {
        color: #232ec2;
    }

.color-blue-gwp {
    color: #004ace;
}

.gradient-bg {
    background-color: #d6edfd;
    background-image: linear-gradient(to bottom, #d6edfd, #ffffff);
}

.main-section-cards,
.corporate-perks-card,
.review_carousel {
    visibility: hidden;
}

    .main-section-cards.slick-initialized,
    .corporate-perks-card.slick-initialized,
    .review_carousel.slick-initialized {
        visibility: visible;
    }

.fleur-de-leah-font{
    font-family: "Fleur De Leah", cursive;
    font-size: 60px;
}

/* Animations */

.slide-up {
    transform: translateY(50px);
}

    .slide-up.show {
        opacity: 1;
        transform: translateY(0);
    }

.animate {
    opacity: 0;
    transition: all 1s ease-out;
}

/*main Css Start */
.main {
    background-image: url(//res.cloudinary.com/funex/image/upload/f_auto,q_40/c_scale,w_auto,dpr_auto/v1758615262/GWP_HOMEPAGE_SITE_BLUE_BACKGROUND_HERO_SECTION-min_j7mbpm.jpg);
    background-color: #011055;
    background-size: 100% 130%;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0;
}

    .main:after {
        content: '';
        position: absolute;
        height: 100%;
        width: 60%;
        right: 0;
        top: 40px;
        background-image: url(//res.cloudinary.com/funex/image/upload/f_auto,q_40/c_scale,w_auto,dpr_auto/v1759747189/GWP_HOMEPAGE_SITE_MAP_HERO_SECTION_s9tyhm.png);
        background-size: contain;
        background-repeat: no-repeat;
        z-index: -1;
    }

    .main .title {
        font-weight: 700;
        line-height: 54px;
        font-size: 50px;
    }

    .main p {
        font-weight: 400;
        font-size: 23px;
        line-height: 34px;
    }

    /* Base link */
    .main a.underline_on_hover {
        position: relative;
        display: inline-flex;
        align-items: center;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        /* Span for text */
        .main a.underline_on_hover span {
            position: relative;
            display: inline-block;
        }

            /* Animated underline */
            .main a.underline_on_hover span::after {
                content: "";
                position: absolute;
                left: 0;
                bottom: -2px;
                width: 0%;
                height: 2px;
                background: #fff;
                transition: width 0.4s ease;
            }

        /* Grow underline on hover */
        .main a.underline_on_hover:hover span::after {
            width: 100%;
        }

        /* SVG base style */
        .main a.underline_on_hover svg {
            margin-left: 6px;
            transition: transform 0.3s ease;
        }

        /* On hover: simple slide right */
        .main a.underline_on_hover:hover svg {
            transform: translateX(4px);
        }

    
    .main .main-achievements .slick-track {
        display: flex !important;
    }

    .main .main-achievements .slick-slide {
        height: auto !important;
        display: flex !important;
        align-items: stretch !important;
    }

        .main .main-achievements .slick-slide > div {
            flex: 1 1 auto;
            height: 100%;
        }

        .main .main-achievements .slick-slide > div > div {
            height: 100%;
        }

    .main .main-achievements .slick-slide > div p {
        min-height: 50px;
        font-size:39px;
        font-weight:700;
    }


    .main .main-achievements .slick-dots button {
        width: 7px;
        height: 7px;
    }

    .main .main-achievements .slick-dots li.slick-active button {
        background-color: #ffffff;
    }

    .main .main-achievements .slick-arrow.slick-prev {
        left: inherit;
        right: 85px;
        top: 90%;
        position: absolute;
        background: transparent;
        border: 1px solid #fff;
        height: 25px;
        width: 25px;
        border-radius: 50%;
        transition: box-shadow 0.3s ease, border-color 0.3s ease;
    }

        .main .main-achievements .slick-arrow.slick-prev:before {
            left: 9px;
            height: 9px;
            width: 9px;
        }

        .main .main-achievements .slick-arrow.slick-prev:hover {
            box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.6);
            border-color: rgba(255, 255, 255, 0.8);
        }


    .main .main-achievements .slick-arrow.slick-next {
        right: 50px;
        top: 90%;
        position: absolute;
        background: transparent;
        border: 1px solid #fff;
        height: 25px;
        width: 25px;
        border-radius: 50%;
        transition: box-shadow 0.3s ease, border-color 0.3s ease;
    }

        .main .main-achievements .slick-arrow.slick-next:before {
            left: 5px;
            height: 9px;
            width: 9px;
        }

        .main .main-achievements .slick-arrow.slick-next:hover {
            box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.6);
            border-color: rgba(255, 255, 255, 0.8);
        }


    .main .main-achievements .slick-dots{
        margin-top: 20px;
    }

    .main .main-section-cards .slick-list {
        overflow: visible;
        margin:0 -10px;
    }

    .main .main-section-cards .slick-track {
        display: flex;
        align-items: center;
    }

    .main .main-section-cards .slick-slide {
        margin: 0 10px;
    }

    .main .curved-card {
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        border-radius: 22px;
        transition: transform 0.4s cubic-bezier(0.25, 1, 0.3, 1), box-shadow 0.4s ease, border 0.4s ease;
        transform: perspective(800px) translateZ(0);
        background: white; /* optional: ensures clear contrast if bg is blue */
    }

        .main .curved-card:hover {
            transform: perspective(800px) scale(1.06) translateY(-6px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25), 0 0 25px rgba(90, 215, 255, 0.4); /* subtle cyan glow */
        }
@keyframes bluePulse {
    0% {
        box-shadow: 0 0 15px rgba(90, 215, 255, 0.25);
    }

    50% {
        box-shadow: 0 0 35px rgba(90, 215, 255, 0.45);
    }

    100% {
        box-shadow: 0 0 15px rgba(90, 215, 255, 0.25);
    }
}

.main .curved-card:hover {
    transform: perspective(800px) scale(1.06) translateY(-6px);
    animation: bluePulse 2s ease-in-out infinite;
}

/*main Css End */

/* corporate-perks Css Start */
.corporate-perks .bg-grey {
    background: #f4f4f9;
}

.corporate-perks .gradient-text {
    background-image: linear-gradient(to right, #004ace, #1e1a8b, #004ace, #00086d);
}

.corporate-perks-card .slick-arrow.slick-prev {
    background-image: url('//res.cloudinary.com/funex/image/upload/f_auto,q_40/c_scale,w_auto,dpr_auto/v1758218806/BANNERS_LEFT_ARROW_cywch7.svg');
    background-color: transparent;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    height: 45px;
    width: 45px;
}

.corporate-perks-card .slick-arrow.slick-next {
    background-image: url('//res.cloudinary.com/funex/image/upload/f_auto,q_40/c_scale,w_auto,dpr_auto/v1758219078/BANNERS_RIGHT_ARROW_usvkfe.svg');
    background-color: transparent;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    height: 45px;
    width: 45px;
}

.corporate-perks-card .slick-arrow:before {
    display: none;
}

.corporate-perks-card .slick-list,
.corporate-perks-card .slick-track {
    display: flex;
}

.corporate-perks-card .slick-list {
    padding: 30px 0;
    overflow: visible;
}

.corporate-perks-card .slick-slide {
    margin: 0 10px;
}

.corporate-perks-card .bg-white {
    border: 2px solid transparent;
    height: 100%;
    background-image: linear-gradient(white, white), linear-gradient(45deg, #a9dbff, #232ec2, #a9dbff);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    overflow: hidden;
    display: flex !important;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.25);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    border-radius: 22px;
    transform: perspective(800px) translateZ(0); /* ensures smoother GPU animation */
}

    .corporate-perks-card .bg-white:hover {
        transform: perspective(800px) scale(1.05) translateY(-5px);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
        border-color: #a9dbff; /* optional: highlight border on hover */
    }

    .corporate-perks-card .bg-white > * {
        transition: transform 0.4s ease;
    }

    .corporate-perks-card .bg-white:hover > * {
        transform: translateY(-3px);
    }


.corporate-perks .map-img {
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease, filter .35s ease;
}

.corporate-perks .map-img:hover {
    transform: scale(1.05);
}


.corporate-perks-card .slick-slide > div {
    height: 100%;
}

.corporate-perks-card .bg-white img {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
}

/* corporate-perks Css End  */

/*    how it work Start*/
.how-it-work h2::after {
    content: '';
    width: 45%;
    height: 4px;
    background-image: linear-gradient(to bottom, #004ace, #1e1a8b, #004ace, #00086d);
    position: absolute;
    bottom: -10px;
    right: 0;
    border-radius: 20px;
}

.how-it-work .bg-grey {
    background: #f4f4f9;
    box-shadow: rgba(0, 0, 0, 0.25) 1.95px 1.95px 2.6px;
}

    .how-it-work .bg-grey h3.gradient-text {
        background-image: linear-gradient(to right, #004ace, #1e1a8b, #004ace, #00086d);
    }

    .how-it-work .bg-grey > div {
        position: relative;
        padding: 0 45px;
    }

        .how-it-work .bg-grey > div::after {
            content: '';
            width: 2px;
            height: 100%;
            background-image: linear-gradient(to bottom, #004ace, #1e1a8b, #004ace, #00086d);
            position: absolute;
            top: 0;
            right: 0;
        }

        .how-it-work .bg-grey > div:last-child::after {
            display: none;
        }

        .how-it-work .bg-grey > div .title:after {
            content: '';
            width: 25%;
            height: 4px;
            background-image: linear-gradient(to bottom, #004ace, #1e1a8b, #004ace, #00086d);
            position: absolute;
            bottom: -12px;
            left: 0;
            border-radius: 20px;
        }
        .how-it-work h1:after {
            content: '';
            width: 52%;
            height: 4px;
            background-image: linear-gradient(to bottom, #004ace, #1e1a8b, #004ace, #00086d);
            position: absolute;
            bottom: -12px;
            right: 0;
            border-radius: 20px;
        }

/*how it work End*/

/*employee benefits section*/
.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: transform 0.3s ease, z-index 0s;
    cursor: grab;
    z-index: 1;
    user-select: none;
    -webkit-user-select: none; /* for Safari */
    -moz-user-select: none; /* for Firefox */
    -ms-user-select: none;
}

    .carousel-slide.active {
        opacity: 1;
        z-index: 10;
        transform: translateX(0);
    }

    .carousel-slide.behind {
        opacity: 0.6;
        z-index: 5;
        /*        box-shadow: 0 5px 15px rgba(0,0,0,0.15);*/
    }
    .carousel-slide.grabbing {
        cursor: grabbing;
        transition: none; /* disable animation while dragging */
    }

    .carousel-slide.grab {
        cursor: grab;
    }

        .carousel-slide.behind .bg div {
            opacity: 0;
        }

    .carousel-slide.active {
        opacity: 1;
        z-index: 10;
    }

        .carousel-slide.active .bg div {
            opacity: 1;
        }

    .carousel-slide.behind {
        opacity: 0.6;
        z-index: 5;
    }

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border: none;
    background-color: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

    .prev:focus, .next:focus {
        outline: 3px solid #ffd700;
        outline-offset: 2px;
    }

.prev {
    background-image: url('//res.cloudinary.com/funex/image/upload/f_auto,q_40/c_scale,w_auto,dpr_auto/v1758218806/BANNERS_LEFT_ARROW_cywch7.svg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    left: -40px;
}

.next {
    background-image: url('//res.cloudinary.com/funex/image/upload/f_auto,q_40/c_scale,w_auto,dpr_auto/v1758219078/BANNERS_RIGHT_ARROW_usvkfe.svg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    right: -95px;
}


/* Dots */
.carousel-dots {
    width: calc(100% + 60px) !important;
    text-align: center;
    position: absolute;
    bottom: -30px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .carousel-dots button {
        background: #9fb4ff;
        border: none;
        outline: none;
        width: 8px;
        height: 8px;
        margin: 0 5px;
        border-radius: 50%;
        cursor: pointer;
        transition: background 0.3s;
    }

        .carousel-dots button.active {
            background: #232ec2;
            width: 12px;
            height: 12px;
        }

.employee-benefits .slider-outer {
/*    min-height: 380px;*/
    margin-right: 50px;
    touch-action: pan-y;
    overflow: visible;
}

.carousel-slide .bg {
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    padding: 25px 35px;
    height: 100%;
}

.carousel-slide .bg1 {
    background-image: url('//res.cloudinary.com/funex/image/upload/f_auto,q_40/c_scale,w_auto,dpr_auto/v1758089144/EXCLUSIVE_TRAVE_PERKS_BANNER_IMAGE_zloaui.png');
}

.carousel-slide .bg2,
.carousel-slide .bg3,
.carousel-slide .bg4 {
    background-image: url('//res.cloudinary.com/funex/image/upload/f_auto,q_40/c_scale,w_auto,dpr_auto/v1758096036/LOCAL_DINING_HEALHT_WELLNESS_ONLINE_SHOPPING_BANNER_BACKGROUND_yrvmpl.png');
}

.carousel-slide .bg5 {
    background-image: url('//res.cloudinary.com/funex/image/upload/f_auto,q_40/c_scale,w_auto,dpr_auto/v1758103088/DISCOUNT_TICKETS_BANNER_IMAGE_ggz184.png');
}

.carousel-slide .bg2 .mobile-img {
    margin-top: -50px;
}

    .carousel-slide .bg2 .mobile-img img {
        height: 100%;
        width: 100%;
    }

.carousel-slide .carousel-card {
    border: 2px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(45deg, #a9dbff, #232ec2, #a9dbff);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    padding: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

    .carousel-slide .carousel-card p {
        font-size: 14px;
    }

    .carousel-slide .carousel-card img {
        width: 40px;
        height: auto;
        margin-bottom: 10px;
    }

.carousel-slide .logos img {
    height: auto;
    width: 90px;
    margin-bottom: 10px;
    margin: auto;
    display: flex;
    justify-content: center;
}

/*employee benefits section*/
/*Carousel section start*/
.scroll-wrapper {
    overflow: hidden;
    width: 100%;
}

.scroll-track {
    display: flex;
    width: max-content;
    align-items: center;
    animation: scroll-loop 80s linear infinite;
}

.scroll-track1 {
    display: flex;
    width: max-content;
    align-items: center;
    animation: scroll-loop-right 80s linear infinite;
}

    .scroll-track img,
    .scroll-track1 img {
        height: 95px;
        width: auto;
        margin: 0 30px;
        object-fit: contain;
        flex-shrink: 0;
    }

@keyframes scroll-loop {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-loop-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/*Carousel section End*/

/*Review section start*/
.review-section .row {
    border: 3px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(172deg, #a9dbff, #232ec2, #a9dbff);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border-radius: 22px;
    padding: 25px 60px 0 35px;
}

    .review-section .row > div {
        position: relative;
        margin-top: -60px;
    }

.review-section .mobile-image {
    max-width: 250px;
}

.review-section .mobile-image img{
   height: 100%;
   width: 100%;
}

.review-section .review_carousel .slick-arrow.slick-next {
    position: absolute;
    right: -57%;
    top: unset;
    transform: unset;
    bottom: 0;
    background-image: url(//res.cloudinary.com/funex/image/upload/f_auto,q_40/c_scale,w_auto,dpr_auto/v1758219078/BANNERS_RIGHT_ARROW_usvkfe.svg);
    background-color: transparent;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    height: 45px;
    width: 45px;
}

.review-section .review_carousel .slick-slider {
    height: 70%;
}

.review-section .review_carousel .slick-arrow:before {
    display: none;
}

.review-section .review_carousel .review-img {
    min-height: 50px;
    max-height: 50px;
    height: 50px;
    min-width: 50px;
    max-width: 50px;
    width: 50px;
    object-fit: cover;
}

.review-section .review_carousel .mobile-img img {
    max-height: 320px;
    width: 100%;
    object-fit: contain;
}

/*Review section End*/

/*Contact section Start*/
.contact-section .title {
    color: #1e1a8b;
    line-height: 55px;
}

    .contact-section img{
        margin-left: -15px
    }

    .contact-section .contact-container .form {
        border: 2px solid transparent;
        background-image: linear-gradient(white, white), linear-gradient(45deg, #a9dbff, #232ec2, #a9dbff);
        background-origin: border-box;
        background-clip: padding-box, border-box;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    }

.contact-section .great-text {
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    letter-spacing: -2px;
    background-image: linear-gradient(50deg, #004ace 5%, #9ceaff 25%, #00b3c6 35%, #1e1a8b 50%);
    font-weight: 900;
}

.contact-section .contact-container .form .form-group .form-control {
    height: 40px;
    border-radius: 5px;
    border: 1px solid #d5d6d3;
    width: 100%;
    background-color: transparent;
}
/*Contact section End*/

/*FAQ section Start*/
.faq-section .accordion.custom-accordion {
    max-width: unset;
}

.faq-section h2.gradient-text {
    background-image: linear-gradient(to right, #004ace 0%, #1e1a8b 10%, #004ace 10%, #00086d 25%);
}

.faq-section .accordion.custom-accordion .accordion-button {
    background-color: #d7ebff;
    font-weight: normal;
    border-radius: 12px;
    color: #000204;
}

.faq-section .accordion.custom-accordion .accordion-body {
    background-color: #fff;
    font-weight: normal;
    color: #000204;
    border: 2px solid transparent;
    /* background-image: linear-gradient(white, white), linear-gradient(172deg, #a9dbff, #232ec2, #a9dbff); */
    background-image: linear-gradient(white, white), linear-gradient(to bottom, #004ace, #1e1a8b, #004ace, #00086d);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border-radius: 12px;
}

.faq-section .accordion.custom-accordion .accordion-button:after {
    background-image: url('//res.cloudinary.com/funex/image/upload/f_auto,q_40/c_scale,w_auto,dpr_auto/v1758279448/FAQS_SECTION_DOWN_ARROW_ICON_wvihbb.svg');
}

/*FAQ section End*/

/*FAQ section Start*/
.about-us h2.gradient-text {
    background-image: linear-gradient(to right, #004ace 0%, #1e1a8b 10%, #004ace 10%, #00086d 25%);
}
.gradient-text-rewards {
    background-image: linear-gradient(to right, #666fdd 0%, #537de2 32%, #3891e9 56%, #2c9fe4 72%, #1eb5d9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    letter-spacing: -2px;
}
.rewards-text{
    position:relative;
}
.rewards-text:before {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 0;
    right: 0;
    width: 100%;
    height: 21px;
    background-image: url(https://res.cloudinary.com/greatworkperks/image/upload/greatwork-perks/rewards-bottom-line_ke0hqe.png);
    background-repeat: no-repeat;
    background-size: contain;
}
.benefits-content-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.section-title{
    font-size:39px !important;
    font-weight:700;
}
/*FAQ section End*/
/*Media Queries Start*/
@media (max-width: 1199px) {
    .corporate-perks-card .slick-list {
        overflow: hidden;
    }
}

    @media (max-width: 991px) {

        /*    .employee-benefits .slider-outer {
        min-height: 550px;
    }*/

        /*    .carousel-slide .bg {
        min-height: 540px;
    }*/

        .corporate-perks-card .slick-arrow.slick-prev {
            left: -45px;
        }

        .corporate-perks-card .slick-arrow.slick-next {
            right: -45px;
        }

        .how-it-work .bg-grey > div .title:after {
            width: 70px;
        }

        .how-it-work .bg-grey > div {
            position: relative;
            padding: 0 30px;
            margin-bottom: 50px;
        }

            .how-it-work .bg-grey > div::after {
                width: calc(100% - 90px);
                height: 2px;
                position: absolute;
                top: inherit;
                right: 0;
                bottom: -30px;
                left: 30px;
            }

        .how-it-work h2::after {
            content: '';
            width: 20%;
            height: 4px;
            background-image: linear-gradient(to bottom, #004ace, #1e1a8b, #004ace, #00086d);
            position: absolute;
            border-radius: 20px;
            bottom: -55%;
            left: 50%;
            transform: translate(-50%, -50%);
            display:none;
        }

        .how-it-work .bg-grey > div:last-child {
            margin-bottom: 0;
        }

        .review-section .row {
            margin: 0 20px;
            padding: 20px 20px 0px 20px;
        }

            .review-section .row > div {
                margin-top: 20px;
            }

                .review-section .row > div .quote-icon {
                    position: relative;
                    margin-top: -85px;
                }

        .review_carousel .slick-track {
            display: flex;
            justify-content: center;
            text-align: center;
        }

        .review-section .review_carousel .slick-arrow.slick-next {
            right: -60px !important;
            display: none !important;
        }
    }

    @media (max-width: 767px) {
        .main {
            background-image: url(//res.cloudinary.com/funex/image/upload/f_auto,q_40/c_scale,w_auto,dpr_auto/v1758615262/GWP_HOMEPAGE_SITE_BLUE_BACKGROUND_HERO_SECTION-min_j7mbpm.jpg);
        }

            .main .w-75 {
                width: 100% !important;
            }

        .slick-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
        }

/*        .carousel-slide .bg1,*/
        .carousel-slide .bg2,
        .carousel-slide .bg3,
        .carousel-slide .bg4
/*        .carousel-slide .bg5*/
        {
                        background-image: url('//res.cloudinary.com/funex/image/upload/f_auto,q_40/c_scale,w_auto,dpr_auto/v1758723326/LOCAL_DINING_HEALHT_WELLNESS_ONLINE_SHOPPING_BANNER_BACKGROUND_MOBILE_slppiy.png');
/*            border: 3px solid transparent;
            background-image: linear-gradient(white, white), linear-gradient(172deg, #a9dbff, #232ec2, #a9dbff);
            background-origin: border-box;
            background-clip: padding-box, border-box;*/
/*            border-radius: 22px;*/
        }

        .carousel-slide .bg1 {
            background-image: url('//res.cloudinary.com/funex/image/upload/f_auto,q_40/c_scale,w_auto,dpr_auto/v1758629347/EXCLUSIVE_TRAVE_PERKS_BANNER_IMAGE_MOBILE_ttnlta.png');
            display: flex !important;
            align-items: end;
            border: 0;
        }

        .carousel-slide .bg5 {
            background-image: url('//res.cloudinary.com/funex/image/upload/f_auto,q_40/c_scale,w_auto,dpr_auto/v1758629369/DISCOUNT_TICKETS_BANNER_IMAGE_MOBILE_b1gv8x.png');
            display: flex !important;
            align-items: end;
            border: 0;
        }

        .employee-benefits .prev,
        .employee-benefits .next {
            display: none;
        }

        .carousel-slide.behind {
            transform: translateX(0) !important;
        }

        .employee-benefits .slider-outer {
            margin-right: 0;
        }

        .review-section .row {
            padding: 20px;
        }

        .carousel-dots{
            width: 100% !important;
        }

        .carousel-slide .logos img {
            width: 100%;
            margin: 6px 0;
        }

        .contact-section img {
            margin-left: unset
        }
        .gradient_gwp_btn:after{
            top:-4px;
        }
        .bg-white-btn:after{
            top:4px;
        }
        .main .main-achievements .slick-dots button {
            width: 10px;
            height: 10px;
        }
        .main .main-achievements .slick-list{
            padding:5px 0;
        }
        .main .main-section-cards .slick-list {
            padding: 16px 0;
        }
        .bg-white-btn:hover, .gradient_gwp_btn:hover {
            transform: none;
            animation: none;
            border: 3px solid transparent;
            background-image: linear-gradient(white, white), linear-gradient(90deg, #a9dbff, #232ec2, #a9dbff);
        }
        .bg-white-btn:hover:after, .gradient_gwp_btn:hover:after{
            opacity: 0;
        }
        .bg-white-btn:hover span, .gradient_gwp_btn:hover span{
            color: #000;
        }
        .slick-dots li {
            padding: 0 7px;
        }
        .main .curved-card:hover {
            transform: none;
            animation: none;
        }
        .corporate-perks-card .bg-white:hover {
            transform: none;
            box-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
        }
        .corporate-perks-card .bg-white {
            box-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
        }
        .corporate-perks .map-img:hover {
            transform: none;
        }
        .section-title{
            font-size:22px !important;
        }
    }

    @media (max-width: 576px) {
        .main-card {
            flex-direction: column !important;
        }

        .gradient_gwp_btn:after {
            right: 5px;
        }

        .main .main-card1,
        .main .main-card2,
        .main .main-card3 {
            transform: unset;
            margin-bottom: 20px;
            top: unset;
        }

        .main .title {
            font-size: 22px;
            line-height: 32px;
        }
        .main p {
            font-size: 16px;
            line-height: 24px;
        }

        .gradient_gwp_btn {
            font-size: 16px;
        }

        .main .main-section-cards .slick-list {
            padding-right: 100px;
            overflow: hidden;
        }
        .bg-white-btn{
            font-size:16px;
        }
        .trusted-companies h2, .corporate-perks h2, .benefits-content-section h2, .how-it-work h2, .employee-benefits h2,
        .review-section h2, .faq-section h2, .about-us h2.gradient-text, .section-title {
            font-size: 22px !important;
        }
        .trusted-companies h3 {
            font-size: 16px;
        }
        .scroll-track img, .scroll-track1 img {
            height: 70px;
        }
        .how-it-work .title, .employee-benefits .carousel-slide h1 {
            font-size: 18px;
        }
        .employee-benefits p.text-center, .employee-benefits .carousel-slide p {
            font-size: 16px;
        }
        .review-section .row > div .quote-icon {
            margin-top: -65px;
        }
        .review-section .row > div .quote-icon img {
            height: 70px;
            max-width: max-content;
        }
        .review_carousel .slick-slide p {
            font-size: 14px;
            line-height: 18px;
            font-weight: 300;
        }
        .review_carousel .slick-slide .color-blue-gwp, .faq-section p.fw-normal, .about-us p{
            font-size: 16px;
        }
        .contact-section .title {
            line-height: 35px;
            font-size: 22px;
        }
        .fleur-de-leah-font {
            font-size: 36px;
        }
        .gradient_gwp_btn {
            padding: 10px 60px;
        }
    }

    @media (max-width: 414px) {
        .gradient_gwp_btn,
        .bg-white-btn {
            width: 100%;
            padding: 10px 20px;
        }
    }

    /*Media Queries End*/
