

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color:#007f57;
  text-decoration: none;
}

a:hover {
  color: #65c9cd;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #3fbbc0;
  border-top-color: #ecf8f9;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

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

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

@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: #cc7f06;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

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

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

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #17a956;
  color: #fff;
  height: 40px;
  font-size: 16px;
  font-weight: 600;
  z-index: 996;
  transition: all 0.5s;
}

#topbar.topbar-scrolled {
  top: -40px;
}

#topbar i {
  padding-right: 6px;
  line-height: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
/* #header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;

  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

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

#header.header-scrolled {
  top: 0;
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

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

#header .logo img {
  max-height: 100%;
}



.appointment-btn:hover {
  background: #65c9cd;
  color: #fff;
}

@media (max-width: 768px) {
  .appointment-btn {
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }
} */

/*--------------------------------------------------------------
# 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 a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  color: #626262;
  white-space: nowrap;
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: 500;
}

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

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

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  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-radius: 4px;
}

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

.navbar .dropdown ul a {
  padding: 5px 20px !important;
    text-transform: uppercase !important;
    font-size: 16px;
    border-bottom: 1px solid #dfdfdf;
}

.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: #3fbbc0;
}

.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 {
  margin-left: 69%;
  margin-top: 23px;
  color: #555555;
  font-size: 43px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@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(60, 60, 60, 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;
  border-radius: 8px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

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

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

.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: #3fbbc0;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 94vh;
  background-color: rgba(60, 60, 60, 0.8);
  overflow: hidden;
  position: relative;
}

#hero:before {
  content: "";
  background: rgb(6 47 74 / 78%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

#hero .container {
  text-align: center;
  /* background: rgba(255, 255, 255, 0.9); */
  padding-top: 30px;
  padding-bottom: 73px;
  margin-bottom: 227px;
  /* border-top: 4px solid #3fbbc0; */
}

@media (max-width: 1200px) {
  #hero .container {
    margin-left: 50px;
    margin-right: 50px;
  }
  
}


@media only screen and (min-width:1300px) and (max-width:1400px){
  #hero h2 {
    margin-bottom: -66px !important;
  }
  #hero{
    height: 96vh !important;
  }
}



#hero h2 {
  color: #ffffff;
  margin-bottom: 36px;
  font-size: 70px;
  font-weight: 700;
}

#hero p {
  margin: 0 auto 30px auto;
  color: #555555;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgb(0 168 93);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: #007c50;
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #3fbbc0;
}

#hero .btn-get-started {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  background: #00aa5e;
}

#hero .btn-get-started:hover {
  background: #00aa5e;
}

@media (max-width: 992px) {
  #hero {
    height:93vh;
  }

  #hero .container {
    margin-top: 100px;
  }
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 39px;
  }
}

@media (min-width: 1024px) {

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 160vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 45px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f7fcfc;
}

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

.section-title h2 {
  color: #109a69;
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #007c50;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  margin-bottom: 20px;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
/* .breadcrumbs {
  padding: 20px 0;
  background-color: #ecf8f9;
  min-height: 40px;
  margin-top: 120px;
} */

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 70px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}


/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
/* .about {
  background: linear-gradient(rgb(254 254 254 / 3%), rgb(250 250 250 / 0%)), url(../img/section_bg06.png) fixed center center;
  background-size: cover;
  padding: 60px 0;
} */

/* .about {
  padding-bottom: 30px;
} */

.about .container {
  box-shadow: 0 5px 25px 0 rgba(214, 215, 216, 0.6);
}

.about .video-box img {
  padding: 15px 0;
}

.about .video-box img:before {
  content: "";
  background: rgba(3, 41, 66, 0.842);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.about .section-title p {
  font-family: 'Poppins', sans-serif;
  text-align: justify;
  /* font-style: italic; */
  color: #666;
}

.about .section-title p a{
  color: rgb(250 156 0);
}
.about .about-content {
  padding: 40px;
}

/* .about .icon-box+.icon-box {
  margin-top: 40px;
} */

.about .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  /* width: 72px;
  height: 72px; */
  /* background: #f1f7fb; */
  border-radius: 6px;
  transition: 0.5s;
}

.about .icon-box .icon i {
  color: #087b4c;
  font-size: 32px;
}

/* .about .icon-box:hover .icon {
  background: #428bca;
} */

.about .icon-box:hover .icon i {
  color: rgb(109, 109, 109);
}

.about .icon-box .title {
  margin-left: 60px;
  font-weight: 700;
  margin-bottom: 30px;
  font-size: 18px;
  text-transform: uppercase;
}

.about .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}

.about .icon-box .title a:hover {
  color: #007c50;
}

.about .icon-box .description {
  margin-left: 95px;
  line-height: 24px;
  font-size: 14px;
}

.about .video-box {
  position: relative;
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#007c50 50%, rgb(0 124 80 / 49%) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .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);
}

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

.about .play-btn:hover::after {
  border-left: 15px solid #087b4c;
  transform: scale(20);
}

