*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    
}
/*CSS Properties for the header*/


/*  #228b22  - forrest green*/ 
html{
    scroll-behavior: smooth;
}
.header{
    min-height: 100vh;
    width: 100%;
    background-color:#D7E4C0;
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden; 
}
nav{
    display: flex;
    padding: 2% 4%;
    justify-content: space-between;
    align-items: center;
}
nav img{
    height: 135px;
    width: 252px;
}
.nav-links{
    flex: 1;
    text-align: right;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul .submenu{
    position: absolute;
    width: 150px;
    box-shadow: 0 2px 45px #E0EEE0;
    margin-top: -50px;
    opacity: 0;
    z-index: -999;
    transition: all ease 0.3s; 
    text-align:left;
}

.nav-links ul li:hover .submenu{
    z-index: 99;
    opacity: 1;
    margin-top: 0;
}
.nav-links ul .submenu li{
    margin: 0;
}
.nav-links ul .submenu li a{
    padding: 2px;
    display: inline-block;
    width: 100%;
}
.nav-links ul li a{
    color: black;
    text-decoration: none;
    font-size: 15px;
}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #228b22;
    display: block;
    margin: auto;
    transition: .5s;    
}
.nav-links ul li:hover::after{
    width: 100%;
}
nav .fa{
    display: none;
}
nav .fab{
    color: #228b22;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.up .fas{
    position: fixed;
    right: 15px;
    bottom: 15px;    
    color: #228b22;
    z-index: 1;
    cursor: pointer;
    transition: 0.5s;
}
.up .fas:hover{
    transform: scale(1.1);
}
/* images slider css*/
.img-slider{
    position: relative;
    width: flex;
    height: 100vh;
    background: black;
    border: 5px solid black;
  }
  .img-slider .slide{
    position: absolute;
    width: 100%;
    clip-path: circle(0% at 0 50%);
    z-index: 0;
  }
  .img-slider .slide.active{
    clip-path: circle(150% at 0 50%);
    transition: 2s;
    transition-property: clip-path;
  }
  .img-slider .slide img{
    background: transparent;
    z-index: 0;
    width: 100%;
    height: 100vh;
    top: 50%;
    left: 50%;
    border-radius: 5px;
    opacity: 0.5; /*filter over the images */
    object-fit: cover;
  }
  .img-slider .slide .info{
    position: absolute;
    top: 0;
    padding: 15px 30px;
  }
  .img-slider .slide .info p{
    color: #E0EEE0;
    background: rgba(0, 0, 0, 0.1);
    font-size: 16px;
    width: 60%;
    padding: 10px;
    border-radius: 4px;
  }
  .img-slider .navigation{
    z-index: 0;
    position: absolute;
    display: flex;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
  }
  .img-slider .navigation .btn{
    background: rgba(255, 255, 255, 0.5);
    width: 12px;
    height: 12px;
    margin: 10px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 0;
  }
  .img-slider .navigation .btn.active{
    background: #228b22;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
    z-index: 0;
  }
  @media (max-width: 700px){
    .img-slider{
      width: 100ph;
      height: 100vh;
    }
    .img-slider .slide img{
        width: 100ph;
        height: 100vh;
      }
    .img-slider .slide .info{
      padding: 10px 25px;
    }
    .img-slider .slide .info h2{
      font-size: 23px;
    }
    .img-slider .slide .info p{
      width: 70%;
      font-size: 9px;
    }
    .img-slider .navigation{
      bottom: 25px;
    }
    .img-slider .navigation .btn{
      width: 10px;
      height: 10px;
      margin: 8px;
    }
    
  }
