@charset "UTF-8";
/* ==============
 ========= css table of contents =========

 01. abstracts
     1.01 --> mixins
     1.02 --> variables

 02. base
     2.01 --> reset
     2.02 --> typography
     2.03 --> global

 03. components
     3.01 --> buttons
     3.02 --> forms
     3.03 --> preloader

 04. layout
     4.01 --> header
     4.02 --> banner
     4.03 --> footer

 05. sections
     5.01 --> partner
     5.02 --> difference
     5.03 --> help
     5.04 --> causes
     5.05 --> cta
     5.06 --> team
     5.07 --> community
     5.08 --> testimonial
     5.09 --> blog
     5.10 --> award
     5.11 --> faq
     5.12 --> overview
     5.13 --> donation
     5.14 --> counter
     5.15 --> event
     5.16 --> contact
     5.17 --> shop
     5.18 --> volunteer
     5.19 --> error
     5.20 --> coming soon
     5.21 --> color switcher

    ==================================
============== */
@import url("bootstrap.min.css");
@import url("../fonts/css/all.min.css");
@import url("../fonts/css/flag-icons.min.css");
@import url("../fonts/css/charifund.css");
@import url("magnific-popup.css");
@import url("aos.css");
/* @import url("nice-select.css"); */
@import url("odometer.css");
@import url("swiper-bundle.min.css");
@font-face {
    font-family: "Recoleta";
    src: url("../fonts/webfonts/recoleta-font-family.otf") format("opentype");
}
@font-face {
    font-family: "satoshi";
    src: url("../fonts/webfonts/Satoshi-Black.otf") format("opentype");
    src: url("../fonts/webfonts/Satoshi-BlackItalic.otf") format("opentype");
    src: url("../fonts/webfonts/Satoshi-Bold.otf") format("opentype");
    src: url("../fonts/webfonts/Satoshi-BoldItalic.otf") format("opentype");
    src: url("../fonts/webfonts/Satoshi-Italic.otf") format("opentype");
    src: url("../fonts/webfonts/Satoshi-Light.otf") format("opentype");
    src: url("../fonts/webfonts/Satoshi-LightItalic.otf") format("opentype");
    src: url("../fonts/webfonts/Satoshi-Medium.otf") format("opentype");
    src: url("../fonts/webfonts/Satoshi-MediumItalic.otf") format("opentype");
    src: url("../fonts/webfonts/Satoshi-Regular.otf") format("opentype");
}
/* @import url("https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@100..900&amp;display=swap"); */

/* ==== 
 --------- (1.01) mixins start ---------
 ==== */
/* ==== 
 --------- (1.01) mixins end ---------
 ==== */
/* ==== 
 --------- (1.02) variables start ---------
 ==== */
:root {
    --nunito: "Nunito", sans-serif;
    --nunito-sans: "Nunito Sans", sans-serif;
    --caveat: "Caveat", cursive;
    --outfit: "Outfit", sans-serif;
    --recoleta: "Recoleta", sans-serif;
    --satoshi: "Satoshi", sans-serif;
    --kumbh: "Kumbh Sans", sans-serif;
    --template-font: var(--nunito);
    --template-bg: #ffffff;
    --template-color: #667471;
    --white: #ffffff;
    --black: #000000;
    /* --primary-color: #046a58;*/
    --secondary-color: #0c141f;
    /*--tertiary-color: #046a58; */
    --main-color: #45aa02;
    --quinary-color: #061408;
    --septenary-color: #0c141f;
    --senary-color: #d9d9d9;
    /* --main-color: #6b5103; */
    --transition: all 0.5s ease;
    --shadow: 0px 10px 25px 0px rgba(37, 42, 52, 0.08);
    --shadow-secondary: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);
    --shadow-tertiary: 0px 4px 8px 0px rgba(0, 0, 0, 0.07);

    /* --primary-six: #479F10;
  --primary-six-title: #0B3D19;
  --primary-six-light: #0B3D19;
  
  --primary-seven-heading: #0E253A;
  --primary-seven-text: #4B5563;
  --primary-seven-body: #fcf8ed;
  
  --primary-eight: #ED5A2F; */
    --base-color: #ff5e13;
}

.recoleta-font {
    font-family: var(--recoleta);
}
.satoshi-font {
    font-family: var(--satoshi);
}

/* ==== 
 --------- (1.02) variables end ---------
 ==== */
/* ==== 
 --------- (2.01) reset styles start ---------
 ==== */
* {
    margin: 0px;
    padding: 0px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
*::-moz-selection {
    color: #ffffff;
    background-color: #1770c8;
}
*::selection {
    color: #ffffff;
    background-color: #1770c8;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    font-family: var(--template-font);
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: var(--template-color);
    background-color: var(--template-bg);
    overflow-x: clip;
    text-transform: capitalize;
}
body::-webkit-scrollbar {
    width: 5px;
}
body::-webkit-scrollbar-track {
    background-color: #b5c8d4;
    border-radius: 5px;
}
body::-webkit-scrollbar-button,
body::-webkit-scrollbar-thumb {
    background-color: #ff5e13;
    border-radius: 5px;
}

.body-active {
    height: 100vh;
    overflow: clip;
}

button {
    background-color: transparent;
    border: 0px;
    outline: 0px;
}

a,
button {
    text-decoration: none;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    outline: 0px;
    border: 0px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    cursor: pointer;
    color: var(--template-color);
}
a i,
a span,
button i,
button span {
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}
a:hover,
button:hover {
    text-decoration: none;
    border: 0px;
    outline: 0px;
}
a:focus,
button:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: 0px;
}

ul,
ol {
    list-style-type: none;
    list-style-position: inside;
    margin: 0px;
    padding: 0px;
}

hr,
blockquote,
textarea {
    margin: 0px;
    opacity: 1;
}

input,
textarea {
    border: 0px;
    outline: 0px;
}
input:focus,
textarea:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0px;
}

input[type="number"] {
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
    appearance: textfield;
}

input[type="checkbox"] {
    width: 15px;
    height: 15px;
    border-color: var(--base-color);
    margin-right: 10px;
}

input[type="checkbox"]:checked,
input[type="radio"]:checked {
    background-color: var(--base-color);
    border-color: var(--base-color);
}

input[type="checkbox"]:focus,
input[type="radio"]:focus {
    border-color: #f79a6e;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(255, 94, 19, 0.25);
}

textarea {
    min-height: 150px;
    resize: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0px;
}

iframe {
    border: 0px;
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    padding: 0px;
    margin: 0px;
    color: var(--template-color);
    font-family: var(--nunito);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--nunito);
}

/* ==== 
 --------- (2.01) reset styles end ---------
 ==== */
/* ==== 
 --------- (2.02) typography styles start ---------
 ==== */
p,
th,
td,
li,
input,
textarea,
select,
label,
blockquote,
span {
    font-size: 16px;
    line-height: 25px;
    word-spacing: 4px;
    font-weight: 400;
    color: var(--template-color);
}

a,
button {
    font-size: 16px;
    line-height: 24px;
}

h1 {
    font-size: 30px;
    line-height: 40px;
}

h2 {
    font-size: 30px;
    line-height: 40px;
}

h3 {
    font-size: 24px;
    line-height: 34px;
}

h4 {
    font-size: 20px;
    line-height: 30px;
}

h5 {
    font-size: 20px;
    line-height: 30px;
}

h6 {
    font-size: 18px;
    line-height: 28px;
}

h1 a,
h1 span,
h2 a,
h2 span,
h3 a,
h3 span,
h4 a,
h4 span,
h5 a,
h5 span,
h6 a,
h6 span,
p a,
p span {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--nunito);
}

/* ==== 
 --------- (2.02) typography styles end ---------
 ==== */
/* ==== 
 --------- (2.03) global styles start ---------
 ==== */
img {
    max-width: 100%;
    height: auto;
    border: 0px;
    outline: 0px;
    -o-object-fit: cover;
    object-fit: cover;
}

i {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

span {
    display: inline-block;
}

.gutter-12 {
    row-gap: 12px;
}

.gutter-24 {
    row-gap: 24px;
}

.gutter-30 {
    row-gap: 30px;
}

.gutter-40 {
    row-gap: 40px;
}

.gutter-60 {
    row-gap: 60px;
}

.gutter-80 {
    row-gap: 80px;
}

/* div {
  line-height: 0px !important;
} */

.cursor-outer {
    -webkit-margin-start: -12px;
    margin-inline-start: -12px;
    margin-top: -12px;
    width: 30px;
    height: 30px;
    border: 1px solid var(--base-color);
    background-color: var(--base-color);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 10000000;
    opacity: 0.34;
    -webkit-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
}

.mouseCursor {
    position: fixed;
    top: 0;
    inset-inline-start: 0;
    inset-inline-end: 0;
    bottom: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
    text-align: center;
}

.cursor-inner {
    -webkit-margin-start: -3px;
    margin-inline-start: -3px;
    margin-top: -3px;
    width: 10px;
    height: 10px;
    z-index: 10000001;
    background-color: var(--base-color);
    opacity: 1;
    -webkit-transition: all 0.24s ease-out 0s;
    transition: all 0.24s ease-out 0s;
}
/* Hide by default */
.cursor-outer,
.cursor-inner,
.mouseCursor {
    display: none;
}

/* Show only on laptop/desktop (min-width: 1024px) */
@media screen and (min-width: 1024px) {
    .cursor-outer,
    .cursor-inner,
    .mouseCursor {
        display: block;
    }
}

/* .cursor-outer.cursor-hover {
    opacity: 0.14;
} */
/* .cursor-outer.cursor-big {
    opacity: 0;
} */
/* .mouseCursor.cursor-big {
    width: 20px;
    height: 20px;
    -webkit-margin-start: -12px;
    margin-inline-start: -12px;
    margin-top: -12px;
} */
/* .cursor-inner span {
    color: var(--theme-color);
    line-height: 60px;
    opacity: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
} */
/* .cursor-inner.cursor-big span {
    opacity: 1;
} */
/* .cursor-inner.cursor-hover {
    -webkit-margin-start: -10px;
    margin-inline-start: -10px;
    margin-top: -10px;
    width: 30px;
    height: 30px;
    background-color: transparent;
    border: 1px solid #686363;
    opacity: 0;
} */

.progress-wrap {
    position: fixed;
    inset-inline-end: 30px;
    bottom: 30px;
    height: 50px;
    width: 50px;
    padding: 6px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    background-color: #f5af8e;
    -webkit-box-shadow: inset 0 0 0 8px #f3b091;
    box-shadow: inset 0 0 0 8px #f3b091;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(15px);
    -ms-transform: translateY(15px);
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    z-index: 99;
    overflow: hidden;
}
.progress-wrap span {
    position: absolute;
    top: 50%;
    inset-inline-start: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 34px;
    height: 34px;
    background-color: var(--white);
    border-radius: 50%;
    overflow: hidden;
}
.progress-wrap span::after {
    content: "\f176";
    font-family: "Font Awesome 6 Free";
    font-weight: 700;
    position: absolute;
    text-align: center;
    line-height: 34px;
    font-size: 18px;
    border-radius: 50%;
    color: #ff5e13;
    inset-inline-start: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, 200%);
    -ms-transform: translate(-50%, 200%);
    transform: translate(-50%, 200%);
    height: 34px;
    width: 34px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap span::before {
    position: absolute;
    content: "\f176";
    font-family: "Font Awesome 6 Free";
    font-weight: 700;
    text-align: center;
    line-height: 34px;
    font-size: 18px;
    border-radius: 50%;
    color: #ff5e13;
    inset-inline-start: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 34px;
    width: 34px;
    cursor: pointer;
    display: block;
    z-index: 2;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap:hover span::before {
    -webkit-transform: translate(-50%, -200%);
    -ms-transform: translate(-50%, -200%);
    transform: translate(-50%, -200%);
}
.progress-wrap:hover span::after {
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.progress-wrap path {
    fill: none;
}
.progress-wrap .progress-circle path {
    stroke: #ff5e13;
    stroke-width: 4;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.active-progress {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.pt-200 {
    padding-top: 200px !important;
}

.social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
}
.social a {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.72);
}
.social a:hover {
    color: var(--base-color);
}

.section__header {
    margin-bottom: 34px;
}
.section__header span {
    font-weight: 700;
    color: var(--main-color);
}
.section__header h2 {
    color: var(--secondary-color);
    font-weight: 800;
    margin-top: 15px;
}
.section__header h2 span {
    color: var(--base-color);
}
.section__header p {
    font-weight: 500;
    max-width: 780px;
    margin-inline: auto;
    margin-top: 20px;
}

.section__header-secondary {
    margin-bottom: 40px;
}

.section__header-light {
    margin-bottom: 40px;
}
.section__header-light span {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-top: -8px;
}
.section__header-light h2 {
    color: var(--white);
    font-weight: 600;
    margin: 16px 0px 30px;
}
.section__header-light .icon-thumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 12px;
}
.section__header-light .icon-thumb .icon-thumb-single {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 3px;
    line-height: 0px;
    padding-bottom: 4px;
}
.section__header-light .icon-thumb .icon-thumb-single:nth-of-type(2) {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.section__header-light .icon-thumb span {
    width: 70px;
    height: 1px;
    background-color: var(--white);
    display: inline-block;
    line-height: 0px;
}
.section__header-light .icon-thumb span:nth-of-type(2) {
    width: 56px;
}

.section__content .sub-title {
    color: var(--main-color);
}
.section__content h2 {
    font-weight: 800;
    color: var(--secondary-color);
    margin-top: 3px;
    font-size: 30px;
    line-height: 45px;
}
.section__content h2 span {
    color: var(--base-color);
}
.section__content p {
    margin-top: 10px;
    max-width: 630px;
}

@media (max-width: 767px) {
    .section__content h2 {
        font-size: 25px;
        line-height: 35px;
    }
}

.video-btn-wrapper {
    position: absolute;
    top: 50%;
    inset-inline-start: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 4;
}
.video-btn-wrapper .open-video-popup {
    width: 80px;
    height: 80px;
    background: var(--base-color);
    border-radius: 100%;
    position: relative;
    -webkit-animation: pulse-shadow 3s 2s linear infinite;
    animation: pulse-shadow 3s 2s linear infinite;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 1;
}
.video-btn-wrapper .open-video-popup i {
    font-size: 20px;
    color: #ffffff;
}
@-webkit-keyframes pulse-shadow {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.6);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.6);
    }
    100% {
        -webkit-box-shadow: 0 0 0 85px rgba(0, 0, 0, 0);
        box-shadow: 0 0 0 85px rgba(0, 0, 0, 0);
    }
}
@keyframes pulse-shadow {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.6);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.6);
    }
    100% {
        -webkit-box-shadow: 0 0 0 85px rgba(0, 0, 0, 0);
        box-shadow: 0 0 0 85px rgba(0, 0, 0, 0);
    }
}

.pagination-one .swiper-pagination-bullets {
    text-align: center;
}
.pagination-one .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: var(--white);
    border: 1px solid #707070;
    border-radius: 0px;
    opacity: 1;
    margin: 0px 5px;
}
.pagination-one .swiper-pagination-bullet-active {
    background-color: var(--base-color);
    border-radius: 50%;
}

.slider-navigation-two {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 10px;
    height: 100%;
}
.slider-navigation-two button {
    padding: 12px;
    background-color: var(--white);
    color: var(--base-color);
    font-size: 16px;
    font-weight: 700;
}
.slider-navigation-two button span {
    line-height: 1;
    font-weight: 700;
}
.slider-navigation-two button i {
    font-size: 16px;
}
.slider-navigation-two .prev-testimonial,
.slider-navigation-two .prev-area,
.slider-navigation-two .prev-testimonial-t,
.slider-navigation-two .prev-team-t,
.slider-navigation-two .prev-slide {
    background-color: var(--main-color);
    color: var(--white);
}
.slider-navigation-two .prev-testimonial span,
.slider-navigation-two .prev-area span,
.slider-navigation-two .prev-testimonial-t span,
.slider-navigation-two .prev-team-t span,
.slider-navigation-two .prev-slide span {
    display: none;
}
.slider-navigation-two .active span {
    display: block;
}
.slider-navigation-two .next-testimonial-t,
.slider-navigation-two .next-team-t {
    border: 1px solid var(--base-color);
}
.slider-navigation-two .prev-testimonial-t,
.slider-navigation-two .prev-team-t {
    border: 1px solid var(--main-color);
}

.breadcrumb {
    margin-bottom: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.breadcrumb .breadcrumb-item,
.breadcrumb a {
    color: #ffffff;
}
.breadcrumb a:hover {
    color: var(--white);
}
.breadcrumb .breadcrumb-item + .breadcrumb-item {
    -webkit-padding-start: 0px;
    padding-inline-start: 0px;
    color: var(--white);
}
.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    -webkit-padding-end: 12px;
    padding-inline-end: 12px;
    font-size: 20px;
    content: "::";
    font-family: "Font Awesome 6 Free";
    font-weight: 700;
    color: #ffffff;
    margin-top: -2px;
}
.breadcrumb .active {
    color: var(--white) !important;
}

.main-pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 12px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 40px;
}
.main-pagination button,
.main-pagination a {
    width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid #9eb3af;
    background-color: transparent;
    color: var(--black);
    -webkit-transition: var(--transition);
    transition: var(--transition);
    font-weight: 800;
    font-size: 14px;
}
.main-pagination button:hover,
.main-pagination a:hover {
    border-color: var(--base-color);
    background-color: var(--base-color);
    color: var(--black);
}
.main-pagination .active {
    border-color: var(--base-color);
    background-color: var(--base-color);
    color: var(--black);
}
.main-pagination button {
    background-color: var(--main-color);
    color: var(--white);
}
.main-pagination button:hover {
    background-color: var(--base-color);
    color: var(--black);
}

.parallax-image {
    -webkit-transform: scale(1.6);
    -ms-transform: scale(1.6);
    transform: scale(1.6);
    -webkit-transform-origin: 50% 100%;
    -ms-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
}

.parallax-image-wrap,
.parallax-image-inner {
    border-radius: inherit;
}

.title-animation {
    text-transform: lowercase !important;
}
.title-animation > div > div:nth-child(1) {
    text-transform: uppercase;
}
.title-animation > span > div > div:nth-child(1) {
    text-transform: uppercase;
}

.off-canvas {
    position: fixed;
    inset-inline-start: 0px;
    top: 0px;
    bottom: 0px;
    width: 100%;
    max-width: 360px;
    height: 100vh;
    min-height: 100vh;
    background-color: var(--white);
    z-index: 999999;
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
    -webkit-border-end: 5px solid var(--main-color);
    border-inline-end: 5px solid var(--main-color);
    -webkit-transition: var(--transition);
    transition: var(--transition);
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
}
.off-canvas .off-canvas__inner {
    width: 100%;
    height: 100%;
    padding: 40px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.off-canvas .off-canvas__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
}
.off-canvas .off-canvas__head button {
    background-color: transparent;
    font-size: 24px;
    color: var(--main-color);
}
.off-canvas .offcanvas__search {
    width: 100%;
}
.off-canvas .offcanvas__search form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 24px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid var(--black);
}
.off-canvas .offcanvas__search form input {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 10px 0px;
    color: var(--black);
}
.off-canvas .offcanvas__search form input::-webkit-input-placeholder {
    font-weight: 400;
    color: var(--black);
    font-size: 16px;
}
.off-canvas .offcanvas__search form input::-moz-placeholder {
    font-weight: 400;
    color: var(--black);
    font-size: 16px;
}
.off-canvas .offcanvas__search form input:-ms-input-placeholder {
    font-weight: 400;
    color: var(--black);
    font-size: 16px;
}
.off-canvas .offcanvas__search form input::-ms-input-placeholder {
    font-weight: 400;
    color: var(--black);
    font-size: 16px;
}
.off-canvas .offcanvas__search form input::placeholder {
    font-weight: 400;
    color: var(--black);
    font-size: 16px;
}
.off-canvas .offcanvas__search form button {
    background-color: transparent;
    font-size: 20px;
    color: var(--base-color);
}
.off-canvas .off-canvas__contact {
    width: 100%;
    text-align: start;
}
.off-canvas .off-canvas__contact h5 {
    color: var(--black);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 25px;
}
.off-canvas .off-canvas__contact .single {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 15px;
}
.off-canvas .off-canvas__contact .single span {
    width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid var(--main-color);
    color: var(--main-color);
}
.off-canvas .off-canvas__contact .single a {
    color: var(--black);
    text-transform: lowercase;
}
.off-canvas .off-canvas__contact .single a:hover {
    color: var(--main-color);
}
.off-canvas .social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 16px;
}
.off-canvas .social a {
    width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: var(--black);
    color: var(--white);
    font-size: 14px;
}
.off-canvas .social a:hover {
    background-color: var(--base-color);
    color: var(--black);
}

.off-canvas-active {
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
}

.off-canvas-backdrop {
    position: fixed;
    top: 0px;
    inset-inline-start: 0px;
    inset-inline-end: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(22, 22, 22, 0.5921568627);
    z-index: 99;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.off-canvas-backdrop-active {
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
    cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVBAMAAABbObilAAAAMFBMVEVMaXH////////////////////////////////////////////////////////////6w4mEAAAAD3RSTlMAlAX+BKLcA5+b6hJ7foD4ZP1OAAAAkUlEQVR4XkWPoQ3CUBQAL4SktoKAbCUjgAKLJZ2ABYosngTJCHSD6joUI6BZgqSoB/+Shqde7sS9x3OGk81fdO+texMtRVTia+TsQtHEUJLdohJfgNNPJHyEJPZTsWLoxShqsWITazEwqePAn69Sw2TUxk1+euPis3EwaXy8RMHSZBIlRcKKnC5hRctjMf57/wJbBlAIs9k1BAAAAABJRU5ErkJggg==),
        progress;
}

.sub-title {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    font-family: var(--caveat);
    color: var(--base-color);
    font-size: 19px;
    line-height: 34px;
    margin-top: -8px;
    font-weight: 500;
}

/* .cta {
  margin-top:20px;
} */

.slider-navigation .slider-btn {
    width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: var(--secondary-color);
    color: var(--white);
    font-size: 16px;
}
.slider-navigation .slider-btn:hover {
    background-color: var(--base-color);
    color: var(--black);
}
.slider-navigation .slider-btn-next {
    background-color: var(--base-color);
    color: var(--black);
}
.slider-navigation .slider-btn-next:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.bottom-line {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='196' height='15' viewBox='0 0 196 15' fill='none'%3E %3Cpath d='M1 13C42.1844 2.92057 142.978 -3.87406 195 9.2668' stroke='%23FBAD17' stroke-width='4'/%3E %3C/svg%3E");
}

.pagination-one {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.pagination-one .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #d6d1d1;
    opacity: 1;
    border: 0px solid transparent;
    display: inline-block;
}
.pagination-one .swiper-pagination-bullet-active {
    width: 25px;
    height: 25px;
    border: 1px solid var(--main-color);
    background-color: transparent;
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.pagination-one .swiper-pagination-bullet-active::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--main-color);
    border-radius: 50%;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background-color: #e9e9e9;
    border-radius: 10px;
    position: relative;
}
.progress-bar .progress-bar-percent {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    background-color: var(--base-color);
    border-radius: inherit;
}

.section__cta .btn--primary {
    padding: 18px 50px;
    border-radius: 60px;
    font-weight: 700;
    gap: 8px;
}
.section__cta .btn--primary::before,
.section__cta .btn--primary::after {
    border-radius: 0px;
}
.section__cta .btn--primary i {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: color 0s ease, -webkit-transform 0.5s ease;
    transition: color 0s ease, -webkit-transform 0.5s ease;
    transition: transform 0.5s ease, color 0s ease;
    transition: transform 0.5s ease, color 0s ease, -webkit-transform 0.5s ease;
    font-size: 18px;
}
.section__cta .btn--primary:hover i {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

.privacy {
    padding: 100px 0px;
    background-color: var(--white);
}
.privacy .privacy-group {
    margin-bottom: 60px;
    margin-top: -7px;
}
.privacy .privacy-group:nth-last-of-type(1) {
    margin-bottom: 0px;
}
.privacy .privacy-group h3 {
    font-weight: 600;
    color: var(--black);
}
.privacy .privacy-group p {
    margin-top: 20px;
    font-size: 18px;
}

/* ==== 
 --------- (2.03) global styles end ---------
 ==== */
/* ==== 
 --------- (3.01) buttons styles start ---------
 ==== */
/***** Main btn*****/

.btn--secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    font-size: 15px;
    background-color: var(--base-color);
    color: var(--secondary-color);
    font-weight: 600;
    border-radius: 50px;
    position: relative;
    z-index: 1;
    gap: 3px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn--secondary svg,
.btn--secondary i {
    width: 18px;
    height: 18px;
    display: inline-block;
    transform: rotate(-45deg); /* initial ↗ */
    transition: transform 0.4s ease; /* smooth rotation + movement */
}

.btn--secondary path {
    fill: #45aa02;
    transition: var(--transition);
}

.btn--secondary::before,
.btn--secondary::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    inset-inline-start: 0;
    width: 50%;
    height: 100%;
    background-color: var(--base-color);
    transition: var(--transition);
    z-index: -1;
}

.btn--secondary::after {
    inset-inline-start: unset;
    inset-inline-end: 0;
}

.btn--secondary:hover {
    color: var(--secondary-color);
    background-color: #45aa02;
}

.btn--secondary:hover path {
    fill: var(--secondary-color);
}

.btn--secondary:hover::before,
.btn--secondary:hover::after {
    width: 0%;
}

/* Animate arrow on hover */
.btn--secondary:hover svg,
.btn--secondary:hover i {
    transform: rotate(0deg) translateX(6px);
}

/***** Btn white *****/

.btn--secondary-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    font-size: 15px;
    background-color: var(--base-color);
    color: var(--secondary-color);
    font-weight: 600;
    border-radius: 50px;
    position: relative;
    z-index: 1;
    gap: 3px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn--secondary-white svg,
.btn--secondary-white i {
    width: 18px;
    height: 18px;
    display: inline-block;
    transform: rotate(-45deg); /* initial ↗ */
    transition: transform 0.4s ease; /* smooth rotation + movement */
}

.btn--secondary-white path {
    fill: #45aa02;
    transition: var(--transition);
}

.btn--secondary-white::before,
.btn--secondary-white::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    inset-inline-start: 0;
    width: 50%;
    height: 100%;
    background-color: var(--base-color);
    transition: var(--transition);
    z-index: -1;
}

.btn--secondary-white::after {
    inset-inline-start: unset;
    inset-inline-end: 0;
}

.btn--secondary-white:hover {
    color: var(--secondary-color);
    background-color: #45aa02;
}

.btn--secondary-white:hover path {
    fill: var(--secondary-color);
}

.btn--secondary-white:hover::before,
.btn--secondary-white:hover::after {
    width: 0%;
}

/* Animate arrow on hover */
.btn--secondary-white:hover svg,
.btn--secondary-white:hover i {
    transform: rotate(0deg) translateX(6px); /* rotate ↗ → → and slide right */
}

/* ==== 
 --------- (3.01) buttons styles end ---------
 ==== */
/* ==== 
 --------- (3.02) forms styles start ---------
 ==== */