.about .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;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

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

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

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

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
@media only screen and (min-width:1300px) and (max-width:1400px){
  .about .about-content {
    padding: 11px !important;
}
}



/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

.featured-services .icon-box::before {
  content: "";
  position: absolute;
  background: #d9f1f2;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
}

.featured-services .icon-box:hover::before {
  background: #007c50;
  top: 0;
  border-radius: 0px;
}

.featured-services .icon {
  text-align: center;
  margin-bottom: 15px;
}

.featured-services .icon i {
  font-size: 48px;
  line-height: 1;
  color: #007c50;
  transition: all 0.3s ease-in-out;
}

.featured-services .title {
  text-align: center;
  font-weight: 700;
  color: black;
  margin-bottom: 15px;
  font-size: 18px;
}

.featured-services .title a {
  color: #111;
}

.featured-services .description {
  color: black;
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.featured-services .icon-box:hover .title,
.featured-services .icon-box:hover .description {
  color: #fff;
}

.featured-services .icon-box:hover .icon i {
  color: #fff;
}






/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/

/* .services{
  background: linear-gradient(rgb(254 254 254 / 3%), rgb(250 250 250 / 0%)), url(../img/section_bg06.png) fixed center center;
  background-size: cover;
  padding: 60px 0;
} */
.services .service-item {
  padding: 40px;
    border-radius: 65px 0px 65px 0px;
    box-shadow: 2px 2px 17px 2px #d4d4d4;
    background: #ffffff;
  /* height: 100%; */
}

.services .service-item .icon {
  width: 48px;
    height: 48px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    margin-bottom: 23px;
}

.services .service-item .icon i {
  color: #067e54;
  font-size: 40px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
  line-height: 1.8;
}

.services .service-item .icon:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: #f0f1f2;
  border-radius: 50px;
  z-index: 1;
  top: 10px;
  right: -15px;
  transition: 0.3s;
}

.services .service-item h3 {
  color: black;
  text-align: center;
  font-weight: 700;
    /* padding-left: 104px; */
    margin: 0px 0px 0px 0px;
    padding-bottom: 8px;
    font-size: 20px;
    position: relative;
    /* display: inline-block; */
    /* border-bottom: 4px solid #ebebed; */
    transition: 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item .readmore {
  margin-top: 15px;
  display: inline-block;
  color: #e57f00;
}

.services .service-item:hover .icon:before {
  background: #ffbe6e;
}

.services .service-item:hover h3 {
  border-bottom: 4px solid;
 border-color: #ffbe6e;
}
@media only screen and (min-width:1300px) and (max-width:1400px){
  .services .service-item{
    padding: 22px !important;
    
  }
}


/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
/* .cta {
  background: #3fbbc0;
  color: #fff;
  background-size: cover;
  padding: 60px 0;
}

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

.cta .cta-btn {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #fff;
  color: #3fbbc0;
} */




/*--------------------------------------------------------------
# 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: #3fbbc0;
}

.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;
}







/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

.gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border:  1px solid #007c50;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #007c50;
}

.gallery .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 40px 0;
  }

  .gallery .swiper-slide-active {
    border: 6px solid #087b4c;
    padding: 4px;
    background: #fff;
    z-index: 1;
    transform: scale(1.2);
    margin-top: 10px;
  }
}




/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
background: linear-gradient(rgb(0 0 0 / 51%), rgb(0 0 0 / 61%)), url(../img/footer.jpg) fixed center center;
background-size: cover;
padding-bottom: 55px;
}
/* #footer {
  background: #eeeeee;
  padding: 0 0 30px 0;
  color: #555555;
  font-size: 14px;
} */

#footer .footer-top {
  /* background: #f6f6f6; */
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info p strong{
  margin-right: 7px;
}

#footer .footer-top .footer-info p span{
  margin-right: 7px;
}


#footer .footer-top .footer-info h3 {
  color: #ffd17b;
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  color: white;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
}

#footer .footer-top .social-links a {
  font-size: 24px;
  display: inline-block;
  /* background: #3fbbc0; */
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #65c9cd;
  text-decoration: none;
}

#footer .footer-top h4 {
  color: #ffd276;
  font-size: 25px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #f7b548;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  font-size: 15px;
  color: #ffffff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #3fbbc0;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border: 1px solid #d5d5d5;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #3fbbc0;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #65c9cd;
}

#footer .copyright {
  font-size: 12px;
    color: white;
    text-align: center;
    padding-top: 0px;
}

#footer .credits {
  color: white;
  padding-top: 3px;
  text-align: center;
  font-size: 12px;
}

#footer .credits a{
  color: #f7b449;
}

@media only screen and (min-width:1300px) and (max-width:1400px){
  #footer .footer-top .footer-links ul a{
    font-size: 13px !important;
  }
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: #f8f8f8;
  /* background: linear-gradient(rgb(254 254 254 / 3%), rgb(250 250 250 / 0%)), url(../img/section_bg04.png) fixed center center; */
  background-size: cover;
  padding: 60px 0;
}

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

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #009970;
  border: 2px solid #009970;
}





