.text-box{
    width: 90%;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.text-box h1{
    font-size: 62px;
}
.text-box p{
    margin: 20px 0 40px;
    font-size: 14px;
    color:white;
}
.hero-btn {
    display: inline-block;
    text-decoration: none;
    color:white;
    border: 1px solid white;
    padding: 12px 34px;
    font-size: 13px;
    background: #228b22;
    position: relative;
    cursor: pointer;
    transition: 1s;
}
.hero-btn:hover{
    color: white;
    border: 1px solid white;
    background: #228b22;
    opacity: 2;
}
@media(max-width: 700px)
{

    
    .up .fas{
        right: 6px;
        bottom: 10%;
        font-size: 25px;
    }
    
    html, body {overflow-x: hidden;}
    nav img{
        height: 70px;
        width: 130px;
    }

    
   .nav-links ul li
    {
        display: block;
    }
   
    .nav-links
    {
        position: fixed;
        background: #B3A398;
        opacity: 0.99;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: center;
        z-index: 2;
        transition: 1s;
    }
    .nav-links ul .submenu{
        box-shadow: 0 2px 45px #dac6b6;
        position: relative;
        display: block;
        z-index: 99;
        opacity: 0.99;
        margin-top: 0;
        padding: 0;
    }
    .nav-links ul{
        padding: 30px;
    }
    nav .fa{
        display: block;
        color: black;
        margin: 10px;
        font-size: 22px;
        cursor: pointer; 
        text-align: right;
        
    }
    nav .fa-close {
        top: 10px;
        right: 10px;
    }
    
    .text-box h1{
        font-size: 20px;
    }
    nav .fab{
        font-size: 15px;
        padding: 8px 12px;
    }
    .event-col .tiktok-embed{
        height: 100%;
        width: 100%;
        
    }
    
}
/*---------- previous allignment --------*/
.service{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
    
}

h1{
    font-size: 36px;
    font-weight: 600;
}
p{
    color: black;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}
.row{
    margin-top: 5%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;  
}
.service-col{
    flex-basis: 31%;
    
    background: #E0EEE0;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: .5s;
    
}
h3{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}
.service-col:hover{
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);
    transform: scale(1.02);   
}
/*hidden content stuff
.service .service-col .hiddenContent {
    position: relative;
    background: #fff8f2;
    
    overflow: hidden;
    transition: 0.5s;
    overflow-x: auto;
    border-radius: 10px;
}
.service .service-col .hiddenContent p{
    text-align:left;
    padding-left: 15%;
    

}
.service .service-col.active .hiddenContent {
    height: 400px;
    padding: 10px;
}
.service .service-col.active .hiddenContent .img {
    width: 100px;
    height: 100px;;
}
.service .fas{
    color: #506e59;
    font-size: 15px;
    cursor: pointer;
}
.service .row .service-col .hiddenContent .fas{
    cursor:default;
} */
@media (max-width:700px){
    .row{
        flex-direction: column;
    }
   .service-col{
       width: 100%;
   }
} 
/*---------------- events ----------------*/
/*CSS for gallery*/
/*end css*/
.campus{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
}
.campus-col{
    flex-basis: 32%;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}
.campus-col img{
    width: 100%;
}
.layer{
    background: transparent;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    transition: .5s;
}
.layer:hover{
    background: rgba(218, 198, 182, 0.5);
}
.layer h3{
    width: 100%;
    font-weight: 500;
    color: black;
    font-size: 26px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    opacity: 0;
    transition: .5s;
}
.layer:hover h3{
    bottom: 45%;
    opacity: 1;
}
/*-------------- service ----------------*/
.facility{
    width: 80%;
    margin: auto;
    text-align: center;
    
    padding-top: 100px;

}
.facility-col{
    flex-basis: 31%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
}
.facility-col img{
    width: 100%;
    height: 400px;
    border-radius: 10px;
    transition: 0.5s;
    object-fit: cover;
}
.facility-col img:hover {
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.5);
    transform: scale(1.02);
}
.facility-col p{
    padding: 0;
}
.facility-col h3{
    margin-top: 16px;
    margin-bottom: 15px;
    text-align: center;
}
/*---------------- reviews ------------------*/
.testimonials{
    width: 80%;
    margin: auto;
    padding-top: 100px;
    text-align: center;
}
.testimonial-col{
    flex-basis: 44%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
    background: #E0EEE0;
    padding: 25px;
    cursor: pointer;
    display: flex;
}
.testimonial-col img{
    height: 40px;
    margin-left: 5px;
    margin-right: 30px;
    border-radius: 50%;
}
.testimonial-col p{
    padding: 0;
}
.testimonial-col h3{
    margin-top: 15px;
    text-align: left;
}
.testimonial-col .fa{
    color: #f44336;
}

