@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Six+Caps&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
    --color-primary: #7130C3;
    --color-primary-rgb: 113 48 195;
    --color-secondary: #FF3BD4;
    --color-secondary-rgb: 255 59 212;
    --color-white: #FFFFFF;
    --color-dark: #000000;
    --font-primary: "Montserrat", sans-serif;
    --font-secondary: "Six Caps", sans-serif;
    --font-alt: "nebula", sans-serif;
    --font-size-b1: 24px;
    --font-size-b2: 18px;
    --font-size-b3: 16px;
    --font-size-b4: 12px;
    --line-height-b1: 1.5;
    --line-height-b2: 1.67;
    --line-height-b3: 1.67;
    --line-height-b4: 1;
    --h1: 52px;
    --h2: 44px;
    --h3: 34px;
    --h4: 30px;
    --h5: 20px;
    --h6: 16px;
    --bs-opacity-1: 0.1;
    --bs-opacity-2: 0.2;
    --bs-opacity-3: 0.3;
    --bs-opacity-4: 0.4;
    --bs-opacity-5: 0.5;
}


* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    scroll-behavior: auto !important;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    position: relative;
    scroll-behavior: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    width: 100vw;
}

.dark-mode {
    color: var(--color-white);
    background-color: var(--color-dark);
}

.bg_dark {
    color: var(--color-white);
    background-color: var(--color-dark) !important;
}

a {
    color: var(--color-white);
    text-decoration: none !important;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

a:hover {
    color: var(--color-primary);
}

.text-primary {
    color: var(--color-primary) !important;
}

.text-secondary {
    color: var(--color-secondary) !important;
}

.stroke-primary {
    -webkit-text-stroke-color: var(--color-primary) !important;
}

.stroke-white {
    color: transparent;
    -webkit-text-stroke: 0.5px var(--color-white);
}

/* .gradient-text,
.gradient-text div {
    color: var(--color-white);
    background: var(--gradient-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: var(--transition-base);
} */

/* .gradient-text .char {
    color: hsl(calc(140 + 70 * var(--gradient-color)), 90%, 65%);
} */

.anim-char {
    text-decoration: none;
    font-weight: 100;
    letter-spacing: -3px;
    animation: weight 5s infinite;
    animation-delay: calc(var(--char-index) * 150ms);
}

@keyframes weight {
    from {
        font-weight: 100;
    }

    50% {
        font-weight: 900;
    }

    to {
        font-weight: 100;
    }
}

.whitespace {
    width: 50px;
}

.text-justify {
    text-align: justify;
}

.text-italic {
    font-style: italic;
}

.text-dark {
    color: var(--color-dark) !important;
}

span {
    display: inline-block;
}

ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0;
}



.border-radius {
    padding: 10px 30px;
    border: 2px solid rgb(133 133 133 / 10%);
    border-radius: 40px;
}

/* Button start */

/* Button End */


/*--- Header :: Start ---*/

.head-logo img {
    height: 80px;
}

.head-link {
    font-size: 13px;
    text-transform: uppercase;
}

.head-link:hover {
    color: #d4d4d4;
}

.main-header .navbar-top {
    z-index: 999;
    padding: 40px 40px;
}

.navbar-top {
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    z-index: 99;
}

.sticky .navbar-top {
    top: -160px;
    transition-duration: .3s;
    -webkit-transition-duration: .3s;
    -moz-transition-duration: .3s;
    -ms-transition-duration: .3s;
    -o-transition-duration: .3s;
}