.headerWraper {
  padding: 0px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
  background: #fff;
  height: 134px;
}
.headerWrap {
  -webkit-box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 25%);
  -moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.25);
  box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 25%);
  height: 134px;
  z-index: 135;
  position: relative;
  background: #fff;
}
.header {
  display: flex;
  max-width: 100%;
  margin: 0 auto;
  justify-content: space-between;
}
.headerLeft {
  width: 30%;
}


.headerRight {
  width: 80%;
}
.headerRightTop {
  padding-top: 5px;
    background: #087b4c;
    display: flex;
    justify-content: space-between;
    border-radius: 0 0 0 10px;
    height: 48px;
}
.headerRightBottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  padding: 19px 87px;
}

.utilityMenu {
  /* text-transform: uppercase; */
  font-size: 15px;
  padding-left: 0;
}
.utilityMenu ul {
  display: flex;
  justify-content: space-between;
}
.utilityMenu ul li {
  list-style: none;
  padding: 10px 20px 10px 20px;
  position: relative;
  border-radius: 0 0 0 10px;
}
.utilityMenu ul li a {
  color: #fff;
  text-decoration: none;
}
.utilityMenu ul li a img {
  top: -5px;
  position: relative;
}

.mainMenu ul li a {
  text-decoration: none !important;
  border-right: 1px solid #98002E;
  color: #3B3B3B;
  display: block;
  padding: 0 20px;
  font-size: 21px;
  font-family: "Avenir LT W01 85 Heavy";
}

.mainMenu ul li.active a {
  color: #98002E;
}


.mainMenu ul {
  display: flex;
  font-size: 17px;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  height: 96px;
}

.mainMenu ul li {
  list-style: none;
  border-bottom: 2px solid #fff;
  position: relative;
  cursor: pointer;
}

.mainMenu ul li:last-child a {
  border: none;
}

.applyButton a {
  /* display: flex; */
  background-color: #fff;
  background-image: linear-gradient(140deg, #ffffff, #ffd805 50%, #f4a83b);
  color: #000;
  padding: 7px 38px;
  text-decoration: none;
  font-size: 15px;
  /* text-transform: uppercase; */
  border-radius: 30px;
}

.applyButton{
  margin-top: 0;
}

.applyButton i{
  padding-right: 10px;
}
/*.apply{*/
/*  margin-left: 500px;*/
/*}*/
.download{
  margin-right: 45px;
}

@media only screen and (min-width:1300px) and (max-width:1400px){
  .apply{
    margin-left: 0px;
  }
  .mainMenu ul li a{
    font-size: 15px !important;
  }
  .logo{
    padding: 7px 6px !important;
  }
  .headerWraper{
    height: 113px !important;
  }
  .headerWrap{
    height: 117px !important;
  }
}


@media (max-width: 991px) {
  .headerLeft .logo a img{
    margin-top: 29px;
    width: 225px;
  }
  .logo{
    padding: 19px 0px;
  }

  .download{
    padding: 0px !important;
    margin-top: 9px !important;
    /* margin-top: 7px !important; */
    margin-right: 17px !important;
  }
  .apply {
    padding: 0px !important;
    margin-top: 9px !important;
    margin-left: 6px;
    margin-right: 5px;
    /* margin-top: 7px !important; */
    /* margin-left: 18px !important;*/
  }
  .applyButton a{
    padding: 5px !important;
    margin-top: 0px !important;
  }
  .utilityMenu{
    display: none;
  }


}










.mwPageBlock {
  position: relative;
  margin: 0px !important;
  padding: 0px !important;
}
/* DIV.mwPageBlock>.blockContents.pad-top-l {
  padding-top: 45px;
} */
.introIcons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 90vw;
  max-width: 1055px;
  margin-right: auto;
  margin-left: 30%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-around;
  -ms-flex-pack: justify;
  justify-content: space-between;
  text-align: center;
  text-transform: uppercase;
}
.introIconWrap {
  position: relative;
  margin-right: 10px;
  margin-left: 10px;
  padding-top: 10px;
}
.introIconImage {
  width: 14vw;
  max-width: 121px;
}

.introIcon-p.orange {
  color: #94ae12;
}

.introIcon-p.pink {
  color: #ff5f2b;
}

.introIcon-p.magenta {
  color: #08426d;
}

.introIcon-p.red {
  color: #166234;
}
.introIcon-p {
  position: relative;
  margin-top: 10px;
  font-family: Avenirltstd, sans-serif;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
}

.introIconWrap:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1) !important;
}

@media only screen and (min-width:1300px) and (max-width:1400px){
  .introIconImage {
    max-width: 100px !important;
}
.introIcons{
  max-width: 895px !important;
  margin-left: 24%;
}
}
@media (max-width:992px){
  .introIcons{
    margin-left: 7% !important;
  }
}






