@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800&family=Poppins:ital,wght@0,500;0,600;0,700;1,500;1,600&display=swap");

#root {
    --dynamic-primary-color: #263077;
    --dynamic-secondary-color: #2cb7df;
}

.fs-1 {
    font-size: calc(1.3rem + 0.6vw) !important;
}

.fs-2 {
    font-size: calc(1.275rem + 0.3vw) !important;
}

.fs-3 {
    font-size: calc(1.26rem + 0.12vw) !important;
}

.fs-4 {
    font-size: 1.25rem !important;
}

.fs-5 {
    font-size: 1.15rem !important;
}

.fs-6 {
    font-size: 1.075rem !important;
}

.fs-7 {
    font-size: 0.95rem !important;
}

.fs-8 {
    font-size: 0.85rem !important;
}

.fs-9 {
    font-size: 0.75rem !important;
}

.fs-10 {
    font-size: 0.5rem !important;
}

.fs-base {
    font-size: 1rem !important;
}

.fs-fluid {
    font-size: 100% !important;
}

.fs-2x {
    font-size: calc(1.325rem + 0.9vw) !important;
}

.fs-2qx {
    font-size: calc(1.35rem + 1.2vw) !important;
}

.fs-2hx {
    font-size: calc(1.375rem + 1.5vw) !important;
}

.fs-2tx {
    font-size: calc(1.4rem + 1.8vw) !important;
}

.fs-3x {
    font-size: calc(1.425rem + 2.1vw) !important;
}

.fs-3qx {
    font-size: calc(1.45rem + 2.4vw) !important;
}

.fs-3hx {
    font-size: calc(1.475rem + 2.7vw) !important;
}

.fs-3tx {
    font-size: calc(1.5rem + 3vw) !important;
}

.fs-4x {
    font-size: calc(1.525rem + 3.3vw) !important;
}

.fs-4qx {
    font-size: calc(1.55rem + 3.6vw) !important;
}

.fs-4hx {
    font-size: calc(1.575rem + 3.9vw) !important;
}

.fs-4tx {
    font-size: calc(1.6rem + 4.2vw) !important;
}

.fs-5x {
    font-size: calc(1.625rem + 4.5vw) !important;
}

.fs-5qx {
    font-size: calc(1.65rem + 4.8vw) !important;
}

.fs-5hx {
    font-size: calc(1.675rem + 5.1vw) !important;
}

.fs-5tx {
    font-size: calc(1.7rem + 5.4vw) !important;
}

.fst-italic {
    font-style: italic !important;
}

.fst-normal {
    font-style: normal !important;
}

.fw-light {
    font-weight: 300 !important;
}

.fw-lighter {
    font-weight: lighter !important;
}

.fw-normal {
    font-weight: 400 !important;
}

.fw-bold {
    font-weight: 500 !important;
}

.fw-bolder {
    font-weight: 600 !important;
}

.image-off {
    display: block;
}

@media only screen and (max-width: 576px) {
    .container {
        max-width: 100%;
        margin: 0
    }

    .image-off {
        display: none;
    }
}

