@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --color-bg-1: #E8EDED;
    --color-bg-2: #242424;
    --color-brand: #b7ddc8;
    --color-brand-light: #dbb959;
    --color-body: #875935;
    --color-border: rgba(255, 255, 255, 0.1);
    --color-heading: #ac2835;
    --font-main: "Plus Jakarta Sans";
    --border-radius: 32px;
}

body {
   /* background: linear-gradient(to right, #875935, #895a30);*/
   background-color: #f1fbff;
    color: var(--color-body);
    font-family: var(--font-main);
    line-height: 1.7;
    font-size: 1em;   
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700!important;
    color: var(--color-heading);
}

a {
    transition: all 0.4s ease;
    text-decoration: none;
    color: #875935;
    font-weight: 700;
    /*color: var(--color-body);*/
}

a:hover {
    color: #ac2835;
}

img {
    width: 100%;
}
.bg-cover{
    background-position: center !important;
    background-size: cover !important;
    background-position: center;
}

section {
    padding-top: 20px;
    padding-bottom: 20px;
}
@media (max-width: 576px) {
    .top-padding{
        padding-top: 10px !important;
    }  
}
.heading-color{
    color: #ac2835;
}


/* Top navbar */
.top-nav{
    background-color: #b6ddc8;
    padding-top: 5px;
    padding-bottom: 5px;
}
.top-nav p,
.top-nav p span a{
    margin-bottom: 0;
    display: inline-block;
    margin-right: 5px;
    color: #ac2835;
    font-style: bold;
}
.top-nav p span a:hover{
   color: #ffffff;
   transition: 1s ease-in;
}
.top-nav i,
.top-nav a,
.top-nav span{
    vertical-align: middle;
}
.top-nav i{
    font-size: 24px;
    
}
.top-nav input[type="search"]{
    width: 120px;
    height: fit-content;
}
.top-nav form{
    justify-content: center;
}