.mwPageBlock1 {
  position: relative;
  margin: 0px !important;
  padding: 0px !important;
}
/* DIV.mwPageBlock>.blockContents.pad-top-l {
  padding-top: 45px;
} */
.introIcons1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 90vw;
  max-width: 1055px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-around;
  -ms-flex-pack: justify;
  justify-content: space-between;
  text-align: center;
  text-transform: uppercase;
}
.introIconWrap1 {
  position: relative;
  margin-right: 10px;
  margin-left: 10px;
  padding-top: 10px;
}
.introIconImage1 {
  width: 14vw;
  max-width: 121px;
}

.introIcon-p1.orange {
  color: #dcb434;
}

.introIcon-p1.pink {
  color: #ff5f2b;
}

.introIcon-p1.magenta {
  color: #08426d;
}

.introIcon-p1.red {
  color: #090808;
}
.introIcon-p1 {
  position: relative;
  margin-top: 10px;
  font-family: Avenirltstd, sans-serif;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
}

.introIconWrap1:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1) !important;
}

@media only screen and (min-width:1300px) and (max-width:1400px){
  .introIconImage1 {
    max-width: 100px !important;
}
.introIcons1{
  max-width: 895px !important;
}
}
















.mwPageBlock {
  position: relative;
  margin: 0px !important;
  padding: 0px !important;
}
.mwPageBlock, .mwPageArea {
  padding: 0px;
  clear: both;
}
.contentArea.gradient.pinkred {
  position: relative;
  /* padding-top: 5%; */
  padding-bottom: 5%;
  /* margin-top: 5%; */
  /* margin-bottom: 5%; */
  background-image:linear-gradient(135deg, #041810, #2de9a7);
}
.contentArea {
  padding: 24px 0 1px;
}
.mainContentArea {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}
.mwPageBlock, .mwPageArea {
  padding: 0px;
  clear: both;
}
.testimonialWrap {
  position: relative;
  padding: 70px 0 120px;
}
.testimonialImage {
  background-size: cover !important;
  top: 0;
  left: 0;
  width: 50%;
  padding-bottom: 30%;
  border-radius: 5px;
  /* overflow: hidden; */
  z-index: 30;
  position: relative;
  /* 0px 0px 10px 0px rgba(0,0,0,0.10): ; */
  -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.10);
  box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 10%);
}
.mainContentArea img {
  max-width: 100% !important;
}
.testimonialOpen {
  position: absolute;
    top: 92%;
    left: -22%;
    z-index: 44;
    width: 10vw;
    max-width: 160px;
    min-width: 60px;
}
.testimonialCopy {
  position: absolute;
    top: 30%;
    right: 0;
    width: 50%;
    background: #fff;
    width: 54%;
    padding: 5% 5% 3% 6%;
    border-radius: 5px;
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.10);
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 10%);
}

.testimonialCopy p a{
  color: red;
    font-size: 13px;
}
.mainContentArea p {
  font-family: 'Poppins', sans-serif;
  text-align: justify;
  font-size: 16px;
  margin: 10px 0px;
  line-height: 1.4;
  color: #383838;
}
.mainContentArea img {
  max-width: 100% !important;
}
.testimonialClose {
  position: absolute;
  bottom: 85%;
  right: -15%;
    z-index: 44;
    width: 9vw;
    max-width: 160px;
    min-width: 60px;
}


@media only screen and (min-width:1300px) and (max-width:1400px){
  .testimonialClose {
    bottom: 84% !important;
    right: -7% !important;
  }
}

.Clear {
  clear: both;
}



@media (max-width:991px){
  .testimonialWrap{
    padding:1px !important;
    height: 360px;
  }
  .testimonialImage{
    display: none;
  }
  .testimonialCopy{
    top: 3% !important;
    width: 100% !important;
  }
  .mainContentArea p{
    font-size: 11px !important;
  }
  .testimonialClose{
    bottom: 86% !important;
    right: -4% !important;
    min-width: 88px  !important;
  }

  section{
    padding: 18px 0 !important;
  }
  .section-title p{
    font-size: 12px !important;
  }
}

















.contentArea.white {
  background: #f6f6f6;
}

.mainContentArea {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}
h3.fftitle {
  font-size: 58px;
  font-weight: 800;
  margin: 15px 0;
  line-height: 1.1;
  text-transform: uppercase;
  color: #98002E;
  font-family: "Avenir LT W01 85 Heavy";
}
@media only screen and (min-width:1300px) and (max-width:1400px){
  h3.fftitle{
    font-size: 45px !important;
    margin: 0 !important;
  }
}
/* .mwSpacer.small {
  height: 40px;
} */
.nineSixty {
  max-width: 960px;
  margin: 0 auto;
}
.threeColumn {
  display: flex;
  justify-content: space-between;
  margin: 0 0 40px;
}
.threeCol {
  margin: 0 auto;
  width: 30%;
}
.mwBtnCenter {
  text-align: center;
}
.mainContentArea p {
  font-size: 16px;
    margin: 10px 0px;
    line-height: 1.8;
    color: #383838;
}
.button.red p a {
  text-align: center;
  padding: 10px 0;
  color: #fff;
  background-color: #046140;
  border-radius: 30px;
}
.button p a {
  position: relative;
  z-index: 9;
  line-height: unset;
  font-size: 15px;
  text-transform: uppercase;
  font-family: "Avenir LT W01 65 Medium";
  letter-spacing: 1px;
  background: #ccc;
  width: 100%;
  display: block;
}
.threeCol {
  margin: 0 auto;
  width: 30%;
}
.mwPageBlock {
  position: relative;
  margin: 0px !important;
  padding: 0px !important;
}

