@import url('https://fonts.googleapis.com/css2?family=Poppins:ital@1&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
/* ----------------All page Heading Name Start----------------- */
.header-sec{
    background-color: #99ADFF;
    margin-top: 30px;
}
.header{
    height: 60px;    
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    line-height: 2.2;
    margin-left: 0px;
    margin-bottom: 1.5rem;
}
/* ----------------All page Heading Name End----------------- */

/*------Navigation use of Css Start----*/

/* .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    --bs-gutter-x: -0.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto;
} */
.navbar{
    position: sticky;
    top: 0px;
    z-index: 100;
}

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

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: #C3C3C3;
}

.navbar-toggler {
    margin-top: 7px;
    justify-content: center;
    /* background-color: white; */
    background-color: #FFFFFF !important;
    border: 1px solid #8AFAF3 !important;
}

.navbar-collapse {
    margin-left: 0px;
    margin: 1px;
    z-index: 5;

}

.navbar-nav a {
    color: #ffffff;
    font-size: 18px;
    text-align: center;
}

.error{
    color:red;
}

.navbar .nav-item:hover .dropdown-menu {
    display: block;
}

.navbar-nav a:hover {
    color: #C3C3C3;
    background-color: #3127FF;

}

/* .dropdown-menu {
    background-color: #0022AF;
} */

.navbar-toggler:hover {
    border: 1px solid rgb(17, 13, 255);
    color: rgb(6, 27, 148);
}


