/* @font-face {
    font-family: "bdcleanen";
    src: url("/fonts/en.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
} */

/*

@font-face {
    font-family: 'bdcleanbn';
    src: url('/fonts/bn.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
} */

/* @font-face {
    font-family: "KongshoMJ";
    src: url("/fonts/KongshoMJ.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
} */

:root {
    --color-green: #018a3b;
    --color-red: #ec1c24;
    --color-darkgreen: #005e27;
}

main {
    min-height: calc(100vh - 300px);
}

iframe {
    overflow: hidden;
    scrollbar-width: none; /* For Firefox */
}

iframe::-webkit-scrollbar {
    display: none; /* For Chrome, Safari, and Edge */
}

.text-white {
    color: #fffcd5 !important;
}

.text-green {
    color: var(--color-green) !important;
}

.text-dargreen {
    color: var(--color-darkgreen) !important;
}

.text-red {
    color: var(--color-red);
}

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

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

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

.border-green {
    border-color: var(--color-green) !important;
}

.btn-white-outline {
    border: 1px solid white;
    border-radius: 8px;
    color: white;
    width: 100%;
    display: block;
    text-decoration: none;
    text-align: center;
    padding: 8px;
}

.btn-white-outline:hover {
    background: white !important;
    color: var(--color-green);
}

.btn-green-outline {
    border: 1px solid var(--color-green);
    border-radius: 8px;
    color: var(--color-green);
    width: 100%;
    display: block;
    text-decoration: none;
    text-align: center;
    padding: 8px;
}

.btn-green-outline:hover {
    background: var(--color-green) !important;
    color: white;
}

.row-special > * {
    padding-right: 5px !important;
    padding-left: 5px !important;
}