.mwPageBlock, .mwPageArea {
  padding: 0px;
  clear: both;
}
.button.gradient p a {
  text-align: center;
  padding: 10px 0;
  color: #fff;
  background-color: #fff;
  background-image: linear-gradient(140deg, #007c50, #f9c157 50%, #ce8848);
  border-radius: 30px;
}
.button p a {
  position: relative;
  z-index: 9;
  line-height: unset;
  font-size: 15px;
  text-transform: uppercase;
  font-family: "Avenir LT W01 65 Medium";
  letter-spacing: 1px;
  background: #ccc;
  width: 100%;
  display: block;
}
.threeCol {
  margin: 0 auto;
  width: 30%;
}
.button.red p a:hover {
  color: #fff;
  background-color: #db9855;
  border: 0px;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.button.gradient p a:hover {
  color: #0e0e0e;
  background-color: #fff;
  background-image:linear-gradient(140deg, #f1834b, #fedb49 50%, #d1c8a2);
  border: 0px;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}






.count1{
  padding: 10px 10px !important;
  background-color: #f6f6f6;
}


/* .count{
  background: linear-gradient(rgb(254 254 254 / 3%), rgb(250 250 250 / 0%)), url(../img/section_bg06.png) fixed center center;
    background-size: cover;
} */

.counter1{
  /* height: 250px; */
    /* border: 2px solid #42ee77; */
    /* width: 250px; */
    /* padding: 71px; */
    /* background-color: #004c31; */
    border-radius: 50%;
}

.counter1:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1) !important;
}



.counter1 span{
  color: #005037;
    font-size: 23px;
    font-weight: 500;
}

.count .counter1 .icon i{
  color: #005037;
    font-size: 70px;
    padding-top: 0px;
}

.counter {
  display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    /* margin: 1.5%; */
    font-size: 50px;
    /* background-color: #f4f4f4; */
    /* color: #499f68; */
    /* width: 200px; */
    /* border-radius: 50%; */
    /* height: 200px; */
    color: #005037;
    vertical-align: middle;
    font-weight: 600;
}




.counter::after {
  content: "+";
  display: block;
  position: relative;
  font-weight: 600;
  /* top: 78px; */
  /* right: 73px; */
}

@media only screen and (min-width:1300px) and (max-width:1400px){
  .counter{
    font-size: 41px !important;
  }
  /* .counter1{
    height: 240px !important;
    width: 240px !important;
    padding: 34px !important;

  } */

  .count .counter1 .icon i{
   /* margin-top: -36px !important;*/
    margin-top: -10px !important;
    font-size: 53px !important;
  }
  .counter1 span{
    font-size: 25px !important;
  }

  .scrolling-bar{
    padding: 7px !important;
    bottom: -5px !important;
  }
  .news-scroll .marquee a{
    font-size: 16px !important;
  }

  .scrolling-bar .head h2{
    font-size: 20px !important;
  }

}


@media (max-width: 992px){
  .scrolling-bar .head h2{
    float: left !important;
  }
}

















/*--------------------------------------------------------------
# Constructions Section
--------------------------------------------------------------*/
.constructions{
  background-image: linear-gradient(135deg, #041810, #2de9a7);
}

.constructions .section-title h2{
  color: #f6b248;
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}
.constructions .section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #f6b248;
  bottom: 0;
  left: calc(50% - 25px);
}


.constructions .card-item {
  box-shadow: rgb(0 0 0 / 25%) 0px 54px 55px, rgb(0 0 0 / 12%) 0px -12px 30px, rgb(0 0 0 / 12%) 0px 4px 6px, rgb(0 0 0 / 17%) 0px 12px 13px, rgb(0 0 0 / 9%) 0px -3px 5px;
  border: 1px solid rgba(82, 86, 94, 0.2);
  background: #fff;
  position: relative;
  border-radius: 11px;
}

.constructions .card-item .card-bg {
  min-height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.constructions .card-item .card-body {
  padding: 30px;
}

.constructions .card-item h4 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--color-secondary);
}

.constructions .card-item p {
  color: var(--color-secondary);
  margin: 0;
}

















/* .introIcons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 90vw;
  max-width: 1170px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-around;
  -ms-flex-pack: justify;
  justify-content: space-between;
  text-align: center;
  text-transform: uppercase;
}
.introIconWrap1 {
  position: relative;
  margin-right: 10px;
  margin-left: 10px;
  padding-top: 10px;
}
.introIconImage {
  width: 14vw;
  max-width: 155px;
}

.introIconWrap1:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
} */
.introIcon-p.magenta1 {
  color: #036301;
}
















