/********** Template CSS **********/
@font-face {
    font-family: "GillSansCustom";
    src: url("/fonts/Gill_Sans.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "OggRoman";
    src: url("/fonts/Ogg_Roman.ttf") format("opentype");
    font-weight: normal;
    font-style: normal;
}

html {
    scroll-behavior: smooth;
    /* enables smooth scrolling */
}

:root {
    --bs-tertiary: #797e88;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.logo-img {
    width: 40%;
}

@media (max-width: 768px) {
    .logo-img {
        width: 100%;
    }
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-normal {
    font-weight: 400 !important;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity 0.5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Button ***/
.btn {
    transition: 0.5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Top Bar ***/
.top-bar {
    height: 124px;
    /* background-color: #fff6ea; */
    background-color: #f8f1d6;
    padding: 0 90px;
}

.bottom-top-bar {
    background-color: #f8f1d6;
}

.top-bar h6 {
    letter-spacing: 1px;
}

.top-bar .sub-title {
    font-size: 12px;
}

@media (max-width: 992px) {
    .top-bar .sub-title {
        font-size: 10px;
    }

    .top-bar {
        height: 150px;
        padding: 0 60px;
    }
}

/*** Nav Bar ***/
.nav-bar {
    padding: 0 90px;
    transition: 0.5s;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 20px 0;
    /* color: var(--bs-dark); */
    color: #fff;
    font-size: 18px;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    /* color: var(--bs-white); */
    color: #ffac00;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 20px;
        border-top: 1px solid var(--bs-white);
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: 0.5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: 0.5s;
        opacity: 1;
    }
}

/*** Header Carousel ***/
.header-carousel-back {
    position: relative;
    background: url(../images/bg.jpg) center center no-repeat;
    background-size: cover;
}

/* .header-carousel {
    position: relative;
    background: url(../images/bg.jpg) center center no-repeat;
    background-size: cover;
} */

.header-carousel .carousel-img {
    position: relative;
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    width: 45px;
    height: 45px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--bs-dark);
    background: var(--bs-primary);
}

.slider-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 20px;
}

.slider-nav .nav-item {
    cursor: pointer;
    font-size: 17px;
    font-weight: 500;
    color: #333;
}

.slider-nav .dot {
    width: 6px;
    height: 6px;
    background: #aaa;
    /* inactive dot color */
    border-radius: 50%;
}

.slider-nav .nav-item.active {
    color: #c0392b;
    /* active color (red) */
    font-size: 19px;
    /* bigger than inactive */
}

@media (max-width: 768px) {
    .slider-nav .nav-item {
        font-size: 11px;
    }

    .slider-nav .nav-item.active {
        color: #c0392b;
        /* active color (red) */
        font-size: 12px;
        /* bigger than inactive */
    }
}

.page-header {
    background: url(../images/bg.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-tertiary);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--bs-primary);
}

.page-header .breadcrumb-item.active {
    color: var(--bs-dark);
}

/*** Video ***/
.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--bs-dark);
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--bs-dark);
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--bs-dark);
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid var(--bs-white);
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: var(--bs-white);
    background: #000000;
    opacity: 1;
}

.text-justify {
    text-align: justify;
}

@media (min-width: 768px) {
    .text-justify {
        text-align: justify;
    }
}

.whats-new-content {
    font-family: "GillSansCustom", sans-serif;
}

/* graph */
.graph-title {
    font-family: "GillSansCustom", sans-serif;
    letter-spacing: 1px;
}

.slide-2-left-section {
    font-family: "GillSansCustom", sans-serif;
    color: #e2e2e2;
    background: #858551;
    font-size: x-large;
}

.slide-2-right-section {
    font-family: "GillSansCustom", sans-serif;
    background: #fff6ed;
    font-size: x-large;
    color: #2f2f2f;
}

/* end graph */
/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 0px;
    top: 5px;
    left: -40px;
    border-top: 2px solid var(--bs-primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 0px;
    bottom: 6px;
    left: -60px;
    border-bottom: 2px solid var(--bs-primary);
    z-index: -1;
}

.section-title-2 {
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
    margin: 0 auto;
}