.sticky.header-appear .navbar-top {
    top: 0;
    transition-duration: .3s;
    -webkit-transition-duration: .3s;
    -moz-transition-duration: .3s;
    -ms-transition-duration: .3s;
    -o-transition-duration: .3s;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.header-burger-menu {
    position: absolute;
    top: 40px;
    right: 180px;
}

/*--- Header :: End ---*/


/*--- Sticky Header :: Start ---*/
.sticky-side-menu {
    position: fixed;
    display: flex;
    width: 80px;
    top: 10px;
    bottom: 10px;
    right: 10px;
    background-color: rgb(32 32 32);
    background-color: rgb(32 32 32 / 70%);
    /* border-left: 1px solid rgb(255 255 255 / 15%); */
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 999;
    text-align: center;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.sticky-side-menu .burger-menu-box {
    display: block;
    width: 100%;
}

.sticky-side-menu .burger-menu-btn {
    height: 80px;
    padding: 26px 23px;
    cursor: pointer;
    -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
    transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}

.sticky-side-menu .burger-menu-btn .menu-line:before,
.sticky-side-menu .burger-menu-btn .menu-line:after {
    content: "";
    background-color: #fff;
    width: 32px;
    height: 1px;
    display: block;
    -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
    transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}

.sticky-side-menu .burger-menu-btn .menu-line:after {
    width: 22px;
    margin-top: 12px;
}

.sticky-side-menu .burger-menu-btn.menu-active-btn .menu-line:before {
    -webkit-transform: translate(0px, 9px) rotate(45deg);
    transform: translate(0px, 9px) rotate(45deg);
}

.sticky-side-menu .burger-menu-btn.menu-active-btn .menu-line::after {
    -webkit-transform: translate(0px, -5px) rotate(-45deg);
    transform: translate(0px, -5px) rotate(-45deg);
}

.sticky-side-menu .burger-menu-btn.menu-active-btn .menu-line:after {
    width: 32px;
}

.sticky-side-menu .burger-menu-btn:hover {
    background-color: rgb(255 255 255 / 9%);
}

.burger-menu-listbox {
    position: fixed;
    top: 0px;
    bottom: 0px;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--color-dark);
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
    transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}

.burger-menu-listbox.menu-active {
    opacity: 1;
    pointer-events: all;
}

.burger-menu-text {
    flex-direction: column;
    align-items: flex-start;
    width: 50%;
    display: flex;
    transform: translateX(-30px);
    opacity: 0;
    transition: .4s cubic-bezier(0, 0, .3642, 1);
}

.burger-menu-listbox.menu-active .burger-menu-text {
    transform: translateX(0);
    transform: translateY(0);
    opacity: 1;
    transition-delay: .4s;
}

.burger-menu-listbox .burger-menu-list {}

.burger-menu-listbox .burger-menu-list li {
    position: relative;
    margin-bottom: 30px;
}

.burger-menu-listbox .burger-menu-list li:last-child {
    margin-bottom: 0px;
}

.burger-menu-count {
    font-weight: 300;
    font-size: 18px;
    color: #7e7e7e;
    margin-right: 40px;
    transform: translate(0, -5px) rotate(-90deg);
    position: relative;
    top: 1px;
}

.burger-menu-link .burger-menu-title {
    font-weight: 300;
    font-size: 34px;
    text-transform: uppercase;
    cursor: pointer;
    color: var(--color-white);
}

.hover-toggle-active .burger-menu-title,
.burger-menu-link .burger-menu-title:hover {
    color: var(--color-primary);
}

.burger-menu-link .burger-menu-link {
    display: block;
}

.burger-menu-content {
    position: fixed;
    top: 0px;
    left: 50%;
    width: 400px;
    margin-left: 50px;
    opacity: 0;
    visibility: hidden;
    transition: 0.6s ease all;
}

.hover-toggle-active .burger-menu-content {
    opacity: 1;
    visibility: visible;
}

.burger-menu-content .burger-menu-info {
    font-size: 18px;
    margin-bottom: 30px;
    text-align: justify;
    color: var(--color-white);
}

.head-social-box {
    padding: 40px 28px;
    border-top: 1px solid rgb(221 221 221 / 17%);
}

.head-social-list li {
    margin-bottom: 50px;
}

.head-social-list li:last-child {
    margin-bottom: 0px;
}

.head-social-list .head-social-link {
    font-size: 20px;
    justify-content: center;
    align-items: center;
    width: 100%;
    transition: background-color .4s ease-in-out;
    display: flex;
    color: #fff;
}

.head-social-list .head-social-link:hover {
    color: var(--color-primary);
}

.head-link-box .head-link-list {
    border-top: 1px solid rgb(221 221 221 / 17%);
    z-index: 9;
    transition: background-color .4s ease-in-out;
    position: relative;
    bottom: 0;
}

.head-link-list .head-link {
    display: block;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    font-size: 14px;
    max-width: 100%;
    width: 80px;
    height: 130px;
}

.head-link-list .head-link>span {
    line-height: 1;
    position: relative;
    top: 52px;
    transform: rotate(-90deg);
}

.head-link-list .head-link:hover {
    color: var(--color-primary);
    background-color: rgb(255 255 255 / 9%);
}

/*--- Sticky Header :: End ---*/
/*--- Hero Banner :: Start ---*/


.hero-section {
    position: relative;
    background-position: center;
    background-size: cover;
    background-color: transparent;
    height: 100vh;
}

.banner-img {
    background-size: cover;
    height: 100vh;
    position: relative;
}

.planet-8 {
    margin: 0px;
    top: 68vh;
    position: absolute;
    right: -4vw;
    transform: rotate(-21deg);
    width: 22%;
}

.planet-2 {
    margin: 0px;
    top: -11vh;
    position: absolute;
    left: -3vw;
    width: 18%;
}

.human {
    margin: 0px;
    top: 34vh;
    position: absolute;
    right: 7vw;
    width: 8%;
    transform: rotate(-20deg);
}

.rocket {
    /* width: 50px;
    height: 50px; */
    /* background: url('images/ROCKET.png') no-repeat center center; */
    /* background-size: contain; */
    position: absolute;
    bottom: -50px;
    right: -50px;
    animation: moveRocket 3s ease-in-out forwards;
    /* background-color: #000000; */
}

/* Rocket animation keyframes */
@keyframes moveRocket {
    0% {
        bottom: -50px;
        right: -50px;
        transform: rotate(0deg);
    }

    100% {
        bottom: calc(100vh + 50px);
        right: calc(110vw + -50vh);
        transform: rotate(-20deg);
    }
}

.content {
    position: absolute;
    top: 33%;
    color: #f1f1f1;
    width: 75%;
    height: auto;
    padding: 20px;
    text-align: center;
    transform: translateX(10%);
    /* z-index: 99; */

}

.content h1 {
    font-family: var(----font-alt);
    font-size: 3.6rem;
    line-height: 4rem;
    color: #ffffff;
    letter-spacing: 5px;
    padding-bottom: 30px;
    animation: fadeInRight 1s ease-in-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
    }
}

