/* ============================ >> Hero sectio Start << ============================*/
.hero-section .hero-slider {
    min-height: 800px;
    height: 100vh;
    display: flex;
    margin: 0;
}

.video-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    visibility: hidden;
    transition: all .5s ease-in-out;
}

.hero-content.video-playing .video-banner {
    opacity: 1;
    visibility: visible;
}

.hero-slider .slick-list .slick-track {
    display: flex;
    height: 100%;
}

.hero-slider .slick-track .slick-slide {
    height: auto;
    overflow: hidden;
}

.hero-slider .slick-track .slick-slide>div {
    height: 100%;
}

.hero-slider .hero-content {
    z-index: 1;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex !important;
}

.hero-contnent-inner .video-toggle {
    width: 87px;
    height: 87px;
    cursor: pointer;
    background-color: var(--white);
}

.hero-contnent-inner .video-toggle>img {
    width: 31px;
    object-fit: cover;
    object-position: center;
}

.hero-contnent-inner .video-toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    outline: 2px dashed var(--white);
    width: calc(100% + 16px);
    height: calc(100% + 16px);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
}

.hero-video.active-video {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-video.active-video>video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-contnent-inner .video-toggle::before {
    content: '';
    position: absolute;
    width: clamp(40px, 4vw, 80px);
    right: calc(100% + 12px);
    top: 50%;
    height: 2px;
    transform: translateY(-50%);
    border: none;
    background-image: repeating-linear-gradient(90deg, #ffffff, #ffffff 8px, transparent 7px, transparent 12px);
    background-size: 100%;
}

.header-below-space {
    display: flex;
    justify-content: space-around;
    align-items: end;
    width: 100%;
    padding-bottom: clamp(30px, 4vw, var(--space-60));
}

.hero-slider .hero-contnent-inner {
    z-index: 2;
    grid-gap: var(--space-15);
    width: 100%;
}

.hero-heading::after {
    content: '';
    transform: translateY(-50%);
    border-bottom: 2px solid var(--white);
    width: 130px;
    display: inline-block;
    margin-bottom: 10px;
}

.hero-slider .slick-dots {
    position: absolute;
    top: 50%;
    left: 50%;
    height: fit-content;
    transform: translate(-50%, -50%);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    --dots-gap: 15px;
    grid-gap: var(--dots-gap);
}

.hero-slider .slick-dots>li {
    border: 1px solid var(--white);
    display: block;
    width: 14px;
    height: 14px;
}

.hero-slider .slick-dots>li.slick-active {
    background-color: var(--white);
}

.hero-slider .slick-dots>li>button {
    display: none;
}


.hero-slider .slick-dots li:first-child::before,
.hero-slider .slick-dots li:last-child::after {
    content: '';
    position: absolute;
    outline: 1px solid var(--light-white);
    height: 70px;
    outline-width: 1px;
    --top-space: calc(100% + var(--dots-gap));
}

.hero-slider .slick-dots li:first-child::before {
    bottom: var(--top-space);
}

.hero-slider .slick-dots li:last-child::after {
    top: var(--top-space);
}

.video-toggle img {
    display: none;
}

.video-toggle .active-playpause {
    display: block;
}

@media(max-width:1650px) {
    .hero-contnent-inner .video-toggle {
        width: 75px;
        height: 75px;
    }
}

@media(max-width:1399px) {
    .hero-contnent-inner .video-toggle>img {
        width: 25px;
    }

    .hero-contnent-inner .video-toggle {
        width: 60px;
        height: 60px;
    }

    .hero-slider .slick-dots li:first-child::before,
    .hero-slider .slick-dots li:last-child::after {
        height: 65px;
    }

}

@media(max-width:1199px) {
    .hero-contnent-inner .video-toggle>img {
        width: 18px;
    }

    .hero-contnent-inner .video-toggle {
        width: 50px;
        height: 50px;
    }

    .hero-slider .slick-dots li:first-child::before,
    .hero-slider .slick-dots li:last-child::after {
        height: 55px;
    }
}

@media(max-width:991px) {
    .hero-contnent-inner .video-toggle>img {
        width: 14px;
    }

    .hero-contnent-inner .video-toggle::after {
        width: calc(100% + 10px);
        height: calc(100% + 10px);
    }

    .hero-contnent-inner .video-toggle {
        width: 35px;
        height: 35px;
    }

    .hero-slider .slick-dots li:first-child::before,
    .hero-slider .slick-dots li:last-child::after {
        height: 35px;
    }

    .hero-slider .slick-dots {
        --dots-gap: 10px;
    }

    .hero-section .hero-slider {
        min-height: 550px;
        height: 65vh;
    }
}

@media(max-width:767px) {
    .hero-contnent-inner .video-toggle {
        width: 30px;
        height: 30px;
    }

    .hero-slider .slick-dots li:first-child::before,
    .hero-slider .slick-dots li:last-child::after {
        height: 25px;
    }
}

@media(max-width:575px) {
    .hero-contnent-inner .video-toggle {
        margin-left: auto;
    }

    .hero-heading {
        width: 100%;
    }

    .hero-contnent-inner .video-toggle::after {
        width: calc(100% + 7px);
        height: calc(100% + 7px);
    }

    .hero-contnent-inner .video-toggle::before {
        width: 20px;
    }

    .hero-slider .slick-dots {
        grid-gap: 5px;
    }

    .hero-slider .slick-dots li:first-child::before,
    .hero-slider .slick-dots li:last-child::after {
        height: 15px;
    }

    .hero-contnent-inner .video-toggle>img {
        width: 12px;
    }

    .hero-slider .slick-dots>li {
        width: 8px;
        height: 8px;
    }

    .person-border::after {
        right: 0;
        bottom: 0;
    }

    .hero-heading>br {
        display: none;
    }

    .hero-heading::after {
        width: 100px;
    }
}

@media(max-width: 575px) {
    .hero-heading::after {
        width: 80px;
    }
}

/* ============================ >> Hero sectio Close << ============================*/
/* ============================ >> Under Hero sectio Start << ============================*/
.hero-content>.hero-video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.under-hero-section {
    /* padding: var(--space-300) 0; */
    overflow: hidden;
    background: transparent linear-gradient(180deg, rgba(234, 122, 0, 0.06) 0%, rgba(219, 151, 83, 0.06) 100%) 0% 0% no-repeat padding-box;
}

.under-hero-section::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    background-image: url('../images/under-hero-top.png');
    width: 295px;
    height: 295px;
    z-index: -1;
    background-position: right;
    background-size: contain;
    transform: rotate(166deg);
}

.under-hero-section::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 100%;
    background-image: url('../images/under-hero-top.png');
    width: 250px;
    height: 250px;
    z-index: -1;
    background-position: top;
    background-size: contain;
}