.section-title-2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 15%;
    /* underline width */
    height: 1px;
    /* thickness */
    background-color: #ffac00;
}

/* culture */
.quote-text-h2 {
    font-family: "OggRoman";
    font-size: 120px;
    line-height: 1.1;
    color: #111;
}

.quote-text-p {
    font-family: "OggRoman";
    font-size: 40px;
    line-height: 1.1;
    color: #111;
    font-weight: 400;
    margin-bottom: 40px;
}

@media (max-width: 576px) {
    .quote-text-h2 {
        font-size: 56px;
        margin-bottom: 0;
    }

    .quote-text-p {
        font-size: 24px;
    }
}

.quote-text {
    font-family: "OggRoman";
    font-size: 42px;
    line-height: 1.1;
    color: #111;
}

.quote-author {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    color: #444;
}

.quote-author-2 {
    font-size: 16px;
}

.cultural-section,
.social-section {
    position: relative;
    padding-bottom: 8px;
}

.cultural-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 36px;
    width: calc(100% - 40px);
    /* right margin space */
    border-bottom: 1px solid #000;
}

.social-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(100% - 40px);
    /* right margin space */
    border-bottom: 1px solid #000;
}

.more-btn {
    position: absolute;
    bottom: 0px;
    left: 12px;
    background: #000;
    color: #fff;
    padding: 6px 60px 6px 14px;
    font-size: 13px;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
}

.more-btn-2 {
    position: absolute;
    bottom: 0px;
    right: 12px;
    background: #000;
    color: #fff;
    padding: 6px 14px 6px 60px;
    font-size: 13px;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    text-align: right;
}

.more-btn:hover .more-btn-2:hover {
    color: #fff;
    background: #111;
}

@media (max-width: 768px) {
    .ssocial-section::after {
        width: 100%;
    }

    .more-btn-2 {
        right: -10px;
    }

    .more-btn {
        left: -10px;
    }
}

/* social and cultural slider */
/* Nav wrapper */
.cultural-slider {
    margin-top: 5rem;
}

.cultural-slider .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
}

/* Common button style */
.cultural-slider .owl-nav button {
    position: absolute;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95) !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* LEFT arrow */
.cultural-slider .owl-nav .owl-prev {
    position: absolute !important;
    left: -30px !important;
}

/* RIGHT arrow */
.cultural-slider .owl-nav .owl-next {
    position: absolute !important;
    right: -30px !important;
}

/* Icon */
.cultural-slider .owl-nav i {
    font-size: 22px;
    color: #000;
}

@media (max-width: 768px) {
    .cultural-slider .owl-nav .owl-prev {
        position: absolute !important;
        left: 5px !important;
        background: white;
        display: flex;
        padding: 6px 2px;
    }

    .cultural-slider .owl-nav .owl-next {
        position: absolute !important;
        right: 5px !important;
        background: white;
        display: flex;
        padding: 6px 2px;
    }
}

/* end cultarual sldier */

/* Tablet (≤ 992px): slightly larger underline */
@media (max-width: 992px) {
    .section-title::after {
        /* width: 60%; */
    }
}

/* Mobile (≤ 576px): underline spans 70% for better visibility */
@media (max-width: 576px) {
    .section-title::after {
        /* width: 70%; */
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 14px;
    }
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}

