@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
:root {
     --secondary: #f5f9e9;
     --white: #ffffff;
     --green: #99C21E;
     --dark-green: #6D8A15;
     --gray: #656565;
     --text-gray: #7E7E7E;
     --gray-border: #ECECEC;
     --card-bg: #FDFDFD;
}


body {
     font-family: "Lato", sans-serif;

}
a {
     text-decoration: none;
     color: var(--green);
}

a:hover {
     text-decoration: none;
     color: var(--dark-green);
}

.btn {
     border: 1px solid var(--white);
     padding: 15px 30px;
     display: flex;
     align-items: center;
}

.primary-button {
     color: var(--white);
     background-color: var(--green);
}

.primary-button:hover {
     color: var(--white);
     background-color: var(--dark-green);
}

.outline-button {
     color: var(--white);
}

.main-section {
     padding: 60px 0;
}

.section-title {
	    font-size: 38px;
    	font-style: normal;
    	font-weight: 500;
     line-height: 140%;
     color: var(--gray);
}

.section-category-head {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 15px;
}


.banner-bg .explore-title {
     color: var(--white);
     font-weight: 700;
     font-size: 20px;
     padding-top: 15px;
}
header {
     background-color: var(--white);
}
header .navbar-brand {
     width: 345px;
}
header .nav-item .nav-link  {
     color: var(--gray);
     font-size: 16px;
     font-weight: 600;
}
header .nav-item .nav-link.active {
     color: var(--green);
     position: relative;
}
header .nav-item .nav-link.active::before {
     content: '';
     height: 5px;
     width: 80%;
     background-color: var(--green);
     display: block;
     position: absolute;
     bottom: -24px;

}
header .navbar-brand img {
     width: 100%;
}
.top-header {
     background-color: var(--secondary);
}

.top-header ul {
     justify-content: flex-end;
}
     
.info-link ul {
     margin: 0;
     list-style: none;
     padding: 10px 0 10px 0;
     gap: 20px;
}


.info-link ul li a { 
     text-decoration: none;
     font-size: 14px;
     color: var(--text-gray);
}

.info-link ul li a i{
     color: var(--green);
} 

.customnav {
     width: 100%;
     display: flex;
     justify-content: flex-end;
}
.quickLinks .navbar-nav {
     display: flex;
     flex-direction: row;
     gap: 20px;
}

.secondary-banner {
     background-color: var(--green);
    height: 130px;
     display: flex;
     align-items: center;
}

.secondary-banner a {
     color: #6D8A15;
}

.secondary-banner h2 {
     color: var(--white);
     font-weight: 700;
     font-size: 38px;
     line-height: 140%;

}

/* banner */
.main-banner {
     position: relative;
}

#banner-video {
     width: 100%;
}

.main-banner .banner-bg {
     position: absolute;
     top: 40%;
}

.main-title {
    font-size: 39px;
    font-weight: 400;
    width: 81%;
	color: white;
}

.button-group {
     display: flex;
     gap: 15px;
}

/* Who we are */
.who-we-are p{
/*      color: var(--text-gray);
     font-size: 18px;
	font-weight: 400; */
}

.image-container {
     width: 100%;
     overflow: hidden;
}

.image-container img {
     width: 100%;
     margin-bottom: 20px;
     border-radius: 20px;  
     box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;

}

     /* -- media query */
     @media only screen and (max-width: 992px) {
          .who-we-are .container .row {
               flex-direction: column-reverse!important;
          }     
     }


/* Our Services */
.our-services {
     background-position: center;
     background-size: cover;

}
.service-card {
     height: 270px;
     flex-direction: column;
     display: flex;
     justify-content: space-between;
     align-items: center;
     background-color: var(--white);
     padding: 40px 15px;
     border-radius: 20px;
     margin-bottom: 20px;
}
.service-icon {
     width: 140px;
     overflow: hidden;
}
.service-icon .img {
     width: 100%;
}

/* Our courses */
.courses img {
     width: 100%;
     margin-bottom: 30px;
}
.course-card {
     background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 37.57%, #465A09 100%);
     height: 250px; 
     width: 100%;
     padding: 20px;
     display: flex;
     align-items: flex-end;
}
.course-card h4 {
     font-size: 22px;
     font-style: normal;
     font-weight: 400;
     line-height: 140%;
}
.course-card-box {
     position: relative;
    background-size: cover;
    background-position: center;
    display: block;
    margin-bottom: 20px;
    border-radius: 15px;
     overflow: hidden;
     
}

/* Our Events */
.events-card {
     display: flex;
     gap: 20px;
     border: 1px solid var(--gray-border);
     border-radius: 10px;
     padding: 24px;
     background-color: var(--card-bg);
     margin-bottom: 20px;
}
.card-cover {
     width: 250px;
 }