@media only screen and (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media only screen and (min-width: 992px) {
    .container {
        max-width: 95%;
    }
}

@media only screen and (min-width: 1200px) {
    .container {
        max-width: 95%;
    }
}

@media only screen and (min-width: 1480px) {
    .container {
        max-width: 1430px;
    }
}

body {
    font-family: "Inter", sans-serif, sans-serif;
    background: url(../src/static/body_bg.jpg) no-repeat;
    background-attachment: fixed;
}

h1 {
    color: #007d8e;
}

header {
    position: absolute;
    padding: 25px 0px;
    right: 0;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 1030;
    background-color: transparent;
    border: 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

@media only screen and (max-width: 576px) {
    header {
        position: fixed !important;
    }
}

header .logo-light {
    display: none;
}

header .start {
    display: grid;
    grid-template-areas: "left  right";
    grid-template-columns: 20% 80% !important;
    grid-template-rows: auto;
    height: 100%;
}

    header .start .logo {
        grid-area: left;
    }

    header .start .content {
        grid-area: right;
        display: flex;
        justify-content: end;
        align-items: center;
    }

        header .start .content .links {
            display: flex;
            list-style: none;
            color: #ffffff;
            margin-bottom: 0px;
        }

            header .start .content .links li a {
                display: flex;
                list-style: none;
                color: #ffffff;
                margin-bottom: 0px;
            }

header.menu-fixed .start .content .links li a,
header.menu-light .start .content .links li a {
    display: flex;
    list-style: none;
    color: black;
    margin-bottom: 0px;
}

@media only screen and (max-width: 576px) {
    header .start .content .links {
        display: none;
    }
}

header .start .content .links li {
    margin: 0px 10px;
    text-transform: capitalize;
}

header .start .content .icon {
    margin-left: 3rem !important;
}

@media only screen and (max-width: 576px) {
    header .start .content .icon {
        margin-left: 0rem !important;
        margin-right: 1.5rem !important;
    }
}

header.menu-light {
    background: #ffffff !important;
}

    header.menu-light .logo-dark {
        display: none !important;
    }

    header.menu-light .logo-light {
        display: block !important;
    }

    header.menu-light .start .content .links {
        color: #333;
        margin-bottom: 0px;
    }

header.menu-fixed {
    background: #ffffff;
    -webkit-box-shadow: 0 4px 15px -10px rgba(0, 0, 0, 0.6);
    box-shadow: 0 4px 15px -10px rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 3%;
    animation: slide-down 0.7s;
}

    header.menu-fixed .logo-dark {
        display: none !important;
    }

    header.menu-fixed .logo-light {
        display: block !important;
    }

    header.menu-fixed .start .content .links {
        color: #333;
        margin-bottom: 0px;
    }

/*footer {
    background-color: #fff;
    padding: 30px 0px 0px 0px;
    position: relative;
}*/

/* footer .container {
        z-index: 2;
        position: relative;
    }*/

footer .inc {
    text-align: center;
    margin-bottom: 41px;
    color: #b00029;
    font-family: "Inter", sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

@media only screen and (max-width: 576px) {
    footer .inc {
        font-size: 18px;
    }
}

footer .inc span {
    font-weight: 400;
}

footer .start {
    display: grid;
    grid-template-areas: "sec1 sec3 sec2";
    grid-template-columns: 33% 33 33% !important;
    grid-template-rows: auto;
    height: 100%;
    padding: 0px 108px;
    position: relative;
}

@media only screen and (max-width: 576px) {
    footer .start {
        padding: 0px 0px;
        grid-template-areas: "sec2" "sec3" "sec1";
        grid-template-columns: 100% !important;
    }
}

footer .start .sec1 {
    grid-area: sec1;
    display: flex;
    justify-content: start;
}

    footer .start .sec1 .content {
        display: flex;
        flex-direction: column;
    }

        footer .start .sec1 .content span {
            color: #333;
            font-size: 14px;
            font-style: normal;
            font-weight: 600;
            line-height: normal;
            display: block;
            margin-bottom: 2px;
        }

        footer .start .sec1 .content .links {
            display: flex;
            flex-direction: column;
            list-style: none;
            color: #333;
            margin-bottom: 0px;
            padding: 0px;
            font-size: 14px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
        }

            footer .start .sec1 .content .links li {
                margin: 0px 0px;
                text-transform: capitalize;
            }

                footer .start .sec1 .content .links li a {
                    text-decoration: none;
                    color: inherit;
                }

        footer .start .sec1 .content.content2 {
            margin-left: 55px;
        }

@media only screen and (max-width: 576px) {
    footer .start .sec1 .content.content2 {
        margin-left: 11px;
    }
}

footer .start .sec3 {
    grid-area: sec3;
    display: flex;
    justify-content: start;
}

    footer .start .sec3 .content {
        display: flex;
        flex-direction: column;
    }

        footer .start .sec3 .content span {
            color: #333;
            font-size: 14px;
            font-style: normal;
            font-weight: 600;
            line-height: normal;
            display: block;
            margin-bottom: 2px;
        }

        footer .start .sec3 .content .links {
            display: flex;
            flex-direction: column;
            list-style: none;
            color: #333;
            margin-bottom: 0px;
            padding: 0px;
            font-size: 14px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
        }

            footer .start .sec3 .content .links li {
                margin: 0px 0px;
                text-transform: capitalize;
            }

                footer .start .sec3 .content .links li a {
                    text-decoration: none;
                    color: inherit;
                }

        footer .start .sec3 .content.content2 {
            margin-left: 55px;
        }

@media only screen and (max-width: 576px) {
    footer .start .sec3 .content.content2 {
        margin: 10px 0px 10px 0px;
    }

    .fico {
        margin-top: 82px !important;
    }
}

footer .start .sec2 {
    grid-area: sec2;
    display: flex;
    justify-content: end;
}

@media only screen and (max-width: 576px) {
    footer .start .sec2 {
        justify-content: start;
        margin-bottom: 53px;
    }
}

footer .start .sec2 .content {
    display: flex;
    flex-direction: column;
}

    footer .start .sec2 .content span {
        color: #333;
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        display: block;
        margin-bottom: 2px;
    }

    footer .start .sec2 .content .links {
        display: flex;
        flex-direction: column;
        list-style: none;
        color: #333;
        margin-bottom: 0px;
        padding: 0px;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

        footer .start .sec2 .content .links li {
            margin: 0px 0px;
            text-transform: capitalize;
        }

    footer .start .sec2 .content.content2 {
        margin-left: 55px;
    }

footer .bcdrop-img {
    width: 100%;
    height: 89px;
}

footer .igfooterimg {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media only screen and (max-width: 576px) {
    footer .igfooterimg {
        width: 100%;
        bottom: -137px;
    }
}

.f-body {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
}

    .f-body .donate-frm {
        position: relative;
        padding: 94px 0px 106px 0px;
    }

    .f-body .donate-frm1 {
        position: relative;
        padding: 70px 0px 106px 0px;
    }

@media only screen and (max-width: 576px) {
    .f-body .donate-frm {
        padding: 70px 0px 70px 0px;
    }
}

.f-body .donate-frm h1 {
    color: #000;
    font-family: "Bebas Neue", sans-serif;
    font-size: 50px !important;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 50px;
    text-transform: uppercase;
}

@media only screen and (max-width: 576px) {
    .f-body .donate-frm h1 {
        font-size: 36px;
    }
}

.f-body .donate-frm h1 span {
    display: block;
    font-weight: 400;
}

.f-body .donate-frm .imgg {
    position: absolute;
    bottom: 0px;
    right: 0px;
    z-index: 0;
}

.btn.btn-rnd {
    border-radius: 40px;
}

.btn.btn-#00A3FF {
    background-color: #00a3ff;
    cursor: pointer;
}

.vh {
    display: none;
}

.em {
    display: none;
}

.radio-group {
    display: flex;
    padding-left: 12px;
}

    .radio-group label.pl {
        display: flex;
        align-items: center;
    }

@media only screen and (max-width: 576px) {
    .radio-group label.pl {
        margin: 0px 14px 10px 0px;
    }
}

.radio-group label.pl input {
    margin-right: 10px;
    display: block;
}

.radio-group label.pl span {
    color: #211f3c;
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media only screen and (max-width: 576px) {
    .radio-group label.pl span {
        font-size: 11px;
    }
}

.checkbox-container {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}

    .checkbox-container label.pl {
        display: flex;
        margin: 0px;
        align-items: center;
        color: #211f3c;
        font-family: "Inter", sans-serif;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        justify-content: center;
        width: 100%;
    }

        .checkbox-container label.pl input {
            margin-right: 10px;
            display: block;
        }

@media only screen and (max-width: 576px) {
    .checkbox-container label.pl {
        font-size: 12px;
    }
}

.form-floating .form-control {
    border: none;
    border-bottom: 1px solid black;
    border-radius: 0px;
    background: transparent;
}

    .form-floating .form-control:focus {
        box-shadow: none;
        border: none !important;
        border-bottom: 1px solid #00a3ff !important;
    }

.form-floating label::after {
    background-color: transparent !important;
}

@media only screen and (max-width: 576px) {
    .form-floating label {
        font-size: 14px;
    }
}

.form-floating .form-select {
    border: none;
    border-bottom: 1px solid black;
    border-radius: 0px;
    background-color: transparent;
}

@media only screen and (max-width: 576px) {
    .form-floating .form-select {
        font-size: 14px;
    }
}

.form-floating .form-select:focus {
    box-shadow: none;
    border-bottom: 1px solid #00a3ff !important;
}

.form-floating label::after {
    background-color: transparent !important;
}

@media only screen and (max-width: 576px) {
    .form-floating label {
        font-size: 14px;
    }
}

/* Add your custom CSS styles here */
input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #0eaa00;
    border-radius: 3px;
    /* Adjust as needed for your design */
    outline: none;
    position: relative;
}

    input[type="checkbox"]::before {
        content: "\2713";
        /* Unicode checkmark character */
        font-size: 14px;
        /* Adjust as needed for your design */
        color: #0eaa00;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: none;
    }

    input[type="checkbox"]:checked::before {
        display: block;
    }

    input[type="checkbox"]:focus {
        box-shadow: 0 0 5px #0eaa00;
    }

/* Add your custom CSS styles here */
input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #00a3ff;
    outline: none;
    position: relative;
}

    input[type="radio"]::before {
        content: "";
        width: 10px;
        height: 10px;
        background-color: #00a3ff;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: none;
    }

    input[type="radio"]:checked::before {
        display: block;
    }

    input[type="radio"]:focus {
        box-shadow: 0 0 5px #00a3ff;
    }

#customAmount:focus {
    border: 1px solid #00a3ff;
}

.slider-item .slider-inner {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    border-radius: 0;
    overflow: hidden;
}

.slider-item .title-small {
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media only screen and (max-width: 576px) {
    .slider-item .title-small {
        font-size: 16px;
    }
}

.slider-item.slick-active .title-small {
    animation-duration: 2s;
    -webkit-animation-duration: 2s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
    animation-name: bounceInDown;
    -webkit-animation-name: bounceInDown;
}

.slider-item .title-big {
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 54px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 490px;
}

@media only screen and (max-width: 576px) {
    .slider-item .title-big {
        font-size: 28px;
    }
}

.slider-item .title-big span {
    color: #ffcb05;
}

.slider-item.slick-active .title-big {
    animation-duration: 2s;
    -webkit-animation-duration: 2s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
    animation-name: bounceInRight;
    -webkit-animation-name: bounceInRight;
}

.slider-item .price {
    font-size: 18px;
    letter-spacing: -0.05em;
    font-weight: 500;
    display: block;
    margin-bottom: 35px;
}

.slider-item.slick-active .price,
.slider-item.slick-active .description {
    animation-duration: 2s;
    -webkit-animation-duration: 2s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
    animation-name: bounceInLeft;
    -webkit-animation-name: bounceInLeft;
}

.slider-item .price .number-price {
    text-transform: uppercase;
    font-size: 28px;
    color: #65a15a;
    font-weight: 700;
    position: relative;
}

.slider-item .slider-infor .button {
    padding-top: 7px;
    padding-bottom: 7px;
    padding-right: 20px;
    padding-left: 20px;
    background: #65a15a;
    border: 1px solid #65a15a;
    color: #fff;
    margin-right: 5px;
    min-width: 110px;
    border-radius: 0;
}

.slider-item.slick-active .slider-infor .button {
    animation-duration: 2s;
    -webkit-animation-duration: 2s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
    animation-name: bounceInUp;
    -webkit-animation-name: bounceInUp;
}

.slider-item .slider-infor .button:last-child {
    margin-right: 0;
}

.slider-item .slider-infor .button:hover {
    background: #ffffff;
    border-color: #ffffff;
}

.slider-item.style1 .slider-inner {
    background-image: url(../static/banners/b1.png);
}

    .slider-item.style1 .slider-inner .slider-infor,
    .slider-item.style2 .slider-inner .slider-infor,
    .slider-item.style3 .slider-inner .slider-infor {
        /* padding-bottom: 126px;
  padding-top: 139px;
  padding-right: 680px;
  padding-left: 170px; */
        width: 100%;
        position: absolute;
        left: 0px;
        top: 0px;
    }

@media only screen and (max-width: 576px) {
    .slider-item.style1 .slider-inner .slider-infor,
    .slider-item.style2 .slider-inner .slider-infor,
    .slider-item.style3 .slider-inner .slider-infor {
        padding-bottom: 0px;
        padding-top: 0px;
        padding-right: 0px;
        padding-left: 0px;
        top: 50%;
        transform: translateY(-50%);
    }
}

.home-slider.style1 {
    padding-top: 30px;
}

.home-slider .slick-slider.nav-center > .slick-arrow {
    position: absolute;
    z-index: 15;
    bottom: 43px;
    display: inline-block;
    width: 52px;
    height: 52px;
    font-size: 30px;
    cursor: pointer;
    color: #fff;
    text-align: center;
    line-height: 52px;
    opacity: 1;
    right: 40px;
    visibility: visible;
    -moz-transition: all 0.45s ease;
    -webkit-transition: all 0.45s ease;
    -o-transition: all 0.45s ease;
    -ms-transition: all 0.45s ease;
}

    .home-slider .slick-slider.nav-center > .slick-arrow:first-child {
        right: 120px;
    }

.home-slider:hover .slick-slider.nav-center > .slick-arrow:first-child {
    /* left: 15px; */
}

.home-slider:hover .slick-slider.nav-center > .slick-arrow {
    /* right: 15px; */
    opacity: 1;
    visibility: visible;
}

.slider-owl .slick-dots {
    position: absolute;
    bottom: 50px;
    left: 45px;
    padding: 0px;
    margin: 0px;
    list-style: none;
    display: flex;
}

@media only screen and (max-width: 576px) {
    .slider-owl .slick-dots {
        display: none !important;
        bottom: 236px;
        left: 14px;
    }
}

.slider-owl .slick-dots li {
    margin: 0px 2.5px;
}

    .slider-owl .slick-dots li.slick-active::before {
        display: block;
        background-color: #fff0;
        border: 1px solid #00a3ff;
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 50%;
        cursor: pointer;
    }

    .slider-owl .slick-dots li::before {
        display: block;
        cursor: pointer;
        background-color: #fff;
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 50%;
    }

    .slider-owl .slick-dots li button {
        display: none;
        border: none;
    }

.rah {
    position: relative;
    overflow: hidden;
    padding: 136px 10px;
}

@media only screen and (max-width: 576px) {
    .rah {
        padding: 76px 10px;
    }
}

.rah h1 {
    margin-top: 30px;
    color: #000;
    font-family: "Inter", sans-serif;
    font-size: 42px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media only screen and (max-width: 576px) {
    .rah h1 {
        font-size: 18px;
    }
}

.rah h1 span {
    display: block;
    font-weight: 700;
}

.rah img {
    position: absolute;
    bottom: 0px;
    right: 0px;
    z-index: 0;
}

@media only screen and (max-width: 576px) {
    .rah img {
        width: 51%;
    }
}

.reciept {
    margin-top: 86px;
}

    .reciept .header {
        color: #000;
        font-family: Inter;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }

@media only screen and (max-width: 576px) {
    .reciept .header {
        font-size: 14px;
    }
}

.reciept .header .inner {
    font-weight: 400;
}

.reciept .mainrec {
    position: relative;
    margin-top: 60px;
}

@media only screen and (max-width: 576px) {
    .reciept .mainrec {
        overflow: hidden;
    }
}

.reciept {
    padding: 0 12px;
}

    .reciept .backing {
        position: absolute;
        z-index: 0;
        width: 100%;
        height: 100%;
    }

@media only screen and (max-width: 576px) {
    .reciept .backing {
        width: 100%;
        margin-left: 0px !important;
        margin-right: 0px !important;
    }
}

.reciept .cntct {
    position: relative;
    z-index: 2;
    padding: 33px 38px;
    width: 50%;
    margin: 0 auto;
}

@media only screen and (max-width: 576px) {
    .reciept .cntct {
        padding: 33px 40px;
    }
}

.reciept .sliptxt1 {
    margin: 20px 0px !important;
    color: #211f3c;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media only screen and (max-width: 576px) {
    .reciept .sliptxt1 {
        font-size: 12px;
    }
}

.reciept .sliptxt1 span {
    font-weight: 700;
}

.reciept .sliptxt2 {
    margin: 0px 0px 5px 0px !important;
    color: #29a7df;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}

@media only screen and (max-width: 576px) {
    .reciept .sliptxt2 {
        font-size: 11px;
        font-weight: 400;
    }
}

.reciept .sliptxt3 {
    margin: 12px 0px 12px 0px !important;
    color: #211f3c;
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

@media only screen and (max-width: 576px) {
    .reciept .sliptxt3 {
        font-size: 12px;
    }
}

.reciept .sliptxt4 {
    margin: 12px 0px 12px 0px !important;
    color: #211f3c;
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: center;
}

@media only screen and (max-width: 576px) {
    .reciept .sliptxt4 {
        font-size: 12px;
    }
}

.reciept .sliptxt5 {
    margin: 0px 0px 50px 0px !important;
    color: #7a7a7a;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

@media only screen and (max-width: 576px) {
    .reciept .sliptxt5 {
        font-size: 11px;
    }
}

.reciept .sliptxt6 {
    margin: 0px 0px 16px 0px !important;
    color: #7a7a7a;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align: end;
}

@media only screen and (max-width: 576px) {
    .reciept .sliptxt6 {
        font-size: 11px;
    }
}

.reciept .sliptxt7 {
    color: #211f3c;
    font-family: "Inter", sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}

@media only screen and (max-width: 576px) {
    .reciept .sliptxt7 {
        font-size: 16px;
    }
}

.reciept .sliptxt7 span {
    color: #00a3ff;
}

.reciept .sliptxt7 div {
    margin-top: 4px;
    color: #211f3c;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media only screen and (max-width: 576px) {
    .reciept .sliptxt7 div {
        font-size: 11px;
    }
}

.reciept .sliptxt8 {
    color: #000;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

@media only screen and (max-width: 576px) {
    .reciept .sliptxt8 {
        font-size: 12px;
    }
}

.svg svg {
    max-width: 100%;
}

@media only screen and (max-width: 576px) {
    .dr a {
        width: 100%;
    }
}

@media only screen and (max-width: 576px) {
    .o-c {
        margin-bottom: 20px;
    }
}

.separator {
    height: 1px;
    border-top: 0.5px dashed black;
    padding: 5px;
    width: 100%;
    display: block;
}

.span-footer-mal {
    color: #333;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display: block;
    margin-bottom: 4px;
    margin-top: 9px;
}

.links-footer-mal {
    display: flex;
    flex-direction: column;
    list-style: none;
    color: #333;
    margin-bottom: 0px;
    padding: 0px;
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.footer-mar {
    margin-bottom: 24px;
}

.links-footer-mal li a {
    text-decoration: none;
    color: inherit;
}

.mal-footer-desk {
    display: grid;
}

.slider-item.slick-active .animation-kk {
    animation-duration: 2s;
    -webkit-animation-duration: 2s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
    animation-name: fadeInDown;
    -webkit-animation-name: fadeInDown;
}

.img-big {
    display: block !important;
}

.img-small {
    display: none !important;
}

.flex-help {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.mr-rr {
    margin-right: 12px;
}

@media (min-width: 0px) and (max-width: 600px) {
    .m-flex {
        display: flex;
        flex-direction: row;
    }

    .mr-rr {
        margin-right: 0px;
    }

    .flex-help {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .reciept .header {
        color: #000;
        font-family: Inter;
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }

    .footer-mar {
        margin-bottom: 8px;
    }

    .radio-group label.pl input {
        margin-right: 3.63px;
        display: block;
    }

    input[type="radio"] {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        border: 2px solid #00a3ff;
        outline: none;
        position: relative;
    }

    .reciept .mainrec {
        position: relative;
        margin-top: 24px;
        padding: 0px !important;
    }

    .mal-footer-desk {
        display: none !important;
    }

    .home-slider .slick-slider.nav-center > .slick-arrow:first-child {
        left: 15px;
    }

    .home-slider .slick-slider.nav-center > .slick-arrow {
        position: absolute;
        z-index: 15;
        bottom: 0px;
        display: inline-block;
        width: 52px;
        height: 52px;
        font-size: 30px;
        cursor: pointer;
        color: #fff;
        text-align: center;
        line-height: 52px;
        opacity: 1;
        right: 15px;
        visibility: visible;
        -moz-transition: all 0.45s ease;
        -webkit-transition: all 0.45s ease;
        -o-transition: all 0.45s ease;
        -ms-transition: all 0.45s ease;
    }

    .mt-mal-m {
        margin-top: 8px;
    }

    .mal_m--logo {
        width: 60px !important;
    }

    .mal_m--right-frame {
        width: 125px !important;
    }

    .mal_m--head {
        top: 62% !important;
        left: 50% !important;
    }

    .mal_m--banner-ball {
        width: 240px !important;
        height: 240px !important;
        font-size: 20px;
        line-height: 1.2;
    }

    .mal_m--donate-header {
        font-size: 20px !important;
        margin-bottom: 30px !important;
    }

    .radio-group {
        display: flex;
        flex-flow: wrap;
        padding-left: 0px;
    }

    .wid-section-m {
        width: 100%;
        justify-content: space-between;
    }

    .my-sec-2 {
        margin-left: 0px !important;
    }

    footer .start {
        padding: 0px 0px;
    }

    .img-big {
        display: none !important;
    }

    .img-small {
        display: block !important;
        left: 0;
        width: 100%;
        position: absolute;
        top: 50px;
    }
}

@media (min-width: 600px) and (max-width: 1200px) {
    .reciept .mainrec {
        position: relative;
        margin-top: 24px;
        padding: 0px !important;
        /* width: 70%; */
    }

    footer .start {
        padding: 0px 0px;
    }

    .img-rec {
        position: absolute;
        top: 80px;
        left: 60px;
    }
    /* .img-big {
    display: none !important;
  }

  .img-small {
    display: block !important;
  } */
    .reciept .header {
        color: #000;
        font-family: Inter;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }

    .mal_m--banner-ball {
        width: 290px;
        height: 290px;
        font-size: 22px;
    }

    .mal_m--head {
        top: 54% !important;
        left: 53% !important;
    }

    .mal_m--donate-header {
        font-size: 30px !important;
        margin-bottom: 30px !important;
    }

    .wid-section-m {
        /* width: 60%; */
    }

    .w-gandhi {
        width: 26%;
    }
}

@media (min-width: 1200px) and (max-width: 1250px) {
    .reciept .header {
        color: #000;
        font-family: Inter;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }

    .img-rec {
        position: absolute;
        top: 80px;
        left: 60px;
    }

    .mal_m--banner-ball {
        width: 290px;
        height: 290px;
        font-size: 22px;
    }

    .mal_m--head {
        top: 54% !important;
        left: 53% !important;
    }

    .mal_m--donate-header {
        font-size: 48px !important;
        margin-bottom: 30px !important;
    }

    .wid-section-m {
        /* width: 60%; */
    }

    .w-gandhi {
        width: 26%;
    }
}

@media (min-width: 1250px) and (max-width: 1500px) {
    .reciept .header {
        color: #000;
        font-family: Inter;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }

    .img-rec {
        position: absolute;
        top: 80px;
        left: 60px;
    }

    .mal_m--banner-ball {
        width: 354px;
        height: 354px;
        font-size: 24px;
    }

    .mal_m--head {
        top: 56% !important;
        left: 53% !important;
    }

    .mal_m--donate-header {
        font-size: 54px !important;
        margin-bottom: 30px !important;
    }

    .wid-section-m {
        /* width: 60%; */
    }

    .w-gandhi {
        width: 17%;
    }
}

@media (min-width: 1500px) and (max-width: 150000px) {
    .w-gandhi {
        width: 16%;
    }

    .reciept .header {
        color: #000;
        font-family: Inter;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }

    .img-rec {
        position: absolute;
        top: 80px;
        left: 60px;
    }

    .mal_m--banner-ball {
        width: 350px;
        font-size: 22px;
        height: 350px;
    }

    .mal_m--head {
        top: 56% !important;
        left: 51.5% !important;
    }

    .mal_m--donate-header {
        font-size: 54px !important;
        margin-bottom: 30px !important;
    }

    .wid-section-m {
        /* width: 60%; */
    }
}

.fa .text-primary {
    color: black !important;
    stroke: black !important;
    fill: black !important;
}

.fa-angle-right {
    /* color: black !important;
  stroke: black !important;
  fill: black !important; */
}

.donations-progress {
    height: 12px;
    background: #00A3FF;
    border-radius: 0 5px 5px 0;
    display: inline-block !important;
    margin: 0 10px;
}

.carousel-indicators [data-bs-target] {
    background: #D9D9D9;
    border-radius: 10px;
    border: 0 !important;
    width: 12px;
    height: 12px;
}

.carousel-indicators .active {
    background: #00A3FF;
}

.carousel-indicators {
    margin-bottom: 0px !important;
}

.banner-section {
    height: auto;
    position: relative;
}

.main_slider {
    position: relative;
    width: 100%;
    margin-right: -10px;
    float: right;
}

.main_slider_text {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.pos_rel {
    position: relative;
}

.main_slider_text img {
    width: 100%;
    margin: auto;
    padding: 7% 0;
}

.rahulbg_1 {
    position: absolute;
    left: 0;
    top: 2%;
    width: 50%;
}

#master-head {
    width: 100%;
    background: rgb(150,211,240);
    background: linear-gradient(0deg, rgba(150,211,240,1) 0%, rgba(255,255,255,1) 78%);
}

.donations_bg {
    position: absolute;
    right: 0;
    top: 0%;
    width: 40%;
    z-index: -1;
}

.logo-dark {
    width: 75%;
}

.btn-donate {
    background: #00A3FF;
    border-color: #00A3FF;
    padding: 16px 44px;
    text-transform: uppercase;
    border-radius: 40px;
    width: 200px;
    color: #fff;
}

    .btn-donate:hover {
        color: #fff;
    }

.nav-item a {
    text-transform: uppercase;
    color: #000 !important;
    font-size: 12px !important;
    font-weight: bold;
    padding: 10px 20px !important;
}

.chk label, .chk span {
    text-transform: uppercase;
    font-family: "Bebas Neue", sans-serif;
    font-size: 20px;
    font-weight: 400;
}

.chk {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 0;
}

    .chk .form-control {
        font-family: "Bebas Neue", sans-serif;
        font-size: 20px;
        font-weight: 400;
    }

    .chk span {
        color: #1a498b
    }

.input_div {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 40%;
}

    .input_div input {
        margin-right: 10px;
    }

.nyay_donation {
    font-size: 74px;
    font-family: "Bebas Neue", sans-serif;
    text-transform: uppercase;
    color: #013e5a;
    margin-right: 5%;
    font-weight: 400;
}

.nyay_donation_l {
    font-size: 44px;
    font-family: "Bebas Neue", sans-serif;
    text-transform: uppercase;
    color: #013e5a;
    margin-right: 5%;
    font-weight: 400;
}

.nyay_donation_title {
    margin-right: 0%;
}

.nyay_donation_l_title {
    font-size: 34px;
    font-family: "Bebas Neue", sans-serif;
    text-transform: uppercase;
    color: #013e5a !important;
    font-weight: 400;
}

.nyay_donation_l_title1 {
    font-size: 25px;
    font-family: "Bebas Neue", sans-serif;
    text-transform: uppercase;
    color: #013e5a !important;
    font-weight: 400;
}

.nyay_donation_l_span {
    font-size: 34px;
    font-family: "Bebas Neue", sans-serif;
    text-transform: uppercase;
    color: #013e5a !important;
    font-weight: 400;
}

.nyay_donation_total {
    font-size: 70px;
    font-family: "Bebas Neue", sans-serif;
    text-transform: uppercase;
    color: #013e5a;
    font-weight: 600;
}

.donations_count {
    border: 2px solid #013e5a;
    border-radius: 20px;
    padding: 20px;
    height: auto;
}

.pad-10 td {
    padding: 5px 0;
}

.main_slider_text_h {
    position: absolute;
    top: 10%;
    left: 4%;
    width: 50%;
    display: flex;
}

    .main_slider_text_h img {
        width: 80%;
    }

.f_hindi {
    font-family: "Khand", sans-serif !important;
}

.f_h_600 {
    font-weight: 600 !important;
}

.thankyou_img img {
    width: 70%;
}

.thankyou_logo img {
    width: 30%;
    margin-bottom: 5%;
}

.sch_popup {
    width: 90%;
    background: rgb(150,211,240);
    background: linear-gradient(135deg, rgba(150,211,240,0.9024859943977591) 0%, rgba(255,255,255,0.9024859943977591) 50%, rgba(181,225,244,0.9024859943977591) 100%);
    border-radius: 30px;
    border: 2px solid #7fcaec;
    padding: 20px 40px;
    position: absolute;
    bottom: 5%;
}

.txt_st {
    width: 100%;
    display: inline-block;
}

.txt_sel {
    width: 50%;
}

.form {
    width: 100%;
}

/* The snackbar - position it at the bottom and in the middle of the screen */
#snackbar {
    visibility: hidden; /* Hidden by default. Visible on click */
    width: 250px; /* Set a default minimum width */
    margin: auto; /* Divide value of min-width by 2 */
    background-color: #333; /* Black background color */
    color: #fff; /* White text color */
    text-align: center; /* Centered text */
    border-radius: 8px; /* Rounded borders */
    padding: 16px; /* Padding */
    position: fixed; /* Sit on top of the screen */
    z-index: 9999; /* Add a z-index if needed */
    left: 0; /* Center the snackbar */
    bottom: 30px; /* 30px from the bottom */
    right: 0;
}

    /* Show the snackbar when clicking on a button (class added with JavaScript) */
    #snackbar.show {
        visibility: visible; /* Show the snackbar */
        /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
        -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
        animation: fadein 0.5s, fadeout 0.5s 2.5s;
    }

.backlink {
    text-decoration: none;
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.form-group label {
    padding: 10px 0px 10px 5px !important;
    font-size: 14px;
}

.form-group .form-control {
    border: none;
    border-bottom: 1px solid black;
    border-radius: 0px;
    background: transparent;
}

.form-amntctrl {
    border: none !important;
    border-bottom: 1px solid black !important;
    border-radius: 0px !important;
    background: transparent !important;
}

.form-group select {
    border: none;
    border-bottom: 1px solid black;
    border-radius: 0px;
    background: transparent;
}

.form-group .form-control:focus {
    box-shadow: none;
    border: none !important;
    outline: none !important;
    border-bottom: 1px solid #00a3ff !important;
}

.form-group select:focus {
    box-shadow: none;
    border: none !important;
    outline: none !important;
    border-bottom: 1px solid #00a3ff !important;
}

.form-amntctrl:focus {
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
    border-bottom: 1px solid #00a3ff !important;
}

.form-group label::after {
    background-color: transparent !important;
}

.cntct {
    position: relative;
}

.tshirt {
    position: absolute;
    right: 5%;
    bottom: 25%;
    width: 30%;
}

.footer {
    background: url(../src/static/bjny_Footer.png) no-repeat;
    padding: 10px;
    background-size: cover;
}

.copy-right {
    color: #fff;
    font-size: 14px;
}

.social-icons {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column;
    padding: 10px 0;
}

ul.social-links {
    display: flex;
    align-items: flex-start;
    justify-content: end;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

    ul.social-links li {
        padding: 5px 0;
        list-style-type: none;
        text-align: center;
        width: 100%;
    }

        ul.social-links li a {
            font-size: 14px;
            color: #fff;
            text-decoration: none;
        }

.social-link {
    font-size: 18px;
    color: #fff;
    margin: 0 15px;
}

    .social-link:last-child {
        margin-right: 0;
    }

.icons {
    display: flex;
    align-items: center;
}

.language {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    background: #fff;
}

#languageDiv {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.activeLang {
    color: #2aa9e0;
}

._fixedBlock {
    height: 450px;
}

.sch_popup_home {
    top: 0%;
    margin: auto;
    left: 0;
    right: 0;
    z-index: 9999;
    bottom: unset;
    width: 70%;
    background: rgb(150,211,240);
    background: linear-gradient(135deg, rgba(150,211,240,1) 0%, rgba(255,255,255,1) 50%, rgba(181,225,244,1) 100%);
}

.modal_close {
    float: right
}

#languageDiv a {
    font-size: 13px !important;
    padding: 0px 10px;
    color: #000;
    text-decoration: none;
}

    #languageDiv a span {
        margin-left: 10px;
    }

.activeLang {
    font-weight: bold;
}

.countdown {
    padding: 10px 0;
    position: relative;
}

    .countdown h3 {
        color: #fff;
        text-align: center;
        padding: 20px 0 10px;
    }

.toprefer {
    color: #1a498b !important;
    text-transform: uppercase;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
}

.crsl_bg {
    background: url(../src/static/bjny_corousel_bg.jpg) no-repeat;
    position: relative;
    padding-bottom: 5%;
    background-size: cover;
    background-attachment: fixed;
}

.crsl_header {
    width: 100%;
    display: flex;
    align-items: center;
}

.crsl_title {
    width: 40%;
    border-radius: 0 0 60px 0;
    background: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 9;
}

    .crsl_title h4 {
        font-size: 4vw;
        color: #1a498b;
        text-transform: uppercase;
        font-family: "Bebas Neue", sans-serif;
        font-weight: 400;
        margin: 0;
        line-height: 60px;
    }

.events_bg {
    background: url(../src/static/UC_events_bg.jpg) no-repeat;
    position: relative;
    padding-bottom: 5%;
    background-size: cover;
    background-attachment: fixed;
}

.events_c_bg {
    background: url(../src/static/UC_events_bg1.jpg) no-repeat;
    position: relative;
    padding-bottom: 5%;
    background-size: cover;
    background-attachment: fixed;
}

.events_header {
    width: 100%;
    display: flex;
    align-items: center;
}

.events_title {
    width: 40%;
    border-radius: 0 0 60px 0;
    background: rgb(205,79,42);
    background: linear-gradient(80deg, rgba(205,79,42,1) 0%, rgba(17,39,71,1) 49%, rgba(7,103,69,1) 100%);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 9;
}

.events_title_bdr {
    border-radius: 0 0 60px 60px !important;
}

.events_title h4 {
    font-size: 3vw;
    color: #fff;
    text-transform: uppercase;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    margin: 0;
    line-height: 1;
}

.dashed {
    border: 1px dashed #fff;
    height: 2px;
    width: 100%;
    top: 10%;
    left: 0;
    z-index: 0;
    opacity: 1;
    position: absolute;
}

.dashed1 {
    border: 2px dashed #fff;
    height: 2px;
    width: 100%;
    bottom: 10%;
    left: 0;
    z-index: 0;
    opacity: 1;
    position: absolute;
}

.crsl_title span {
    font-size: 30px;
    color: #191919;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
}

.name_title {
    padding: 2% 0% 1%;
    width: 50%;
}

.name_title_hi h1 {
    font-size: 5vw;
    color: #fff;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    line-height: 60px;
    letter-spacing: 3px;
    padding-top: 8%;
}

.events_block .name_title {
    padding: 2% 0% 0%;
    width: 100%;
}

.events_block .event_location {
    width: 100%;
    margin-bottom: 10px;
    display: block;
}

    .events_block .event_location span {
        font-size: 2vw;
        background: #2ca8df;
        width: auto;
        padding: 5px 10px;
        font-family: "Bebas Neue", sans-serif;
        font-weight: 400;
        line-height: 1;
        color: #fff;
        display: inline-block;
    }

.events_block .name_title h1 {
    font-size: 5vw;
    color: #1a498b;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 500;
    line-height: 1;
    padding-top: 2%;
}

.font_3 {
    font-size: 4vw !important;
    font-weight: 600;
}

.events_block .events_date {
    width: 100%;
    display: flex;
    align-items: center;
}

    .events_block .events_date .date1 {
        border-radius: 15px;
        background: #144282;
        font-size: 5vw;
        color: #fff;
        line-height: 1;
        padding: 10px;
        font-family: "Bebas Neue", sans-serif;
        font-weight: 500;
        margin-right: 10px;
    }

    .events_block .events_date .day {
        font-size: 3vw;
        color: #144282;
        line-height: 1;
        font-family: "Bebas Neue", sans-serif;
        font-weight: 500;
        text-align: left;
    }

.events_rahul_bg1 {
    position: absolute;
    right: 0;
    top: 0;
}

    .events_rahul_bg1 img {
        width: 60% !important;
        float: right;
    }

.events_rahul_bg {
    position: absolute;
    right: 0;
    bottom: 0;
}

    .events_rahul_bg img {
        width: 55% !important;
    }

.name_title h1 {
    font-size: 5vw;
    color: #fff;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    line-height: 1;
    padding-top: 8%;
}

.name_title span {
    font-size: 2vw;
    color: #fff;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    text-align: center;
}

.logo_mobile {
    display: none;
}

.logo_web {
    display: block;
}

.right_title {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}

.left_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.name_title label {
    font-size: 2vw;
    border: 1px solid #fff;
    color: #fff;
    padding: 5px 10px;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    margin-bottom: 5px;
    white-space: nowrap;
}

.owl-nav {
    display: block !important;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 32px;
    width: 100%;
    z-index: 999;
}

.owl-prev {
    left: 1%;
    position: absolute;
    background: url(../src/static/arrow_left.png) no-repeat !important;
    width: 32px;
    height: 32px;
    background-size: contain !important;
}

.owl-next {
    right: 1%;
    position: absolute;
    background: url(../src/static/arrow_right.png) no-repeat !important;
    width: 32px;
    height: 32px;
    background-size: contain !important;
}

.close {
    position: absolute;
    right: 2%;
    top: 5%;
    border-radius: 50px;
    background: #013e5a !important;
    color: #fff;
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: 24px;
    padding: 4px 6px;
    cursor: pointer;
}

.pad-50 {
    padding: 0 8%;
}

.social {
    display: flex;
    justify-content: space-between;
}

.success_msg {
    width: 40%;
    position: fixed;
    margin: auto;
    top: 0;
    padding: 2% 5%;
    left: 0;
    bottom: 0;
    right: 0;
    height: 30vh;
    background: url(../src/static/success_bg.jpg) no-repeat;
    background-size: auto;
    border-radius: 10px;
    z-index: 99;
    border: 1px solid #00a3ff;
}

.success_overlay {
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    position: fixed;
    z-index: 99;
    left: 0;
    display: none;
    top: 0;
}

.success_msg p {
    text-align: center;
    padding: 10px 0;
    font-weight: bold;
}

.contact {
    text-align: right;
}

.email {
    text-align: left;
}

.kms {
    display: none;
}

.kms {
    text-transform: uppercase;
    color: #29a7df !important;
    font-size: 12px !important;
    font-weight: bold;
    padding: 10px 20px !important;
}

.nav-item span {
    text-transform: uppercase;
    color: #29a7df !important;
    font-size: 40px !important;
    font-weight: 900;
    padding: 7px 20px !important;
}

.fixed_pop {
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    left: 0;
    top: 0;
}

    .fixed_pop .sch_popup {
        position: absolute !important;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        margin: auto;
        width: 50%;
        height: 480px;
    }

        .fixed_pop .sch_popup .sliptxt1 {
            margin-bottom: 30px;
        }

.venue {
    font-size: 4vw !important;
}

.date {
    font-size: 3vw !important;
}

@media only screen and (max-width: 767px) {
    .events_title_bdr {
        border-radius: 0 0 20px 20px !important;
    }

    .title {
        font-size: 7vw !important;
    }

    .fixed_pop .sch_popup {
        width: 90%;
    }

    .date {
        font-size: 7vw !important;
    }

    .venue {
        font-size: 8vw !important;
    }

    .nyay_donation_total {
        font-size: 42px;
    }

    .contact, .email {
        text-align: center;
    }

    .nyay_donation_l {
        font-size: 25px;
    }

    .right_title {
        width: 90%;
        margin: auto;
    }

    #languageDiv a {
        padding: 0px 10px;
    }

    .donations_count {
        height: auto;
        max-height: initial;
    }

    .success_msg {
        width: 90%;
        height: 25vh;
    }

    .copy-right {
        padding-top: 10px;
    }

    .social {
        flex-direction: column;
        align-items: center;
    }

    .sch_popup_home {
        height: 460px;
    }

    #_tb1 td, #_tb1 th {
        font-size: 12px;
    }

    .crsl_title {
        width: 75%;
    }

        .crsl_title h4 {
            font-size: 8vw;
            line-height: 36px;
        }

        .crsl_title span {
            font-size: 24px
        }

    .name_title {
        width: 100%;
    }

        .name_title h1 {
            font-size: 10vw;
            line-height: 1;
            padding-top: 3%;
        }

        .name_title span {
            font-size: 5vw;
            line-height: 1;
        }

        .name_title label {
            font-size: 5vw;
            margin-bottom: 0;
        }

    .nyay_donation_title {
        margin-right: 0%;
        width: 100%;
        /*align-items: center !important;*/
    }

    .name_title {
        margin: 0% 0% 1%;
        text-align: center;
    }

    .name_title1 {
        margin: 0% 0% 1%;
        text-align: center;
    }

    .dashed1 {
        display: none;
    }

    .mflex {
        flex-direction: column;
        align-items: center !important
    }

    .logo_mobile {
        display: block;
    }

    .logo_web {
        display: none;
    }

    .pos_rel {
        position: unset;
    }

    ul.social-links {
        width: 100%;
        padding: 0;
    }

    .main_slider_text_h {
        width: 100%;
        left: 0;
    }

        .main_slider_text_h img {
            width: 90%;
        }

    .social-icons {
        flex-direction: column;
        align-items: center;
    }

    .main_slider_text {
        width: 100%;
    }

    .sch_popup {
        position: absolute;
        left: 0;
        width: 100%;
    }

    .form-floating label {
        padding: 0 10px !important;
    }

    .main_slider_text img {
        width: 90%;
    }

    .banner-section {
        height: auto;
    }

    .main_slider {
        width: 150%;
    }

    .btn-donate {
        width: 90%;
    }

    .donations_bg {
        width: 100%;
    }

    .rahulbg_1 {
        display: none;
        /*  top: inherit !important;
        bottom:0;
        width:65%;*/
    }

    .pad-b-45 {
        padding-bottom: 50%;
    }

    .f-body .donate-frm h1 {
        font-size: 34px !important;
        margin-top: 0%;
    }

    .main_slider_text_hi {
        width: 100%;
    }

    .reciept .cntct {
        width: 100%;
        padding: 33px 0 140px;
    }

    .reciept {
        margin-top: 10% !important;
    }

    .tshirt {
        width: 50%;
        bottom: 0;
    }

    #languageDiv a span {
        display: none;
    }

    #languageDiv {
        flex-wrap: wrap;
    }

        #languageDiv a {
            width: 50%;
            font-size: 12px !important;
            margin: 5px 0;
        }

    .kms {
        display: block !important;
    }

    .mble_kms {
        display: none;
    }

    .fixed_pop .sch_popup {
        width: 90%;
        height: 600px !important;
    }

        .fixed_pop .sch_popup .form-floating, .fixed_pop .sch_popup .sliptxt1 {
            margin-bottom: 30px;
        }

    #_tb1 td, #_tb2 td, #_tb3 td {
        font-size: 10px;
    }

    .close {
        padding: 5px 7px;
    }

    .events_rahul_bg1 {
        display: none;
    }

    .events_rahul_bg {
        display: none;
    }

    .owl-prev, .owl-next {
        width: 20px;
        height: 20px;
    }

    .events_block {
        text-align: center;
    }

        .events_block .name_title h1 {
            font-size: 7vw;
        }

        .events_block .event_location span {
            font-size: 4vw;
        }

    .events_date {
        justify-content: center;
    }

    .events_block .events_date .date1 {
        font-size: 7vw;
        border-radius: 10px;
    }

    .events_block .events_date .day {
        font-size: 4vw;
    }

    #_tb1 td, #_tb2 td, #_tb3 td {
        font-size: 12px !important;
    }

    .receipt th, .receipt td {
        font-size: 10px !important;
    }
}

@media only screen and (max-width: 390px) {

    .main_slider_text img {
        width: 100%;
    }
}

@media only screen and (min-width: 768px) and (max-width:1023px) {
    .receipt th, .receipt td {
        font-size: 10px !important;
    }

    .title {
        font-size: 5vw !important;
    }

    .events_rahul_bg {
        display: none;
    }

    .events_rahul_bg1 {
        display: none;
    }

    .owl-prev, .owl-next {
        width: 20px;
        height: 20px;
    }

    .events_block {
        text-align: center;
    }

        .events_block .name_title h1 {
            font-size: 7vw;
        }

        .events_block .event_location span {
            font-size: 4vw;
        }

    .events_date {
        justify-content: center;
    }

    .events_block .events_date .date1 {
        font-size: 7vw;
        border-radius: 10px;
    }

    .events_block .events_date .day {
        font-size: 4vw;
    }

    .date {
        font-size: 7vw !important;
    }

    .venue {
        font-size: 8vw !important;
    }

    .fixed_pop .sch_popup {
        width: 90%;
        height: 500px;
    }

        .fixed_pop .sch_popup .form-floating, .fixed_pop .sch_popup .sliptxt1 {
            margin-bottom: 30px;
        }

    .kms {
        display: block !important;
    }

    .mble_kms {
        display: none;
    }

    .nyay_donation_l {
        font-size: 25px;
    }

    .right_title {
        width: 90%;
        margin: auto;
    }

    .crsl_title {
        width: 75%;
    }

    .donations_count {
        height: auto;
        max-height: initial;
    }

    .crsl_title h4 {
        font-size: 6vw;
        line-height: 36px;
    }

    .crsl_title span {
        font-size: 24px
    }

    .name_title {
        width: 100%;
    }

        .name_title h1 {
            font-size: 10vw;
            line-height: 1;
        }

        .name_title span {
            font-size: 4vw;
        }

        .name_title label {
            font-size: 4vw;
        }

    .nyay_donation_title {
        margin-right: 0%;
        width: 100%;
        /* align-items: center !important;*/
    }

    .name_title {
        margin: 3% 0% 1%;
        text-align: center;
    }

    .name_title1 {
        margin: 3% 0% 1%;
        text-align: center;
    }

    .dashed1 {
        display: none;
    }

    .main_slider_text {
        width: 96%;
        top: 10%;
    }

    .sch_popup {
        position: absolute;
        left: 0;
        width: 100%;
    }

    .form-floating label {
        padding: 0 10px !important;
    }

    .main_slider_text img {
        width: 90%;
    }

    .banner-section {
        height: auto;
    }

    .main_slider {
        width: 100%;
    }

    .btn-donate {
        width: 90%;
    }

    .donations_bg {
        width: 100%;
        z-index: -1;
    }

    .rahulbg_1 {
        display: none;
        /*top: inherit !important;
        bottom: 0;
        width: 55%;*/
    }

    .pad-b-45 {
        padding-bottom: 45%;
    }

    .f-body .donate-frm h1 {
        font-size: 34px !important;
        margin-top: 0%;
    }

    .main_slider_text_hi {
        width: 80%;
    }

    .reciept .cntct {
        width: 100%;
        padding: 33px 0 140px;
    }

    .reciept {
        margin-top: 10% !important;
    }

    .tshirt {
        width: 50%;
        bottom: 0;
    }

    .nyay_donation {
        font-size: 60px;
        text-align: center;
    }

    nyay_donation_l {
        font-size: 30px;
        text-align: center;
    }

    .total_mobi {
        flex-direction: column;
        justify-content: center;
    }

    .contact, .email {
        text-align: center;
    }

    #languageDiv a span {
        display: none;
    }

    #languageDiv {
        flex-wrap: wrap;
    }

        #languageDiv a {
            width: 50%;
            font-size: 12px !important;
            margin: 5px 0;
        }
}
