@import url('https://fonts.googleapis.com/css2?family=Tangerine:wght@400;700&display=swap');

.navbar.fixed-top {
    position: fixed;
    top: 0;
    z-index: 1000;
}

.signature {
    text-align: end;
    font-style: italic;
    font-size: 2.4em;
    margin-top: 20px;
    font-weight: bold;
    font-family: 'Tangerine', cursive;
}

.full-height {
    height: calc(107vh - 56px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}

.titleMain {
    font-size: 100px;
}

.titleDesc {
    font-size: 30px;
    display: inline;
}

.background-main {
    background-image: url(../images/WorldMap.svg);
    background-size: 140vh auto;
    background-repeat: no-repeat;
    background-position: center;
}

.bottom-bg {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/MainBottom.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
    z-index: -1;
}

section {
    overflow: hidden;
}

.heading-title {
    margin-left: 20px;
    margin-right: 20px;
    white-space: nowrap;
    font-weight: bold;
}

.heading-flu {
    max-height: 70px;
}

.section-left {
    background-image: url("../images/Section-BG.png");
    background-position: left;
    background-repeat: no-repeat;
    background-position-y: top;
}

.section-right {
    background-image: url("../images/Section-BG.png");
    background-position: right;
    background-repeat: no-repeat;
    background-position-y: top;
}

body.scrolling-to-section {
    scroll-padding-top: 56px;
}

.candle-light-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    background-color: #e92d22;
    color: #fff;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.activeLi {
    background: #e92d22;
    border-radius: 1vh;
    color: white !important;
}

.about_the_wall_img {
    max-height: 300px;
    background-image: url('../images/about_the_wall.jpeg');
    height: 300px;
    background-position: 0px 0px;
    background-repeat: no-repeat;
    width: 750px;
    display: flex;
    justify-content: center;
}

@-webkit-keyframes flicker {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

@keyframes flicker {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.candle-light-button:hover {
    -webkit-animation: flicker 0.5s infinite;
    animation: flicker 0.5s infinite;
}

.z-index-top {
    z-index: 9999;
}

.z-index-top-2 {
    z-index: 999;

}

.candle-light-button::after {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 100%;
    background: -o-radial-gradient(circle,
            #e92d22 0%,
            rgba(233, 45, 34, 0) 100%);
    background: radial-gradient(circle,
            #e92d22 0%,
            rgba(233, 45, 34, 0) 100%);
    border-radius: 50%;
    opacity: 0.3;
    z-index: -1;
}

.drop-shadow {
    -webkit-box-shadow: 0 0px 0px rgba(0, 0, 0, 0);
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0);
    -webkit-transition: -webkit-box-shadow 0.5s ease;
    transition: -webkit-box-shadow 0.5s ease;
    -o-transition: box-shadow 0.5s ease;
    transition: box-shadow 0.5s ease;
    transition: box-shadow 0.5s ease, -webkit-box-shadow 0.5s ease;
}

.drop-shadow:hover {
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    -webkit-transition: -webkit-box-shadow 0.5s ease;
    transition: -webkit-box-shadow 0.5s ease;
    -o-transition: box-shadow 0.5s ease;
    transition: box-shadow 0.5s ease;
    transition: box-shadow 0.5s ease, -webkit-box-shadow 0.5s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.8) !important;
    -webkit-backdrop-filter: blur(5px) !important;
    backdrop-filter: blur(5px) !important;
    -webkit-transition: background 0.3s ease !important;
    -o-transition: background 0.3s ease !important;
    transition: background 0.3s ease !important;
}

@media (min-width: 992px) {
    #lightForm {
        padding-left: 25vh !important;
        padding-right: 25vh !important;
    }
}

@media (max-width: 991px) {
    .activeLi {
        padding-left: 0.5rem !important;
    }
}

@media(min-width: 768px) {
    .activeLi {
        padding-left: 2vh;
    }
}

@media (max-width: 768px) {
    .titleMain {
        font-size: 8vh;
    }

    .titleDesc {
        font-size: 3vh;
    }

    section,
    footer {
        position: relative;
        top: 14vh;
        padding-bottom: 15vh;
    }


    .full-height {
        height: -webkit-fit-content;
        height: -moz-fit-content;
        min-height: calc(108vh - 166px);
        height: fit-content;
    }

    #about_the_wall_desc {
        width: 100% !important;
    }

    .activeLi {
        padding-left: 2vh !important;
    }
}

