/*
Theme Name: Danbox
Author: ModinaTheme
Author URI: https://themeforest.net/user/modinatheme/
Description: Charity & Fundraiser Html Template
Version: 1.1.0
*/


/*CSS Table Of Content Ends Here*/

@import url("https://fonts.googleapis.com/css2?family=Chelsea+Market&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
:root {
    --body: #fff;
    --black: #000;
    --white: #fff;
    --theme: #b0d35b;
    --theme-2: #49c3cd;
    --theme-3: #FFE145;
    --header: #202426;
    --base: #5C30FD;
    --text: #727475;
    --border: #ebebeb;
    --border2: #373737;
    --ratting: #F8BC26;
    --bg: #f8f8f8;
    ---box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
}


/* Custom CSS Start */

.about-text-home {
    font-size: 17px;
}

.service-text-home {
    font-size: 17px;
}

.how-text-home {
    font-size: 17px;
}


/* Custom CSS End */

.theme-btn {
    position: relative;
    z-index: 2;
    overflow: hidden;
    vertical-align: middle;
    display: inline-block;
    border: none;
    text-transform: capitalize;
    text-align: center;
    background-color: var(--theme);
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    padding: 21.5px 45px;
    min-width: 170px;
    border-radius: 30px;
}

.theme-btn i {
    margin-left: 5px;
}

.theme-btn:before {
    content: "";
    position: absolute;
    height: 100%;
    bottom: 0;
    left: 0;
    width: 0;
    background-color: #49c3cd;
    z-index: -1;
    transition: all 0.4s ease-out;
    border-radius: inherit;
}

.theme-btn:hover {
    color: var(--white);
    box-shadow: none;
}

.theme-btn:hover::before {
    width: 100%;
}

.theme-btn.transparent-btn {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 19.5px 45px;
}

.theme-btn.transparent-btn::before {
    background-color: var(--theme);
}

.theme-btn.transparent-btn:hover {
    border: 2px solid transparent;
}

.theme-btn.bg-black {
    background-color: var(--header);
}

.theme-btn.bg-black::before {
    background-color: var(--theme);
}

.theme-btn.transparent-btn-2 {
    background-color: transparent;
    border: 2px solid var(--border);
    padding: 19.5px 45px;
    color: var(--text);
}

.theme-btn.transparent-btn-2::before {
    background-color: var(--theme);
}

.theme-btn.transparent-btn-2:hover {
    border: 2px solid transparent;
    color: var(--white);
}

@media (max-width: 767px) {
    .theme-btn {
        padding: 20px 32px;
    }
}

@media (max-width: 575px) {
    .theme-btn {
        padding: 18px 30px;
        font-size: 14px;
    }
}

.link-btn {
    text-transform: capitalize;
    color: var(--header);
    font-weight: 600;
    display: inline-block;
    font-size: 16px;
}

.link-btn i {
    margin-left: 8px;
}

.link-btn:hover {
    color: var(--theme);
}

.arrow-btn {
    font-size: 16px;
    position: relative;
    transform: translateX(0);
    transition: 0.7s;
    display: inline-block;
    text-align: center;
    border-radius: 100%;
    color: var(--theme);
    text-decoration: underline;
}

.arrow-btn i {
    font-size: 18px;
    transform: rotate(-40deg);
}

.arrow-btn::before {
    position: absolute;
    content: "Read More";
    font-weight: 700;
    color: var(--theme);
    font-size: 16px;
    left: -95px;
    top: -2px;
    transition: all 0.4s ease-in-out;
    opacity: 0;
}

.arrow-btn:hover {
    transform: translateX(95px);
    color: var(--theme);
}

.arrow-btn:hover i {
    transform: rotate(0);
}

.arrow-btn:hover::before {
    opacity: 1;
}


/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */

body {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: normal;
    line-height: 28px;
    color: var(--text);
    background-color: var(--white);
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

button {
    border: none;
    background-color: transparent;
    padding: 0;
}

input:focus {
    color: var(--white);
    outline: none;
}

input {
    color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Chelsea Market", system-ui;
    margin: 0px;
    padding: 0;
    color: var(--header);
    text-transform: capitalize;
    transition: all 0.4s ease-in-out;
    font-weight: 400;
}

h1 {
    font-size: 80px;
    line-height: 120%;
}

h2 {
    font-size: 60px;
    line-height: 130%;
}

@media (max-width: 1199px) {
    h2 {
        font-size: 42px;
    }
}

@media (max-width: 767px) {
    h2 {
        font-size: 36px;
    }
}

@media (max-width: 575px) {
    h2 {
        font-size: 32px;
    }
}

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

@media (max-width: 575px) {
    h3 {
        font-size: 20px;
    }
}

h4 {
    font-size: 20px;
    line-height: 137%;
    padding-bottom: 10px;
    margin-top: 20px;
}

h5 {
    font-size: 18px;
    line-height: 150%;
}

h6 {
    font-size: 16px;
    line-height: 145%;
}

a {
    text-decoration: none;
    outline: none !important;
    cursor: pointer;
    color: var(--header);
    transition: all 0.4s ease-in-out;
}

p {
    transition: all 0.4s ease-in-out;
}

.preloader {
    align-items: center;
    cursor: default;
    display: flex;
    height: 100%;
    justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9999999;
}

.preloader .animation-preloader {
    z-index: 1000;
}

.preloader .animation-preloader .spinner {
    animation: spinner 1s infinite linear;
    border-radius: 50%;
    border: 3px solid rgba(0, 0, 0, 0.2);
    border-top-color: #b0d35b;
    height: 9em;
    margin: 0 auto 3.5em auto;
    width: 9em;
}

@media (max-width: 767px) {
    .preloader .animation-preloader .spinner {
        width: 7.5em;
        height: 7.5em;
        margin: 0 auto 1.5em auto;
    }
}

.preloader .animation-preloader .txt-loading {
    font: bold 5em "Chelsea Market", system-ui, "DM Sans", sans-serif;
    text-align: center;
    user-select: none;
}

@media (max-width: 767px) {
    .preloader .animation-preloader .txt-loading {
        font-size: 2.5em;
    }
}

.preloader .animation-preloader .txt-loading .letters-loading {
    color: #b0d35b;
    position: relative;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
    animation-delay: 0.2s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
    animation-delay: 0.4s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
    animation-delay: 0.6s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
    animation-delay: 0.8s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
    animation-delay: 1s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
    animation-delay: 1.2s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
    animation-delay: 1.4s;
}

.preloader .animation-preloader .txt-loading .letters-loading::before {
    animation: letters-loading 4s infinite;
    color: #49c3cd;
    content: attr(data-text-preloader);
    left: 0;
    opacity: 0;
    font-family: "Chelsea Market", system-ui;
    position: absolute;
    top: -3px;
    transform: rotateY(-90deg);
}

.preloader p {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: #49c3cd;
}

.preloader .loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 0;
    z-index: 1;
    pointer-events: none;
}

.preloader .loader .row {
    height: 100%;
}

.preloader .loader .loader-section {
    padding: 0px;
}

.preloader .loader .loader-section .bg {
    background-color: #fff;
    height: 100%;
    left: 0;
    width: 100%;
    transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}

.preloader.loaded .animation-preloader {
    opacity: 0;
    transition: 0.3s ease-out;
}

.preloader.loaded .loader-section .bg {
    width: 0;
    transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
}

.search-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999;
    background-color: rgba(255, 255, 255, 0.9);
}

.search-wrap .search-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.search-wrap .search-cell {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
}

.search-wrap .search-field-holder {
    width: 50%;
    margin: auto;
    position: relative;
    animation: slideInUp 0.3s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .search-wrap .search-field-holder {
        width: 70%;
    }
}

@media (max-width: 575px) {
    .search-wrap .search-field-holder {
        width: 80%;
    }
}

.search-wrap .main-search-input {
    width: 100%;
    height: 70px;
    border: 0;
    padding: 0 50px;
    text-transform: capitalize;
    background: transparent;
    font-size: 25px;
    color: var(--header);
    border-bottom: 2px solid var(--header);
    text-align: center;
    letter-spacing: 2px;
}

@media (max-width: 575px) {
    .search-wrap .main-search-input {
        height: 50px;
        padding: 0 0;
        line-height: 50px;
        font-size: 18px;
    }
}

.search-wrap input.form-control,
.search-wrap input.form-control:focus {
    background-color: var(--header);
}

input.main-search-input::placeholder {
    color: var(--header);
    opacity: 1;
    font-size: 25px;
}

@media (max-width: 575px) {
    input.main-search-input::placeholder {
        font-size: 18px;
    }
}

.search-close {
    position: absolute;
    top: 50px;
    right: 50px;
    font-size: 30px;
    color: var(--theme);
    cursor: pointer;
}

.scroll-up {
    cursor: pointer;
    display: block;
    border-radius: 50px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    position: fixed;
    right: 25px;
    bottom: 35px;
    height: 50px;
    width: 50px;
    transition: all 0.4s ease-in-out;
}

.scroll-up::after {
    position: absolute;
    font-family: "Font Awesome 5 Pro";
    content: "\f176";
    text-align: center;
    line-height: 50px;
    font-weight: 700;
    font-size: 18px;
    color: var(--theme-2);
    left: 0;
    top: 0;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    z-index: 1;
    transition: all 0.4s ease-in-out;
}

.scroll-up svg path {
    fill: none;
}

.scroll-up svg.scroll-circle path {
    stroke: var(--theme-2);
    stroke-width: 4px;
    box-sizing: border-box;
    transition: all 0.4s ease-in-out;
}

.scroll-up.active-scroll {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
}

@media (max-width: 767px) {
    .mouse-cursor {
        display: none;
    }
}

.cursor-inner {
    width: 6px;
    height: 6px;
    z-index: 10000001;
    background-color: var(--theme-2);
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
    margin-left: -35px;
    margin-top: -35px;
    width: 70px;
    height: 70px;
    background-color: var(--theme-2);
    opacity: 0.3;
}

.cursor-outer {
    margin-left: -12px;
    margin-top: -12px;
    width: 30px;
    height: 30px;
    border: 1px solid var(--theme-2);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 10000000;
    opacity: 0.5;
    -webkit-transition: all 0.08s ease-out;
    -o-transition: all 0.08s ease-out;
    transition: all 0.08s ease-out;
}

.cursor-outer.cursor-hover {
    opacity: 0;
}

.section-title {
    position: relative;
    z-index: 99;
    margin-top: -6px;
}

@media (max-width: 767px) {
    .section-title {
        margin-bottom: 0;
    }
}

.section-title .sub-title {
    font-size: 16px;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
    text-transform: capitalize;
    color: var(--theme);
}

.section-title .sub-title i {
    margin-right: 5px;
}

.section-title .sub-title.color-2 {
    color: var(--theme-2) !important;
}

.section-title .sub-title.color-3 {
    color: var(--theme-3);
}

.section-title h2 {
    text-transform: capitalize;
    font-size: 43px;
    line-height: 130%;
}

.section-title h2 span {
    color: var(--theme-3);
}

@media (max-width: 991px) {
    .section-title h2 {
        font-size: 48px;
    }
}

@media (max-width: 767px) {
    .section-title h2 {
        font-size: 38px;
    }
}

@media (max-width: 575px) {
    .section-title h2 {
        font-size: 28px;
    }
}

.section-title h2 span {
    color: var(--theme-2);
}

.section-title-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 767px) {
    .section-title-area {
        flex-wrap: wrap;
        gap: 30px;
    }
}

.center {
    text-align: center;
    margin: 0 auto;
}

.section-bg {
    background-color: var(--bg) !important;
}

.section-padding {
    padding: 120px 0;
}

@media (max-width: 1199px) {
    .section-padding {
        padding: 100px 0;
    }
}

@media (max-width: 991px) {
    .section-padding {
        padding: 80px 0;
    }
}

@-webkit-keyframes rippleOne {
    70% {
        -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    }
}

@keyframes rippleOne {
    70% {
        -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    }
}