.float-whatsapp {
  position: fixed;
    width: 45px;
    height: 45px;
    bottom: 136px;
    right: 18px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 28px;
    /* box-shadow: 2px 2px 3px #999; */
    z-index: 1;
  }
  .my-float-whatsapp{
    margin-top: 8px;
  }
  .float-call {
    position: fixed;
    width: 45px;
    height: 45px;
    bottom: 83px;
    right: 16px;
    border-radius: 50px;
    text-align: center;
    font-size: 32px;
  /* box-shadow: 2px 2px 3px #999; */
  z-index: 1;
  }
  
  .my-float-call{
    margin-top:8px;
  }
  
  @media only screen and (max-width: 767px){
  .float-whatsapp {
    bottom:85px;
    right: 20px;
    z-index: 11;
  }
  .float-call {
  bottom: 153px;
  right: 20px;
  }
  }





















@media (max-width: 992px){
  .counter1{
    padding: 45px !important;
  } 
 
}























.notification{
  margin: 0;
    margin-left: -12px;
    /* margin-right: 92px; */
    /* padding: 29px;*/
}

.scrolling-bar {
  width: 100%;
    padding: 9px;
    position: fixed;
    bottom: -10px;
    height: auto;
    overflow: hidden;
    -webkit-border-radius: 10;
    -moz-border-radius: 10;
    z-index: 1;
    background: #ffe200;
}

.scrolling-bar .head h2{
  float: right;
  color: #bd0000;
  font-size: 22px !important;
  font-weight: 100 !important;  
  font-family: Arial, Helvetica, sans-serif;
}

.news-scroll .marquee a {
  /* font-family: "Cera Pro";  */
  font-weight: 500;
  position: relative;
  font-size: 18px;
  color: rgb(0 0 0);
  padding: 0 8px;
}
.news-scroll .marquee a:after {
  content: "";
  width: 2px;
  background-color: #d48e45;
  height: 17px;
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
}

@-webkit-keyframes blinker {
  from {opacity: 1.0;}
  to {opacity: 0.1;}
}
.blink{
    text-decoration: blink;
    -webkit-animation-name: blinker;
    -webkit-animation-duration: 0.6s;
    -webkit-animation-iteration-count:infinite;
    -webkit-animation-timing-function:ease-in-out;
    -webkit-animation-direction: alternate;
}

















/*--------------------------------------------------------------
# Program Section
--------------------------------------------------------------*/
.recent-blog-posts .post-item {
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.recent-blog-posts .post-item .post-img img {
  transition: 0.5s;
}



.recent-blog-posts .post-item .post-content {
  padding: 17px;
}

.recent-blog-posts .post-item .post-title {
  font-size: 19px;
    color: #02285d;
    font-weight: 500;
    transition: 0.3s;
  /* margin-bottom: 15px; */
}

.recent-blog-posts .post-item .meta i {
  font-size: 16px;
  color: red;
}

.recent-blog-posts .post-item .meta span {
  font-size: 15px;
  color: #838893;
}

.recent-blog-posts .post-item hr {
  color: #888;
  margin: 20px 0;
}

.recent-blog-posts .post-item .readmore {
  /* display: flex; */
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: #fa9a0d;
}

.recent-blog-posts .post-item .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.recent-blog-posts .post-item:hover .post-title
 {
  color: #f9ae40;
}

.recent-blog-posts .post-item:hover .post-img img {
  transform: scale(1.1);
}


.recent-blog-posts .post-item:hover .readmore1,
.recent-blog-posts .post-item:hover .readmore3{
  text-align: center;
    padding: 10px 0;
    color: #fff;
    background-color: #046140;
    border-radius: 30px
}

.recent-blog-posts .post-item:hover .readmore2{
  text-align: center;
    padding: 10px 0;
    color: #fff;
    background-color: #fff;
    background-image: linear-gradient(140deg, #007c50, #f9c157 50%, #ce8848);
    border-radius: 30px;
}













.slick-list {
  outline: none !important;
}
.slick-slide {
  outline: none !important;
  }




/* .prev {
    position: absolute;
    z-index: 1000;
    top: 50%;
    left: -10px;
    font-size: 30px;
    border: 1px solid grey;
    background-color: #1bbfbc;
    padding: 0px 15px;
    transform: translateY(-50%);
}
.next {
  display: block;
  position: absolute;
  right: 1px;
  top: 50%;
  font-size: 30px;
  border: 1px solid grey;
  background-color: #1bbfbc;
  padding: 0px 15px;
  transform: translateY(-50%);
  z-index: 1000;
} */





.prev {
  border: 1px solid green;
  padding: 10px;
  margin-top: 230px;
  margin-left: -35px;
  position: absolute;
  width: 35px;
}

.next{
  border: 1px solid green;
    margin-left: 100%;
    position: absolute;
    bottom: 226px;
    padding: 10px;
    width: 35px;
}












.bg-image1 {
  position: absolute;
  /* left: -175px; */
  right: 101%;
  /* top: -200px; */
  width: 552px;
  height: auto;
  z-index: 1;
}

.bg-image2 {
  position: absolute;
  left: 108%;
  /* right: 107%; */
  top: -66px;
  width: 359px;
  height: auto;
  z-index: 1;
}
















 
.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: #3fbbc0;
}

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

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

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0 22px 52px;
  font-family: "Avenir LT W01 85 Heavy";
  font-size: 17px;
  color: #373737 !important;
  white-space: nowrap;
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: 500;
}