.content p {
    font-family: var(----font-alt);
    font-size: 18px;
    line-height: 22px;
    padding: 20px 0px;
}

.donate-btn {
    --black-700: hsla(0 0% 12% / 1);
    --border_radius: 9999px;
    --transtion: 0.3s ease-in-out;
    --offset: 2px;
    justify-content: center;
    cursor: pointer;
    position: relative;

    /* display: flex; */
    align-items: center;
    gap: 0.5rem;

    transform-origin: center;

    padding: 1rem 2rem;
    background-color: transparent;

    border: none;
    border-radius: var(--border_radius);
    transform: scale(calc(1 + (var(--active, 0) * 0.1)));
    animation: fadeInRight 2s ease-in-out;
    transition: transform var(--transtion);
}

.donate-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 100%;
    height: 100%;
    background-color: #933FB1;

    border-radius: var(--border_radius);
    box-shadow: inset 0 0.5px hsl(0, 0%, 100%), inset 0 -1px 2px 0 hsl(0, 0%, 0%),
        0px 4px 10px -4px hsla(0 0% 0% / calc(1 - var(--active, 0))),
        0 0 0 calc(var(--active, 0) * 0.375rem) hsl(260 97% 50% / 0.75);

    transition: all var(--transtion);
    z-index: 0;
}

.donate-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 100%;
    height: 100%;
    background-color: hsla(260 97% 61% / 0.75);
    background-image: radial-gradient(at 51% 89%,
            hsla(266, 45%, 74%, 1) 0px,
            transparent 50%),
        radial-gradient(at 100% 100%, hsla(266, 36%, 60%, 1) 0px, transparent 50%),
        radial-gradient(at 22% 91%, hsla(266, 36%, 60%, 1) 0px, transparent 50%);
    background-position: top;

    opacity: var(--active, 0);
    border-radius: var(--border_radius);
    transition: opacity var(--transtion);
    z-index: 2;
}

.donate-btn:is(:hover, :focus-visible) {
    --active: 1;
}

.donate-btn:active {
    transform: scale(1);
}

.donate-btn .dots_border {
    --size_border: calc(100% + 2px);

    overflow: hidden;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: var(--size_border);
    height: var(--size_border);
    background-color: transparent;

    border-radius: var(--border_radius);
    z-index: -10;
}

.donate-btn .dots_border::before {
    content: "";
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform-origin: left;
    transform: rotate(0deg);

    width: 100%;
    height: 2rem;
    background-color: white;

    mask: linear-gradient(transparent 0%, white 120%);
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}