@keyframes cir36 {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes rounded {
    50% {
        transform: rotate(15deg);
    }
}

@keyframes rounded-2 {
    50% {
        transform: rotate(5deg);
    }
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.animation__rotate {
    -webkit-animation: rotate 40s linear infinite;
    animation: rotate 40s linear infinite;
}

@-webkit-keyframes spinner {
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}

@keyframes spinner {
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}

@-webkit-keyframes letters-loading {
    0%,
    75%,
    100% {
        opacity: 0;
        transform: rotateY(-90deg);
    }
    25%,
    50% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}

@keyframes letters-loading {
    0%,
    75%,
    100% {
        opacity: 0;
        transform: rotateY(-90deg);
    }
    25%,
    50% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}

@keyframes loaderspin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes tpswing {
    0% {
        -webkit-transform: rotate(20deg);
        -ms-transform: rotate(20deg);
        transform: rotate(20deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes width {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@-webkit-keyframes width {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@-webkit-keyframes loaderspin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes loaderpulse {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.2);
    }
}

.float-bob-y {
    -webkit-animation-name: float-bob-y;
    animation-name: float-bob-y;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
    0% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    100% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
}

@keyframes float-bob-y {
    0% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    100% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
}

@keyframes top-image-bounce {
    0% {
        transform: translateX(-8px);
    }
    50% {
        transform: translateX(12px);
    }
    100% {
        transform: translateX(-8px);
    }
}

@keyframes top-image-bounce-2 {
    0% {
        transform: translatey(-8px);
    }
    50% {
        transform: translatey(12px);
    }
    100% {
        transform: translatey(-8px);
    }
}

@keyframes toggle {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes moveCursor1 {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    to {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
}

@keyframes moveCursor1 {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    to {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
}

@-webkit-keyframes moveCursor2 {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes moveCursor2 {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes criss-cross-left {
    0% {
        left: -20px;
    }
    50% {
        left: 50%;
        width: 20px;
        height: 20px;
    }
    100% {
        left: 50%;
        width: 375px;
        height: 375px;
    }
}

@keyframes criss-cross-right {
    0% {
        right: -20px;
    }
    50% {
        right: 50%;
        width: 20px;
        height: 20px;
    }
    100% {
        right: 50%;
        width: 375px;
        height: 375px;
    }
}

@keyframes tpswing {
    0% {
        -webkit-transform: rotate(20deg);
        -ms-transform: rotate(20deg);
        transform: rotate(20deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes width {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@-webkit-keyframes width {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@keyframes icon-animation {
    from {
        transform: rotate3d(0, 0, 1, 0deg);
    }
    20%,
    32%,
    44%,
    56%,
    68% {
        transform: rotate3d(0, 0, 1, 0deg);
    }
    23%,
    35%,
    47%,
    59%,
    71% {
        transform: rotate3d(0, 0, 1, 15deg);
    }
    26%,
    38%,
    50%,
    62%,
    74% {
        transform: rotate3d(0, 0, 1, 0deg);
    }
    29%,
    41%,
    53%,
    65%,
    77% {
        transform: rotate3d(0, 0, 1, -15deg);
    }
    80% {
        transform: rotate3d(0, 0, 1, 0deg);
    }
}

.float-bob-y {
    -webkit-animation-name: float-bob-y;
    animation-name: float-bob-y;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
    0% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    100% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
}

@keyframes float-bob-y {
    0% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    100% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
}

.float-bob-x {
    -webkit-animation-name: float-bob-x;
    animation-name: float-bob-x;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes float-bob-x {
    0% {
        -webkit-transform: translateX(0px);
        transform: translateX(30px);
    }
    50% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }
    100% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
}

@keyframes float-bob-x {
    0% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
    50% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }
    100% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
}

@keyframes bounce-x {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    50% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.bounce-x {
    -webkit-animation: bounce-x 7s infinite linear;
    animation: bounce-x 7s infinite linear;
}

.header-top-section {
    background-color: var(--header);
    padding: 10px 0;
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    .header-top-section {
        display: none;
    }
}

.header-top-section::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--theme-2);
    z-index: -1;
    left: 81%;
}

@media (max-width: 1899px) {
    .header-top-section::before {
        display: none;
    }
}

.header-top-section .container-fluid {
    padding: 0 130px;
}

@media (max-width: 1399px) {
    .header-top-section .container-fluid {
        padding: 0 50px;
    }
}

.header-top-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: 250px;
}

@media (max-width: 1899px) {
    .header-top-wrapper {
        margin-left: 0;
    }
}

.header-top-wrapper .contact-list {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header-top-wrapper .contact-list li {
    font-size: 15px;
    color: var(--white);
}

.header-top-wrapper .contact-list li a {
    color: var(--white);
}

.header-top-wrapper .contact-list li i {
    color: var(--white);
    margin-right: 10px;
}

.header-top-wrapper .top-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-top-wrapper .top-right .social-icon {
    gap: 15px;
}

.header-top-wrapper .top-right .social-icon span {
    color: var(--white);
    font-weight: 500;
}

.header-top-wrapper .top-right .social-icon a {
    color: var(--white);
}

.header-top-wrapper-2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.header-top-wrapper-2 .contact-list {
    display: flex;
    align-items: center;
    gap: 40px;
}

.header-top-wrapper-2 .contact-list li {
    color: var(--white);
    font-weight: 500;
}

.header-top-wrapper-2 .contact-list li i {
    margin-right: 5px;
}

.header-top-wrapper-2 .contact-list li a {
    color: var(--white);
    font-weight: 500;
}

.header-top-wrapper-2 .social-icon {
    gap: 20px;
}

.header-top-wrapper-2 .social-icon span {
    color: var(--white);
    font-weight: 500;
}

.header-top-wrapper-2 .social-icon a {
    color: var(--white);
}

.header-top-wrapper-2 .social-icon a:hover {
    color: var(--theme-2);
}

.header-top-wrapper-2.style-3 {
    padding: 12px 0;
}

@media (max-width: 1199px) {
    .menu-thumb {
        display: none !important;
    }
}

.header-section-1 {
    position: relative;
}

.header-section-1::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: #fff;
    width: 16%;
    z-index: 9;
}

@media (max-width: 1899px) {
    .header-section-1::before {
        display: none;
    }
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.header-main .main-menu ul {
    margin-bottom: 0;
}

.header-main .main-menu ul li {
    position: relative;
    list-style: none;
    display: inline-block;
    margin-inline-end: 40px;
}

.header-main .main-menu ul li:last-child {
    margin-inline-end: 0;
}

.header-main .main-menu ul li a {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: var(--header);
    padding: 20px 0;
    text-align: left;
    position: relative;
    text-transform: capitalize;
    transition: all 0.4s ease-in-out;
}

.header-main .main-menu ul li a:hover {
    color: var(--theme-2) !important;
}

.header-main .main-menu ul li .submenu {
    position: absolute;
    top: 100%;
    inset-inline-start: 0;
    min-width: 240px;
    background: var(--white);
    z-index: 99999;
    visibility: hidden;
    opacity: 0;
    transform-origin: top center;
    color: var(--header);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    transform: translateY(10px);
    transition: all 0.4s ease-in-out;
}

.header-main .main-menu ul li .submenu li {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
}

.header-main .main-menu ul li .submenu li a {
    position: relative;
    z-index: 11;
    font-size: 16px;
    font-weight: 600;
    color: var(--header);
    padding: 0 25px;
    padding-bottom: 11px;
    padding-top: 11px;
    width: 100%;
    border-bottom: 1px solid #eeeeee;
}

.header-main .main-menu ul li .submenu li:last-child a {
    border: none;
}

.header-main .main-menu ul li .submenu li .submenu {
    inset-inline-start: 100%;
    top: 0;
    visibility: hidden;
    opacity: 0;
}

.header-main .main-menu ul li .submenu li:hover>a {
    background: var(--theme-2);
    color: var(--white) !important;
}

.header-main .main-menu ul li .submenu li:hover>a::after {
    color: var(--theme-2);
}

.header-main .main-menu ul li .submenu li:hover>.submenu {
    -webkit-transform: translateY(1);
    -moz-transform: translateY(1);
    -ms-transform: translateY(1);
    -o-transform: translateY(1);
    transform: translateY(1);
    visibility: visible;
    opacity: 1;
}

.header-main .main-menu ul li .submenu li.has-dropdown>a::after {
    position: absolute;
    top: 50%;
    inset-inline-end: 25px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    color: var(--theme);
}

.header-main .main-menu ul li .has-homemenu {
    width: 1000px;
    padding: 30px 30px 10px 30px;
    opacity: 0;
    left: -250px;
    visibility: hidden;
    padding: 30px 30px 10px 30px;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
}

@media (max-width: 991px) {
    .header-main .main-menu ul li .has-homemenu .homemenu-items {
        flex-wrap: wrap;
    }
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu {
    position: relative;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb {
    position: relative;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    margin-top: 20px;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
    padding: 14px 10px;
    color: var(--white) !important;
    width: initial;
    font-size: 14px;
    text-align: center;
    border-radius: 0;
    background-color: var(--theme-2);
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
    color: var(--white) !important;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb::before {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(99, 92, 92, 0)), to(#292930));
    background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #292930 100%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    content: "";
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover::before {
    visibility: visible;
    opacity: 1;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
    opacity: 1;
    visibility: visible;
    bottom: 50%;
    transform: translateY(50%);
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb img {
    width: 100%;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
    text-align: center;
    margin: 15px auto;
    display: inline-block;
    font-size: 16px;
}

.header-main .main-menu ul li:hover>a {
    color: var(--theme-2);
}

.header-main .main-menu ul li:hover>a::after {
    color: var(--theme);
}

.header-main .main-menu ul li:hover>.submenu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
}

.header-main .sidebar__toggle {
    cursor: pointer;
    font-size: 20px;
}

.header-1 {
    margin-left: 250px;
    position: relative;
}

@media (max-width: 1899px) {
    .header-1 {
        margin-left: 0;
    }
}

.header-1 .main-logo {
    position: absolute;
    top: -30px;
    left: -200px;
    z-index: 9;
}

@media (max-width: 1899px) {
    .header-1 .main-logo {
        display: none;
    }
}

.header-1 .container-fluid {
    padding: 0 130px;
}

@media (max-width: 1399px) {
    .header-1 .container-fluid {
        padding: 0 50px;
    }
}

@media (max-width: 991px) {
    .header-1 .container-fluid {
        padding: 0 40px;
    }
}

@media (max-width: 575px) {
    .header-1 .container-fluid {
        padding: 0 15px;
    }
}

@media (max-width: 1899px) {
    .header-1 .header-main .logo {
        display: block !important;
    }
}

@media screen and (max-width: 1025px) {
    .header-1 .header-main .main-menu ul li {
        margin-inline-end: 25px;
    }
}

.header-1 .header-main .main-menu ul li .has-homemenu {
    left: -200px;
}

@media (max-width: 1600px) {
    .header-1 .header-main .main-menu ul li .has-homemenu {
        left: -300px;
    }
}

.header-1 .header-main .header-right {
    gap: 40px;
}

@media (max-width: 991px) {
    .header-1 .header-main .header-right {
        gap: 25px;
    }
}

.header-1 .header-main .header-right .header-button .theme-btn {
    padding: 22px 30px;
    background-color: var(--theme-2);
}

@media (max-width: 1899px) {
    .header-1 .header-main .header-right .header-button {
        margin-right: 0;
    }
}

@media (max-width: 1600px) {
    .header-1 .header-main .header-right .header-button {
        display: none;
    }
}

.header-1 .header-main .header-right .sidebar__toggle {
    color: var(--header);
}

.header-section-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: transparent;
}

@media (max-width: 991px) {
    .header-top-section-2 {
        display: none;
    }
}

.header-top-section-3 {
    background-color: var(--theme-2);
}

@media (max-width: 991px) {
    .header-top-section-3 {
        display: none;
    }
}

.header-2 .header-main {
    background-color: var(--white);
    padding: 20px 30px;
    border-radius: 16px;
}

.header-2 .header-main .header-right {
    gap: 30px;
}

@media (max-width: 1199px) {
    .header-2 .header-main .header-right {
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .header-2 .header-main .header-right {
        gap: 10px;
    }
}

.header-2 .header-main .header-right .search-icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid rgba(92, 112, 126, 0.3);
    color: var(--header);
    margin-left: 30px;
}

.header-2 .header-main .header-right .search-icon:hover {
    background-color: var(--theme-2);
    color: var(--white);
    border: 1px solid var(--theme-2);
}

@media (max-width: 1199px) {
    .header-2 .header-main .header-right .search-icon {
        margin-left: 0;
    }
}

@media (max-width: 1199px) {
    .header-2 .header-main .header-right .search-icon {
        width: 40px;
        height: 40px;
        line-height: 40px;
    }
}

@media (max-width: 1399px) {
    .header-2 .header-main .header-right .header-button {
        display: none;
    }
}

.header-2 .header-main .header-right .header-button .theme-btn {
    background-color: var(--theme-2);
}

.header-3 {
    padding: 10px 0;
}

.header-3 .header-main .header-left {
    display: flex;
    align-items: center;
    gap: 35px;
}

.header-3 .header-main .header-right {
    gap: 30px;
}

.header-3 .header-main .header-right .author-icon {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 1399px) {
    .header-3 .header-main .header-right .author-icon {
        display: none;
    }
}

.header-3 .header-main .header-right .author-icon .icon {
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    background-color: var(--theme-2);
    text-align: center;
    color: var(--white);
    border-radius: 50%;
    position: relative;
}

.header-3 .header-main .header-right .author-icon .icon::before {
    position: absolute;
    top: 50%;
    left: 50%;
    right: 0;
    bottom: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid var(--theme-2);
    content: "";
    transform: translate(-50%, -50%);
}

.header-3 .header-main .header-right .author-icon .content span {
    margin-bottom: 5px;
    display: inline-block;
}

@media (max-width: 1199px) {
    .header-3 .header-main .header-right .header-button {
        display: none;
    }
}

.header-3 .header-main .header-right .header-button .theme-btn {
    background-color: var(--theme-2);
}

.header-4 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
}

.header-4 .header-logo-2 {
    display: none;
}

.header-4 .header-main .main-menu ul li a {
    color: var(--white);
}

@media (max-width: 1899px) {
    .header-4 .header-main .main-menu ul li .has-homemenu {
        left: -500px;
    }
}

.header-4 .header-main .sidebar__toggle {
    color: var(--white);
}

.header-4 .header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sticky {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.9s;
    background-color: var(--white);
    box-shadow: var(---box-shadow);
    -webkit-transition: all 0.9s;
    transition: all 0.9s;
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}

.sticky.header-1 {
    margin-left: 0;
}

.sticky.header-1 .main-logo {
    display: none;
}

.sticky.header-1 .header-main .logo {
    display: block !important;
}

.sticky.header-2 .header-main {
    padding: 15px 0;
    border-radius: 0;
}

.sticky.header-4 .header-logo-2 {
    display: block;
}

.sticky.header-4 .header-logo {
    display: none;
}

.sticky.header-4 .header-main .main-menu ul li a {
    color: var(--header);
}

.sticky.header-4 .header-main .sidebar__toggle {
    color: var(--header);
}

.offcanvas__info {
    background: var(--white) none repeat scroll 0 0;
    border-left: 2px solid var(--theme-2);
    position: fixed;
    right: 0;
    top: 0;
    width: 400px;
    height: 100%;
    -webkit-transform: translateX(calc(100% + 80px));
    -moz-transform: translateX(calc(100% + 80px));
    -ms-transform: translateX(calc(100% + 80px));
    -o-transform: translateX(calc(100% + 80px));
    transform: translateX(calc(100% + 80px));
    -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
    -moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
    transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
    z-index: 99999;
    overflow-y: scroll;
    overscroll-behavior-y: contain;
    scrollbar-width: none;
}

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

.offcanvas__info.info-open {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}

.offcanvas__wrapper {
    position: relative;
    height: 100%;
    padding: 30px 30px;
}

.offcanvas__wrapper .offcanvas__content .text {
    color: var(--text);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close {
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--theme-2);
    position: relative;
    z-index: 9;
    cursor: pointer;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
    color: var(--white);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
    margin-top: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul {
    margin-top: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
    font-size: 16px;
    font-weight: 500;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
    margin-bottom: 15px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon {
    margin-right: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon i {
    color: var(--theme-2);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button .theme-btn {
    width: 100%;
    padding: 16px 40px;
    background-color: var(--theme-2);
}

@media (max-width: 575px) {
    .offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button .theme-btn {
        padding: 14px 30px;
    }
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon {
    margin-top: 30px;
    gap: 10px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a {
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    font-size: 16px;
    display: block;
    background: transparent;
    color: var(--header);
    border-radius: 50%;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    text-align: center;
    border: 1px solid var(--border);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a:hover {
    background-color: var(--theme-2);
    color: var(--white);
}

.offcanvas__overlay {
    position: fixed;
    height: 100%;
    width: 100%;
    background: #151515;
    z-index: 900;
    top: 0;
    opacity: 0;
    visibility: hidden;
    right: 0;
}

.offcanvas__overlay.overlay-open {
    opacity: 0.8;
    visibility: visible;
}

@media (max-width: 450px) {
    .offcanvas__info {
        width: 300px;
    }
}

@media (max-width: 575px) {
    .offcanvas__wrapper {
        padding: 20px;
    }
}

.breadcrumb-wrapper {
    position: relative;
    overflow: hidden;
    z-index: 9;
}

.breadcrumb-wrapper::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: var(--header);
    opacity: 0.3;
    z-index: -1;
}

.breadcrumb-wrapper .page-heading {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 99;
}

@media (max-width: 991px) {
    .breadcrumb-wrapper .page-heading {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
        text-align: center;
    }
}

.breadcrumb-wrapper .page-heading .breadcrumb-sub-title h5 {
    position: relative;
    z-index: 1;
    font-size: 18px;
    padding-right: 70px;
    line-height: 1;
    color: var(--white);
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .breadcrumb-wrapper .page-heading .breadcrumb-sub-title h5 {
        text-align: center;
        padding-right: 0;
    }
}

.breadcrumb-wrapper .page-heading .breadcrumb-sub-title h1 {
    color: var(--white);
    font-size: 60px;
    position: relative;
    z-index: 9;
    line-height: 1.3;
}

@media (max-width: 991px) {
    .breadcrumb-wrapper .page-heading .breadcrumb-sub-title h1 {
        font-size: 50px;
    }
}

@media (max-width: 575px) {
    .breadcrumb-wrapper .page-heading .breadcrumb-sub-title h1 {
        font-size: 42px;
    }
}

.breadcrumb-wrapper .page-heading .breadcrumb-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li {
    font-size: 18px;
    color: var(--white);
    font-weight: 500;
    text-transform: capitalize;
}

@media (max-width: 575px) {
    .breadcrumb-wrapper .page-heading .breadcrumb-items li {
        font-size: 16px;
    }
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a {
    color: var(--theme-3);
    transition: all 0.4s ease-in-out;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a:hover {
    color: var(--theme-2);
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li i {
    font-size: 18px;
    color: var(--theme-2);
}

@media (max-width: 575px) {
    .breadcrumb-wrapper .page-heading .breadcrumb-items li i {
        font-size: 16px;
    }
}

.error-content h2 {
    font-weight: 700;
    font-size: 320px;
    color: var(--theme);
}

.error-content h2 span {
    color: var(--theme-2);
}

@media (max-width: 1199px) {
    .error-content h2 {
        font-size: 300px;
    }
}

@media (max-width: 991px) {
    .error-content h2 {
        font-size: 200px;
    }
}

@media (max-width: 575px) {
    .error-content h2 {
        font-size: 110px;
    }
}

.error-content h3 {
    font-weight: 700;
}

.mean-container a.meanmenu-reveal {
    display: none;
}

.mean-container .mean-nav {
    background: none;
    margin-top: 0;
}

.mean-container .mean-bar {
    padding: 0;
    min-height: auto;
    background: none;
}

.mean-container .mean-nav>ul {
    padding: 0;
    margin: 0;
    width: 100%;
    list-style-type: none;
    display: block !important;
}

.mean-container .mean-nav>ul .homemenu {
    position: relative;
}

.mean-container .mean-nav>ul .homemenu .homemenu-thumb {
    position: relative;
    width: 280px;
}

.mean-container .mean-nav>ul .homemenu .homemenu-thumb .demo-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    gap: 10px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav>ul .homemenu .homemenu-thumb .demo-button .theme-btn {
    padding: 10px 30px;
    color: var(--white) !important;
    width: initial;
    font-size: 14px;
    text-align: center;
}

.mean-container .mean-nav>ul .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
    color: var(--white) !important;
}

.mean-container .mean-nav>ul .homemenu .homemenu-thumb::before {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(99, 92, 92, 0)), to(#292930));
    background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #292930 100%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    content: "";
}

.mean-container .mean-nav>ul .homemenu .homemenu-thumb:hover::before {
    visibility: visible;
    opacity: 1;
}

.mean-container .mean-nav>ul .homemenu .homemenu-thumb:hover .demo-button {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.mean-container .mean-nav>ul .homemenu .homemenu-thumb:hover .homemenu-btn {
    opacity: 1;
    visibility: visible;
    bottom: 50%;
    transform: translateY(50%);
}

.mean-container .mean-nav>ul .homemenu .homemenu-thumb img {
    width: 100%;
}

.mean-container .mean-nav>ul .homemenu .homemenu-content .homemenu-title {
    margin-top: 15px;
    display: inline-block;
    font-size: 16px;
}

.mean-container a.meanmenu-reveal {
    display: none !important;
}

.mean-container .mean-nav ul li a {
    width: 100%;
    padding: 10px 0;
    color: var(--header);
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
}

.mean-container .mean-nav ul li a:hover {
    color: var(--theme-2);
}

.mean-container .mean-nav ul li a:last-child {
    border-bottom: 0;
}

.mean-container .mean-nav ul li a:hover {
    color: var(--theme-2);
}

.mean-container .mean-nav ul li a.mean-expand {
    margin-top: 5px;
    padding: 0 !important;
}

.mean-container .mean-nav ul li>a>i {
    display: none;
}

.mean-container .mean-nav ul li>a.mean-expand i {
    display: inline-block;
}

.mean-container .mean-nav>ul>li:first-child>a {
    border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav ul li .mega-menu li a {
    height: 200px;
    width: 100%;
    padding: 0;
    border-top: 0;
    margin-bottom: 20px;
}

@media (max-width: 1199px) {
    .mean-container .mean-nav ul li.menu-thumb {
        display: none;
    }
}

.hero-1 {
    position: relative;
}

.hero-1:hover .array-button {
    opacity: 1;
    visibility: visible;
}

.hero-1 .array-button {
    position: initial;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

.hero-1 .array-button .array-prev,
.hero-1 .array-button .array-next {
    width: 60px;
    height: 60px;
    line-height: 60px;
    border: 1.5px solid var(--border);
    background-color: transparent;
    color: var(--white);
}

.hero-1 .array-button .array-prev:hover,
.hero-1 .array-button .array-next:hover {
    background-color: var(--theme-2);
    color: var(--white);
    border: 1px solid transparent;
}

.hero-1 .array-button .array-prev {
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
    z-index: 9;
}

.hero-1 .array-button .array-next {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    z-index: 9;
}

.hero-1 .swiper-slide-active .hero-image {
    -webkit-transform: scale(1.12);
    -moz-transform: scale(1.12);
    transform: scale(1.12);
}

.hero-1 .hero-image {
    overflow: hidden;
    position: absolute !important;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    z-index: -2;
    background-size: cover;
    transform: scale(1);
    -webkit-transition: all 8s ease-out 0s;
    -moz-transition: all 8s ease-out 0s;
    -ms-transition: all 8s ease-out 0s;
    -o-transition: all 8s ease-out 0s;
    transition: all 8s ease-out 0s;
}

.hero-1 .hero-image::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: #121516;
    opacity: 0.5;
}

.hero-1 .hero-content {
    position: relative;
    padding: 150px 0 350px;
}

@media (max-width: 767px) {
    .hero-1 .hero-content {
        text-align: center;
    }
}

.hero-1 .hero-content h5 {
    font-family: "DM Sans", sans-serif;
    color: var(--white);
    position: relative;
    z-index: 1;
    font-size: 18px;
    margin-bottom: 20px;
    padding-right: 70px;
    line-height: 1;
}

@media (max-width: 767px) {
    .hero-1 .hero-content h5 {
        text-align: center;
        margin: 0 auto;
        padding-right: 0;
    }
}

.hero-1 .hero-content h5 i {
    margin-right: 8px;
}

.hero-1 .hero-content h1 {
    color: var(--white);
}

@media (max-width: 1199px) {
    .hero-1 .hero-content h1 {
        font-size: 60px;
    }
}

@media (max-width: 991px) {
    .hero-1 .hero-content h1 {
        font-size: 52px;
    }
}

@media (max-width: 767px) {
    .hero-1 .hero-content h1 {
        font-size: 42px;
    }
}

@media (max-width: 575px) {
    .hero-1 .hero-content h1 {
        font-size: 34px;
    }
}

.hero-1 .hero-content .hero-button {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 767px) {
    .hero-1 .hero-content .hero-button {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .hero-1 .hero-content .hero-button {
        margin-top: 20px;
    }
}

.hero-1.style-hero-2 {
    position: relative;
}

.hero-1.style-hero-2 .hero-content {
    padding: 320px 0 320px;
}

@media (max-width: 991px) {
    .hero-1.style-hero-2 .hero-content {
        padding: 280px 0 280px;
    }
}

@media (max-width: 767px) {
    .hero-1.style-hero-2 .hero-content {
        padding: 250px 0 250px;
    }
}

@media (max-width: 575px) {
    .hero-1.style-hero-2 .hero-content {
        padding: 220px 0 220px;
    }
}

.hero-1.style-hero-2 .hero-content h5 {
    padding-right: 0;
}

.hero-1.style-hero-2 .hero-content h5::before {
    display: none;
}

.hero-1.style-hero-2 .hero-content h1 {
    color: var(--white);
}

@media (max-width: 1199px) {
    .hero-1.style-hero-2 .hero-content h1 {
        font-size: 60px;
    }
}

@media (max-width: 991px) {
    .hero-1.style-hero-2 .hero-content h1 {
        font-size: 52px;
    }
}

@media (max-width: 767px) {
    .hero-1.style-hero-2 .hero-content h1 {
        font-size: 42px;
    }
}

@media (max-width: 575px) {
    .hero-1.style-hero-2 .hero-content h1 {
        font-size: 34px;
    }
}

.hero-1.style-hero-2 .hero-content .hero-button {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-1.style-hero-2 .hero-content .hero-button a:first-child {
    background-color: var(--theme-3);
}

.hero-1.style-hero-3 {
    padding: 150px 0 245px;
}

.hero-1.style-hero-3 .hero-content {
    padding: 0;
}

.hero-1.style-hero-3 .hero-content h5::before {
    display: none;
}

.hero-1.style-hero-3 .hero-form {
    background-color: var(--theme-2);
    padding: 70px 50px;
}

@media (max-width: 1600px) {
    .hero-1.style-hero-3 .hero-form {
        padding: 40px;
    }
}

.hero-1.style-hero-3 .hero-form .hero-title {
    margin-bottom: 30px;
}

.hero-1.style-hero-3 .hero-form .hero-title h6 {
    color: var(--white);
}

.hero-1.style-hero-3 .hero-form .hero-title h2 {
    color: var(--white);
}

.hero-1.style-hero-3 .hero-form .hero-title p {
    color: var(--white);
    font-size: 18px;
    margin-top: 15px;
}

.hero-1.style-hero-3 .hero-form .progress {
    border-radius: 0;
    height: 10px;
}

.hero-1.style-hero-3 .hero-form .progress .progress-bar {
    background-color: var(--theme);
}

.hero-1.style-hero-3 .hero-form .progress-value {
    animation: load 3s normal forwards;
    border-radius: 0;
    background: var(--theme);
    height: 10px;
    width: 0;
    border-radius: 0;
}

@keyframes load {
    0% {
        width: 0;
    }
    100% {
        width: 70%;
    }
}

.hero-1.style-hero-3 .hero-form .progress-items {
    margin-bottom: 50px;
}

.hero-1.style-hero-3 .hero-form .progress-items .progress-goals {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--white);
    margin-bottom: 15px;
}

.hero-1.style-hero-3 .hero-form .donate-amount {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-1.style-hero-3 .hero-form .donate-amount .amount-btn {
    color: var(--text);
    padding: 14px 30px;
    background-color: var(--white);
    transition: all 0.4s ease-in-out;
    width: 130px;
}

@media (max-width: 1399px) {
    .hero-1.style-hero-3 .hero-form .donate-amount .amount-btn {
        max-width: 130px;
        width: initial;
    }
}

.hero-1.style-hero-3 .hero-form .donate-amount .amount-btn.active {
    background-color: var(--theme);
    color: var(--white);
}

.hero-1.style-hero-3 .hero-form .donate-amount .theme-btn {
    padding: 14px 30px;
}

.hero-1.style-hero-3 .hero-form .donate-now {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-1.style-hero-3 .hero-form .donate-now input {
    width: 100%;
    padding: 15px 20px;
    background-color: var(--white);
    color: var(--header);
    max-width: 200px;
    border: none;
    outline: none;
}

.hero-1.style-hero-3 .hero-form .donate-now .theme-btn {
    border-radius: 0;
    background-color: var(--theme-3);
    text-transform: capitalize;
    color: var(--white);
}

.hero-1.style-hero-3 .hero-form .donate-now .theme-btn::before {
    background-color: var(--theme);
}

.hero-4 {
    position: relative;
}

.hero-4 .swiper-dot {
    position: absolute;
    top: 50%;
    right: 2%;
    z-index: 99;
    transform: translateY(-50%);
    transform: rotate(90deg);
}

@media (max-width: 1399px) {
    .hero-4 .swiper-dot {
        display: none;
    }
}

.hero-4 .swiper-dot .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: var(--white);
}

.hero-4 .swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    width: 30px;
    height: 30px;
    line-height: 30px;
    top: -10px;
    left: -10px;
}

.hero-4 .hero-image {
    padding: 330px 0 280px;
    position: relative;
    z-index: 9;
}

@media (max-width: 767px) {
    .hero-4 .hero-image {
        padding-top: 150px;
        padding-bottom: 110px;
    }
}

.hero-4 .hero-image::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: #121516;
    opacity: 0.5;
    z-index: -1;
}

@media (max-width: 767px) {
    .hero-4 .hero-content {
        text-align: center;
    }
}

.hero-4 .hero-content h5 {
    color: var(--white);
}

.hero-4 .hero-content h1 {
    color: var(--white);
}

@media (max-width: 1199px) {
    .hero-4 .hero-content h1 {
        font-size: 60px;
    }
}

@media (max-width: 991px) {
    .hero-4 .hero-content h1 {
        font-size: 52px;
    }
}

@media (max-width: 767px) {
    .hero-4 .hero-content h1 {
        font-size: 42px;
    }
}

@media (max-width: 575px) {
    .hero-4 .hero-content h1 {
        font-size: 34px;
    }
}

.hero-4 .hero-content .hero-button {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 767px) {
    .hero-4 .hero-content .hero-button {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .hero-4 .hero-content .hero-button {
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .hero-4 .video-box {
        text-align: center;
        margin: 0 auto;
    }
}

.hero-4 .video-box .video-buttton {
    display: inline-block;
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    background-color: var(--theme-2);
    color: var(--white);
    border-radius: 50%;
}

.hero-4 .video-box .ripple::before,
.hero-4 .video-box .ripple::after {
    width: 100px;
    height: 100px;
}

.feature-wrapper .feature-image {
    max-width: 585px;
}

.feature-wrapper .feature-image img {
    width: 100%;
    height: 100%;
}

.feature-wrapper .feature-icon-area .icon-items {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 45px;
}

.feature-wrapper .feature-icon-area .icon-items .icon {
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    background-color: var(--white);
    box-shadow: var(---box-shadow);
    border-radius: 50%;
}

.feature-wrapper .feature-icon-area .icon-items .content {
    flex-basis: 60%;
}

.feature-wrapper .feature-icon-area .icon-items .content h3 {
    margin-bottom: 5px;
}

.feature-wrapper.style-2 .feature-image-2 img {
    width: 100%;
    height: 100%;
}

.feature-wrapper.style-2 .feature-content {
    margin-left: 60px;
}

@media (max-width: 1399px) {
    .feature-wrapper.style-2 .feature-content {
        margin-left: 30px;
    }
}

@media (max-width: 991px) {
    .feature-wrapper.style-2 .feature-content {
        margin-left: 0;
    }
}

.feature-wrapper.style-2 .feature-content .feature-icon-area {
    margin-top: 40px;
}

.feature-section {
    position: relative;
    z-index: 9;
}

.feature-section::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--bg);
    z-index: -1;
    width: 35%;
}

.counter-section {
    background-color: var(--theme-2);
}

.counter-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 991px) {
    .counter-wrapper {
        flex-wrap: wrap;
        gap: 30px;
    }
}

@media (max-width: 470px) {
    .counter-wrapper {
        justify-content: center;
    }
}

.counter-wrapper .counter-items {
    display: flex;
    gap: 30px;
}

.counter-wrapper .counter-items h2 {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 5px;
    line-height: 1;
}

.counter-wrapper .counter-items h2 span {
    font-size: 60px;
    color: var(--white);
}

.counter-wrapper .counter-items p {
    position: relative;
    color: var(--white);
    padding-left: 30px;
}

.counter-wrapper .counter-items p::before {
    position: absolute;
    left: 0;
    content: "---";
    color: #dd867a;
}

.service-card-items {
    margin-top: 30px;
    background-color: var(--white);
    box-shadow: var(---box-shadow);
    height: 100% !important;
}

.service-card-items .service-image {
    padding: 15px 15px 0 15px;
}

.service-card-items .service-image img {
    width: 100%;
    height: 100%;
}

.service-card-items .service-content {
    padding: 25px 30px;
    text-align: center;
}

.service-card-items .service-content h3 {
    margin-bottom: 10px;
}

.service-card-items .service-content .link-btn {
    margin-top: 10px;
}

.service-card-items .service-content h3:hover {
    color: var(--theme-2);
}

.about-wrapper {
    margin-top: 95px;
}

.about-wrapper .about-image-items {
    position: relative;
}

.about-wrapper .about-image-items .about-image-1 {
    max-width: 500px;
    position: relative;
    margin-top: 30px;
}

.about-wrapper .about-image-items .about-image-1 img {
    width: 100%;
    height: 100%;
}

.about-wrapper .about-image-items .about-image-1 .about-image-2 {
    position: absolute;
    top: -22%;
    right: -20%;
    border: 10px solid var(--white);
    box-shadow: 0px 16px 32px 0px rgba(32, 36, 38, 0.1);
}

@media (max-width: 1399px) {
    .about-wrapper .about-image-items .about-image-1 .about-image-2 {
        top: 0;
        right: 0;
        max-width: 200px;
    }
    .about-wrapper .about-image-items .about-image-1 .about-image-2 img {
        width: 100%;
        height: 100%;
    }
}

.about-wrapper .about-image-items .counter-box {
    background-color: var(--theme);
    text-align: center;
    position: absolute;
    bottom: 15%;
    right: -3%;
    padding: 60px 50px;
    z-index: 999;
}

@media (max-width: 1399px) {
    .about-wrapper .about-image-items .counter-box {
        bottom: 0;
        right: initial;
        left: 0;
    }
}

@media (max-width: 767px) {
    .about-wrapper .about-image-items .counter-box {
        padding: 50px 40px;
    }
}

@media (max-width: 575px) {
    .about-wrapper .about-image-items .counter-box {
        padding: 40px 30px;
    }
}

.about-wrapper .about-image-items .counter-box h2 {
    color: var(--white);
    font-size: 16px;
}

.about-wrapper .about-image-items .counter-box h2 span {
    font-size: 80px;
}

@media (max-width: 767px) {
    .about-wrapper .about-image-items .counter-box h2 span {
        font-size: 60px;
    }
}

@media (max-width: 575px) {
    .about-wrapper .about-image-items .counter-box h2 span {
        font-size: 48px;
    }
}

.about-wrapper .about-image-items .counter-box p {
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    margin-top: 10px;
}

.about-wrapper .about-content p {
    font-size: 18px;
}

.about-wrapper .about-content .checked-list {
    margin-top: 30px;
    margin-left: 80px;
}

@media (max-width: 1399px) {
    .about-wrapper .about-content .checked-list {
        margin-left: 0;
    }
}

.about-wrapper .about-content .checked-list li {
    position: relative;
    font-size: 16px;
    color: #727475;
    font-weight: 600;
    margin-top: 10px;
    padding-left: 30px;
}

.about-wrapper .about-content .checked-list li::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "\f00c";
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    color: var(--theme);
}

.about-wrapper .about-content .about-button {
    margin-left: 80px;
    margin-top: 40px;
}

@media (max-width: 1399px) {
    .about-wrapper .about-content .about-button {
        margin-left: 0;
    }
}

.about-wrapper .about-content .about-button .theme-btn {
    padding: 18.5px 45px;
}

.about-wrapper-2 .about-image-items {
    position: relative;
}

.about-wrapper-2 .about-image-items .video-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 8888;
}

.about-wrapper-2 .about-image-items .video-box .video-buttton {
    display: inline-block;
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    background-color: var(--theme-2);
    color: var(--white);
    border-radius: 50%;
}

.about-wrapper-2 .about-image-items .video-box .ripple::before,
.about-wrapper-2 .about-image-items .video-box .ripple::after {
    width: 100px;
    height: 100px;
}

.about-wrapper-2 .about-image-items .about-image-1 {
    height: 390px;
}

.about-wrapper-2 .about-image-items .about-image-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-wrapper-2 .about-image-items .about-image-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 767px) {
    .about-wrapper-2 .about-image-items .about-image-2 {
        height: 470px;
    }
}

@media (max-width: 575px) {
    .about-wrapper-2 .about-image-items .about-image-2 {
        height: 400px;
    }
}

.about-wrapper-2 .about-content {
    margin-left: 70px;
}

@media (max-width: 1399px) {
    .about-wrapper-2 .about-content {
        margin-left: 50px;
    }
}

@media (max-width: 1199px) {
    .about-wrapper-2 .about-content {
        margin-left: 30px;
    }
}

@media (max-width: 991px) {
    .about-wrapper-2 .about-content {
        margin-left: 0;
    }
}

.about-wrapper-2 .about-content .list-area {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 70px;
    margin-bottom: 30px;
}

@media (max-width: 1199px) {
    .about-wrapper-2 .about-content .list-area {
        gap: 25px;
        flex-wrap: wrap;
    }
}

.about-wrapper-2 .about-content .list-area .list-items {
    display: flex;
    gap: 20px;
}

.about-wrapper-2 .about-content .list-area .list-items i {
    font-size: 22px;
    color: var(--theme-2);
}

.about-wrapper-2 .about-content .list-area .list-items .content h5 {
    margin-bottom: 5px;
}

.org-logo-wrap {
    position: relative;
    margin-bottom: 50px;
    z-index: 1;
}

.org-logo-wrap::before {
    border-style: solid;
    border-width: 2px;
    border-color: #fafafa;
    border-radius: 50%;
    width: 348px;
    height: 348px;
    position: absolute;
    left: 50%;
    top: 50%;
    content: "";
    z-index: -1;
    transform: translate(-50%, -50%);
}

.org-logo-wrap::after {
    border-style: solid;
    border-width: 2px;
    border-color: #fafafa;
    border-radius: 50%;
    width: 261px;
    height: 261px;
    position: absolute;
    left: 50%;
    top: 50%;
    content: "";
    z-index: -1;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.about-image-items {
    margin-top: 30px;
}

.about-image-items img {
    width: 100%;
    height: 100%;
}

.about-section-2 {
    position: relative;
    z-index: 9;
}

.about-section-2::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--theme-2);
    top: 90%;
    z-index: -1;
}

.about-wrapper-3 .about-image-items-2 .about-image {
    height: 502px;
}

@media (max-width: 767px) {
    .about-wrapper-3 .about-image-items-2 .about-image {
        height: 450px;
    }
}

@media (max-width: 575px) {
    .about-wrapper-3 .about-image-items-2 .about-image {
        height: 350px;
    }
}

.about-wrapper-3 .about-image-items-2 .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-wrapper-3 .about-image-items-2 .about-experience {
    background-color: var(--theme-2);
    padding: 30px;
}

.about-wrapper-3 .about-image-items-2 .about-experience h2 {
    color: var(--white);
    font-size: 32px;
}

.about-wrapper-3 .about-image-items-2 .about-experience h6 {
    color: var(--white);
}

.about-wrapper-3 .about-image-items-2 .about-experience .thumb {
    margin-top: 15px;
    margin-bottom: 15px;
}

.about-wrapper-3 .about-image-items-2 .about-img {
    margin-top: 20px;
}

.about-wrapper-3 .about-image-items-2 .about-img img {
    width: 100%;
    height: 100%;
}

.about-wrapper-3 .about-content {
    margin-left: 50px;
}

@media (max-width: 1399px) {
    .about-wrapper-3 .about-content {
        margin-left: 30px;
    }
}

@media (max-width: 991px) {
    .about-wrapper-3 .about-content {
        margin-left: 0;
    }
}

.about-wrapper-3 .about-content .d-flex {
    gap: 50px;
}

@media (max-width: 1199px) {
    .about-wrapper-3 .about-content .d-flex {
        gap: 20px;
    }
}

.about-wrapper-3 .about-content .checked-list li {
    margin-top: 10px;
}

.about-wrapper-3 .about-content .checked-list li i {
    margin-right: 5px;
    color: var(--theme-2);
}

.about-wrapper-3 .about-content .theme-btn {
    background-color: var(--theme-2);
}

.donation-card-items {
    border: 2px solid var(--border);
    padding: 50px;
}

@media (max-width: 767px) {
    .donation-card-items {
        padding: 40px;
    }
}

@media (max-width: 575px) {
    .donation-card-items {
        padding: 30px;
    }
}

.donation-card-items .content {
    margin-top: 20px;
}

.donation-card-items .content h3 {
    margin-bottom: 5px;
}

.donation-card-items .content h3 a:hover {
    color: var(--theme-2);
}

.donation-card-items .content .donation-btn {
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 700;
    color: var(--header);
    display: block;
    margin-top: 25px;
}

.donation-card-items .content .donation-btn i {
    border-style: solid;
    border-width: 2px;
    border-color: #f2f2f2;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    line-height: 62px;
    text-align: center;
    color: #202426;
    margin-right: 10px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.donation-card-items .content .donation-btn:hover {
    color: var(--theme-2);
}

.donation-card-items .content .donation-btn:hover i {
    color: var(--theme-2);
    border-color: var(--theme-2);
    transform: rotate(45deg);
}

.donation-section-2 {
    position: relative;
    background-color: #202426;
    position: relative;
}

.donation-section-2 .donation-image {
    position: absolute;
    left: 0;
    bottom: 0;
}

@media (max-width: 1600px) {
    .donation-section-2 .donation-image {
        width: 650px;
        top: 0;
    }
    .donation-section-2 .donation-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

@media (max-width: 1399px) {
    .donation-section-2 .donation-image {
        width: 550px;
    }
}

@media (max-width: 1199px) {
    .donation-section-2 .donation-image {
        width: 500px;
    }
}

@media (max-width: 991px) {
    .donation-section-2 .donation-image {
        position: static;
        margin-bottom: 50px;
        top: 0;
        bottom: initial;
        right: 0;
        width: initial;
    }
    .donation-section-2 .donation-image img {
        width: 100%;
        height: 100%;
    }
}

.donation-section-2 .donation-image img {
    max-width: 100%;
}

.donation-content-area {
    margin-left: 100px;
}

@media (max-width: 991px) {
    .donation-content-area {
        margin-left: 0;
    }
}

.donation-content-area .section-title h2 {
    font-size: 50px;
}

@media (max-width: 1199px) {
    .donation-content-area .section-title h2 {
        font-size: 44px;
    }
}

@media (max-width: 767px) {
    .donation-content-area .section-title h2 {
        font-size: 38px;
    }
}

@media (max-width: 575px) {
    .donation-content-area .section-title h2 {
        font-size: 32px;
    }
}

.donation-content-area .donate-amount {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.donation-content-area .donate-amount .amount-btn {
    color: var(--text);
    padding: 14px 30px;
    background-color: #2b2e30;
    transition: all 0.4s ease-in-out;
}

.donation-content-area .donate-amount .amount-btn.active {
    background-color: var(--theme-2);
    color: var(--white);
}

.donation-content-area .donate-now {
    display: flex;
    gap: 20px;
}

.donation-content-area .donate-now input {
    width: 100%;
    padding: 15px 20px;
    background-color: #2b2e30;
    color: var(--white);
    max-width: 200px;
    border: none;
    outline: none;
}

.donation-content-area .donate-now .theme-btn {
    border-radius: 0;
    background-color: var(--theme-2);
    text-transform: capitalize;
}

.donation-content-area .donate-now .theme-btn::before {
    background-color: var(--theme-3);
}

.donate-now-section {
    background-color: #202426;
}

.give-donate-form-wrap .give-donation-level-btn {
    border-style: solid;
    border-width: 2px;
    border-color: #54c2cc;
    background-color: #54c2cc;
    display: inline-block;
    padding: 20px 40px;
    border-radius: 30px;
    line-height: 1;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-right: 20px;
    margin-bottom: 20px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}


/* Track */

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px var(--theme);
    border-radius: 5px;
}


/* Handle */

::-webkit-scrollbar-thumb {
    background: var(--theme);
    border-radius: 10px;
}

.fix {
    overflow: hidden;
}

.ralt {
    position: relative;
}

.ripple {
    position: relative;
}

.ripple::before,
.ripple::after {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 115px;
    height: 115px;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(248, 96, 72, 0.5);
    animation: rippleOne 3s infinite;
}

.ripple::before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
}

.ripple::after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
}

.swiper-dot .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    transition: 0.6s;
    background-color: var(--theme-2);
    opacity: 1;
    border-radius: 10px;
    position: relative;
}

.swiper-dot .swiper-pagination-bullet:not(:last-child) {
    margin-right: 20px;
}

.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--theme-2);
    transition: 0.6s;
    position: relative;
}

.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    position: absolute;
    width: 20px;
    height: 20px;
    line-height: 20px;
    top: -7px;
    left: -7px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid var(--theme-2);
    content: "";
}

.swiper-dot-2 .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    transition: 0.6s;
    background-color: var(--white);
    opacity: 1;
    border-radius: 10px;
    position: relative;
}

.swiper-dot-2 .swiper-pagination-bullet:not(:last-child) {
    margin-right: 20px;
}

.swiper-dot-2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--white);
    transition: 0.6s;
    position: relative;
}

.swiper-dot-2 .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    position: absolute;
    width: 20px;
    height: 20px;
    line-height: 20px;
    top: -7px;
    left: -7px;
    border-radius: 50%;
    background-color: transparent;
    border: 1.3px solid var(--white);
    content: "";
}

.array-button {
    position: relative;
    z-index: 99;
    display: flex;
    align-items: center;
    gap: 20px;
}

.array-button .array-prev {
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background-color: var(--theme-2);
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    transition: all 0.4s ease-in-out;
}

@media (max-width: 575px) {
    .array-button .array-prev {
        width: 45px;
        height: 45px;
        line-height: 45px;
    }
}

.array-button .array-prev:hover {
    background-color: var(--white);
    color: var(--theme-2);
}

.array-button .array-next {
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--theme-2);
    box-shadow: var(---box-shadow);
    font-size: 18px;
    font-weight: 600;
    transition: all 0.4s ease-in-out;
}

@media (max-width: 575px) {
    .array-button .array-next {
        width: 45px;
        height: 45px;
        line-height: 45px;
    }
}

.array-button .array-next:hover {
    background-color: var(--theme-2);
    color: var(--white);
}

.mt-10 {
    margin-top: 10px;
}

@media (max-width: 575px) {
    br {
        display: none;
    }
}


/* background */

.bg-cover {
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position: center;
}

.nice-select {
    background-color: transparent;
    border: transparent;
    float: initial;
    overflow: initial;
    height: initial;
    padding: 0;
    display: inline-flex;
    align-items: center;
    line-height: 150%;
    width: 100%;
    border: none;
}

.nice-select:focus,
.nice-select:hover {
    border-color: transparent;
}

.nice-select::after {
    height: 10px;
    width: 10px;
    right: 15px;
    top: initial;
    border-color: var(--border);
    border-bottom: 2px solid var(--header);
    border-right: 2px solid var(--header);
}

.nice-select .list {
    width: initial;
    background-color: var(--theme);
    box-shadow: none;
    overflow: initial;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
    width: 100%;
    top: 100%;
    padding: 0;
    max-height: 50vh;
    overflow-x: auto;
}

.nice-select .list::-webkit-scrollbar {
    width: 2px;
    opacity: 1;
    display: block;
}

.nice-select .list::-webkit-scrollbar-button,
.nice-select .list::-webkit-scrollbar-thumb {
    background: var(--header);
}

.nice-select .option {
    background-color: transparent;
    font-size: 16px;
    line-height: 150%;
    padding: 4px 5px;
    min-height: initial;
    font-weight: 500;
}

.nice-select .option:hover,
.nice-select .option:focus,
.nice-select .option.selected.focus {
    background-color: transparent;
}

.nice-select .current {
    font-weight: 500;
    color: var(--header);
}

.head-color {
    color: var(--header);
}

.footer-bg {
    background-color: var(--header);
}

.background-black {
    background-color: var(--black) !important;
}

.bg-white {
    background-color: var(--white) !important;
}

.theme-bg {
    background-color: var(--theme);
}

.theme-bg-2 {
    background-color: var(--theme-2) !important;
}

.box-shadow {
    box-shadow: var(---box-shadow);
}

.mt-50 {
    margin-top: 50px;
}

@media (max-width: 767px) {
    .mt-50 {
        margin-top: 30px;
    }
}

@media (max-width: 575px) {
    .mt-50 {
        margin-top: 20px;
    }
}

.pt-80 {
    padding-top: 80px;
}

.pb-80 {
    padding-bottom: 80px;
}

.theme-bg {
    background-color: #202426;
}

.mt-30 {
    margin-top: 30px;
}

.border-none {
    border: none !important;
}

.volunter-items {
    margin-top: 30px;
}

.volunter-items .volunter-image {
    position: relative;
}

.volunter-items .volunter-image img {
    width: 100%;
    height: 100%;
}

.volunter-items .volunter-image::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(0deg, #222328 0%, rgba(34, 35, 40, 0) 100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

.volunter-items .volunter-image .social-icon {
    position: absolute;
    bottom: 32%;
    left: 50%;
    transform: translateX(-50%);
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

.volunter-items .volunter-image .social-icon a {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 16px;
    display: block;
    background: transparent;
    color: var(--white);
    border-radius: 50%;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    text-align: center;
    border: 1px solid var(--white);
}

.volunter-items .volunter-image .social-icon a:hover {
    background-color: var(--theme-2);
    border: 1px solid transparent;
}

.volunter-items .volunter-image .volunter-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: var(--white);
    padding: 30px 20px;
}

.volunter-items .volunter-image .volunter-content h3 {
    margin-bottom: 5px;
}

.volunter-items .volunter-image .volunter-content h3 a:hover {
    color: var(--theme-2);
}

.volunter-items .volunter-image:hover::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    opacity: 1;
    visibility: visible;
}

.volunter-items .volunter-image:hover .social-icon {
    opacity: 1;
    visibility: visible;
}

.team-card-items {
    margin-top: 30px;
}

.team-card-items .team-image {
    position: relative;
}

.team-card-items .team-image img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.team-card-items .team-image .team-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px 20px;
}

.team-card-items .team-image .team-content h3 {
    margin-bottom: 5px;
}

.team-card-items .team-image .team-content h3 a:hover {
    color: var(--theme);
}

.team-card-items .team-image .team-content .social-profile {
    position: absolute;
    right: 20px;
    bottom: 30px;
    content: "";
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    z-index: 2;
    display: inline-block;
    overflow: hidden;
    cursor: pointer;
}

.team-card-items .team-image .team-content .social-profile ul {
    transform: translateY(100px);
    transition: all 0.6s ease-in-out;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
}

.team-card-items .team-image .team-content .social-profile ul li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    display: block;
    background: var(--theme-2);
    color: var(--white);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    text-align: center;
    margin: 0 auto;
    border-radius: 5px;
    margin-bottom: 10px;
}

.team-card-items .team-image .team-content .social-profile ul li a:hover {
    background-color: var(--header);
    color: var(--white);
}

.team-card-items .team-image .team-content .social-profile .plus-btn {
    z-index: 2;
    cursor: pointer;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    display: inline-block;
    background: var(--theme-2);
    color: var(--white);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-radius: 5px;
}

.team-card-items .team-image .team-content .social-profile .plus-btn:hover {
    background-color: var(--header);
    color: var(--white);
}

.team-card-items .team-image .team-content .social-profile:hover ul {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.single-team-items {
    overflow: hidden;
    margin-top: 30px;
}

.single-team-items .team-image {
    position: relative;
    overflow: hidden;
}

@media (max-width: 575px) {
    .single-team-items .team-image {
        padding: 10px 20px;
    }
}

.single-team-items .team-image img {
    width: 100%;
    height: 100%;
}

.single-team-items .team-image .tema-main-area {
    position: absolute;
    bottom: -70px;
    left: 40px;
    right: 40px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease-in-out;
}

@media (max-width: 991px) {
    .single-team-items .team-image .tema-main-area {
        left: 20px;
        right: 20px;
    }
}

@media (max-width: 575px) {
    .single-team-items .team-image .tema-main-area {
        left: 10px;
        right: 10px;
    }
}

.single-team-items .team-image .tema-main-area .team-content {
    padding: 30px;
    border-radius: 10px;
    background-color: var(--white);
}

.single-team-items .team-image .tema-main-area .team-content h3 {
    margin-bottom: 5px;
}

.single-team-items .team-image .tema-main-area .team-content h3 a:hover {
    color: var(--theme-2);
}

.single-team-items .team-image .tema-main-area .team-content .social-profile {
    position: absolute;
    right: 8%;
    bottom: 35%;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    z-index: 2;
    display: inline-block;
}

.single-team-items .team-image .tema-main-area .team-content .social-profile a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 16px;
    display: block;
    background: var(--white);
    color: var(--header);
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.06);
    border-radius: 50%;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    opacity: 0;
    visibility: hidden;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 10px;
}

.single-team-items .team-image .tema-main-area .team-content .social-profile a:hover {
    background-color: var(--theme-2);
    color: var(--white);
}

.single-team-items .team-image .tema-main-area .team-content .social-profile .plus-btn {
    z-index: 2;
    cursor: pointer;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 16px;
    display: inline-block;
    background: #f5f5f5;
    color: var(--header);
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.single-team-items .team-image .tema-main-area .team-content .social-profile .plus-btn:hover {
    background-color: var(--theme-2);
    color: var(--white);
}

.single-team-items .team-image .tema-main-area .team-content .social-profile:hover a {
    opacity: 1;
    visibility: visible;
}

.single-team-items .team-image .tema-main-area .team-content .social-profile.active a {
    opacity: 1;
    visibility: visible;
}

.single-team-items .team-image .tema-main-area .team-content p {
    text-transform: uppercase;
    color: var(--theme-2);
    margin-bottom: 5px;
    font-weight: 500;
}

.single-team-items:hover .tema-main-area {
    bottom: 40px;
    opacity: 1;
    visibility: visible;
}

.team-details-wrapper .team-details-image img {
    width: 100%;
    height: 100%;
}

.team-details-wrapper .team-details-content {
    margin-left: 40px;
}

@media (max-width: 991px) {
    .team-details-wrapper .team-details-content {
        margin-left: 0;
    }
}

.team-details-wrapper .team-details-content .details-info {
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.team-details-wrapper .team-details-content .details-info h3 {
    margin-bottom: 5px;
}

.team-details-wrapper .team-details-content .details-info span {
    color: var(--text);
}

.team-details-wrapper .team-details-content .progress-wrap .pro-items {
    width: 100%;
}

.team-details-wrapper .team-details-content .progress-wrap .pro-items:not(:last-child) {
    margin-bottom: 30px;
}

.team-details-wrapper .team-details-content .progress-wrap .pro-items .pro-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.team-details-wrapper .team-details-content .progress-wrap .pro-items .pro-head .title {
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
}

.team-details-wrapper .team-details-content .progress-wrap .pro-items .pro-head .point {
    font-size: 16px;
    color: var(--black);
    font-weight: 600;
}

.team-details-wrapper .team-details-content .progress-wrap .pro-items .progress {
    height: 12px;
}

.team-details-wrapper .team-details-content .progress-wrap .pro-items .progress .progress-bar {
    background-color: var(--theme-2);
}

.team-details-wrapper .team-details-content .social-icon {
    margin-top: 40px;
}

.team-details-wrapper .team-details-content .social-icon span {
    font-size: 16px;
    font-weight: 700;
    color: var(--header);
    margin-right: 15px;
}

.team-details-wrapper .team-details-content .social-icon a {
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border: 1px solid var(--border);
    display: inline-block;
    color: var(--text);
    transition: all 0.4s ease-in-out;
}

.team-details-wrapper .team-details-content .social-icon a:not(:last-child) {
    margin-right: 5px;
}

.team-details-wrapper .team-details-content .social-icon a:hover {
    background-color: var(--theme-2);
    color: var(--white);
    border: 1px solid transparent;
}

.team-details-wrapper .team-single-history .title {
    border-bottom: 1px solid var(--border);
    padding-bottom: 30px;
}

.team-details-wrapper .team-single-history h5 {
    font-weight: 500;
}

.team-details-wrapper .team-single-history h5 span {
    border: 1px solid var(--theme-2);
    color: var(--theme-2);
    font-size: 14px;
    font-weight: 400;
    padding: 6px 16px;
    border-radius: 16px;
    margin-left: 20px;
}

.faq-content {
    margin-right: 40px;
}

@media (max-width: 991px) {
    .faq-content {
        margin-right: 0;
    }
}

.faq-content .accordion-item {
    border: 0;
    margin-top: 20px;
    border-radius: 10px;
    background-color: var(--bg);
}

.faq-content .accordion-item .accordion-header .accordion-button {
    font-weight: 500;
    color: var(--header);
    letter-spacing: -0.2px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background-color: transparent;
    padding: 26px 40px;
    font-size: 18px;
}

.faq-content .accordion-item .accordion-header .accordion-button::after {
    content: "\f067";
    background: transparent;
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    transition: all 0.3s ease-in-out !important;
}

.faq-content .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
    content: "\f068";
    background: transparent;
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
}

.faq-content .accordion-item .accordion-collapse .accordion-body {
    padding-right: 50px;
    padding-top: 5px;
    padding-left: 40px;
}

.faq-image-items {
    position: relative;
}

.faq-image-items .faq-image {
    height: 305px;
}

.faq-image-items .faq-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-image-items .counter-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 50px 40px;
    background-color: var(--theme);
    text-align: center;
    z-index: 9999;
}

.faq-image-items .counter-box h2 {
    color: var(--white);
    font-size: 16px;
    line-height: 1;
}

.faq-image-items .counter-box h2 span {
    font-size: 60px;
}

.faq-image-items .counter-box p {
    color: var(--white);
    margin-top: 5px;
}

.faq-image-items-2 {
    max-width: 500px;
    position: relative;
    margin-left: 80px;
}

@media (max-width: 991px) {
    .faq-image-items-2 {
        margin-left: 0;
    }
}

.faq-image-items-2 .faq-img {
    width: 100%;
    height: 100%;
    clip-path: polygon(0 0, 100% 23%, 100% 100%, 0% 100%);
}

.faq-image-items-2 .faq-image-2 {
    position: absolute;
    top: -40px;
    right: -27%;
}

@media (max-width: 1600px) {
    .faq-image-items-2 .faq-image-2 {
        right: 0%;
        max-width: 210px;
    }
}

@media (max-width: 991px) {
    .faq-image-items-2 .faq-image-2 {
        top: 0;
        right: 0;
    }
}

@media (max-width: 991px) {
    .faq-image-items-2 .faq-image-2 {
        max-width: 200px;
    }
}

@media (max-width: 575px) {
    .faq-image-items-2 .faq-image-2 {
        right: 10px;
        max-width: 150px;
    }
}

.faq-image-items-2 .faq-image-2 img {
    border-radius: 20px;
    border: 10px solid var(--white);
    box-shadow: var(---box-shadow);
    width: 100%;
    height: 100%;
}

.faq-image-items-2 .faq-image-3 {
    position: absolute;
    bottom: -10%;
    left: -20%;
}

@media (max-width: 991px) {
    .faq-image-items-2 .faq-image-3 {
        bottom: 0;
        left: 0;
    }
}

@media (max-width: 575px) {
    .faq-image-items-2 .faq-image-3 {
        bottom: 0;
        left: 0;
        max-width: 130px;
    }
}

.faq-image-items-2 .faq-image-3 img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: 10px solid var(--white);
    box-shadow: var(---box-shadow);
}

.faq-wrapper {
    margin-top: 32px;
    margin-bottom: 55px;
}

.single-faq-card {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 60px 45px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.single-faq-card::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: #000;
    opacity: 0.6;
    z-index: -1;
}

.single-faq-card .icon {
    width: 120px;
    height: 120px;
    line-height: 120px;
    margin: 0 auto;
    display: inline-block;
    background-color: #fff;
    border-radius: 50%;
    text-align: center;
    margin-bottom: 30px;
}

.single-faq-card h3 {
    color: #fff;
    margin-bottom: 10px;
}

.single-faq-card p {
    color: #b1b5b7;
}

.single-faq-card a {
    width: 60px;
    height: 60px;
    line-height: 60px;
    margin: 0 auto;
    display: inline-block;
    background-color: #1A685B;
    border-radius: 50%;
    text-align: center;
    margin-top: 20px;
    color: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.cta-video-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cta-video-wrapper .video-play-btn .video-btn {
    width: 120px;
    height: 120px;
    line-height: 120px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--theme-2);
    display: inline-block;
    color: var(--white);
}

@media (max-width: 767px) {
    .cta-video-wrapper .video-play-btn .video-btn {
        width: 80px;
        height: 80px;
        line-height: 80px;
    }
}

@media (max-width: 575px) {
    .cta-video-wrapper .video-play-btn .video-btn {
        width: 75px;
        height: 75px;
        line-height: 75px;
    }
}

.cta-video-wrapper .video-play-btn .ripple::before,
.cta-video-wrapper .video-play-btn .ripple::after {
    width: 120px;
    height: 120px;
}

@media (max-width: 767px) {
    .cta-video-wrapper .video-play-btn .ripple::before,
    .cta-video-wrapper .video-play-btn .ripple::after {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 575px) {
    .cta-video-wrapper .video-play-btn .ripple::before,
    .cta-video-wrapper .video-play-btn .ripple::after {
        width: 75px;
        height: 75px;
    }
}

.cta-video-wrapper .video-play-btn .video-text {
    color: var(--white);
    margin-left: 30px;
}

@media (max-width: 991px) {
    .cta-video-wrapper {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
        text-align: center;
    }
}

.cta-subscribe-form .form-clt {
    position: relative;
}

.cta-subscribe-form .form-clt input {
    outline: none;
    border: none;
    width: 100%;
    font-size: 14px;
    background-color: #272c2e;
    padding: 18px 40px 18px 60px;
    color: var(--text);
}

.cta-subscribe-form .form-clt .icon {
    position: absolute;
    left: 30px;
    top: 17px;
    color: var(--theme-3);
}

.cta-subscribe-form .form-clt .theme-btn {
    font-size: 14px;
    border-radius: 0;
    padding: 23.5px 25px;
    font-weight: 500;
    transition: all 0.4s ease-in-out;
}

.cta-subscribe-form .form-clt .theme-btn::before {
    background-color: var(--white);
}

.cta-subscribe-form .form-clt .theme-btn:hover {
    color: var(--header);
}

.cta-video-section-2 {
    position: relative;
    z-index: 9;
}

.cta-video-section-2::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: #202426;
    opacity: 0.7;
    z-index: -1;
}

.gallery-section .container-fluid {
    padding: 0 125px;
}

@media (max-width: 1600px) {
    .gallery-section .container-fluid {
        padding: 0 50px;
    }
}

@media (max-width: 1199px) {
    .gallery-section .container-fluid {
        padding: 0 30px;
    }
}

.gallery-wrappper {
    display: flex;
    align-items: center;
    gap: 30px;
}

@media (max-width: 1199px) {
    .gallery-wrappper {
        flex-wrap: wrap;
        justify-content: center;
    }
}

.gallery-wrappper .gallery-image {
    position: relative;
}

.gallery-wrappper .gallery-image::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--theme-2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

.gallery-wrappper .gallery-image img {
    width: 100%;
    height: 100%;
}

.gallery-wrappper .gallery-image .gallery-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

.gallery-wrappper .gallery-image .gallery-content h4 {
    color: var(--white);
}

.gallery-wrappper .gallery-image .gallery-content i {
    font-size: 28px;
}

.gallery-wrappper .gallery-image:hover::before {
    opacity: 0.8;
    visibility: visible;
}

.gallery-wrappper .gallery-image:hover .gallery-content {
    opacity: 1;
    visibility: visible;
}

.cta-banner {
    position: relative;
    z-index: 9;
}

.cta-banner::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--bg);
    z-index: -1;
    height: 50%;
}

.cta-banner-wrapper {
    position: relative;
    z-index: 9;
}

@media (max-width: 991px) {
    .cta-banner-wrapper {
        justify-content: center;
        text-align: center;
        padding: 80px 40px;
    }
}

.cta-banner-wrapper::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    opacity: 0.4;
    background-color: #202426;
}

.cta-banner-wrapper .button-items {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 991px) {
    .cta-banner-wrapper .button-items {
        justify-content: center;
    }
}

@media (max-width: 470px) {
    .cta-banner-wrapper .button-items {
        flex-wrap: wrap;
    }
}

.cta-banner-wrapper .button-items .theme-btn {
    border-radius: 0;
    background-color: var(--theme-3);
}

.cta-banner-wrapper .button-items .theme-btn i {
    margin-right: 10px;
}

.cta-banner-wrapper .button-items .theme-btn.transparent-btn {
    background-color: transparent;
    border: 2px solid var(--white);
}

.cta-banner-wrapper .button-items .theme-btn.transparent-btn:hover {
    border: 2px solid transparent;
}

.cta-banner-section-3 {
    background-color: var(--theme-2);
}

.cta-banner-wrapper-3 {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

@media (max-width: 991px) {
    .cta-banner-wrapper-3 {
        flex-wrap: wrap;
        gap: 30px;
    }
}

.cta-banner-wrapper-3 .newsletter-items {
    width: 50%;
}

@media (max-width: 991px) {
    .cta-banner-wrapper-3 .newsletter-items {
        width: 100%;
    }
}

.cta-banner-wrapper-3 .newsletter-items .form-clt {
    position: relative;
}

.cta-banner-wrapper-3 .newsletter-items .form-clt input {
    position: relative;
    padding: 22px 30px;
    border: none;
    outline: none;
    background-color: var(--white);
    border: none;
    width: 100%;
    font-size: 16px;
    color: var(--text);
    border-radius: 5px;
}

@media (max-width: 767px) {
    .cta-banner-wrapper-3 .newsletter-items .form-clt input {
        padding: 14px 30px;
    }
}

@media (max-width: 575px) {
    .cta-banner-wrapper-3 .newsletter-items .form-clt input {
        padding: 14px 25px;
    }
}

.cta-banner-wrapper-3 .newsletter-items .form-clt input::placeholder {
    color: var(--text);
}

.cta-banner-wrapper-3 .newsletter-items .form-clt .theme-btn {
    padding: 20px 30px;
    position: absolute;
    top: 8px;
    right: 7px;
    background-color: var(--theme-2);
}

@media (max-width: 1199px) {
    .cta-banner-wrapper-3 .newsletter-items .form-clt .theme-btn {
        width: initial;
    }
}

@media (max-width: 767px) {
    .cta-banner-wrapper-3 .newsletter-items .form-clt .theme-btn {
        width: initial;
        padding: 20px 30px;
        top: 3px;
        right: 3px;
    }
}

@media (max-width: 575px) {
    .cta-banner-wrapper-3 .newsletter-items .form-clt .theme-btn {
        padding: 18px 25px;
    }
}

.testimonial-card-item {
    padding: 40px 30px;
    background-color: var(--white);
    border-radius: 10px;
    margin-top: 30px;
}

@media (max-width: 767px) {
    .testimonial-card-item {
        text-align: center;
    }
}

@media (max-width: 575px) {
    .testimonial-card-item {
        padding: 30px 25px;
    }
}

.testimonial-card-item .star {
    margin-bottom: 20px;
}

.testimonial-card-item .star i {
    color: #FFA31A;
}

.testimonial-card-item p {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}

@media (max-width: 575px) {
    .testimonial-card-item p {
        font-size: 16px;
    }
}

.testimonial-card-item .client-info {
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 767px) {
    .testimonial-card-item .client-info {
        justify-content: center;
    }
}

.testimonial-card-item .client-info .client-img {
    width: 80px;
    height: 80px;
}

@media (max-width: 767px) {
    .testimonial-card-item .client-info .content {
        text-align: left;
    }
}

.testimonial-card-item .client-info .content span {
    font-size: 16px;
    font-weight: 400;
}

.single-testimonial-style-2 .single-testimonial-items-2 {
    background-color: #F8F8F8;
    padding: 40px 55px;
    margin-top: 30px;
    transition: all 0.4s ease-in-out;
}

@media (max-width: 575px) {
    .single-testimonial-style-2 .single-testimonial-items-2 {
        padding: 35px 25px;
    }
}

.single-testimonial-style-2 .single-testimonial-items-2 .ratting-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.single-testimonial-style-2 .single-testimonial-items-2 .ratting-items .client-ratting ul {
    margin-top: 5px;
    display: flex;
    align-items: center;
}

.single-testimonial-style-2 .single-testimonial-items-2 .ratting-items .client-ratting ul li i {
    color: var(--theme-2);
}

.single-testimonial-style-2 .single-testimonial-items-2 .text {
    font-size: 20px;
    position: relative;
    margin-left: 25px;
}

.single-testimonial-style-2 .single-testimonial-items-2 .text::before {
    position: absolute;
    content: "";
    left: -25px;
    top: -10px;
    background-image: url(../../assets/img/testimonial/comma.png);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
}

.single-testimonial-style-2 .single-testimonial-items-2 .client-info {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
}

@media (max-width: 575px) {
    .single-testimonial-style-2 .single-testimonial-items-2 .client-info {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
        margin-top: 25px;
    }
}

.single-testimonial-style-2 .single-testimonial-items-2 .client-info .image {
    width: 85px;
    height: 85px;
    line-height: 78px;
    border-radius: 50%;
    border: 1px solid var(--theme-2);
    text-align: center;
}

@media (max-width: 575px) {
    .single-testimonial-style-2 .single-testimonial-items-2 .client-info .content {
        text-align: center;
    }
}

.single-testimonial-style-2 .single-testimonial-items-2:hover {
    background-color: var(--white);
    box-shadow: 0px 10px 60px rgba(167, 167, 167, 0.25);
}

.testimonial-section-4 {
    position: relative;
}

.testimonial-section-4::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: #121516;
    opacity: 0.7;
}

.brand-image {
    padding: 30px 40px;
    transition: all 0.3s ease-in-out;
}

.brand-image img {
    filter: grayscale(1);
    transition: all 0.3s;
}

.brand-image:hover,
.brand-image.active {
    box-shadow: 0px 16px 32px 0px rgba(183, 186, 187, 0.2);
    background-color: #fff;
}

.brand-image:hover img,
.brand-image.active img {
    filter: grayscale(0);
}

.title-wrap {
    text-align: center;
    margin-bottom: 50px;
}

.title-wrap p {
    display: inline-block;
    padding: 13px 58px;
    font-weight: 700;
    color: var(--white);
    background-color: var(--theme-2);
    text-transform: capitalize;
    border-radius: 30px;
}

.event-single-items {
    overflow: hidden;
}

.event-single-items .event-image {
    height: 385px;
    width: 385px;
    position: relative;
    z-index: 9;
}

.event-single-items .event-image::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: #202426;
    opacity: 0.4;
    z-index: -1;
}

.event-single-items .event-image .event-content {
    padding: 30px;
    position: absolute;
    bottom: -79px;
    left: 0;
    transition: all 0.4s ease-in-out;
}

.event-single-items .event-image .event-content .sub-content {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 20px;
}

.event-single-items .event-image .event-content .sub-content .event-date {
    width: 70px;
    height: 70px;
    text-align: center;
    padding-top: 15px;
    text-transform: capitalize;
    background-color: var(--theme);
    color: var(--white);
}

.event-single-items .event-image .event-content .sub-content .event-date span {
    display: block;
    font-size: 40px;
    font-weight: 700;
}

.event-single-items .event-image .event-content .sub-content .event-date.color-2 {
    background-color: #1A685B;
}

.event-single-items .event-image .event-content .sub-content .event-date.color-3 {
    background-color: #9238a4;
}

.event-single-items .event-image .event-content .sub-content .event-date.color-4 {
    background-color: #f86048;
}

.event-single-items .event-image .event-content .sub-content .event-date.color-5 {
    background-color: #202426;
}

.event-single-items .event-image .event-content .sub-content .event-title .event-cat {
    font-weight: 700;
    font-size: 12px;
    line-height: 1;
    color: var(--text);
}

.event-single-items .event-image .event-content .sub-content .event-title h4 a {
    color: var(--white);
}

.event-single-items .event-image .event-content .sub-content .event-title h4 a:hover {
    color: var(--theme);
}

.event-single-items .event-image .event-content .post-date {
    display: flex;
    align-items: center;
    gap: 30px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.event-single-items .event-image .event-content .post-date li {
    color: var(--white);
}

.event-single-items .event-image .event-content .post-date li i {
    margin-right: 5px;
}

.event-single-items:hover .event-image .event-content {
    bottom: 0;
}

.event-box-items {
    margin-top: 30px;
    padding: 50px;
    position: relative;
    z-index: 1;
}

.event-box-items::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: -1;
    background-color: var(--white);
    transition: all 0.4s ease-in-out;
}

.event-box-items .cat-name a {
    padding: 9px 20px;
    display: inline-block;
    background-color: var(--theme-2);
    color: var(--white);
    margin-bottom: 20px;
    border-radius: 30px;
    line-height: 1;
}

.event-box-items h3 {
    margin-top: 15px;
    margin-bottom: 15px;
}

.event-box-items p i {
    color: var(--theme-2);
    margin-right: 5px;
}

.event-box-items .buy-ticket {
    color: var(--theme-2);
    display: inline-block;
    margin-top: 15px;
    font-size: 14px;
    font-weight: 600;
}

.event-box-items .buy-ticket i {
    margin-right: 5px;
}

.event-box-items:hover::before {
    opacity: 0.9;
    background: #202426;
}

.event-box-items:hover h3 a {
    color: var(--white);
}

.event-box-items:hover span {
    color: var(--white);
}

.event-box-items:hover p {
    color: var(--white);
}

.event-box-items-2 {
    margin-top: 30px;
    box-shadow: var(---box-shadow);
}

.event-box-items-2 .event-image img {
    width: 100%;
    height: 100%;
}

.event-box-items-2 .event-content {
    padding: 30px 30px;
}

.event-box-items-2 .event-content ul {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

@media (max-width: 1199px) {
    .event-box-items-2 .event-content ul {
        gap: 15px;
    }
}

.event-box-items-2 .event-content ul li i {
    color: var(--theme-2);
    margin-right: 5px;
}

.event-box-items-2 .event-content h3 {
    margin-bottom: 10px;
}

.event-box-items-2 .event-content h3 a:hover {
    color: var(--theme-2);
}

.event-box-items-2 .event-content .theme-btn {
    margin-top: 30px;
}

.event-box-items-2 .event-content .theme-btn::before {
    background-color: var(--theme-2);
}

.event-section-4 .container-fluid {
    padding: 0 100px;
}

@media (max-width: 1399px) {
    .event-section-4 .container-fluid {
        padding: 0 20px;
    }
}

.event-card-items {
    margin-top: 30px;
    display: flex;
    align-items: center;
    background-color: var(--white);
    box-shadow: var(---box-shadow);
}

@media (max-width: 1399px) {
    .event-card-items {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
        text-align: center;
        padding-top: 30px;
    }
    .event-card-items br {
        display: none;
    }
}

.event-card-items .event-image img {
    width: 100%;
    height: auto;
}

.event-card-items .event-content {
    padding: 30px;
}

@media (max-width: 1399px) {
    .event-card-items .event-content {
        padding-top: 0;
    }
}

.event-card-items .event-content ul {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

@media (max-width: 1399px) {
    .event-card-items .event-content ul {
        justify-content: center;
    }
}

@media (max-width: 1199px) {
    .event-card-items .event-content ul {
        gap: 15px;
    }
}

.event-card-items .event-content ul li i {
    color: var(--theme-2);
    margin-right: 5px;
}

.event-card-items .event-content h3 {
    margin-bottom: 10px;
}

.event-card-items .event-content h3 a:hover {
    color: var(--theme-2);
}

.event-card-items .event-content .link-btn {
    margin-top: 20px;
}

.event-card-items .event-content .link-btn:hover {
    color: var(--theme-2);
}

.event-card-main-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}

@media (max-width: 1199px) {
    .event-card-main-items {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
    }
}

.event-card-main-items:not(:last-child) {
    border-bottom: 1px solid var(--border);
    padding-bottom: 30px;
}

.event-card-main-items .event-card-items-2 {
    display: flex;
    align-items: center;
    gap: 30px;
}

@media (max-width: 991px) {
    .event-card-main-items .event-card-items-2 {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
}

.event-card-main-items .event-card-items-2 .event-image {
    position: relative;
}

.event-card-main-items .event-card-items-2 .event-image .event-time-address {
    position: absolute;
    top: 20px;
    left: 20px;
}

.event-card-main-items .event-card-items-2 .event-image .event-time-address span {
    display: inline-block;
    line-height: 1;
    font-size: 12px;
    padding: 11px 20px;
    font-weight: 500;
    border-radius: 30px;
    background-color: #f86048;
    color: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin-right: 5px;
}

.event-card-main-items .event-card-items-2 .event-image .event-time-address span i {
    margin-right: 10px;
}

.event-card-main-items .event-card-items-2 .event-image .event-time-address span:nth-child(2) {
    background-color: var(--theme-3);
}

.event-card-main-items .event-card-items-2 .event-content-itmes .list-items {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

@media (max-width: 1199px) {
    .event-card-main-items .event-card-items-2 .event-content-itmes .list-items {
        gap: 15px;
    }
}

@media (max-width: 991px) {
    .event-card-main-items .event-card-items-2 .event-content-itmes .list-items {
        justify-content: center;
        text-align: left;
    }
}

.event-card-main-items .event-card-items-2 .event-content-itmes .list-items ul li:not(:last-child) {
    margin-bottom: 10px;
}

.event-card-main-items .event-card-items-2 .event-content-itmes .list-items ul li i {
    margin-right: 5px;
    color: var(--theme-2);
}

.event-card-main-items .event-card-items-2 .event-content-itmes .event-content h3 {
    margin-bottom: 10px;
}

.event-card-main-items .event-card-items-2 .event-content-itmes .event-content h3 a:hover {
    color: var(--theme-2);
}

.event-card-main-items .theme-btn {
    background-color: var(--bg);
    color: var(--text);
}

.event-card-main-items .theme-btn::before {
    background-color: var(--theme);
}

.event-card-main-items .theme-btn:hover {
    color: var(--white);
}

.event-tab-header .nav {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: center;
}

@media (max-width: 575px) {
    .event-tab-header .nav {
        gap: 15px;
    }
}

.event-tab-header .nav .nav-link {
    text-align: center;
    padding: 19px 38px;
    line-height: 1;
    background-color: var(--bg);
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    text-transform: capitalize;
    color: var(--text);
    transition: all 0.3s ease-in-out;
}

@media (max-width: 991px) {
    .event-tab-header .nav .nav-link {
        padding: 14px 45px;
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .event-tab-header .nav .nav-link {
        padding: 12px 20px;
        font-size: 14px;
    }
}

.event-tab-header .nav .nav-link.active {
    position: relative;
    background-color: var(--theme);
    color: var(--white);
}

.event-tab-header .nav .nav-link.active::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--theme);
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    margin: 0 auto;
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.event-details-wrapper .event-fetaured-thumb {
    margin-bottom: 20px;
}

.event-details-wrapper .event-fetaured-thumb img {
    width: 100%;
    height: 100%;
}

.event-details-wrapper .event-details-contents p {
    margin-bottom: 20px;
    line-height: 28px;
}

.event-details-wrapper .event-details-contents .wp-block-quote {
    -webkit-box-shadow: 0px 16px 32px 0px rgba(7, 28, 31, 0.06);
    box-shadow: 0px 16px 32px 0px rgba(7, 28, 31, 0.06);
    padding: 30px 107px;
    padding-left: 150px;
    position: relative;
    margin-bottom: 40px;
    margin-top: 40px;
    display: block;
    position: relative;
}

@media (max-width: 1199px) {
    .event-details-wrapper .event-details-contents .wp-block-quote {
        padding: 30px 50px;
        padding-left: 100px;
    }
}

@media (max-width: 767px) {
    .event-details-wrapper .event-details-contents .wp-block-quote {
        padding: 30px;
        padding-left: 30px;
    }
}

.event-details-wrapper .event-details-contents .wp-block-quote::before {
    position: absolute;
    top: 50px;
    left: 55px;
    content: "\f10d";
    font-family: "Font Awesome 5 Pro";
    font-weight: 700;
    color: #00aa55;
    font-size: 60px;
}

@media (max-width: 767px) {
    .event-details-wrapper .event-details-contents .wp-block-quote::before {
        display: none;
    }
}

.event-details-wrapper .event-details-contents .wp-block-quote::after {
    position: absolute;
    bottom: 10px;
    right: 30px;
    width: 114px;
    height: 90px;
    content: "";
    background: url(../img/event/quote-gray.png) no-repeat;
    z-index: -1;
}

.event-details-wrapper img {
    width: 100%;
    height: 100%;
}

@media (min-width: 992px) {
    .event-details-wrapper .event-details-sidebar {
        margin-top: -160px;
        z-index: 2;
        margin-right: 29px;
    }
}

.event-details-wrapper .event-details-sidebar .sidebar-title {
    margin-bottom: 30px;
}

.event-details-wrapper .event-details-sidebar .single-event-sidebar {
    -webkit-box-shadow: 0px 16px 32px 0px rgba(7, 28, 31, 0.06);
    box-shadow: 0px 16px 32px 0px rgba(7, 28, 31, 0.06);
    border-top: 4px solid #1A685B;
    padding: 40px 40px 50px;
    padding-right: 50px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 40px;
    background-color: #fff;
}

.event-details-wrapper .event-details-sidebar .single-event-sidebar .event-address-info .single-address-info {
    overflow: hidden;
    margin-top: 18px;
    width: 106%;
}

.event-details-wrapper .event-details-sidebar .single-event-sidebar .event-address-info .single-address-info .icon {
    float: left;
    overflow: hidden;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 18px;
    color: #F84D43;
    background-color: #fff0ee;
    border-radius: 50px;
    margin-right: 20px;
}

.event-details-wrapper .event-details-sidebar .single-event-sidebar .event-address-info .theme-btn {
    margin-top: 30px;
}

.event-details-wrapper .event-details-sidebar .single-event-sidebar .special-guest-list .single-guest-info {
    overflow: hidden;
    margin-top: 20px;
}

.event-details-wrapper .event-details-sidebar .single-event-sidebar .special-guest-list .single-guest-info .profile-img {
    float: left;
    overflow: hidden;
    width: 70px;
    height: 70px;
    line-height: 70px;
    background-color: #fff0ee;
    border-radius: 50px;
    margin-right: 20px;
}

.event-details-wrapper .event-details-sidebar .event-map-wrap iframe {
    width: 100%;
    height: 290px;
}

.news-box-items {
    border: 2px solid #f6f6f6;
    margin-top: 30px;
}

.news-box-items .news-image {
    height: 320px;
}

.news-box-items .news-content {
    padding: 40px;
}

@media (max-width: 575px) {
    .news-box-items .news-content {
        padding: 30px;
    }
}

.news-box-items .news-content .post-list {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 10px;
}

@media (max-width: 1199px) {
    .news-box-items .news-content .post-list {
        flex-wrap: wrap;
        gap: 20px;
    }
}

.news-box-items .news-content .post-list li i {
    margin-right: 5px;
}

.news-box-items .news-content h3 {
    margin-bottom: 10px;
}

.news-box-items .news-content h3 a:hover {
    color: var(--theme-2);
}

.news-right-area {
    margin-left: 40px;
}

@media (max-width: 1199px) {
    .news-right-area {
        margin-left: 0;
    }
}

.news-right-area .single-news-items {
    display: flex;
    align-items: center;
    margin-top: 35px;
}

@media (max-width: 991px) {
    .news-right-area .single-news-items {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
        text-align: center;
    }
}

.news-right-area .single-news-items:not(:last-child) {
    padding-bottom: 35px;
    border-bottom: 1px solid #eee;
}

.news-right-area .single-news-items .post-date {
    width: 140px;
    height: 140px;
    float: left;
    overflow: hidden;
    text-align: center;
    background-color: var(--theme);
    color: var(--white);
    margin-right: 30px;
    padding-top: 50px;
}

.news-right-area .single-news-items .post-date span {
    font-size: 80px;
    display: block;
    font-weight: 700;
    padding-bottom: 20px;
}

.news-right-area .single-news-items .post-date.color-2 {
    background-color: var(--theme-3);
}

.news-right-area .single-news-items .post-date.color-3 {
    background-color: var(--theme-2);
}

.news-right-area .single-news-items .post-content {
    flex-basis: 65%;
}

@media (max-width: 991px) {
    .news-right-area .single-news-items .post-content {
        flex-basis: 100%;
    }
}

.news-right-area .single-news-items .post-content .post-list {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 5px;
    flex-wrap: wrap;
    gap: 10px;
}

@media (max-width: 991px) {
    .news-right-area .single-news-items .post-content .post-list {
        justify-content: center;
    }
}

.news-right-area .single-news-items .post-content .post-list li i {
    margin-right: 5px;
}

.news-right-area .single-news-items .post-content h3 {
    margin-bottom: 10px;
}

.news-right-area .single-news-items .post-content h3 a:hover {
    color: var(--theme-2);
}

.news-card-items {
    margin-top: 30px;
}

.news-card-items .news-image {
    height: 270px;
}

.news-card-items .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card-items .news-content {
    padding: 30px;
    background-color: var(--white);
    box-shadow: var(---box-shadow);
    margin: -50px 20px 0;
    position: relative;
    z-index: 9;
}

.news-card-items .news-content span i {
    color: var(--theme-2);
    margin-right: 5px;
}

.news-card-items .news-content h3 {
    margin-top: 10px;
    margin-bottom: 15px;
}

.news-card-items .news-content h3 a:hover {
    color: var(--theme-2);
}

.news-card-items .news-content .link-btn {
    margin-top: 10px;
}

.news-card-items .news-content .link-btn:hover {
    color: var(--theme-2);
}

.news-card-items-2 {
    margin-top: 30px;
}

.news-card-items-2 .news-image {
    position: relative;
}

.news-card-items-2 .news-image img {
    width: 100%;
    height: 100%;
}

.news-card-items-2 .news-image .post-date {
    padding: 12px 24px;
    background-color: var(--theme-2);
    position: absolute;
    bottom: 40px;
    left: 0;
}

.news-card-items-2 .news-image .post-date h3 {
    font-weight: 700;
    font-size: 24px;
    color: var(--white);
    line-height: 1;
}

.news-card-items-2 .news-image .post-date h3 span {
    font-weight: 400;
    font-size: 16px;
    color: var(--white);
}

.news-card-items-2 .news-content {
    padding: 30px;
    background-color: var(--white);
    box-shadow: var(---box-shadow);
    position: relative;
    z-index: 9;
    margin-right: 40px;
    margin-top: -40px;
}

.news-card-items-2 .news-content ul {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 15px;
}

@media (max-width: 1199px) {
    .news-card-items-2 .news-content ul {
        gap: 20px;
    }
}

.news-card-items-2 .news-content ul li {
    font-size: 14px;
    font-weight: 500;
}

.news-card-items-2 .news-content ul li i {
    color: var(--theme-2);
    margin-right: 5px;
}

.news-card-items-2 .news-content h4 {
    font-weight: 600;
    margin-bottom: 10px;
}

.news-card-items-2 .news-content h4 a:hover {
    color: var(--theme-2);
}

.news-card-items-2 .news-content .link-btn:hover {
    color: var(--theme-2);
}

.single-news-items-2 {
    margin-top: 30px;
}

.single-news-items-2 .news-image {
    height: 480px;
    position: relative;
}

@media (max-width: 575px) {
    .single-news-items-2 .news-image {
        height: 400px;
    }
}

.single-news-items-2 .news-image::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(99, 92, 92, 0)), to(#292930));
    background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #292930 100%);
}

.single-news-items-2 .news-image .post-date {
    position: absolute;
    top: 40px;
    left: 40px;
    background-color: var(--white);
    padding: 10px 24px;
}

.single-news-items-2 .news-image .post-date span {
    color: var(--header);
    font-weight: 600;
    font-size: 18px;
}

.single-news-items-2 .news-image .news-content {
    padding: 40px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 9;
}

.single-news-items-2 .news-image .news-content .icon {
    margin-bottom: 20px;
}

.single-news-items-2 .news-image .news-content .icon span {
    color: var(--white);
}

.single-news-items-2 .news-image .news-content .icon i {
    color: var(--white);
    margin-right: 5px;
}

.single-news-items-2 .news-image .news-content h4 a {
    color: var(--white);
}

.single-news-items-2 .news-image .news-content h4 a:hover {
    color: var(--theme);
}

.single-news-items-2 .news-image .news-content .post-list {
    background-color: rgba(255, 255, 255, 0.0784313725);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    transition: all 0.4s ease-in-out;
}

@media (max-width: 575px) {
    .single-news-items-2 .news-image .news-content .post-list {
        padding: 14px 20px;
    }
}

.single-news-items-2 .news-image .news-content .post-list li {
    color: var(--white);
}

.single-news-items-2 .news-image .news-content .post-list li span {
    margin-left: 5px;
}

.single-news-items-2 .news-image .news-content .post-list li a i {
    color: var(--white);
    font-size: 18px;
    transition: all 0.4s ease-in-out;
}

.single-news-items-2:hover .news-image .news-content .post-list {
    background-color: var(--theme-2);
}

.border-wrap {
    border: 2px solid #ededed;
}

.blog-wrapper h1,
.blog-wrapper h2,
.blog-wrapper h3,
.blog-wrapper h4,
.blog-wrapper h5,
.blog-wrapper h6 {
    font-weight: 500;
}

.blog-wrapper .border-wrap {
    padding: 50px;
}

@media (max-width: 767px) {
    .blog-wrapper .border-wrap {
        padding: 50px 15px;
    }
}

.blog-wrapper .border-wrap .single-blog-post .post-content {
    padding: 0px;
}

.blog-wrapper .single-blog-post {
    margin-bottom: 40px;
    position: relative;
}

.blog-wrapper .single-blog-post .video__button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.blog-wrapper .single-blog-post .video__button .video__btn__wrp {
    margin-bottom: 0;
}

.blog-wrapper .single-blog-post.post-details.format-quote .post-content {
    position: relative;
    background: transparent;
    border: none;
}

.blog-wrapper .single-blog-post.post-details .post-content {
    border: none;
}

.blog-wrapper .single-blog-post.post-details .post-content img {
    margin-top: 20px;
    margin-bottom: 20px;
}

.blog-wrapper .single-blog-post.post-details .post-content h1 {
    font-size: 36px;
    line-height: 1.4;
}

.blog-wrapper .single-blog-post.post-details .post-content h1,
.blog-wrapper .single-blog-post.post-details .post-content h2,
.blog-wrapper .single-blog-post.post-details .post-content h3,
.blog-wrapper .single-blog-post.post-details .post-content h4,
.blog-wrapper .single-blog-post.post-details .post-content h5,
.blog-wrapper .single-blog-post.post-details .post-content h6 {
    margin-top: 10px;
}

.blog-wrapper .single-blog-post.post-details .post-content table {
    margin-top: 20px;
}

@media (max-width: 767px) {
    .blog-wrapper .single-blog-post.post-details .post-content h1 {
        font-size: 28px;
    }
    .blog-wrapper .single-blog-post.post-details .post-content h3 {
        font-size: 20px;
    }
}

.blog-wrapper .single-blog-post.post-details blockquote,
.blog-wrapper .single-blog-post.post-details .wp-block-quote {
    background-color: var(--theme-3);
    color: var(--white);
    font-size: 26px;
    line-height: 1.4;
    font-family: "Chelsea Market", system-ui;
    font-weight: 400;
    padding: 60px;
    text-align: center;
    margin: 40px 0px;
    position: relative;
    z-index: 1;
}

.blog-wrapper .single-blog-post.post-details blockquote a,
.blog-wrapper .single-blog-post.post-details .wp-block-quote a {
    color: var(--white);
}

.blog-wrapper .single-blog-post.post-details blockquote a:hover,
.blog-wrapper .single-blog-post.post-details .wp-block-quote a:hover {
    color: var(--theme-2);
}

@media (max-width: 767px) {
    .blog-wrapper .single-blog-post.post-details blockquote,
    .blog-wrapper .single-blog-post.post-details .wp-block-quote {
        padding: 30px 15px;
        font-size: 18px;
        line-height: 1.5;
    }
}

.blog-wrapper .single-blog-post.post-details blockquote::before,
.blog-wrapper .single-blog-post.post-details .wp-block-quote::before {
    right: 30px;
    font-size: 110px;
    line-height: 1;
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    content: "\f10d";
    bottom: -20px;
    color: var(--white);
    z-index: -1;
    opacity: 0.1;
    font-weight: 900;
}

.blog-wrapper .single-blog-post.format-video .post-featured-thumb,
.blog-wrapper .single-blog-post.category-video-post .post-featured-thumb {
    z-index: 1;
    position: relative;
}

.blog-wrapper .single-blog-post.format-video .post-featured-thumb::before,
.blog-wrapper .single-blog-post.category-video-post .post-featured-thumb::before {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    content: "";
    background-color: #282835;
    opacity: 0.3;
    z-index: -1;
}

.blog-wrapper .single-blog-post.quote-post .post-content,
.blog-wrapper .single-blog-post.format-quote .post-content {
    position: relative;
    background-color: var(--theme-3);
    background-image: url("../img/quotepost.png");
    border: none;
}

.blog-wrapper .single-blog-post.quote-post .quote-content,
.blog-wrapper .single-blog-post.format-quote .quote-content {
    overflow: hidden;
}

@media (max-width: 585px) {
    .blog-wrapper .single-blog-post.quote-post .quote-content,
    .blog-wrapper .single-blog-post.format-quote .quote-content {
        text-align: center;
        font-size: 24px;
    }
}

.blog-wrapper .single-blog-post.quote-post .quote-content .icon,
.blog-wrapper .single-blog-post.format-quote .quote-content .icon {
    font-size: 70px;
    line-height: 80px;
    float: left;
    overflow: hidden;
    margin-right: 30px;
}

@media (max-width: 585px) {
    .blog-wrapper .single-blog-post.quote-post .quote-content .icon,
    .blog-wrapper .single-blog-post.format-quote .quote-content .icon {
        float: none;
        margin-bottom: 10px;
        margin-right: 0;
        font-size: 50px;
        line-height: 60px;
    }
}

.blog-wrapper .single-blog-post.quote-post .quote-content .quote-text,
.blog-wrapper .single-blog-post.format-quote .quote-content .quote-text {
    overflow: hidden;
}

.blog-wrapper .single-blog-post.quote-post .quote-content h2,
.blog-wrapper .single-blog-post.format-quote .quote-content h2 {
    margin-top: -2px;
    font-size: 30px;
    color: var(--white);
}

.blog-wrapper .single-blog-post.quote-post .quote-content .post-meta span,
.blog-wrapper .single-blog-post.format-quote .quote-content .post-meta span {
    color: var(--white);
}

.blog-wrapper .single-blog-post:last-child {
    margin-bottom: 0;
}

.blog-wrapper .single-blog-post .post-featured-thumb {
    height: 450px;
    width: 100%;
    position: relative;
    margin-bottom: -2px;
}

@media (max-width: 991px) {
    .blog-wrapper .single-blog-post .post-featured-thumb {
        height: 280px;
    }
}

@media (max-width: 767px) {
    .blog-wrapper .single-blog-post .post-featured-thumb {
        height: 230px;
    }
}

.blog-wrapper .single-blog-post .post-featured-thumb .video-play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.blog-wrapper .single-blog-post .post-featured-thumb .video-play-btn .play-video {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 18px;
    background-color: var(--theme-2);
    display: inline-block;
    text-align: center;
    color: var(--white);
}

.blog-wrapper .single-blog-post .post-featured-thumb .video-play-btn .ripple::before {
    width: 80px;
    height: 80px;
}

.blog-wrapper .single-blog-post .post-content {
    padding: 50px;
    border: 2px solid #ededed;
    overflow: hidden;
    box-sizing: border-box;
}

.blog-wrapper .single-blog-post .post-content h2 {
    line-height: 1.4;
    font-size: 30px;
    font-weight: 500;
}

.blog-wrapper .single-blog-post .post-content h2 a:hover {
    color: var(--theme-2);
}

.blog-wrapper .single-blog-post .post-content p {
    font-size: 16px;
}

@media (max-width: 767px) {
    .blog-wrapper .single-blog-post .post-content {
        padding: 50px 10px;
    }
}

@media (max-width: 414px) {
    .blog-wrapper .single-blog-post .post-content h2 {
        font-size: 22px;
    }
}

.blog-wrapper .single-blog-post .post-content .post-cat a {
    color: var(--white);
    display: inline-block;
    background-color: var(--theme-2);
    padding: 14px 18px 12px;
    line-height: 1;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease-in-out;
    margin-bottom: 20px;
    text-transform: capitalize;
    font-family: "League Spartan", sans-serif;
}

@media (max-width: 767px) {
    .blog-wrapper .single-blog-post .post-content .post-cat a {
        font-size: 12px;
    }
}

.blog-wrapper .single-blog-post .post-content .post-cat a:hover {
    background-color: var(--header);
}

.blog-wrapper .single-blog-post .post-content ul {
    margin-bottom: 0;
    list-style-type: disc;
    margin-top: 30px;
}

.blog-wrapper .single-blog-post .post-content ul ol {
    margin-bottom: 0;
}

.blog-wrapper .single-blog-post .post-content ul ul {
    margin-bottom: 0;
}

.blog-wrapper .single-blog-post .post-content ul li {
    line-height: 1.5;
    margin-top: 10px;
    list-style-type: disc;
    color: var(--text);
    position: relative;
    font-size: 18px;
    padding-left: 30px;
}

.blog-wrapper .single-blog-post .post-content ul li::before {
    position: absolute;
    left: 0;
    top: 0;
    font-family: "Font Awesome 5 Pro";
    content: "\f00c";
    color: var(--theme);
}

.blog-wrapper .single-blog-post .post-content ol {
    margin-bottom: 0;
    list-style-type: decimal;
}

.blog-wrapper .single-blog-post .post-content ol ul {
    margin-bottom: 0;
}

.blog-wrapper .single-blog-post .post-content ol ol {
    margin-bottom: 0;
}

.blog-wrapper .single-blog-post .post-content ol li {
    line-height: 1.5;
    margin-top: 10px;
    list-style-type: decimal;
}

.blog-wrapper .single-blog-post .post-content p {
    margin-top: 15px;
}

.blog-wrapper .single-blog-post .post-content .post-meta {
    margin-top: 10px;
}

.blog-wrapper .single-blog-post .post-content .post-meta span {
    color: #202426;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    display: inline-block;
    margin-right: 25px;
}

@media (max-width: 767px) {
    .blog-wrapper .single-blog-post .post-content .post-meta span {
        font-size: 13px;
    }
}

.blog-wrapper .single-blog-post .post-content .post-meta span i {
    margin-right: 5px;
}

.blog-wrapper .single-blog-post .post-content .author-info {
    overflow: hidden;
}

.blog-wrapper .single-blog-post .post-content .author-info .author-img {
    height: 40px;
    width: 40px;
    line-height: 40px;
    border-radius: 50%;
    background-color: #f2f2f2;
    margin-right: 15px;
    float: left;
    overflow: hidden;
    background-position: center;
    background-size: cover;
}

@media (max-width: 767px) {
    .blog-wrapper .single-blog-post .post-content .author-info .author-img {
        margin-right: 5px;
    }
}

.blog-wrapper .single-blog-post .post-content .author-info h5 {
    display: inline-block;
    line-height: 1;
    font-size: 16px;
    margin-top: 9px;
    font-weight: 500;
}

.blog-wrapper .single-blog-post .post-content .author-info h5 a:hover {
    color: var(--theme-2);
}

@media (max-width: 767px) {
    .blog-wrapper .single-blog-post .post-content .author-info h5 {
        font-size: 14px;
    }
}

.blog-wrapper .single-blog-post .post-content .post-link a {
    font-weight: 600;
}

.blog-wrapper .single-blog-post .post-content .post-link a:hover {
    color: var(--theme-2);
}

@media (max-width: 767px) {
    .blog-wrapper .single-blog-post .post-content .post-link a {
        font-size: 14px;
    }
}

.blog-wrapper .single-blog-post .post-content .post-link a i {
    margin-right: 5px;
}

@media (max-width: 767px) {
    .blog-wrapper .single-blog-post .post-content .post-link a i {
        margin-right: 3px;
    }
}

@media (min-width: 991px) {
    .main-sidebar {
        margin-left: 20px;
    }
}

@media (max-width: 991px) {
    .main-sidebar {
        margin-top: 40px;
    }
}

.main-sidebar .single-sidebar-widget {
    border: 2px solid #ededed;
    box-sizing: border-box;
    padding: 30px;
    margin-bottom: 40px;
}

.main-sidebar .single-sidebar-widget ul {
    padding-left: 0;
}

.main-sidebar .single-sidebar-widget ul>li {
    margin-bottom: 10px;
}

.main-sidebar .single-sidebar-widget ul>li a {
    font-size: 18px;
    text-transform: capitalize;
}

.main-sidebar .single-sidebar-widget ul>li a:hover {
    color: var(--theme-2);
}

.main-sidebar .single-sidebar-widget ul ul {
    padding-left: 20px;
}

.main-sidebar .single-sidebar-widget ul ul li {
    margin-top: 5px;
}

.main-sidebar .single-sidebar-widget:last-child {
    margin-bottom: 0;
}

.main-sidebar .single-sidebar-widget .wid-title {
    margin-bottom: 25px;
    position: relative;
    padding-left: 45px;
}

.main-sidebar .single-sidebar-widget .wid-title h3 {
    font-weight: 500;
    font-size: 22px;
}

.main-sidebar .single-sidebar-widget .wid-title::before {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    height: 4px;
    width: 18px;
    border-radius: 5px;
    position: absolute;
    background-color: var(--theme-2);
}

.main-sidebar .single-sidebar-widget .wid-title::after {
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    height: 4px;
    width: 4px;
    border-radius: 50%;
    position: absolute;
    background-color: var(--theme-2);
}

.main-sidebar .single-sidebar-widget .social-link a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background-color: #f2f2f2;
    font-size: 14px;
    margin-right: 5px;
    margin-bottom: 5px;
}

.main-sidebar .single-sidebar-widget .social-link a:hover {
    background-color: var(--theme-2);
    color: var(--white);
}

.search_widget form {
    width: 100%;
    position: relative;
}

.search_widget form input {
    background-color: #f8f8f8;
    font-size: 15px;
    padding: 20px;
    width: 100%;
    border: none;
    color: var(--header);
}

.search_widget form button {
    position: absolute;
    right: 0;
    top: 0;
    width: 70px;
    font-size: 18px;
    height: 100%;
    background-color: var(--theme-2);
    color: var(--white);
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.search_widget form button:hover {
    background-color: var(--header);
}

.popular-posts .single-post-item,
.popular_posts .single-post-item {
    overflow: hidden;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #f2f2f2;
}

.popular-posts .single-post-item:last-child,
.popular_posts .single-post-item:last-child {
    margin-bottom: 0;
    border: none;
    padding-bottom: 0;
}

.popular-posts .single-post-item .thumb,
.popular_posts .single-post-item .thumb {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #f2f2f2;
    float: left;
    overflow: hidden;
    margin-right: 20px;
}

.popular-posts .single-post-item .post-content,
.popular_posts .single-post-item .post-content {
    overflow: hidden;
}

.popular-posts .single-post-item .post-content h5,
.popular_posts .single-post-item .post-content h5 {
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    margin-bottom: 0;
    text-transform: capitalize;
}

.popular-posts .single-post-item .post-content h5 a:hover,
.popular_posts .single-post-item .post-content h5 a:hover {
    color: var(--theme-2);
}

.popular-posts .single-post-item .post-content .post-date,
.popular_posts .single-post-item .post-content .post-date {
    margin-top: 5px;
    color: var(--theme-2);
    font-weight: 700;
    font-size: 14px;
}

.popular-posts .single-post-item .post-content .post-date i,
.popular_posts .single-post-item .post-content .post-date i {
    margin-right: 7px;
}

.widget_categories ul li {
    display: block;
}

.widget_categories ul li:last-child a {
    margin-bottom: 0;
}

.widget_categories ul li a {
    position: relative;
    background: #f8f8f8;
    padding: 17px 30px;
    line-height: 1;
    font-size: 14px;
    display: block;
    margin-bottom: 12px;
    font-weight: 500;
    transition: all 0.4s ease-in-out;
}

.widget_categories ul li a:hover {
    color: var(--theme-2);
}

.widget_categories ul li a span {
    position: absolute;
    width: 60px;
    line-height: 55px;
    height: 100%;
    content: "";
    background-color: var(--theme-2);
    right: 0;
    top: 0;
    text-align: center;
    color: var(--white);
}

.tagcloud a {
    display: inline-block;
    padding: 11px 26px;
    line-height: 1;
    font-size: 14px;
    font-weight: 700;
    background: #f8f8f8;
    margin-right: 5px;
    text-transform: capitalize;
    margin-bottom: 8px;
    transition: all 0.4s ease-in-out;
}

.tagcloud a:last-child {
    margin-right: 0;
}

.tagcloud a:hover {
    background-color: var(--theme-2);
    color: var(--white);
}

.widget_categories ul li {
    display: block;
    margin-bottom: 10px;
}

p.sticky-label {
    position: absolute;
    right: 0;
    background: var(--theme-2);
    color: var(--white);
    padding: 10px 40px;
    z-index: -1;
    top: 0;
    font-weight: 700;
}

.page-nav-wrap ul li {
    display: inline-block;
}

.page-nav-wrap ul li .page-numbers {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background: #f6f6f6;
    font-weight: 700;
    transition: all 0.3s ease-in-out;
    margin: 0 2px;
}

.page-nav-wrap ul li .page-numbers.current {
    background-color: var(--theme-2);
    color: var(--white);
}

@media (max-width: 767px) {
    .page-nav-wrap ul li .page-numbers {
        margin-top: 10px;
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 14px;
    }
}

.page-nav-wrap ul li .page-numbers i {
    margin-top: 2px;
}

.page-nav-wrap ul li .page-numbers:hover {
    background-color: var(--theme-2);
    color: var(--white);
}

.social-share a {
    margin-left: 10px;
    transition: all 0.4s ease-in-out;
}

.social-share a:hover {
    color: var(--theme-2);
}

.tag-share-wrap {
    padding-bottom: 50px;
}

.tag-share-wrap h4 {
    margin-bottom: 25px;
}

@media (max-width: 767px) {
    .tag-share-wrap h4 {
        margin-bottom: 10px;
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .tag-share-wrap .tagcloud {
        margin-bottom: 20px;
    }
}

.comments-section-wrap {
    overflow: hidden;
}

.comments-heading h3,
.related-post-wrap h3,
.comment-form-wrap h3 {
    font-size: 26px;
}

@media (max-width: 767px) {
    .comments-heading h3,
    .related-post-wrap h3,
    .comment-form-wrap h3 {
        font-size: 20px;
    }
}

.comments-item-list .single-comment-item {
    margin-top: 30px;
}

.comments-item-list .single-comment-item ul {
    margin-bottom: 15px;
}

.comments-item-list .single-comment-item p,
.comments-item-list .single-comment-item span {
    font-size: 16px;
}

.comments-item-list .single-comment-item .author-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    float: left;
    overflow: hidden;
    margin-right: 30px;
}

@media (max-width: 991px) {
    .comments-item-list .single-comment-item .author-img {
        width: 80px;
        height: 80px;
        margin-right: 20px;
    }
}

@media (max-width: 767px) {
    .comments-item-list .single-comment-item .author-img {
        width: 70px;
        height: 70px;
        margin-right: 15px;
    }
}

@media (max-width: 585px) {
    .comments-item-list .single-comment-item .author-img {
        float: none;
        margin-bottom: 20px;
    }
}

.comments-item-list .single-comment-item .author-info-comment {
    overflow: auto;
    padding-bottom: 25px;
    border-bottom: 1px solid #e2e2e2;
}

.comments-item-list .single-comment-item .author-info-comment .info {
    position: relative;
}

.comments-item-list .single-comment-item .author-info-comment .info .minimal-btn {
    padding: 7px 18px;
    font-size: 14px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    color: #727475;
    border: 1px solid #ebebeb;
    background: transparent;
    transition: all 0.4s ease-in-out;
    box-shadow: inherit;
}

@media (max-width: 767px) {
    .comments-item-list .single-comment-item .author-info-comment .info .minimal-btn {
        font-size: 12px;
    }
}

.comments-item-list .single-comment-item .author-info-comment .info .minimal-btn i {
    margin-right: 5px;
}

.comments-item-list .single-comment-item .author-info-comment .info .minimal-btn:hover {
    background: var(--theme-2);
    border: 1px solid var(--theme-2);
    color: var(--white);
}

.comments-item-list .single-comment-item .author-info-comment .info .minimal-btn:hover a {
    color: var(--white);
}

.comments-item-list .single-comment-item .author-info-comment .info h5 {
    margin-bottom: 5px;
}

@media (max-width: 767px) {
    .comments-item-list .single-comment-item .author-info-comment .info h5 {
        font-size: 16px;
    }
}

.comments-item-list .single-comment-item .author-info-comment span {
    color: var(--theme-2);
    font-weight: 500;
}

.comments-item-list .single-comment-item .author-info-comment .theme-btn {
    padding: 7px 18px;
    font-size: 14px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

@media (max-width: 767px) {
    .comments-item-list .single-comment-item .author-info-comment .theme-btn {
        font-size: 12px;
    }
}

.comments-item-list .single-comment-item .author-info-comment .theme-btn i {
    margin-right: 5px;
}

.comments-item-list .single-comment-item .author-info-comment .theme-btn:hover a {
    color: var(--white);
}

.comments-item-list .single-comment-item .author-info-comment .comment-text {
    margin-top: 15px;
}

.comment-form {
    background-color: #f0f0f0;
    padding: 50px;
    width: 100%;
    margin-top: 30px;
}

@media (max-width: 767px) {
    .comment-form {
        padding: 30px;
    }
}

@media (max-width: 585px) {
    .comment-form {
        padding: 30px 15px;
    }
}

.comment-form label {
    margin-bottom: 4px;
}

.comment-form input,
.comment-form textarea {
    margin-bottom: 20px;
    padding: 20px 30px;
    line-height: 1;
    font-size: 16px;
    width: 100%;
    border: none;
    color: var(--header);
}

@media (max-width: 585px) {
    .comment-form input,
    .comment-form textarea {
        padding: 15px;
    }
}

.comment-form textarea {
    height: 200px;
    line-height: 1.3;
    border: none;
}

@media (max-width: 767px) {
    .comment-form textarea {
        height: 120px;
    }
}

.comment-form .theme-btn {
    display: inline-block;
    line-height: 1;
    text-transform: capitalize;
    padding: 20px 60px;
    transition: all 0.3s ease-in-out;
    margin-bottom: 0;
    margin-top: 20px;
    background-color: var(--theme-2);
    border-radius: 0;
}

@media (max-width: 767px) {
    .comment-form .theme-btn {
        padding: 20px 40px;
    }
}

@media (max-width: 585px) {
    .comment-form .theme-btn {
        padding: 15px 40px;
        font-size: 14px;
    }
}

.comment-form .theme-btn i {
    margin-right: 10px;
}

.comment ul {
    list-style-type: disc;
}

.comment ul ol {
    margin-bottom: 0;
}

.comment ul li {
    line-height: 1.5;
    margin-top: 10px;
    list-style-type: disc;
}

.comment ol ul {
    margin-bottom: 0;
}

.comment ol ol {
    margin-bottom: 0;
}

.comment ol li {
    line-height: 1.5;
    margin-top: 10px;
}

.site_info_widget .single-contact-info {
    overflow: auto;
    margin-bottom: 20px;
}

.site_info_widget .single-contact-info span {
    display: block;
    color: var(--theme-2);
}

.site_info_widget .single-contact-info .icon {
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: var(--white);
    background-color: var(--theme-3);
    float: left;
    text-align: center;
    overflow: hidden;
    font-size: 16px;
    margin-right: 20px;
}

.site_info_widget .single-contact-info:nth-child(2n) .icon {
    background-color: var(--theme-2);
}

.site_info_widget .single-contact-info:nth-child(3n) .icon {
    background-color: var(--theme-3);
}

.site_info_widget .social-link {
    margin-top: 35px;
}

.site_info_widget .social-link a {
    margin-right: 8px !important;
}

.alignleft {
    float: left;
    margin-right: 1.5em;
    margin-bottom: 1.5em;
}

.promo-wrapper {
    position: relative;
    margin-top: -220px;
    z-index: 9;
}

.promo-wrapper .support-promo-box .promo-bg {
    height: 210px;
    width: 100%;
}

.promo-wrapper .support-promo-box .promo-details {
    padding: 60px 30px;
    background: var(--theme);
    position: relative;
    z-index: 1;
    text-align: center;
}

.promo-wrapper .support-promo-box .promo-details::before {
    position: absolute;
    top: 36%;
    right: 20px;
    content: "\f21e";
    font-family: "Font Awesome 5 Pro";
    font-size: 110px;
    font-weight: 300;
    opacity: 0.07;
    color: #fff;
    z-index: -1;
}

.promo-wrapper .support-promo-box .promo-details span {
    color: var(--white);
}

.promo-wrapper .support-promo-box .promo-details h3 {
    font-size: 30px;
}

.promo-wrapper .support-promo-box .promo-details h3 a {
    color: var(--white);
}

.promo-wrapper .checkout-promo-box {
    background-color: var(--theme-2);
    padding: 60px 30px;
    text-align: center;
    height: 100%;
}

.promo-wrapper .checkout-promo-box .content {
    margin-top: 20px;
}

.promo-wrapper .checkout-promo-box .content span {
    color: var(--white);
}

.promo-wrapper .checkout-promo-box .content h3 {
    color: var(--white);
    font-size: 30px;
    margin-top: 5px;
    margin-bottom: 30px;
}

.promo-wrapper .subscribe-promo-box {
    padding: 60px 50px;
    background-color: var(--theme-3);
    text-align: center;
}

.promo-wrapper .subscribe-promo-box .icon {
    margin-bottom: 40px;
}

.promo-wrapper .subscribe-promo-box h3 {
    font-size: 30px;
    color: var(--white);
}

.promo-wrapper .subscribe-promo-box span {
    color: var(--white);
}

.promo-wrapper .subscribe-promo-box .mailchimp-form {
    margin-top: 30px;
    position: relative;
}

.promo-wrapper .subscribe-promo-box .mailchimp-form input {
    border: 0px;
    position: relative;
    height: 60px;
    line-height: 60px;
    border-radius: 30px;
    border: 2px solid var(--header);
    background: transparent;
    display: block;
    font-size: 14px;
    width: 100%;
    color: var(--header);
    padding-left: 30px;
}

.promo-wrapper .subscribe-promo-box .mailchimp-form input::placeholder {
    color: var(--header);
}

.promo-wrapper .subscribe-promo-box .mailchimp-form button {
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    font-size: 16px;
    line-height: 60px;
    position: absolute;
    text-align: center;
    border: none;
    border-radius: 30px;
    color: var(--white);
    background-color: var(--header);
    transition: all 0.3s ease-in-out;
}

.promo-wrapper .subscribe-promo-box .mailchimp-form button:hover {
    background-color: var(--theme-2);
}

.promo-wrapper .single-promo-box-items {
    padding: 50px;
    display: flex;
    gap: 30px;
    position: relative;
    z-index: 9;
}

@media (max-width: 991px) {
    .promo-wrapper .single-promo-box-items {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .promo-wrapper .single-promo-box-items {
        padding: 40px;
    }
}

@media (max-width: 575px) {
    .promo-wrapper .single-promo-box-items {
        padding: 30px;
    }
}

.promo-wrapper .single-promo-box-items::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: -1;
    background: #1A685B;
    opacity: 0.8;
}

.promo-wrapper .single-promo-box-items .content h3 {
    font-size: 30px;
    margin-bottom: 5px;
}

.promo-wrapper .single-promo-box-items .content h3 a {
    color: var(--white);
}

.promo-wrapper .single-promo-box-items .content p {
    color: var(--white);
    margin-bottom: 10px;
}

.promo-wrapper .single-promo-box-items .content .link-btn {
    color: var(--white);
}

.promo-wrapper .single-promo-box-items.style-2::before {
    background: #F84D43;
    opacity: 0.8;
}

.promo-wrapper.promo-style-2 {
    margin-top: -130px;
}

.promo-wrapper .single-causes-cat {
    background-color: var(--white);
    box-shadow: 0px 16px 32px 0px rgba(183, 186, 187, 0.2);
    padding: 38px 40px;
    text-align: center;
    transition: all 0.4s ease-in-out;
}

.promo-wrapper .single-causes-cat .icon {
    margin-bottom: 20px;
}

.promo-wrapper .single-causes-cat .icon img {
    transition: all 0.4s ease-in-out;
}

.promo-wrapper .single-causes-cat:hover {
    background-color: var(--theme-2);
}

.promo-wrapper .single-causes-cat:hover .icon img {
    filter: brightness(100);
}

.promo-wrapper .single-causes-cat:hover h6 {
    color: var(--white);
}

.promo-wrapper.style-3 {
    margin-top: -120px;
    margin-bottom: 13px;
}

.causes-box-items {
    margin-top: 30px;
    background-color: var(--white);
}

.causes-box-items .causes-image {
    height: 240px;
}

.causes-box-items .cause-content {
    padding: 30px;
}

.causes-box-items .cause-content .cause-meta {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
}

.causes-box-items .cause-content .cause-meta .cause-cat {
    display: inline-block;
    padding: 10px 20px;
    background-color: #f8f8f8;
    line-height: 1;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    transition: all 0.4s ease-in-out;
}

.causes-box-items .cause-content .cause-meta .cause-author {
    color: #727475;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

.causes-box-items .cause-content .cause-meta .cause-author i {
    margin-right: 7px;
    color: #4AC3CD;
}

.causes-box-items .cause-content h4 a:hover {
    color: var(--theme);
}

.causes-box-items .cause-content .cause-amount {
    font-size: 14px;
    line-height: 1;
}

.causes-box-items .cause-content .cause-amount .price-raised i {
    margin-right: 7px;
    color: #4AC3CD;
}

.causes-box-items .cause-content .cause-amount .price-raised span {
    position: relative;
    margin-right: 3px;
    font-weight: 700;
    color: var(--header);
}

.causes-box-items .cause-content .cause-amount .price-goal i {
    margin-right: 7px;
    color: var(--theme-2);
}

.causes-box-items .cause-content .cause-amount .price-goal span {
    position: relative;
    margin-right: 3px;
    font-weight: 700;
    color: var(--header);
}

.causes-box-items .cause-content .cause-amount .read-cause-link a {
    color: var(--text);
}

.causes-box-items .cause-content .progress {
    margin-bottom: 20px; 
}

.causes-box-items .cause-content .progress .progress-bar {
    background-color: var(--theme-2);
}

.causes-box-items:hover .cause-content .cause-meta {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
}

.causes-box-items:hover .cause-content .cause-meta .cause-cat {
    background-color: #49C3CD;
    color: #000;
}

.causes-wrapper {
    margin-right: -40%;
}

@media (max-width: 1199px) {
    .causes-wrapper {
        margin-right: 0;
    }
}

.causes-card-items {
    margin-top: 30px;
    box-shadow: 1px 1.464px 20px 0px rgba(14, 5, 1, 0.04);
    background-color: var(--white);
}

.causes-card-items .causes-image {
    position: relative;
}

.causes-card-items .causes-image img {
    width: 100%;
    height: 100%;
}

.causes-card-items .causes-image .post-cat {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: var(--theme-2);
    color: var(--white);
    padding: 10px 18px;
    display: inline-block;
    line-height: 1;
}

.causes-card-items .causes-content {
    padding: 30px;
}

.causes-card-items .causes-content h3 {
    margin-bottom: 5px;
}

.causes-card-items .causes-content h3 a:hover {
    color: var(--theme-2);
}

.causes-card-items .causes-content .progress {
    border-radius: 0;
    height: 8px;
}

.causes-card-items .causes-content .progress .progress-bar {
    background-color: var(--theme-2);
}

.causes-card-items .causes-content .progress-items {
    margin-bottom: 20px;
}

.causes-card-items .causes-content .progress-items .point {
    font-size: 16px;
    font-weight: 600;
    text-align: right;
    color: var(--header);
    display: block;
    margin-bottom: 5px;
}

.causes-card-items .causes-content .progress-items .progress-goals {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--header);
    margin-top: 10px;
}

.causes-card-items .causes-content .theme-btn {
    color: var(--header);
    font-weight: 600;
}

.causes-card-items .causes-content .theme-btn i {
    margin-right: 5px;
}

.causes-card-items .causes-content .theme-btn::before {
    background-color: var(--theme-2);
}

.causes-card-items .causes-content .theme-btn:hover {
    color: var(--white);
}

.causes-card-items.card-style-2 .causes-content .theme-btn {
    width: 100%;
    text-align: center;
}

.popular-causes-card-items {
    margin-top: 30px;
    background-color: var(--white);
    box-shadow: var(---box-shadow);
    padding: 35px;
}

@media (max-width: 991px) {
    .popular-causes-card-items .thumb {
        height: 500px;
    }
}

@media (max-width: 767px) {
    .popular-causes-card-items .thumb {
        height: 450px;
    }
}

@media (max-width: 575px) {
    .popular-causes-card-items .thumb {
        height: 350px;
    }
}

.popular-causes-card-items .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-causes-card-items .content {
    margin-left: 10px;
}

.popular-causes-card-items .content .progress-items {
    margin-bottom: 40px;
}

.popular-causes-card-items .content .progress-items .point {
    font-size: 16px;
    font-weight: 600;
    text-align: right;
    color: var(--header);
    display: block;
    margin-bottom: 15px;
}

.popular-causes-card-items .content .progress-items .progress-goals {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--header);
    margin-top: 10px;
}

.popular-causes-card-items .content .progress {
    border-radius: 0;
    height: 10px;
}

.popular-causes-card-items .content .progress .progress-bar {
    background-color: var(--theme-2);
}

.popular-causes-card-items .content h4 {
    margin-bottom: 15px;
}

.popular-causes-card-items .content h4 a:hover {
    color: var(--theme-2);
}

.popular-causes-card-items .content .theme-btn::before {
    background-color: var(--theme-2);
}

.cuases-tab-header .nav {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: center;
}

@media (max-width: 575px) {
    .cuases-tab-header .nav {
        gap: 15px;
    }
}

.cuases-tab-header .nav .nav-link {
    text-align: center;
    padding: 19px 38px;
    line-height: 1;
    background-color: var(--bg);
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    text-transform: capitalize;
    color: var(--text);
    transition: all 0.3s ease-in-out;
}

@media (max-width: 991px) {
    .cuases-tab-header .nav .nav-link {
        padding: 14px 45px;
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .cuases-tab-header .nav .nav-link {
        padding: 12px 20px;
        font-size: 14px;
    }
}

.cuases-tab-header .nav .nav-link.active {
    position: relative;
    background-color: var(--theme-3);
    color: var(--white);
}

.cuases-tab-header .nav .nav-link.active::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--theme-3);
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    margin: 0 auto;
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.causes-details-wrapper .details-image img {
    width: 100%;
    height: 100%;
}

.causes-details-wrapper .details-content {
    margin-top: 30px;
    margin-bottom: 50px;
}

.causes-details-wrapper .details-content .sub-text {
    color: var(--theme-2);
    font-size: 18px;
    font-weight: 500;
}

.causes-details-wrapper .details-content .sub-text i {
    margin-right: 5px;
}

.causes-details-wrapper .details-content h2 {
    font-size: 36px;
}

@media (max-width: 767px) {
    .causes-details-wrapper .details-content h2 {
        font-size: 30px;
    }
}

@media (max-width: 575px) {
    .causes-details-wrapper .details-content h2 {
        font-size: 26px;
    }
}

.causes-details-wrapper .details-content .progress-items {
    display: flex;
    align-items: center;
    gap: 50px;
}

@media (max-width: 1399px) {
    .causes-details-wrapper .details-content .progress-items {
        flex-wrap: wrap;
        gap: 20px;
    }
}

.causes-details-wrapper .details-content .progress-items .progress {
    width: 60%;
    margin-top: 20px;
    margin-bottom: 20px;
}

.causes-details-wrapper .details-content .progress-items .progress .progress-bar {
    background-color: var(--theme-2);
}

.causes-details-wrapper .details-content .progress-items .cause-amount {
    font-size: 14px;
    line-height: 1;
    gap: 20px;
    flex-basis: 40%;
}

@media (max-width: 1399px) {
    .causes-details-wrapper .details-content .progress-items .cause-amount {
        flex-basis: 100%;
    }
}

.causes-details-wrapper .details-content .progress-items .cause-amount .price-raised i {
    margin-right: 7px;
    color: var(--theme-3);
}

.causes-details-wrapper .details-content .progress-items .cause-amount .price-raised span {
    position: relative;
    margin-right: 3px;
    font-weight: 700;
    color: var(--header);
}

.causes-details-wrapper .details-content .progress-items .cause-amount .price-goal i {
    margin-right: 7px;
    color: var(--theme-2);
}

.causes-details-wrapper .details-content .progress-items .cause-amount .price-goal span {
    position: relative;
    margin-right: 3px;
    font-weight: 700;
    color: var(--header);
}

.causes-details-wrapper .details-content .give-form .donate-amount-buttons {
    margin-top: 15px;
    padding-bottom: 50px;
}

.causes-details-wrapper .details-content .give-form .donate-amount-buttons span {
    display: inline-block;
    background: #f8f8f8;
    padding: 19px 25px;
    line-height: 1;
    border-radius: 30px;
    font-weight: 700;
    text-transform: capitalize;
    margin-right: 5px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin-top: 15px;
    cursor: pointer;
    font-size: 18px;
}

.causes-details-wrapper .details-content .give-form .donate-amount-buttons span:hover {
    background-color: var(--theme-3);
    color: var(--white);
}

.causes-details-wrapper .details-content .give-form .give-payment-mode-select {
    padding-top: 40px;
    border-top: 1px solid #e5e5e5;
    padding-bottom: 50px;
}

.causes-details-wrapper .details-content .give-form .give-payment-mode-select .custom-control {
    margin-top: 20px;
    display: inline-block;
}

.causes-details-wrapper .details-content .give-form .give-payment-mode-select .custom-control:not(:last-child) {
    margin-right: 10px;
}

.causes-details-wrapper .details-content .give-form .give-purchase-form-wrap .single-personal-info label {
    color: #202426;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.causes-details-wrapper .details-content .give-form .give-purchase-form-wrap .single-personal-info input {
    width: 100%;
    background: transparent;
    line-height: 1;
    padding: .375rem 2.25rem .375rem .75rem;
    border: 1px solid #DEE2E6;
    color: #212529;
}

.causes-details-wrapper .details-content .give-form .give-purchase-form-wrap .donate-total-amount .give-donation-total-label {
    color: #202426;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.causes-details-wrapper .details-content .give-form .give-purchase-form-wrap .donate-total-amount .give-final-total-amount {
    background: #f8f8f8;
    line-height: 1;
    padding: 25px 30px;
    border: 0px;
    display: inline-block;
    width: 300px;
    font-weight: 700;
    color: #202426;
    margin-right: 15px;
}

.causes-details-wrapper .details-content .give-form .give-purchase-form-wrap .donate-total-amount .theme-btn {
    background: #1A685B;
    color: #fff;
    font-weight: 700;
    line-height: 1;
    padding: 25px 40px;
    border-radius: 0;
}

.causes-details-wrapper .details-content .give-form .give-purchase-form-wrap .donate-total-amount .theme-btn i {
    margin-right: 10px;
}

.causes-details-wrapper .details-content.style-2 .progress-items {
    justify-content: space-between;
}

.causes-details-wrapper .details-content.style-2 .progress-items .cause-amount {
    flex-basis: 22%;
}

@media (max-width: 1399px) {
    .causes-details-wrapper .details-content.style-2 .progress-items .cause-amount {
        flex-basis: 100%;
    }
}

.causes-details-wrapper .details-content.style-2 .donate-details-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.causes-details-wrapper .causes-contents {
    border-top: 1px solid #e5e5e5;
    padding-top: 40px;
}

.causes-details-wrapper .causes-contents p {
    margin-bottom: 20px;
    line-height: 28px;
}

.causes-details-wrapper .causes-contents b {
    font-weight: 700;
    color: #202426;
}

.causes-details-wrapper .causes-contents img {
    margin-bottom: 10px;
    border-radius: 10px;
    width: 100%;
    height: 100%;
}

.causes-details-wrapper .causes-contents h3 {
    margin-top: 30px;
    padding-bottom: 20px;
}

.causes-details-wrapper .causes-contents ul li {
    font-size: 16px;
    color: #727475;
    font-weight: 700;
    margin-top: 10px;
    padding-left: 40px;
    width: 50%;
    float: left;
    overflow: hidden;
    position: relative;
}

@media (max-width: 767px) {
    .causes-details-wrapper .causes-contents ul li {
        float: none;
    }
}

.causes-details-wrapper .causes-contents ul li::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "\f00c";
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    color: #1A685B;
}

.causes-details-wrapper .casues-sidebar-wrapper .single-sidebar-widgets {
    border: 2px solid #e8e9e9;
    padding: 40px;
    margin-bottom: 40px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
}

.causes-details-wrapper .casues-sidebar-wrapper .single-sidebar-widgets::before {
    position: absolute;
    left: -2px;
    width: 20px;
    height: 2px;
    content: "";
    top: 55px;
    background-color: #F84D43;
}

.causes-details-wrapper .casues-sidebar-wrapper .single-sidebar-widgets .widget-title {
    font-weight: 700;
    color: #202426;
    margin-bottom: 20px;
}

.causes-details-wrapper .casues-sidebar-wrapper .single-sidebar-widgets ul li {
    display: block;
}

.causes-details-wrapper .casues-sidebar-wrapper .single-sidebar-widgets ul li a {
    display: block;
    margin-bottom: 10px;
}

.causes-details-wrapper .casues-sidebar-wrapper .single-sidebar-widgets ul li a span {
    float: right;
}

.causes-details-wrapper .casues-sidebar-wrapper .single-sidebar-widgets ul li:hover a {
    color: var(--theme-2);
}

.causes-details-wrapper .casues-sidebar-wrapper .single-sidebar-widgets .single-cause-img {
    height: 200px;
    display: block;
    background-size: cover;
    background-position: top;
    width: 100%;
    margin-bottom: 20px;
}

.causes-details-wrapper .casues-sidebar-wrapper .sidebar-promo-widgets {
    padding: 110px 30px;
    position: relative;
    z-index: 1;
}

.causes-details-wrapper .casues-sidebar-wrapper .sidebar-promo-widgets::before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    background-color: #1A685B;
    opacity: 0.9;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.causes-details-wrapper .casues-sidebar-wrapper .sidebar-promo-widgets span {
    margin-bottom: 10px;
    line-height: 1;
    display: inline-block;
}

.causes-details-wrapper .casues-sidebar-wrapper .sidebar-promo-widgets h3 {
    color: var(--white);
    margin-bottom: 20px;
}

.causes-details-wrapper .casues-sidebar-wrapper .sidebar-promo-widgets .theme-btn {
    border: 1px solid var(--white);
    background-color: transparent;
}

.causes-details-wrapper .casues-sidebar-wrapper .sidebar-promo-widgets .theme-btn::before {
    background-color: var(--white);
}

.causes-details-wrapper .casues-sidebar-wrapper .sidebar-promo-widgets .theme-btn:hover {
    color: var(--header);
}

.contact-section {
    position: relative;
}

.contact-section .map-item {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
}

@media (max-width: 991px) {
    .contact-section .map-item {
        display: none;
    }
}

.contact-section .map-item .google-map iframe {
    width: 902px;
    height: 840px;
}

@media (max-width: 1440px){
    .contact-section .map-item .google-map iframe {
        width: 696px;
        height: 840px;
    }
}

@media (max-width: 1399px) {
    .contact-section .map-item .google-map iframe {
        width: 550px;
        height: 950px;
    }
}

@media (max-width: 1199px) {
    .contact-section .map-item .google-map iframe {
        width: 465px;
        height: 835px;
    }
}

.contact-right .form-clt {
    position: relative;
}

.contact-right .form-clt .icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    line-height: 32px;
    border-radius: 50%;
    background-color: var(--white);
    box-shadow: 0px 10px 20px 0px rgba(34, 34, 34, 0.08);
    text-align: center;
}

@media (max-width: 575px) {
    .contact-right .form-clt .icon {
        top: 15px;
    }
}

.contact-right .form-clt .icon i {
    color: var(--header);
    font-size: 14px;
}

.contact-right .form-clt input {
    width: 100%;
    outline: none;
    border: none;
    padding: 20px 25px;
    color: var(--header);
    background-color: rgb(245, 245, 245);
    font-size: 16px;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.4s ease-in-out;
}

@media (max-width: 991px) {
    .contact-right .form-clt input {
        font-size: 15px;
    }
}

@media (max-width: 575px) {
    .contact-right .form-clt input {
        font-size: 14px;
        padding: 15px 20px;
    }
}

.contact-right .form-clt .nice-select {
    background-color: rgb(245, 245, 245);
    font-size: 16px;
    font-weight: 500;
    border-radius: 10px;
    padding: 20px 25px;
}

.contact-right .form-clt .nice-select::after {
    height: 10px;
    width: 10px;
    right: 25px;
    border-color: var(--text);
    border-bottom: 2px solid var(--text);
    border-right: 2px solid var(--text);
}

.contact-right .form-clt .nice-select span {
    color: var(--text);
}

@media (max-width: 991px) {
    .contact-right .form-clt .nice-select {
        font-size: 15px;
    }
}

@media (max-width: 575px) {
    .contact-right .form-clt .nice-select {
        font-size: 14px;
        padding: 15px 20px;
    }
}

.contact-right .form-clt .nice-select .list {
    background-color: var(--white);
}

.contact-right .form-clt .nice-select .list li {
    border: none;
}

.contact-right .form-clt .nice-select .option {
    padding: 8px 10px;
}

.contact-right .form-clt-big textarea {
    padding: 20px 25px 105px;
    width: 100%;
    outline: none;
    color: var(--header);
    background-color: rgb(245, 245, 245);
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 10px;
}

@media (max-width: 1199px) {
    .contact-right .form-clt-big textarea {
        font-size: 15px;
    }
}

.contact-right .theme-btn {
    background-color: var(--theme-2);
}

@media (max-width: 991px) {
    .contact-wrapper-4 {
        margin-top: -80px;
    }
}

.single-contact-card {
    background-color: #f8f8f8;
    padding: 40px;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 585px) {
    .single-contact-card {
        padding: 30px;
    }
}

.single-contact-card:hover {
    background-color: var(--header);
}

.single-contact-card:hover .icon {
    color: #fff !important;
    background-color: var(--theme-3) !important;
}

.single-contact-card:hover .bottom-part .icon {
    color: var(--theme-3) !important;
    background-color: #fff !important;
}

.single-contact-card:hover p,
.single-contact-card:hover span,
.single-contact-card:hover h4 {
    color: #fff;
}

.single-contact-card .top-part {
    overflow: hidden;
}

.single-contact-card .top-part .icon {
    width: 70px;
    height: 70px;
    font-size: 20px;
    line-height: 70px;
    border-radius: 50%;
    background-color: #fff;
    text-align: center;
    float: left;
    color: var(--header);
    overflow: hidden;
    margin-right: 20px;
}

.single-contact-card .top-part .title {
    overflow: hidden;
}

.single-contact-card .bottom-part {
    margin-top: 25px;
    overflow: hidden;
}

.single-contact-card .bottom-part .icon {
    width: 50px;
    height: 50px;
    font-size: 14px;
    line-height: 50px;
    border-radius: 50%;
    background-color: #fff;
    text-align: center;
    float: right;
    overflow: hidden;
    margin-left: 20px;
}

.single-contact-card .bottom-part .info {
    display: inline-block;
    overflow: hidden;
}

.office-google-map-wrapper {
    margin-top: 50px;
}

.office-google-map-wrapper iframe {
    height: 550px;
    width: 100%;
}

.main-contact-form-items {
    background-color: var(--bg);
    padding: 70px;
}

@media (max-width: 767px) {
    .main-contact-form-items {
        padding: 60px 40px;
    }
}

@media (max-width: 575px) {
    .main-contact-form-items {
        padding: 50px 30px;
    }
}

.main-contact-form-items .title {
    margin-bottom: 40px;
}

.main-contact-form-items .title h2 {
    font-size: 36px;
    margin-bottom: 5px;
}

.main-contact-form-items .form-clt input,
.main-contact-form-items .form-clt textarea {
    padding: 18px 30px;
    border: none;
    outline: none;
    background-color: var(--white);
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
}

@media (max-width: 575px) {
    .main-contact-form-items .form-clt input,
    .main-contact-form-items .form-clt textarea {
        padding: 12px 20px;
    }
}

.main-contact-form-items .form-clt textarea {
    padding: 18px 30px 140px;
}

@media (max-width: 575px) {
    .main-contact-form-items .form-clt textarea {
        padding: 12px 20px 90px;
    }
}

.main-contact-form-items .form-clt::placeholder {
    color: var(--text);
}

.main-contact-form-items .theme-btn {
    border-radius: 0;
    background-color: var(--theme-2);
}

.footer-widgets-wrapper {
    padding: 90px 0 120px;
    position: relative;
    z-index: 9;
}

@media (max-width: 1199px) {
    .footer-widgets-wrapper {
        padding: 70px 0 100px;
    }
}

@media (max-width: 991px) {
    .footer-widgets-wrapper {
        padding: 50px 0 80px;
    }
}

.footer-widgets-wrapper .single-footer-widget {
    margin-top: 30px;
}

.footer-widgets-wrapper .single-footer-widget .widget-head {
    margin-bottom: 30px;
}

@media (max-width: 1199px) {
    .footer-widgets-wrapper .single-footer-widget .widget-head h4 {
        color: var(--header) !important;
    }
}

.footer-widgets-wrapper .single-footer-widget .footer-content .contact-info-area .contact-items {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-widgets-wrapper .single-footer-widget .footer-content .contact-info-area .contact-items:not(:last-child) {
    margin-bottom: 20px;
}

.footer-widgets-wrapper .single-footer-widget .footer-content .contact-info-area .contact-items .icon {
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: var(--white);
    background-color: var(--theme);
    text-align: center;
    overflow: hidden;
    font-size: 16px;
}

.footer-widgets-wrapper .single-footer-widget .footer-content .contact-info-area .contact-items .icon.color-2 {
    background-color: var(--theme-2);
}

.footer-widgets-wrapper .single-footer-widget .footer-content .contact-info-area .contact-items .icon.color-3 {
    background-color: var(--theme-3);
}

.footer-widgets-wrapper .single-footer-widget .footer-content .contact-info-area .contact-items .content h6 {
    font-weight: 400;
    font-family: "DM Sans", sans-serif;
    color: #adb7bc;
}

@media (max-width: 1199px) {
    .footer-widgets-wrapper .single-footer-widget .footer-content .contact-info-area .contact-items .content h6 {
        color: #727475;
    }
}

.footer-widgets-wrapper .single-footer-widget .footer-content .contact-info-area .contact-items .content h6 a {
    color: #adb7bc;
    display: block;
}

@media (max-width: 1199px) {
    .footer-widgets-wrapper .single-footer-widget .footer-content .contact-info-area .contact-items .content h6 a {
        color: #727475;
    }
}

.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon {
    margin-top: 40px;
    gap: 10px;
}

.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon a {
    background-color: #292e30;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
    transition: all 0.3s ease-in-out;
    text-align: center;
    display: inline-block;
    color: #adb7bc;
}

.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon a:hover {
    background-color: var(--theme);
    color: var(--white);
}

.footer-widgets-wrapper .single-footer-widget .special-menu {
    float: left;
    width: 50%;
    overflow: hidden;
}

.footer-widgets-wrapper .single-footer-widget .special-menu ul li:not(:last-child) {
    margin-bottom: 15px;
}

.footer-widgets-wrapper .single-footer-widget .special-menu ul li a {
    color: #727475;
    display: block;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    font-weight: 500;
    text-transform: capitalize;
}

.footer-widgets-wrapper .single-footer-widget .special-menu ul li a:hover {
    color: var(--theme-2);
    margin-left: 5px;
}

.footer-widgets-wrapper .single-footer-widget .list-area li:not(:last-child) {
    margin-bottom: 15px;
}

.footer-widgets-wrapper .single-footer-widget .list-area li a {
    color: #727475;
    display: block;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    font-weight: 500;
    text-transform: capitalize;
}

.footer-widgets-wrapper .single-footer-widget .list-area li a:hover {
    color: var(--theme-2);
    margin-left: 5px;
}

.footer-widgets-wrapper .single-footer-widget .popularspost-area .single-post-items {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-widgets-wrapper .single-footer-widget .popularspost-area .single-post-items:not(:last-child) {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border);
}

.footer-widgets-wrapper .single-footer-widget .popularspost-area .single-post-items .post-img {
    width: 80px;
    height: 80px;
}

.footer-widgets-wrapper .single-footer-widget .popularspost-area .single-post-items .post-content {
    flex-basis: 70%;
}

.footer-widgets-wrapper .single-footer-widget .popularspost-area .single-post-items .post-content span {
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
}

.footer-widgets-wrapper .single-footer-widget .popularspost-area .single-post-items .post-content span i {
    color: var(--theme-2);
    margin-right: 5px;
}

.footer-widgets-wrapper .single-footer-widget .popularspost-area .single-post-items .post-content h5 a:hover {
    color: var(--theme-2);
}

@media (max-width: 1199px) {
    .footer-widgets-wrapper.style-2 .single-footer-widget .widget-head h4 {
        color: var(--white) !important;
    }
}

.footer-widgets-wrapper.style-2 .single-footer-widget .footer-content p {
    color: #adb7bc;
}

.footer-widgets-wrapper.style-2 .single-footer-widget .footer-content .social-icon {
    margin-top: 30px;
    gap: 10px;
}

.footer-widgets-wrapper.style-2 .single-footer-widget .footer-content .social-icon a {
    background-color: #292e30;
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 14px;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
    text-align: center;
    display: inline-block;
    color: #adb7bc;
}

.footer-widgets-wrapper.style-2 .single-footer-widget .footer-content .social-icon a:hover {
    background-color: var(--theme-2);
    color: var(--white);
}

.footer-widgets-wrapper.style-2 .single-footer-widget .list-area li {
    transition: all 0.4s ease-in-out;
}

.footer-widgets-wrapper.style-2 .single-footer-widget .list-area li:not(:last-child) {
    margin-bottom: 15px;
}

.footer-widgets-wrapper.style-2 .single-footer-widget .list-area li a {
    color: #adb7bc;
}

.footer-widgets-wrapper.style-2 .single-footer-widget .list-area li a i {
    margin-right: 5px;
}

.footer-widgets-wrapper.style-2 .single-footer-widget .list-area li:hover {
    margin-left: 5px;
}

.footer-widgets-wrapper.style-2 .single-footer-widget .list-area li:hover a {
    color: var(--theme-2);
}

.footer-widgets-wrapper.style-2 .popularspost-area .single-post-items:not(:last-child) {
    border-bottom: none;
}

.footer-widgets-wrapper.style-2 .popularspost-area .single-post-items .post-content span {
    color: #adb7bc;
}

.footer-widgets-wrapper.style-2 .popularspost-area .single-post-items .post-content span i {
    color: var(--theme-2);
    margin-right: 5px;
}

.footer-widgets-wrapper.style-2 .popularspost-area .single-post-items .post-content h5 a {
    color: #adb7bc;
}

.footer-widgets-wrapper.style-2 .popularspost-area .single-post-items .post-content h5 a:hover {
    color: var(--theme-2);
}

.footer-bg-color {
    position: relative;
    z-index: 9;
}

.footer-bg-color::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--header);
    z-index: -1;
    width: 40%;
}

@media (max-width: 1199px) {
    .footer-bg-color::before {
        display: none;
    }
}

.footer-bottom {
    background-color: #f0f0f0;
}

.footer-bottom.color-style {
    background-color: #292c2e;
}

.footer-wrapper {
    padding: 24px 0;
}

.home-copy-text {
    color: #fff;
}

.footer-wrapper p {
    font-size: 16px;
    font-weight: 500;
}

.footer-wrapper p a {
    color: var(--theme-2);
}

.footer-contact-section {
    position: relative;
    z-index: 9;
}

.footer-contact-section::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--bg);
    z-index: -1;
    top: 50%;
}