/* .input-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}
.input-group .input-single {
    width: 100%;
}
.input-group input,
.input-group textarea {
    width: 100%;
    padding: 9px 16px;
    background-color: var(--white);
    border: 1px solid #707070;
    color: var(--main-color);
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
.input-group input:focus,
.input-group textarea:focus {
    border-color: var(--base-color);
}
.input-group input::-webkit-input-placeholder,
.input-group textarea::-webkit-input-placeholder {
    color: var(--main-color);
}
.input-group input::-moz-placeholder,
.input-group textarea::-moz-placeholder {
    color: var(--main-color);
}
.input-group input:-ms-input-placeholder,
.input-group textarea:-ms-input-placeholder {
    color: var(--main-color);
}
.input-group input::-ms-input-placeholder,
.input-group textarea::-ms-input-placeholder {
    color: var(--main-color);
}
.input-group input::placeholder,
.input-group textarea::placeholder {
    color: var(--main-color);
}
.input-group textarea {
    min-height: 300px;
}

.contact__form .input-single,
.checkout__form .input-single {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    padding: 0px 16px;
    border-radius: 8px !important;
    border: 2px solid #7e7e7e;
    background: #046150;
    width: auto;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin-bottom: 30px;
}
.contact__form .input-single:nth-last-of-type(1),
.checkout__form .input-single:nth-last-of-type(1) {
    margin-bottom: 0px;
}
.contact__form .input-single input,
.contact__form .input-single textarea,
.contact__form .input-single .nice-select,
.checkout__form .input-single input,
.checkout__form .input-single textarea,
.checkout__form .input-single .nice-select {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    background-color: transparent;
    color: var(--white);
    border: 0px;
    padding: 13px 0px;
}
.contact__form .input-single input::-webkit-input-placeholder,
.contact__form .input-single textarea::-webkit-input-placeholder,
.contact__form .input-single .nice-select::-webkit-input-placeholder,
.checkout__form .input-single input::-webkit-input-placeholder,
.checkout__form .input-single textarea::-webkit-input-placeholder,
.checkout__form .input-single .nice-select::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.5647058824);
}
.contact__form .input-single input::-moz-placeholder,
.contact__form .input-single textarea::-moz-placeholder,
.contact__form .input-single .nice-select::-moz-placeholder,
.checkout__form .input-single input::-moz-placeholder,
.checkout__form .input-single textarea::-moz-placeholder,
.checkout__form .input-single .nice-select::-moz-placeholder {
    color: rgba(255, 255, 255, 0.5647058824);
}
.contact__form .input-single input:-ms-input-placeholder,
.contact__form .input-single textarea:-ms-input-placeholder,
.contact__form .input-single .nice-select:-ms-input-placeholder,
.checkout__form .input-single input:-ms-input-placeholder,
.checkout__form .input-single textarea:-ms-input-placeholder,
.checkout__form .input-single .nice-select:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.5647058824);
}
.contact__form .input-single input::-ms-input-placeholder,
.contact__form .input-single textarea::-ms-input-placeholder,
.contact__form .input-single .nice-select::-ms-input-placeholder,
.checkout__form .input-single input::-ms-input-placeholder,
.checkout__form .input-single textarea::-ms-input-placeholder,
.checkout__form .input-single .nice-select::-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.5647058824);
}
.contact__form .input-single input::placeholder,
.contact__form .input-single textarea::placeholder,
.contact__form .input-single .nice-select::placeholder,
.checkout__form .input-single input::placeholder,
.checkout__form .input-single textarea::placeholder,
.checkout__form .input-single .nice-select::placeholder {
    color: rgba(255, 255, 255, 0.5647058824);
}
.contact__form .input-single i,
.checkout__form .input-single i {
    font-size: 18px;
    color: var(--base-color);
}
.contact__form .alter-input,
.checkout__form .alter-input {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.contact__form .alter-input i,
.checkout__form .alter-input i {
    margin-top: 20px;
}
.contact__form .input-group,
.checkout__form .input-group {
    margin-bottom: 30px;
}
.contact__form .input-group .input-single,
.checkout__form .input-group .input-single {
    margin-bottom: 0px;
}
.contact__form .form-cta,
.checkout__form .form-cta {
    margin-top: 40px;
}
.contact__form .btn--primary,
.checkout__form .btn--primary {
    padding: 18px 40px;
    border-radius: 60px;
    font-weight: 700;
    gap: 8px;
    background-color: var(--black);
}
.contact__form .btn--primary::before,
.contact__form .btn--primary::after,
.checkout__form .btn--primary::before,
.checkout__form .btn--primary::after {
    border-radius: 0px;
}
.contact__form .btn--primary i,
.checkout__form .btn--primary i {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: color 0s ease, -webkit-transform 0.5s ease;
    transition: color 0s ease, -webkit-transform 0.5s ease;
    transition: transform 0.5s ease, color 0s ease;
    transition: transform 0.5s ease, color 0s ease, -webkit-transform 0.5s ease;
    font-size: 18px;
}
.contact__form .btn--primary:hover,
.checkout__form .btn--primary:hover {
    color: var(--white);
}
.contact__form .btn--primary:hover i,
.checkout__form .btn--primary:hover i {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

.contact__form .input-single {
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.checkout__form .input-group .input-single {
    width: 100%;
}
.checkout__form .input-single {
    padding: 0px 20px;
    background-color: #efefef;
    border: 0px solid transparent;
}
.checkout__form .input-single input,
.checkout__form .input-single textarea {
    color: var(--black);
}
.checkout__form .input-single input::-webkit-input-placeholder,
.checkout__form .input-single textarea::-webkit-input-placeholder {
    color: #667471;
}
.checkout__form .input-single input::-moz-placeholder,
.checkout__form .input-single textarea::-moz-placeholder {
    color: #667471;
}
.checkout__form .input-single input:-ms-input-placeholder,
.checkout__form .input-single textarea:-ms-input-placeholder {
    color: #667471;
}
.checkout__form .input-single input::-ms-input-placeholder,
.checkout__form .input-single textarea::-ms-input-placeholder {
    color: #667471;
}
.checkout__form .input-single input::placeholder,
.checkout__form .input-single textarea::placeholder {
    color: #667471;
}
.checkout__form .input-single i {
    color: #adadad;
}
.checkout__form .nice-select {
    z-index: 9;
}
.checkout__form .btn--primary {
    width: 100%;
    border-radius: 8px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
} */

/********
--------------------------------------------------------------------------------
Footer Style
--------------------------------------------------------------------------------
*********/

/* .footer__newsletter-form {
  margin-top: 40px;
}
.footer__newsletter-form form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
}
.footer__newsletter-form form .input-icon {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 100%;
}
.footer__newsletter-form form input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1.2px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: white;
}
.footer__newsletter-form form input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.55);
}
.footer__newsletter-form form input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.55);
}
.footer__newsletter-form form input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.55);
}
.footer__newsletter-form form input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.55);
}
.footer__newsletter-form form input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}
.footer__newsletter-form form input:focus {
  border-color: var(--base-color);
}
.footer__newsletter-form form button {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 16px 24px;
  border-radius: 8px;
  min-width: 150px;
}
.footer__newsletter-form form button::before {
  border-radius: inherit;
} */

/* .input-icon {
  position: relative;
}
.input-icon input {
  -webkit-padding-start: 44px !important;
          padding-inline-start: 44px !important;
}
.input-icon i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  inset-inline-start: 16px;
} */
/* 
.footer-two__newsletter-form form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.footer-two__newsletter-form form .input-icon {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 100%;
}
.footer-two__newsletter-form form input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--white);
  color: var(--secondary-color);
}
.footer-two__newsletter-form form input::-webkit-input-placeholder {
  color: var(--template-color);
}
.footer-two__newsletter-form form input::-moz-placeholder {
  color: var(--template-color);
}
.footer-two__newsletter-form form input:-ms-input-placeholder {
  color: var(--template-color);
}
.footer-two__newsletter-form form input::-ms-input-placeholder {
  color: var(--template-color);
}
.footer-two__newsletter-form form input::placeholder {
  color: var(--template-color);
}
.footer-two__newsletter-form form button {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 16px 24px;
  border-radius: 8px;
  min-width: 60px;
  height: 54px;
}
.footer-two__newsletter-form form button::before, .footer-two__newsletter-form form button::after {
  border-radius: 0px;
} */

/* ==== 
 --------- (3.02) forms styles end ---------
 ==== */
/* ==== 
 --------- (3.03) preloader styles start ---------
 ==== */