.shadow-1 {
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
        rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.shadow-2 {
    box-shadow: rgba(60, 64, 67, 0.3) 0px 3px 6px 2px,
        rgba(60, 64, 67, 0.15) 0px 3px 6px 2px;
}

.shadow-green {
    box-shadow: rgb(1, 138, 59, 0.3) 0px 1px 2px 0px,
        rgba(1, 138, 59, 0.8) 0px 2px 6px 2px;
}

.bg-silver {
    background-color: #f6f6f6 !important;
}

.hr {
    border: 0;
    height: 2px;
    background-image: linear-gradient(
        to right,
        rgba(0, 0, 0, 0),
        rgba(208, 255, 0, 1),
        rgba(0, 0, 0, 0)
    );
}

.marquee {
    width: 100%;
    overflow: hidden;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background-color: transparent;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background: #999999;
}

/* lang1 */

/* @keyframes rotateUp {
    0% {
        transform: translate3d(0px, -100%, 0px) scale3d(1, 1, 1) rotateX(0deg)
            rotateY(0deg) rotateZ(0deg) skew(0deg);
        opacity: 0;
    }
    100% {
        transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg)
            rotateY(0deg) rotateZ(0deg) skew(0deg);
        transform-style: preserve-3d;
        opacity: 1;
    }
}

@keyframes rotateDown {
    0% {
        transform: translate3d(0px, 100%, 0px) scale3d(1, 1, 1) rotateX(0deg)
            rotateY(0deg) rotateZ(0deg) skew(0deg);
        opacity: 0;
    }
    100% {
        transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg)
            rotateY(0deg) rotateZ(0deg) skew(0deg);
        transform-style: preserve-3d;
        opacity: 1;
    }
}

.language-switch span {
    display: inline-block;
    transform-origin: bottom;
    transition: opacity 0.3s, transform 0.3s;
}

.rotate-up {
    animation: rotateUp 0.3s ease forwards;
}

.rotate-down {
    animation: rotateDown 0.3s ease forwards;
} */

/* lang2 */
.switch {
    position: relative;
    display: inline-block;
    margin: 0 5px;
}

.switch > span {
    position: absolute;
    top: 10px;
    pointer-events: none;
    font-family: "Helvetica", Arial, sans-serif;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
    width: 50%;
    text-align: center;
}

input.check-toggle-round-flat:checked ~ .off {
    color: #fff;
}

input.check-toggle-round-flat:checked ~ .on {
    color: #fff;
}

.switch > span.on {
    left: 0;
    top: 8px;
    padding-left: 2px;
    color: white;
}

.switch > span.off {
    top: 8px;
    right: 0;
    padding-right: 2px;
    color: #fff;
}

.check-toggle {
    position: absolute;
    margin-left: -9999px;
    visibility: hidden;
}
.check-toggle + label {
    display: block;
    position: relative;
    cursor: pointer;
    outline: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input.check-toggle-round-flat + label {
    padding: 0px;
    width: 85px;
    height: 30px;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    -ms-border-radius: 60px;
    -o-border-radius: 60px;
    border-radius: 60px;
}
input.check-toggle-round-flat + label:before,
input.check-toggle-round-flat + label:after {
    display: block;
    position: absolute;
    content: "";
}

input.check-toggle-round-flat + label:before {
    top: 2px;
    left: 2px;
    bottom: 2px;
    right: 2px;
    background-color: var(--color-green);

    -moz-border-radius: 60px;
    -ms-border-radius: 60px;
    -o-border-radius: 60px;
    border-radius: 60px;
}
input.check-toggle-round-flat + label:after {
    top: 2px;
    left: 2px;
    bottom: 4px;
    width: 40px;
    height: 26px;
    background-color: var(--color-darkgreen);
    color: white;
    -webkit-transition: margin 0.2s;
    -moz-transition: margin 0.2s;
    -o-transition: margin 0.2s;
    transition: margin 0.2s;

    /* English style - round left */
    border-top-left-radius: 52px;
    border-bottom-left-radius: 52px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

input.check-toggle-round-flat:checked + label {
}

input.check-toggle-round-flat:checked + label:after {
    margin-left: 44px;

    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 52px;
    border-bottom-right-radius: 52px;
}

/* lang3 */

.active_lang {
    background-color: var(--color-green);
}

.lang_btn {
    display: inline-block;
    clip-path: polygon(0% 0%, 75% 0%, 100% 100%, 27% 100%);
    padding: 0 15px;
    /* margin-top: 6.5px; */
    cursor: pointer;
}

.anime_element_lang {
    position: absolute;
    background-color: var(--color-green);
    width: 40px;
    display: inline-block;
    height: 22.3px;
    left: 85px;
    z-index: 1;
}

.anime_element_lang_to_left {
    animation: anime_lang 0.3s ease-in forwards;
}

.anime_element_lang_to_right {
    animation: anime_lang_reverse 0.3s ease-in forwards;
}

@keyframes anime_lang {
    0% {
        left: 85px;
    }
    100% {
        left: 33px;
    }
}

@keyframes anime_lang_reverse {
    0% {
        left: 33px;
    }
    100% {
        left: 85px;
    }
}

/* nav item */

/* nav item */

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    transition: all 0.4s ease-in-out;
}

.nav_bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 69px;
    padding: 0 20px;
    gap: 6px;
    position: relative;
}

.logo_container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 35px;
    z-index: 99999;
}

#logo {
    width: 55px;
    margin: 0;
    padding: 0;
    display: block;
    transition: all 0.4s ease-in-out;
}

#logo:hover {
    filter: drop-shadow(0 0 10px rgba(91, 209, 141, 0.8));
}

.left_nav {
    padding-right: 30px;
    margin-left: -30px;
}

.right_nav {
    padding-left: 30px;
    margin-right: -30px;
}

.left_nav,
.right_nav {
    flex: 1;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 94, 39, 0.7) 51%,
        #018a3b 50%
    );
    position: relative;
}