.custom-navbar-toggler{
    position: relative;
    height: 30px;
    width: 30px;
    border: 2px solid green;
    padding: 10px;
    border-radius: 100px;    
    margin-left: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-navbar-toggler i{
    font-size: 15px;
}


/* Side menu styles */
.side-menu {
    position: fixed;
    top: 0;
    right: -265px; /* Initially hidden off-screen */
    width: 260px;
    height: 100%;
    background: #fff;
    color: var(--theme-secondary-color);
    transition: right 0.3s ease; /* Smooth sliding effect */
    z-index: 1000;
    overflow: scroll;
    -webkit-box-shadow: -1px 1px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: -1px 1px 5px 0px rgba(0,0,0,0.75);
    box-shadow: -1px 1px 5px 0px rgba(0,0,0,0.75);
  }
  
  .side-menu.open {
    right: 0; /* Slide in */
  }
  
  .side-menu .close-btn {
    background: none;
    border: none;
    color: var(--theme-secondary-color);
    font-size: 30px;
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
  }
  
  .menu-items {
    list-style: none;
    padding: 0;
    margin: 50px 0 0;
  }
  
  .menu-items li {
    padding: 15px;
    border-bottom: 1px solid #555;
  }
  
  .menu-items a {
    color: var(--theme-secondary-color);
    text-decoration: none;
    display: block;
    padding: 10px 18px 10px 18px;
    border-bottom: 1px solid darkgray;
  }
  
  .c-accordiaon-button{
    background-color: #fff !important;
    color: var(--theme-secondary-color) !important;
    font-weight: 200 !important;
  }
  
  .mobile-menu-dropdown{
    list-style-type: none;
    padding-left: 0px;
  }
  
  .mobile-menu-dropdown .m-dropdown-li{
    padding: 0px !important;
    padding: 5px !important;
    border-bottom: 0px;
  }
  .mobile-menu-dropdown .m-dropdown-li a{
    padding: 0px 0px 5px 0px !important;
  }
  
  .collapsible {
    position: relative;
    background-color: #fff;
    color: var(--theme-secondary-color);
    cursor: pointer;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    padding: 10px 18px 10px 18px;
    border-bottom: 1px solid darkgray; 
  }
  
  .collapsible::after{
    position:absolute;
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    right: 10px;
    content: "\f077"; /* FontAwesome icon code for chevron-down */
    font-family: "Font Awesome 5 Free"; /* Specify the FontAwesome font family */
    font-weight: 900; /* Set font weight for solid icons */
    color: var(--theme-secondary-color);
    display: inline-block; /* Ensure the icon is rendered correctly */ 
    transform: rotate(180deg);
    transition: transform .2s ease-in-out; 
  }
  
  .co-active, .collapsible:hover {
    background-color: #fff;
  }
  
  .co-content {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    background-color: #f1f1f1;
  }

/*------Navigation use of Css End----*/

.img-fluid {
    max-width: 100%;
    height: auto;
}

.my-5 {
    margin-top: 0.5rem !important;
    margin-bottom: -2.5rem !important;
}
.mt-3 {
    margin-top: 0rem!important;
}

.fw-bold {
    font-size: 30px;
    padding-bottom: 5px;
    margin-left: 8px;
}

.card {
    padding: 5px;
    background-color: #FDFDFD;

}

.card-img-top {
    border-radius: 50%;
    border: 2px solid #919191;
    padding: 1px;
}

.text-capitalize {
    margin-bottom: 0px;
}

.sectionsProfileImage {
    vertical-align: middle;
    size: 172px;
    width: 248px;
    border-radius: 5px 5px 0px 0px;
}

.py-5 {
    padding-top: -5rem !important;
    padding-bottom: 0rem !important;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
    background: 0 0;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit;
    display: none;
}

.owl-carousel.owl-loaded {
    display: block;
    margin-top: 0px;
}

/* ---- Footer Css Start------ */
.footer-menu p {
    margin-top: 3px;
}

.footer-menu ul {
    margin-top: -25px;
    margin-bottom: 1rem;
}

.btn-outline-light {
    margin-left: 10px;
}
.pt-2 {
    margin-top: -38px;
}

.footer-menu p {
    margin-top: 23px;
}

.btn-link {
    --bs-btn-color: #ffffff;
    --bs-btn-hover-color: #c3c3c3;
}

a {
    color: white;
    text-decoration: none;
}

a:hover {
    color: rgb(212, 212, 212);
    text-decoration: none;
}

.footer-menu a {
    color: white;
    font-size: 16px;
    font-weight: 100px;
    text-decoration: none;
}

.footer-widget .btn-link:hover {
    color: #C3C3C3;
}

.border-bottom {
    color: white;
    text-decoration: none;
}

.text-md-start {
    text-decoration: none;
}
.row {
    --bs-gutter-x: 4.5rem;
}

/* ---- Footer Css End------ */

/* --------------------------Css Gallery Page Start------------------------------------ */

.imagemodalbox {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: #616161;
    display: none;
}

.modalheader,
.modalbody {
    height: auto;
    width: 90%;
    position: relative;
    margin: auto;
    padding-top: 50px;
}

.modalheader span {
    color: white;
    font-size: 45px;
    cursor: pointer;
    display: block;
    text-align: right;
    font-weight: 800px;
    transition: opacity 0.5s;
}

.modalbody {
    text-align: center;
}

.modalbody img {
    animation-name: myani;
    animation-duration: 0.5s;
}

.imagegallery {
    overflow: hidden;
}

.thumbnailimage {
    height: auto;
    width: 100%;
    cursor: pointer;
    border: 3px solid #E1EDED;
    margin-top: 35px;
    overflow: hidden;
    margin-top: 0px;
}

@keyframes myani {
    from {
        transform: scale(0);
    }

    to {
        transform: (1);
    }
}

@media only screen and (max-width:700px) {
    .modalbody img {
        width: 100%;
    }

    .modalheader span {
        margin-top: 75px;
        font-size: 30px;
    }
}

/* --------------------------Css Gallery Page End-------------------------------------- */

/* --------------------------Css our-programm Page Start-------------------------------------- */
.our-programm {
    height: auto;
    width: 100%;
    cursor: pointer;
    margin-top: 35px;
    overflow: hidden;
    margin-top: 0px;
}

.newsgallery {
    overflow: hidden;
}

/* --------------------------Css our-programm Page End-------------------------------------- */

/* --------------------------Css News Page Start-------------------------------------- */
.news-time {
    height: auto;
    width: 100%;
    cursor: pointer;
    margin-top: 35px;
    overflow: hidden;
    margin-top: 0px;
}

/* --------------------------Css News Page End-------------------------------------- */

/* --------------------------Css join-Us Page Start-------------------------------------- */
.form-control:read-only {
    background-color: #e9ecef;
    opacity: 1;
}

.joinPassIcon {
    margin-right: 10px;
    margin-top: -27px;
}

.imageShow {
    height: 300px;
    width: 300px;
    margin-left: 45px;
}

.btn-outline-success {
    color: #198754;
    border-color: #198754;
    margin-top: 30px;
    margin-bottom: 30px;
    width: 20%;
}
.py-4 {
    /* margin: -1%; */
    padding: 40px;
}
/* --------------------------Css join-Us Page End-------------------------------------- */

/* --------------------------Css Login Page Start-------------------------------------- */
section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 35px;
}

.content {
    display: flex;
    flex-direction: row;
    width: 750px;
    height: 460px;
    border-radius: 10px;
    background: #F0F0F0;
    margin-bottom: 30px;
    margin-left: 289px;
}