.event-card-title {
     color: var(--gray);
     font-size: 28px;
     font-style: normal;
     font-weight: 700;
     line-height: 140%;
     padding-top: 10px;
}
.meta-items {
     font-size: 18px;
     font-style: normal;
     font-weight: 400;
     line-height: 160%;
     color: var(--text-gray);
}
.event-card-addr {
     color: var(--text-gray);
}
 .card-cover img {
     width: 100%;
 }


/* footer */
footer {
     height: 350px;
	padding: 30px 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	display: flex;
    align-items: flex-end;
	
}
.copyright  {
     padding: 10px 0;
     background-color: var(--green);
     
}
.socialLinks {
     gap: 20px;
     margin: 0;
     list-style: none;
     padding-left: 0;
/* 	justify-content: flex-end; */
}

.socialLinks li{
     color: var(--green);
     
}

.copyright  .copyrighttext { 
     color: var(--white);
	text-align: center;
	font-size: 14px;
}


/* Contact Us Page */
.contact-heading h4{
     color: var(--green);
     font-size: 40px;
     font-style: normal;
     font-weight: 700;
     line-height: 140%;
}
.contact-heading h4.sub-heading {
     opacity: .6;
}
.contact-info ul{
     list-style: none;
     padding-left: 0;
     
}
.contact-info ul li {
     display: flex;
     gap: 15px;
     font-size: 18px;
     font-style: normal;
     font-weight: 400;
     line-height: 100%;
     padding: 10px 0;

}
.contact-info ul li span{
     color: var(--text-gray);
}

.contact-info ul li i {
/*      font-size: 35px; */
     color: var(--green);
}
.contact-with-social {
     color: var(--gray);
     font-size: 18px;
     font-style: normal;
     font-weight: 700;
     line-height: 32px;
}
.contact-info ul.socialMedia {
     
     
}
.form-heading {
     font-size: 23px;
     font-style: normal;
     font-weight: 600;
     line-height: 140%;
     color: var(--text-gray);
}

.contact-form {
     margin-top: 20px;
     padding: 20px;
     box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
	height: 478px;
    overflow: hidden;
}

.get-direction h5 {
     text-transform: uppercase;
     margin-bottom: 20px;
}
.single-content {
     color: var(--gray);

}
.single-content img {
     max-width: 100%;
     margin: 10px 0 20px 0;
}

.single-content p {
     color: var(--gray);
     line-height: 160%;
}
.single-content p ul li{
     color: var(--gray);
}
.single-content h1, .single-content h2, .single-content h3, .single-content h4,  .single-content h5, .single-content h6 {
     margin-bottom: 15px;
     color: var(--gray);
     font-style: normal;
     font-weight: 700;
     line-height: 140%;
}

/* Slider */
/* .slider-container .item {
     width: 250px;
} */
.slider-container .item img{
     width: 100%;
}

.alignleft {
  float: left;
  margin-right: 1em;
  margin-bottom: 1em;
}

.alignright {
  float: right;
  margin-left: 1em;
  margin-bottom: 1em;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.contact-form-shortcode {
    height: 478px;
    overflow: hidden;
}

.alignleft {
  float: left!important;
  margin-right: 1em!important;
  margin-bottom: 1em!important;
}

.alignright {
  float: right!important;
  margin-left: 1em!important;
  margin-bottom: 1em!important;
}

.aligncenter {
  display: block!important;
  margin-left: auto!important;
  margin-right: auto!important;
}

img.alignleft,
img.alignright {
  max-width: 50%!important;
  height: auto!important;
}
.image-text-wrap {
  display: flex!important;
  align-items: flex-start!important;
  gap: 1em!important;
}
.image-text-wrap img {
  max-width: 300px!important;
}

.customnav .nav-item {
	padding: 0 16px;
}

/*.contact-form-shortcode .col-12 iframe{*/
/*        display: none!important;*/
/*}*/

.footerhelding {
	font-weight: 700;
	font-size: 16px;
	line-height: 32px;
	letter-spacing: 0%;
}
.group-socialmedia {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}
.banner-cta {
	display: block;
}
.spaced-40 {
	padding-left: 40px;
}
.team-info {
	padding: 0;
	text-align: center;
}
@media (max-width: 992px) {
  .group-socialmedia {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
	}
	
}
@media (max-width: 620px) {
	.main-title {
		font-size: 22px;
		font-weight: 400;
		width: 100%;
		color: white;
		}
	.banner-cta {
		display: none;
	}
	.spaced-40 {
		padding-left: 0;
	}
	header .nav-item .nav-link.active::before {
		background-color: transparent;
	}
}