/* third panel */
.cover-section {
    background: linear-gradient(to bottom,
            rgba(239, 224, 200, 1),
            rgba(239, 224, 200, 0.9),
            rgba(239, 224, 200, 0.8)
            /* fully transparent */
        ),
        url("../images/crowd_stick_figure.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cover-section p {
    font-family: "GillSansCustom", sans-serif;
    font-size: 22px;
    line-height: 1.2;
    color: #333;
    margin-bottom: 0;
}

/* end third panel */
/*** About ***/
.about-img {
    position: relative;
}

.about-img::before,
.about-img::after {
    position: absolute;
    content: "";
    width: 33%;
    height: 90px;
    background: var(--bs-white);
}

.about-img::before {
    top: 0px;
    left: 0px;
}

.about-img::after {
    right: 0px;
    bottom: 0px;
}

/*** Service ***/
.service-title {
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: url(../images/bg.jpg) center center no-repeat;
    background-size: cover;
}

.service-item {
    overflow: hidden;
}

.service-item .btn-square {
    width: 65px;
    height: 65px;
}

.service-item .read-line-full {
    width: 100%;
    border-bottom: 2px solid #f5a623;
    margin-top: 10px;
}

.service-item a {
    position: relative;
    padding: 0;
    font-size: 14px;
    line-height: 14px;
    text-transform: uppercase;
    transition: 0.5s;
    pointer-events: none;
    cursor: default;
}

.service-item a::after {
    position: absolute;
    content: "";
    width: 500%;
    height: 0;
    left: 100%;
    bottom: 3px;
    margin-left: 10px;
    border-bottom: 2px solid var(--bs-primary);
}

/*** Donation ***/
.donation-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    transition: 0.5s;
}

.donation-item:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.donation-item .donation-progress {
    width: 80px;
}

.donation-item .progress .progress-bar {
    height: 20px;
    overflow: visible;
    transition: 3s;
}

/*** Banner ***/
.bank-section {
    font-size: 12px;
}

.banner .banner-inner {
    position: relative;
    background: url(../images/bg.jpg) center center no-repeat;
    background-size: cover;
}

.banner .banner-inner::before,
.banner .banner-inner::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
}

.banner .banner-inner::before {
    top: 0;
    left: 0;
    border-top: 150px solid var(--bs-primary);
    border-right: 150px solid transparent;
}

.banner .banner-inner::after {
    right: 0;
    bottom: 0;
    border-bottom: 150px solid var(--bs-primary);
    border-left: 150px solid transparent;
}

/*** Event ***/
.event-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    transition: 0.5s;
}

.event-item:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

/*** Donate ***/
.donate .donate-text {
    position: relative;
    background: url(../images/bg.jpg) center center no-repeat;
    background-size: cover;
}

.donate .donate-text::before,
.donate .donate-text::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
}

.donate .donate-text::before {
    top: 0;
    left: 0;
    border-top: 150px solid var(--bs-primary);
    border-right: 150px solid transparent;
}

.donate .donate-text::after {
    right: 0;
    bottom: 0;
    border-bottom: 150px solid var(--bs-primary);
    border-left: 150px solid transparent;
}

.donate .donate-form .form-control {
    border: none;
    background: rgba(255, 255, 255, 0.5);
}

.donate .donate-form .btn-group {
    display: flex;
}

.donate .donate-form .btn-group .btn {
    margin: 0;
    padding: 0;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: var(--bs-tertiary);
    background: rgba(255, 255, 255, 0.5);
}

.donate .donate-form .btn-group .btn-check:checked+.btn {
    border: none;
    background: var(--bs-white);
}

.donate-points {
    list-style: none;
    padding: 0;
}

.donate-points li {
    margin-bottom: 5px;
    position: relative;
    padding-left: 22px;
    text-align: left;
}

.donate-points li::before {
    content: "•";
    color: #ffac00;
    position: absolute;
    left: 0;
    font-size: 26px;
    line-height: 26px;
}

.be-with-btn {
    text-decoration: none;
    cursor: default;
}

.fa-icon-div {
    width: 24px;
    /* smaller circle */
    height: 24px;
    background: #ffac00;
    /* yellow */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fa-icon-div i {
    font-size: 14px;
    color: #000;
}

.donate-card {
    border-radius: 0 24px 24px 24px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25), 0 5px 10px rgba(0, 0, 0, 0.15);
    margin-bottom: 16px;
}

.project-card-header-custom {
    border-radius: 0 20px 20px 0px;
    color: white;
    font-weight: 700;
    font-size: 20px;
    padding: 10px;
    text-align: center;
    margin: 15px 15px 0px 0px;
}

.card-header-custom {
    border-radius: 0 20px 0px 0px;
    color: white;
    font-weight: 700;
    font-size: 20px;
    padding: 20px;
    text-align: center;
    margin: 15px 15px 0px 0px;
    height: 86px;
}