.preloader {
    background-color: var(--black);
    position: fixed;
    z-index: 99999;
    height: 100vh;
    width: 100vw;
    inset: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
}
.preloader img {
    width: 100px;
    min-width: 100px;
    height: 100px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #fff;
    font-size: 40px;
    color: var(--black);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-animation: flipY 3s linear infinite;
    animation: flipY 3s linear infinite;
}
.preloader p {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 5px;
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#45aa02),
        color-stop(#2394e0),
        color-stop(#ff5e13),
        to(#45aa02)
    );
    background: linear-gradient(90deg, #45aa02, #2394e0, #ff5e13, #45aa02);
    background-size: 300%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent !important;
    -webkit-animation: moveBg 5s ease-in-out infinite;
    animation: moveBg 5s ease-in-out infinite;
}

@-webkit-keyframes flipY {
    0% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
    50% {
        -webkit-transform: rotateY(180deg);
        transform: rotateY(180deg);
    }
    100% {
        -webkit-transform: rotateY(360deg);
        transform: rotateY(360deg);
    }
}

@keyframes flipY {
    0% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
    50% {
        -webkit-transform: rotateY(180deg);
        transform: rotateY(180deg);
    }
    100% {
        -webkit-transform: rotateY(360deg);
        transform: rotateY(360deg);
    }
}
@-webkit-keyframes moveBg {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
@keyframes moveBg {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
/* ==== 
 --------- (3.03) preloader styles end ---------
 ==== */

/* ==== 
 --------- (4.01) header styles start ---------
 ==== */
.topbar {
    background-color: var(--secondary-color);
    padding-top: 11px;
    padding-bottom: 24px;
    /* position: absolute;
  top: 0px; */
    inset-inline-start: 0px;
    inset-inline-end: 0px;
}
.topbar .topbar__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 40px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.topbar .topbar__list li {
    line-height: 0px;
}
.topbar .topbar__list li:nth-of-type(1) i {
    font-size: 18px;
    margin-bottom: -2px;
}
.topbar .topbar__list a {
    font-size: 15px;
    line-height: 25px;
    color: var(--white);
    font-weight: 500;
    gap: 8px;
    text-transform: lowercase;
}
.topbar .topbar__list a i {
    color: var(--base-color);
}
.topbar .topbar__list a:hover {
    color: var(--base-color);
}
.topbar .topbar__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 40px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.topbar .select {
    background-color: transparent;
    border-radius: 0px;
    border: 0px;
    padding: 0px;
    -webkit-padding-end: 16px;
    padding-inline-end: 16px;
    z-index: 999;
}
.topbar .select .option {
    padding-inline: 18px !important;
}
.topbar .select::after {
    right: unset;
    inset-inline-end: 0px !important;
    width: 7px;
    height: 7px;
    border-color: var(--white);
    margin-top: -5px;
}
.topbar .select .option,
.topbar .select .current {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    line-height: 0px;
}
.topbar .select .option span,
.topbar .select .option i,
.topbar .select .current span,
.topbar .select .current i {
    width: 30px;
    height: 20px;
}
.topbar .select .current {
    color: var(--white);
    line-height: 1;
}
.topbar .select .list {
    padding: 12px 0px;
}

.topbar--secondary {
    padding: 0px;
    background-color: var(--white);
}
.topbar--secondary .topbar__inner {
    padding: 12px 24px 13px;
    width: calc(100% - 80px);
    margin-inline: auto;
    border-radius: 0px 0px 20px 17px;
    background-color: var(--secondary-color);
}
.topbar--secondary .container {
    max-width: 1800px !important;
}
.topbar--secondary .topbar__extra {
    direction: ltr;
}
.topbar--secondary .topbar__extra p {
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    color: var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.topbar--secondary .topbar__extra p i {
    font-size: 18px;
    color: var(--base-color);
}
.topbar--secondary .topbar__list,
.topbar--secondary .topbar__items {
    gap: 20px;
}
/* .topbar--secondary .country-select .current i {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 25px;
  height: 25px;
  border: 4px solid rgba(88, 88, 88, 0.92);
  border-radius: 50%;
} */

.topbar--tertiary {
    background-color: #ececec;
    overflow: hidden;
    padding: 0px;
}
.topbar--tertiary .container {
    max-width: 1564px !important;
}
.topbar--tertiary .topbar__list a,
.topbar--tertiary .topbar__items a {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 15px;
    line-height: 20px;
    padding-right: 20px;
}

@media (max-width: 600px) {
    .topbar--tertiary .topbar__list a,
    .topbar--tertiary .topbar__items a {
        padding-right: 10px;
    }
}

.topbar--tertiary .topbar__list a i,
.topbar--tertiary .topbar__items a i {
    color: var(--main-color);
    margin-bottom: 0px !important;
    font-size: 20px;
}
.topbar--tertiary .topbar__list a:hover,
.topbar--tertiary .topbar__items a:hover {
    color: var(--main-color);
}
.topbar--tertiary .topbar__list li:nth-of-type(2) a i,
.topbar--tertiary .topbar__items li:nth-of-type(2) a i {
    margin-bottom: -2px !important;
}
.topbar--tertiary .topbar__items {
    position: relative;
    z-index: 1;
}
.topbar--tertiary .topbar__items::before {
    content: "";
    position: absolute;
    inset-inline-start: 100%;
    z-index: -1;
    min-width: 400%;
    height: 100%;
    background-color: var(--base-color);
}
.topbar--tertiary .topbar__items p {
    line-height: 1;
}
.topbar--tertiary .topbar__items .social {
    -webkit-padding-start: 40px;
    padding-inline-start: 40px;
    padding-top: 12px;
    padding-bottom: 12px;
    position: relative;
    z-index: 1;
}
.topbar--tertiary .topbar__items .social::before {
    content: "";
    position: absolute;
    inset-inline-start: 0px;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-color: var(--base-color);
    -webkit-clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%, 10% 0%);
    clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%, 10% 0%);
}
.topbar--tertiary .topbar__items .social a {
    color: var(--secondary-color);
}
.topbar--tertiary .topbar__items .social a i {
    color: inherit;
    font-size: 18px !important;
}
.topbar--tertiary .topbar__items .social a:hover {
    color: var(--main-color);
}

.header {
    z-index: 99;
}
.header .main-header__menu-box {
    padding-top: 27px;
    padding-bottom: 27px;
    position: relative;
    background-color: var(--white);
}
.header .navbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
/* .header .navbar-logo img {
  max-width: 160px;
  height: 36px;
} */
.header .navbar__menu {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-margin-start: -15px;
    margin-inline-start: -15px;
}
.header .navbar__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.header .navbar__item a {
    font-size: 15px;
    font-weight: 500;
    text-transform: capitalize;
    padding: 0px 10px;
    word-spacing: 0px;
    width: 100%;
    line-height: 1;
    color: #16171a;
    gap: 5px;
}
.header .navbar__item a:hover {
    color: var(--base-color);
}
.header .navbar__item .dropdown-label-alter {
    position: relative;
}
.header .navbar__item .dropdown-label-alter::before {
    content: "";
    position: absolute;
    bottom: -20px;
    inset-inline-start: 50%;
    border: 10px solid transparent;
    border-bottom-color: var(--base-color);
    opacity: 0;
    -webkit-transform: translateX(-50%) translateY(100%);
    -ms-transform: translateX(-50%) translateY(100%);
    transform: translateX(-50%) translateY(100%);
    -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
    transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition: opacity 0.5s ease, transform 0.5s ease,
        -webkit-transform 0.5s ease;
}
.header .navbar__item:hover .dropdown-label-alter::before {
    opacity: 1;
    -webkit-transform: translateX(-50%) translateY(0%);
    -ms-transform: translateX(-50%) translateY(0%);
    transform: translateX(-50%) translateY(0%);
}
.header .navbar__item--has-children {
    position: relative;
}
.header .navbar__item--has-children:hover > .navbar__dropdown-label {
    color: var(--base-color);
}
.header .navbar__item--has-children:hover > .navbar__dropdown-label::after {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.header .navbar__item--has-children:hover > .navbar__dropdown-label-sub::after {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
.header .navbar__item--has-children:hover > .navbar__sub-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    pointer-events: all;
}
.header .navbar__dropdown-label {
    position: relative;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.header .navbar__dropdown-label::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f107";
    border: none;
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    font-size: inherit;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}
.header .navbar__sub-menu {
    position: absolute;
    top: 160%;
    inset-inline-start: 0px;
    min-width: 230px;
    max-width: 260px;
    background-color: var(--white);
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    pointer-events: none;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
    padding: 20px 0px;
    border-radius: 5px;
    z-index: 9;
}
.header .navbar__sub-menu li:nth-last-of-type(1) > a {
    border-bottom: 0px;
}
.header .navbar__sub-menu a {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 16px 32px;
    color: var(--black);
    position: relative;
    font-size: 15px;
    border-bottom: 1px solid rgba(228, 218, 218, 0.4784313725);
    text-transform: capitalize;
}
.header .navbar__sub-menu a::before {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    inset-inline-start: 20px;
    height: 1px;
    margin-top: 0px;
    width: 0px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    background-color: var(--base-color);
}
.header .navbar__sub-menu a:hover {
    color: var(--base-color);
    -webkit-padding-start: 40px;
    padding-inline-start: 40px;
}
.header .navbar__sub-menu a:hover::before {
    opacity: 1;
    -webkit-transform: translateY(-50%) scaleX(1);
    -ms-transform: translateY(-50%) scaleX(1);
    transform: translateY(-50%) scaleX(1);
    width: 10px;
}
.header .navbar__sub-menu .active > a {
    -webkit-padding-start: 40px;
    padding-inline-start: 40px;
}
.header .navbar__sub-menu .active > a::before {
    opacity: 1;
    -webkit-transform: translateY(-50%) scaleX(1);
    -ms-transform: translateY(-50%) scaleX(1);
    transform: translateY(-50%) scaleX(1);
    width: 10px;
}
.header
    .navbar__sub-menu
    .navbar__item--has-children:hover
    > .navbar__dropdown-label-sub {
    color: var(--main-color);
}
.header .navbar__sub-menu__nested {
    top: 0%;
    inset-inline-start: 100%;
    min-width: 230px;
}
.header .navbar__sub-menu__nested::before {
    content: "";
    position: absolute;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    z-index: -1;
    inset-inline-start: -20px;
    border: 10px solid transparent;
    top: 12px;
    border-inline-end-color: var(--main-color);
}
.header .active > .navbar__dropdown-label,
.header .active > a {
    color: var(--base-color);
}
.header .contact-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
}
.header .contact-btn div {
    line-height: 0px;
}
.header .contact-btn i {
    font-size: 30px;
    color: var(--secondary-color);
    margin-bottom: -5px;
}
.header .contact-btn p {
    font-size: 12px;
    text-transform: uppercase;
    line-height: 1;
    font-weight: 700;
    color: #828a8d;
    margin-bottom: 8px;
}
.header .contact-btn a {
    color: #555555;
    line-height: 1;
}
.header .contact-btn a:hover {
    color: var(--main-color);
}
.header .navbar__options {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}
.header .navbar__mobile-options {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.header .search-box button {
    font-size: 20px;
    color: var(--black);
}
.header .search-box button:hover {
    color: var(--main-color);
}
.header .open-offcanvas-nav {
    padding: 0px;
    display: inline-block;
    background-color: transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
}
.header .open-offcanvas-nav span {
    height: 2px;
    background-color: var(--base-color);
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
.header .open-offcanvas-nav .top-bar {
    width: 30px;
}
.header .open-offcanvas-nav .middle-bar {
    width: 34px;
}
.header .open-offcanvas-nav .bottom-bar {
    width: 16px;
}
.header .open-offcanvas-nav:hover span {
    background-color: var(--main-color);
}
.header .open-offcanvas-nav-active .middle-bar {
    opacity: 0;
}
.header .open-offcanvas-nav-active .top-bar,
.header .open-offcanvas-nav-active .bottom-bar {
    width: 30px !important;
}
.header .open-offcanvas-nav-active .top-bar {
    -webkit-transform: rotate(45deg) translateY(5px) translateX(9px);
    -ms-transform: rotate(45deg) translateY(5px) translateX(9px);
    transform: rotate(45deg) translateY(5px) translateX(9px);
    background-color: var(--base-color);
}
.header .open-offcanvas-nav-active .bottom-bar {
    -webkit-transform: rotate(-45deg) translateY(-5px) translateX(9px);
    -ms-transform: rotate(-45deg) translateY(-5px) translateX(9px);
    transform: rotate(-45deg) translateY(-5px) translateX(9px);
    background-color: var(--base-color);
}

.header-primary {
    -webkit-filter: drop-shadow(0px 4px 19px rgba(0, 0, 0, 0.07));
    filter: drop-shadow(0px 4px 19px rgba(0, 0, 0, 0.07));
    background-color: white;
    position: absolute;
    inset-inline-start: 0px;
    inset-inline-end: 0px;
    top: 0px;
}
.header-primary .navbar__options .btn--primary {
    padding: 20px 20px 19px;
}
.header-primary .navbar__options .btn--primary i {
    font-size: 25px;
}

.header-secondary {
    top: 0px;
    position: absolute;
    inset-inline-start: 0px;
    inset-inline-end: 0px;
    background-color: var(--white);
}
.header-secondary .container {
    max-width: 1800px !important;
}
.header-secondary .navbar__item > a {
    padding-top: 27px;
    padding-bottom: 27px;
    font-weight: 700;
}
.header-secondary .navbar__sub-menu a {
    padding-top: 16px;
    padding-bottom: 16px;
}
.header-secondary .contact-btn {
    padding: 16px 60px;
    position: relative;
}
.header-secondary .contact-btn::before,
.header-secondary .contact-btn::after {
    content: "";
    position: absolute;
    width: 28px;
    height: 14px;
    background-color: var(--white);
    top: 0px;
    inset-inline-end: 100%;
}
.header-secondary .contact-btn::before {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
.header-secondary .contact-btn::after {
    top: unset;
    bottom: 0px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
.header-secondary .contact-btn p {
    color: var(--secondary-color);
}
.header-secondary .contact-btn a {
    font-weight: 800;
    font-size: 18px;
    color: var(--secondary-color);
}
.header-secondary .main-header__menu-box {
    -webkit-filter: none !important;
    filter: none !important;
}
.header-secondary .navbar__options .btn--primary {
    padding: 16px 40px;
    border-radius: 30px;
    gap: 12px;
}
.header-secondary .navbar__options .btn--primary::after,
.header-secondary .navbar__options .btn--primary::before {
    border-radius: 0px;
}
.header-secondary .navbar__options .btn--primary i {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: color 0s ease, -webkit-transform 0.5s ease;
    transition: color 0s ease, -webkit-transform 0.5s ease;
    transition: transform 0.5s ease, color 0s ease;
    transition: transform 0.5s ease, color 0s ease, -webkit-transform 0.5s ease;
}
.header-secondary .navbar__options .btn--primary:hover i {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}
.header-secondary .navbar__menu-wrapper {
    background-color: var(--base-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 40px;
    border-radius: 60px;
}
.header-secondary .navbar__menu {
    -webkit-padding-end: 80px;
    padding-inline-end: 80px;
}

.header-tertiary {
    /* top: 0px;
  position: absolute; */
    inset-inline-start: 0px;
    inset-inline-end: 0px;
    padding: 8px 0px;
    background: #ffffff;
}
.header-tertiary .container {
    max-width: 1564px !important;
}
.header-tertiary .select {
    background-color: transparent;
    border-radius: 0px;
    border: 0px;
    padding: 0px;
    -webkit-padding-end: 16px;
    padding-inline-end: 16px;
    z-index: 999;
}
.header-tertiary .select .option {
    padding-inline: 18px !important;
}
.header-tertiary .select::after {
    right: unset;
    inset-inline-end: 0px !important;
    width: 7px;
    height: 7px;
    border-color: var(--secondary-color);
    margin-top: -5px;
}
.header-tertiary .select .option,
.header-tertiary .select .current {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    line-height: 0px;
}
.header-tertiary .select .option span,
.header-tertiary .select .option i,
.header-tertiary .select .current span,
.header-tertiary .select .current i {
    width: 30px;
    height: 20px;
}
.header-tertiary .select .current {
    color: var(--secondary-color);
    line-height: 1;
}
.header-tertiary .select .current i {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 25px;
    height: 25px;
    border: 3px solid rgba(236, 230, 230, 0.92);
    border-radius: 50%;
}
.header-tertiary .select .list {
    padding: 12px 0px;
}
.header-tertiary .open-cart {
    position: relative;
}
.header-tertiary .open-cart span {
    position: absolute;
    bottom: 60%;
    inset-inline-start: 60%;
    width: 20px;
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: var(--secondary-color);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
}
/* .header-tertiary .navbar__options,
.header-tertiary .navbar__mobile-options {
  gap: 30px;
} */
/* .header-tertiary .navbar__options .btn--secondary i,
.header-tertiary .navbar__mobile-options .btn--secondary i {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: color 0s ease, -webkit-transform 0.5s ease;
  transition: color 0s ease, -webkit-transform 0.5s ease;
  transition: transform 0.5s ease, color 0s ease;
  transition: transform 0.5s ease, color 0s ease, -webkit-transform 0.5s ease;
}
.header-tertiary .navbar__options .btn--secondary:hover i,
.header-tertiary .navbar__mobile-options .btn--secondary:hover i {
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
} */

.mega-menu {
    min-width: -webkit-max-content !important;
    min-width: -moz-max-content !important;
    min-width: 970px !important;
    max-width: 970px !important;
    background-color: var(--white);
    padding: 15px !important;
    border-radius: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    inset-inline-start: -100px !important;
    flex-wrap: wrap;
}
.mega-menu li > a {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-bottom: 0px !important;
    padding-left: 32px !important;
}
.mega-menu li > a::before {
    content: none !important;
}
.mega-menu li {
    padding: 10px !important;
    padding-bottom: 0px !important;
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
}
.mega-menu li:hover .mega-content-wrapper .mega-content {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}
.mega-menu .mega-content-wrapper {
    position: relative;
    width: 200px;
    overflow: hidden;
}
.mega-menu .mega-content-wrapper img {
    width: 100%;
    height: 270px;
    border-radius: 5px;
}
.mega-menu .mega-content-wrapper .new {
    position: absolute;
    background-color: #ffc107;
    padding: 3px 30px;
    top: 0px;
    left: 0px;
    font-weight: 700;
    color: var(--black);
    letter-spacing: 1px;
    font-size: 12px;
}
.mega-menu .mega-content {
    position: absolute;
    inset: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
.mega-menu .mega-content a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 160px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 60px !important;
    border: 0px solid transparent !important;
}
.mega-menu .mega-content a::before,
.mega-menu .mega-content a::after {
    content: none !important;
}
.mega-menu .mega-content a:hover {
    padding-left: 32px !important;
}
.mega-menu .mega-content .btn--primary:hover {
    background-color: var(--white) !important;
    color: var(--black) !important;
}
/* .mega-menu .mega-content .btn--secondary {
  background-color: var(--white) !important;
  color: var(--black) !important;
}
.mega-menu .mega-content .btn--secondary:hover {
  background-color: var(--base-color) !important;
  color: var(--black) !important;
} */

.sticky-header {
    position: fixed !important;
    top: 0px !important;
    inset-inline-start: 0px;
    inset-inline-end: 0px;
    width: 100%;
    -webkit-animation: stickyNavbar 0.5s linear;
    animation: stickyNavbar 0.5s linear;
    background: var(--white) !important;
    -webkit-filter: drop-shadow(0px 4px 19px rgba(0, 0, 0, 0.07)) !important;
    filter: drop-shadow(0px 4px 19px rgba(0, 0, 0, 0.07)) !important;
}
.sticky-header .main-header__menu-box {
    -webkit-filter: none !important;
    filter: none !important;
}
@-webkit-keyframes stickyNavbar {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}
@keyframes stickyNavbar {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}
.sticky-header .topbar {
    display: none;
}

.sticky-header.header-secondary .main-header__menu-box {
    padding-inline: 0px !important;
    width: 100%;
}

.sticky-header.header-tertiary .main-header__menu-box {
    padding-inline: 0px !important;
    width: 100%;
}

.mobile-menu {
    position: fixed;
    inset: 0px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    z-index: 9999;
    max-width: 300px;
    -webkit-transition: all 900ms ease;
    transition: all 900ms ease;
}
.mobile-menu .mobile-menu__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 24px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0px 10px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
/* .mobile-menu .logo img {
  max-width: 150px;
} */
.mobile-menu .close-mobile-menu {
    font-size: 36px;
    color: var(--main-color);
    /* position: relative; */
    /* top: -40px; */
    /* inset-inline-end: 0px; */
}
.mobile-menu .mobile-menu__wrapper {
    position: absolute;
    inset-inline-start: -400px;
    top: 0px;
    width: 100%;
    height: 100%;
    max-height: 100%;
    background-color: var(--white);
    padding: 30px 0px;
    z-index: 9999;
    border-radius: 0px;
    overflow-y: auto;
    overflow-x: clip;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    -webkit-transition: all 900ms ease;
    transition: all 900ms ease;
}
.mobile-menu .mobile-menu__wrapper::-webkit-scrollbar {
    width: 0px;
}
.mobile-menu .navbar__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border: 0px !important;
}
.mobile-menu .navbar__list > li > a,
.mobile-menu .navbar__list > li button {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.mobile-menu .navbar__list > li:nth-of-type(1) {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.mobile-menu .navbar__item {
    width: 100%;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
.mobile-menu .navbar__item a {
    color: var(--black);
    padding-block: 20px;
    padding-inline: 20px 0px;
    line-height: 1;
    font-size: 16px;
    text-transform: capitalize;
    width: 100%;
    position: relative;
    font-weight: 700;
}
.mobile-menu .navbar__item a:hover {
    color: var(--base-color);
}
.mobile-menu .navbar__item a::after {
    -webkit-transition: none;
    transition: none;
}
.mobile-menu .nav-fade {
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 0;
    -webkit-transition: all 0.7s ease-in-out !important;
    transition: all 0.7s ease-in-out !important;
}
.mobile-menu .navbar__item--has-children .navbar__dropdown-label::after {
    content: "+";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 0px;
    inset-inline-end: 0px;
    bottom: 0px;
    height: 100%;
    width: 60px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-border-start: 1px solid rgba(0, 0, 0, 0.08);
    border-inline-start: 1px solid rgba(0, 0, 0, 0.08);
}
.mobile-menu .navbar__item--has-children:hover .navbar__dropdown-label::after {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}
.mobile-menu .navbar__item--has-children:hover > .navbar__dropdown-label-sub {
    color: var(--main-color) !important;
}
.mobile-menu .navbar__item-active {
    color: var(--base-color) !important;
    font-weight: 600 !important;
}
.mobile-menu .navbar__item-active::after {
    content: "\f068" !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900;
}
.mobile-menu .navbar__sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    width: 100%;
    max-width: 100%;
    padding: 0px;
    display: none;
    -webkit-transition: none;
    transition: none;
    background-color: transparent;
    border-radius: 0px;
}
.mobile-menu .navbar__sub-menu::before {
    content: none;
}
.mobile-menu .navbar__sub-menu a,
.mobile-menu .navbar__sub-menu button {
    color: var(--black);
    padding: 20px 40px;
    font-size: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.mobile-menu .navbar__sub-menu a::before,
.mobile-menu .navbar__sub-menu button::before {
    content: none;
}
.mobile-menu .navbar__sub-menu li:nth-last-of-type(1) a,
.mobile-menu .navbar__sub-menu li:nth-last-of-type(1) button {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.mobile-menu .mobile-menu__options {
    padding: 0px 40px;
}
.mobile-menu .mobile-menu__options a,
.mobile-menu .mobile-menu__options button {
    width: 100%;
}
.mobile-menu .mobile-menu__cta {
    text-align: center;
    padding: 0px 40px;
}
.mobile-menu .mobile-menu__cta .btn--primary {
    padding: 16px 40px;
    border-radius: 30px;
    gap: 10px;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.mobile-menu .mobile-menu__cta .btn--primary::after,
.mobile-menu .mobile-menu__cta .btn--primary::before {
    border-radius: 0px;
}
.mobile-menu .mobile-menu__cta .btn--primary i {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: color 0s ease, -webkit-transform 0.5s ease;
    transition: color 0s ease, -webkit-transform 0.5s ease;
    transition: transform 0.5s ease, color 0s ease;
    transition: transform 0.5s ease, color 0s ease, -webkit-transform 0.5s ease;
}
.mobile-menu .mobile-menu__cta .btn--primary:hover i {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}
.mobile-menu .btn--primary-alt i {
    font-size: 25px !important;
    -webkit-transform: rotate(0deg) !important;
    -ms-transform: rotate(0deg) !important;
    transform: rotate(0deg) !important;
}
.mobile-menu .mobile-menu__social {
    -webkit-transition: var(--transition);
    transition: var(--transition);
    padding: 0px 40px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 16px;
}
.mobile-menu .mobile-menu__social a {
    font-size: 16px;
    width: 44px;
    min-width: 44px;
    height: 44px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: var(--secondary-color);
    color: var(--white);
}
.mobile-menu .mobile-menu__social a:hover {
    background-color: var(--base-color);
    color: #ffffff;
}

.mobile-menu .mobile-contact__info {
    text-align: center;
}

.mobile-menu .mobile-contact__info h5 {
    font-weight: 600;
    color: var(--base-color) !important;
}

.mobile-menu .mobile-contact__info a {
    text-transform: lowercase;
}

.mobile-menu .mobile-contact__info a i {
    color: var(--base-color);
}

.mobile-menu .active > .navbar__dropdown-label,
.mobile-menu .active > a {
    color: var(--base-color);
    font-weight: 600;
}
.mobile-menu .active > .navbar__dropdown-label::after,
.mobile-menu .active > a::after {
    font-weight: 900;
}

.mobile-menu__backdrop {
    position: fixed;
    inset-inline-end: 0;
    top: 0;
    width: 0%;
    height: 100%;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.9);
    cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVBAMAAABbObilAAAAMFBMVEVMaXH////////////////////////////////////////////////////////////6w4mEAAAAD3RSTlMAlAX+BKLcA5+b6hJ7foD4ZP1OAAAAkUlEQVR4XkWPoQ3CUBQAL4SktoKAbCUjgAKLJZ2ABYosngTJCHSD6joUI6BZgqSoB/+Shqde7sS9x3OGk81fdO+texMtRVTia+TsQtHEUJLdohJfgNNPJHyEJPZTsWLoxShqsWITazEwqePAn69Sw2TUxk1+euPis3EwaXy8RMHSZBIlRcKKnC5hRctjMf57/wJbBlAIs9k1BAAAAABJRU5ErkJggg==),
        progress;
    visibility: hidden;
    -webkit-transform: translateX(101%);
    -ms-transform: translateX(101%);
    transform: translateX(101%);
    -webkit-transition: all 600ms ease;
    transition: all 600ms ease;
    -webkit-transition-delay: 100ms;
    transition-delay: 100ms;
}

.mobile-menu__backdrop-active {
    width: 100%;
    visibility: visible;
    -webkit-transition: all 600ms ease;
    transition: all 600ms ease;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

.show-menu {
    opacity: 1;
    visibility: visible;
}
.show-menu .mobile-menu__wrapper {
    inset-inline-start: 0px;
    -webkit-transition-delay: 300ms;
    transition-delay: 300ms;
}
.show-menu .nav-fade {
    -webkit-animation: navLinkFade 0.5s ease forwards;
    animation: navLinkFade 0.5s ease forwards;
    -webkit-transition: all 0.7s ease-in-out !important;
    transition: all 0.7s ease-in-out !important;
}

.nav-fade-active {
    animation: navLinkFade 1s ease reverse !important;
}

@-webkit-keyframes navLinkFade {
    from {
        opacity: 0;
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@-webkit-keyframes navLinkFadeReverse {
    from {
        opacity: 0;
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
    to {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
}
@keyframes navLinkFadeReverse {
    from {
        opacity: 0;
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
    to {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
}
@media only screen and (min-width: 1200px) and (max-width: 1399.98px) {
    .header-secondary .navbar__menu-wrapper {
        background-color: transparent;
    }
    .header-secondary .main-header__menu-box {
        padding-inline: 0px !important;
    }
    .header-secondary .navbar__menu {
        -webkit-padding-end: 0px !important;
        padding-inline-end: 0px !important;
    }
    .header-secondary .navbar__item > a {
        padding-inline: 10px !important;
    }
    .header-secondary .navbar__sub-menu a {
        padding-inline: 32px !important;
    }
}
/* ==== 
 --------- (4.01) header styles end ---------
 ==== */
/* 
.banner-three {
  margin-top: 90px;
  padding: 70px 0px 70px;
  overflow: hidden;
  position: relative;
  z-index: 1;
} */
.banner-three {
    padding: 40px 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 0.5s ease-in-out;
}

.banner-three .sub-title {
    margin-top: 0px;
}
.banner-three h1 {
    font-weight: 700;
    color: var(--white);
    margin: 16px 0px 24px;
    font-size: 40px;
    line-height: 50px;
}
.banner-three h1 span {
    font-family: var(--caveat);
    color: var(--base-color);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left 0px bottom 0px;
    font-size: 40px;
    line-height: 50px;
}
.banner-three h1 br {
    display: none;
}
.banner-three p {
    color: var(--white);
    max-width: 560px;
}
.banner-three .banner__content-cta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 24px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.banner-three .btn--tertiary,
.banner-three .btn--primary {
    padding: 18px 40px;
    border-radius: 60px;
    font-weight: 700;
    gap: 8px;
}
.banner-three .btn--tertiary::before,
.banner-three .btn--tertiary::after,
.banner-three .btn--primary::before,
.banner-three .btn--primary::after {
    border-radius: 0px;
}
.banner-three .btn--tertiary i,
.banner-three .btn--primary i {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: color 0s ease, -webkit-transform 0.5s ease;
    transition: color 0s ease, -webkit-transform 0.5s ease;
    transition: transform 0.5s ease, color 0s ease;
    transition: transform 0.5s ease, color 0s ease, -webkit-transform 0.5s ease;
    font-size: 18px;
}
.banner-three .btn--tertiary:hover i,
.banner-three .btn--primary:hover i {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}
.banner-three .banner-three__thumb {
    min-width: 60vw;
}
.banner-three .banner-three__thumb-inner {
    height: 500px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    /* gap: 30px; */
}
.banner-three .banner-three__thumb-inner .group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    /* gap: 30px; */
}
.banner-three .banner-three__thumb-inner .m-1 img,
.banner-three .banner-three__thumb-inner .m-4 img,
.banner-three .banner-three__thumb-inner .m-5 img {
    border-radius: 90px;
}

.banner-three .banner-three__thumb-inner .m-2 img,
.banner-three .banner-three__thumb-inner .m-3 img {
    border-radius: 60px;
}

.banner-three .banner-three__content span,
.banner-three .banner-three__content h1,
.banner-three .banner-three__content p,
.banner-three .banner-three__content .banner__content-cta {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
    -webkit-transition: all 1000ms ease;
    transition: all 1000ms ease;
}
.banner-three .swiper-slide-active .banner-three__content span {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition-delay: 600ms;
    transition-delay: 600ms;
}
.banner-three .swiper-slide-active .banner-three__content h1 {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition-delay: 1000ms;
    transition-delay: 1000ms;
}
.banner-three .swiper-slide-active .banner-three__content p {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition-delay: 1400ms;
    transition-delay: 1400ms;
}
.banner-three .swiper-slide-active .banner-three__content .banner__content-cta {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition-delay: 1800ms;
    transition-delay: 1800ms;
}
.banner-three .shape-lg {
    position: absolute;
    z-index: -1;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    inset-inline-end: 20%;
}
.banner-three .shape-lg img {
    max-width: 30vw;
    min-width: 80px;
    -webkit-animation: pulseSm 4s infinite ease-in-out;
    animation: pulseSm 4s infinite ease-in-out;
}
.banner-three .sprade-shape {
    position: absolute;
    top: 25%;
    inset-inline-start: 10%;
    z-index: -1;
}
.banner-three .sprade-shape img {
    max-width: 5vw;
    min-width: 30px;
    -webkit-animation: pulse 4s infinite ease-in-out;
    animation: pulse 4s infinite ease-in-out;
}
.banner-three .parasuit {
    position: absolute;
    top: -150px;
    inset-inline-start: 8%;
    z-index: -1;
    -webkit-transform: translate(0px);
    -ms-transform: translate(0px);
    transform: translate(0px);
    -webkit-animation: fall 15s ease-in-out infinite;
    animation: fall 15s ease-in-out infinite;
}
.banner-three .parasuit img {
    max-width: 8vw;
    min-width: 40px;
}

@-webkit-keyframes fall {
    0% {
        top: -150px;
        -webkit-transform: translateX(-50%) rotate(0deg);
        transform: translateX(-50%) rotate(0deg);
    }
    25% {
        -webkit-transform: translateX(-45%) rotate(-40deg);
        transform: translateX(-45%) rotate(-40deg);
    }
    50% {
        top: 400px;
        -webkit-transform: translateX(-50%) rotate(-10deg);
        transform: translateX(-50%) rotate(-10deg);
    }
    75% {
        -webkit-transform: translateX(-55%) rotate(-30deg);
        transform: translateX(-55%) rotate(-30deg);
    }
    100% {
        top: 1600px;
        -webkit-transform: translateX(-50%) rotate(-10deg);
        transform: translateX(-50%) rotate(-10deg);
    }
}

@keyframes fall {
    0% {
        top: -150px;
        -webkit-transform: translateX(-50%) rotate(0deg);
        transform: translateX(-50%) rotate(0deg);
    }
    25% {
        -webkit-transform: translateX(-45%) rotate(-40deg);
        transform: translateX(-45%) rotate(-40deg);
    }
    50% {
        top: 400px;
        -webkit-transform: translateX(-50%) rotate(-10deg);
        transform: translateX(-50%) rotate(-10deg);
    }
    75% {
        -webkit-transform: translateX(-55%) rotate(-30deg);
        transform: translateX(-55%) rotate(-30deg);
    }
    100% {
        top: 1600px;
        -webkit-transform: translateX(-50%) rotate(-10deg);
        transform: translateX(-50%) rotate(-10deg);
    }
}
.common-banner {
    padding: 80px 0px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    /* margin-top: 90px; */
}
.common-banner::before {
    content: "";
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(12, 26, 23, 25),
        rgba(9, 31, 27, 0.55),
        rgba(9, 31, 27, 0.55)
    );
    z-index: -2;
}
.common-banner .sub-title {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    font-family: var(--caveat);
    color: var(--base-color);
    font-size: 20px;
    line-height: 34px;
    margin-bottom: 14px;
    margin-top: 0px;
}
.common-banner h2 {
    color: var(--white);
    font-weight: 500;
    font-size: 35px;
    line-height: 45px;
}
.common-banner .banner-bg {
    position: absolute;
    inset: 0px;
    z-index: -3;
    overflow: hidden;
}
.common-banner .banner-bg img {
    width: 100%;
    height: 100%;
}
.common-banner .banner-bg .parallax-image-wrap,
.common-banner .banner-bg .parallax-image-inner {
    width: 100%;
    height: 100%;
}
.common-banner .common-banner__content {
    margin-block: -6px -8px;
}
.common-banner .shape {
    position: absolute;
    inset-inline-start: 0px;
    inset-inline-end: 0px;
    top: -5px;
}
.common-banner .shape img {
    width: 100%;
    height: 28px;
}
.common-banner .sprade {
    position: absolute;
    z-index: -1;
    bottom: 9%;
    inset-inline-start: 7%;
}
.common-banner .sprade img {
    max-width: 5vw;
    min-width: 30px;
    -webkit-animation: pulse 4s infinite ease-in-out;
    animation: pulse 4s infinite ease-in-out;
}

@-webkit-keyframes pulseSm {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0.5;
    }
}

@keyframes pulseSm {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0.5;
    }
}
/* ==== 
 --------- (4.02) banner styles end ---------
 ==== */

/* ==== 
 --------- (4.02) footer start ---------
 ==== */
.footer-three {
    background-color: #0c141f;
    padding-top: 20px;
}
.footer-three .divider {
    border: none; /* reset default */
    border-top: 1px solid rgba(255, 255, 255, 0.3); /* match copyright border */
    width: 100%;
    margin: 20px 0px 40px 0;
    height: 0; /* ensure only border shows */
}
.footer-three .footer-two__widget-intro {
    margin-bottom: 20px;
}
.footer-three .footer-two__widget-intro h5,
.footer-three .footer-two__widget-intro h6 {
    font-weight: 500;
    color: var(--white);
}
.footer-three .footer-three__widget-single p {
    color: #f2f2f2;
    margin-top: -8px;
    margin-bottom: 16px;
}
.footer-three .footer-three__widget-content .footer-link .link-part p {
    color: #f2f2f2;
    margin-bottom: 5px;
}
.footer-three .footer-three__widget-single p:nth-last-of-type(1) {
    margin-bottom: 0px;
}
.footer-three .footer-three__widget-single a {
    text-transform: lowercase;
    font-weight: 700;
    color: var(--base-color);
}
.footer-three .footer-three__widget-single a:hover {
    color: var(--white);
}
.footer-three .footer-three__widget-alt {
    margin-top: 40px;
}
.footer-three .footer-three__widget-alt .footer-two__widget-intro {
    margin-bottom: 20px;
}
.footer-three .footer-three__widget-alt p {
    margin-bottom: 12px;
    color: var(--white);
    font-weight: 500;
}
.footer-three .footer-three__widget-alt p:nth-last-of-type(1) {
    margin-bottom: 0px;
}
.footer-three .footer-three__logo {
    text-align: center;
}
.footer-three .footer-three__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 60px;
    row-gap: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.footer-three .footer__bottom-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    row-gap: 6px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.footer-three .footer__bottom-list li a {
    color: var(--white);
    position: relative;
    padding-right:15px;
    border-right:1px solid white;
}

.footer-three .footer__bottom-list li:last-child a {
    padding-right: 0px;
    border-right: none;
}


.footer-three .footer__bottom-list a::after {
    content: "";
    position: absolute;
    width: 0px;
    height: 1px;
    bottom: 2px;
    inset-inline-start: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: var(--base-color);
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
.footer-three .footer__bottom-list a:hover {
    color: var(--base-color);
}
.footer-three .footer__bottom-list a:hover::after {
    width: 100%;
}
.footer-three .social a {
    width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 14px;
}
.footer-three .social a:hover {
    background-color: var(--base-color);
}
.footer-three .footer-three__widget-news {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    padding-bottom: 30px;
    padding-top: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-three .footer-three__widget-news:nth-of-type(1) {
    padding-top: 0px;
}
.footer-three .footer-three__widget-news:nth-last-of-type(1) {
    border-bottom: 0px;
    padding-bottom: 0px;
}
.footer-three .footer-three__widget-news .thumb a {
    width: 85px;
    min-width: 85px;
    height: 85px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
}
.footer-three .footer-three__widget-news .thumb a img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
.footer-three .footer-three__widget-news .thumb a:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.footer-three .footer-three__widget-news .content p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    line-height: 1;
    margin-bottom: 16px;
    font-weight: 500;
    color: #929595;
}
.footer-three .footer-three__widget-news .content p:nth-last-of-type(1) {
    margin-bottom: 0px;
}
.footer-three .footer-three__widget-news .content p i {
    color: var(--main-color);
}
.footer-three .footer-three__widget-news .content a {
    font-weight: 600;
    line-height: 20px;
    color: var(--white);
}
.footer-three .footer-three__widget-news .content a:hover {
    color: var(--base-color);
}
.footer-three .single-address {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 12px;
}
.footer-three .single-address:nth-last-of-type(1) {
    margin-bottom: 0px;
}
.footer-three .single-address i {
    font-size: 16px;
    color: var(--base-color);
}
.footer-three .single-address p {
    font-size: 18px;
    line-height: 1;
    font-weight: 500;
    color: var(--white);
    max-width: 240px;
    margin-bottom: 6px;
}
.footer-three .single-address p:nth-last-of-type(1) {
    margin-bottom: 0px;
}
.footer-three .single-address p a {
    font-size: 15px;
    line-height: 20px;
    color: #eee5e5;
    font-weight: 500;
    text-transform: lowercase;
}
.footer-three .single-address p a:hover {
    color: var(--base-color);
}
.footer-three .footer-three__widget--newsletter p {
    color: var(--white);
    margin-top: -8px;
    font-size: 14px;
}
.footer-three .footer-three__widget--newsletter form {
    padding: 30px 20px;
    background-color: rgba(255, 255, 255, 0.03);
    margin-top: 30px;
    border-radius: 5px;
}
.footer-three .footer-three__widget--newsletter .input-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-three .footer-three__widget--newsletter .input-icon input {
    background-color: transparent;
    color: var(--white);
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: 100%;
    padding: 10px 0px !important;
}
.footer-three .footer-three__widget--newsletter .input-icon button {
    font-size: 16px;
    min-width: 16px;
    color: var(--main-color);
}
.footer-three .footer-three__widget--newsletter .input-icon button:hover {
    color: var(--base-color);
}
.footer-three .footer-three__widget--newsletter .input-icon i {
    position: static;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}
.footer-three .footer__newsletter-check {
    margin-top: 24px;
}
.footer-three .footer__newsletter-check input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0px;
    display: none;
    cursor: pointer;
}
.footer-three .footer__newsletter-check label {
    position: relative;
    cursor: pointer;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    direction: ltr;
}
.footer-three .footer__newsletter-check label a {
    color: var(--main-color);
    font-size: 14px;
    font-weight: 500;
}
.footer-three .footer__newsletter-check label a:hover {
    color: var(--base-color);
}
.footer-three .footer__newsletter-check label:before {
    content: "";
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    border: 1px solid #4e545f;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05),
        inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05),
        inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 10px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    -webkit-margin-end: 12px;
    margin-inline-end: 12px;
    margin-top: -2px;
}
.footer-three .footer__newsletter-check input:checked + label:after {
    content: "";
    display: block;
    position: absolute;
    top: 8px;
    inset-inline-start: 9px;
    width: 6px;
    height: 10px;
    border: solid var(--base-color);
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.footer-three .footer__newsletter-check input:checked + label::before {
    border-color: var(--base-color);
}
.footer-three .footer-two__copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 50px;
    padding: 20px 0px;
    direction: ltr;
}
.footer-three .footer-two__copyright p {
    font-weight: 500;
    color: var(--white);
}
.footer-three .footer-two__copyright p a {
    color: var(--base-color);
}
.footer-three .footer-two__copyright p a:hover {
    color: var(--white);
}
.footer-three__widget-content .footer-link a {
    display: inline-flex;
    align-items: center;
    gap: 6px; /* space between icon and text */
    color: #f2f2f2; /* default text color */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-three__widget-content .footer-link a i {
    color: var(--base-color); /* icon always in base color */
    transition: color 0.3s ease;
    padding-right: 10px;
}

.footer-three__widget-content .footer-link a:hover {
    color: var(--base-color); /* only text color changes */
}

/* ==== 
 --------- (4.03) footer styles end ---------
 ==== */
/* ==== 
 --------- (5.01) partner section styles start ---------
 ==== */
.partner {
    padding: 80px 0px;
    background-color: #edeeef;
}
.partner .partner__slider-single {
    text-align: center;
}

/* ==== 
 --------- (5.01) partner section styles end ---------
 ==== */

/* ==== 
 --------- (5.03) help section styles start ---------
 ==== */
.help {
    padding: 100px 0px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.help .help__thumb {
    direction: rtl;
}
.help .help__thumb-inner {
    text-align: end;
    position: relative;
    min-width: 575px;
    direction: ltr;
}
.help .help__thumb-inner .thumb {
    display: inline-block;
    border: 8px solid var(--white);
    border-radius: 20px;
    -webkit-box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.15);
}
.help .help__thumb-inner .thumb .parallax-image-inner,
.help .help__thumb-inner .thumb .parallax-image-wrap {
    border-radius: 10px;
}
.help .help__thumb-inner .thumb img {
    border-radius: 10px;
}
.help .thumb-lg {
    margin-bottom: 100px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}
.help .thumb-lg::before {
    content: "";
    position: absolute;
    inset: 0px;
    background: linear-gradient(
        104deg,
        rgba(12, 26, 23, 0) 1.9%,
        rgba(0, 113, 93, 0.08) 18.93%,
        rgba(0, 113, 93, 0.17) 29.72%,
        rgba(0, 113, 93, 0.37) 83.58%,
        rgba(0, 113, 93, 0.67) 109.85%,
        #00715d 133.89%,
        #00715d 133.91%,
        rgba(0, 113, 93, 0.91) 149.32%
    );
    border-radius: inherit;
}
.help .video-btn-wrapper::after {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px dashed #ffffff;
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}
.help .video-btn-wrapper i {
    -webkit-margin-start: 5px;
    margin-inline-start: 5px;
}
.help .thumb-bottom {
    position: absolute;
    bottom: 0px;
    inset-inline-end: 0px;
    z-index: 2;
}
.help .thumb-top {
    position: absolute;
    top: 0px;
    inset-inline-start: 0px;
    z-index: 2;
}
.help .line {
    position: absolute;
    display: inline-block;
    top: 10px;
    inset-inline-end: 50px;
}
.help .line img {
    -webkit-animation: wave 3s linear infinite;
    animation: wave 3s linear infinite;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
}
.help .grid-line {
    position: absolute;
    inset-inline-start: -35px;
    top: 60%;
}
.help .grid-line img {
    -webkit-animation: moveTopBottom 4s ease-in-out infinite;
    animation: moveTopBottom 4s ease-in-out infinite;
}
.help .vertical-text {
    padding: 50px 30px;
    background-color: var(--main-color);
    display: inline-block;
    position: absolute;
    bottom: 0px;
    inset-inline-start: 0px;
    border-top: 5px solid var(--base-color);
    border-bottom: 5px solid var(--base-color);
    border-radius: 20px;
    z-index: 3;
}
.help .vertical-text h5 {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    font-weight: 800;
    color: var(--white);
    text-transform: lowercase;
}
.help .vertical-text h5 span {
    color: var(--base-color);
}
.help .sub-title {
    color: var(--main-color);
}
.help h2 {
    font-weight: 800;
    color: var(--secondary-color);
    margin: 0px 0px 20px;
    font-size: 30px;
    line-height: 45px;
}

.help h2 span {
    color: var(--base-color);
}
.help p {
    max-width: 630px;
}
@media (max-width: 767px) {
    .help h2 {
        font-size: 25px;
        line-height: 35px;
    }
}
.help .help__content-icon-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 40px;
    row-gap: 24px;
    margin: 35px 0px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.help .help__content-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
}
.help .help__content-icon .thumb {
    position: relative;
}
.help .help__content-icon .thumb::before {
    content: "";
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 30px;
    height: 30px;
    background-color: var(--base-color);
    z-index: -1;
    border-radius: 50%;
}
.help .help__content-icon .thumb i {
    font-size: 50px;
    color: var(--secondary-color);
}
.help .content h6 {
    font-weight: 800;
    color: var(--secondary-color);
    margin-top: -8px;
    margin-bottom: 0px;
    font-size: 22px;
}
.help .content p {
    font-size: 15px;
    line-height: 20px;
}
.help .help__content-list li {
    margin-bottom: 8px;
    color: var(--template-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    gap: 12px;
}
.help .help__content-list li i {
    font-size: 20px;
    color: var(--main-color);
}
.help .help__content-cta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 40px;
    row-gap: 24px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.help .help__content-cta .btn--primary {
    padding: 23px 46px;
    border-radius: 60px;
}
.help .help__content-cta .btn--primary::before,
.help .help__content-cta .btn--primary::after {
    border-radius: 0px;
}
.help .help__content-cta .contact-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
}
.help .help__content-cta .contact-btn div {
    line-height: 0px;
}
.help .help__content-cta .contact-btn i {
    font-size: 30px;
    color: var(--base-color);
    margin-bottom: -5px;
}
.help .help__content-cta .contact-btn p {
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
}
.help .help__content-cta .contact-btn a {
    color: grey;
    line-height: 1;
    font-size: 18px;
    font-weight: 700;
}
.help .help__content-cta .contact-btn a:hover {
    color: var(--base-color);
}
.help .hand {
    position: absolute;
    z-index: -1;
    top: 5%;
    inset-inline-start: 0px;
}
.help .hand img {
    max-width: 10vw;
    min-width: 30px;
    animation: moveUpDown 10s ease-in-out infinite alternate-reverse;
}
.help .spade {
    position: absolute;
    top: 65%;
    inset-inline-end: 3%;
    z-index: -1;
}
.help .spade img {
    max-width: 5vw;
    min-width: 30px;
    -webkit-animation: pulse 4s infinite ease-in-out;
    animation: pulse 4s infinite ease-in-out;
}
.help .parasuit {
    position: absolute;
    top: -150px;
    inset-inline-start: 8%;
    z-index: -1;
    -webkit-transform: translate(0px);
    -ms-transform: translate(0px);
    transform: translate(0px);
    -webkit-animation: fall 15s ease-in-out infinite;
    animation: fall 15s ease-in-out infinite;
}
.help .parasuit img {
    max-width: 8vw;
    min-width: 40px;
}

/* ==== 
 --------- (5.04) cause slider section styles start ---------
 ==== */
.cause {
    padding: 100px 0px;
    background-color: #edeeef;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.cause .section__header {
    margin-bottom: 0px !important;
}
.cause .section__header h2 {
    margin-bottom: 0px !important;
}
.cause .slider-navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 5px;
}
.cause .cause__slider-wrapper {
    margin-top: 35px;
}
.cause .cause__slider-single {
    padding: 12px;
    background-color: var(--white);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 15px;
}
/* .cause .cause__slider-single:hover .thumb img {
  -webkit-transform: scale(1.2) rotate(10deg);
      -ms-transform: scale(1.2) rotate(10deg);
          transform: scale(1.2) rotate(10deg);
} */
.cause .cause__slider-single:hover .thumb .tag a {
    background-color: var(--secondary-color);
    color: var(--white);
}
/* .cause .cause__slider-single:hover .cause__cta a {
  color: var(--white);
}
.cause .cause__slider-single:hover .cause__cta a::before, .cause .cause__slider-single:hover .cause__cta a::after {
  width: 0% !important;
} */
.cause .thumb {
    position: relative;
    margin-bottom: 30px;
}
.cause .thumb a {
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
}
.cause .thumb a img {
    height: 200px;
    width: 100%;
    border-radius: 15px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.cause .thumb .tag {
    position: absolute;
    top: 10px;
    inset-inline-start: 10px;
}
.cause .thumb .tag a {
    padding: 8px 24px;
    background-color: var(--base-color);
    border-radius: 30px;
    color: var(--black);
}
.cause .thumb .tag a:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}
.cause .content {
    padding-inline: 20px;
}
.cause .content h6 {
    margin-top: -8px;
    margin-bottom: 8px;
    font-weight: 800;
    color: var(--secondary-color);
}
.cause .content h6:hover {
    color: var(--base-color);
}
.cause .content p {
    font-size: 14px;
    line-height: 20px;
}
.cause .cause__slider-cta {
    padding: 20px;
    border-radius: 10px;
    background: rgba(157, 153, 139, 0.1);
    margin-top: 24px;
}
.cause .cause__slider-cta .cause-progress__intro p {
    font-size: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 12px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    color: var(--secondary-color);
    font-weight: 600;
}
.cause .cause__slider-cta .cause-progress__goal {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: end;
    gap: 12px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.cause .cause__slider-cta .cause-progress__goal p {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 14px;
}
.cause .cause__slider-cta .cause-progress__goal .goal {
    color: var(--base-color);
    font-weight: 800;
}
.cause .cause-progress__bar {
    margin: 5px 0px 10px;
}
/* .cause .cause__cta {
  margin-top: 20px;
}
.cause .cause__cta a {
  font-size: 14px;
  line-height: 1;
  border: 1px solid var(--secondary-color);
  background-color: var(--secondary-color);
  color: var(--secondary-color);
}
.cause .cause__cta a::before, .cause .cause__cta a::after {
  background-color: var(--white);
}
.cause .cause__cta a:hover {
  color: var(--white);
} */
.cause .pagination-one {
    margin-top: 40px;
}
.cause .swiper-slide-active .thumb img {
    -webkit-transform: scale(1.3) rotate(5deg);
    -ms-transform: scale(1.3) rotate(5deg);
    transform: scale(1.3) rotate(5deg);
}
.cause .swiper-slide-active .thumb .tag a {
    background-color: var(--secondary-color);
    color: var(--white);
}
.detail-cause__slider-cta {
    background: #fff;
    border-radius: 0px 0px 15px 15px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.detail-cause__progress {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.detail-cause-progress__intro p {
    font-size: 18px;
    font-weight: 600;
    color: #444;
    display: flex;
    justify-content: space-between;
}

.percent-value {
    font-weight: bold;
    color: var(--main-color);
    font-size: 20px;
}

.detail-cause-progress__bar {
    position: relative;
    height: 14px;
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
}

.detail-progress-bar {
    width: 100%;
    height: 100%;
}

/* .detail-progress-bar-percent {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ff7f50, var(--main-color));
  border-radius: 10px;
} */

.detail-progress-bar-percent {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ff7f50, var(--main-color));
    border-radius: 10px;
    transition: width 1s ease-in-out; /* smooth animation */
}

/* Animate based on data-percent */
.detail-progress-bar-wrapper[data-percent] .progress-bar-percent {
    width: attr(data-percent percentage); /* fallback */
}

.detail-cause-progress__goal {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
    color: #555;
}

.detail-cause-progress__goal .raised {
    color: var(--main-color);
    font-weight: bold;
}

.detail-cause-progress__goal .goal {
    color: var(--base-color);
    font-weight: bold;
}

.cause-three {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background-color: var(--white);
}
.cause-three::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    height: 50%;
    background-color: #efefef;
    z-index: -1;
}

.cause-three-alt {
    background-color: var(--white);
}
.cause-three-alt .mb-60 {
    margin-bottom: 35px !important;
}

.cta-section-two {
    padding: 30px 0px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.cta-section-two::before {
    content: "";
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(12, 26, 23, 0.75) 1.9%,
        rgba(9, 31, 27, 0.08)
    );
    z-index: -3;
}
.cta-section-two .sub-title {
    color: var(--base-color);
}
.cta-section-two h2 {
    color: var(--white);
}
.cta-section-two .banner__content-cta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 24px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.cta-section-two .btn--tertiary,
.cta-section-two .btn--primary {
    padding: 18px 40px;
    border-radius: 60px;
    font-weight: 700;
    gap: 8px;
}
.cta-section-two .btn--tertiary::before,
.cta-section-two .btn--tertiary::after,
.cta-section-two .btn--primary::before,
.cta-section-two .btn--primary::after {
    border-radius: 0px;
}
.cta-section-two .btn--tertiary i,
.cta-section-two .btn--primary i {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: color 0s ease, -webkit-transform 0.5s ease;
    transition: color 0s ease, -webkit-transform 0.5s ease;
    transition: transform 0.5s ease, color 0s ease;
    transition: transform 0.5s ease, color 0s ease, -webkit-transform 0.5s ease;
    font-size: 18px;
}
.cta-section-two .btn--tertiary:hover i,
.cta-section-two .btn--primary:hover i {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}
.cta-section-two .cta-bg {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    z-index: -4;
}
.cta-section-two .cta-bg img {
    width: 100%;
    height: 100%;
}
.cta-section-two .parallax-image-wrap,
.cta-section-two .parallax-image-inner {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
}
.cta-section-two .shape-left {
    position: absolute;
    inset-inline-start: 0px;
    top: -50px;
    bottom: 0px;
    z-index: -2;
}
.cta-section-two .shape-left img {
    -webkit-animation: moveTopBottom 4s ease-in-out infinite;
    animation: moveTopBottom 4s ease-in-out infinite;
}
.cta-section-two .shape {
    position: absolute;
    inset-inline-start: 0px;
    inset-inline-end: 0px;
    bottom: -20px;
    z-index: 1;
}
.cta-section-two .shape img {
    width: 100%;
    height: 40px;
    -o-object-position: top;
    object-position: top;
}

/* ==== 
 --------- (5.05) cta section styles end ---------
 ==== */
/* ==== 
 --------- (5.06) team section styles start ---------
 ==== */
.team {
    padding: 100px 0px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.team .team__single {
    overflow: hidden;
}
.team .team__single:hover .team__single-thumb img {
    -webkit-transform: scale(1.04);
    -ms-transform: scale(1.04);
    transform: scale(1.04);
}
.team .team__single:hover .team__single-thumb::before {
    visibility: visible;
    opacity: 1;
}
.team .team__single:hover .team__single-content {
    background-color: var(--secondary-color);
}
.team .team__single:hover .team__single-content h6 {
    color: var(--white);
}
.team .team__single:hover .team__single-content p {
    color: var(--base-color);
}
.team .team__single:hover .team__single-content__icon {
    background-color: var(--base-color);
    color: var(--secondary-color);
}
.team .team__single:hover .team__single-content__icon i {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.team .team__single:hover .team__single__thumb-social {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}
.team .team__single-thumb {
    position: relative;
    z-index: 1;
}

.team .team__single-thumb a {
    width: 100%;
    border-radius: 10px 10px 0px 0px;
    overflow: hidden;
}
.team .team__single-thumb img {
    width: 100%;
    border-radius: 10px 10px 0px 0px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    min-height: 260px;
    object-fit: cover;
    object-position: top !important;

}
.team .team__single-content {
    padding: 30px 15px 15px;
    background-color: #ffffff;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    border-radius: 0px 0px 10px 10px;
}
.team .team__single-content h6 {
    margin-top: -8px;
    font-weight: 800;
    color: var(--secondary-color);
}
.team .team__single-content p {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
.team .team__single-content__icon {
    width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: var(--secondary-color);
    color: var(--white);
    z-index: 3;
    cursor: pointer;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
.team .team__single-content__icon i {
    font-size: 16px;
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.team .team__icons {
    position: absolute;
    bottom: -20px;
    inset-inline-end: 20px;
}
.team .team__single__thumb-social {
    position: absolute;
    bottom: calc(100% + 12px);
    right: 0px;
    z-index: 3;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transform: translateY(-20%);
    -ms-transform: translateY(-20%);
    transform: translateY(-20%);
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
.team .team__single__thumb-social ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
}
.team .team__single__thumb-social a {
    width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: var(--white);
    color: var(--secondary-color);
    font-size: 16px;
    -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.team .team__single__thumb-social a:hover {
    background-color: var(--base-color);
    color: var(--secondary-color) !important;
}

/* ==== 
 --------- (5.07) community section styles end ---------
 ==== */
/* ==== 
 --------- (5.08) testimonial section styles start ---------
 ==== */
.testimonial {
    padding: 240px 0px 100px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.testimonial .testimonial__inner {
    position: relative;
}
.testimonial .testimonial__slider-single {
    padding: 40px 20px;
    background-color: var(--white);
    border-radius: 30px;
    -webkit-box-shadow: var(--shadow-secondary);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
        rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    border: 1px solid var(--white);
    position: relative;
    z-index: 1;
}
.testimonial .testimonial__slider {
    padding-block: 24px;
    margin-block: -24px;
}
.testimonial p {
    font-weight: 600;
}
.testimonial p span {
    font-weight: 800;
    font-size:25px;
    color:var(--base-color);
}
.testimonial .review {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
}
.testimonial .review i {
    font-size: 18px;
    color: var(--base-color);
}
.testimonial .shape {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
}
.testimonial .author-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.testimonial .author-info .author-thumb {
    width: 54px;
    min-width: 54px;
    height: 54px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.testimonial .author-info .author-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.testimonial .author-info h6 {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 18px;
    line-height: 1;
    margin-bottom: 8px;
}
.testimonial .author-info p {
    font-size: 14px;
    line-height: 1;
}
.testimonial .quote {
    position: absolute;
    z-index: -1;
    top: 30px;
    inset-inline-end: 20px;
}
.testimonial .quote img {
    opacity: 0.05;
    max-width: 10vw;
    min-width: 20px;
}
.testimonial .swiper-slide-active .testimonial__slider-single {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
        rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.testimonial .slider-navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/* ==== 
 --------- (5.08) testimonial section styles end ---------
 ==== */
/* ==== 
 --------- (5.09) blog section styles start ---------
 ==== */
.blog {
    padding: 100px 0px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.blog .blog__single {
    padding: 10px 10px 50px;
    background-color: var(--white);
    border-radius: 24px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
        rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}
.blog .blog__single:hover {
    background-color: var(--tertiary-color);
}

.blog .blog__single:hover .blog__single-cta a {
    color: var(--main-color);
}
.blog .blog__single:hover .blog__single-cta a::before {
    background-color: var(--main-color);
}
.blog .blog__single:hover .blog__single-cta a i {
    color: var(--main-color);
}
.blog .blog__single:hover .spade-two {
    opacity: 1;
    visibility: visible;
}
.blog .blog__single .spade-two {
    position: absolute;
    bottom: 20px;
    inset-inline-end: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: -1;
    max-width: 5vw;
    min-width: 30px;
    -webkit-animation: pulse 4s infinite ease-in-out;
    animation: pulse 4s infinite ease-in-out;
}
.blog .blog__single-thumb {
    position: relative;
    margin-bottom: 30px;
}
.blog .blog__single-thumb a {
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
}
.blog .blog__single-thumb a img {
    width: 100%;
    min-height: 280px;
    border-radius: 16px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
.blog .blog__single-thumb .tag {
    position: absolute;
    top: 10px;
    inset-inline-start: 10px;
}
.blog .blog__single-thumb .tag a {
    padding: 8px 24px;
    background-color: var(--secondary-color);
    border-radius: 30px;
    color: var(--white);
}
.blog .blog__single-thumb .tag a i {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.blog .blog__single-thumb .tag a:hover {
    background-color: var(--base-color);
    color: var(--black);
}

.blog .blog__single-content {
    padding: 0px 12px;
}
.blog .blog__single-content h5 {
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: -8px;
}
.blog .blog__single-cta {
    margin-top: 32px;
    padding: 0px 12px;
}
.blog .blog__single-cta a {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 18px;
    position: relative;
}
.blog .blog__single-cta a::before {
    content: "";
    position: absolute;
    top: 85%;
    inset-inline-start: 0px;
    width: 76%;
    height: 1px;
    background-color: var(--base-color);
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
.blog .blog__single-cta a i {
    color: var(--tertiary-color);
    font-size: 20px;
    margin-bottom: -2px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
.blog .blog-bg {
    position: absolute;
    top: 0px;
    inset-inline: 0px;
    z-index: -2;
    width: 100%;
    height: 60%;
    min-height: 400px;
}
.blog .blog-bg img {
    width: 100%;
    height: 100%;
}
.blog .spade {
    position: absolute;
    top: 25%;
    inset-inline-start: 10%;
    z-index: -1;
}
.blog .spade img {
    max-width: 20vw;
    min-width: 60px;
    -webkit-animation: pulse 4s infinite ease-in-out;
    animation: pulse 4s infinite ease-in-out;
}

.blog-main .blog__single-thumb {
    position: relative;
    margin-bottom: 30px;
}
.blog-main .blog__single-thumb a {
    width: 100%;
    overflow: hidden;
}
.blog-main .blog__single-thumb a img {
    width: 100%;
    min-height: 280px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
.blog-main .blog__single-thumb .tag {
    position: absolute;
    top: 20px;
    inset-inline-start: 20px;
}
.blog-main .blog__single-thumb .tag a {
    padding: 8px 24px;
    background-color: var(--secondary-color);
    color: var(--white);
}
.blog-main .blog__single-thumb .tag a i {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.blog-main .blog__single-thumb .tag a:hover {
    background-color: var(--base-color);
    color: var(--black);
}

.blog-main .blog__single-content h4 {
    font-weight: 700;
    color: var(--black);
    margin-top: -8px;
    margin-bottom: 8px;
}
.blog-main .blog__single-content h4:hover {
    color: var(--main-color);
}
.blog-main .blog__single-cta {
    margin-top: 32px;
}
.blog-main .blog__single-cta a {
    font-weight: 800;
    color: var(--base-color);
    font-size: 14px;
    position: relative;
    text-transform: uppercase;
    gap: 12px;
}

.blog-main .blog__single-cta a i {
    font-size: 16px;
    margin-bottom: 0px;
}

.blog-main .details-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 24px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.blog-main .details-footer .details-tag {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.blog-main .details-footer .tag-header h6 {
    font-weight: 600;
    color: var(--black);
}
.blog-main .details-footer .tag-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
}
.blog-main .details-footer .tag-wrapper a {
    font-size: 14px;
    color: #555555;
    border: 1px solid #707070;
    padding: 2px 14px;
}
.blog-main .details-footer .tag-wrapper a:hover {
    border-color: var(--base-color);
    background-color: var(--base-color);
    color: var(--black);
}
.blog-main .details-footer .social a {
    width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 0px;
    font-size: 14px;
    color: var(--black);
    background-color: #ebebeb;
}
.blog-main .details-footer .social a:hover {
    background-color: var(--base-color);
}
.blog-main .cm-details-author {
    padding-block: 80px !important;
    text-align: center;
}
.blog-main .cm-details-author .author-thumb {
    width: 100px;
    min-width: 100px;
    height: 100px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-inline: auto;
    margin-bottom: 30px;
}
.blog-main .cm-details-author .author-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.blog-main .cm-details-author h6 {
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: -8px;
}
.blog-main .cm-details-author p {
    max-width: 300px;
    margin-inline: auto;
    margin: 15px 0px;
    line-height: 20px;
}

.blog-main .cm-sidebar-widget {
    background-color: #ffffff !important;
}

/* ==== 
 --------- (5.11) faq section styles start ---------
 ==== */
.faq {
    padding: 100px 0px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.faq .accordion-item {
    margin-bottom: 30px;
    background-color: var(--white);
    border-radius: 40px;
    border: 1px solid #ddd;
    -webkit-box-shadow: 0px 4.4px 20px -1px rgba(19, 16, 34, 0.05);
    box-shadow: 0px 4.4px 20px -1px rgba(19, 16, 34, 0.05);
}
.faq .accordion-item:last-of-type {
    margin-bottom: 0px;
}
.faq .accordion-item .accordion-button:not(.collapsed) {
    color: var(--white);
    background-color: var(--base-color);
    border-radius: 20px 20px 0px 0px;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.faq .accordion-item .accordion-button:not(.collapsed)::after {
    color: var(--white);
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.faq .accordion-item .accordion-button {
    border-radius: 0px;
    color: var(--secondary-color);
    position: relative;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 30px;
    padding: 20px 30px;
    font-weight: 700;
}
.faq .accordion-item .accordion-button::after {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    width: 24px;
    min-width: 24px;
    height: 24px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 0px;
    background-image: none;
    font-size: 20px;
    color: var(--secondary-color);
}
.faq
    .accordion-item:first-of-type
    > .accordion-header
    .accordion-button.collapsed {
    border-radius: 50px;
}
.faq
    .accordion-item:last-of-type
    > .accordion-header
    .accordion-button.collapsed {
    border-radius: 50px;
}
.faq h6 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    font-weight: 600;
    color: var(--secondary-color);
}
.faq h6 button {
    padding: 0px;
    font-size: inherit;
    line-height: inherit;
    border: none;
    outline: none;
    -webkit-box-shadow: 0px 0px 0px;
    box-shadow: 0px 0px 0px;
    padding: 16px 0px;
    border-radius: 50px;
    color: var(--secondary-color);
}
.faq .accordion-body {
    padding: 24px 30px;
    border: 0px;
}
.faq .accordion-body p {
    color: #747474;
}
.faq .faq__thumb-inner {
    min-width: 800px;
    position: relative;
}
.faq .faq__thumb-inner img {
    width: unset;
}
.faq .faq__thumb-inner .parallax-image-wrap,
.faq .faq__thumb-inner .parallax-image-inner {
    border-radius: 10px;
}
.faq .faq__thumb-inner .thumb-sm {
    position: absolute;
    top: 80px;
    inset-inline-start: 40%;
    border: 10px solid var(--white);
    border-radius: 20px;
}
.faq .faq__thumb-inner .thumb-lg {
    position: relative;
    display: inline-block;
    border: 10px solid var(--white);
    border-radius: 20px;
}
.faq .faq__thumb-inner .thumb-lg::before {
    content: "";
    position: absolute;
    bottom: 0px;
    inset-inline-end: -40px;
    width: 20px;
    height: 200px;
    background-color: var(--base-color);
    border-radius: 20px;
}
.faq .shape {
    position: absolute;
    z-index: -2;
    background-color: var(--main-color);
    inset-inline-end: 0px;
    top: 0px;
    bottom: 0px;
    width: 47vw;
}
.faq .shape img {
    position: absolute;
    inset-inline-start: -2px;
    top: 0px;
    bottom: 0px;
    height: 100%;
}
/** Video show on FAQS **/
.youtube-video-container {
    position: relative;
    width: 100%;
    max-width: 150px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.youtube-video-container:hover {
    transform: scale(1.02);
}

.youtube-thumbnail img {
    width: 100%;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 0, 0, 0.8);
    color: #fff;
    padding: 5px 8px;
    border-radius: 50%;
    font-size: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
}

.youtube-video-container:hover .play-button {
    background-color: rgba(255, 0, 0, 1);
}

/* ==== 
 --------- (5.11) faq section styles start ---------
 ==== */
/* ==== 
 --------- (5.12) overview section styles start ---------
 ==== */
.overview {
    position: relative;
    top: -50px;
    z-index: 1;
    margin-bottom: -50px;
}
.overview .overview__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
}
.overview .overview__single {
    width: 100%;
    height: 100%;
    padding: 40px 20px;
    background-color: var(--base-color);
}
.overview h4 {
    margin-top: -8px;
    font-weight: 800;
    color: var(--black);
}
.overview .cause__progress {
    margin-block: 30px 25px;
}
.overview .progress-bar {
    overflow: visible;
}
.overview .progress-bar-percent {
    background-color: var(--black);
}
.overview .percent-value {
    position: absolute;
    bottom: 100%;
    inset-inline-end: 0px;
    color: var(--black);
    font-weight: 700;
}
.overview .overview__left {
    border-radius: 10px;
}
.overview .cause-progress__goal {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.overview .cause-progress__goal span {
    font-weight: 600;
    color: var(--black);
}
.overview .cause-progress__goal h5 {
    font-weight: 800;
    color: var(--black);
}
.overview .overview__right {
    background-color: var(--main-color);
    border-radius: 10px;
}
.overview .overview__right span {
    padding: 4px 24px;
    border: 1px solid var(--white);
    border-radius: 30px;
}
.overview .overview__right h4 {
    margin-block: 16px 12px;
    font-weight: 600;
}
.overview .overview__right span,
.overview .overview__right h4,
.overview .overview__right p {
    color: var(--white);
}

/* ==== 
 --------- (5.12) overview section styles end ---------
 ==== */

/* ==== 
 --------- (5.14) counter section styles start ---------
 ==== */
.counter {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.counter .counter__inner {
    position: relative;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 60px;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}
.counter .divider {
    border-right: 1px dashed var(--base-color);
    display: none;
}
.counter .counter__single {
    text-align: center;
    width: 100%;
}
.counter .counter__single:hover .thumb {
    border-color: var(--base-color);
    background-color: var(--base-color);
}
.counter .counter__single:hover .thumb i {
    color: #ffffff;
}
.counter .counter__single div {
    line-height: inherit !important;
}
.counter .counter__single h2 {
    color: var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 800;
}
.counter .counter__single h5 {
    font-weight: 500;
    color: var(--white);
    margin-top: 5px;
}
.counter .counter__single .prefix {
    margin-top: -10px;
    margin-left: 10px;
}
.counter .counter__single .thumb {
    width: 90px;
    min-width: 90px;
    height: 90px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid var(--white);
    -webkit-transition: var(--transition);
    transition: var(--transition);
    margin-inline: auto;
    margin-bottom: 10px;
}
.counter .counter__single .thumb i {
    font-size: 30px;
    color: var(--white);
    -webkit-transition: inherit;
    transition: inherit;
}
.counter .poor {
    position: absolute;
    inset: 0px;
    height: 100%;
    width: 100%;
    z-index: -3;
}
.counter .poor::before {
    content: "";
    position: absolute;
    inset: 0px;
    background: linear-gradient(
        -104deg,
        rgba(12, 26, 23, 0) 1.9%,
        rgba(9, 31, 27, 0.08) 16.64%,
        rgba(9, 31, 27, 0.17) 28.59%,
        rgba(9, 31, 27, 0.37) 38.19%,
        rgba(9, 31, 27, 0.67) 56.36%,
        #091f1b 61.29%,
        #091f1b 95.2%,
        rgba(9, 31, 27, 0.91) 103.44%
    );
    width: 100%;
    height: 100%;
    z-index: -1;
}
.counter .poor .parallax-image-wrap,
.counter .poor .parallax-image-inner {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    z-index: -3;
}
.counter .poor .parallax-image {
    width: 100%;
    height: 100%;
}
.counter .shape-left {
    position: absolute;
    inset-inline-start: 0px;
    top: -50px;
    bottom: 0px;
    z-index: -2;
}
.counter .shape-left img {
    -webkit-animation: moveTopBottom 4s ease-in-out infinite;
    animation: moveTopBottom 4s ease-in-out infinite;
    max-width: 20vw;
    min-width: 50px;
}

/* ==== 
 --------- (5.14) counter section styles end ---------
 ==== */
/* ==== 
 --------- (5.15) event section styles start ---------
 ==== */
.event {
    padding: 100px 0px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.event .event__single-wrapper {
    margin-bottom: 30px;
}
.event .event__single-wrapper:nth-last-of-type(1) {
    margin-bottom: 0px;
}
.event .event__single {
    position: relative;
    overflow: hidden;
}
.event .event__content {
    position: absolute;
    bottom: 0px;
    inset-inline: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 40px 20px 20px 20px;
}
.event .event__content::after {
    content: "";
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 0px 0px 5px 5px;
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(rgba(8, 11, 27, 0)),
        to(rgba(8, 12, 38, 0.9))
    );
    background: linear-gradient(
        180deg,
        rgba(8, 11, 27, 0) 0%,
        rgba(8, 12, 38, 0.9) 100%
    );
}
.event .event__content span,
.event .event__content h4,
.event .event__content p {
    color: var(--white);
}

.event .event__content h4:hover {
    color: var(--base-color);
}
.event .event__content span {
    font-weight: 500;
}
.event .event__content h4 {
    font-weight: 700;
    margin: 5px 0px 0px 0px;
    font-size: 20px;
    line-height: 25px;
}

.event .event__single-thumb .parallax-image-inner,
.event .event__single-thumb .parallax-image-wrap {
    border-radius: 5px;
}
.event .event__single-thumb img {
    width: 100%;
    min-height: 380px;
    border-radius: 5px;
}
.event .event-single-alt .event__single-thumb img {
    min-height: 300px;
    max-height: 330px;
}
.event .spade {
    position: absolute;
    bottom: 30%;
    inset-inline-start: 18%;
    z-index: -1;
}
.event .spade img {
    max-width: 20vw;
    min-width: 60px;
    -webkit-animation: pulse 4s infinite ease-in-out;
    animation: pulse 4s infinite ease-in-out;
}

.cm-details {
    padding: 100px 0px;
}
.cm-details .cm-details__poster {
    border-radius: 20px;
}
.cm-details .cm-details__poster .parallax-image-wrap,
.cm-details .cm-details__poster .parallax-image-inner {
    border-radius: 20px;
}
.cm-details .cm-details__poster img {
    width: 100%;
    min-height: 300px;
    border-radius: 20px;
}
.cm-details .cm-details-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 40px;
    row-gap: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 24px;
}
.cm-details .cm-details-meta p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--black);
}
.cm-details .cm-details-meta p i {
    font-size: 20px;
    color: var(--base-color);
}
.cm-details .cm-group h3 {
    font-weight: 800;
    color: var(--black);
    margin-top: -8px;
    margin-bottom: 18px;
    font-size: 30px;
    line-height: 35px;
}
.cm-details .cm-group p {
    margin-top: 24px;
}
.cm-details .cm-group p:nth-of-type(1) {
    margin-top: 0px;
}

.cm-details .cm-event {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.cm-details .cm-event .cm-event-single {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}
.cm-details .cm-event .cm-event-single:nth-of-type(2) a {
    background-color: #40aedf;
}
.cm-details .cm-event .cm-event-single:nth-of-type(3) a {
    background-color: #be1f31;
}
.cm-details .cm-event .cm-event-single:nth-of-type(4) a {
    background-color: #1881b8;
}
.cm-details .cm-event .cm-event-single:nth-of-type(5) a {
    background-color: #e85838;
}
.cm-details .cm-event a {
    width: 100%;
    background-color: #4c65a3;
    padding: 30px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.cm-details .cm-event a img {
    position: absolute;
    z-index: -1;
    inset: 0px;
    width: 100%;
    height: 100%;
}
.cm-details .cm-map {
    height: 100%;
    min-height: 450px;
    position: relative;
    border-radius: 20px;
    pointer-events: none;
}
.cm-details .cm-map iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0px;
    border-radius: 20px;
}

@-webkit-keyframes animate-stroke-four {
    0% {
        stroke-dasharray: 3000px;
        stroke-dashoffset: 3000px;
        stroke: var(--main-color);
    }
    100% {
        stroke-dashoffset: 0;
        stroke: var(--main-color);
    }
}
@keyframes animate-stroke-four {
    0% {
        stroke-dasharray: 3000px;
        stroke-dashoffset: 3000px;
        stroke: var(--main-color);
    }
    100% {
        stroke-dashoffset: 0;
        stroke: var(--main-color);
    }
}
.cm-details .cm-sidebar-widget {
    padding: 40px 20px;
    border-radius: 20px;
    background-color: var(--white);
    -webkit-box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}
.cm-details .cm-sidebar-widget:nth-last-of-type(1) {
    margin-bottom: 0px;
}
.cm-details .cm-sidebar-widget .intro {
    margin-bottom: 30px;
}
.cm-details .cm-sidebar-widget .intro h5 {
    font-weight: 800;
    color: var(--base-color);
    line-height: 1;
}
.cm-details .cm-sidebar-widget form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    border: 1px solid #ececec;
    border-radius: 10px;
    padding-inline: 16px;
}
.cm-details .cm-sidebar-widget form input {
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding-block: 12px;
    color: var(--black);
}
.cm-details .cm-sidebar-widget form button:hover {
    color: var(--base-color);
}
.cm-details .cm-sidebar-widget .single-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    gap: 16px;
    row-gap: 16px;
    margin-bottom: 30px;
}
.cm-details .cm-sidebar-widget .single-item:nth-last-of-type(1) {
    margin-bottom: 0px;
}
.cm-details .cm-sidebar-widget .single-item .thumb {
    width: 80px;
    min-width: 80px;
    height: 80px;
    border-radius: 10px;
}
.cm-details .cm-sidebar-widget .single-item .thumb a,
.cm-details .cm-sidebar-widget .single-item .thumb img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
.cm-details .cm-sidebar-widget .single-item .content {
    margin: 0px;
    padding: 0px !important;
    border-radius: 0px !important;
    background-color: transparent !important;
}
.cm-details .cm-sidebar-widget .single-item .content p:nth-of-type(2) {
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
    line-height: 20px;
}
.cm-details .cm-sidebar-widget .single-item .content p:nth-of-type(2):hover {
    color: var(--base-color);
}
.cm-details .cm-sidebar-widget .single-item .content p:nth-of-type(1) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    margin-bottom: 5px;
    line-height: 20px;
}
.cm-details .cm-sidebar-widget .single-item .content p:nth-of-type(1) i {
    line-height: 1;
    margin-top: -3px;
}

.cm-details .cm-sidebar-overview {
    padding: 60px 20px;
    text-align: center;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}
.cm-details .cm-sidebar-overview .parallax-image,
.cm-details .cm-sidebar-overview .parallax-image-wrap,
.cm-details .cm-sidebar-overview .parallax-image-inner {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 20px;
    overflow: hidden; /* ensures overlay respects rounded corners */
}

/* Overlay */
.cm-details .cm-sidebar-overview .parallax-image-inner::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 20, 31, 0.6); /* 0C141F shade with opacity */
    border-radius: 20px;
    z-index: 1;
}

.cm-details .cm-sidebar-overview .cm-content {
    margin-block: 40px 60px;
}
.cm-details .cm-sidebar-overview .cm-content p {
    color: var(--white);
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 12px;
}
.cm-details .cm-sidebar-overview .cm-content h4 {
    font-weight: 700;
    color: var(--white);
}
.cm-details .cm-sidebar-overview .btn--primary {
    padding: 18px 40px;
    border-radius: 60px;
    font-weight: 700;
    gap: 8px;
}
.cm-details .cm-sidebar-overview .btn--primary::before,
.cm-details .cm-sidebar-overview .btn--primary::after {
    border-radius: 0px;
}
.cm-details .cm-sidebar-overview .btn--primary i {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: color 0s ease, -webkit-transform 0.5s ease;
    transition: color 0s ease, -webkit-transform 0.5s ease;
    transition: transform 0.5s ease, color 0s ease;
    transition: transform 0.5s ease, color 0s ease, -webkit-transform 0.5s ease;
    font-size: 18px;
}
.cm-details .cm-sidebar-overview .btn--primary:hover i {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

/* ==== 
 --------- (5.15) event section styles end ---------
 ==== */
/* ==== 
 --------- (5.16) contact section styles start ---------
 ==== */
.contact {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.contact .contact__content {
    padding: 100px 20px;
    background-color: var(--main-color);
}
.contact .sub-title {
    color: var(--base-color);
}
.contact h2 {
    color: var(--white);
}
.contact .row > * {
    padding-inline: 0px;
}
.contact .contact-bg {
    position: absolute;
    inset: 0px;
    height: 100%;
    width: 100%;
    z-index: -3;
}
.contact .contact-bg::before {
    content: "";
    position: absolute;
    inset: 0px;
    background: linear-gradient(
        -104deg,
        rgba(12, 26, 23, 0) 1.9%,
        rgba(9, 31, 27, 0.08) 16.64%,
        rgba(9, 31, 27, 0.17) 28.59%,
        rgba(9, 31, 27, 0.37) 38.19%,
        rgba(9, 31, 27, 0.67) 56.36%,
        rgba(9, 31, 27, 0.1882352941) 61.29%,
        #091f1b 95.2%,
        rgba(9, 31, 27, 0.91) 103.44%
    );
    width: 100%;
    height: 100%;
    z-index: -1;
}
.contact .contact-bg .parallax-image-wrap,
.contact .contact-bg .parallax-image-inner {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    z-index: -3;
}
.contact .contact-bg .parallax-image {
    width: 100%;
    height: 100%;
}
.contact .shape-left {
    position: absolute;
    inset-inline-start: 0px;
    top: -50px;
    bottom: 0px;
    z-index: -2;
}
.contact .shape-left img {
    -webkit-animation: moveTopBottom 4s ease-in-out infinite;
    animation: moveTopBottom 4s ease-in-out infinite;
    max-width: 20vw;
    min-width: 50px;
}

.contact-main .contact-main__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    row-gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.contact-main .contact-main__single {
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 15px;
    border-radius: 15px;
}
.contact-main .thumb {
    margin-top: 6px;
}
.contact-main .thumb i {
    font-size: 20px;
    color: var(--base-color);
}
.contact-main .content {
    padding: 0px !important;
}
.contact-main .content h6 {
    font-weight: 800;
    color: var(--black);
    margin-bottom: 14px;
}
.contact-main .content p {
    margin-bottom: 0px;
}
.contact-main .content p:nth-last-of-type(1) {
    margin-bottom: 0px;
}
.contact-main .content a {
    text-transform: lowercase;
    font-weight: 500;
}
.contact-main .content a:hover {
    color: var(--base-color);
}
.contact-main .social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
}
.contact-main .social a {
    width: 30px;
    min-width: 30px;
    height: 30px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid var(--black);
    color: var(--black);
    font-size: 14px;
}
.contact-main .social a:hover {
    background-color: var(--base-color);
    color: #ffffff;
    border-color: var(--base-color);
}
.contact-main .contact-main__thumb img {
    width: 100%;
    min-height: 250px;
}

/* ==== 
 --------- (5.16) contact section styles end ---------
 ==== */

/* ==== 
 --------- (5.18) volunteer section styles start ---------
 ==== */
.volunteer {
    padding: 100px 0px;
}
.volunteer .warning {
    padding: 16px 20px;
    border-radius: 10px;
    border: 1px solid #d8dde1;
    background: #fdf8ea;
    position: relative;
    margin: 30px 0px 40px;
}
.volunteer .warning p {
    line-height: 1.5;
}
.volunteer .warning strong {
    font-weight: 700;
    color: var(--secondary-color);
}
.volunteer .warning .line {
    position: absolute;
    width: 4px;
    height: 100%;
    top: 0px;
    bottom: 0px;
    left: 50px;
    background-color: var(--secondary-color);
    display: none;
}
.volunteer .warning .line i {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 20px;
    color: var(--base-color);
}
.volunteer .cause__progress {
    margin-bottom: 14px;
}
.volunteer .cause__progress:nth-last-of-type(1) {
    margin-bottom: 0px;
}
.volunteer .cause__progress p {
    font-weight: 700;
    color: var(--black);
    margin-bottom: 4px;
}
.volunteer .progress-bar {
    overflow: visible;
}
.volunteer .progress-bar-percent {
    background-color: var(--main-color);
}
.volunteer .percent-value {
    position: absolute;
    bottom: calc(100% + 4px);
    inset-inline-end: 0px;
    color: var(--black);
    font-weight: 700;
}
.volunteer .team-details__list {
    margin-top: 40px !important;
}
.volunteer .team-details__list ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    row-gap: 8px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.volunteer .team-details__list ul li {
    width: 100%;
    font-weight: 700;
    color: var(--black);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
}
.volunteer .team-details__list ul li i {
    color: var(--main-color);
}
.volunteer .team-details__list ul li i::before {
    font-weight: 700;
}
.volunteer .volunteer__form {
    padding: 60px 20px;
    border-radius: 17px;
    border: 1px solid rgba(0, 0, 0, 0.17);
}
.volunteer .volunteer__form h4 {
    font-weight: 700;
    color: var(--black);
    margin-top: -8px;
}
.volunteer .volunteer__form p {
    max-width: 400px;
    margin-top: 8px;
}
.volunteer .form-cta .btn--primary {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    border-radius: 40px;
}
.volunteer .form-cta .btn--primary::before,
.volunteer .form-cta .btn--primary::after {
    width: 52%;
    border-radius: 0px;
}
.volunteer .form-cta .btn--primary:hover::before,
.volunteer .form-cta .btn--primary:hover::after {
    width: 0%;
}

/* ==== 
 --------- (5.18) volunteer section styles end ---------
 ==== */
/* ==== 
 --------- (5.19) error section styles start ---------
 ==== */
.error {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.error .thumb {
    margin-bottom: 40px;
}
.error .thumb img {
    max-width: 500px;
    width: 100%;
}
.error h3 {
    font-weight: 900;
    color: var(--black);
    text-align: center !important;
}
.error p {
    font-weight: 500;
    margin-top: 20px;
    font-size: 18px;
    line-height: 30px;
    color: var(--black);
    max-width: 600px;
    margin-inline: auto;
}
.error .btn--primary {
    padding: 18px 40px;
    border-radius: 60px;
    font-weight: 700;
    gap: 8px;
}
.error .btn--primary::before,
.error .btn--primary::after {
    border-radius: 0px;
}
.error .btn--primary i {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: color 0s ease, -webkit-transform 0.5s ease;
    transition: color 0s ease, -webkit-transform 0.5s ease;
    transition: transform 0.5s ease, color 0s ease;
    transition: transform 0.5s ease, color 0s ease, -webkit-transform 0.5s ease;
    font-size: 18px;
}
.error .btn--primary:hover i {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}
.error .spade {
    position: absolute;
    bottom: -5%;
    inset-inline-start: 10%;
    z-index: -1;
}
.error .spade img {
    max-width: 20vw;
    min-width: 60px;
    -webkit-animation: pulse 4s infinite ease-in-out;
    animation: pulse 4s infinite ease-in-out;
}
.error .spade-green {
    position: absolute;
    top: 18%;
    inset-inline-end: 3%;
    z-index: -1;
}
.error .spade-green img {
    max-width: 5vw;
    min-width: 30px;
    -webkit-animation: pulse 4s infinite ease-in-out;
    animation: pulse 4s infinite ease-in-out;
}

.error__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100vh;
    height: 100%;
    padding: 100px 0px;
}

@media only screen and (max-width: 767.98px) {
    .error p {
        max-width: 400px;
        font-size: 17px;
    }
}
.rtl .error {
    direction: ltr;
}

.dark-body .error {
    background: radial-gradient(#224646, #182828) repeat;
}
.dark-body .error p {
    color: var(--white);
}

/* ==== 
 --------- (5.19) error section styles end ---------
 ==== */
/* ==== 
 --------- (5.20) coming soon section styles start ---------
 ==== */
.soon {
    padding: 100px 0px;
    height: auto;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
    background-color: var(--black);
}
.soon .content {
    text-align: center;
}
.soon .content h4 {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    text-align: center !important;
}
.soon .content p {
    color: #e7e0e0;
    font-weight: 500;
    font-size: 18px;
}
.soon .content p:nth-last-of-type(1) {
    margin-top: 4px;
}

.soon__inner {
    position: relative;
    z-index: 2;
}

.soon__logo {
    text-align: center;
}
.soon__logo img {
    width: 100%;
    max-width: 230px;
}

.time-counter {
    position: relative;
}

.time-countdown {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}

.counter-column {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
    width: 180px;
    height: 180px;
    font-size: 20px;
    line-height: 1em;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    z-index: 7;
    border-radius: 20px;
    margin: 0 15px 20px;
    background-color: rgba(255, 255, 255, 0.06);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.count {
    position: relative;
    display: block;
    font-size: 72px;
    line-height: 1;
    color: #ffffff;
    font-weight: 700;
}

.form-group {
    margin-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    max-width: 600px;
    margin-inline: auto;
}
.form-group input {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: 100%;
    padding: 21px 24px;
    background-color: #ffffff;
    color: #000000;
}
.form-group button {
    min-width: -webkit-min-content;
    min-width: -moz-min-content;
    min-width: min-content;
    padding: 24px 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.soon-bg {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}
.soon-bg::after {
    content: "";
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}
.soon-bg img {
    width: 100%;
    height: 100%;
}
.soon-bg .parallax-image-wrap,
.soon-bg .parallax-image-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0px;
}

.countdown-wrapper {
    height: 500px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    margin-block: 60px;
}

.clock {
    position: relative;
    width: 500px;
    height: 500px;
    background-color: rgba(10, 10, 10, 0.3764705882);
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
}
.clock::before {
    content: "";
    position: absolute;
    top: -20%;
    right: -20%;
    width: 150%;
    height: 150%;
    background: radial-gradient(
        circle at top right,
        rgba(255, 255, 255, 0.4),
        rgba(25, 25, 25, 0.1) 75%
    );
    pointer-events: none;
    z-index: -1;
}

.hand {
    position: absolute;
    background-color: #fff;
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    border-radius: 99px;
}

.hour-hand {
    width: 15px;
    height: 175px;
    top: 75px;
    background-color: #bdbaba;
}

.minute-hand {
    width: 12px;
    height: 175px;
    top: 75px;
    background-color: #5a5a5a;
}

.second-hand {
    position: absolute;
    width: 6px;
    height: 200px;
    top: 50px;
    background-color: #9d9a95;
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
}
.second-hand::before {
    content: "";
    position: absolute;
    width: 6px;
    height: 50px;
    top: 187px;
    background-color: #9d9a95;
    border-radius: 99px;
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
}

.center-dot {
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: white;
    border-radius: 50%;
    -webkit-box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.6);
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.6);
}

.center-dot-orange {
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: black;
    border-radius: 50%;
    -webkit-box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}

.hour-markers {
    position: absolute;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.hour-marker {
    position: absolute;
    color: #fff;
    -webkit-transform: rotate(0deg) translateY(-216.25px);
    -ms-transform: rotate(0deg) translateY(-216.25px);
    transform: rotate(0deg) translateY(-216.25px);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
}
.hour-marker span {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: rgb(143, 137, 137);
}

.minute-marker {
    position: absolute;
    width: 2px;
    height: 11.25px;
    background-color: rgba(255, 255, 255, 0.3);
    -webkit-transform: rotate(0deg) translateY(-216.25px);
    -ms-transform: rotate(0deg) translateY(-216.25px);
    transform: rotate(0deg) translateY(-216.25px);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    display: none;
}

@media only screen and (max-width: 991.98px) {
    .soon {
        padding: 100px 0px;
    }
    .soon .counter-column {
        width: calc(50% - 30px);
    }
    .soon .logo img {
        max-width: 180px;
    }
}
@media only screen and (max-width: 499.98px) {
    .soon .time-countdown {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        position: relative;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        inset: unset;
    }
    .soon .counter-column {
        width: 180px;
        height: 180px;
    }
    .soon .countdown-wrapper {
        height: auto;
    }
    .soon .countdown-wrapper .clock {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
    .soon .form-group {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 16px;
    }
    .soon .form-group button {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 100%;
    }
}
.rtl .soon {
    direction: ltr;
}

/* ==== 
 --------- (5.20) coming soon section styles end ---------
 ==== */
.pg-four .pt-120 {
    padding-top: 100px;
}
.pg-four .ff-volunteer-two .commmit-tab-single {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}
.pg-four .pb-120 {
    padding-bottom: 100px;
}
.pg-four .mt-120 {
    margin-top: 100px;
}
.pg-four .mb-120 {
    margin-bottom: 100px;
}
.pg-four .mb-60 {
    margin-bottom: 60px;
}
.pg-four .mt-60 {
    margin-top: 55px;
}
.pg-four .mt-40 {
    margin-top: 40px;
}
.pg-four .mt-30 {
    margin-top: 30px;
}
.pg-four .mt-25 {
    margin-top: 25px;
}
.pg-four .mt-20 {
    margin-top: 20px;
}
.pg-four .mt-15 {
    margin-top: 15px;
}
.pg-four .mt-10 {
    margin-top: 10px;
}
.pg-four .fw-5 {
    font-weight: 500;
}
.pg-four .fw-6 {
    font-weight: 600;
}
.pg-four .fw-7 {
    font-weight: 700;
}
.pg-four .fw-8 {
    font-weight: 800;
}
.pg-four .text-gr {
    color: #bdbdbd;
}
.pg-four .text-gr-2 {
    color: #667471;
}
.pg-four .txt-base {
    color: var(--base-color);
}
.pg-four .txt-lg {
    font-size: 18px;
}
.pg-four .sub-title {
    font-family: "Edu VIC WA NT Beginner", cursive;
    font-size: 18px;
    line-height: 28px;
    margin-top: -8px;
    color: var(--base-color) !important;
    margin-top: -6px !important;
    margin-bottom: 16px !important;
}
.pg-four .bg-fc {
    background-color: rgba(18, 47, 42, 0.1);
}
.pg-four h1,
.pg-four h2,
.pg-four h3,
.pg-four h4,
.pg-four h5,
.pg-four h6 {
    color: #232222;
    font-family: "Hubot Sans", serif;
}
.pg-four .hb {
    font-family: "Hubot Sans", serif;
}
.pg-four p {
    color: #4f5b73;
}
.pg-four p,
.pg-four span,
.pg-four a,
.pg-four q,
.pg-four li {
    font-family: "Inter", serif;
}
.pg-four .text-xl {
    font-size: 24px;
    line-height: 34px;
}
@media only screen and (max-width: 1199px) {
    .pg-four .text-xl {
        font-size: 20px;
        line-height: 30px;
    }
}
.pg-four .btn--primary {
    border: 1px solid var(--black) !important;
    background-color: var(--base-color);
    font-weight: 600;
    border-radius: 40px;
}
.pg-four .btn--primary::before,
.pg-four .btn--primary::after {
    background-color: #fbda33;
    border-radius: 0px;
}
.pg-four .cta {
    margin-top: 40px !important;
}

@media only screen and (min-width: 576px) {
    .fc-profit .fc-profit__tab-btns {
        padding: 40px;
        -webkit-margin-end: 40px;
        margin-inline-end: 40px;
    }
    .fc-profit .profit__tab-btn {
        padding: 16px 24px;
    }
    .fc-profit .profit__tab-btn i {
        display: block;
    }
    .fc-testimonial .testimonial__slider-single {
        padding: 80px 100px !important;
    }
    .fc-testimonial .testimonial__slider-single q {
        font-size: 24px;
    }
    .ff-volunteer .ff-volunteer__inner {
        padding: 100px;
    }
    .social-sec .social-sec-single {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .social-sec .social-sec-single a {
        width: auto;
        -webkit-border-after: 0px;
        border-block-end: 0px;
        -webkit-border-end: 1px solid #bdd1d7;
        border-inline-end: 1px solid #bdd1d7;
    }
    .social-sec .social-sec-single a i {
        color: var(--base-color);
    }
    .social-sec .social-sec-single a:nth-last-of-type(1) {
        -webkit-border-after: 0px;
        border-block-end: 0px;
        -webkit-border-end: 0px;
        border-inline-end: 0px;
    }
    .ff-testimonial .ff-testimonial__single {
        padding: 60px;
    }
}
@media only screen and (min-width: 768px) {
    .commit .commmit-tab-single {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }
    .fc-community .community-donation {
        padding: 80px !important;
    }
    .ff-service p {
        max-width: 230px;
    }
    .ff-service .txt-lg {
        max-width: 200px;
    }
    .ff-community .tc-one {
        padding: 30px 40px;
        max-width: 320px;
    }
    .ff-community .tc-wrapper {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .ff-community .tc-two {
        padding: 40px 30px;
        min-width: 200px;
    }
    .ff-community .tc-two .tc-three {
        padding: 40px 30px;
    }
    .ff-volunteer-two .cd-f {
        padding: 40px 60px;
    }
    .ff-volunteer-two .cd-f .commmit-tab-single,
    .ff-volunteer-two .cd-f ul {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .banner-five {
        margin-top: 92px;
    }
    .banner-five .bottom-line {
        background-repeat: no-repeat;
        background-size: 100%;
        background-position: 0px 85%;
        padding-bottom: 40px;
    }
}
@media only screen and (min-width: 992px) {
    .header-four {
        top: 106px !important;
    }
    .header-five {
        top: 73px !important;
    }
    .header-five .main-header__menu-box {
        width: 100% !important;
    }
    .banner-five {
        padding-block: 200px;
        margin-top: 165px;
    }
    .banner-four {
        margin-top: 206px !important;
        padding-block: 120px;
    }
    .banner-four h2 br {
        display: inline-block;
    }
}
@media only screen and (min-width: 1200px) {
    .topbar--quaternary .topbar__inner {
        padding-right: 12px !important;
    }
    .ff-volunteer-two .donation-future__thumb {
        margin-left: 30px;
    }
    .ff-commit .help-two__content {
        -webkit-margin-start: 50px;
        margin-inline-start: 50px;
    }
    .banner-five {
        padding-block: 240px;
        margin-top: 179px;
    }
    .banner-five .commmit-tab-single {
        position: absolute;
        bottom: -100px;
        inset-inline-end: 0px;
        z-index: -1;
    }
    .banner-five h1 {
        font-size: 140px;
        line-height: 150px;
    }
    .banner-five .bottom-line {
        background-position: 0px 93%;
        padding-bottom: 60px;
    }
}
@media only screen and (min-width: 1400px) {
    .topbar--quaternary .topbar__inner {
        border-radius: 30px;
    }
    .header-four {
        top: 69px !important;
    }
    .header-four .navbar__mobile-options {
        gap: 40px !important;
    }
    .fc-testimonial {
        padding-block: 200px !important;
    }
    .banner-four {
        margin-top: 169px !important;
        padding-block: 160px;
    }
    .banner-four h2 {
        font-size: 65px !important;
        line-height: 75px !important;
    }
    .counter-four .hb {
        font-size: 100px !important;
        line-height: 110px !important;
        font-weight: 800;
    }
    .counter-four .cnt {
        font-size: 70px !important;
        line-height: 80px !important;
        font-weight: 800;
    }
    .topbar-five .topbar__inner {
        padding: 0px !important;
    }
    .topbar-five .topbar__extra {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .banner-five {
        margin-top: 175px;
    }
}
@media only screen and (min-width: 1700px) {
    .fc-testimonial .slider-navigation {
        position: absolute !important;
        top: 50%;
        -webkit-transform: translateY(-50%) !important;
        -ms-transform: translateY(-50%) !important;
        transform: translateY(-50%) !important;
        inset-inline: unset !important;
        inset-inline-end: 6% !important;
        z-index: 1;
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        max-width: -webkit-max-content !important;
        max-width: -moz-max-content !important;
        max-width: max-content !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: all !important;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-top: 0px !important;
    }
}
.rtl .fc-contact .contact-bg img,
.rtl .fc-profit .shape-left img,
.rtl .banner-four .thumb img {
    scale: -1 1;
}
.rtl .fc-testimonial .slider-navigation {
    direction: rtl !important;
}
.rtl .text-start {
    text-align: right;
}
.rtl .fc-goal .title-animation {
    text-align: center;
}
@media (min-width: 1200px) {
    .rtl .offset-xl-2 {
        margin: 0px;
        margin-right: 16.66666667% !important;
    }
    .rtl .text-xl-end {
        text-align: left !important;
    }
}

.dark-body .pg-four .banner-four h2,
.dark-body .pg-four .banner-four p {
    color: var(--white);
}
.dark-body .pg-four .counter-four {
    background-color: #2e2222;
}
.dark-body .pg-four .counter-four h1,
.dark-body .pg-four .counter-four h2,
.dark-body .pg-four .counter-four h3,
.dark-body .pg-four .counter-four h4,
.dark-body .pg-four .counter-four h5,
.dark-body .pg-four .counter-four h6,
.dark-body .pg-four .counter-four p {
    color: white;
}
.dark-body .pg-four .fc-goal h1,
.dark-body .pg-four .fc-goal h2,
.dark-body .pg-four .fc-goal h3,
.dark-body .pg-four .fc-goal h4,
.dark-body .pg-four .fc-goal h5,
.dark-body .pg-four .fc-goal h6,
.dark-body .pg-four .fc-goal p,
.dark-body .pg-four .commit h1,
.dark-body .pg-four .commit h2,
.dark-body .pg-four .commit h3,
.dark-body .pg-four .commit h4,
.dark-body .pg-four .commit h5,
.dark-body .pg-four .commit h6,
.dark-body .pg-four .commit p {
    color: white;
}
.dark-body .pg-four .fc-goal .goal__single,
.dark-body .pg-four .commit .goal__single {
    background-color: #2e2222;
}
.dark-body .pg-four .commit h4 {
    color: var(--black);
}
.dark-body .pg-four .commit .commmit-tab-single {
    border-color: var(--white);
}
.dark-body .pg-four .fc-profit {
    background-color: #2e2222;
}
.dark-body .pg-four .fc-profit li {
    color: var(--white);
}
.dark-body .pg-four .fc-community {
    background-color: #1e1e1e;
}
.dark-body .pg-four .fc-community h1,
.dark-body .pg-four .fc-community h2,
.dark-body .pg-four .fc-community h3,
.dark-body .pg-four .fc-community h4,
.dark-body .pg-four .fc-community h5,
.dark-body .pg-four .fc-community h6,
.dark-body .pg-four .fc-community p {
    color: white !important;
}
.dark-body .pg-four .fc-cause .shape img {
    display: none;
}
.dark-body .pg-four .fc-partner h1,
.dark-body .pg-four .fc-partner h2,
.dark-body .pg-four .fc-partner h3,
.dark-body .pg-four .fc-partner h4,
.dark-body .pg-four .fc-partner h5,
.dark-body .pg-four .fc-partner h6,
.dark-body .pg-four .fc-partner p {
    color: white !important;
}
.dark-body .pg-four .fc-contact .contact__content {
    background-color: #1e1e1e !important;
}
.dark-body .pg-four .fc-contact .contact__content::after {
    background-color: #1e1e1e !important;
}
.dark-body .pg-four .fc-cause .content h6,
.dark-body .pg-four .fc-cause .content p {
    color: var(--white);
}
.dark-body .pg-four .fc-cause .tag a {
    background-color: var(--base-color) !important;
    color: var(--white) !important;
}
.dark-body .pg-four .fc-cause .cause__slider-cta {
    background-color: transparent;
}
.dark-body .pg-four .fc-cause .cause__slider-cta p,
.dark-body .pg-four .fc-cause .cause__slider-cta span {
    color: var(--white) !important;
}
.dark-body .pg-four .fc-testimonial .testimonial__slider-single {
    background-color: #fbda33 !important;
}
.dark-body .pg-four .fc-testimonial .testimonial__slider-single h6 {
    color: var(--black) !important;
}
.dark-body .pg-four .ff-overview {
    background-color: #2c2a29;
}
.dark-body .pg-four .ff-overview h3 {
    color: var(--white);
}
.dark-body .pg-four .ff-overview a:hover {
    color: var(--white);
}
.dark-body .pg-four .ff-servicce-three,
.dark-body .pg-four .ff-cause,
.dark-body .pg-four .ff-volunteer-two,
.dark-body .pg-four .ff-volunteer,
.dark-body .pg-four .ff-testimonial {
    background-color: #1e1e1e;
}
.dark-body .pg-four .ff-cause h2 {
    color: var(--white) !important;
}
.dark-body .pg-four .ff-cause .cause__slider-cta {
    background-color: transparent;
}
.dark-body .pg-four .ff-cause .cause__slider-cta p,
.dark-body .pg-four .ff-cause .cause__slider-cta span {
    color: var(--white) !important;
}
.dark-body .pg-four .ff-community {
    background-color: #1e1e1e;
}
.dark-body .pg-four .ff-community .tc-two h5,
.dark-body .pg-four .ff-community .tc-two p {
    color: var(--black);
}
.dark-body .pg-four .ff-team .btn--primary::before,
.dark-body .pg-four .ff-team .btn--primary::after {
    background-color: var(--base-color) !important;
}
.dark-body .pg-four .ff-team .shp {
    background-color: #1e1e1e;
}
.dark-body .pg-four .ff-team .team__single-content__icon {
    background-color: var(--black) !important;
}
.dark-body .pg-four .ff-team .team__single-content a {
    color: var(--white) !important;
}
.dark-body .pg-four .ff-blog .blog__single {
    background-color: transparent !important;
}
.dark-body .pg-four .ff-blog .blog__single-cta a {
    color: var(--black);
}
.dark-body .pg-four .topbar-five .topbar__extra p {
    color: var(--white);
}

.header-five.sticky-header {
    top: 0px !important;
}

.box-layout .topbar-five .topbar__extra {
    display: none !important;
}

.box-layout .header-four .social {
    display: none !important;
}

.box-layout .banner-four .thumb img {
    max-width: 38vw;
}

/* Home Six Css Start Here */

.btn-six-primary {
    gap: 10px !important;
    display: inline-flex !important;
}
.btn-six-primary span {
    line-height: 1;
    border-left: 1px solid var(--white);
    padding-left: 8px;
}

/* Header Css */
.topbar-six-area {
    background: var(--primary-six-light);
    padding: 9px 80px;
    z-index: 999 !important;
}
.topbar-six-list {
    max-width: 673px;
    width: 100%;
}
.topbar-six-list li a {
    font-size: 15px;
}
.topbar-six-icon {
    gap: 12px;
}
.topbar-six-icon p {
    font-size: 14px;
}

/* Header Man Css */
.header-six-area {
    background: var(--white);
    padding: 0 75px;
    top: 48px !important;
}
.sticky-header.header-six-area {
    top: 0 !important;
}
.header-six-area .navbar__options .header-six-navbar-space {
    margin-right: 48px;
}
.header-six-btn {
    border-radius: 30px;
}

/* Banner Css */
.banner-six-area {
    padding: 280px 70px 0;
}
.banner-six-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: end;
    padding-bottom: 120px;
}
.banner-six-section-wrapper {
    max-width: 763px;
    width: 100%;
}
.banner-six-subtitle {
    font-family: var(--caveat);
    font-weight: 700;
    font-size: 24px;
    line-height: 108%;
    color: var(--white);
    background: var(--primary-six);
    display: inline-block;
    padding: 3px 18px;
    margin-bottom: 18px;
}
.banner-six-title {
    font-weight: 700;
    font-size: 90px;
    line-height: 1.11;
    color: var(--primary-six-title);
    margin-bottom: 0;
}
.banner-six-title span {
    color: var(--primary-six);
}
.banner-six-paragraph {
    margin-block-end: 18px;
}
.banner-six-conter-wrap {
    display: flex;
    align-items: center;
    gap: 50px;
}
.banner-six-conter-item h2 {
    font-weight: 700;
    font-size: 50px;
    color: var(--primary-six-title);
    margin-bottom: -10px;
}
.banner-six-circle {
    position: relative;
    width: 160px;
    height: 160px;
    line-height: 1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: var(--white);
    border-radius: 50%;
    z-index: 1;
    border: 2px dashed var(--base-color);
    margin-bottom: -55px;
    margin-left: -78px;
}
.banner-six-circle-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 86px;
    height: 86px;
    line-height: 1;
    transform: translate(-50%, -50%);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: var(--base-color);
    cursor: pointer;
}
.banner-six-circle-button span {
    line-height: 1;
    display: block;
}
.banner-six-rotate-content {
    animation: rotateImg 10s infinite linear;
}
@keyframes rotateImg {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.banner-six-content {
    max-width: 736px;
    width: 100%;
}
.banner-six-slide-bg {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 725px;
    border-radius: 40px;
}
.banner-six-social {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
.banner-six-social ul li {
    margin-bottom: 4px;
}
.banner-six-social ul li:last-child {
    margin-bottom: 0;
}
.banner-six-social ul li a {
    width: 35px;
    height: 35px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
    transition: 0.4s;
}
.banner-six-social ul li a:hover {
    background: var(--base-color);
    border: 1px solid rgba(255, 255, 255, 1);
}
.banner-six-social ul li span {
    font-weight: 500;
    font-size: 18px;
    color: var(--white);
    transform: rotate(-90deg);
    margin-top: 38px;
    margin-left: -26px;
}
.banner-six-slide-dot {
    background: rgba(255, 255, 255, 0.15);
    padding: 9px 22px;
    width: 100px !important;
    border-radius: 25px;
    text-align: center;
    position: absolute;
    left: auto !important;
    right: 53px;
    top: auto !important;
    bottom: 50px !important;
    z-index: 2;
}
.banner-six-slide-dot .swiper-pagination-bullet {
    opacity: 1;
    background: var(--white);
    width: 6px;
    height: 6px;
    position: relative;
    z-index: 1;
}
.banner-six-slide-dot
    .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--base-color) !important;
}
.banner-six-slide-dot
    .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    top: 54%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(255, 193, 7, 0.2);
}

/* Feature Css */
.feature-six-area {
    padding-bottom: 90px;
    margin-top: -55px;
}
.feature-six-wrapper {
    display: flex;
    gap: 10px;
    box-shadow: 0 0 3px 0 rgba(18, 47, 42, 0.23);
    background: var(--white);
    padding: 30px 20px 30px 20px;
    margin-bottom: 30px;
    border-radius: 10px;
    transition: 0.4s;
}
.feature-six-icon span {
    width: 70px;
    height: 70px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(132, 204, 76, 0.2);
    border-radius: 50%;
    transition: 0.4s;
}
.feature-six-content h4 {
    font-weight: 700;
    font-size: 26px;
    color: var(--primary-six-title);
    transition: 0.4s;
}
.feature-six-content p {
    transition: 0.4s;
}
.feature-six-wrapper:hover {
    background: var(--primary-six);
}
.feature-six-wrapper:hover .feature-six-icon span {
    background: var(--white);
}
.feature-six-wrapper:hover .feature-six-content h4,
.feature-six-wrapper:hover .feature-six-content p {
    color: var(--white);
}

/* Section Css */
.section-six-wrapper {
    margin-bottom: 28px;
}
.section-six-subtitle {
    font-family: var(--caveat);
    font-weight: 700;
    font-size: 24px;
    color: var(--primary-six);
    margin-bottom: 10px;
}
.section-six-title {
    font-weight: 700;
    font-size: 54px;
    line-height: 1.18;
    text-transform: capitalize;
    color: var(--primary-six-title);
}
.section-six-paragraph {
    line-height: 175%;
    margin-top: 17px;
}

/* About Css */
.about-six-area {
    padding-bottom: 120px;
}
.about-six-shape-1 {
    position: absolute;
    top: 32%;
    left: -107px;
}
.about-six-shape-2 {
    position: absolute;
    bottom: 36%;
    left: -16%;
}
.about-six-shape-3 {
    position: absolute;
    top: 15%;
    right: 0;
}
.about-six-circle {
    border: 2px dashed transparent;
    position: absolute;
    bottom: 9%;
    right: 0;
}
.about-six-circle-button {
    background: var(--primary-six);
}
.about-six-blockquote {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(71, 159, 16, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 36px;
}
.about-six-blockquote-thumb img {
    max-width: 100px;
    height: 100px;
}
.about-six-blockquote-content p {
    font-size: 15px;
    line-height: 175%;
    margin-bottom: 0;
}
.about-six-blockquote-icon {
    position: absolute;
    bottom: 0;
    right: 10px;
}
.about-six-list-wrap {
    display: flex;
    gap: 85px;
}
.about-six-list ul {
    display: flex;
    flex-direction: column;
}
.about-six-list ul li {
    font-weight: 700;
    font-size: 22px;
    color: var(--primary-six-title);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.about-six-list ul li:last-child {
    margin-bottom: 0;
}
.about-six-list ul li span {
    line-height: 1;
}

/* Community Css */
.community-six-bg::after {
    display: none;
}
.community-six-area .community-donation {
    border-radius: 60px;
}
.community-six-area .warning .line {
    background-color: var(--primary-six);
}
.community-six-area .input-group-icon .thumb {
    background-color: var(--primary-six);
}
.community-six-area .input-group-icon {
    background-color: var(--base-color);
}
.community-six-area .input-group-icon input {
    color: var(--white);
}
.community-six-area .donation-form__single .active {
    background-color: var(--primary-six);
    color: var(--white);
    border-color: var(--primary-six);
}
.community-six-area .radio-single input:checked + label::before {
    border-color: var(--base-color);
}
.community-six-area .radio-single input:checked + label::after {
    background-color: var(--base-color);
}
.community-six-area .donation-form__single .donation-amount:hover {
    background-color: var(--primary-six);
    color: var(--white);
    border-color: var(--primary-six);
}

/* Team css */
/* .team-six-area {
	padding: 240px 0 120px;
}
.team-six-wrapper {
  box-shadow: 0 10px 25px 0 rgba(37, 42, 52, 0.08);
	padding: 25px;
  border-radius: 20px;
  margin-bottom: 30px;
}
.team-six-thumb {
  text-align: center;
  margin-bottom: 30px;
  }
.team-six-thumb img {
	border: 3px solid var(--primary-six);
	border-radius: 50%;
}
.team-six-content {
  border: 1px dashed var(--primary-six);
  padding: 20px 20px;
  text-align: center;
  border-radius: 20px;
}
.team-six-subtitle {
  font-weight: 500;
  font-size: 18px;
  color: var(--primary-six);
  margin-bottom: 6px;
}
.team-six-title {
	font-weight: 700;
	font-size: 22px;
	color: var(--primary-six-title);
	line-height: 1;
	margin-bottom: 20px;
}
.team-six-socail ul li {
  margin-right: 10px;
}
.team-six-socail ul li a {
	width: 35px;
	height: 35px;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
  border: 1px solid rgba(102, 116, 113, .4);
	border-radius: 50%;
  transition: .4s;
}
.team-six-socail ul li a:hover {
  background: var(--base-color);
  border-color: var(--base-color);
  color: var(--white);
}
.team-six-button-wrap {
  display: flex;
  align-items: center;
  border: 1px solid rgba(102, 116, 113, .2);
  border-radius: 20px;
  padding: 16px 20px;
  max-width: 496px;
  width: 100%;
  margin: auto;
  margin-top: 25px;
}
.team-six-button-left {
	margin-right: 40px;
	padding-right: 40px;
	position: relative;
}
.team-six-button-left::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 135%;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: rgba(102, 116, 113, .2);
}
.team-six-button-right span {
	line-height: 1.2;
	font-weight: 500;
	font-size: 18px;
}
.team-six-button-right {
	display: flex;
	align-items: center;
	gap: 20px;
}
.team-six-button-right a {
	width: 35px;
	height: 35px;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
  border: 1px solid rgba(250, 171, 52, 0.3);
	color: var(--base-color);
}
.team-six-button-right a:hover {
  background: var(--base-color);
  color: var(--white);
} */

/* Events css */
.events-six-area {
    background: #f6faf3;
    padding: 120px 0 120px;
}
.events-six-button {
    text-align: right;
}
.events-six-wrapper {
    display: flex;
    align-items: center;
    gap: 28px;
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
}
.events-six-wrapper:nth-child(even) {
    flex-direction: row-reverse;
}
.events-six-thumb img {
    max-width: 400px;
    height: 252px;
    object-fit: cover;
}
.events-six-content-top {
    border-bottom: 1px dashed rgba(102, 116, 113, 0.4);
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.events-six-content-top h4 {
    font-weight: 700;
    font-size: 35px;
    line-height: 1.14;
    text-transform: capitalize;
    color: var(--primary-six-title);
    margin-bottom: 14px;
}
.events-six-content-top p {
    font-weight: 500;
    font-size: 18px;
    line-height: 144%;
    color: rgba(102, 116, 113, 0.5);
    text-transform: full-size-kana;
}
.events-six-content-bottom {
    display: flex;
    justify-content: space-between;
}
.events-six-content-date h6 {
    font-weight: 700;
    font-size: 22px;
    color: var(--primary-six-title);
    margin-bottom: 8px;
}
.events-six-content-button .btn-six-primary {
    background: rgba(73, 182, 69, 0.09);
    color: var(--primary-six) !important;
    transition: 0.4s;
}
.events-six-content-button .btn-six-primary::before {
    background: transparent;
}
.events-six-content-button .btn-six-primary::after {
    background: transparent;
}
.events-six-content-button .btn-six-primary span {
    border-left: 1px solid var(--primary-six);
    transition: 0.4s;
}
.events-six-content-button .btn-six-primary:hover {
    background: var(--primary-six) !important;
    color: var(--white) !important;
}
.events-six-content-button .btn-six-primary:hover span {
    border-color: var(--white);
    transition: 0.4s;
}
.events-six-content-button .btn-six-primary:hover span img {
    transition: 0.4s;
}
.events-six-content-button .btn-six-primary:hover span img {
    filter: brightness(0) invert(1);
}

/* difference css */
.difference-six-area::before {
    content: "";
    position: absolute;
    width: 51%;
    height: 100%;
    top: 0;
    left: 0;
    background: #0b3d19;
    z-index: -1;
    border-radius: 0 20px 20px 0;
}
.difference-six-wrapper {
    padding: 120px 0 90px;
}
.difference-six-bottom {
    position: absolute;
    right: 3%;
    top: 50%;
    transform: translateY(-50%);
}
.difference-six-bg-shape {
    position: absolute;
    bottom: 0;
    left: 14%;
    z-index: -1;
    opacity: 0.7;
}
.differece-six-thumb img {
    border-radius: 10px;
}

/* testimonial css */
.testimonial-six-area {
    background: #f6faf3;
    padding: 120px 0 45px;
}
.testimonial-six-active {
    padding: 30px 40px 30px 70px;
}
.testimonial-six-wrapper {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 40px 0 rgba(29, 31, 21, 0.1);
}
.swiper-3d .swiper-slide-shadow {
    background: var(--white);
    box-shadow: 0 10px 40px 0 rgba(29, 31, 21, 0.1);
}
.testimonial-six-top-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.testimonial-six-top {
    border-bottom: 1px dashed rgba(102, 116, 113, 0.4);
    padding-bottom: 20px;
    margin-bottom: 26px;
}
.testimonial-six-top-content h6 {
    font-weight: 700;
    font-size: 22px;
    color: var(--primary-six-title);
}
.testimonial-six-author-img img {
    border: 3px solid var(--base-color);
    border-radius: 50%;
}
.testimonial-six-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.testimonial-six-author {
    display: flex;
    gap: 12px;
}
.testimonial-six-review i {
    color: var(--base-color);
}
.testimonial-six-paragraph {
    font-style: italic;
    font-weight: 500;
    font-size: 15px;
    line-height: 173%;
}
.testimonial-six-author-content h6 {
    font-weight: 700;
    font-size: 22px;
    color: var(--primary-six-title);
    margin-bottom: 0;
}
.testimonial-six-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-six-rating h6 {
    font-weight: 700;
    font-size: 22px;
    color: var(--primary-six-title);
    margin-bottom: 0;
}
.testimonial-six-rating p {
    margin-bottom: 0;
}
.testimonial-six-dot {
    background: var(--base-color);
    padding: 8px 26px;
    width: 100px !important;
    border-radius: 25px;
    text-align: center;
    margin: auto;
}
.testimonial-six-dot .swiper-pagination-bullet {
    opacity: 1;
    background: var(--white);
    width: 7px;
    height: 7px;
    position: relative;
    z-index: 1;
}
.testimonial-six-dot
    .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
}
.testimonial-six-down-content {
    position: relative;
}
.testimonial-six-down-content::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 24px;
    left: 0;
    background: rgba(102, 116, 113, 0.2);
}
.testimonial-six-down-title {
    color: var(--primary-six-title);
    font-weight: 700;
    font-size: 22px;
    padding: 0 15px;
    position: relative;
    z-index: 1;
    display: inline-flex;
    background: #f6faf3;
    align-items: center;
    gap: 10px;
}
.testimonial-six-down-title span {
    line-height: 1;
}
.testimonial-six-frist-row {
    padding-bottom: 100px;
}

/* Brand Css */

.brand-six-area {
    background: #f6faf3;
    padding-bottom: 120px;
}
.brand-six-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(73, 182, 69, 0.3);
    border-radius: 10px;
    padding: 40px 0;
    height: 125px;
    cursor: pointer;
}
.brand-six-active-media {
    transition: all 0.7s ease-in-out;
    transform: translateY(0%);
}
.brand-six-hover-media {
    opacity: 0;
    visibility: hidden;
    transition: all 0.7s ease-in-out;
    transform: translateY(30%);
    border-radius: 50%;
    position: absolute;
}
.brand-six-wrapper:hover .brand-six-active-media {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    transform: translateY(-100%);
}
.brand-six-wrapper:hover .brand-six-hover-media {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Cause Css */
.cause-six-area {
    padding: 120px 0 90px;
}
.cause-six-wrapper {
    background: var(--white);
    box-shadow: 0 10px 25px 0 rgba(37, 42, 52, 0.08);
    border-radius: 20px;
    margin-bottom: 30px;
}
.cause-six-wrapper .content h6 {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.25;
    color: var(--primary-six-title);
    margin-bottom: 14px;
}
.cause-six-wrapper .content h6:hover {
    color: var(--base-color);
}
.cause-six-wrapper .bottom {
    padding: 16px 12px 20px 15px;
}
.cause-six-wrapper .progress-bar .progress-bar-percent {
    background-color: var(--primary-six);
}
.cause-six-wrapper .progress-bar {
    background-color: rgba(71, 159, 16, 0.2);
}
.cause-six-wrapper .content p {
    font-size: 14px;
    margin-bottom: 4px;
}
.cause-six-wrapper .cause-progress__intro p span {
    font-size: 14px;
    color: var(--primary-six-title);
}
.cause-six-wrapper .cause-progress__intro p {
    display: flex;
    justify-content: space-between;
}
.cause-six-wrapper .cause-progress__goal {
    display: flex;
    justify-content: space-between;
    margin: 12px 0;
}
.cause-six-wrapper .cause-progress__goal p {
    font-weight: 700;
    font-size: 14px;
    color: var(--primary-six-title);
}
/* .cause-six-wrapper .btn--secondary {
    padding: 8px 20px;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid var(--primary-six);
    color: var(--primary-six);
    background-color: transparent;
}
.cause-six-wrapper .btn--secondary::before {
	background-color: transparent;
}
.cause-six-wrapper .btn--secondary::after {
	background-color: transparent;
}
.cause-six-wrapper .btn--secondary:hover {
  border: 1px solid var(--base-color);
  color: var(--base-color);
} */

/* Video Css */
.video-six-area {
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 190px 0 190px;
    position: relative;
    z-index: 1;
}
.video-six-area::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(18, 47, 42, 0.8);
    z-index: -1;
}
.video-six-button a {
    width: 130px;
    height: 130px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-six);
    color: var(--white);
    border-radius: 50%;
    font-size: 60px;
    position: relative;
}
.video-six-button a::after {
    content: "";
    position: absolute;
    width: 80%;
    height: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: borderanimate2 2s linear infinite;
    z-index: -1;
}
.video-six-button a i {
    transform: translatex(8px);
}

@keyframes borderanimate2 {
    0% {
        transform: translate(-50%, -50%) scale(0.4);
    }
    60% {
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

/* Blog Css */
.blog-six-area {
    padding: 120px 0 90px;
}
.blog-six-wrapper {
    background: var(--white);
    box-shadow: 0 10px 25px 0 rgba(37, 42, 52, 0.08);
    border-radius: 20px;
    margin-bottom: 30px;
}
.blog-six-area .blog__single-inner {
    padding: 20px 4px 30px;
}
.blog-six-area .blog__single-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    row-gap: 8px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding: 0px 12px;
}
.blog-six-area .blog__single-meta p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
.blog-six-area .blog__single-meta p i {
    color: var(--base-color);
}
.blog-six-area .blog__single-content {
    padding: 0px 12px;
}
.blog-six-area .blog__single-content h5 {
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: -8px;
}
.blog-six-area .blog__single-content h5:hover {
    color: var(--base-color);
}
.blog-six-area .blog__single-cta {
    margin-top: 20px;
    padding: 0px 12px;
}
.blog-six-area .blog__single-cta a {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 18px;
    position: relative;
}
.blog-six-area .blog__single-cta a::before {
    content: "";
    position: absolute;
    top: 85%;
    inset-inline-start: 0px;
    width: 76%;
    height: 1px;
    background-color: var(--secondary-color);
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
.blog-six-area .blog__single-cta a i {
    color: var(--tertiary-color);
    font-size: 20px;
    margin-bottom: -2px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
.blog-six-button {
    margin-left: 10px;
}
.blog-six-button .btn-six-primary {
    padding: 16px 34px;
    background-color: var(--primary-six);
}
.blog-six-button .btn-six-primary::before {
    background: var(--primary-six);
}
.blog-six-button .btn-six-primary::after {
    background: var(--primary-six);
}
.blog-six-button .btn-six-primary:hover {
    background: var(--base-color);
}

/* Subscribe Css */
.subscribe-six-left {
    background: var(--base-color);
    padding: 60px 33px 50px;
    border-radius: 20px 0 0 20px;
}
.subscribe-six-left h6 {
    font-weight: 700;
    font-size: 22px;
    color: var(--white);
}
.subscribe-six-left h3 {
    font-weight: 700;
    font-size: 36px;
    color: var(--white);
}
.subscribe-six-input {
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    border-radius: 0 20px 20px 0;
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 0 33px 0 33px;
    position: relative;
}
.subscribe-six-input input {
    width: 100%;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 28px;
    padding-left: 30px;
    color: var(--white);
}
.subscribe-six-input input::placeholder {
    color: var(--white);
}
.subscribe-six-button {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    overflow: hidden;
}
.subscribe-six-button .btn-six-primary {
    padding: 16px 24px;
}

/* Footer Css */
.footer-six-area {
    background: #0b3d19;
    padding-top: 210px !important;
    margin-top: -92px;
}
.footer-six-area::after {
    display: none;
}
.footer-six-area .footer-two__widget li a {
    font-weight: 300;
    margin-left: -20px;
}
.footer-six-area .footer-two__widget li a::after {
    display: none;
}
.footer-six-area .footer-two__widget li a:hover {
    color: var(--base-color) !important;
    margin-left: 0;
}
.footer-six-area .footer-two__widget li a span {
    background: none;
    height: inherit;
    width: inherit;
    line-height: 1;
    transform: translateY(-2px);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}
.footer-six-area .footer-two__widget li a:hover span {
    opacity: 1;
    visibility: visible;
}
.footer-six-copyright {
    border: none !important;
    padding: 0 !important;
}
.footer-six-copyright-border {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
}
.footer-six-area .footer-two__copyright-inner p {
    font-weight: 300 !important;
}
.footer-six-area .footer-two__widget .footer-two__widget-content--contact a {
    margin-left: 0;
}
.footer-six-bg-shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.footer-six-bg-shape-2 {
    position: absolute;
    bottom: 20%;
    left: 4%;
    z-index: -1;
}
.footer-six-bg-shape-3 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}
/* Home Six Css Start End */

/* Home Seven Css Start Start */

/* Font-Family */
.recoleta-font {
    font-family: var(--recoleta);
}
.satoshi-font {
    font-family: var(--satoshi);
}

/* Button Seven */
.banner-seven-button {
    display: flex;
    align-items: center;
    gap: 28px;
}
.btn-six-primary span {
    line-height: 1;
    border-left: none;
    padding-left: 0;
}
.btn-six-primary:hover {
    color: var(--black);
}
.home-seven-body {
    background: var(--primary-seven-body);
}
.home-seven-body .container {
    max-width: 1420px;
}

/* Section Title */
.section-seven-title {
    font-family: var(--recoleta);
    font-weight: 400;
    font-size: 70px;
    color: var(--primary-seven-heading);
    margin-bottom: 18px;
}
.section-seven-paragraph {
    font-family: var(--satoshi);
    font-weight: 500;
    font-size: 18px;
    color: --primary-seven-text;
    text-transform: lowercase;
}

/* Butoon Arrow Hover */
.icon_box {
    position: relative;
    display: inline-flex;
    overflow: hidden;
    padding: 0 4px;
    transform: rotate(-45deg);
    transition: all 0.3s ease-in-out 0s;
}
.icon_box i {
    display: inline-flex;
    line-height: 1;
}
.icon_box .icon_first {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    line-height: 1;
    transition: all 0.3s ease-in-out 0s;
}
.icon_box .icon_second {
    position: absolute;
    transform: translateX(-150%);
    transition: all 0.3s ease-in-out 0s;
}
.arrow-btn:hover .icon_box .icon_first {
    transform: translateX(150%);
}
.arrow-btn:hover .icon_box .icon_second {
    transform: translateX(0%);
}

/* Header Css */
.header-seven-area {
    top: 0 !important;
    padding: 0 0 0 80px;
    z-index: 11;
    position: relative;
}
.header-seven-btn {
    background: var(--white);
    box-shadow: 0 4px 7px 0 rgba(0, 0, 0, 0.06);
    color: var(--black);
    padding: 24px 56px;
    border-radius: 34px;
    display: inline-flex;
    font-size: 16px;
    letter-spacing: 0.05em;
    text-transform: capitalize;
    gap: 15px;
    font-family: var(--recoleta);
}
.header-seven-btn:hover {
    box-shadow: 0 4px 7px 0 rgba(0, 0, 0, 0.2);
}
.header-seven-sidenav-box button {
    background: var(--base-color);
    padding: 38px 59px;
    display: inline-flex;
    gap: 17px;
    font-weight: 500;
    font-size: 18px;
    color: var(--black);
}
.header-seven-wrap {
    display: flex;
    gap: 40px;
}
.header-seven-navbar-space {
    margin-right: 104px !important;
}
.header-seven-area .contact-btn p {
    font-size: 14px;
    text-transform: initial;
    line-height: 1;
    font-weight: 400;
    color: #0c141f;
    margin-bottom: 8px;
}
.header-seven-area .navbar__item a {
    text-transform: uppercase;
    font-weight: 700;
}
.header-seven-area .contact-btn a {
    font-weight: 400;
    font-size: 18px;
    color: #0c141f;
    line-height: 1;
    background-image: linear-gradient(
        to right,
        currentColor 0,
        currentColor 100%
    );
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 0 1px;
    transition: all 0.3s, background-size 0.8s;
}
.header-seven-area .contact-btn a:hover {
    background-size: 100% 1px;
}

/* Banner Css */
.banner-seven-area {
    background: var(--white);
    padding: 70px 0 120px 260px;
}
.banner-seven-btn {
    font-weight: 500;
    font-size: 16px;
    color: var(--black);
    font-family: var(--recoleta);
    background-image: linear-gradient(
        to right,
        currentColor 0,
        currentColor 100%
    );
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 0 1px;
    transition: all 0.3s, background-size 0.8s;
}
.banner-seven-btn:hover {
    background-size: 100% 1px;
}
.banner-seven-title {
    color: #0e253a;
    font-family: var(--recoleta);
    font-weight: 400;
    font-size: 170px;
    line-height: 82%;
    text-transform: capitalize;
    margin-bottom: 56px;
}
.banner-seven-button {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 58px;
}
.banner-seven-button .btn-seven-primary {
    padding: 19px 40px;
    border: 1px solid var(--black);
}
.banner-seven-button .btn-seven-primary:hover {
    border: 1px solid transparent;
}
.banner-seven-paragraph {
    max-width: 310px;
    width: 100%;
    font-weight: 500;
    font-size: 18px;
    color: #032532;
    text-transform: lowercase;
    font-family: var(--satoshi);
    margin-bottom: 0;
    padding-left: 20px;
    position: relative;
    margin-left: auto;
    margin-right: 85px;
}
.banner-seven-paragraph::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 74px;
    top: 55%;
    left: 0;
    transform: translateY(-50%);
    background: var(--base-color);
}
.banner-seven-titming {
    transition-timing-function: linear;
}
.banner-seven-wrapper-shape-1 {
    position: absolute;
    left: -27%;
    top: 0;
    z-index: -1;
    animation: bounce-one 4s forwards infinite alternate;
}
.banner-seven-wrapper-shape-2 {
    position: absolute;
    left: -27%;
    bottom: 0;
    z-index: -1;
    animation: rotate 4.5s infinite;
}
.banner-seven-wrapper-shape-4 {
    position: absolute;
    top: -18%;
    right: -15%;
    z-index: -1;
    animation: bounce-two 1s ease-in-out 0.1s forwards infinite alternate;
}
.banner-seven-bg-shape-1 {
    position: absolute;
    top: -14%;
    left: 0;
    z-index: -1;
}
.banner-seven-bg-shape-2 {
    position: absolute;
    top: 70px;
    right: 0;
    z-index: -1;
}
.banner-seven-bg-shape-3 {
    position: absolute;
    left: 0;
    bottom: -46px;
    z-index: -1;
}
@keyframes bounce-one {
    0% {
        -webkit-transform: translateY(-30px);
        -moz-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        -o-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    100% {
        -webkit-transform: translateY(20px);
        -moz-transform: translateY(20px);
        -ms-transform: translateY(20px);
        -o-transform: translateY(20px);
        transform: translateY(20px);
    }
}
@keyframes bounce-two {
    0% {
        transform: rotate(5deg);
    }
    100% {
        transform: rotate(-5deg);
    }
}
@keyframes rotate {
    0% {
        transform: rotate(0);
    }
    50% {
        transform: rotate(-90deg);
    }
    100% {
        transform: rotate(0);
    }
}

/* About Css */
.about-seven-area {
    padding: 60px 0 160px;
}
.about-seven-area .section-seven-paragraph {
    max-width: 448px;
    margin: auto;
}
.about-seven-wrapper {
    background: #088780;
    padding: 80px 60px 80px;
    max-width: 592px;
    margin-left: 160px;
}
.about-seven-title {
    font-family: var(--recoleta);
    font-weight: 400;
    font-size: 70px;
    line-height: 0.82;
    color: var(--white);
    margin-bottom: 42px;
}
.about-seven-list ul li {
    list-style: disc;
    padding-left: 6px;
    margin-bottom: 22px;
    color: var(--white);
}
.about-seven-list ul li a {
    font-family: var(--satoshi);
    font-weight: 400;
    font-size: 20px;
    text-transform: capitalize;
    color: var(--white);
    background-image: linear-gradient(
        to right,
        currentColor 0,
        currentColor 100%
    );
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 0 1px;
    transition: all 0.3s, background-size 0.8s;
}
.about-seven-list ul li a:hover {
    background-size: 100% 1px;
}
.about-seven-shape {
    position: absolute;
    top: -106px;
    left: 28px;
    z-index: -1;
}
.about-seven-thumb {
    margin-left: 115px;
}
.about-seven-counter {
    margin-left: 40px;
    margin-top: -74px;
}
.about-seven-counter h2 {
    font-family: var(--satoshi);
    font-weight: 700;
    font-size: 200px;
    line-height: 14%;
    color: var(--white);
    margin-bottom: 17px;
}
.about-seven-counter h2 span {
    display: inline-block;
    line-height: 139px;
}
.about-seven-counter p {
    font-family: var(--recoleta);
    font-weight: 400;
    font-size: 41px;
    text-transform: capitalize;
    color: var(--primary-seven-heading);
    margin-bottom: 0;
}
.about-seven-bg-shape-1 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    animation: bounce-left 3.5s infinite;
}
.about-seven-bg-shape-2 {
    position: absolute;
    bottom: -45px;
    right: 0;
    z-index: -1;
}

/* Childhood Css */
.childhood-seven-area {
    background: #1e1e1e;
    padding: 160px 0 130px;
}
.childhood-top-descrip {
    margin-left: 80px;
}
.childhood-seven-main-wrapper {
    margin-bottom: 30px;
}
.childhood-seven-wrapper {
    background: #ffecc9;
    width: 100%;
    height: 554px;
    margin-bottom: 30px;
}
.childhood-seven-wrapper::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(
        181deg,
        #fff 0%,
        rgba(255, 255, 255, 0) 22.38%,
        rgba(255, 255, 255, 0) 50.82%,
        rgba(255, 255, 255, 0.22) 70.21%,
        rgba(255, 255, 255, 0.82) 87.03%,
        #fff 100%
    );
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: 0.8s ease-in-out;
}
.childhood-seven-thumb a {
    display: block;
}
.childhood-seven-thumb img {
    width: 240px;
    height: 240px;
    object-fit: cover;
    transition: 0.4s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
    border-radius: 50%;
}
.childhood-seven-wrapper:hover .childhood-seven-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 0;
    transition: 0.4s ease-in-out;
}
.childhood-seven-wrapper:hover::before {
    opacity: 1;
    visibility: visible;
}
.childhood-seven-button {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    transition: 0.6s;
}
.childhood-seven-button a {
    font-family: var(--recoleta);
    font-weight: 400;
    font-size: 29px;
    line-height: 92%;
    text-transform: capitalize;
    text-align: center;
    color: #043460;
}
.childhood-seven-wrapper:hover .childhood-seven-button {
    bottom: 45px;
}
.childhood-seven-title {
    font-weight: 400;
    font-size: 26px;
    color: var(--white);
    display: inline-block;
    margin-bottom: 8px;
    background-image: linear-gradient(
        to right,
        currentColor 0,
        currentColor 100%
    );
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 0 1px;
    transition: all 0.3s, background-size 0.8s;
}
.childhood-seven-title:hover {
    background-size: 100% 1px;
}
.childhood-seven-paragraph {
    font-family: var(--satoshi);
    font-weight: 500;
    font-size: 18px;
    line-height: 160%;
    color: var(--white);
}
.childhood-seven-bg-shape-1 {
    position: absolute;
    top: 190px;
    right: 50px;
    z-index: -1;
    animation: moving 5s linear infinite;
}
.childhood-seven-bg-shape-2 {
    position: absolute;
    bottom: -52px;
    left: 0;
    z-index: -1;
}

.counter-seven-area {
    padding: 0 0 120px;
}
.counter-seven-wrapper {
    text-align: center;
    margin-bottom: 30px;
}
.counter-seven-wrapper h2 {
    font-family: var(--recoleta);
    font-weight: 400;
    font-size: 117px;
    letter-spacing: -0.04em;
    color: #13b7ae;
    margin-bottom: 22px;
}
.counter-seven-wrapper p {
    font-family: var(--satoshi);
    font-weight: 500;
    font-size: 15px;
    color: #032532;
}
.counter-seven-heading {
    font-family: var(--recoleta);
    font-weight: 400;
    font-size: 226px;
    color: var(--primary-seven-heading);
    border-bottom: 8px solid var(--primary-seven-heading);
    line-height: 0.7;
    margin-bottom: 80px;
    display: inline-block;
}
.counter-seven-wrap {
    margin-top: 50px;
}
.counter-seven-volunteer h2 {
    width: 375px;
    height: 375px;
    line-height: 1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    background: #fbda33;
    color: var(--primary-seven-heading);
    font-family: var(--recoleta);
    font-weight: 400;
    font-size: 143px;
    flex-direction: column;
    border: 1px solid var(--primary-seven-heading);
    position: relative;
    z-index: 1;
}
.counter-seven-volunteer h2::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 16px;
    background: transparent;
    border: 1px solid var(--primary-seven-heading);
    border-radius: 50%;
    z-index: -1;
}
.counter-seven-volunteer h2 span {
    font-size: 50px;
    display: inline-block;
}
.counter-seven-bg-shape-1 {
    position: absolute;
    top: -16%;
    left: 0;
    z-index: -1;
    animation: bounce-one 4s forwards infinite alternate;
}
.counter-seven-bg-shape-2 {
    position: absolute;
    bottom: 40px;
    left: 60px;
    z-index: -1;
    animation: bounce-two 1s ease-in-out 0.1s forwards infinite alternate;
}
.counter-seven-bg-shape-3 {
    position: absolute;
    top: -6%;
    right: 16px;
    z-index: -1;
    animation: bounce-one 3s forwards infinite alternate;
}
.counter-seven-bg-shape-4 {
    position: absolute;
    right: 45px;
    bottom: 22%;
    z-index: -1;
    animation: moving 5s linear infinite;
}
@keyframes moving {
    0% {
        transform: translatey(0px);
    }
    20% {
        transform: translateX(-30px);
    }
    50% {
        transform: translatey(-20px);
    }

    100% {
        transform: translatey(0px);
    }
}

/* Service Css */

.cause-seven-area {
    background: transparent;
    padding: 180px 0 120px;
    position: inherit;
}
.cause-seven-area .section-seven-paragraph {
    max-width: 730px;
    margin: auto;
}
.cause-seven-area .cause__slider-wrapper {
    margin-top: 0 !important;
}
.cause-seven-active {
    margin-bottom: 30px;
}
.cause-seven-area .thumb a {
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
}
.cause-seven-area .thumb a img {
    height: 322px;
    border-radius: 8px;
}
.cause-seven-area .cause__slider-single {
    padding: 12px;
    background-color: transparent;
    box-shadow: none;
    border-radius: 7px;
    border: 1px solid #000;
}
.cause-seven-area .cause__slider-cta {
    padding: 20px;
    border-radius: 10px;
    background: var(--white);
    margin-top: 24px;
}
/* .cause-seven-area .cause__cta a {
	width: 100%;
	display: inline-flex;
	justify-content: center;
	padding: 17px 30px;
} */
.cause-seven-area .content h6 {
    font-family: var(--recoleta);
    font-weight: 400;
    font-size: 32px;
    line-height: 1.14;
    text-transform: capitalize;
    color: var(--primary-seven-heading);
    margin-bottom: 16px;
}
.cause-seven-area .content h6 a {
    background-image: linear-gradient(
        to right,
        currentColor 0,
        currentColor 100%
    );
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 0 1px;
    transition: all 0.3s, background-size 0.8s;
    display: initial;
}
.cause-seven-area .content h6 a:hover {
    background-size: 100% 1px;
}
.cause-seven-area .thumb .tag a {
    padding: 3px 28px;
    background-color: #13b7ae;
    color: var(--white);
}
.cause-seven-area .cause__slider-single:hover .thumb .tag a {
    background-color: var(--base-color);
    color: var(--black);
}
.cause-seven-area .swiper-slide-active .thumb .tag a {
    background-color: var(--base-color);
    color: var(--black);
}
.cause-seven-navigation button {
    width: 60px;
    height: 60px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border-radius: 50%;
    transition: all 0.3s ease 0s;
    color: var(--black);
    border: 2px solid var(--black);
    position: absolute;
    left: -120px;
    top: 355px;
    z-index: 2;
}
.cause-seven-navigation button.next-cause {
    left: auto;
    right: -120px;
}
.cause-seven-navigation button:hover {
    background: var(--white);
    box-shadow: 0 4px 19px 0 rgba(0, 0, 0, 0.1);
    border-color: var(--white);
}

/* community css */
.community-seven-area {
    background-size: cover;
    background-position: left top;
    background-repeat: no-repeat;
    padding: 190px 0 120px;
}
.community-seven-area .donation-form__single .donation-amount {
    padding: 10px 16px;
    border: none;
    color: var(--white);
    background: rgba(255, 255, 255, 0.13);
}
.community-seven-area .donation-form {
    margin-top: 35px;
}
.community-seven-area .donation-form__single .donation-amount:hover {
    background-color: #13b7ae;
    color: var(--white);
    border-color: var(--secondary-color);
}
.community-seven-area .radio-single input:checked + label::before {
    border-color: var(--base-color);
}
.community-seven-area .radio-single input:checked + label::after {
    background-color: var(--base-color);
}
.community-seven-content h2 {
    font-family: var(--recoleta);
    font-weight: 400;
    font-size: 180px;
    color: #fff;
    margin-bottom: 85px;
}
.community-seven-content p {
    font-family: var(--satoshi);
    font-weight: 400;
    font-size: 18px;
    line-height: 167%;
    letter-spacing: 0.01em;
    color: #fff;
}
.community-seven-bg-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.contact-seven-area {
    margin: 0 56px 0;
}
.contact-seven-area .section-seven-wrapper {
    max-width: 598px;
}
.contact-seven-content {
    background: #1e1e1e !important;
}
.contact-seven-area .input-single input {
    background: #252525 !important;
}
.contact-seven-area .input-single {
    background: #252525 !important;
    border: 2px solid rgba(255, 255, 255, 0.09);
}
.contact-seven-thumb .image {
    margin-bottom: 22px;
}
.contact-seven-wrap {
    background: #fff;
    padding: 0 68px;
}
.contact-seven-area .row > * {
    padding-inline: 15px;
}

/* testimonial css */
.testimonial-seven-area {
    padding: 120px 0 100px;
}
.testimonial-seven-thumb img {
    border-radius: 37px;
}
.testimonial-seven-thumb-quate {
    position: absolute;
    top: 16px;
    left: 16px;
}
.testimonial-seven-thumb-quate a {
    width: 90px;
    height: 90px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1e1e1e;
    border-radius: 50%;
}
.testimonial-seven-wrapper {
    background: #fcf8ed;
    border: 1px solid var(--primary-seven-heading);
    border-radius: 11px;
    padding: 50px 60px 40px 45px;
}
.testimonial-seven-title {
    font-family: var(--recoleta);
    font-weight: 400;
    font-size: 36px;
    color: #13b7ae;
    border-bottom: 1px solid #cabdbd;
    margin-bottom: 30px;
    padding-bottom: 15px;
}
.testimonial-seven-paragraph {
    font-family: var(--recoleta);
    font-weight: 400;
    font-size: 38px;
    line-height: 129%;
    color: var(--primary-seven-heading);
    margin-bottom: 20px;
}
.testimonial-seven-left {
    display: flex;
    align-items: center;
    gap: 26px;
}
.testimonial-seven-thumb {
    margin-bottom: 30px;
}
.testimonial-seven-name {
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.03em;
    color: var(--primary-seven-heading);
    margin-bottom: 0;
}
.testimonial-seven-name span {
    font-weight: 500;
    font-size: 14px;
    color: #1e1e1e;
}
.testimonial-seven-icon span {
    width: 90px;
    height: 90px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-seven-heading);
    border-radius: 50%;
}
.testimonial-seven-area .project-panel {
    margin-bottom: 30px;
}
.testimonial-seven-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    animation: bounce-one 4s forwards infinite alternate;
}
@keyframes bounce-left {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(50px);
    }
    100% {
        transform: translateX(0);
    }
}

/* Blog css */
.blog-seven-area {
    background: var(--white);
    padding: 120px 0 120px;
}
.blog-seven-area .section-seven-paragraph {
    max-width: 730px;
    margin: auto;
}
.blog-seven-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.blog-seven-meta ul {
    display: flex;
    gap: 20px;
}
.blog-seven-meta ul li {
    font-family: var(--satoshi);
    font-weight: 500;
    font-size: 16px;
    color: #032532;
    padding-left: 15px;
    position: relative;
}
.blog-seven-meta ul li::before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    top: 50%;
    left: 0;
    background: var(--base-color);
    border-radius: 50%;
    transform: translateY(-50%);
}
.blog-seven-content {
    max-width: 527px;
    width: 100%;
    margin-left: 60px;
}
.blog-seven-title {
    font-family: var(--recoleta);
    font-weight: 400;
    font-size: 44px;
    line-height: 114%;
    text-transform: capitalize;
    color: var(--primary-seven-heading);
    margin-bottom: 36px;
    line-height: 114%;
}
.blog-seven-title a {
    background-image: linear-gradient(
        to right,
        currentColor 0,
        currentColor 100%
    );
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 0 1px;
    transition: all 0.3s, background-size 0.8s;
    display: initial;
}
.blog-seven-title a:hover {
    background-size: 100% 1px;
}
.blog-seven-meta {
    margin-bottom: 22px;
}
.blog-seven-button a {
    font-weight: 500;
    font-size: 16px;
    text-transform: capitalize;
    color: var(--primary-seven-heading);
    font-family: var(--satoshi);
}
.blog-seven-thumb {
    overflow: hidden;
    border-radius: 17px;
}
.blog-seven-thumb img {
    border-radius: 17px;
    transition: var(--transition);
}
.blog-seven-wrapper:hover .blog-seven-thumb img {
    transform: scale(1.2) rotate(6deg);
}

/* Blog css */
.footer-seven-area {
    padding-top: 125px !important;
    margin-top: 0;
}
.footer-seven-area::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(30, 30, 30, 0.96);
}
.footer-seven-top-border {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    margin-bottom: 85px;
    padding-bottom: 85px;
}
.footer-seven-top-content {
    position: relative;
}
.footer-seven-top-content h6 {
    font-family: var(--satoshi);
    font-weight: 500;
    font-size: 22px;
    color: var(--white);
    margin-bottom: 80px;
}
.footer-seven-top-content h2 {
    font-family: var(--recoleta);
    font-weight: 400;
    font-size: 170px;
    text-transform: uppercase;
    color: #fbda33;
    border-bottom: 8px solid var(--white);
    padding-bottom: 40px;
    display: inline-block;
}
.footer-seven-top-content h2 span {
    color: var(--white);
}
.footer-seven-area .input-icon {
    background: rgba(255, 255, 255, 0.03);
    position: relative;
    margin-top: 42px;
    border: 1.2px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    margin-bottom: 20px;
}
.footer-seven-area .input-icon input {
    background: transparent;
    height: 56px;
    width: 100%;
    color: var(--white);
}
.footer-seven-area .footer-two__widget .social {
    margin-top: 20px;
}
.footer-seven-area .footer-two__widget .social a {
    border-radius: 10px;
    background: var(--white);
    color: #6b7280;
    font-size: 16px;
}
.footer-seven-area .footer-two__widget-intro .content {
    margin-top: 30px;
    margin-bottom: 30px;
}
.footer-seven-area .footer-two__widget-intro .content p a {
    font-family: var(--recoleta);
    font-weight: 400;
    font-size: 14px;
    color: #fff;
}
.footer-seven-area .footer-two__widget-intro .content p a.talk {
    font-size: 20px;
    margin-top: 10px;
}
.footer-seven-area .footer-two__widget h5 {
    font-weight: 400;
    font-size: 22px;
    letter-spacing: -0.03em;
}
.footer-seven-area .footer-two__widget li a {
    font-weight: 400;
    margin-left: -20px;
}
.footer-seven-col-2 {
    margin-inline-end: 150px;
    margin-inline-start: -40px;
}
.footer-seven-col-4 {
    padding-inline-start: 0 !important;
    margin-inline-start: -6px;
}
.footer-seven-area .footer-six-copyright-border {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px 0;
}
.footer-seven-area .footer-two__copyright-inner p {
    font-family: var(--recoleta);
    font-weight: 400;
    font-size: 14px;
}
.footer-seven-bg-shape-1 {
    position: absolute;
    top: 38%;
    left: 75px;
    animation: bounce-two 1s ease-in-out 0.1s forwards infinite alternate;
}
.footer-seven-bg-shape-2 {
    position: absolute;
    bottom: 8%;
    left: 0;
    animation: bounce-one 4s forwards infinite alternate;
}
.footer-seven-bg-shape-3 {
    position: absolute;
    top: 24%;
    right: 112px;
    animation: bounce-two 1s ease-in-out 0.1s forwards infinite alternate;
}
.footer-seven-bg-shape-4 {
    position: absolute;
    bottom: 0;
    right: 0;
    animation: bounce-left 3.5s infinite;
}

.hover-btn-circle {
    width: 140px;
    height: 140px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    font-family: var(--recoleta);
    font-weight: 500;
    font-size: 14px;
}
.hover-btn-circle .hover-btn-circle-icon {
    font-size: 20px;
    transition: 0.4s;
}
.hover-btn-circle .hover-btn-wrapper {
    display: inline-block;
}
.hover-btn-circle .hover-btn-circle-dot {
    position: absolute;
    left: 42px;
    bottom: -15px;
    width: 20px;
    height: 20px;
    transition: all 0.6s;
    border-radius: 50%;
    background-color: var(--base-color);
    transform: translate(-50%, -50%);
    z-index: -1;
}
.hover-btn-circle:hover .hover-btn-circle-dot {
    width: 420px;
    height: 420px;
}
.hover-btn-circle:hover span {
    color: var(--wt-common-black);
}
.char-animation {
    text-transform: full-size-kana !important;
}
/* ================= Home Seven Css Start End =================*/

/* ================= Home Eight Css Start Start =================*/
.btn-eight-primary-radius {
    border-radius: 29px;
    overflow: hidden;
}
.btn-eight-primary {
    font-family: var(--kumbh);
    font-size: 18px;
}
.btn-eight-border {
    font-family: var(--kumbh);
    font-size: 18px;
    background: transparent;
    border: 1px solid var(--white);
    border-radius: 29px;
}
.btn-eight-border:hover {
    background-color: var(--base-color);
    border: 1px solid transparent;
}
.btn-eight-border::before,
.btn-eight-border::after {
    background-color: transparent !important;
}

/* Header css */
.header-eight-area.sticky-header {
    width: inherit;
    margin: 0;
    border-radius: 0 !important;
}
.header-eight-area {
    background: var(--white);
    box-shadow: 0 10px 100px 0 rgba(0, 0, 0, 0.08);
    border-radius: 25px !important;
    margin: 30px 40px 0;
    padding-inline-start: 32px;
    padding-inline-end: 32px;
}
.header-eight-area .main-header__menu-box {
    padding-inline-start: 0 !important;
}
.header-eight-navbar-space {
    margin-inline-end: 44px;
}
.header-eight-area .navbar__options {
    gap: 36px;
}
.header .contact-btn p {
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 400;
    color: #1d1d1d;
    margin-block-end: 6px;
    font-family: var(--nunito-sans);
}
.header-eight-area .contact-btn a {
    font-weight: 700;
    font-size: 18px;
    color: #1d1d1d;
}
.header-eight-area .navbar__mobile-options {
    gap: 40px;
    border-radius: 29px !important;
    overflow: hidden;
}
.header-eight-btn {
    background-color: var(--base-color) !important;
    font-size: 18px;
    padding: 13px 34px;
    text-transform: full-size-kana;
    font-weight: 600;
}
.header-eight-btn::before {
    background-color: var(--primary-eight);
}
.header-eight-btn::after {
    background-color: var(--primary-eight);
}

/* Banner Css */
.banner-eight-area {
    padding: 30px 40px;
}
.banner-eight-wrapper {
    background: var(--primary-eight);
    border-radius: 30px;
    padding: 49px 40px 60px;
    margin-block-end: 30px;
}
.banner-eight-subtitle {
    color: var(--white);
    font-family: var(--kumbh);
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    padding-inline-start: 70px;
    margin-block-end: 9px;
}
.banner-eight-subtitle::before {
    content: "";
    position: absolute;
    width: 62px;
    height: 2px;
    top: 50%;
    left: 0;
    background: var(--white);
    transform: translateY(-50%);
}
.banner-eight-title {
    color: var(--white);
    font-family: var(--kumbh);
    font-weight: 700;
    font-size: 90px;
    line-height: 1.11;
    margin-block-end: 10px;
}
.banner-eight-paragraph {
    color: var(--white);
    line-height: 175%;
    margin-block-end: 30px;
}
.banner-eight-button {
    display: inline-flex;
    gap: 20px;
}
.banner-eight-wrap {
    background: var(--white);
    border: 1px solid rgba(237, 90, 47, 0.5);
    border-radius: 30px;
    padding: 26px 23px;
    display: flex;
    gap: 25px;
}
.banner-eight-join {
    background: var(--white);
    box-shadow: 0 20px 70px 0 rgba(92, 93, 85, 0.2);
    padding: 7px 17px;
    font-family: var(--kumbh);
    font-weight: 500;
    font-size: 18px;
    color: var(--primary-eight);
    border-radius: 5px;
}
.banner-eight-content span {
    font-family: var(--nunito-sans);
    color: var(--primary-eight);
    margin-block-end: 8px;
}
.banner-eight-content h4 {
    font-family: var(--kumbh);
    font-weight: 700;
    font-size: 40px;
    text-transform: uppercase;
    color: var(--primary-seven-heading);
    margin-block-end: 10px;
}
.banner-eight-content p {
    font-size: 18px;
    font-weight: 500;
    font-family: var(--nunito-sans);
    margin-bottom: 0;
}
.banner-eight-review {
    background: var(--white);
    border: 1px solid rgba(237, 90, 47, 0.5);
    border-radius: 30px;
    padding: 37px 23px;
}
.banner-eight-review-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-block-end: 16px;
}
.banner-eight-review-top span {
    font-family: var(--kumbh);
    font-weight: 700;
    font-size: 26px;
    color: var(--primary-seven-heading);
}
.banner-eight-star i {
    color: var(--base-color);
    font-size: 18px;
}
.banner-eight-review-team {
    display: flex;
    align-items: center;
    gap: 12px;
}
.banner-eight-review-team p {
    font-weight: 500;
    font-size: 18px;
    line-height: 144%;
}
.banner-eight-dot {
    background: var(--primary-eight);
    display: inline-flex;
    flex-direction: column;
    gap: 12px;
    width: inherit !important;
    padding: 25px 5px;
    top: 50% !important;
    bottom: auto !important;
    transform: translateY(-50%);
    right: 10px;
}

.banner-eight-dot .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
}
.banner-eight-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--white);
}
.banner-eight-dot
    .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    width: 15px;
    height: 15px;
    top: 50%;
    left: 48%;
    background: rgba(255, 255, 255, 0.5);
}
.banner-eight-dot-bg {
    position: absolute;
    top: 50%;
    right: -1px;
    transform: translateY(-50%);
    z-index: 1;
}
/* Section Title Css */
.section-eight-wrapper {
    margin-bottom: 50px;
}
.section-eight-subtitle {
    font-family: var(--kumbh);
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    color: var(--primary-eight);
    position: relative;
    z-index: 1;
    padding-inline-start: 72px;
    margin-bottom: 12px;
}
.section-eight-subtitle::before {
    content: "";
    position: absolute;
    width: 62px;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: var(--primary-eight);
}
.section-eight-title {
    font-family: var(--kumbh);
    font-weight: 700;
    font-size: 55px;
    line-height: 1.18;
    text-transform: capitalize;
    color: var(--primary-seven-heading);
}
.section-eight-paragraph {
    line-height: 175%;
    color: #999;
    margin: 20px 0 0;
}

/* About Css */
.about-eight-area {
    padding: 90px 0 120px;
}
.about-eight-item {
    display: flex;
    gap: 16px;
    border-bottom: 1px solid rgb(184, 184, 184, 0.3);
    padding-bottom: 30px;
    margin-bottom: 30px;
    margin-right: 18px;
}
.about-eight-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
.about-eight-icon span {
    width: 70px;
    height: 70px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed var(--primary-eight);
    border-radius: 50%;
}
.about-eight-list {
    margin-top: 20px;
}
.about-eight-list ul li {
    color: #1d1d1d;
    margin-bottom: 9px;
    line-height: 1;
}
.about-eight-list ul li span {
    margin-right: 4px;
}
.about-eight-content h4 {
    font-family: var(--kumbh);
    font-weight: 700;
    font-size: 24px;
    color: var(--primary-seven-heading);
}
.about-eight-content p {
    line-height: 162%;
    color: #999;
}
.about-eight-center {
    margin-inline-start: 95px;
    border-bottom: 1px solid rgb(184, 184, 184, 0.3);
    padding-block-end: 30px;
    margin-block-end: 45px;
}
.about-eight-play {
    margin-inline-start: 10px;
}
.about-eight-thumb-shape {
    position: absolute;
    bottom: -58px;
    right: -80px;
}
.about-eight-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.about-eight-video-play a {
    width: 45px;
    height: 45px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border-radius: 50%;
    margin-right: 20px;
    background-color: var(--primary-eight);
    color: var(--white);
    position: relative;
}
.about-eight-video-play a::before {
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    width: 70%;
    height: 70%;
    background-color: rgba(255, 255, 255, 0.3);
    animation: borderanimate2 2s linear infinite;
    z-index: -1;
    border-radius: 50%;
}
.about-eight-button {
    margin-inline-start: 95px;
    border-radius: 29px;
    overflow: hidden;
}
.about-eight-video-play a i {
    display: inline-block;
    padding-left: 3px;
}
.about-eight-button {
    margin-inline-start: 95px;
}
.about-eight-team {
    display: flex;
    align-items: center;
    gap: 10px;
}
.about-eight-bg-shape-1 {
    position: absolute;
    top: 30%;
    left: 0;
    z-index: -1;
}
.about-eight-bg-shape-2 {
    position: absolute;
    right: 10px;
    bottom: 18%;
    z-index: -1;
}
/* Service Css */
.service-eight-area {
    background: rgba(237, 90, 47, 0.05);
    padding: 120px 0 90px;
    margin: 0 40px 0;
    border-radius: 20px 20px 0 0;
}
.service-eight-wrapper {
    margin-block-end: 30px;
    overflow: hidden;
}
.service-eight-thumb img {
    border-radius: 15px;
}
.service-eight-button {
    position: absolute;
    top: 10px;
    right: 50px;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease-in-out;
}
.service-eight-button a {
    width: 50px;
    height: 50px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-eight);
    color: var(--white);
    border-radius: 50%;
    font-size: 18px;
}
.service-eight-wrap {
    background: var(--primary-eight);
    padding: 20px;
    border-radius: 15px;
    position: absolute;
    bottom: -110px;
    left: 0;
    right: 0;
    margin: 0 15px 0;
    transition: 0.4s ease-in-out;
}
.service-eight-title {
    font-family: var(--kumbh);
    font-weight: 700;
    font-size: 20px;
    color: var(--white);
}
.service-eight-paragraph {
    line-height: 175%;
    color: var(--white);
    font-family: var(--nunito-sans);
    font-size: 15px;
}
.service-eight-wrapper:hover .service-eight-wrap {
    bottom: 20px;
}
.service-eight-wrapper:hover .service-eight-button {
    right: 20px;
    opacity: 1;
    visibility: visible;
}

/* Marque Css */
.maquee-eight-area {
    background: rgba(237, 90, 47, 0.05);
    margin: 0 40px 0;
    border-radius: 0 0 20px 20px;
    padding-bottom: 110px;
}
.maquee-eight-transition {
    transition-timing-function: linear;
}
.maquee-eight-item {
    display: flex;
    white-space: nowrap;
}
.maquee-eight-box {
    display: flex;
    align-items: center;
    gap: 20px;
    width: auto;
}
.maquee-eight-icon span {
    animation: rotate-infinte 3s infinite linear;
    color: var(--wt-heading-primary);
    font-size: 40px;
    display: inline-block;
    line-height: 1;
    position: relative;
    top: 3px;
}
.maquee-eight-icon span i {
    display: inline-block;
    line-height: 1;
}
.maquee-eight-title {
    color: var(--primary-eight);
    text-transform: uppercase;
    margin-bottom: 0;
    font-family: var(--kumbh);
    font-weight: 700;
    font-size: 70px;
    line-height: 121%;
}
.maquee-eight-title.border-text {
    -webkit-text-stroke-width: 1px;
    color: transparent;
    -webkit-text-stroke-color: var(--primary-eight);
}
@keyframes rotate-infinte {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Event Css */
.event-eight-area {
    padding: 120px 0 120px;
}
.event-eight-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(29, 29, 29, 0.1);
    padding-bottom: 30px;
    margin-bottom: 30px;
}
.event-eight-wrap {
    display: flex;
    align-items: center;
}
.event-eight-content {
    max-width: 470px;
    width: 100%;
}
.event-eight-content h4 {
    font-family: var(--kumbh);
    font-weight: 700;
    font-size: 22px;
    color: var(--primary-seven-heading);
}
.event-eight-content h4 a:hover {
    color: var(--primary-eight);
}
.event-eight-content p {
    line-height: 175%;
    color: rgba(92, 92, 92, 0.5);
    margin-bottom: 10px;
}
.event-eight-date {
    text-align: center;
    margin-right: 40px;
}
.event-eight-date h5 {
    font-family: var(--kumbh);
    font-weight: 700;
    font-size: 50px;
    color: #ed5a2f;
    margin-bottom: 14px;
}
.event-eight-date p {
    color: #1d1d1d;
    margin-bottom: 0;
}
.event-eight-thumb {
    margin-right: 20px;
}
.event-eight-thumb img {
    border-radius: 10px;
}
.event-eight-address ul {
    display: flex;
    justify-content: space-between;
}
.event-eight-address ul li {
    color: #1d1d1d;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.event-eight-address ul li span {
    color: var(--primary-eight);
}
.event-eight-price h4 {
    font-family: var(--kumbh);
    font-weight: 700;
    font-size: 22px;
    color: #1d1d1d;
}
.event-eight-button {
    display: flex;
    align-items: center;
    gap: 105px;
    position: relative;
    z-index: 1;
}
.event-eight-button::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 60px;
    top: 50%;
    left: -12%;
    transform: translateY(-50%);
    background: #999;
}
.event-eight-btn {
    margin-left: 0;
}
.event-eight-shape-1 {
    position: absolute;
    top: 15%;
    left: 0;
    z-index: -1;
}
.event-eight-shape-2 {
    position: absolute;
    right: 0;
    bottom: 26%;
    z-index: -1;
}
/* Countdown Css */
.countdown-eight-area {
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 120px 0 120px;
    position: relative;
    z-index: 1;
    margin: 0 40px 0;
    border-radius: 30px;
    overflow: hidden;
}
.countdown-eight-area::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(29, 29, 29, 0.83);
    z-index: -1;
}
.countdown-eight-timer {
    margin-bottom: 60px;
}
.countdown-eight-timer ul {
    display: flex;
    gap: 25px;
}
.countdown-eight-timer ul li {
    max-width: 123px;
    width: 100%;
    height: 123px;
    line-height: 1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    color: var(--white);
}
.countdown-eight-timer ul li span {
    display: block;
    font-family: var(--kumbh);
    font-weight: 700;
    font-size: 55px;
    color: var(--primary-eight);
    margin-bottom: 12px;
}
.countdown-eight-button {
    text-align: right;
}
.countdown-eight-button a {
    background: var(--primary-eight);
    font-family: var(--kumbh);
    font-weight: 500;
    font-size: 20px;
    text-transform: uppercase;
}

/* Faq Css */
.faq-eight-area {
    background: rgba(237, 90, 47, 0.05);
    padding: 120px 0 120px;
    margin: 0 40px 0;
    border-radius: 20px;
}
.faq-eight-accordion-item {
    border: none;
    border-bottom: none;
    padding-inline-start: 10px;
    margin-block-end: 20px;
    border-radius: 30px !important;
}
.faq-eight-accordion-item:first-of-type .faq-eight-accordion-button {
    border-bottom: none !important;
}
.faq-eight-accordion-button {
    font-family: var(--kumbh);
    font-weight: 700;
    font-size: 22px;
    color: var(--primary-seven-heading);
    border-radius: 30px !important;
    padding-top: 18px;
    padding-bottom: 18px;
}
.faq-eight-accordion-button::after {
    width: 30px;
    height: 30px;
    content: "+";
    font-size: 20px;
    background-image: none;
    font-weight: 600;
    transition: 0.4s;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(29, 29, 29, 0.1);
    border-radius: 50%;
}
.faq-eight-accordion-button:not(.collapsed) {
    color: var(--primary-eight);
    background-color: transparent;
    box-shadow: none !important;
}
.faq-eight-accordion-button:not(.collapsed)::after {
    content: "-";
    transform: translateY(-50%);
    font-size: 26px;
    background-image: none;
    transition: 0.4s;
    background: var(--primary-eight);
    color: var(--white);
}
.faq-eight-accordion-button:focus {
    box-shadow: none !important;
    border: none;
}
.faq-eight-accordion-body {
    padding-top: 0;
    padding-left: 10px;
    padding-bottom: 22px;
}
.faq-eight-accordion-body p {
    color: #999;
    font-size: 16px;
    font-weight: 400;
    line-height: 175%;
    text-transform: full-size-kana;
}
.faq-eight-right {
    margin-left: 55px;
}

/* Community Css */
.community-eight-area {
    padding-bottom: 120px;
}
.community-eight-area .community-donation {
    bottom: 0;
    margin-top: 0;
}
.community-eight-area .warning .line {
    background-color: var(--primary-eight);
}
.community-eight-area .input-group-icon .thumb {
    background-color: var(--primary-eight);
}
.community-eight-area .input-group-icon {
    background-color: var(--base-color);
}
.community-eight-area .input-group-icon input {
    color: var(--white);
}
.community-eight-area .donation-form__single .active {
    background-color: var(--primary-eight);
    color: var(--white);
    border-color: var(--primary-eight);
}
.community-eight-area .radio-single input:checked + label::before {
    border-color: var(--primary-eight);
}
.community-eight-area .radio-single input:checked + label::after {
    background-color: var(--primary-eight);
}
.community-eight-area .donation-form__single .donation-amount:hover {
    background-color: var(--primary-eight);
    color: var(--white);
    border-color: var(--primary-eight);
}
.community-eight-bg-shape-1 {
    position: absolute;
    left: 0;
    top: 9%;
    z-index: -1;
}
.community-eight-bg-shape-2 {
    position: absolute;
    right: 0;
    bottom: 14%;
    z-index: -1;
}

/* Ministrie Css */
.ministrie-eight-area {
    padding: 120px 0 120px;
    position: relative;
    z-index: 1;
}
.ministrie-eight-area::before {
    content: "";
    position: absolute;
    width: 96%;
    height: 100%;
    top: 0;
    left: 50%;
    background: rgba(237, 90, 47, 0.05);
    border-radius: 20px;
    transform: translateX(-50%);
    z-index: -1;
}
.ministrie-eight-wrapper {
    overflow: hidden;
}
.ministrie-eight-thumb img {
    border-radius: 20px;
}
.ministrie-eight-wrap {
    position: absolute;
    top: 60%;
    left: 50%;
    background: rgba(237, 90, 47, 0.6);
    border-radius: 20px;
    width: 90%;
    height: 90%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    transition: 0.6s ease-in-out;
    opacity: 0;
    visibility: hidden;
}
.ministrie-eight-button {
    text-align: right;
}
.ministrie-eight-button a {
    width: 40px;
    height: 40px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--primary-eight);
    border-radius: 50%;
}
.ministrie-eight-title {
    font-family: var(--kumbh);
    font-weight: 700;
    font-size: 32px;
    line-height: 1.25;
    text-transform: capitalize;
    color: var(--white);
    margin-bottom: 30px;
}
.ministrie-eight-paragraph {
    color: var(--white);
}
.ministrie-eight-space {
    margin-top: 30px;
}
.ministrie-eight-dot {
    background: var(--primary-eight);
    padding: 12px 6px;
    width: 115px !important;
    border-radius: 25px;
    text-align: center;
    margin-top: 10px;
}
.ministrie-eight-dot .swiper-pagination-bullet {
    opacity: 1;
    background: var(--white);
    width: 6px;
    height: 6px;
    position: relative;
    z-index: 1;
}
.ministrie-eight-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--white) !important;
}
.ministrie-eight-dot
    .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    top: 54%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}
.ministrie-eight-wrapper.swiper-slide-active .ministrie-eight-wrap {
    opacity: 1;
    visibility: visible;
    top: 50%;
}
.ministrie-eight-scrollbar {
    margin-top: 20px;
}
.ministrie-eight-scrollbar .swiper-scrollbar.two {
    background: rgba(237, 90, 47, 0.3);
    height: 5px;
}
.ministrie-eight-scrollbar .swiper-scrollbar.two .swiper-scrollbar-drag {
    background: var(--primary-eight);
    width: 216px !important;
}
.ministrie-eight-scrollbar {
    margin-top: 20px;
}
.ministrie-eight-scrollbar .swiper-scrollbar.two {
    background: rgba(237, 90, 47, 0.3);
    height: 5px;
}
.ministrie-eight-scrollbar .swiper-scrollbar.two .swiper-scrollbar-drag {
    background: var(--primary-eight);
    width: 216px !important;
}

/* Blog Css */
.blog-eight-area {
    padding: 120px 0 90px;
}
.blog-eight-container {
    max-width: 1450px;
}
.blog-eight-wrapper {
    display: flex;
    gap: 30px;
}
.blog-eight-wrap {
    background: var(--white);
    box-shadow: 0 10px 100px 0 rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 10px;
    border-radius: 20px;
    max-width: 345px;
    width: 100%;
    transition: 0.4s ease-in;
    position: relative;
    z-index: 1;
}
.blog-eight-thumb {
    opacity: 0;
    visibility: hidden;
    transition: 0.8s ease-in;
    width: 0;
}
.blog-eight-thumb a {
    display: block;
}
.blog-eight-thumb a img {
    width: 300px;
    height: 363px;
    border-radius: 10px;
    object-fit: cover;
}
.blog-eight-meta {
    display: flex;
    gap: 40px;
    margin-bottom: 10px;
}
.blog-eight-content {
    transition: 0.4s ease-in;
    flex-shrink: 0;
}
.blog-eight-meta p {
    color: #1d1d1d;
    display: flex;
    align-items: center;
    gap: 10px;
}
.blog-eight-meta p i {
    color: var(--primary-eight);
}
.blog-eight-title {
    font-family: var(--kumbh);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.25;
    color: var(--primary-seven-heading);
    margin-bottom: 18px;
    max-width: 300px;
    width: 100%;
}
.blog-eight-paragraph {
    line-height: 175%;
    color: #999;
    margin-bottom: 18px;
    max-width: 316px;
    width: 100%;
}
.blog-eight-wrap.active .blog-eight-thumb {
    visibility: visible;
    opacity: 1;
    transition: 0.4s ease-in;
    width: 100%;
}
.blog-eight-wrap.active .blog-eight-content {
    max-width: 316px;
    width: 100%;
    transition: 0.4s ease-in;
}
.blog-eight-wrap.active {
    max-width: inherit;
    transition: 0.4s ease-in;
}
.blog-eight-bg-shape-1 {
    position: absolute;
    top: 13%;
    left: 7%;
    z-index: -1;
}
.blog-eight-bg-shape-2 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.blog-eight-bg-shape-3 {
    position: absolute;
    right: 4%;
    top: 50%;
    z-index: -1;
}

/* Instagram Css */
.instagram-eight-area {
    padding: 0 0 120px;
}
.instagram-eight-wrapper {
    display: flex;
    gap: 22px;
}
.instagram-eight-thumb .imgage {
    position: relative;
    z-index: 1;
    margin-bottom: 22px;
    overflow: hidden;
}
.instagram-eight-thumb .imgage::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(29, 29, 29, 0.37);
    border-radius: 20px;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}
.instagram-eight-thumb .imgage img {
    border-radius: 20px;
    object-fit: cover;
}
.instagram-eight-thumb .imgage:hover::before {
    visibility: visible;
    opacity: 1;
}
.instagram-eight-icon {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in;
}
.instagram-eight-thumb .imgage:hover .instagram-eight-icon {
    opacity: 1;
    visibility: visible;
    top: 50%;
}

/* Footer Css */
.footer-eight-area {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 100px !important;
    margin: 40px;
    margin-top: 0;
    border-radius: 20px;
    overflow: hidden;
}
.footer-eight-area::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(29, 29, 29, 0.94);
}
.footer-eight-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-bottom: 90px;
    margin-bottom: 90px;
}
.footer-eight-top-wrap {
    position: relative;
}
.footer-eight-area .subscribe-six-input {
    padding: 0;
}
.footer-eight-area .subscribe-six-button {
    right: 0;
}
.footer-eight-area .subscribe-six-button .btn-six-primary {
    padding: 16px 38px;
    font-family: var(--kumbh);
    font-weight: 500 !important;
    font-size: 18px;
    background-color: var(--primary-eight);
}
.footer-eight-area .subscribe-six-button .btn-six-primary::before {
    background-color: var(--primary-eight);
}
.footer-eight-area .subscribe-six-button .btn-six-primary::after {
    background-color: var(--primary-eight);
}
.footer-eight-top-wrap h4 {
    font-family: var(--kumbh);
    font-weight: 700;
    font-size: 26px;
    line-height: 135%;
    color: var(--white);
}
.footer-eight-top-icon span {
    width: 60px;
    height: 60px;
    line-height: 1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.3);
    color: var(--white);
    border-radius: 50%;
    font-size: 20px;
}
.footer-eight-top-info {
    display: flex;
    align-items: center;
    gap: 16px;
}
.footer-eight-top-info-con p {
    color: var(--white);
}
.footer-eight-top-info-con a {
    font-weight: 600;
    font-size: 18px;
    line-height: 144%;
    color: var(--white);
}
.footer-eight-top-info.call {
    margin-left: 45px;
}
.footer-eight-top-info.gamil {
    margin-left: 34px;
}
.footer-eight-area .footer-six-bg-shape-2 {
    z-index: 1;
}
.footer-eight-area .footer-six-copyright-border {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.footer-eight-area .footer-two__widget .social a:hover {
    background-color: var(--primary-eight);
    color: var(--white);
    border-color: var(--primary-eight);
}
.footer-eight-area .footer-two__widget span {
    background-color: var(--primary-eight);
}
.footer-eight-area .footer-two__widget li a:hover {
    color: var(--primary-eight) !important;
}
.footer-eight-area
    .footer-two__widget
    .footer-two__widget-content--contact
    a
    i {
    color: var(--primary-eight);
}
.footer-eight-area .footer-two__copyright-inner p a {
    color: var(--primary-eight);
}
/* ================= Home Eight Css Start End =================*/

/*** 

====================================================================
  gallery section
====================================================================

***/

#baguetteBox-overlay .full-image img {
    max-height: 90% !important;
    max-width: 90% !important;
}

.gallery {
    column-count: 4;
    -webkit-column-count: 4;
    -moz-column-count: 4;
    gap: 1rem;
}

.gallery .image {
    display: inline-block; /* keep image + text together */
    width: 100%;
    margin-bottom: 0.5rem;
    break-inside: avoid; /* prevents splitting in columns */
    -webkit-column-break-inside: avoid;
    -moz-column-break-inside: avoid;
    background: #fff;
    border-radius: 10px;
    box-shadow: rgba(19, 44, 35, 0.25) 0px 10px 20px -8px,
        rgba(19, 44, 35, 0.3) 0px 8px 16px -10px;
    overflow: hidden;
    text-align: center;
    padding: 5px;
}

.gallery .image p {
    margin: 0;
    font-weight: 700;
    color: var(--base-color);
    font-size: 16px;
}

/* .gallery .image img {
    height: auto;
    width: 100%;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: rgba(19, 44, 35, 0.25) 0px 30px 60px -12px,
        rgba(19, 44, 35, 0.3) 0px 18px 36px -18px;
} */

/* Responsive-ness for different screen-sizes */
@media screen and (max-width: 810px) {
    .gallery {
        column-count: 3;
        -webkit-column-count: 3;
        -moz-column-count: 3;
    }
}


@media screen and (max-width: 400px) {
    .gallery {
        column-count: 2;
        -webkit-column-count: 2;
        -moz-column-count: 2;
    }
}

/*** 

====================================================================
  event gallery
====================================================================

***/

.event-gallery {
    column-count: 2;
    -webkit-column-count: 2;
    -moz-column-count: 2;
    gap: 0.8rem;
}

.event-gallery .image {
    display: inline-block; /* keep image + text together */
    width: 100%;
    margin-bottom: 0.8rem;
    break-inside: avoid; /* prevents splitting in columns */
    -webkit-column-break-inside: avoid;
    -moz-column-break-inside: avoid;
    background: #fff;
    border-radius: 10px;
    box-shadow: rgba(19, 44, 35, 0.25) 0px 10px 20px -8px,
        rgba(19, 44, 35, 0.3) 0px 8px 16px -10px;
    overflow: hidden;
    text-align: center;
    padding: 5px;
}

/*** 

====================================================================
  branch card
====================================================================

***/

.branch-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.branch-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.branch-img {
    height: 220px;
    object-fit: cover;
}

.branch-title {
    font-size: 20px;
    line-height: 30px;
    font-weight: 800;
    color: var(--secondary-color);
}
.toggle-check {
    display: none;
}

.plus-icon {
    position: absolute;
    top: 200px; /* overlaps half image and content */
    right: 20px;
    background: var(--white);
    color: var(--base-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: transform 0.3s;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.toggle-check:checked + .plus-icon {
    transform: rotate(45deg); /* Rotate on active */
}

.social-icons {
    position: absolute;
    bottom: 100px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease-in-out;
    pointer-events: none;
}

.toggle-check:checked ~ .social-icons {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.social-icons a {
    background: var(--base-color);
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/*** 

====================================================================
  Fun Fact
====================================================================

***/

.fun-fact-section {
    background: var(--secondary-color);
    padding: 80px 20px;
    text-align: center;
}
.fun-fact-box {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    padding: 40px 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.fun-fact-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
.fun-fact-icon {
    font-size: 45px;
    color: var(--base-color);
    margin-bottom: 15px;
}
.fun-fact-number {
    font-size: 40px;
    font-weight: 700;
    color: var(--base-color);
    text-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.fun-fact-plus {
    color: var(--base-color);
    font-size: 30px;
    font-weight: 800;
}
.fun-fact-title {
    font-size: 18px;
    font-weight: 400;
    margin-top: 10px;
    color: #666;
}


/*** 

====================================================================
  Member Table CSS
====================================================================

***/

.custom-table {
    overflow: hidden;
    border: none;
}



.custom-table thead th {
    background: linear-gradient(135deg, #eb8557ff, #ff5e13) !important;
    color: #fff !important;
    border: none !important;
    padding: 1.2rem 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.custom-table tbody tr {
    transition: all 0.3s ease;
    border: none;
}

.custom-table tbody tr:hover {
    background: linear-gradient(
        135deg,
        rgba(102, 126, 234, 0.1),
        rgba(118, 75, 162, 0.1)
    );
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.custom-table tbody td {
    padding: 1.2rem 1rem;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    vertical-align: middle;
}

.product-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.product-image:hover {
    transform: scale(1.1);
}

.product-name {
    font-weight: bold;
    color: #141414ff;
    font-size: 1.1rem;
    margin-bottom: 0px;
}

.product-description {
    color: #141414ff;
    font-size: 0.9rem;
    line-height: 1.4;
}

.product-description span {
    color: #141414ff;
    font-weight: bold;
}

.status-badge {
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-active {
    background: rgba(46, 204, 113, 0.15);
    color: #27ae60;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.member-social-icons {
    color: #ff5e13;
    border: 1px solid #ff5e13;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
}

.member-social-icons i {
    color: #ff5e13;
}

/* Mobile Responsive */
/* Mobile Responsive */
@media (max-width: 768px) {
    .custom-table thead {
        display: table-header-group;
        /* keep headers visible */
    }

    .custom-table tbody tr {
        display: table-row;
        /* ✅ keep rows as table rows */
        margin-bottom: 0;
        background: transparent;
        border-radius: 0;
        box-shadow: none;
        padding: 0;
    }

    .custom-table tbody td {
        display: table-cell;
        /* ✅ keep table cells */
        padding: 0.8rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .custom-table tbody td:before {
        content: none;
        /* ✅ remove fake labels */
    }

    .product-image {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 576px) {
    .product-image {
        width: 50px;
        height: 50px;
    }

    .product-name {
        font-size: 1rem;
    }

    .status-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
}

/* Tablet specific styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .product-image {
        width: 70px;
        height: 70px;
    }

    .custom-table thead th,
    .custom-table tbody td {
        padding: 1rem 0.8rem;
    }
}

/*** 

====================================================================
  Branch wise show member css
====================================================================

***/

    .cards-grid {
         margin-top: 20px;
      }

      .member-card {
         background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
         border-radius: 20px;
         padding: 20px 15px 0px 15px;
         box-shadow:
            0 8px 32px rgba(0, 0, 0, 0.08),
            0 2px 8px rgba(0, 0, 0, 0.04);
         transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
         position: relative;
         overflow: hidden;
         margin-bottom: 20px;
      }

      .member-card::before {
         content: '';
         position: absolute;
         top: 0;
         left: 0;
         right: 0;
         height: 4px;
         background: linear-gradient(90deg, #FF5E13 0%, #45AA02 100%);
      }

      .member-card:hover {
         transform: translateY(-8px);
         box-shadow:
            0 20px 40px rgba(0, 0, 0, 0.12),
            0 8px 16px rgba(0, 0, 0, 0.08);
      }

      .member-card .card-header {
         display: flex;
         align-items: center;
         margin-bottom: 20px;
      }

      .member-card .member-image {
         width: 100px;
         height: 130px;
         border-radius: 10px;
         object-fit: cover;
         object-position: top !important;
         border: 3px solid #e9ecef;
         margin-right: 7px;
         transition: all 0.3s ease;
      }

      .member-card:hover .member-image {
         border-color: #FF5E13;
         transform: scale(1.05);
      }

     .member-card .member-info h3 {
         font-size: 1.4em;
         font-weight: 600;
         color: #070707ff;
         margin-bottom: 4px;
         line-height: 1.3;
      }

     .member-card .designation {
         font-size: 0.95em;
         color: #FF5E13;
         font-weight: 500;
         word-spacing: 1px;
      }

     .member-card .allotDistrict {
         font-size: 0.95em;
         color:  #45AA02;
         font-weight: 500;
      }

     .member-card .placeholder-image {
         width: 80px;
         height: 80px;
         border-radius: 50%;
         background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%);
         display: flex;
         align-items: center;
         justify-content: center;
         margin-right: 20px;
         font-size: 24px;
         color: #a0aec0;
      }

      @media (max-width: 300px) {
         .member-card {
            padding: 20px;
         }

         .member-card .card-header {
            flex-direction: column;
            text-align: center;
         }

         .member-card .member-image,
         .member-card .placeholder-image {
            margin: 0 0 16px 0;
         }
      }

/*** 

====================================================================
join us banner css
====================================================================

***/

       .banner-container {
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.65) 100%), 
              url('../images/banner/banner-join.jpg') center/cover no-repeat;
              background-repeat: no-repeat;
              padding:40px 0px;
            display: flex;
            align-items: center;
        }
        
        .banner-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1.5" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.15)"/><circle cx="10" cy="60" r="1" fill="rgba(255,255,255,0.08)"/><circle cx="90" cy="40" r="0.8" fill="rgba(255,255,255,0.12)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
        }
        
        .team-icon {
            font-size: 8rem;
            color: rgba(255, 255, 255, 0.2);
            animation: pulse 3s ease-in-out infinite;
        }
        
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px) translateY(-50%);
            }
            to {
                opacity: 1;
                transform: translateX(0) translateY(-50%);
            }
        }
        
        /* Responsive Design */
        @media (max-width: 991px) {
            .banner-container {
                text-align: center;
            }
        }
        
        /* Particle effect */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
        
        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            animation: particleFloat 8s linear infinite;
        }
        
        @keyframes particleFloat {
            0% {
                transform: translateY(100vh) scale(0);
                opacity: 1;
            }
            10% {
                opacity: 1;
                transform: translateY(90vh) scale(1);
            }
            90% {
                opacity: 1;
                transform: translateY(-10vh) scale(1);
            }
            100% {
                transform: translateY(-10vh) scale(0);
                opacity: 0;
            }
        }

        /*** 
       ====================================================================
       UP map css
       ====================================================================
       ***/

        #map {
            width: 100%;
            height: 450px;
            filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.6));
        }

        @media(max-width:500px) {
            #map {
                height: 400px;
            }
        }

        /*** 
       ====================================================================
      FIXED FOOTER css
       ====================================================================
       ***/
 .fixed-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
  border-radius: 10px 10px 0px 0px;
  display: none; /* hidden by default for desktop */
}

.fixed-footer-menu {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.fixed-footer-link {
  text-align: center;
  color: #444;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column; /* icon above text */
  align-items: center;
  gap: 0;
  padding-top: 8px;
  flex: 1; /* ensures equal width for all */
  position: relative; /* allows positioning border pseudo-element */
}

/* 🔸 Create divider between items */
.fixed-footer-link:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 22px;
  border-right: 1px solid rgba(243, 128, 6, 0.71); /* light subtle divider */
}

.fixed-footer-link i {
  font-size: 18px;
  color: #ff5e13;
}

.fixed-footer-link p {
  font-size: 12px;
  margin: 0;
}

/* Show footer only on mobile and tablet */
@media (max-width: 992px) {
  .fixed-footer {
    display: block;
  }

  .footer-three .footer-two__copyright {
    padding: 20px 0px 60px 0px;
  }

  .progress-wrap {
    bottom: 60px;
    right:10px;
  }
}