.left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 250px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    background: url(/FrontEnds/img/ngic-img.avif);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.right {
    margin: 20px auto;
    padding: 10px;
}

.viewIcon {
    margin-right: 10px;
    margin-top: -27px;
}

.right .title h2 {
    text-align: center;
    font-size: 1.8em;
    margin-bottom: 20px;
    margin-top: 20px;
}

input {
    margin-top: 4px;
    padding: 8px 16px;
    width: 100%;
    border: none;
    border-radius: 5px;
    border: 1px solid #ccc;
    outline: none;
}

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

.inputbox {
    margin: 8px 0px;
    width: 305px;
    height: fit-content;
}

.create button {
    margin-top: 35px;
    width: 230px;
    height: 35px;
    border: none;
    border-radius: 25px;
    color: #fff;
    background: #000;
    margin-right: 5px;
}

.fas {
    font-weight: 900;
}

.create {
    display: flex;
    justify-content: center;
    width: 360px;
}

@media only screen and (max-width: 404px) {
    .left {
        width: 100%;
        border-radius: 0px;
    }

    .right {
        width: 100%;
    }

    .create button {
        margin-right: 35px;
    }

}

@media only screen and (max-width: 303px) {
    .left {
        width: 100%;
        border-radius: 0px;
    }

    .right {
        width: 100%;
    }

    .inputbox {
        margin: 8px 0px;
        width: 150px;
        height: fit-content;
    }

    .create {
        display: flex;
        justify-content: center;
        width: 150px;
        margin-left: 20px;
    }

    .form {
        margin-left: 30px;
    }

    .create button {
        margin-right: 35px;
    }
}

@media only screen and (max-width: 390px) {
    .left {
        width: 100%;
        border-radius: 0px;
    }

    .right {
        width: 100%;
    }

    .inputbox {
        margin: 8px 0px;
        width: 290px;
        height: fit-content;
    }

    .create {
        display: flex;
        justify-content: center;
        width: 200px;
        margin-left: 35px;
    }

    .form {
        margin-left: 5px;
    }
}

@media screen and (max-width: 780px) {
    .left {
        height: 250px;
        width: 100%;
        border-radius: 0px;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }
}

@media screen and (max-width: 780px) {
    .content {
        flex-direction: column;
        width: 400px;
        height: fit-content;
        margin: 20px auto;
    }
}

/* --------------------------Css Login Page End-------------------------------------- */

/* --------------------------Css Donate Us Page Start-------------------------------------- */

@media only screen and (max-width: 300px) {
    .card shadow {
        margin-left: 1px;
        margin-right: 1px;

    }
}

@media only screen and (max-width: 767px) {
    .card .shadow {
        margin-left: 1px;
        margin-right: 1px;

    }
}

.card-header {
    padding: 0.5rem 1rem;
    margin-bottom: 0px;
    background-color: rgba(0, 0, 0, 0.03);
    border-bottom: 5px solid rgba(0, 0, 0, 0.125);
}

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 10px;
    margin: 0px;
}

/* --------------------------Css Donate Us Page End-------------------------------------- */


@media only screen and (max-width: 990px) {
    .navbar {
        height: 55px;
    }

    .navbar-nav a {
        background-color: #3127FF;
        font-size: 18px;
        z-index: 1;
    }

    .navbar-toggler {
        margin-left: 200px;
    }
}

@media only screen and (max-width: 300px) {
    .navbar-toggler {
        margin-left: 215px;
    }
}

@media only screen and (max-width: 375px) {
    .navbar-toggler {
        margin-left: 255px;
        margin-top: -2%;
    }
}

@media only screen and (max-width: 820px) {
    .navbar-toggler {
        margin-left: 90%;
    }
}

@media only screen and (max-width: 912px) {
    .navbar-toggler {
        margin-left: 87%;
        margin-top: -2%;
    }
}
.row {
    --bs-gutter-x: 0.5rem !important;
  }

  .card-body {
    padding: 7px;
  }



/* Donate Now btn on home page */
  .subscribe-form__submit {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    border: 2px solid #efc940;
    background: 0 0;
    padding: 13px 55px 13px 55px;
    border-radius: 50px;
    margin-top: 30px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
  }

  img {
    max-width: 100%;
    height: auto !important;
  }

  .aboutUs img {
    margin: 10px;
  }

  .row {
    --bs-gutter-x: 0.5rem !important;
  }

  .card-body {
    padding: 7px;
  }

  .aboutc a {
    color: blue;
  }

  .aboutc a:hover {
    color: aqua;
  }



