/**
  * Template Name: Wave Riders
  * Updated: July 05 2024 with Bootstrap v5.3.3
  * Author: www.wavecity.in
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Asap", sans-serif;
  color: #032f24;
  font-weight: 400;
}

a {
  color: #64bc47;
  text-decoration: none;
}

a:hover {
  color: #00cc81;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Rufina", serif;
  font-weight: 400;
}

p{ font-size: 18px; line-height: 30px;  font-family: "Asap", sans-serif; }
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  background-image: url("../img/loader_01.gif");
  background-repeat: no-repeat;
  background-position: center;
  background-size:contain;
  content: "";
  position: fixed;
  top: calc(50% - 85px);
  left: calc(50% - 150px);
  /*border: 6px solid #64bc47;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;*/
  width: 300px;
  height: 170px;
  /*animation: animate-preloader 1s linear infinite;*/
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #64bc47;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #111;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0,0,0,0.1);
}

#header.header-scrolled,
#header.header-inner-pages {
  background: #64bc47;
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 80px;
}

@media (max-width: 992px) {
  #header {
    border: 0;
    padding: 15px 0;
  }
}

/* Get Startet Button */
.get-started-btn {
  margin-left: 25px;
  background: #64bc47;
  color: #fff;
  border-radius: 50px;
  padding: 8px 25px 9px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
}

.get-started-btn:hover {
  background: #64bc47;
  color: #fff;
}

@media (max-width: 992px) {
  .get-started-btn {
    margin: 0 15px 0 0;
    padding: 6px 18px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  position: relative;
  white-space: nowrap;
  margin: 0 12px;
}

.navbar a,
.navbar a:focus {
   font-family: "Asap", sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 3px 10px 3px;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 1);
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #fff;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #fff; 
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-top: 2px solid #64bc47;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #282828;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #64bc47;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(15, 15, 15, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #282828;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #64bc47;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #64bc47;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 110vh;
  background: url("../img/hero-bg.jpg") top center;
  background-size: cover;
  position: relative;
}

#hero:before {
  content: "";
  /*background: rgba(0, 0, 0, 0.6);*/
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  padding-top: 72px;
  position: relative;
  text-align: center;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
  margin-bottom: 30px;
}

#hero h2 {
   font-family: "Asap", sans-serif;
  color: #eee; font-weight: 300;
  margin-bottom: 30px;
  font-size: 24px;
}

#hero .play-btn {
  width: 94px;
  height: 94px;
  margin: 0 auto;
  background: radial-gradient(#64bc47 50%, rgba(0, 153, 97, 0.4) 52%);
  border-radius: 50%;
  display: block;
  overflow: hidden;
  position: relative;
}

#hero .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

#hero .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 3s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(0, 153, 97, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

#hero .play-btn:hover::after {
  border-left: 15px solid #64bc47;
  transform: scale(20);
}

#hero .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}
.shape_rc {
    overflow: hidden;
    position: absolute;
    left: 0;
    width: 100%;
    line-height: 0;
    direction: ltr;
}
.shape-bottom {
    bottom: -1px;
}
.shape-fill{ fill: #fff; }
.shape-bottom svg {
    width: calc(100% + 1.3px);
    height: 75px;
}
.shape_rc svg {
    display: block;
    width: calc(100% + 1.3px);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
.link_read_more a{ display: inline-block; height: 60px; }
.chevron {
/*  position: absolute;*/
  width: 2.1rem;
  height: 0.35rem;
  opacity: 0;
  left: 48%;
  transform: scale(0.3);
  -webkit-animation: move-chevron 3s ease-out infinite;
          animation: move-chevron 3s ease-out infinite;
}

.chevron:first-child {
  -webkit-animation: move-chevron 3s ease-out 1s infinite;
          animation: move-chevron 3s ease-out 1s infinite;
}

.chevron:nth-child(2) {
  -webkit-animation: move-chevron 3s ease-out 2s infinite;
          animation: move-chevron 3s ease-out 2s infinite;
}

.chevron:before,
.chevron:after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 50%;
  background: rgba(255,255,255,0.7);
}

.chevron:before {
  left: 0;
  transform: skewY(30deg);
}

.chevron:after {
  right: 0;
  width: 50%;
  transform: skewY(-30deg);
}

@-webkit-keyframes move-chevron {
  25% {
    opacity: 1;
  }
  33.3% {
    opacity: 1;
    transform: translateY(2.28rem);
  }
  66.6% {
    opacity: 1;
    transform: translateY(3.12rem);
  }
  100% {
    opacity: 0;
    transform: translateY(4.8rem) scale(0.5);
  }
}

@keyframes move-chevron {
  25% {
    opacity: 1;
  }
  33.3% {
    opacity: 1;
    transform: translateY(2.28rem);
  }
  66.6% {
    opacity: 1;
    transform: translateY(3.12rem);
  }
  100% {
    opacity: 0;
    transform: translateY(4.8rem) scale(0.5);
  }
}
.btn-link{padding: 6px 12px;
    text-decoration: none;
    border-radius: 6px;
    background: #64bc47;
    font-size: 14px;}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #8fffd6;
}