@media(max-width:700px){
    .testimonial-col img{
        margin-left: 0px;
        margin-right: 15px;
    }
}
/*-------- Call To Action ----------*/
.cta{
    margin: 100px auto;
    width: 80%;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(images/grass.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;
}
.cta h1{
    color: #fff;
    margin-bottom: 40px; 
    padding: 0; 
}
.cta h4 {
    color: #fff;
    margin-bottom: 40px; 
    padding: 0;
}

@media(max-width:700px){
    .cta h1{
        font-size: 24px;
    }
}
/*-------------Footer---------------*/
.footer{
    background-color:#D7E4C0;
    width: 100%;
    text-align: center;
    padding: 30px 0;
}
.footer h4{
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 600;
}
.icons .fa{
    color: #228b22;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
}
.icons .fab{
    color: #228b22;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
}
.fa-heart-o{
    color: #228b22;
}
/*--------------- About Us Page --------------*/
.sub-header{
    height: 35vh;
    width: 100%;
    background-color:#E0EEE0;
    background-position: center;
    background-size: cover;
    text-align: center;
    color: black;
}
.sub-header h1{
    margin-top: 0vh;
}
.about-us{
    width: 80%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
}
.about-col{
    flex-basis: 48%;
    padding: 30px 2px;
}
.about-col h1{
    padding-top: 0;
}

.about-col p{
    padding: 15px 0 25px;
}
.thanks{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-bottom: 80px;
    padding-top: 100px;
}
.thanks h1{
    
    padding-bottom: 20px;
}
.centre{
    margin-top: 5%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between; 
    text-align: center;
}

.hero-btn.red-btn{
    border: 1px solid black;
    background: #228b22;
    opacity: 0.7;
    color: white;
}
.hero-btn.red-btn:hover{
    border: 1px solid black;
    opacity: 2;
    background: #228b22;
    color: #fff;
}
.hero-btn.red-btn::after{
    background: #7abb8e;
}
.hero-btn.red-btn::before{
    background: #7abb8e;
}
.content-image{
    flex-basis: 50%;
    
}
.about-col img{
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.about-col iframe{
    width: 100%;
    object-fit: cover;
    border-radius: 10px;   
}

/*.tikToks{
    width: 100%;
    margin: auto;
    text-align: center;
    padding-bottom: 100px;
}
.row .tiktok-embed{
        width: 100%;
        object-fit: cover;    
}
@media(max-width:700px){
    .row .tiktok-embed{
        padding-right: 25px;
    }
}*/ 
/*---------- event Page -------------*/
.eventDesign{
    width: 80%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
}
.event-col{
    flex-basis: 48%;
    padding: 30px 2px;
}

.event-col h1{
    padding-top: 0;
}
.event-col p{
    padding: 15px 0 25px;
}
.event-col video{
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.galHead{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
    
}
.galHead .gallery-filter{
    padding: 15px;
    /*------padding: 0 15px;----*/
   width: 100%;
   text-align: center;
   margin-bottom: 40px;
}
.galhead .gallery-filter .filter-item{
    
    font-size: 17px;
    border: 2px solid #228b22;
    text-transform: uppercase;
    display: inline-block;
    border-radius: 20px;
    margin-right: 8px;
    cursor: pointer;
    padding: 8px 20px 8px 20px;
    line-height: 1.2;
    transition: all 0.3s ease;
 }
 .galHead .gallery-filter .filter-item.active{
    color: white;
    border-color : #16b5ef;
    background: #16b5ef;
  }
.image-gallery{
    width: 80%;
    margin: 0 auto;
    padding: 50px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    grid-auto-rows: 250px;
    grid-auto-flow: dense;
    grid-gap: 20px;
}
.image-gallery .image-box{
    position: relative;
    background-color: white;
    overflow: hidden;
}
.image-gallery .image-box:nth-child(7n+1){
    grid-column: span 2;
    grid-row: span 2;
}
.image-gallery .image-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    border-radius: 10px;
}
.image-gallery .image-box:hover img{
    transform: scale(1.05);
}
.galHead .image-gallery.show{
	animation: fadeIn 0.5s ease;
}

@keyframes fadeIn{
	0%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
}
.galHead .image-gallery.hide{
	display: none;
}
@media(max-width: 491px){
	.galHead .image-box{
		width: 50%;
	}
    .event-col .tiktok-embed{
        height: 100%;
        width: 100%;
        
    }
    
}
@media(max-width: 667px){
    .ga .image-gallery{
		width: 100%;
	}
	.galHead .image-gallery .filter-item{
		margin-bottom: 10px;
	}
    .event-col .tiktok-embed{
        height: 100%;
        width: 100%;
        
    }
}
.location{
    width: 80%;
    margin: auto;
    padding: 80px 0;
}
.location iframe{
    width: 100%;
    border-radius: 10px;
}
.location h1{
    padding-bottom:5px;
    text-align: center;
}
.location p{
    padding-top: 5px;
    text-align: center;
}
.futureEvent{
    margin: 100px auto;
    width: 80%;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(images/party.JPG);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;
}
.futureEvent h1{
    color: #fff;
    margin-bottom: 40px; 
    padding: 0; 
}
@media (max-width:700px){
    .sub-header{
        height: 25%;
    }
    .sub-header h1{
        font-size: 24px;
    }
    .event-left h2{
        text-align: center;
    }
    .event-col{
        text-align: center;
    }
    .about-col{
        text-align: center;
    }
    .location h1{
        font-size: 23px;
    }
    .image-gallery{
        grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
        grid-auto-rows: 250px;
        width: 80%;
    }
    .image-gallery .image-box:nth-child(7n+1){
        grid-column: unset;
        grid-row: unset;
    }
    .futureEvent h1{
        font-size: 24px;
    }
} 
/*------- Contact Us Page ------------*/
.contact-us{
    width: 80%;
    margin: auto;
}
.contact-col{
    flex-basis: 48%;
    margin-bottom: 30px;
}
.contact-col div{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.contact-col div .fab{
    font-size: 28px;
    color: #228b22;
    margin: 10px;
    margin-right: 30px;
}
.contact-col div .fas{
    font-size: 28px;
    color: #228b22;
    margin: 10px;
    margin-right: 30px;
}
.contact-col div .far{
    font-size: 28px;
    color: #228b22;
    margin: 10px;
    margin-right: 30px;
}
.contact-col div p{
    padding: 0;
}
.contact-col div h5{
    font-size: 20px;
    margin-bottom: 5px;
    color: #555;
    font-weight: 400;
}
.contact-col input, .contact-col textarea{
    width: 49.5%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #ccc;
    flex-wrap: nowrap;
}
.footer-link{
    text-decoration: none;
    color: #777;
}
@media (max-width:700px){
    .contact-col div h5{
        font-size: 17px;
    }
    .contact-col div p{
        font-size: 10;
    }
    .contact-col div .fab{
        font-size: 17px;
        
    }
    .contact-col div .fas{
        font-size: 17px;
        
    }
    .contact-col div .far{
        font-size: 17px;
        
    }
    .contact-col input, .contact-col textarea{
        width: 100%;
        flex-wrap: wrap;
        align-self: center;
    }
    /* Content */
.content {
    background-color: white;
    padding: 10px;
  }
  
  /* The "show" class is added to the filtered elements */
  .show {
    display: block;
  }
  
  /* Style the buttons */
  .btn {
    border: none;
    outline: none;
    padding: 12px 16px;
    background-color: white;
    cursor: pointer;
  }
  
  /* Add a grey background color on mouse-over */
  .btn:hover {
    background-color: #ddd;
  }
  
  /* Add a dark background color to the active button */
  .btn.active {
    background-color: #666;
     color: white;
  }
  .image-gallery:after {
    content: "";
    display: table;
    clear: both;
  }
 
  
} 

  
  
        
        