.donate-btn .sparkle {
    position: relative;
    z-index: 10;

    width: 1.75rem;
}

.donate-btn .sparkle .path {
    fill: currentColor;
    stroke: currentColor;

    transform-origin: center;

    color: hsl(0, 0%, 100%);
}

.donate-btn:is(:hover, :focus) .sparkle .path {
    animation: path 1.5s linear 0.5s infinite;
}

.donate-btn .sparkle .path:nth-child(1) {
    --scale_path_1: 1.2;
}

.donate-btn .sparkle .path:nth-child(2) {
    --scale_path_2: 1.2;
}

.donate-btn .sparkle .path:nth-child(3) {
    --scale_path_3: 1.2;
}

@keyframes path {

    0%,
    34%,
    71%,
    100% {
        transform: scale(1);
    }

    17% {
        transform: scale(var(--scale_path_1, 1));
    }

    49% {
        transform: scale(var(--scale_path_2, 1));
    }

    83% {
        transform: scale(var(--scale_path_3, 1));
    }
}

.donate-btn .text_button {
    position: relative;
    z-index: 10;
    background-image: linear-gradient(90deg,
            hsla(0 0% 100% / 1) 0%,
            hsla(0 0% 100% / var(--active, 0)) 120%);
    background-clip: text;
    font-size: 1rem;
    color: #fff;
    font-family: var(--font-primary);
}

/*--- Hero Banner :: End ---*/

/* Marquee Start */
.main-marq {
    position: relative;
    padding: 0;
    overflow: hidden !important;
}
.clr h5{
    color: #fff;
}
.marq-mp .color-bg {
    background: #933FB1;
    -webkit-transform: rotate(2deg);
    -ms-transform: rotate(2deg);
    transform: rotate(2deg);
    position: relative;
    z-index: 4;
    color: #fff;
}

.marq-mp .gray-bg {
    background: #fff;
    -webkit-transform: rotate(-4deg);
    -ms-transform: rotate(-4deg);
    transform: rotate(-4deg);
    margin-top: -30px;
}

.marq-mp .main-marq {
    overflow: hidden;
    padding: 25px 0;
}

.item a {
    background-color: #fff;
    border-radius: 10px;
    padding: 10px 20px;
}

.main-marq {
    position: relative;
    padding: 0;
    overflow: hidden !important;
}