.card-header-custom p {
    font-size: 12px;
    font-weight: 200;
    margin-bottom: 0;
}

.card-header-custom small {
    font-size: 13px;
    font-weight: 400;
}

.donate-row {
    border-bottom: 1px solid #6e6e6e;
    padding: 6px 20px;
    font-size: 14px;
    font-weight: 600;
    color: black;
}

.donate-row2-upper {
    padding: 6px 20px;
}

.donate-row2 {
    border-right: 1px solid #6e6e6e;
    font-size: 14px;
    font-weight: 600;
    color: black;
}

.donate-row:last-child {
    border-bottom: none;
}

.payee-section-upper {
    position: relative;
    background: url(../images/bg.jpg) center center no-repeat;
    background-size: cover;
}

.payee-section-upper::before,
.payee-section-upper::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
}

.payee-section-upper::before {
    top: 0;
    left: 0;
    border-top: 150px solid var(--bs-primary);
    border-right: 150px solid transparent;
}

.payee-section-upper::after {
    right: 0;
    bottom: 0;
    border-bottom: 150px solid var(--bs-primary);
    border-left: 150px solid transparent;
}

@media (max-width: 768px) {
    .payee-section-upper::before {
        top: 0;
        left: 0;
        border-top: 68px solid var(--bs-primary);
        border-right: 68px solid transparent;
    }

    .payee-section-upper::after {
        right: 0;
        bottom: 0;
        border-bottom: 68px solid var(--bs-primary);
        border-left: 68px solid transparent;
    }
}

.payee-section-title {
    background: #ffac00;
}

.payee-section-grid {
    border: 1px solid;
    border-radius: 12px;
    border: 1px solid #ffac00;
}

.image-row {
    display: flex;
    gap: 10px;
}

.image-row img {
    width: 100%;
    flex: 1;
    object-fit: contain;
}

.brand-img {
    width: 50%;
    object-fit: contain;
}

.brand-img-3 {
    width: 35%;
    object-fit: contain;
}

@media (min-width: 768px) {
    .brand-img {
        width: 16%;
    }

    .brand-img-2 {
        width: 5%;
    }

    .brand-img-3 {
        width: 10%;
    }
}

.map-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 88%;
    /* controls aspect ratio – adjusts automatically */
    height: auto;
}

.map-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

#map {
    width: 100%;
    height: 400px;
}

@media (min-width: 768px) {
    #map {
        height: 500px;
    }
}

.fixed-size {
    width: 100%;
    height: 100px;
    /* adjust as needed */
    object-fit: cover;
    /* ensures all images fill space equally without distortion */
}

.error-text {
    color: #c7060d;
    text-align: left;
    display: block;
}

/*** Team ***/
.team-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    transition: 0.5s;
}

.team-item:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.team-item .team-detail span {
    letter-spacing: 2px;
}

.font-13 {
    font-size: 13px;
}

/*** Testimonial ***/
.testimonial-title {
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: url(../images/bg.jpg) center center no-repeat;
    background-size: cover;
}

.testimonial-img {
    position: relative;
    padding: 45px 0 45px 90px;
}

.testimonial-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: calc(50% + 45px);
    height: 100%;
    background: var(--bs-primary);
    z-index: -1;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 1.5rem;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.testimonial-carousel .owl-prev,
.testimonial-carousel .owl-next {
    width: 45px;
    height: 45px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--bs-white);
    background: var(--bs-secondary);
    transition: 0.5s;
}

.testimonial-carousel .owl-prev:hover,
.testimonial-carousel .owl-next:hover {
    color: var(--bs-secondary);
    background: var(--bs-white);
}

@media (max-width: 768px) {
    .testimonial-carousel .owl-nav {
        top: 6.3rem;
    }
}

/*** Footer ***/
.footer {
    color: var(--bs-tertiary);
    background: linear-gradient(rgba(5, 19, 17, 0.95), rgba(5, 19, 17, 0.95)),
        url(../images/bg-footer.jpg) center center no-repeat;
    background-size: cover;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--bs-tertiary);
    font-weight: normal;
    text-transform: capitalize;
    transition: 0.3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--bs-light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