.top-nav button[type="submit"]{
    width: 60px;
    font-size: 14px;
    height: 36px;
    justify-content: center;
    color: #ffffff !important; 
    background-color: #ac2835;
    border-color: #ac2835;
}
.top-nav button[type="submit"] i{
    color: #ffffff;
}
.top-nav button[type="submit"]:hover{
    width: 60px;
    font-size: 14px;
    height: 36px;
    justify-content: center;
    color: #ac2835; 
    background-color: #b7ddc8;
    border-color: #ac2835;
}
.top-nav button[type="button"]{
    width: 115px;
    font-size: 14px;
    padding: 3px;
    color: #ac2835;
    background-color: #b7ddc8;
    border: 1px solid #ffffff;
    height: fit-content;  
}
.social-links a{
    width: 34px;
    height: 34px;
    background-color: var(--color-bg-1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ac2835;
    font-size: 20px;
    border-radius: 100%;
}
.dropd li.active{
    position: absolute !important;
}

.social-links a:hover{
    background-color: #ffffff;
    color: #9a1525;
}

.navbar{
    box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
}
.navbar .navbar-nav .nav-link,
.navbar .navbar-nav .nav-link{
    color: #875935;
    font-weight: 700;
}
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active{
    color: #ac2835;
    background-color: #b7ddc8;
    transition: 2s ease-in-out;
}
/*BG SCROLL */
.navbar-color{
    background: #b7ddc8 !important;
    width: 100%;
}


/* Btn */
.btn {
    padding: 9px 24px;
    font-weight: 500;
}

.btn-brand {
    background-color: #ac2835;
    border-color: var(--color-brand);
    color: #ffffff;
    font-weight: 700;
    position: relative;
   
    
}

.btn-brand:hover {
    background-color: #b7ddc8;
    border-color: #b7ddc8;
    color: #ac2835;
}
/*btn animation*/
.btn-special {
    min-width: 180px;
    min-height: 50px;
    font-family: 'Nunito', sans-serif;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    font-weight: 700;
    color: #ffffff;
    background: #ac2835;
  background: linear-gradient(90deg, rgb(rgba(172, 40, 53, 1)) 0%, rgb(rgba(172, 40, 53, 1)) 100%);
    border: none;
    border-radius: 1000px;
    box-shadow: 12px 12px 24px rgba(182, 221, 200, 1);
    transition: all 0.3s ease-in-out 0s;
    cursor: pointer;
    outline: none;
    position: relative;
    padding: 10px;
    }
  
  .btn-special::before {
  content: '';
    border-radius: 100px;
    min-width: calc(180px + 12px);
    min-height: calc(60px + 12px);
    border: 6px solid #b6ddc8;
    box-shadow: 0 0 60px rgba(182, 221, 200, 1);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all .3s ease-in-out 0s;
  }
  
  .btn-special:hover, .btn-special:focus {
    color: #ac2835;
    transform: translateY(-6px);
  }
  /*
  button:hover::before, button:focus::before {
    opacity: 1;
  }
  */
  .btn-special::after {
    content: '';
    width: 30px; height: 30px;
    border-radius: 100%;
    border: 6px solid #ac2835;
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ring 1.5s infinite;
  }
  
  .btn-special:hover::after, .btn-special:focus::after {
    animation: none;
    display: none;
  }
  
  @keyframes ring {
    0% {
      width: 30px;
      height: 30px;
      opacity: 1;
    }
    100% {
      width: 300px;
      height: 300px;
      opacity: 0;
    }
  }
/*MEGA DROP DOWN*/
.navbar-dark .navbar-nav a.nav-link {
    color: #ffffff;
    font-size: 1.1em;
  }
  .dropdown-menu {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    border: none;
    border-radius: 0;
    padding: 0.7em;
  }
  @media only screen and (min-width: 992px) {
    .dropdown:hover .dropdown-menu,
    .dropstart:hover {
      display: flex;
    }
    .dropdown-menu.show {
      display: flex;
    }
  }
  .dropdown-menu ul {
    list-style: none;
    padding: 0;
  }
  .dropdown-menu li .dropdown-item {
    color: #875935 !important;
    font-size: 1em;
    padding: 0.5em 1em;
  }
  .dropdown-menu li .dropdown-item:hover {
    background-color: #b7ddc8 !important;
  }
  .dropdown-menu li:first-child a {
    font-weight: bold;
    font-size: 1.2em;
    text-transform: uppercase;
    color: #ac2835 !important;
  }
  .dropdown-menu li:first-child a:hover {
    background-color: #f1f1f1;
  }
  @media only screen and (max-width: 992px) {
    .dropdown-menu.show {
      flex-wrap: wrap;
      max-height: 350px;
      overflow-y: scroll;
    }
  }
  @media only screen and (min-width: 992px) and (max-width: 1140px) {
    .dropdown:hover .dropdown-menu {
      width: 40vw;
      flex-wrap: wrap;
    }
  }


  @media only screen and (min-width: 992px) {
    .dropstart:hover {
      display: flex;
    }
    .dropdown-menu.show,
    .dropstart.show {
      display: flex;
    }
  }
  .dropdown-menu ul {
    list-style: none;
    padding: 0;
  }
  .dropdown-menu li .dropdown-item {
    color: gray;
    font-size: 1em;
    padding: 0.5em 1em;
  }
  .dropdown-menu li .dropdown-item:hover {
    background-color: #f1f1f1;
  }
  .dropdown-menu li:first-child a {
    font-weight: bold;
    font-size: 1.2em;
    text-transform: uppercase;
    color: #516beb;
  }
  .dropdown-menu li:first-child a:hover {
    background-color: #f1f1f1;
  }
  @media only screen and (max-width: 992px) {
    .dropdown-menu.show {
      flex-wrap: wrap;
      max-height: 350px;
      overflow-y: scroll;
    }
  }
  @media only screen and (min-width: 992px) and (max-width: 1140px) {
    .dropstart:hover .dropdown-menu {
      width: 40vw;
      flex-wrap: wrap;
    }
  }
  .swiper {
    width: 600px;
    height: 300px;
  }

 
/*UPDATE*/
.top{
    background-color: #b7ddc8;
    position: relative;
    top: -20px !important;
    margin-top: 0 !important;
    background: #b7ddc8;
    box-shadow:  50px 50px 100px #b7ddc8,
             -50px -50px 100px #ffffff
}
.top, .updates span{
    width: auto;
    height: 65px;
    font-size: 1.1rem;
    padding-top: 0;
   justify-content: center !important;
   align-items: center !important;
   top: 0px;
}
.top, .updates, .left{
    text-align: left;
    color: #875935;
}
span .icon, i{
    
    color: #ac2835;
    
}
/*BACKGOUNT OVERLAY*/

/*HISTORY*/
.hrs{
    border-color: #ac2835 !important;
}
.history{
    background-color: #b6ddc8;
    line-height: 1.7;
}
.text-heading h1{
    border-bottom: 2px solid #ac2835;
}
.text-wrap{
    text-align: justify;
    font-size: 1.1rem;
}
.text-wraps{
    font-size: 1.1rem;
}
.my-btn{
    border-color: #ac2835 !important;
    margin-left: 40%;
    color: #ac2835;
}
.my-btn:hover{
    background-color: #ac2835 !important;
    color: #b7ddc8 !important;
    border-color: #b7ddc8 !important;
    transition: all 0.2s ease;
    transform: scale(1.5);
    
}

/* about */
#team{
    padding-top: 25px !important;
}
.my-hr{
    margin: 0 25%;
}
.mgt-staff{
    width: 1024px;
}
.mgt-staff i{
    font-size: 35px;
}
.img-wrap{
    background: #ac2835 !important;
    box-shadow:  50px 50px 100px #636363,
             -50px -50px 100px #ffffff;
}
.icons{
    margin-left: 160px;
    cursor: pointer;
    padding: 50px;
    border: 2px solid #ac2835;
    align-items: center !important;
    background-color: #b7ddc8;
}
.icons i{
    font-size: 50px;
    cursor: pointer;
}
#about h1 {
    font-weight: 800;
}