.footer-contact-wrapper {
    background-color: var(--header);
    padding: 30px;
    position: relative;
    margin-bottom: 29px;
}

.footer-contact-wrapper::before {
    position: absolute;
    width: 96%;
    height: 20px;
    background-color: #1A685B;
    content: "";
    z-index: -1;
    bottom: -20px;
    left: 0;
    -webkit-transform: translateX(2%);
    transform: translateX(2%);
}

.footer-contact-wrapper .contact-us-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 1199px) {
    .footer-contact-wrapper .contact-us-items {
        flex-wrap: wrap;
        gap: 15px;
    }
}

.footer-contact-wrapper .contact-us-items .single-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-contact-wrapper .contact-us-items .single-info .icon {
    overflow: hidden;
    border-radius: 50%;
    background-color: var(--theme-3);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: var(--white);
}

.footer-contact-wrapper .contact-us-items .single-info:nth-child(2n) .icon {
    background-color: #f86048;
}

.footer-contact-wrapper .contact-us-items .single-info .contact h4 {
    color: var(--white);
}

.footer-contact-wrapper .contact-us-items .single-info .contact p {
    color: #adb7bc;
}

.footer-contact-wrapper .contact-us-items .single-info .contact p a {
    color: #adb7bc;
}

.footer-contact-wrapper .social-icon {
    gap: 10px;
}