.under-hero-section .under-hero-slider-wrap {
    overflow: hidden;
    grid-gap: clamp(10px, 4vw, var(--space-30));
}

.under-hero-slider-wrap.even {
    flex-direction: row-reverse;
}


.under-hero-slider-wrap>.under-hero-image {
    width: 33.3%;
}

.under-hero-content>.under-hero-heading {
    line-height: 1.5;
}

.under-hero-slider-wrap .under-hero-content {
    flex: 1;
}

.under-hero-slider-wrap>img {
    object-fit: contain;
    object-position: center;
    width: 100%;
    aspect-ratio: 1/1;
}

@media(max-width:991px) {
    .under-hero-section {
        padding: var(--space-300) 0;
    }

    .under-hero-slider-wrap>.under-hero-image {
        width: 100%;
    }

    .under-hero-top-image .fullScrollRow+.fullScrollRow {
        margin-top: 100px;
    }

    .under-hero-content>.under-hero-heading {
        text-align: center;
    }
}


/* ============================ >> Uner Hero sectio Close << ============================*/
/* ============================ >> Under Hero Section Start here << ============================*/
.intro-sec {
    padding: var(--space-210) 0;
    overflow: hidden;
}

.intro-sec::before {
    content: '';
    background-image: url('../images/under-hero.png');
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
}

.intro-sec::after {
    content: '';
    background-image: url('../images/star.svg');
    width: 142px;
    position: absolute;
    bottom: 11%;
    left: 1%;
    background-size: contain;
    height: 142px;
    background-repeat: no-repeat;
    background-position: left;
}

.intro-head>.intor-title {
    padding-bottom: var(--space-20);
    line-height: 1.4;
}

.intro-head>.intro-desc {
    line-height: 1.4;
    padding-bottom: var(--space-60);
}


.intro-sec .work-process-row {
    padding-top: var(--space-40);
    ---gap: 35px;
    gap: var(---gap);
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.work-process-row .work-process-column {
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 0 8px #0000001A;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2) no-repeat padding-box;
    align-items: center;
    padding: var(--space-40) var(--space-30);
    cursor: pointer;
}

.work-process-row .work-process-column:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 7px 0 var(--white);
}

.work-process-column .work-process-icon {
    border: 1px solid var(--white);
    width: 110px;
    height: 110px;
    background-color: var(--white);
}

.work-process-icon>img {
    width: 50px;
    object-fit: contain;
    object-position: center;
    aspect-ratio: 1/1;
}

.work-process-column .work-process-title {
    padding: var(--space-30) 0 var(--space-15);
    line-height: 1.2;
}