.section-title {
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #64bc47;
  bottom: 0;
  left: 0;
}

.section-title p {
  margin-bottom: 0;
  color: #777777;
  font-size: 15px;
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.pattern-line{ background: url(../img/lines.png) no-repeat; background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.4; 
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s; position: absolute; width: 100%; height: 100%; top: 0; z-index:-1; }
.about{ position: relative; }
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li+li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #64bc47;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: "Rufina", serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  color: #64bc47;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #64bc47;
}

.about .content .btn-learn-more:hover {
  background: #64bc47;
  color: #fff;
  text-decoration: none;
}


/* Add CEO SECTION */

.image-hov-two img, .image-box .image-1 {
    position: relative;
    display: block;
    border-radius: 400px 400px 30px 275px;
}
.image-hov-two {
    position: relative;
    display: block;
    overflow: hidden;
}


/*-----------Team Section ---------------------------*/
.bg_grey{ background-image: linear-gradient(90deg, #EDF6E6 30%, #FFFFFF 100%); position: relative; z-index: -1;  }
.bg_grey2{ background-image: linear-gradient(90deg, #EDF6E6 30%, #FFFFFF 100%); position: relative;  }
.director-col {
    overflow: hidden;
    position: relative;
    display: block;
    background: #fff;
    box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.07);
    border-radius: 300px 300px 30px 150px;
}
.director-profile {
    background-color: rgba(0, 0, 0, .75);
    color: #fff;
    display: flex;
    height: 100%;
    left: -100%;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    transition: opacity .25s ease-in;
    width: 100%;
    z-index: 1;
}
.director-col:hover .director-profile>div {
    font-size: inherit;
}
.directorName{ font-size: 24px; font-weight: 500; text-transform: capitalize; }
.director-col p{ font-size: 14px; }
.director-profile>div {
    bottom: 20px;
    left: 0;
    padding: 0 20px;
    position: absolute;
    width: 100%;
}
.director-profile>div p{ font-size: 16px; line-height: 24px; }
.director-col:hover .director-profile {
    left: 0;
    opacity: 1;
}

.modal .modal-full {    
    max-width: 1080px;
    width: 75%;
}
.position-relative{ position: relative !important; }
/*.modal-content{ background-color: #052e25; }*/
.modal-content p{ font-weight: 400; font-size: 16px; line-height: 24px; }
/*.modal-content p, .modal-content h5{ color: #fff; }*/
.modal-content .border-radius{ border-radius: 30px; }
.card-title{ font-size: 32px; color: #052e25; }
.modal-content .btn-close{ opacity: 0.9; background-color: #64bc47; padding: 15px; border-radius: 50%; position: absolute; 
  top: 10px; right: 8px;z-index: 99; }

/*Modal Scroll bar Custom */
.modal-body{ height: 500px; overflow-y: auto; overflow-x: hidden;}
/* Chrome */
.modal-body::-webkit-scrollbar {
width: 10px;
}
.modal-body::-webkit-scrollbar-track {
box-shadow: inset 0 0 2px #151618;
border-radius: 15px;
}
.modal-body::-webkit-scrollbar-thumb {
background-color: #64bc47;
border-radius: 15px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
background: #000;
}
/* IE */
.modal-body{
scrollbar-face-color: #64bc47;
scrollbar-shadow-color: grey;
scrollbar-highlight-color: #000;
}
/* FireFox */
.modal-body {scrollbar-color: #64bc47 #151618;scrollbar-width: thin;}

.teams{ padding-bottom: 30px; }
/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.nav-center{ position: relative; }
.nav-center:after{ position: absolute; content: ""; bottom: 1px; width: 100%; height: 1px; background: #64bc47; }
.border-primary{ border-color:#64bc47 !important;  }
.nav-tabs{ border-bottom: 0; }
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active{ background: transparent; color: #64bc47; border-bottom: solid 3px #64bc47; border-left: 0; 
  border-right: 0; border-top: 0; padding: 10px 20px;}
.nav-tabs .nav-link{margin: 0 10px 0 0; text-transform: uppercase; color: #000; font-weight: 600; border:0; padding: 10px 20px;}
.nav-tabs .nav-item.show .nav-link::focus, .nav-tabs .nav-item.show .nav-link:hover{ border:0; }

/* Add Season Tabs Design */
.tab-list__item {
    display: inline-block;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    padding: 0 5px;
}
.tab-list__link {
    font-weight: 400;
    font-size: 15px;
    color: #fff;
    display: inline-block;
    -webkit-border-radius: 22.5px;
    -moz-border-radius: 22.5px;
    border-radius: 22.5px;
    background: #999;
    /* min-width: 150px; */
    /* text-align: left; */
    border: 0;
    padding: 0 0 0 20px;
}
.tab-list__link .step {
    display: inline-block;
    height: 45px;
    width: auto;
    line-height: 45px;
    text-align: center;
     -webkit-border-radius: 50%; 
    -moz-border-radius: 50%;
    border-radius: 0 22.5px 22.5px 0;
    background: rgb(102 102 102 / 30%);
    font-size: 16px;
    margin-right: 0;
    padding-right: 20px;
    padding-left: 10px;
}
.tab-list__link .desc {
    text-transform: uppercase;
    display: inline-block;
    padding-right: 5px;
}
.tab-list .tab-list__item .active {
    background: #64bc47;
    border: 0;
}
/* End Season Tabs Design */

#our_gallery{ position: relative; z-index: 1 }

/*#our_gallery:before { 
    position: absolute; top: 0; content: ''; width: 100%; height: 250px;
    background: url(https://azim.hostlin.com/Golfer/assets/images/shape/shape-2.png) no-repeat;
    background-color: #d5d5d5;
    background-size: contain;
    background-position: top; z-index: -1 }*/
.image-set{ text-align: center; border: solid 0px #fff;}
.image-set img{ width: 100%; }
.img{ position: relative; }
.img .img_tag {text-align: right; color: #fff;  font-size: 10px; letter-spacing: 1px;  position: absolute; right: 10px;
    bottom: 0px; width: 100%;}

.card-img{ position: relative; border: solid 0px #ddd; font-size: 13px; color: #fff; text-align: center;}
.card-img p{ margin: 8px 0 0 0; padding: 0; line-height: 24px; }
.image-set{position: relative;}
.image-set .hover-content {
-webkit-transition-duration: 500ms;
-o-transition-duration: 500ms;
transition-duration: 500ms;
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
right: 0;
background-color: rgba(0, 0, 0, 0.4);
opacity: 0;
z-index: 10;
cursor:zoom-in;

}
.image-set .hover-content i {
position: absolute;
top: 50%;
left: 50%;
transform: translateY(-50%);
margin-top: 0;
margin-left: -26px;
z-index: 100;
display: inline-block;
width: 52px;
height: 52px;
border-radius: 50%;
background-color: #000;
text-align: center;
font-size: 30px;
color: #64bc47;
font-style: inherit;
}
.image-set .hover-content:hover, .image-set .hover-content:focus{opacity: 1; visibility: visible;}

/* Add RJ CSS */
/*Gallery*/
.gallery .col-lg-1, .gallery .col-lg-10, .gallery .col-lg-11, .gallery .col-lg-12, .gallery .col-lg-2, .gallery .col-lg-3, .gallery .col-lg-4, .gallery .col-lg-5, .gallery .col-lg-6, .gallery .col-lg-7, .gallery .col-lg-8, .gallery .col-lg-9, .gallery .col-md-1, .gallery .col-md-10, .gallery .col-md-11, .gallery .col-md-12, .gallery .col-md-2, .gallery .col-md-3, .gallery .col-md-4, .gallery .col-md-5, .gallery .col-md-6, .gallery .col-md-7, .gallery .col-md-8, .gallery .col-md-9, .gallery .col-sm-1, .gallery .col-sm-10, .gallery .col-sm-11, .gallery .col-sm-12, .gallery .col-sm-2, .gallery .col-sm-3, .gallery .col-sm-4, .gallery .col-sm-5, .gallery .col-sm-6, .gallery .col-sm-7, .gallery .col-sm-8, .gallery .col-sm-9, .gallery .col-xs-1, .gallery .col-xs-10, .gallery .col-xs-11, .gallery .col-xs-12, .gallery .col-xs-2, .gallery .col-xs-3, .gallery .col-xs-4, .gallery .col-xs-5, .gallery .col-xs-6, .gallery .col-xs-7, .gallery .col-xs-8, .gallery .col-xs-9 {
padding-left: 5px;
padding-right: 5px;
padding-top: 5px;
padding-bottom: 5px;
}
.gallery .row {
margin-left: -5px;
margin-right: -5px;
}

 .video_large_wrap a {
  display: none;
  position: relative; 
  }
  .video_large_wrap a:hover{text-decoration: none;}
  .video_large_wrap a span{ text-decoration: none; margin-top: 0px; padding: 8px 15px; font-size: 16px; font-weight:500; display: inline-block;
  color: #fff; background: #000;position: absolute; bottom: 12px; left: 15px; border-left: 4px solid #63bc47; }
  .video_large_wrap img{ width: 100%; border-radius: 0; }
  .video_large_wrap a:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  background: url(../img/portfolio/video/play_icon.png) no-repeat center center;
  background-size: 12%;
  z-index: 2; 
  width: 100%;
  height: 100%;
  }

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../img/cta-bg.jpg") fixed center center;
  background-size: cover;
  padding: 120px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 2px;
  transition: 0.5s;
  margin: 10px;
  background: #64bc47;
  color: #fff;
  border-radius: 50px;
}

.cta .cta-btn:hover {
  background: #64bc47;
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

.load_more{ border:0;
  font-weight: 400;
  font-size: 15px; 
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px;  
  transition: 0.5s;
  margin: 10px;
  background: #64bc47;
  color: #fff;
  border-radius: 50px;}

.load_more:focus-visible {border:0; outline: 0;  }
/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.features .icon-box i {
  font-size: 48px;
  float: left;
  color: #64bc47;
}

.features .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left: 60px;
}

.features .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
}



/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 32px;
  color: #64bc47;
  float: left;
  line-height: 1;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #282828;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #5b5b5b;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .sent-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #64bc47;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #64bc47;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #64bc47;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #0f0f0f;
  color: #fff;
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
}


#footer p {
  font-size: 15px;
  font-family: "Asap", sans-serif;
  padding: 0;
  margin: 0 0 40px 0;
}

#footer .social-links {
  margin: 0 0 40px 0;
}

#footer .social-links a {
  font-size: 38px;
    display: inline-block;
    /* background: #64bc47; */
    color: #fff;
    line-height: 19px;
    padding: 10px 0px;
    margin-right: 20px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .social-links a:hover {
  
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  margin: 0 0 5px 0;
}

#footer .credits {
  font-size: 13px;
}

#footer .credits a {
  color: #64bc47;
  transition: 0.3s;
}

#footer .credits a:hover {
  color: #64bc47;
}

/*Media section*/
.news-section-four{
  position:relative;
 
}

.news-section-four .image-layer{
  position:absolute;
  left:0px;
  top:0px;
  right:0px;
  height:450px;
  background-size:contain;
}

.news-section-four .image-layer:before{
  position:absolute;
  content:'';
  left:0px;
  top:0px;
  right:0px;
  bottom:0px;
  z-index:-1;
  background-color:#0060ff;
}

.news-block-four{
  position:relative;
  margin-bottom:30px;
}

.news-block-four .inner-box{
  position:relative;
  background-color:#ffffff;
  box-shadow:0px 0px 20px rgba(0,0,0,0.15);
  min-height: 170px;
}

.news-block-four .inner-box .image{
  position:relative;
  overflow:hidden;
  background-color:#427cff;
}

.news-block-four .inner-box .image img{
  position:relative;
  width:100%;
  display:block;
  transition:all 0.3s ease;
  -moz-transition:all 0.3s ease;
  -webkit-transition:all 0.3s ease;
  -ms-transition:all 0.3s ease;
  -o-transition:all 0.3s ease;
}

.news-block-four .inner-box:hover .image img{
  opacity:0.7;
  transform:scale(1.04,1.04);
}

.news-block-four .inner-box .lower-content{
  position: relative;
    padding: 30px 15px;
    min-height: 170px;
    padding-bottom: 0;
}
.news-block-four .inner-box .lower-content .btn-link{
      position: absolute;
    bottom: 20px;
}

.news-block-four .inner-box .lower-content .post-date{
  position: absolute;
    right: 20px;
    top: -15px;
    color: #032f24;
    width: 136px;
    height: 30px;
    font-size: 15px;
    text-align: center;
    font-weight: 500;
    z-index: 1;
    line-height: 18px;
    padding-top: 5px;
    background-color: #f6f6f6;

}

.news-block-four .inner-box .lower-content .post-date span{
    display: block;
    font-size: 14px;
    font-weight: 600;
}

.news-block-four .inner-box .lower-content .post-meta{
  position:relative;
  padding-top:12px;
  border-top:1px solid #cccccc;
}

.news-block-four .inner-box .lower-content .post-meta li{
  position:relative;
  color:#427cff;
  font-size:16px;
  margin-right:10px;
  font-weight:600;
  padding-left:30px;
  display:inline-block;
}

.news-block-four .inner-box .lower-content .post-meta li .icon{
  position:absolute;
  left:0px;
  top:1px;
  color:#141d38;
  font-size:15px;
  margin-right:6px;
}

.news-block-four .inner-box .lower-content h4{
      position: relative;
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
        font-family: "Asap", sans-serif;
}

.news-block-four .inner-box .lower-content h4 a{
  position:relative;
  color:#032f24;
  transition:all 0.3s ease;
  -moz-transition:all 0.3s ease;
  -webkit-transition:all 0.3s ease;
  -ms-transition:all 0.3s ease;
  -o-transition:all 0.3s ease;
}

.news-block-four .inner-box .lower-content h4 a:hover{
  color:#64bc47;
}

.news-block-four .inner-box .lower-content .text{
  position:relative;
  line-height:1.8em;
  font-weight:500;
  margin-top:12px;
  color:#555555;
  font-size:16px;
  margin-bottom:18px;
}
.single-event-area{box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);}
.single-event-area .event-text {
    text-align: left;
    position: relative;
    z-index: 1;
    padding: 20px 15px;
    background-color: #fff !important;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    width: 100%;
}
.single-event-area .event-text .event-meta-data a{
      -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    position: relative;
    z-index: 1;
    color: #232323;
    font-size: 13px;
    font-weight: 500;
    display: inline-block;
    padding-right: 4px;
    padding-left: 0px;
}
.single-event-area .event-text .event-meta-data a:last-child{
    padding-right: 10px;
    padding-left: 10px;
}
.single-event-area .event-text .event-meta-data a:nth-child(2) {
    border-left: 1px solid #999;    
    padding: 0 5px;
}
.single-event-area .event-text h4 {
    font-size: 15px;
    color: #032f24;
    font-weight: 500;
    text-transform: inherit;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    margin-top: 10px;
    line-height: 24px;
        font-family: "Asap", sans-serif;
}
a.load_more:hover{color: #fff;}

.single-page-header { background-repeat: no-repeat; 
  background-size: cover !important;
  padding: 190px 0 120px;
  text-align: center;
  color: #fff;
  position: relative;
}

.single-page-header:before {
 background: rgba(0, 0, 0, 0.6);
  position: absolute;
  content: '';
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
.single-page-header h2{position: relative;}
.news-card .image-set {
    position: relative;
    background-size: cover;
    height: 240px;
    width: 100%;
overflow: hidden;
}
.news-card .image-set img {
    width: 100%;
    height: auto;
}
.news-card .event-text{
min-height: 130px;
}

/* Blog */
.news-section-two{
  position:relative;
  padding:110px 0px 110px;
}

.news-section-two .owl-dots{
  position:relative;
  display:none;
}

.news-section-two .owl-nav{
  position:absolute;
  right:0px;
  top:-90px;
}

.news-section-two .owl-nav .owl-prev,
.news-section-two .owl-nav .owl-next{
  position:relative;
  width:50px;
  height:50px;
  color:#141d38;
  font-size:22px;
  border-radius:3px;
  line-height:44px;
  text-align:center;
  margin-left:15px;
  display:inline-block;
  border:2px solid #141d38;
  transition:all 300ms ease;
  -webkit-transition:all 300ms ease;
  -ms-transition:all 300ms ease;
  -o-transition:all 300ms ease;
}

.news-section-two .owl-nav .owl-prev:hover,
.news-section-two .owl-nav .owl-next:hover{
  background-color:#141d38;
  border-color:#141d38;
  color:#ffffff;
}

.news-section-two .inner-container{
  position:relative;
  padding-right:0px;
}

.news-block-two{
  position:relative;
}

.news-block-two .inner-box{
  position:relative;
}

.news-block-two .inner-box .image-column{
  position:relative;
}

.news-block-two .inner-box .image-column .post-date{
  position:absolute;
  left:-35px;
  bottom:25px;
  color:#ffffff;
  width:70px;
  height:70px;
  font-size:24px;
  text-align:center;
  font-weight:800;
  z-index:1;
  padding-top:14px;
  background-color:#0060ff;
}

.news-block-two .inner-box .image-column .post-date span{
  display:block;
  font-size:14px;
  font-weight:600;
}

.news-block-two .inner-box .image-column .inner-column{
  position:relative;
}

.news-block-two .inner-box .image-column .image{
  position:relative;
  background-color:#0060ff;
  transition:all 300ms ease;
  -webkit-transition:all 300ms ease;
  -ms-transition:all 300ms ease;
  -o-transition:all 300ms ease;
}

.news-block-two .inner-box .image-column .image img{
  position:relative;
  width:100%;
  display:block;
  transition:all 300ms ease;
  -webkit-transition:all 300ms ease;
  -ms-transition:all 300ms ease;
  -o-transition:all 300ms ease;
}

.news-block-two .inner-box:hover .image-column .image img{
  opacity:0.8;
}

.news-block-two .inner-box .content-column{
  position:relative;
}

.news-block-two .inner-box .content-column .inner-column{
  position:relative;
}

.news-block-two .inner-box .content-column h4{
  position:relative;
  font-weight:700;
  line-height:1.4em;
  margin-bottom:20px;
}

.news-block-two .inner-box .content-column h4 a{
  position:relative;
  color:#141d38;
  transition:all 300ms ease;
  -webkit-transition:all 300ms ease;
  -ms-transition:all 300ms ease;
  -o-transition:all 300ms ease;
}

.news-block-two .inner-box .content-column h4 a:hover{
  color:#0060ff;
}

.news-block-two .inner-box .content-column .text{
  position:relative;
  color:#555555;
  font-size:16px;
  line-height:1.8em;
  font-weight:600;
  margin-bottom:25px;
}

.news-block-two .inner-box .content-column .post-meta{
  position:relative;
  padding-top:15px;
  margin-bottom:35px;
  border-top:1px solid #cccccc;
}

.news-block-two .inner-box .content-column .post-meta li{
  position:relative;
  color:#222222;
  font-size:16px;
  margin-right:15px;
  font-weight:600;
  display:inline-block;
}

.news-block-two .inner-box .content-column .post-meta li .icon{
  position:relative;
  top:1px;
  color:#0060ff;
  font-size:15px;
  margin-right:8px;
}


 @media (max-width: 767px) {

  #hero {  background-position:15%;}
  section{padding: 60px 0;}
  .section-title h2{ font-size: 28px; }
  #header .logo img{max-height: 60px;}
  .modal .modal-full{ width: 95%; }
  .director-col{ padding: 0px; margin: 0 15px; }
  .px-4{ padding-left: 0 !important; padding-right: 0 !important; }
  .card-title{ font-size: 26px; }
  .modal-content p.small, .modal-content p{ font-size: 14px; }
  }