.curved_edge_left {
    --c: 11px;
    width: 26px;
    aspect-ratio: 2 / 3;
    mask: radial-gradient(var(--c) 60% at right, #0000 calc(100% - 1px), #000);
    background: rgba(0, 94, 39, 1);
    position: absolute;
    right: -11px;
    height: 34.4px;
    top: 35px;
}

.curved_edge_right {
    --c: 11px;
    width: 25px;
    aspect-ratio: 2 / 3;
    mask: radial-gradient(var(--c) 60% at left, #0000 calc(100% - 1px), #000);
    background: rgba(0, 94, 39, 1);
    position: absolute;
    left: -11px;
    height: 34.4px;
    top: 35px;
}

.curved_edge_top {
    --c: 70px;
    height: 110px;
    aspect-ratio: 3 / 2;
    mask: radial-gradient(70% var(--c) at bottom, #0000 calc(100% - 2px), #000);
    background: rgba(0, 94, 39, 0.7);
    position: absolute;
    left: calc(50% - 0px);
    transform: translateX(-50%);
    width: 67.9px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px,
        rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}

.nav_links ul {
    display: flex;
    justify-content: end;
    gap: 5px;
}

.nav_links ul a {
    color: #fffcd5 !important;
    font-size: 23px;
    text-decoration: none;
}

.has-submenu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
}

.has-submenu i {
    font-size: 12px;
}

.nav_links ul li {
    list-style-type: none;
}

.nav_left_links {
    position: absolute;
    right: 0;
    top: 35px;
}

.nav_right_links {
    position: absolute;
    left: -20px;
    top: 35px;
}

.nav_link_odd_left {
    clip-path: polygon(0% 0%, 85% 0%, 100% 100%, 15% 100%);
}

.nav_link_odd_last {
    clip-path: polygon(3% 0%, 92% 0%, 92% 100%, 15% 100%);
}

.nav_link_odd_right {
    clip-path: polygon(10% 0%, 100% 0%, 89% 100%, 0% 100%);
}

.nav_link_odd_right_first {
    clip-path: polygon(0% 0%, 90% 0%, 80% 100%, 0% 100%);
}

.nav_link_odd_left a,
.nav_link_odd_right a {
    padding: 0px 30px;
    background-color: rgba(0, 94, 39, 1);
}

.nav_home {
    padding: 0px 25px !important;
    background-color: rgba(0, 94, 39, 1);
    display: inline-block;
    /* height: 80%; */
    height: 100%;
}

.nav_events {
    padding-left: 10px !important;
    padding-right: 45px !important;
}

.nav_member {
    padding: 0px 40px !important;
}

.nav_media {
    padding: 0px 0px !important;
}

#submenu_container {
    display: none;
    width: fit-content;
    position: fixed;
    background-color: rgba(1, 138, 59, 0.6);
    border-radius: 8px;
    padding: 3px;
    margin-top: 15px;
}

#submenu_items {
    padding: 0;
    margin: 0;
}

#submenu_items li {
    list-style-type: none;
    padding: 5px;
    margin: 0;
}

#submenu_items li a {
    text-decoration: none;
    color: white;
    display: block;
    border-radius: 8px;
    padding: 0px 10px;
    transition: all 0.2s ease-in-out;
}

#submenu_items li a:hover {
    background-color: var(--color-darkgreen);
    color: white;
    font-size: 18px;
}

.has-submenu i {
    font-size: 12px;
}

.head1 {
    font-size: 32px;
}

.desc1 {
    font-size: 17px;
}

.head2 {
    font-size: 35px;
}

.head3 {
    font-size: 30px;
}

.desc2 {
    font-size: 18px;
    /* max-width: 505px; */
}

.location_badge {
    color: rgba(193, 186, 70, 0.6);
    border: 1px solid rgba(192, 199, 58, 0.6);
    border-radius: 8px;
    padding: 5px;
    max-width: 110px;
    display: inline-block;
    cursor: pointer;
    font-size: 12px;
    animation: location_badge_anime 1s infinite alternate;
}

@keyframes location_badge_anime {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.2);
        color: rgba(193, 186, 70, 0.7);
        border-color: rgba(193, 186, 70, 0.7);
    }
}

.location_badge:hover {
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
        rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    background-color: var(--color-darkgreen);
}

.md-stepper-horizontal {
    display: table;
    width: 100%;
    margin: 0 auto;
    background-color: var(--color-green);
}
.md-stepper-horizontal .md-step {
    display: table-cell;
    position: relative;
    padding: 5px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease-in-out;
}