.work-process-column .work-process-desc {
    line-height: 1.4;
}

.intro-sec .work-process-videoWrap {
    padding-top: var(--space-30);
    margin-left: auto;
    width: 100%;
    max-width: max-content;
    align-items: center;
}

.work-process-videoWrap .process-video-toggle {
    width: 87px;
    height: 87px;
    cursor: pointer;
    background-color: var(--white);
}

.work-process-videoWrap .process-video-toggle::before {
    content: '';
    position: absolute;
    width: clamp(40px, 4vw, 80px);
    right: calc(100% + 12px);
    top: 50%;
    height: 2px;
    transform: translateY(-50%);
    border: none;
    background-image: repeating-linear-gradient(90deg, #ffffff, #ffffff 8px, transparent 7px, transparent 12px);
    background-size: 100%;
}

.work-process-videoWrap .process-video-toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    outline: 2px dashed var(--white);
    width: calc(100% + 16px);
    height: calc(100% + 16px);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
}

.work-process-videoWrap .process-video-text {
    padding-right: var(--space-100);
}

.work-process-videoWrap .process-video-toggle>img {
    width: 31px;
    object-fit: contain;
    object-position: center;
}

/* video Popup */
.popup-wrap>.popup-inner {
    max-width: 1150px;
    width: calc(100% - 30px);
    margin: 0 auto;
    border-radius: 12px;
    position: relative;
}

.close-popup {
    text-align: end;
    position: absolute;
    right: -10px;
    cursor: pointer;
    top: -10px;
    z-index: 1;
    background-color: var(--white);
    display: flex;
    height: 30px;
    align-items: center;
    width: 30px;
    justify-content: center;
    border-radius: 100%;
}

.close-popup>img {
    max-width: 15px;
}

.close-popup video {
    width: 100%;
}

.popup-inner video {
    width: 100%;
    border-radius: 5px;
    aspect-ratio: 16/9;
}

@media(max-width: 1699px) {
    .work-process-videoWrap .process-video-toggle {
        width: 75px;
        height: 75px;
    }

    .intro-head>.intor-title {
        padding-bottom: var(--space-15);
    }

    .intro-head>.intro-desc {
        padding-bottom: var(--space-50);
    }

    .intro-sec .work-process-row {
        padding-top: var(--space-30);
        ---gap: 30px;
    }

    .work-process-row .work-process-column {
        padding: var(--space-30) 25px;
    }

    .work-process-column .work-process-icon {
        width: 90px;
        height: 90px;
    }
}

@media(max-width: 1399px) {
    .work-process-videoWrap .process-video-toggle {
        width: 60px;
        height: 60px;
    }

    .work-process-videoWrap .process-video-toggle>img {
        width: 25px;
    }

    .work-process-column .work-process-icon {
        width: 80px;
        height: 80px;
    }

    .intro-head>.intor-title {
        padding-bottom: var(--space-15);
    }

    .intro-head>.intro-desc {
        padding-bottom: var(--space-40);
    }

    .work-process-column .work-process-title {
        padding: var(--space-20) 0 var(--space-15);
    }

    .intro-sec .work-process-row {
        padding-top: var(--space-20);
        ---gap: 30px;
    }

    .work-process-row .work-process-column {
        padding: var(--space-30) var(--space-20);
    }

    .intro-sec::after {
        bottom: 6%;
    }
}

@media(max-width:1199px) {
    .work-process-row .work-process-column {
        padding: var(--space-30) var(--space-20);
    }

    .work-process-videoWrap .process-video-toggle>img {
        width: 18px;
    }

    .work-process-videoWrap .process-video-toggle {
        width: 50px;
        height: 50px;
    }

    .intro-sec .work-process-row {
        padding-top: var(--space-15);
        ---gap: 25px;
    }

    .intro-head>.intro-desc {
        padding-bottom: var(--space-30);
    }

}

@media(max-width:991px) {
    .intro-sec .work-process-row {
        grid-template-columns: 1fr 1fr;
    }

    .close-popup {
        height: 25px;
        width: 25px;
    }

    .work-process-videoWrap .process-video-toggle>img {
        width: 14px;
    }

    .work-process-videoWrap .process-video-toggle {
        width: 35px;
        height: 35px;
    }

    .intro-sec .work-process-row {
        ---gap: 20px;
    }

    .intro-sec::after {
        bottom: 0;
    }

    .work-process-videoWrap .process-video-toggle::after {
        width: calc(100% + 10px);
        height: calc(100% + 10px);
    }

    .close-popup>img {
        max-width: 10px;
    }
}