.main-marq:after {
    content: '';
    position: absolute;
    top: -30px;
    bottom: -30px;
    left: -30px;
    right: -30px;
    pointer-events: none;
    background: -webkit-linear-gradient(right, #fff, transparent 280px, transparent calc(100% - 280px), #fff);
    background: -o-linear-gradient(right, #fff, transparent 280px, transparent calc(100% - 280px), #fff);
    background: linear-gradient(to left, #fff, transparent 280px, transparent calc(100% - 280px), #fff);
}

.main-marq.shadow-off:after {
    display: none;
}

.main-marq.md-text .box .item h4 {
    font-size: 40px;
}

.main-marq.lrg .box .item h4 {
    font-size: 5vw;
}

.main-marq.xlrg .box .item {
    padding: 0 30px;
}

.main-marq.xlrg .box .item h4 {
    font-size: 8vw;
}

.main-marq .slide-har {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}

.main-marq .slide-har .overlay-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.main-marq .strok .item h4 {
    color: transparent !important;
    -webkit-text-stroke: .5px #fff;
}

.main-marq .strok .item h4 a {
    color: transparent !important;
    -webkit-text-stroke: .5px #fff;
}

.main-marq .non-strok .item h4 {
    color: #fff !important;
    -webkit-text-stroke: 0 !important;
}

.main-marq .non-strok .item h4 a {
    color: #fff !important;
    -webkit-text-stroke: 0 !important;
}

.main-marq .box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.main-marq .box .item {
    padding: 0 30px;
}

.marq-mp .item {
    padding: 0 60px !important;
    position: relative;
}

.marq-mp .item h5 {
    font-weight: 400;
    text-transform: uppercase;
    white-space: nowrap;
    font-family: var(--font-primary);
}

.marq-mp .item:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #000;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}


.clients-dm .item {
    margin: 0 50px;
}

.clients-dm .item img {
    width: 160px;
    display: block;
    max-width: initial;
}

.main-marq .box .item h4 {
    white-space: nowrap;
    margin: 0;
}

.main-marq .box .item h4 .icon {
    margin-bottom: -15px;
}

.main-marq .box .item:nth-of-type(even) h4 {
    color: transparent;
    -webkit-text-stroke: .5px #fff;
}

.main-marq .box .item:nth-of-type(even) h4 a {
    color: transparent;
    -webkit-text-stroke: .5px #fff;
}

.main-marq .box:last-of-type .item:nth-of-type(even) h4 {
    color: #fff;
    -webkit-text-stroke: 0;
}

.main-marq .box:last-of-type .item:nth-of-type(even) h4 a {
    color: #fff;
    -webkit-text-stroke: 0;
}

.main-marq .box:last-of-type .item:nth-of-type(odd) h4 {
    color: transparent;
    -webkit-text-stroke: 1px #fff;
}

.main-marq .box:last-of-type .item:nth-of-type(odd) h4 a {
    color: transparent;
    -webkit-text-stroke: 1px #fff;
}

.slide-har {
    position: relative;
}

.slide-har.st1 .box {
    position: relative;
    -webkit-animation: slide-har 80s linear infinite;
    animation: slide-har 80s linear infinite;
}

.slide-har.st2 .box {
    position: relative;
    -webkit-animation: slide-har-revers 80s linear infinite;
    animation: slide-har-revers 80s linear infinite;
}

@-webkit-keyframes slide-har {
    0% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }

    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

@keyframes slide-har {
    0% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }

    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

@-webkit-keyframes slide-har-revers {
    100% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }

    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

@keyframes slide-har-revers {
    100% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }

    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

.main-marqv {
    position: relative;
    padding: 0;
}

.main-marqv:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: -webkit-linear-gradient(bottom, #fff, transparent 80px, transparent calc(100% - 80px), #fff);
    background: -o-linear-gradient(bottom, #fff, transparent 80px, transparent calc(100% - 80px), #fff);
    background: linear-gradient(to top, #fff, transparent 80px, transparent calc(100% - 80px), #fff);
    pointer-events: none;
}

.main-marqv .slide-vertical {
    overflow: hidden;
    height: 600px;
    margin: 0 auto;
    position: relative;
}

.main-marqv .slide-vertical:hover .box {
    -webkit-animation-play-state: paused !important;
    animation-play-state: paused !important;
}

.main-marqv .slide-vertical .box {
    position: relative;
    -webkit-animation: slide-vertical 50s linear infinite;
    animation: slide-vertical 50s linear infinite;
}

@-webkit-keyframes slide-vertical {
    0% {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }

    100% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@keyframes slide-vertical {
    0% {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }

    100% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

/* Marquee End */
/* About Us Start */
.about {
    height: auto;
    margin: 0;
    margin-bottom: 40px;
    justify-content: center;
}

.nebula {
    position: absolute;
    width: 50%;
    opacity: 0.2;
}

#about {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 20;
    overflow: hidden;
    opacity: 1;
}

#hero-caption {

    align-items: center;
    width: 100%;
    height: auto;
    margin: 0 auto;
    position: relative;
    box-sizing: border-box;
    text-align: left;
    pointer-events: initial;
}

.pad-abt {
    padding: 60px 0;
    display: flex;
}

#hero-caption.text-align-center {
    justify-content: center;
}

.hero-title {
    font-size: calc(1rem + 16vw);
    line-height: calc(1rem + 16vw);
    font-weight: 500;
    position: relative;
    display: block;
    width: auto;
    overflow: hidden;
    padding: 0;
    margin-bottom: 0;
    margin-left: -0.6vw;
    color: #fff;
    font-family: var(--font-secondary);
}

.text-align-center .hero-title {
    margin-left: 0;
}

.height-title .hero-title {
    position: relative;
    overflow: visible;
    white-space: nowrap;
}

.height-title .hero-title div {
    display: inline-block;
}

.hero-title span {
    opacity: 0;
    display: block;
    margin-top: 0;
    min-width: 3vw;
    transform: translateY(160px);
    -webkit-transform: translateY(160px);
}

.height-title .hero-title span {
    box-sizing: border-box;
    display: inline-block;
    transform-origin: bottom center;
}

.light-content .hero-title {
    color: #fff;
}

.change-header .hero-title {
    color: #000;
}

.abt-txt {
    margin: auto;
    width: 70%;
    padding: 20px;
    text-align: center;
    justify-content: center;
}

.abt-txt p {
    font-family: var(--font-primary);
    font-size: 20px;
    line-height: 33px;
    color: #fff;
    margin-bottom: 40px;
}

/* About Us End */
/* campaign Start */

.main-campaign {
    display: grid;
    grid-template-columns: 50% 45%;
    place-items: center;
    gap: 60px;
    min-height: 100vh;
    padding: 20px 60px;
    background-color: #161719;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.campaign {
    max-width: 2400px;
}

.campaign h1 {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4vw, 1.5rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 1px;
    margin-bottom: 36px;
    color: #fff;
}

.campaign p {
    font-size: clamp(0.9rem, 3vw, 1.25rem);
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 30px;
    color: #fff;
    font-family: var(--font-primary);
}

.cmp-txt {
    font-size: 12rem;
}

/* SLIDER */

.swiper {
    position: relative;
    width: 550px;
    height: 600px;
}

.swiper-slide {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.3);
    user-select: none;
    border-radius: 20px;
}

.cost {
    position: absolute;
    top: 8px;
    right: 6px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    border-radius: 30px;
    padding: 10px 20px;
    color: #fff;
    font-size: clamp(0.8rem, 4vw, 0.9rem);
    font-weight: 600;
}

.dark-text {
    color: #202134;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.overlay-campaign {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-campaign: center;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 245px;
    padding: 20px 20px;
    background: rgba(93, 95, 145, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    border-radius: 0 0 20px 20px;
}

.overlay-campaign h1 {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: var(--font-primary);
}

.overlay-campaign p {
    font-size: 15px;
    font-weight: 300;
    line-height: 19px;
    padding: 20px 0px;
    font-family: var(--font-primary);
}

.donator {
    display: flex;
    justify-content: space-around;
}

.donator h1 {
    font-size: 16px;
    line-height: 19px;
    text-transform: none;
}

.donator p {
    font-size: 20px;
    line-height: 23px;
    font-weight: bold;
    padding: 0;
    text-align: center;
}

.logo {
    position: fixed;
    right: -20px;
    bottom: -30px;
    z-index: 10;
}

.logo img {
    width: 120px;
}

@media (max-width: 890px) {
    .logo {
        right: -10px;
        bottom: -20px;
    }

    .logo img {
        width: 80px;
    }
}

@media (max-width: 1050px) {
    .swiper {
        width: 350px;
        height: 450px;
    }
}

@media (max-width: 930px) {
    section {
        grid-template-columns: 100%;
        grid-template-rows: 55% 40%;
        grid-template-areas:
            "slider"
            "campaign";
        place-items: center;
        gap: 64px;
        padding: 60px;
    }

    .swiper {
        grid-area: slider;
    }

    .campaign {
        grid-area: campaign;
        text-align: center;
    }

    .campaign h1 {
        margin-bottom: 20px;
    }
}

@media (max-width: 470px) {
    section {
        padding: 40px 40px 60px;
    }

    .swiper {
        width: 300px;
        height: 400px;
    }
}

/* campaign End */
/* Gallery Start */
.gallery-area-2 {
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #fff;
    padding: 50px 0 50px 0;
    margin: auto;
    height: 100vh;
}

.tellstory-box {
    width: 100%;
    height: 100vh;
    display: flex;
}

.tellstory-box img {
    justify-content: center;
    margin: auto;
    width: 80%;
    display: block;
    animation-duration: 2s;
    animation-delay: 0.5s;
    animation-name: fadeInUp;
    z-index: 0;
}

.gallery-txt h1{
    position: absolute;
    font-family: var(--font-primary);
    font-size: 15vw;
    line-height: 22vw;
    letter-spacing: 1vw;
    margin: auto;
    z-index: -1px;
   transform: translateY(-15%);
   color: #d3d3d3c6;
   left: 10%;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(50px);
        -ms-transform: translateY(50px);
        transform: translateY(50px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

/* Gallery End */

/*--------------------------------------------------------------
#0.5	footer
--------------------------------------------------------------*/
.site-footer {
    background: url("../images/partners/partners-bg.jpg") center center/cover no-repeat local;
    position: relative;
    font-size: 15px;
    overflow: hidden;
    /*** about-widget ***/
    /*** link-widget ***/
    /*** contact-widget ***/
    /*** newsletter-widget ***/
    /*** lower-footer ***/
  }
  
  .site-footer:before {
    content: "";
    background-color: #70378d8c;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }
  
  .site-footer ul {
    list-style: none;
  }
  
  .site-footer p,
  .site-footer li {
    color: #fff;
  }
  
  .site-footer .upper-footer {
    padding: 40px 0;
  }
  
  @media (max-width: 991px) {
    .site-footer .upper-footer {
      padding: 90px 0 20px;
    }
  }
  
  @media (max-width: 767px) {
    .site-footer .upper-footer {
      padding: 80px 0 10px;
    }
  }
  
  @media (max-width: 991px) {
    .site-footer .upper-footer .col {
      min-height: 235px;
      margin-bottom: 70px;
    }
  }
  
  @media (max-width: 767px) {
    .site-footer .upper-footer .col {
      min-height: auto;
      margin-bottom: 60px;
    }
  }
  
  .site-footer .widget-title {
    margin-bottom: 30px;
    font-family: var(--font-primary);
  }
  
  @media (max-width: 767px) {
    .site-footer .widget-title {
      margin-bottom: 20px;
    }
  }
  
  .site-footer .widget-title h3 {
    font-size: 20px;
    font-size: 1.25rem;
    color: #fff;
    margin: 0;
    padding-bottom: 0.4em;
    text-transform: capitalize;
    position: relative;
    font-family: var(--font-primary);
  }
  
  @media (max-width: 991px) {
    .site-footer .widget-title h3 {
      padding-bottom: 0;
    }
  }
  
  .site-footer .about-widget .logo {
    max-width: 180px;
  }
  
  .site-footer .about-widget p {
    margin-bottom: 2em;
    line-height: 1.9em;
  }
  
  .site-footer .about-widget p:last-child {
    margin-bottom: 0;
  }
  
  .site-footer .about-widget .social-icons {
    overflow: hidden;
  }
  
  @media (max-width: 991px) {
    .site-footer .about-widget .social-icons {
      float: none;
      display: block;
      text-align: center;
    }
  }
  
  .site-footer .about-widget .social-icons ul {
    overflow: hidden;
    list-style: none;
  }
  
  @media (max-width: 991px) {
    .site-footer .about-widget .social-icons ul {
      display: inline-block;
    }
  }
  
  .site-footer .about-widget .social-icons ul li {
    float: left;
  }
  
  .site-footer .about-widget .social-icons ul > li + li {
    margin-left: 15px;
  }
  
  .site-footer .about-widget .social-icons ul a {
    /* background-color: #303030; */
    width: 50px;
    height: 50px;
    line-height: 36px;
    text-align: center;
    font-size: 20px;
    font-size: 0.875rem;
    color: #fff;
    display: inline-block;
    border-radius: 5px;
  }
  
  .site-footer .about-widget .social-icons ul a:hover {
    color: #6e3bc6;
  }
  
  .site-footer .link-widget {
    overflow: hidden;
  }
  
  @media screen and (min-width: 1200px) {
    .site-footer .link-widget {
      padding-left: 20px;
    }
  }
  
  @media (max-width: 1199px) {
    .site-footer .link-widget {
      padding-left: 20px;
    }
  }
  
  @media (max-width: 991px) {
    .site-footer .link-widget {
      padding-left: 0;
    }
  }
  
  @media (max-width: 767px) {
    .site-footer .link-widget {
      max-width: 350px;
    }
  }
  
  .site-footer .link-widget ul {
    width: 50%;
    float: left;
  }
  
  .site-footer .link-widget ul li {
    position: relative;
  }
  
  .site-footer .link-widget ul a {
    color: #fff;
    font-weight: 500;
    font-family: var(--font-primary);
  }
  
  .site-footer .link-widget ul a:hover,
  .site-footer .link-widget ul li:hover:before {
    text-decoration: underline;
  }
  
  .site-footer .link-widget ul > li + li {
    margin-top: 15px;
  }
  
  @media screen and (min-width: 1200px) {
    .site-footer .contact-widget {
      padding-left: 25px;
    }
  }
  
  .site-footer .contact-widget ul {
    margin-top: 25px;
    font-family: var(--font-primary);
  }
  
  .site-footer .contact-widget ul li {
    position: relative;
    font-family: var(--font-primary);
  }
  
  .site-footer .contact-widget ul > li + li {
    margin-top: 15px;
  }
  
  .site-footer .contact-widget li span {
    color: #fff;
    font-weight: 500;
    font-family: var(--font-primary);
  }
  
  .site-footer .newsletter-widget form {
    margin-top: 25px;
    position: relative;
  }
  
  .site-footer .newsletter-widget form input {
    background-color: #303030;
    height: 60px;
    color: #fff;
    padding: 6px 20px;
    border-radius: 5px;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  
  .site-footer .newsletter-widget form .submit {
    position: absolute;
    right: 8px;
    top: 7px;
  }
  
  .site-footer .newsletter-widget form .submit button {
    background: #6e3bc6;
    width: 48px;
    height: 45px;
    border: 0;
    outline: 0;
    position: relative;
    border-radius: 5px;
    font-size: 20px;
    color: #fff;
  }
  
  .site-footer .lower-footer {
    text-align: center;
    position: relative;
  }
  
  .site-footer .lower-footer .row {
    padding: 20px 0;
    position: relative;
  }
  
  .site-footer .lower-footer .row .separator {
    background: rgba(255, 255, 255, 0.1);
    width: calc(100% - 30px);
    height: 1px;
    position: absolute;
    left: 15px;
    top: 0;
  }
  
  .site-footer .lower-footer .copyright {
    display: inline-block;
    float: left;
    font-size: 14px;
    font-size: 0.875rem;
    margin: 0;
  }
  
  @media (max-width: 991px) {
    .site-footer .lower-footer .copyright {
      float: none;
      display: block;
      margin: 0 0 20px;
    }
  }
  
  .site-footer .lower-footer .copyright a {
    color: #fff;
    text-decoration: underline;
  }
  
  .site-footer .lower-footer .extra-link {
    display: inline-block;
    float: right;
    overflow: hidden;
  }
  
  @media (max-width: 991px) {
    .site-footer .lower-footer .extra-link {
      float: none;
      display: block;
      text-align: center;
    }
  }
  
  .site-footer .lower-footer .extra-link ul {
    overflow: hidden;
    list-style: none;
  }
  
  @media (max-width: 991px) {
    .site-footer .lower-footer .extra-link ul {
      display: inline-block;
    }
  }
  
  .site-footer .lower-footer .extra-link ul li {
    float: left;
  }
  
  .site-footer .lower-footer .extra-link ul > li + li {
    margin-left: 35px;
    position: relative;
  }
  
  @media (max-width: 767px) {
    .site-footer .lower-footer .extra-link ul > li + li {
      margin-left: 15px;
    }
  }
  
  .site-footer .lower-footer .extra-link ul > li + li:before {
    content: "";
    background: #fff;
    width: 15px;
    height: 1px;
    position: absolute;
    left: -23px;
    top: 15px;
  }
  
  @media (max-width: 767px) {
    .site-footer .lower-footer .extra-link ul > li + li:before {
      display: none;
    }
  }
  
  .site-footer .lower-footer .extra-link ul a {
    font-size: 14px;
    font-size: 0.875rem;
    color: #fff;
    font-family: var(--font-primary);
  }
  
  .site-footer .lower-footer .extra-link ul a:hover {
    text-decoration: underline;
  }
  
  .sticky-header {
    width: 100%;
    position: fixed;
    left: 0;
    top: -200px;
    z-index: 9999;
    opacity: 0;
    -webkit-transition: all 0.7s;
    -moz-transition: all 0.7s;
    -o-transition: all 0.7s;
    -ms-transition: all 0.7s;
    transition: all 0.7s;
  }
  
  .sticky-on {
    opacity: 1;
    top: 0;
  }
  
  .header-style-1 .sticky-header, .header-style-2 .sticky-header, .header-style-3 .sticky-header {
    background-color: #000;
  }
  
  .header-style-2 .sticky-header {
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 30px 1px rgba(23, 46, 73, 0.09);
    box-shadow: 0px 0px 30px 1px rgba(23, 46, 73, 0.09);
  }
  
  @media screen and (min-width: 992px) {
    .header-style-3 .sticky-header .navbar-brand {
      top: 0;
      margin-top: 0;
    }
    .header-style-3 .sticky-header .navbar-brand img {
      max-width: 92px;
    }
  }

  