#about p {
    max-width: 600px;
    margin: 15px auto;
}

.pneum-box{
    width: auto;
border-radius: 36px;
background: #fff;
box-shadow:  50px 50px 100px #636363,
             -50px -50px 100px #ffffff;
}

.bg-image {
    min-height: 450px;
    background-image: url(../images/sticky1.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}
.bg-image-2 {
    background-image: url(../images/sticky2.jpg);
}
.bg-image-3 {
    background-image: url(../images/stickystaff.png);
}
.bg-image-4 {
    background-image: url(../images/sticky4.JPG);
}

/* Section title */
.section-title {
    margin-bottom: 20px;
}

.section-title h6 {
    background-color: #b6ddc8;
    padding: 8px 16px;
    border-radius: 100px;
    color: #ffffff;
    display: inline-block;
    font-size: 18px;
    font-weight: 800;
}

.section-title p {
    max-width: 700px;
}

/* Service */
#features, .features{
    padding-top: 10px !important;
}
.my-hrs{
    margin: 0 15% 0 15%;
}
.feature-color{
    background-color: #b7ddc8;
}
.feature-color-red{
    background-color: #ac2835;
}
.my-btn-red{
    border-color: #b7ddc8 !important;
}
.pneum-boxx{
    box-shadow:  50px 50px 100px #636363,
             -50px -50px 100px #ffffff;
}
.service {
    border-radius: var(--border-radius);
    background-color: var(--color-bg-2);
}

.icon-box {
    width: 74px;
    height: 74px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 34px;
    color: #fff;
}

/*Counter Main*/
.my-counter{
    margin-top: 3%;
    padding-top: 20px !important;
}
/* Features */
#features .row {
    margin-top: 80px;
}

.feature-list {
    padding: 0;
    list-style: none;
}
.founder {
    width: 558px;
    height: 430px;
}
.icon-box.sm {
    width: 32px;
    height: 32px;
    font-size: 24px;
}