@media(max-width:767px) {
    .intro-sec .work-process-row {
        grid-template-columns: 1fr;
    }

    .close-popup {
        height: 20px;
        width: 20px;
    }

    .intro-sec .work-process-row {
        ---gap: 15px;
    }
}

@media(max-width:575px) {
    .work-process-videoWrap .process-video-text {
        padding-right: var(--space-60);
    }

    .work-process-videoWrap .process-video-toggle>img {
        width: 12px;
    }

    .work-process-videoWrap .process-video-toggle::after {
        width: calc(100% + 7px);
        height: calc(100% + 7px);
    }

    .intro-sec::after {
        bottom: -1%;
        width: 100px;
    }
}

/* ============================ >> The Power of Participation Section Start here << ============================*/
.power-part-section {
    padding: var(--space-110) 0;
    overflow: hidden;
}

.power-part-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: url('../images/power-bg-bottom.png');
    width: 100%;
    height: 100px;
    z-index: -1;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.power-part-section .power-part-header {
    padding-bottom: var(--space-60);
}

.power-part-header .power-part-title {
    padding-bottom: var(--space-20);
    line-height: 1.2;
}

.power-part-inner-wrap .power-part-inner>.power-part-image {
    width: 29.4%;
    text-align: right;
    --orange-box: 40px;
}

.power-part-inner-wrap .power-part-inner:not(:last-child) {
    padding-bottom: var(--space-60);
}

.power-part-inner-wrap .power-part-inner {
    grid-gap: clamp(10px, 4vw, var(--space-20));
}

.power-part-inner.even-power-col .power-part-image {
    order: 1;
    text-align: left;
}

.power-part-inner.even-power-col .power-part-info {
    order: 2;
}

.power-part-inner-wrap .power-part-inner .power-part-info {
    width: 48.6%;
}

.power-part-info .power-info-title {
    padding-bottom: var(--space-30);
    line-height: 1.3;
}

.power-part-info .power-info-description {
    line-height: 1.5;
}

.power-part-image>img {
    object-fit: contain;
    object-position: center;
    width: calc(100% - var(--orange-box));
}

.power-part-image::before {
    content: '';
    position: absolute;
    top: 50%;
    width: var(--orange-box);
    height: 80%;
    background: linear-gradient(to bottom, rgba(234, 122, 0, 1), rgba(219, 151, 83, 1));
    z-index: -1;
    transform: translateY(-50%);
}

.power-part-inner.even-power-col .power-part-image::before {
    right: 0;
    content: '';
}

.power-part-inner.odd-power-col .power-part-image::before {
    left: 0;
    content: '';
}

@media(max-width:1650px) {
    .power-part-inner-wrap .power-part-inner:not(:last-child) {
        padding-bottom: var(--space-50);
    }

    .power-part-section .power-part-header {
        padding-bottom: var(--space-50);
    }

    .power-part-info .power-info-title {
        padding-bottom: 25px;
    }

    .power-part-header .power-part-title {
        padding-bottom: var(--space-15);
    }

}

@media(max-width:1399px) {
    .power-part-section .power-part-header {
        padding-bottom: var(--space-40);
    }

    .power-part-inner-wrap .power-part-inner:not(:last-child) {
        padding-bottom: var(--space-40);
    }

    .power-part-header .power-part-title {
        padding-bottom: clamp(10px, 4vw, var(--space-15));
    }

    .power-part-info .power-info-title {
        padding-bottom: var(--space-20);
    }
}

@media(max-width:1199px) {
    .power-part-section .power-part-header {
        padding-bottom: var(--space-30);
    }

    .power-part-info .power-info-title {
        padding-bottom: var(--space-15);
    }


    .power-part-inner-wrap .power-part-inner>.power-part-image {
        --orange-box: 30px;
    }
}

@media(max-width:991px) {
    .power-part-inner-wrap .power-part-inner>.power-part-image {
        --orange-box: 20px;
    }

    .power-part-section .power-part-header {
        padding-bottom: 25px;
    }

    .power-part-info .power-info-title {
        padding-bottom: 12px;
    }
}

@media(max-width:767px) {
    .power-part-inner-wrap .power-part-inner>.power-part-image {
        width: 100%;
    }

    .power-part-inner-wrap .power-part-inner>.power-part-image {
        --orange-box: 15px;
    }

    .power-part-info .power-info-title {
        padding-bottom: var(--space-10);
    }

    .power-part-section .power-part-header {
        padding-bottom: var(--space-20);
    }

    .intro-head>.intro-desc {
        font-size: 15px;
    }

    .power-part-inner.even-power-col .power-part-image {
        order: 1;
    }

    .power-part-inner-wrap .power-part-inner .power-part-info {
        width: 100%;
        order: 2;
    }
}