@media only screen and (min-width:1300px) and (max-width:1400px){
  .navbar a,
.navbar a:focus {
  padding: 31px 0 9px 44px !important;
  font-size: 16px !important;
}
}



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

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #f89b00 !important;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  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-radius: 4px;
}

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



.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: #3fbbc0;
}

.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: #555555;
    font-size: 43px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
  }
  
  .mobile-nav-toggle.bi-x {
    color: #fff;
  }
  
  @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(60, 60, 60, 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;
    border-radius: 8px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
  }
  
  .navbar-mobile a,
  .navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #555555;
  }
  
  .navbar-mobile a:hover,
  .navbar-mobile .active,
  .navbar-mobile li:hover>a {
    color: #3fbbc0;
  }
  
  .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: #3fbbc0;
  }
  
  .navbar-mobile .dropdown>.dropdown-active {
    display: block;
  }
  

























/* ...................................INNER PAGE HERO ...............................*/

.hero-wrap-2 {
  height: 365px;
  background-size: cover;
  background-position: center center;
  position: relative;
}

.hero-wrap-2 .overlay {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
background: #000000;
opacity: .2; }
.hero-wrap-2 .overlay .bread .breadcrumbs{
  background: #0036408f !important;
}

.text-bread {
height: 650px; }

.text-bread .text .bread {
  font-weight: 500;
  font-size: 48px;
color: rgb(255 248 248); }

.text-bread .text .breadcrumbs {
font-weight: 500; }