/* .md-stepper-horizontal .md-step span {
    padding: 30px;
} */

.md-stepper-horizontal .md-step:hover span {
    box-shadow: 0 5px 15px rgba(32, 222, 11, 0.4);
}
.md-stepper-horizontal .md-step:active span,
.md-stepper-horizontal .md-step.active span {
    /* background-color: rgba(0, 0, 0, 0.3); */
    /* border-radius: 15% / 75%; */
    /* box-shadow: rgba(60, 64, 67, 0.3) 0px 3px 6px 2px,
        rgba(60, 64, 67, 0.15) 0px 3px 6px 2px; */

    box-shadow: rgba(60, 64, 67, 0.3) 0px 3px 6px 2px,
        rgba(60, 64, 67, 0.15) 0px 3px 6px 2px;
}

.md-stepper-horizontal .md-step:first-child:active {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.md-stepper-horizontal .md-step:last-child:active {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.md-stepper-horizontal .md-step:first-child .md-step-bar-left,
.md-stepper-horizontal .md-step:last-child .md-step-bar-right {
    display: none;
}

.md-stepper-horizontal .md-step .md-step-circle span {
    /* width: 30px; */
    height: 30px;
    margin: 0 auto;
    text-align: center;
    line-height: 30px;
    font-size: 20px;
    font-weight: 600;
    color: #bfb1b1;
    transition: all 0.2s ease-in-out;
    padding: 10px 20px;
    border-radius: 8px;
}

.md-stepper-horizontal .md-step:hover .md-step-circle span,
.md-stepper-horizontal .md-step.active .md-step-circle span {
    color: white;
    font-size: 25px;
}

.md-stepper-horizontal .md-step .md-step-title {
    margin-top: 16px;
    font-size: 16px;
    font-weight: 600;
}
.md-stepper-horizontal .md-step .md-step-title,
.md-stepper-horizontal .md-step .md-step-optional {
    text-align: center;
    color: rgba(0, 0, 0, 0.26);
}
.md-stepper-horizontal .md-step.active .md-step-title {
    font-weight: 600;
    color: rgba(0, 0, 0, 0.87);
}

.md-stepper-horizontal .md-step .md-step-optional {
    font-size: 12px;
}
.md-stepper-horizontal .md-step.active .md-step-optional {
    color: rgba(0, 0, 0, 0.54);
}
.md-stepper-horizontal .md-step .md-step-bar-left,
.md-stepper-horizontal .md-step .md-step-bar-right {
    position: absolute;
    top: 20px;
    height: 1px;
    border-top: 1px solid #dddddd;
    display: none;
}
.md-stepper-horizontal .md-step .md-step-bar-right {
    right: 0;
    left: 50%;
    margin-left: 20px;
}

.md-stepper-horizontal .md-step .md-step-bar-left {
    left: 0;
    right: 50%;
    margin-right: 20px;
}

.md-stepper-horizontal .md-step.active .md-step-bar-right,
.md-stepper-horizontal .md-step:hover .md-step-bar-right,
.md-stepper-horizontal .md-step:hover .md-step-bar-left,
.md-stepper-horizontal .md-step.active .md-step-bar-left {
    display: none;
}

#time_line {
    min-height: 600px;
}

.event-item {
    width: 33%;
    margin-right: 10px;
}

.event-item img {
    width: 100%;
    height: 260px;
}

.news-element {
    margin-right: 10px;
    position: relative;
}

.news-item {
    width: 350px;
    height: 500px;
    object-fit: cover;
}

.news-body {
    width: 100%;
    position: absolute;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.5));
}

.news-link {
    padding-top: 10px;
    border-top: 1px solid white;
    gap: 10px;
}

.board-member-name {
    font-weight: bold;
    vertical-align: -12px;
    /* padding-left: 25px; */
}

.testimonial {
    width: 49.5%;
}

.footer-link {
    line-height: 1;
}

.footer-link:hover {
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline !important;
}