/* ============================ >> The Power of Participation Section Close here << ============================*/
/* ============================ >> Celebrating the Impact Section Start here << ============================*/
.celebrating-impact-section {
    background-image: url('../images/slider-bottom.png');
    width: 100%;
    height: 3697px;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.celebrating-impact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #DB9753 0% 0% no-repeat padding-box;
    opacity: 0.9;
    z-index: -1;
}

.celebrating-impact-section .celebrating-wrap {
    height: 100vh;
    overflow: hidden;
    position: sticky;
    top: 0;
}

.celebrating-wrap .container {
    height: 100%;
}

.celebrating-wrap .celebrating-impact-inner {
    display: flex;
    height: 100%;
    align-items: center;
    grid-gap: clamp(10px, 2.5vw, 40px);
    transition: all 0.7s linear;
}

.celebrating-impact-inner .celebrating-impact-data {
    width: 599px;
    min-width: 599px;
}

.celebrating-impact-data .impact-title {
    padding-bottom: clamp(10px, 2.5vw, var(--space-20));
    line-height: 1.3;
}

.celebrating-impact-data .imapct-desc {
    line-height: 1.6;
}

.celebrating-impact-inner .celebrating-impact-card {
    position: relative;
    transition: all 0.7s linear;
    width: 420px;
    min-width: 420px;
    height: 510px;
}

.celebrating-impact-card .impact-card-wrap {
    height: 100%;
    overflow: hidden;
    border-radius: 24px;
}

.celebrating-impact-card .impact-card-wrap>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.celebrating-impact-card .celbrate-sub-heading {
    position: absolute;
    top: 25px;
    left: 20px;
    z-index: 1;
    line-height: 1.3;
    text-transform: capitalize;
    width: calc(100% - 35px);
    max-width: 363px;
}

.join-us-form .captcha-wrap span {
    width: 100%;
    padding-top: var(--space-20);
    border-radius: 12px;
    border-color: #DBDBDB;
    color: var(--very-dark-gray);
    font-size: clamp(14px, 2.5vw, var(--fs-18));
}

.cf7ic_instructions>span {
    color: var(--primary) !IMPORTANT;
}

.captcha-image label {
    color: var(--primary);
}

.captcha-image label>input:checked+svg,
.captcha-image label>input:focus+svg {
    border: 2px solid var(--primary) !important;
}

@media(max-width:1399px) {
    .celebrating-impact-inner .celebrating-impact-card {
        height: 470px;
        width: 386px;
        min-width: 386px;
    }
}

@media (max-width: 1199px) {
    .celebrating-impact-inner .celebrating-impact-card {
        height: 440px;
        width: 362px;
        min-width: 362px;
    }
}

@media(max-width: 991px) {
    .celebrating-impact-inner .celebrating-impact-card {
        height: 400px;
        width: 329px;
        min-width: 329px;
    }
}

@media(max-width:767px) {
    .celebrating-impact-inner .celebrating-impact-data {
        width: 450px;
        min-width: 450px;
    }

    .celebrating-impact-inner .celebrating-impact-card {
        height: 372px;
        width: 305px;
        min-width: 305px;
    }
}

@media(max-width:575px) {

    /* .celebrating-impact-section {
        height: 4500px;
    } */

    .celebrating-impact-inner .celebrating-impact-data {
        width: 275px;
        min-width: 275px;
    }

}

/* ============================ >> Celebrating the Impact Section Close here << ============================*/
/* ============================ >> All around us are starfish Section Start here << ============================*/
.community-sec {
    padding: var(--space-110) 0;
    overflow: hidden;
}

.community-wrap-heading>.community-heading {
    line-height: 1.4;
    padding-bottom: var(--space-80);
}

.community-main-wrap .community-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    grid-gap: 25px;
}