.border-bottom {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* team member */
.team-member {
    position: relative;
}

.team-member::before {
    content: '';
    width: 100%;
    height: calc(100% - 120px);
    background-color: #b7ddc8;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}

/* reviews-carousel */
#reviews {
    background-image: url(../images/school-visitation6.jpeg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.reviews-carousel {
    font-size: 1.2rem;
    max-width: 700px;
    background-color: #00923F;
    color: #ffffff;
}

.review img {
    width: 65px;
    border-radius: 100px;
}

.carousel-control-prev,
.carousel-control-next {
    background-color: #b7ddc8;
    font-size: 18px !important;
    color: #ffffff;
    margin: auto;
    width: 40px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: #b7ddc8;
    color: #ffffff;
}

.carousel-control-prev {
    border-right: 1px solid var(--color-border);
}

.carousel-control-next {
    border-left: 1px solid var(--color-border);
}

/*
@media(max-width: 1000px){
    .gallery .image{
        width: calc(100% / 4);
    
    }
}
@media(max-width: 800px){
    .gallery .image{
        width: calc(100% / 2);
    
    }
}
@media(max-width: 700px){
    nav .items{
        max-width: 600px; 
    }
    nav .items .item{
        padding: 7px 15px;
    }
}
@media(max-width: 600px){
    nav .items{
       flex-wrap: wrap;
       justify-content: center; 
    }
    nav .items .item{
        margin: 5px;
    }
    .gallery .image{
        width: 100%;
    }
}
*/





/*GALLERY NEW */
.wrapper{
    margin: 100px auto;
    max-width: 1100px;
}
.wrapper nav{
    display: flex;
    justify-content: center;
}
nav .items{
    display: flex;
    
    max-width: 720px;
    width: 100%;
    justify-content: space-between;
}
nav .items .active,
nav .items .item{
    padding: 7px 25px;
    margin-right: 10px;
    font-size: 18px;
    font-weight: 500;
    color: #ac2835;
    border: 2px solid #ac2835;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

nav .items .active,
nav .items .item:hover{
    color: #fff;
    background: #875935;
}

.gallery{
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}

.gallery .image{
    padding: 5px;
   
}
.gallery .image.hide{
    display: none;
}
.gallery .image.show{
    animation: animate 0.4s ease;
}


.gallery{
    margin: 10px 50px;
}

.gallery img{
    width: 230px;
    padding: 5px;
    transition: 1s;
}

.gallery img:hover{
    filter: grayscale(0);
    transform: scale(1.1);
}

.gallery .image img{
    
    
    transition: all 0.3s ease;
}
.gallery .image:hover img{
    transform: scale(1.1);
}
@media(max-width: 1000px){
    .gallery .image{
        width: calc(100% / 4);
    
    }
}
@media(max-width: 800px){
    .gallery .image{
        width: calc(100% / 2);
    
    }
}
@media(max-width: 700px){
    nav .items{
        max-width: 600px; 
    }
    nav .items .item{
        padding: 7px 15px;
    }
}
@media(max-width: 600px){
    nav .items{
       flex-wrap: wrap;
       justify-content: center; 
    }
    nav .items .item{
        margin: 5px;
    }
    .gallery .image{
        width: 100%;
    }
}



/* footer */

/*AIDS AND DONATIONS*/

.my-icon-aids{
    font-size: 45px;
    background-color: #00923F;
    border-radius: 50%;
}
.my-icon-aids:hover{
    background-color: #b7ddc8;
    color: #875935;
}
.my-text-special{
    font-weight: bold;
    font-size: 1.1rem;
}
.aids{
    list-style: none;
    text-align: justify;
    margin-left: 30%;
}
.donate-btn{
    float: center !important;
}
/*EMAIL NOTIFICATION*/
.input-group input[type="text"]{
    background-color: #b7ddc8 !important;
    color: #ac2835;
    font-size: 1.1rem;
}
.notific{
    background: #b7ddc8 !important;
}
/*CONTACT US*/
.contact-us{
    width: 85%;
    background: #fff;
    border-radius: 6px;
    padding: 20px 60px 30px 40px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  }
  .contact-us .content{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .contact-us .content .left-side{
    width: 25%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    position: relative;
  }
  .content .left-side::before{
    content: '';
    position: absolute;
    height: 70%;
    width: 2px;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    background: #b7ddc8;
  }
  .content .left-side .details{
    margin: 14px;
    text-align: center;
  }
  .content .left-side .details i{
    font-size: 30px;
    color: #ac2835;
    margin-bottom: 10px;
  }
  .content .left-side .details .topic{
    font-size: 18px;
    font-weight: 500;
  }
  .content .left-side .details .text-one,
  .content .left-side .details .text-two{
    font-size: 14px;
    color: #b7ddc8;
  }
  .contact-us .content .right-side{
    width: 75%;
    margin-left: 75px;
  }
  .content .right-side .topic-text{
    font-size: 23px;
    font-weight: 600;
    color: #ac2835;
  }
  .right-side .input-box{
    height: 50px;
    width: 100%;
    margin: 12px 0;
  }
  .right-side .input-box input,
  .right-side .input-box textarea{
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    font-size: 16px;
    background: #F0F1F8;
    border-radius: 6px;
    padding: 0 15px;
    resize: none;
  }
  .right-side .message-box{
    min-height: 110px;
  }
  .right-side .input-box textarea{
    padding-top: 6px;
  }
  .right-side .button{
    display: inline-block;
    margin-top: 12px;
  }
  .right-side .button input[type="button"]{
    color: #00923F;
    font-size: 1.1rem;
    font-weight: bold;
    outline: none;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    background: #ac2835;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .button input[type="button"]:hover{
    background: #ac2835;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: bold;
  }


  /*CARDS*/
  .big-card{
    width: 35rem !important;
  }
  @media (max-width: 420px) {
    .big-card{
        width: 15rem !important;
    }
    
  }
 
  /*CARDS ENDS*/
  
  @media (max-width: 950px) {
    .contact-us{
      width: 90%;
      padding: 30px 40px 40px 35px ;
    }
    .contact-us .content .right-side{
     width: 75%;
     margin-left: 55px;
  }
  }
  @media (max-width: 820px) {
    .contact-us{
      margin: 40px 0;
      height: 100%;
    }
    .contact-us .content{
      flex-direction: column-reverse;
    }
   .contact-us .content .left-side{
     width: 100%;
     flex-direction: row;
     margin-top: 40px;
     justify-content: center;
     flex-wrap: wrap;
   }
   .contact-us .content .left-side::before{
     display: none;
   }
   .contact-us .content .right-side{
     width: 100%;
     margin-left: 0;
   }
  }
  /*MAP*/
 .my-map{
    max-width: 1300px;
    height: 400px;
  }
  @media (max-width: 768px){
    .my-map{
        max-width: 600px;
        height: 300px;
    }
  }
  @media (max-width: 420px){
    .my-map{
        max-width: 300px;
        height: 200px;
    }
  }
  
/*FOOTER*/
footer {
    padding-top: 80px;
}

footer img {
    width: 160px;
}

footer ul {
    list-style: none;
}

footer .footer-top {
    padding-bottom: 30px;
}

footer .footer-bottom {
    padding-top: 30px;
    padding-bottom: 30px;
}
.footer-top{
    border-top: 2px solid #875935;
    background: #b6ddc8;
    background: linear-gradient(to right, #b7ddc8, #f1f1f1) !important;
}
.footer-bottom{
    border-top: 2px solid #875935;
    background: linear-gradient(to right, #f1f1f1, #b7ddc8) !important;
}

    /*MEDIA QUERIES*/
    /* X-Small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) { 
    body{
        overflow-x: hidden !important;
    }
    section{
        overflow-x: hidden !important;
    }
     }

/*Small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {
    body{
        overflow-x: hidden !important;
    }
    section{
        overflow-x: hidden !important;
    }
 }

/* Medium devices (tablets, less than 992px)*/
@media (max-width: 991.98px) {
    body{
        overflow-x: hidden !important;
    }
    section{
        overflow-x: hidden !important;
    }
     
 }

/* Large devices (desktops, less than 1200px)*/
@media (max-width: 1199.98px) { 
     }

/* X-Large devices (large desktops, less than 1400px)*/
@media (max-width: 1399.98px) {  }

/*XX-Large devices (larger desktops)
// No media query since the xxl breakpoint has no upper bound on its width*/