.footer-contact-wrapper .social-icon a {
    width: 54px;
    height: 54px;
    line-height: 54px;
    text-align: center;
    font-size: 16px;
    display: block;
    background: transparent;
    color: var(--white);
    border-radius: 50%;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    text-align: center;
    border: 1px solid var(--text);
}

.footer-contact-wrapper .social-icon a:hover {
    background-color: var(--theme);
    border: 1px solid transparent;
}

@media (max-width: 767px) {
    .footer-bottom-wrapper {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center !important;
    }
}

.footer-bottom-wrapper p {
    text-transform: capitalize;
    color: var(--white);
    font-size: 16px;
}

.footer-bottom-wrapper p a {
    color: var(--theme-2);
}

.footer-bottom-wrapper p a:hover {
    color: var(--theme);
}

.footer-bottom-3 {
    padding: 15px 0;
    background-color: #2f2f2f;
}

.bor-top-1 {
    border-top: 1px solid #292c2e;
}

.footer-contact-wrap {
    padding: 60px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 1199px) {
    .footer-contact-wrap {
        flex-wrap: wrap;
        gap: 30px;
    }
}

.footer-contact-wrap .contact-box {
    display: flex;
    align-items: center;
    gap: 25px;
}

.footer-contact-wrap .contact-box .icon {
    width: 85px;
    height: 85px;
    line-height: 85px;
    text-align: center;
    border-radius: 50%;
    color: var(--white);
    background-color: #292c2e;
    font-size: 32px;
}

.footer-contact-wrap .contact-box .content h3 {
    color: var(--white);
    margin-bottom: 5px;
}

.footer-contact-wrap .contact-box .content p {
    color: #adb7bc;
}

.footer-contact-wrap .contact-box .content p a {
    color: #adb7bc;
    display: block;
}


@media only screen  and (max-width: 768px) {
    .theme-btn{
        margin-bottom: 20px;
    }
    .button_group_ngo {
        margin-top: 17% !important;
    }
    .col-xl-4.col-lg-6.col-md-6.wow.fadeInUp {
        margin-top: 3%;
    }   
}

@media only screen  and (max-width: 425px) {
    input#donation_amount {
        width: 90% !important;
        margin: 0 auto;
    } 
}