.community-wrap .community-image {
    width: 100%;
    box-shadow: 1px 4px 16px #5A5A5A1A;
    padding: 9px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.community-wrap .community-image .hidden {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.community-wrap .community-image .visible {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.community-wrap .community-image .community-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.community-image>a>img {
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 24px;
    transition: 0.5s cubic-bezier(0.4, 0, 1, 1);
    transform: scale(1);
    height: 100%;
    cursor: pointer;
}

.community-image>a>img:hover {
    transform: scale(1.1);
}

.rember-heading {
    width: 100%;
    max-width: 1011px;
    margin: 0 auto;
}

.rember-heading>p {
    font-family: var(--font-gluten);
    margin: var(--space-80) auto 0;
}

.rember-heading>p>span,
.rember-heading .remeber-left>span {
    color: var(--primary);
}

.rember-heading .remeber-left {
    text-align: end;
    font-weight: 600;
    font-family: var(--font-gluten);
}

.communit-button-wrap {
    border: 1px solid var(--primary);
    background: #EA7A00 0% 0% no-repeat padding-box;
    border-radius: 28px;
    opacity: 1;
    cursor: pointer;
    padding: 14px 22.7px;
    grid-gap: clamp(15px, 4vw, 17px);
    transition: all 0.5s ease-in-out;
}

.communit-button-wrap>.join-us {
    line-height: 1.2;
    font-size: clamp(15px, 4vw, var(--fs-18));
}

.communit-button-wrap:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 8px var(--primary);
}

.communit-button-wrap>img {
    width: 13px;
    filter: brightness(0.5) invert(1);
}

@media(max-width:1650px) {
    .community-main-wrap .community-wrap {
        grid-gap: 22px;
    }

    .rember-heading>p {
        margin: var(--space-60) auto 0;
    }


    .community-wrap-heading>.community-heading {
        padding-bottom: var(--space-50);
    }
}

@media(max-width:1399px) {
    .community-main-wrap .community-wrap {
        grid-gap: var(--space-20);
    }

    .communit-button-wrap {
        padding: 14px 14px;
    }

    .rember-heading>p {
        margin: var(--space-50) auto 0;
    }

    .rember-heading {
        max-width: 900px;
    }

    .community-wrap-heading>.community-heading {
        padding-bottom: var(--space-40);
    }
}

@media(max-width:1199px) {

    .community-main-wrap .community-wrap {
        grid-gap: var(--space-15);
    }

    .communit-button-wrap {
        padding: 14px 22.27px;
    }

    .rember-heading>p {
        margin: var(--space-40) auto 0;
    }

    .rember-heading {
        max-width: 650px;
    }

    .community-wrap-heading>.community-heading {
        padding-bottom: var(--space-30);
    }

    .community-main-wrap .community-wrap {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media(max-width:991px) {

    .rember-heading>p {
        margin: var(--space-30) auto 0;
    }

    .rember-heading {
        max-width: 550px;
    }

    .community-main-wrap .community-wrap {
        grid-template-columns: repeat(2, 1fr);
    }

    .community-wrap-heading>.community-heading {
        padding-bottom: var(--space-30);
    }
}

@media(max-width:767px) {


    .rember-heading>p {
        margin: var(--space-20) auto 0;
    }

    .rember-heading {
        max-width: 550px;
    }

    .community-main-wrap .community-wrap {
        grid-template-columns: repeat(2, 1fr);
    }

    .community-wrap-heading>.community-heading {
        padding-bottom: var(--space-20);
    }
}

@media(max-width:767px) {

    .rember-heading {
        max-width: 500px;
    }

    .community-main-wrap .community-wrap {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 10px;
    }

    .community-wrap-heading>.community-heading {
        padding-bottom: var(--space-15);
    }

    .community-wrap-heading>.community-heading>br {
        display: none;
    }
}


/* ============================ >> All around us are starfish Section Close here << ============================*/
/* ============================ >> join Us page CSS Start Here << ============================*/
.join-us-section {
    background-color: var(--light-white);
    padding-block: calc(var(--header-bottom-space) + 93px) calc(var(--space-110) + 10px);
}

.join-us-section .join-us-wrap {
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
}

.join-us-wrap .join-us-desc {
    padding-bottom: var(--space-60);
    color: var(--dark-gray);
    line-height: 1.4;
}

.join-us-form-wrap {
    box-shadow: 0 0 9px #00000014;
    background-color: var(--white);
    border-radius: 20px;
    padding: var(--space-40) 32px;
}

.join-us-form-wrap .join-us-heading {
    color: var(--black);
    line-height: 1.3;
    padding-bottom: var(--space-50);
}

.form-fields-wrap .field-inner {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    grid-gap: 32px;
    padding: 13px 0;
}

.form-fields-wrap .field-inner:last-child {
    padding-bottom: 0;
}

.form-fields-wrap .field-inner:first-child {
    padding-top: 0;
}

.form-field>p {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.field-inner .form-field {
    width: 100%;
}

.form-field>p input,
.form-field>p span>select {
    width: 100%;
    border: 1px solid #DBDBDB;
    border-radius: 8px;
    padding: 14px 16px;
    font-size: clamp(12px, 4vw, 16px);
    color: var(--dark);
    font-weight: 400;
    line-height: 1.2;
    opacity: 0.7;
}

.form-field>p input::placeholder {
    font-size: clamp(12px, 4vw, 16px);
    color: var(--dark);
    font-weight: 400;
    line-height: 1.2;
    opacity: 0.5;
}

.field-inner .form-field>p>span .wpcf7-not-valid-tip {
    font-size: 14px;
    padding-top: 5px;
    font-weight: 400;
}

.field-inner .form-field>p>span .wpcf7-not-valid-tip+.wpcf7-not-valid-tip {
    display: none;
}

.form-field>p>span>select::placeholder {
    font-size: clamp(12px, 4vw, 16px);
    color: var(--dark);
    font-weight: 400;
    line-height: 1.2;
    opacity: 0.5;
}

.form-field>p span>select {
    background-color: transparent;
    appearance: none;
    background-image: url('../images/down-arrow.svg');
    background-size: 15px;
    background-repeat: no-repeat;
    background-position: calc(100% - 11px);
}

.form-field>p>label {
    font-size: clamp(12px, 4vw, 16px);
    color: var(--very-dark-gray);
    font-weight: 400;
    padding-bottom: 3px;
}

.form-field>p>label>span {
    color: var(--error);
    padding: 0 3px;
}

.join-us-form .submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: var(--wp--preset--spacing--60);
}

.join-us-form .submit-btn>p>input {
    background-color: var(--primary);
    border-style: none;
    padding: 14.9px 84.4px;
    border-radius: 28px;
    transition: 0.5s ease-in-out;
    font-size: var(--fs-18);
    color: var(--white);
    letter-spacing: 2.3px;
    font-weight: 400;
    cursor: pointer;
    cursor: pointer;
}

.join-us-form .submit-btn>p>input:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 7px var(--white);
}

.join-us-form .submit-btn>p {
    position: relative;
    width: fit-content;
}

.join-us-form .submit-btn .wpcf7-spinner {
    position: absolute;
    top: 50%;
    left: calc(100% + 10px);
    margin: 0;
    transform: translateY(-50%);
    background-color: var(--dark-blue);
    opacity: 1;
}

.join-us-form .wpcf7-response-output {
    text-align: center;
    font-size: clamp(15px, 2.5vw, var(--fs-18));
    line-height: 1.2;
}

.join-us-form .wpcf7-response-output:empty {
    display: none;
}

@media(max-width:1649px) {
    .join-us-section {
        padding-block: calc(var(--header-bottom-space) + var(--space-80)) calc(var(--space-100) + 10px);
    }

    .form-fields-wrap .field-inner {
        grid-gap: 28px;
    }

    .join-us-wrap .join-us-desc {
        padding-bottom: var(--space-50);
    }
}

@media(max-width:1399px) {
    .join-us-wrap .join-us-desc {
        padding-bottom: var(--space-40);
        font-size: var(--fs-18);
    }

    .form-fields-wrap .field-inner {
        grid-gap: 24px;
    }

    .join-us-form-wrap .join-us-heading {
        padding-bottom: var(--space-40);
    }

    .join-us-form .submit-btn {
        margin-top: var(--wp--preset--spacing--50);
    }

    .join-us-section {
        padding-block: calc(var(--header-bottom-space) + var(--space-60)) calc(var(--space-100) + 5px);
    }
}

@media(max-width:1199px) {
    .join-us-wrap .join-us-desc {
        padding-bottom: var(--space-30);
    }

    .form-fields-wrap .field-inner {
        grid-gap: 20px;
    }

    .join-us-form-wrap .join-us-heading {
        padding-bottom: var(--space-30);
    }

    .join-us-form-wrap {
        padding: var(--space-30) 25px;
    }

    .join-us-form .submit-btn {
        margin-top: var(--wp--preset--spacing--40);
    }

    .join-us-form-wrap {
        padding: var(--space-20) 20px;
    }

    .join-us-section {
        padding-block: calc(var(--header-bottom-space) + var(--space-50)) calc(var(--space-100) + 5px);
    }
}

@media(max-width:991px) {
    .join-us-wrap .join-us-desc {
        padding-bottom: var(--space-20);
        font-size: 16px;
    }

    .join-us-section {
        padding-block: calc(var(--header-bottom-space) + var(--space-40)) calc(var(--space-80) + 5px);
    }

    .form-fields-wrap .field-inner {
        grid-gap: 16px;
    }

    .join-us-form-wrap .join-us-heading {
        padding-bottom: var(--space-20);
    }

    .join-us-form .submit-btn {
        margin-top: var(--wp--preset--spacing--30);
    }
}

@media(max-width:767px) {
    .form-fields-wrap .field-inner {
        flex-direction: column;
    }

    .join-us-section {
        padding-block: calc(var(--header-bottom-space) + var(--space-20)) calc(var(--space-60) + 5px);
    }

    .join-us-wrap .join-us-desc {
        padding-bottom: var(--space-20);
    }

    .join-us-form-wrap .join-us-heading {
        padding-bottom: var(--space-15);
    }

    .join-us-form-wrap {
        padding: var(--space-15);
    }
}

@media(max-width:575pxpx) {
    .join-us-section {
        padding-block: calc(var(--header-bottom-space) + var(--space-20)) calc(var(--space-40) + 5px);
    }
}

/* ============================ >> join Us page CSS Close Here << ============================*/
/************* Lightbox CSS ******************/

.page-template-home-template .lightbox {
    position: fixed;
    top: 0 !important;
    left: 0 !important;
    height: 100vh;
    overflow: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    align-content: center;
}

.page-template-home-template .lightbox .lb-outerContainer,
.page-template-home-template .lightbox .lb-dataContainer {
    width: 100% !important;
    height: auto !important;
    background-color: transparent;
    padding: 15px;
    display: block !important;
    opacity: 1 !important;
}

.page-template-home-template .lightbox .lb-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.page-template-home-template .lightbox .lb-container .lb-image {
    width: 100% !important;
    height: auto !important;
    max-height: 500px;
    object-fit: cover;
    object-position: center;
    border-style: none;
    border-radius: 8px;
}

.page-template-home-template .lightbox .lb-container .lb-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.page-template-home-template .lb-nav .lb-prev,
.page-template-home-template .lb-nav .lb-next {
    opacity: 1 !important;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    background-size: 15px !important;
    background-position: center !important;
}

.page-template-home-template .lb-nav .lb-next {
    background-image: url('../images/right.svg') !important;
}

.page-template-home-template .lb-nav .lb-prev {
    background-image: url('../images/left.svg') !important;
}

.page-template-home-template .lightbox .lb-data {
    max-width: 900px;
    margin: 0 auto;
}

.page-template-home-template .lightbox .lb-closeContainer .lb-close {
    background-size: contain !important;
    background-position: center !important;
    width: 30px;
    filter: brightness(0.5) invert(1);
    height: 30px;
    opacity: 1 !important;
    background-image: url('../images/close.svg') !important;
}

.page-template-home-template .lightbox .lb-closeContainer {
    position: absolute;
    top: 25px;
    right: 25px;
}

.page-template-home-template .lightbox .lb-data .lb-details {
    width: 100%;
    text-align: center;
    float: none;
    line-height: 1;
    margin-top: 20px;
}

.page-template-home-template .lightbox .lb-data .lb-details .lb-number {
    padding-bottom: 0;
    font-size: var(--fs-18);
    color: var(--white);
    text-shadow: none;
    font-weight: 500;
    line-height: 1.2;
}

@media(max-width: 767px) {

    .page-template-home-template .lb-nav .lb-prev,
    .page-template-home-template .lb-nav .lb-next {
        width: 30px;
        height: 30px;
        background-size: 10px !important;
    }
}

@media(max-width: 575px) {

    .page-template-home-template .lb-nav .lb-prev,
    .page-template-home-template .lb-nav .lb-next {
        width: 25px;
        height: 25px;
        background-size: 8px !important;
    }
}

/* ============================ >> 404 page Start Here << ============================*/
.noPage-found-sec {
    padding-top: var(--header-bottom-space);
    margin: clamp(20px, 4vw, var(--space-50)) 0;
    padding-bottom: var(--header-bottom-space);
}

.noPage-inner .noPage-title {
    font-size: clamp(60px, 7vw, 120px);
    color: var(--primary);
    padding-bottom: var(--space-20);
    line-height: 1.4;
}

.noPage-inner .noPage-subTitle {
    font-size: clamp(22px, 4vw, 32px);
    padding-bottom: var(--space-15);
    color: var(--black);
    line-height: 1.2;
}

.noPage-inner .noPage-Desc {
    font-size: clamp(16px, 4vw, var(--fs-18));
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.3;
    color: var(--dark-gray);
    padding-bottom: var(--space-30);
}

.noPage-inner .backHome-button {
    background-color: var(--primary);
    color: var(--white);
    padding: clamp(12px, 4vw, 15px) clamp(30px, 4vw, 45px);
    border-radius: 28px;
    border: 1px solid var(--primary);
    margin-top: var(--space-20);
    transition: 0.2s ease-in-out;
    display: inline-block;
    background-image: url('../images/back-to-home.svg');
    background-repeat: no-repeat;
    background-size: 13px;
    background-position: clamp(10px, 4vw, 25px) center;
    font-size: clamp(16px, 4vw, var(--fs-18));
    font-weight: 500;
}

.noPage-inner .backHome-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 7px var(--primary);
}

@media(max-width: 575px) {
    .noPage-inner .noPage-Desc {
        max-width: 100%;
    }
}

/* ============================ >> 404 page Close Here << ============================*/