.navbar {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    max-height: 40px;
}

.navbar-nav .nav-link {
    color: #343a40;
    font-weight: 600;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #e92d22;
}

.navbar-nav .nav-item.active .nav-link {
    color: #e92d22;
}

footer {
    border-bottom: 1px solid #dee2e6;
    -webkit-box-shadow: 0px -5px 4px rgba(0, 0, 0, 0.1);
    box-shadow: 0px -5px 4px rgba(0, 0, 0, 0.1);
}

.smooth-scroll {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    margin-top: 20px;
    text-decoration: none;
    width: 40px;
    height: 40px;
    background-color: #e92d22;
    border-radius: 50%;
    overflow: hidden;
}

.smooth-scroll a {
    color: #000;
    font-size: 24px;
}

.smooth-scroll::after {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.ourvision {
    background-image: url('../images/our_mission.jpeg');
    background-size: cover;
    background-position: center;
    width: -webkit-fill-available;
    height: 220px;

}

.ourmission {
    background-image: url('../images/OurMission.jpg');
    background-size: cover;
    background-position: center;
    width: -webkit-fill-available;
    height: 220px;

}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background-color: #f0f0f0;
}

::-webkit-scrollbar-thumb {
    background-color: #e92d22;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #c9241a;
}

@-webkit-keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.blink {
    -webkit-animation: blink 1s infinite;
    animation: blink 1s infinite;
}

@-webkit-keyframes candle-light {
    0% {
        fill: rgba(255, 165, 0, 0.5) !important;
    }

    50% {
        fill: rgba(255, 165, 0, 0.8) !important;
    }

    100% {
        fill: rgba(255, 165, 0, 0.5) !important;
    }
}

@keyframes candle-light {
    0% {
        fill: rgba(255, 165, 0, 0.5) !important;
    }

    50% {
        fill: rgba(255, 165, 0, 0.8) !important;
    }

    100% {
        fill: rgba(255, 165, 0, 0.5) !important;
    }
}

.svg-candle-light {
    -webkit-animation: candle-light 2s infinite;
    animation: candle-light 2s infinite;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: -1;
}

.g-bg-color {
    background-color: #d9d9d9
}

.vid-t {
    height: 43vh;
    overflow: hidden;
}

.vid-b {
    background-color: #e92d2287;
    border-radius: 30px;
    backdrop-filter: blur(5px);
}

#ps_map {
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

#ps_map:hover {
    -webkit-transform: scale(1.7) translate(0, 40px);
    -ms-transform: scale(1.7) translate(0, 40px);
    transform: scale(1.7) translate(0, 40px);
}

.dotted-underline {
    display: inline-block;
    position: relative;
    text-decoration: none;
    color: #e92d22;
    font-weight: bold;
    border-bottom: 2px dashed #e92d22;

}

.dotted-underline:not(:hover) {
    border-bottom: 2px dashed #e92d22;
    border-width: medium;
    -webkit-animation: borderTransition 0.3s ease;
    animation: borderTransition 0.3s ease;
}

@-webkit-keyframes borderTransition {
    0% {
        border-width: inherit;
    }

    90% {
        border-width: inherit;
    }

    100% {
        border-width: medium;
    }
}

@keyframes borderTransition {
    0% {
        border-width: inherit;
    }

    90% {
        border-width: inherit;
    }

    100% {
        border-width: medium;
    }
}

.dotted-underline::before {
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: #e92d22;
    -webkit-transition: width 0.3s ease;
    -o-transition: width 0.3s ease;
    transition: width 0.3s ease;
}

.dotted-underline:hover::before {
    width: 100%;
}

.map-t {
    height: 43vh;
    overflow: hidden;
}

.map-c {
    background-color: #e92d2287;
    padding: 10px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    height: inherit;
}

.map-b {
    height: 100%;
    width: 100%;
    border-radius: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.dotted-underline:hover {
    background-color: #cdcdcd;
    color: #e92d22;
    border-width: inherit;
    -webkit-transition: border-width 0s ease;
    -o-transition: border-width 0s ease;
    transition: border-width 0s ease;
}

footer {
    position: relative;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/Pattern_Large.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.1;
    z-index: -1;
}