.text-bread .text .breadcrumbs span {
  font-weight: bold;
  color: #e9c900; }

.text-bread .text .breadcrumbs span a {
  font-weight: bold;
  color: #e9c900; }

.text.text-lg {
  position: absolute;
  bottom: 0px;
}







.about-para{
  line-height: 32px;
  text-align: justify;
}

.paraa{
  text-align: justify;
}


.feature:before {
  content: "*";
  color: #8d0000;
  position: absolute;
  left: -16px;
  bottom: 0;
  top: 0;
  margin: auto;
}

.feature{
  margin: 0;
  left: 12px;
  position: relative;
  margin-bottom: 5px;
}




.syllabus .bg-image1 {
  position: absolute;
    left: -320px;
    right: 94%;
    top: 93%;
    width: 655px;
    height: auto;
    z-index: -1;
}

.syllabus-box:hover{
  background-image: linear-gradient(135deg, #037544, #e6fff6);
}

.syllabus-box{
  text-align: justify;
  height: 217px;
  padding: 35px;
  box-shadow: 2px 2px 4px 1px #ebebebc7;
}

.syllabus-box p{
  margin-top: 20px;
}

.v-box::before {
  content: "";
  position: absolute;
  background: #d9f1f2;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
}

.v-box{
  text-align: justify;
  border-radius: 65px;
  height: 245px;
  padding: 35px;
  box-shadow: 2px 2px 4px 1px #ebebebc7;
}
.v-box:hover{
  background-color: #007c50;
    color: white;
}
.v-box:hover  h5{
  color: rgb(248 255 11);
}

.v-box h5{
  color: #026240;
}

.v-box p{
  margin-top: 20px;
}

.skills table tbody tr{
  height: 82px;
}



.skills{
  background-image: linear-gradient(135deg, #03110b, #2de9a7);
}
.skill ul li{
  font-size: 25px;
  list-style: none;
}

.skill ul li i{
  color: green;
    margin-right: 12px;
}





.skill ul li:before {
  content: "*";
  color: #8d0000;
  position: absolute;
  left: -16px;
  bottom: 0;
  top: 0;
  margin: auto;
}

@media only screen and (min-width:1300px) and (max-width:1400px){ 
  .syllabus-box{
    height: 240px !important;
    padding: 33px !important;
  }
  .v-box{
    border-radius: 39px !important;
    height: 265px !important;
    padding: 27px !important;
  }
  .contact-section iframe{
    height: 420px;
  }
}


@media (max-width:991px){
  .syllabus-box{
    padding: 18px !important;
  }

  .v-box{
    border-radius: 26px !important;
    padding: 21px !important;
  }

  .button.gradient p a{
    padding: 5px !important;
  }
  .button p a{
    font-size: 8px !important;
  }
  .button.red p a{
    padding: 4px !important;
  }


  #footer{
    padding-bottom: 89px !important;
  }
}

















.contact-section .contact-info .con {
  background: #fafafa;
  /* background-image: linear-gradient(to right, #2f8276 , #857210); */
    width: 100%;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px; 
}

.contact-section .contact-info p a {
  color: #1a1a1a; 
}


.block-9 .contact-bg{
  background: #fafafa;
}




.contact-section .contact-info p span {
  font-weight: 500;
  color: #000000; 
}

.block-9 .form-control {
  outline: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  font-size: 15px;
 }
.block-9 .form-group .btn-primary{
    background-color: #045b5e;
    border: #045b5e;
}
.block-9 .form-group .btn-primary:hover{
    background-color: #b8ac0d;
    border: #b8ac0d;
    color: black;
}

.block-9 .iframe-col{
  height: 365px;
  /* border: 3px solid #0d4f5e; */
  /* background-image: linear-gradient(to right, #7e7317 , #318274); */
}

.form-group{
  padding: 4px;
}

.contact-section .contact-info .con li i{
  color: green;
  font-size: 30px;
}

.call-icon{
  padding-top: 25px;
}
.email-icon{
  padding-top: 35px;
}











button {
  width: 150px;
  height: 40px;
  transition: 0.25s;
  border-radius: 4px;
  margin: 10px;
  font-size: 16px;
  font-family: Roboto;
  cursor: pointer;
}
.overlap {
  display: inline-block;
  text-align: center;
  transition: 0.2s;
  position: relative;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  border: 2px solid #007c50;
  color: #007c50;
  background: none;
}
.overlapText {
  transition: 0.3s;
  margin-block: 0px;
}
.overlapTwo {
  position: absolute;
    width: 100%;
    text-align: center;
    transition: 0.2s;
    cursor: pointer;
    background: #007c50;
    left: -154px;
    transition: 0.3s;
    top: 0;
    height: 40px
}
.overlapTwoText {
  color: #fff;
  font-size: 16px;
  margin-block: 10px;
  font-weight: 600;
}
.overlap:hover .overlapTwo {
  left: 0px;
}
.overlap:hover .overlapText {
  margin-left: 55px;
}
.overlap:active {
  /*Clicked and held*/
  box-shadow: 0px 5px 6px rgba(255, 0, 0, 0.3);
}


















.snip1527 {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  color: #ffffff;
  float: left;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 16px;
  margin: 10px 1%;
  /* max-width: 310px; */
  /* min-width: 250px; */
  overflow: hidden;
  position: relative;
  text-align: left;
  width: 100%;
}

.snip1527 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.snip1527 img {
  max-width: 100%;
  vertical-align: top;
  position: relative;
}

.snip1527 figcaption {
  padding: 10px 10px 9px;
  position: absolute;
  bottom: 0;
  z-index: 1;
}

.snip1527 figcaption:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  /* background: #700877; */
  content: '';
  background: -moz-linear-gradient(90deg, #007c50 0%, #0a3552 100%, #ff2759 100%);
  background: -webkit-linear-gradient(90deg, #007c50 0%, #0a3552 100%, #ff2759 100%);
  background: linear-gradient(90deg, #007c50 0%, #0a3552 100%, #ff2759 100%);
  opacity: 0.8;
  z-index: -1;
}

.snip1527 .date {
  background-color: #fff;
  border-radius: 50%;
  color: #700877;
  font-size: 18px;
  font-weight: 700;
  min-height: 48px;
  min-width: 48px;
  padding: 10px 0;
  position: absolute;
  right: 15px;
  text-align: center;
  text-transform: uppercase;
  top: -25px;
}

.snip1527 .date span {
  display: block;
  line-height: 14px;
}

.snip1527 .date .month {
  font-size: 11px;
}

.snip1527 h3,
.snip1527 p {
  margin: 0;
  padding: 0;
}

.snip1527 h3 {
  display: inline-block;
  font-weight: 700;
  letter-spacing: -0.4px;
  margin-bottom: 5px;
}

.snip1527 p {
  font-size: 0.8em;
  line-height: 1.6em;
  margin-bottom: 0px;
}

.snip1527 a {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 1;
}

.snip1527:hover img,
.snip1527.hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}







/* -----------------Form Print--------------- */

.person-logo{
  float: right;
}
.image-applicant{
  border: 1px solid;
  /*height: 170.08px;*/
  width: 132.28px;
  float: right;
}.image-left{
  height: 170.08px;
  width: 132.28px;
  float: left;
}
.form-print table tr td{
  width: 50%;
}




.hidden{
    display:none;
}


@media print{
    
.hidden{
    border-top: 1px solid gray;
    margin-top: 250px;
    display: flex;
}

}


.btn-pdf{
    text-align: center;
}

button.btn.btn-success {
    width: auto;
    /*font-size: 12px;*/
}


@media (max-width: 400px) {

   button.btn.btn-success{
       font-size: 12px;
   } 
   
   .section-title{
       display: none;
   }
    
    
}