/* nav item */
/* .dropdown-menu {
    background-color: rgba(1, 138, 59, 0.6);
}

.dropdown-item {
    border-radius: 8px;
}

.dropdown-item:hover {
    background-color: var(--color-darkgreen);
    color: white;
} */

/* position dots up a bit */
.flickity-page-dots {
    bottom: -22px;
}
/* dots are lines */
.flickity-page-dots .dot {
    height: 4px;
    width: 40px;
    margin: 0;
    border-radius: 0;
}

.container-custom {
    padding: 0 3.5rem;
}

.accordion-button {
    background-color: var(--color-darkgreen);
    color: white;
    font-size: 24px;
}

.accordion-button:not(.collapsed) {
    background-color: var(
        --color-darkgreen
    ); /* Replace with your desired color */
    color: white; /* Optional: Adjust text color */
}

/* Change background color on hover (optional) */
.accordion-button:not(.collapsed):hover {
    background-color: var(--color-darkgreen); /* Slightly darker shade */
}

.accordion-button:focus {
    box-shadow: none !important;
}

.accordion-button::after,
.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    background-color: var(--color-green);
    color: #ffffff;
}

.bapti-heading {
    position: relative;
    height: 115px;
}

.bapti-head {
    font-weight: bold;
}

.bapti-abs {
    position: static;
    right: 35px;
}

.bapti-counter {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ktext {
    margin-bottom: 42px;
}

.board_header_card {
    background-color: var(--color-darkgreen);
    cursor: pointer;
    margin-bottom: 15px;
    border-radius: 8px;
}

.board_header_card:hover,
.board_header_card.active {
    background-color: #dddddd;
    color: var(--color-darkgreen) !important;
    border: 1px solid var(--color-darkgreen);
}

.board_body_card {
    height: 396px;
    /* overflow-y: auto; */
}
.board-area-items {
    overflow-y: auto;
    height: 307px;
}

.board-area-items p {
    color: white;
    cursor: pointer;
    padding: 5px;
}

.board-area-items p:hover {
    background-color: var(--color-darkgreen);
}

.oath_section {
    height: 610px;
}

.oath_head_t {
    background-color: var(--color-green);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0; /* Start hidden */
}

.oath_head_t.fade-down {
    animation: fadeDown 0.6s ease-out forwards;
}

@keyframes fadeDown {
    from {
        opacity: 0;
        top: -40px;
    }
    to {
        opacity: 1;
        top: -1px;
    }
}

.flip-box {
    background-color: transparent;
    /* width: 300px;
    height: 200px; */
    width: 520px;
    height: 52px;
    perspective: 1000px;
}

.flip-box-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-box:hover .flip-box-inner {
    transform: rotateY(180deg);
}

.flip-box-front,
.flip-box-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.flip-box-back {
    transform: rotateY(180deg);
}

.flipped {
    transform: rotateY(180deg);
}

/* .accordion-button::after {
    color: white;
    order: -1;
    margin-left: 0;
    margin-right: 0.5em;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !important;
} */

.counter_card {
    width: 350px;
}

.news_link_media {
    color: white;
    text-decoration: none;
}

.news_link_media:hover {
    text-decoration: underline;
}

.book-container {
    perspective: 1000px;
}

#spiral-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: max-content;
}

/* .page {
    transition: transform 1.5s ease-in-out;
    transform-origin: left;
    transform-style: preserve-3d;
    backface-visibility: hidden;
} */

#right-page {
    cursor: pointer;
    color: white;
}

.dropdown-menu a {
    font-size: 16px;
    transition: font-size 0.3s ease; /* Duration and easing of animation */
}

.dropdown-menu a:hover {
    font-size: 18px;
}

.flip {
    animation: flipPage 0.75s ease-in-out forwards;
}

.left-flip {
    animation: flipleft 0.75s ease-in-out forwards;
}

#app_download {
    position: fixed;
    bottom: 2%;
    transform: translateX(-50%);
    left: 50%;
    display: none;
    z-index: 99999;
}

.koushol_head{
    font-size: 19px;
}

@media (min-width: 1000px) {
    .cleanup {
        width: 80%;
    }

    .tag_line {
        padding-left: 4.5rem !important;
    }

    .tag_line_x {
        padding-right: 3.5rem !important;
        padding-left: 3.5rem !important;
    }

    .tag_line_card {
        margin-left: 3.5rem !important;
    }

    .tag_line_card2 {
        margin-right: 3.5rem !important;
    }

    #board_section {
        position: relative;
    }

    #board_title {
        position: absolute !important;
        top: 1% !important;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (min-width: 1921px) {
    #map_frame {
        height: 1025px !important;
    }

    /* .event-item img {
        height: 400px;
    } */
}

@media (min-width: 1922px) and (max-width: 2136px) {
    #map_frame {
        height: 765px !important;
    }
}

@media (max-width: 1000px) {
    .event-item {
        width: 95%;
    }

    .cleanup {
        width: 250px;
    }

    .bapti-head {
        font-size: 28px !important;
        font-weight: 100 !important;
    }
}

@media (min-width: 577px) and (max-width: 1024px) {
    .oath_section {
        height: 610px;
        background-size: cover !important;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    #map_frame {
        height: 460px !important;
    }
}

@media (max-width: 767px) {
    #map_frame {
        height: 450px !important;
    }

    .nav_link_container ul li a {
        font-size: 10px;
    }
}

/* xs */
@media (max-width: 576px) {
    .head2 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .desc2 {
        font-size: 16px;
    }

    #time_line {
        min-height: auto;
    }

    .testimonial {
        width: 90%;
    }

    #map_frame {
        height: 560px !important;
    }

    .oath_section {
        height: 390px;
        background-size: cover !important;
    }

    .board_section_full {
        position: relative;
    }

    .board_section_half {
        position: absolute;
        display: none;
    }

    /* .counter_card {
        height: 150px;
    } */

    .event-item img {
        height: 270px;
    }

    .location_badge {
        font-size: 9px;
    }

    #timeline_lg {
        display: none;
    }

    /* #timeline_sm {
        display: block;
    } */

    .eimagebanner {
        max-width: 100%;
    }

    .baptis {
        position: relative;
    }

    .baptis-container {
        position: absolute;
        width: 170px;
        display: flex;
        align-content: flex-end;
        flex-direction: column;
        gap: 5px;
        top: 0px;
        right: 45px;
    }

    .baptis-container .counter_card {
        width: 100%;
        height: inherit;
    }

    .baptis-container p {
        font-size: 12px !important;
        font-weight: 100 !important;
    }
    .baptis-container span {
        font-size: 12px !important;
        font-weight: 100 !important;
    }

    .baptis-container .counter_card > div {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .bapti-abs {
        position: absolute;
    }

    #app_download p {
        font-size: 10px;
    }

    #app_download img {
        width: 80px;
    }

    .ktext {
        margin-bottom: 10px;
    }

    .nav_about {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    .nav_member {
        padding-left: 5px !important;
        padding-right: 10px !important;
    }

    .nav_events {
        padding-left: 5px !important;
        padding-right: 20px !important;
        margin-left: -15px;
    }

    .nav_media {
        padding-left: 0px !important;
        padding-right: 0px !important;
        margin-left: -15px;
    }

    .nav_events span,
    .nav_events i,
    .nav_media span,
    .nav_media i,
    .nav_about span,
    .nav_about i,
    .nav_member span,
    .nav_member i {
        transform: scale(0.7);
    }

    .has-submenu {
        gap: 0px;
    }

    .has-submenu i {
        margin-left: -8px;
    }
}

@media (max-width: 435px) {
    #map_frame {
        height: 575px !important;
    }
}

@media (max-width: 415px) {
    #map_frame {
        height: 555px !important;
    }
}

@media (max-width: 395px) {
    #map_frame {
        height: 520px !important;
    }
}

@media (max-width: 380px) {
    #map_frame {
        height: 505px !important;
    }
}

/* xxs */
@media (max-width: 374px) {
    #map_frame {
        height: 470px !important;
    }
}
