:root {
  --primary: #209A47;
  --accent-color: #209A47;
  --border-color: #D0D0D0;
  --nav-link-color: #6D6D6D;
  --dark-grey: #303030;
  --boxcolor1: #F5C43D;
  --textcolor1: rgb(104, 64, 0);
  --boxcolor2: rgb(32, 154, 71);
  --textcolor2: white;
  --bg1: rgba(104, 64, 0, 0.1);
  --fg1: rgba(104, 64, 0, 0.67);
  --sidebar-bg: rgba(255, 255, 255, 0.8);
  --sidebar-size: 150px;
  --footer: #F5F9EA;
  --body-font: museo-sans, sans-serif;
  --body-font-size: 1.125rem;
  --swiper-theme-color: #209A47;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}



body {
  margin: 0;
  padding: 0;
  font-family: var(--body-font);
  font-size: var(--body-font-size);
  font-weight: 300;
    overflow-x: hidden;
}


/* =========================================page loader================================
==================================================================================*/\





/*.swiper-slide:nth-child(1) {
  background-color: #3e5050;
}
.swiper-slide:nth-child(2) {
  background-color: #495f5f;
}
.swiper-slide:nth-child(3) {
  background-color: #546d6d;
}
.swiper-slide:nth-child(4) {
  background-color: #5f7c7c;
}
.swiper-slide:nth-child(5) {
  background-color: #6b8a8a;
}*/

#pagination li.active, #pagination li:hover {
            background: var(--primary);
            opacity: 1;
      }

#pagination {
  position: fixed;
  top: 48%;
  transform: translateY(-50%);
  right: 44px;
    list-style: none;}

#pagination a {
    position: absolute;
    text-decoration: none;  
    left: 0;
    top: 0;
    color: inherit;
    width: 100%;
    height: 100%;
  }



#pagination li {
    position: relative;
    margin: 11px 0;
    border-radius: 100%;
    background: #000;
    opacity: .2;
    /*width: 8px;
    height: 8px;*/
    transition: all .2s ease;
    width: 1rem;
    height: 1rem;
    border: 5px solid rgba(255, 255, 255, 0.5);
}

body.page-1 #pagination li:nth-of-type(1), body.page-2 #pagination li:nth-of-type(2), body.page-3 #pagination li:nth-of-type(3), body.page-4 #pagination li:nth-of-type(4), body.page-5 #pagination li:nth-of-type(5) {
  
    background: var(--primary);
    opacity: 1;
}




.preloader {
	position: fixed;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	z-index: 10000;
}


.pre-loader-wrap {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	/*background-color: #f68f04;*/
	background-color: #ffffff;
	/*background: linear-gradient(150deg, #FFCC00 0%, #f66904 92.45%);*/
}

.loader-logo {
    /*max-width: 250px;*/
    margin: -60px auto 30px;
}

.loader-logo img{
    width: 200px;
}

/*
.loader-progressbar {
	position: relative;
	width: 300px;
	height: 3px;
	border-radius: calc(3px * 2);
	margin: auto;
	overflow: hidden;
}

.loader-progressbar:before {
	content: "";
	position: absolute;
	right: 0;
	width: 300px;
	height: 3px;
	border-radius: calc(3px * 2);
	background: #8300B1;
	animation: barLoadAnim 1.4s infinite ease-in-out;
}
*/

.loader-progressbar:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 1px;
	background: #8300B1;
	opacity: 0.2;
	top: 0;
	left: 0;
	bottom: 0;
	margin: auto;
}

@keyframes barLoadAnim {
	0% {
		transform: translateX(calc(300px * -1));
	}
	0%,
	40% {
		width: 300px;
	}
	95%,
	to {
		width: 0;
		transform: translateX(0);
	}
}

/*
.viewport {
  overflow: hidden;
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.scroll-container {
  position: absolute;
  overflow: hidden;
  z-index: 10;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.content {
  width: 100%; 
}
*/

.loading-screen{
    position: relative;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    background-color: #fff;
    width: 0;
    height: 100%;
}

.load-container{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 10;
    pointer-events: none;
}

.screen-top{
    width:100%;
    height: 100vh;
    background: #f5c43d;
    /*background: linear-gradient(150deg, #FFCC00 0%, #f66904 92.45%);*/
    position: fixed;
    z-index: 1000;
    top: -100%;
}

.screen-bottom{
    width:100%;
    height: 100vh;
    background: #f5c43d;
    /*background: linear-gradient(150deg, #FFCC00 0%, #f66904 92.45%);*/
    position: fixed;
    z-index: 1000;
    bottom: -100%;
}

/*
ul.transition {
    display: flex;
    position: absolute;
    z-index: 10; 
    height: 100vh;
    width: 100%;
    top: 0;
    left: 0;
    margin: 0;
    pointer-events: none;
    text-decoration: none;
}

ul.transition li{
    transform: scaleY(0);
    background: linear-gradient(150deg, #FFCC00 0%, #f66904 92.45%);
    width: 20%;
}
*/

@media screen and (max-width: 576px) {
  body {
    overflow-x: hidden;
  }
}

svg text {
  font-family: var(--body-font);
}

a {
  color: var(--primary);
}

a:hover {
  color: black;
}

a[href^=tel] {
  border-bottom: 1px dashed currentColor;
  text-decoration: none;
}

a[href^=tel]:hover {
  border-bottom: 1px dashed black;
  background-color: white;
}

.crop {
  overflow: hidden;
}

.crop-x {
  overflow-x: hidden;
}

.crop-y {
  overflow-y: hidden;
}


section, div {
  position: relative;
}

nav {
  width: var(--sidebar-size);
  /* as designed */
  background-color: var(--sidebar-bg);
  /*border-right: 1px solid var(--border-color);*/
  -ms-flex-negative: 0;
      flex-shrink: 0;
  top: 0;
  left: 0;
  /*-webkit-box-shadow: 3px 0 6px rgba(0, 0, 0, 0.1);
          box-shadow: 3px 0 6px rgba(0, 0, 0, 0.1);*/
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  /*z-index: 2020;*/
  z-index: 999;
  -webkit-transition: left 200ms ease;
  transition: left 200ms ease;
  top: 0;
  width: 50vw;
  /*left: -50vw;*/
  left: -200px;
}

.nav__toggle--control:checked ~ nav {
  left: 0;
}

.nav__toggle--control:checked ~ nav .nav__toggle--label {
  color: white;
}

nav a:hover {
  color: var(--primary);
}

@media screen and (min-width: 640px) {
  nav {
   /* width: var(--sidebar-size);*/
    /* as designed */
    left: 0;
      width: 255px;
  }
}

.nav__toggle--control {
  display: none;
}

.nav__toggle--label {
  position: absolute;
  display: block;
  top: 10px;
  border: 1px solid var(--border-color);
  background-color: white;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-left: 0;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 60px;
  right: -60px;
  cursor: pointer;
  padding: 1rem;
  -webkit-transition: right 1s ease-out;
  transition: right 1s ease-out;
}

.nav__toggle--label .text {
  display: none;
}

.nav__toggle--label .hamburger, .nav__toggle--label .hamburger::before, .nav__toggle--label .hamburger::after {
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--primary);
  content: '';
}

.nav__toggle--label .hamburger {
  position: relative;
}

.nav__toggle--label .hamburger::before, .nav__toggle--label .hamburger::after {
  position: absolute;
}

.nav__toggle--label .hamburger {
  top: 0px;
}

.nav__toggle--label .hamburger::before {
  top: -8px;
}

.nav__toggle--label .hamburger::after {
  top: 8px;
}

.nav__toggle--control:checked ~ nav .nav__toggle--label .hamburger{background: transparent!important;}

.nav__toggle--control:checked ~ nav .nav__toggle--label .hamburger::before{
    -webkit-transform: translateY(11px) translateX(0) rotate(45deg);
    transform: translateY(11px) translateX(0) rotate(45deg);
    width: 80%;
    top: -9px;
}

.nav__toggle--control:checked ~ nav .nav__toggle--label .hamburger::after{
    -webkit-transform: translateY(-11px) translateX(0) rotate(-45deg);
    transform: translateY(-11px) translateX(0) rotate(-45deg);
    top: 12px;
    width: 80%;
}



@media screen and (min-width: 640px) {
  .nav__toggle--label {
    display: none;
  }
}

.nav__toggle--overlay {
  position: fixed;
  display: none;
  width: 0;
  height: 0;
  left: -100vw;
  -webkit-transition: left 2000ms ease;
  transition: left 2000ms ease;
}

.nav__toggle--control:checked ~ .nav__toggle--overlay {
  display: block;
  z-index: 501;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  /*background-color: rgba(255, 255, 255, 0.5);*/
  background-color:  rgba(32, 154, 71, 0.38);
}

.affixed {
  position: fixed;
}

.fit-page-height {
  height: 100vh;
}

main, .main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.block {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.shaded {
  padding-top: 4.6875rem;
  padding-bottom: 4.6875rem;
}

.split-page__image {
  width: 100%;
}

/*.split-page__figure {
  max-height: 450px;
}*/

.split figure, .split picture {
  width: 100%;
  margin: 0;
}

@media screen and (min-width: 768px) {
  .split figure, .split picture {
    height: 100%;
  }
}

@media screen and (max-width: 768px) {
  figure img {
    /*height: 50vh;*/
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}

ul.branded {
  list-style: none;
  position: relative;
}

ul.branded li::before {
  content: " ";
  width: 0.5em;
  height: 0.5em;
  display: block;
  border-radius: 50%;
  background-color: var(--accent-color);
  position: relative;
  top: 1em;
  left: -1.5rem;
}

ul.newsblock{
    display:grid;
    list-style-type:none;
    grid-template-columns:auto;
    grid-gap:20px;
    margin: 0;
    padding: 0;
}
ul.newsblock li{
    padding:20px;
    background-color:#f4f4f4;
    font-size:12px;
}
ul.newsblock li strong{
    font-size:13px;
}
ul.newsblock li strong a{
    display:block;
    font-size:15px;
    margin-bottom:8px;
}

ul.navigation {
  list-style: none;
  /*padding: 0;*/
  padding-top: 1rem;
}

ul.navigation li {
  width: 100%;
}

.navigation a {
  display: block;
  position: relative;
}

.navigation a {
  text-transform: uppercase;
  color: var(--nav-link-color);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: normal;
  line-height: 1.3;
  padding: 0.9rem 1.375rem;
  -webkit-transition: padding 200ms ease-in;
  transition: padding 200ms ease-in;
}

.navigation a:hover{
  padding-left: 2rem;
}

.navigation a.active{
  font-weight: bold;
  color: var(--primary);
}

.navigation li.active a{
    font-weight: bold;
    color: var(--primary);
}

img.brand {
  width: 50%;
  max-width: 150px;
  display: block;
  margin: auto;
  margin-top: 1.4375rem;
  margin-bottom: 1rem;
}

/*@media screen and (min-width: 768px) {
  img.brand {
    width: 70%;
  }
}*/

.page-header-logo a {
  display: block;
}

.page-header-logo img.brand {
  max-width: 100px;
}

@media screen and (min-width: 768px) {
  .page-header-logo {
    display: none !important;
  }
}

.no-block-container {
  width: 100%;
  padding-left: 1.875rem;
  padding-right: 1.875rem;
}

@media screen and (min-width: 576px) {
  .no-block-container {
    /*padding-left: 14.0625rem;*/
    padding-left: 20.0625rem;
    padding-right: 4.6875rem;
  }
}

.page-content-area {
  width: 100%;
  padding-left: 0;
}

@media screen and (min-width: 576px) {
  .page-content-area {
    /*padding-left: 9.375rem;*/
          padding-left: 16rem;
  }
}

.block-container {
  width: 100%;
  padding-left: 1.875rem;
  padding-right: 1.875rem;
}

@media screen and (min-width: 576px) {
  .block-container {
    padding-left: 4.6875rem;
    padding-right: 4.6875rem;
  }

  /* .text-container {
    padding-left: 10px;
    padding-right: 10px;
  } */

}

.block-centered {
  margin: auto;
}

.main-background {
  height: 100vh;
  padding: 0;
  margin: 0;
  overflow: hidden;
    background: url(../images/hero-image-vatsala.jpg) no-repeat;
    background-position: 100%;
        background-size: cover;
}

@media screen and (min-width: 576px) {
  img.background-fill {
    width: 100%;
  }
}

@media screen and (orientation: landscape) {
  img.background-fill {
    width: 100%;
    height: auto;
  }
}

@media screen and (orientation: portrait) {
  img.background-fill {
    width: auto;
    height: 100vh;
  }
}

.bold {
  font-weight: bold !important;
}

.mastheading {
  position: absolute;
  bottom: 0;
  padding-bottom: 5rem;
}

.mastheading .mainheading{
    font-size: 3rem;
  line-height: 3rem;
  letter-spacing: -0.05em;
  color: white;
  font-weight: 800;
}

@media screen and (min-width: 576px) {
  .mastheading .mainheading {
    font-size: 5.3125rem;
    line-height: 5.3125rem;
  }
}

h1, h2, h3, h4, h5, h6 {
  color: var(--primary);
  font-weight: 300;
  margin-top: 0;
  margin-bottom: 0;
}

h1, h2 {
  font-weight: 200;
}

h1 {
  /*font-size: 2.09375rem;*/
    font-size: clamp(30px, 4.2vw, 54px)!important;
  line-height: 1.12;
  letter-spacing: -0.05em;
  padding-bottom: 2.5rem;
  padding-top: 4.6875rem;
}

@media screen and (min-width: 576px) {
  h1 {
    font-size: 3.125rem;
  }
}

h2 {
    font-size: clamp(29px, 4vw, 45px)!important;
  /*font-size: 2.8125rem;*/
  line-height: 1.2;
  letter-spacing: -0.05em;
  padding-bottom: 2.5rem;
}

h3{font-size: clamp(24px, 2.5vw, 32px)!important;}

h3, .h3, .gallery__card-caption--stat {
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-weight: 300;
  font-size: 1.33333rem;
}

@media screen and (min-width: 768px) {
  h3, .h3, .gallery__card-caption--stat {
    font-size: 2rem;
  }
}

h4 {
  font-size: 1.8rem;
}

h5 {
  font-size: 1.8rem;
}

h6, .h6 {
  font-size: 1.125rem;
  line-height: 1.13;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
}

h3, h6, p, .h6 {
  padding-bottom: 2rem;
}

p {
  font-size: var(--body-font-size);
  line-height: 1.6;
  margin-bottom: 0;
}

.invert {
  color: white;
}

.invert h1, .invert h2, .invert h3, .invert h4, .invert h5, .invert h6 {
  color: white;
}

@media (max-height: 300px) {
  h1.masthead {
    font-size: 3.125rem;
    line-height: 3.125rem;
    padding-bottom: 2rem;
  }
}

.eyebrow {
  text-transform: uppercase;
  color: var(--nav-link-color);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-size: small;
  padding-top: 3rem;
  padding-bottom: 1rem;
  font-weight: 500;
}

.shaded .eyebrow {
  color: currentColor;
}

h1 + .eyebrow,
h2 + .eyebrow,
h3 + .eyebrow,
h4 + .eyebrow,
h5 + .eyebrow,
h6 + .eyebrow {
  margin-top: 0;
  padding-top: 0;
}

strong {
  font-weight: 900;
}

.social-links {
  margin-top: 4rem;
  position: absolute;
  width: 100%;
  bottom: 0;
  padding-bottom: 4rem;
}

.social-links--icons {
    position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: grid;
grid-row-gap: 1.2em;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  /*width: 70%;*/
  width: 100%;
  margin: auto;
}

.social-links--icons:before{
    content: '';
    position: absolute;
    height: 90%;
    width: 1px;
    background: #209A47;
    top: -127%;
    left: 50%;
}

.color {
  color: var(--primary);
}

.button {
  display: inline-block;
  color: var(--textcolor1);
  border: 1px solid #9F680f;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0 2.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 3.2;
  margin: 0 auto;
  margin-bottom: 2rem;
}

.button:hover {
  color: black;
  border-color: black;
  text-decoration: none;
  -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}

.flower {
  position: relative;
}


svg#v_e {
  width: 80%;
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
  -webkit-transition: -webkit-transform ease 0.3s;
  transition: -webkit-transform ease 0.3s;
  transition: transform ease 0.3s;
  transition: transform ease 0.3s, -webkit-transform ease 0.3s;
}

.petal_text {
  --doc: "this is inside svg#v_e";
  font-size: 25px;
  line-height: 1;
  color: white;
  fill: white;
}

@media (min-width: 1440px) {
  svg#v_e {
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
}

.flex-center-column {
  --doc: "vertically center contents. useful for large empty sections with small text content.";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
}

.stats-quad {
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 1.875rem auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (min-width: 768px) {
  .stats-quad {
    margin: 4.6875rem auto;
  }
}

.stats-quad--biglabel {
  font-size: 1.5rem;
  font-weight: bold;
}

@media screen and (min-width: 576px) {
  .stats-quad--biglabel {
    font-size: 2.5rem;
  }
}

.stats-quad--smalllabel {
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 1.1;
  margin-top: 1rem;
}

.stats-quad li {
  text-align: center;
  width: 45%;
  min-height: 150px;
  position: relative;
  padding-top: 1rem;
  color: var(--fg1);
}

.stats-quad li:first-child::before {
  display: block;
  content: "";
  position: absolute;
  top: 10%;
  height: 80%;
  right: 0;
  border-right: 1px solid var(--bg1);
}

.stats-quad li:first-child::after {
  display: block;
  content: "";
  position: absolute;
  width: 80%;
  left: 10%;
  bottom: 0;
  border-bottom: 1px solid var(--bg1);
}

.stats-quad li:last-child::before {
  display: block;
  content: "";
  position: absolute;
  top: 10%;
  height: 80%;
  left: 0;
  border-right: 1px solid var(--bg1);
}

.stats-quad li:last-child::after {
  display: block;
  content: "";
  position: absolute;
  width: 80%;
  left: 10%;
  top: 0;
  border-bottom: 1px solid var(--bg1);
}

.cert-icon, .cert-img {
  margin-bottom: 1.25rem;
}
.cert-img img { width: 100%;}
.cert-img { position: relative; border: 1px solid #eee;}
.cert-img:before {
    transition: all 0.4s linear;
}
.cert-img a {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 22;
}
.cert-img:hover:before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(32 154 71 / 34%);
    display: none;
}
.cert-img:hover:after {
    position: absolute;
    content: "+";
    left: 0;
    right: 0;
    top: 45%;
    width: 40px;
    height: 40px;
    background-color: #209a47;
    color: #fff;
    line-height: 22px;
    font-size: 22px;
    display: flex;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    display: none;
}
.mfp-iframe-scaler {overflow: initial;}
.cert-icon span {
  display: inline-block;
  text-align: center;
  width: 10.625rem;
  height: 10.625rem;
  margin: auto;
  background-color: #DAFBFD;
  border-radius: 0.75rem;
  color: white;
}

@media screen and (min-width: 576px) {
  .cert-icon span {
    width: 10.625rem;
    height: 10.625rem;
  }
}

.cert, .cert-detail {
  font-size: 1.25rem;
  line-height: 1.5rem;
}

.about-us__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.about-us__images > figure {
  margin: 0;
}

@media screen and (min-width: 768px) {
  .about-us__images > figure {
    margin: 1rem;
  }
  .about-us__images > figure:first-child {
    margin-left: 0;
  }
  .about-us__images > figure:last-child {
    margin-right: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.about-us__images img {
  width: 100%;
}

.card-panel__card {
  margin-bottom: 1rem;
}

.card-panel__card + .card-panel__card {
  border-left: 1px dashed rgba(153, 97, 6, 0.2);
}

.goals {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
}

.goals__card {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  min-width: 0;
  max-width: 100%;
  padding: 0;
  margin-top: 1.5rem;
}

@media screen and (min-width: 768px) {
  .goals__card {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    min-width: 0;
    max-width: 100%;
    padding: 0 2rem;
    margin-top: 0;
    text-align: left;
  }
  .goals__card:first-child {
    padding-left: 0;
  }
  .goals__card:last-child {
    padding-right: 0;
  }
}

.goals__cardicon {
  margin-bottom: 1.875rem;
}

.gallery__card {
  overflow: hidden;
  position: relative;
  /*max-height: 500px;
  padding: 2rem 1rem;*/
}

.gallery__card figure{margin: 0 0 1.6em; background-color: #209a47; }

/*.gallery__card:nth-child(2n+1) {
  padding-left: 0;
}

.gallery__card:nth-child(2n) {
  padding-right: 0;
}*/

.gallery__image img{
  width: 100%; 
  transition: all 500ms cubic-bezier(.14,.99,.43,.99);
  height: 100%;
    min-height: 400px;
    object-fit: cover;
    aspect-ratio: 1/0.8;
}
.block-container ul {padding-left: 20px;}
.addlist span {
  padding: 5px 0;
}
.addlist span a {
  text-decoration: none;
  border-bottom: 0;
}
.addlist span a:hover {
  border-bottom: 0;
}
.gallery__card-image {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left top;
     object-position: left top;
  -webkit-transition: object-position 1s ease;
  transition: object-position 1s ease;
  transition: object-position 1s ease, -o-object-position 1s ease;
}

@media screen and (min-width: 768px) {
  .gallery__card-image {
    height: 450px;
    -o-object-position: left center;
       object-position: left center;
  }
}

.gallery__card-image:hover {
  -o-object-position: right top;
     object-position: right top;
  -webkit-transition: object-position 24s ease-out;
  transition: object-position 24s ease-out;
  transition: object-position 24s ease-out, -o-object-position 24s ease-out;
}

@media screen and (min-width: 768px) {
  .gallery__card-image:hover {
    -o-object-position: right center;
       object-position: right center;
  }
}

.gallery__card-caption {
  position: absolute;
  left: 3rem;
  bottom: 3.75rem;
  color: white;
}

.gallery__card-caption--title {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .25em;
  margin-bottom: 1rem;
}

.gallery__card-caption--detail {
  font-size: 1.125rem;
  line-height: 1.1;
}

.address-card {
  /*margin-top: 2rem;*/
  color: #9D9D9D;
}

.address-card > div + div {
  padding-top: 2rem;
}

.address-card span {
  display: block;
}

/*
wrap all elements inside the form in spans to work with this */
form.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 2rem;
}

form.flex span {
  padding-left: 10rem;
  position: relative;
  margin: 1rem 0;
}

form.flex label {
  position: absolute;
  left: 0;
  bottom: 0;
  margin-bottom: 0;
  font-weight: bold;
}

form.flex input {
  width: 100%;
}

form.flex input input:not([type]),
form.flex input[type=text], form.flex input[type=password], form.flex input[type=email],
form.flex input[type=url], form.flex input[type=time], form.flex input[type=date],
form.flex input[type=datetime], form.flex input[type=datetime-local], form.flex input[type=tel],
form.flex input[type=number], form.flex input[type=search], form.flex textarea {
  border: 0 none;
  border-bottom: 1px solid #D0D0D0;
}

form.flex input[type=submit] {
  background-color: transparent;
  font-size: 0.8rem;
  line-height: 2.5rem;
}

footer {
  display: block;
  background-color: var(--footer);
  color: var(--accent-color);
  position: relative;
  font-size: 0.875rem;
  line-height: 1.375rem;
}

footer .footer-wrapper {
  padding: 4rem 0 2rem 0;
}

footer svg {
  width: 16px;
  height: 16px;
}

.order-switch {
  --doc: "using special class `.order-switch` for switching order of 2-col blocks. for flexbox only";
}

.order-switch > :first-child {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.order-switch > :last-child {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.footer-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (min-width: 768px) {
  .footer-row {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

.footer-col {
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

.footer-col:first-child .sitemap {
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .footer-col {
    width: 25%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
  }
  .footer-col:last-child {
    text-align: right;
    margin-left: auto;
  }
}

.copyrights-credits {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.copyrights-credits small {
  font-size: 0.8125rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  line-height: 1.1rem;
}

@media screen and (min-width: 768px) {
  .copyrights-credits small {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    line-height: 2.5rem;
  }
}

.copyrights-credits small:last-child {
  width: 100%;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .copyrights-credits small:last-child {
    width: 30%;
    text-align: right;
  }
}

.copyrights-credits::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 90%;
  display: block;
  content: "";
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.copyrights-credits a {
  text-transform: none;
  color: var(--accent-color);
  padding: 0;
}

@media screen and (min-width: 768px) {
  .copyrights-credits a {
    padding: 0 0.5rem;
  }
}

.copyrights-credits a:hover {
  color: black;
}

#mapid {
  height: 100%;
  min-height: 70vh;
}

.madeby a {
  padding: 0;
}

.sitemap {
  list-style: none;
  padding: 0;
}

.sitemap a {
  color: var(--primary);
  text-transform: uppercase;
  text-decoration: none;
  line-height: 2.6;
  display: inline-block;
}

.sitemap a:hover {
  color: black;
}

.heartbeat {
  width: 0.67rem;
  height: 0.67rem;
  fill: #E3000F;
  -webkit-animation: heartbeats 2.5s infinite;
          animation: heartbeats 2.5s infinite;
}

.accordion {
  list-style: none;
  padding: 0;
}

.accordion__item {
  position: relative;
}

.accordion__item--label {
  color: var(--accent-color);
  padding: .5rem 0;
  margin-top: 1.5rem;
  margin-bottom: 0;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  padding-right: 2rem;
}

.accordion__item--label:hover {
  color: #206A27;
}

.accordion__item--control {
  opacity: 0;
  position: absolute;
}

.accordion__item--content {
  padding-top: 1rem;
  position: relative;
}

.accordion__item--control ~ .accordion__item--content {
  height: 0;
  min-height: 0;
  -webkit-transition: all ease 400ms;
  transition: all ease 400ms;
  overflow: hidden;
}

.accordion__item--control:checked ~ .accordion__item--content {
  height: auto;
  min-height: 4rem;
  -webkit-transition: all ease 400ms;
  transition: all ease 400ms;
  border-top: 1px solid var(--accent-color);
}

.accordion__item--caret {
  position: absolute;
  width: 24px;
  height: 24px;
  right: 0;
  top: 2rem;
}

.accordion__item--control ~ .accordion__item--caret {
  fill: var(--accent-color);
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  -webkit-transition: -webkit-transform ease 1s;
  transition: -webkit-transform ease 1s;
  transition: transform ease 1s;
  transition: transform ease 1s, -webkit-transform ease 1s;
}

.accordion__item--control:checked ~ .accordion__item--caret {
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
  -webkit-transition: -webkit-transform ease 1s;
  transition: -webkit-transform ease 1s;
  transition: transform ease 1s;
  transition: transform ease 1s, -webkit-transform ease 1s;
}

.clients .row .col {
  min-height: 15rem;
  padding: 15px;
}

.clients .row .col:before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--border-color);
}

/* animations */
@-webkit-keyframes heartbeats {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  5% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  10% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  15% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  50% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}
@keyframes heartbeats {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  5% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  10% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  15% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  50% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}

@-webkit-keyframes pulsate {
  0% {
    opacity: 0.1;
  }
  5% {
    opacity: 0.3;
  }
  10% {
    opacity: 0.8;
  }
  20% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.1;
  }
  100% {
    opacity: 0.1;
  }
}

@keyframes pulsate {
  0% {
    opacity: 0.1;
  }
  5% {
    opacity: 0.3;
  }
  10% {
    opacity: 0.8;
  }
  20% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.1;
  }
  100% {
    opacity: 0.1;
  }
}

@-webkit-keyframes mousewheels {
  0% {
    -webkit-transform: translateY(20%);
            transform: translateY(20%);
  }
  70% {
    -webkit-transform: translateY(80%);
            transform: translateY(80%);
  }
  80% {
    -webkit-transform: translateY(20%);
            transform: translateY(20%);
  }
  100% {
    -webkit-transform: translateY(20%);
            transform: translateY(20%);
  }
}

@keyframes mousewheels {
  0% {
    -webkit-transform: translateY(20%);
            transform: translateY(20%);
  }
  70% {
    -webkit-transform: translateY(80%);
            transform: translateY(80%);
  }
  80% {
    -webkit-transform: translateY(20%);
            transform: translateY(20%);
  }
  100% {
    -webkit-transform: translateY(20%);
            transform: translateY(20%);
  }
}

.test {
  background-color: purple;
}

.gold {
  --doc: "a gold section";
  background-color: var(--boxcolor1);
  color: var(--textcolor1);
}

.gold h1, .gold h2, .gold h3, .gold h4, .gold h5, .gold h6 {
  color: var(--textcolor1);
}

.forest {
  --doc: "a forest section";
  background-size: cover;
  background: -webkit-gradient(linear, left bottom, left top, from(var(--boxcolor2)), to(var(--boxcolor2))), url(../images/dark-fruits-bg.jpg);
  background: linear-gradient(0deg, var(--boxcolor2), var(--boxcolor2)), url(../images/dark-fruits-bg.jpg) no-repeat center center;
  background-blend-mode: difference, normal;
  mix-blend-mode: normal;
  color: white;
}

.growth {
  --doc: "a growth section; chopped log with blue effects";
    -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background: -webkit-gradient(linear, left bottom, left top, from(#98680F), to(#9F680F)), url(../images/log-tree.jpg);
  background: linear-gradient(0deg, #98680F, #9F680F), url(../images/log-tree.jpg) no-repeat center center;
  background-blend-mode: difference, normal;
  mix-blend-mode: normal;
  color: white;
}

.fern {
  --doc: "a fern section";
  background-color: var(--primary);
  color: white;
}

.fern h1, .fern h2, .fern h3, .fern h4, .fern h5, .fern h6 {
  color: white;
}

/* swiper (mini presentation) styles */
.swiper-container {
  min-height: 160px;
  width: 100%;
  padding-right: 2rem;
  height: 60vh;
  max-height: 400px;
}

@media screen and (min-width: 768px) {
  .swiper-container {
    padding-right: 0;
    max-height: 300px;
  }
}

.swiper-pagination {
  /* is already position absolute */
  top: 25%;
  right: 0;
  width: 1rem;
}

@media screen and (min-width: 768px) {
  .swiper-pagination {
    right: -2rem;
  }
}

.swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
  border: 5px solid rgba(255, 255, 255, 0.5);
}

.swiper-pagination-bullet:focus {
  outline: none;
}

.swiper-pagination-bullet-active {
  background: var(--primary);
}

.swiper-directions {
  content: "";
  display: block;
  border-radius: 1rem;
  border: 1px solid white;
  background: transparent;
  width: 1.5rem;
  height: 2.5rem;
  margin: 0.5rem auto;
  position: relative;
}

.swiper-directions::after {
  content: "";
  display: block;
  -webkit-animation: mousewheels 1s infinite;
          animation: mousewheels 1s infinite;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  width: 0.5rem;
  height: 0.5rem;
  margin: 0 auto;
}

.slide__header {
  display: block;
}

/*
.slide{
    margin: 0 18px 0;
}
*/

body::-webkit-scrollbar {
  width: 0.5rem;
  border-radius: 0.5rem;
}

body::-webkit-scrollbar:horizontal {
  height: 0.5rem;
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.3);
  background-color: rgba(255, 255, 255, 0.1);
}

body::-webkit-scrollbar-thumb {
  background-color: rgba(32, 154, 71, 0.6);
  border-radius: 0.5rem;
  margin: 2px;
  width: 4px;
}

body::-webkit-scrollbar-thumb:horizontal {
  background-color: rgba(32, 154, 71, 0.3);
}

.doc::after {
  content: var(--doc);
  display: block;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 20vmax;
  background: rgba(104, 64, 0, 0.9);
  color: yellow;
  mix-blend-mode: blur(3px);
  z-index: 9001;
  -webkit-box-shadow: 0 0 3px rgba(104, 64, 0, 0.67);
          box-shadow: 0 0 3px rgba(104, 64, 0, 0.67);
  padding: 1rem;
}
/*# sourceMappingURL=styles.css.map */














/*
h1.masthead{
    overflow: hidden;
}
*/



.flower-mask {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
}

.crop-mask {
    position: absolute;
    top: 0;
    left: 0;
    /*right: 0;*/
    bottom: 0;
    background: #f5c43d;
}

.abt-sm{position: relative; z-index: 1;}
.abt-lg{position: relative;}

.abt-sm-mask {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
}

.abt-lg-mask {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
}

.goals{z-index: 1;}

.investopp-mask {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
}

.investopp-block{z-index: 2;}

.solar-mask{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
}

.wind-solar-mask{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
}

.wind-energy-mask{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
}

.masthead-mask{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
}


.open-access-mask{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
}

.ite-gallery .gallery__card{
    padding: 0 15px;
    max-height: 100%;
}

.ite-gallery .gallery__card:nth-child(2n){
    padding-right: 15px;
}
.ite-gallery .gallery__card:nth-child(2n+1){
    padding-left: 15px;
}

.ite-gallery figure img{
    width: 100%;
    height: 14vw;
    object-fit: cover;
}

.ite-gallery figure{ margin: 0 0 1.6em;}

.vbsppl-img-block img{
    width: 100%;
}

.ite-gallery figure .plusicon img{height: 100%;}


.overlay:after{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
    opacity: 0;
    background-color: rgba(220, 230, 248, 0.75);
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;
}
.plusicon {
    position: absolute;
    color: #000;
    line-height: 45px;
    width: 100%;
    top: 40%;
    z-index: 2;
    opacity: 0;
    text-align: center;
    -webkit-transition: all 0.25s linear;
    transition: all 0.25s linear;
}
.img-popup:hover .overlay:after{opacity: 1;}

.img-popup:hover .plusicon {
    opacity: 1;
}

.gal-anim .sub-project-hover:hover{
    box-shadow: 0px 13px 18px rgba(192, 196, 204, 1);
    transition: all 400ms cubic-bezier(.14,.99,.43,.99);
    -webkit-transition: all 400ms cubic-bezier(.14,.99,.43,.99);
}

.sub-project-hover:hover img {
    transform: scale(1.1);
    opacity: 0.6;
}



.forest.vbsppl-bg{
    background: #209A47!important;
}

.wind-wrap ul.branded li::before{
    top: 1.6em
}

.tb-head{
    padding-top: 4em;
}

.table td:nth-child(2), .table td:nth-child(3){text-align: left;}

.table th:nth-child(2), .table th:nth-child(3){text-align: left;}

.table{font-size: 16px;}

.table th:nth-child(1){width: 100px;}

.sub-heading-cl{color: #57585a;}

.siteblock-anim p:nth-child(1){padding-bottom: 15px;}

.upcoming-block{position: relative;}

.upcoming-block:before{
    position: absolute;
    content: '';
    background: #000;
    opacity: 30%;
    width: 100%;
    height: 100%;
}

.mfp-arrow-left:before{ margin-left: 0;border-right: 0;}

.mfp-image-holder .mfp-close:hover,
.mfp-iframe-holder .mfp-close:hover {
    background-color: var(--primary);
    
}

.gold-anim-mask{
    position: absolute;
    top: 0;
    left: 0;
    /*right: 0;*/
    bottom: 0;
    background: #fff;
}

.growth-anim-mask, .forest-anim-mask{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
}

.invert-anim{
        max-height: 800px!important;
}

.swiper-wrapper{display: block!important;}

.our-amazing-clients{
    /*grid-template-columns: 25% 25% 25% 25%;*/
    grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
    grid-gap: 20px;
    justify-content: center;
    align-items: center;
    display: grid
}

.client-block{text-align: center;}

.client-block img{
    width: 100%;
    webkit-transition: all 0.4s cubic-bezier(.47,.01,.63,1);
    -moz-transition: all 0.4s cubic-bezier(.47,.01,.63,1);
    -o-transition: all 0.4s cubic-bezier(.47,.01,.63,1);
    -ms-transition: all 0.4s cubic-bezier(.47,.01,.63,1);
    transition: all 0.4s cubic-bezier(.47,.01,.63,1);
}

.client-block:hover img{
    box-shadow: 0px 10px 18px -14px rgb(32 154 71);
}

.leadership-wrap{text-align: center; transform: translate(0px, 0px);}


.leadership-content{text-align: center;
    padding: 25px 0 0 0;}

.leadership-block .leadership-panel{
    display: grid;
    grid-template-columns: auto auto;
    grid-gap: 20px;
}

.team-block .leadership-panel{
    display: grid;
    grid-template-columns: auto auto auto;
    grid-gap: 20px;
}

.leadership-wrap a{
    text-decoration: none!important;
   
}

.leadership-wrap img{
    -webkit-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    -ms-transition: all 0.4s linear;
    transition: all 0.4s linear;
    /*border: 15px solid #eee;*/
    text-align: center;
    align-items: center;
    background: #e2d8d5;
}

.leadership-wrap:hover img{
    /*transform: translateY(-10px);
    box-shadow: 0px 10px 18px -8px rgb(100 121 107);*/
}


.leadership-wrap a:hover, .leadership-wrap a:focus{
    text-decoration: none!important;
    
}

.leadership-circle {
    border-radius: 50%;
    border: 4px solid rgb(245 196 61 / 57%);
    display: inline-block;
    position: relative;
    
}
.leadership-circle img{
    text-align: center;
    align-items: center;
    background: #b8bec3;
    border-radius: 50%;
    border: 10px solid #fff;
}
.leadership-plus {
    position: absolute;
    bottom: 6px;
    right: 15px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background-color: #209a47;
    color: #fff;font-size: 26px;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    transition: all 400ms ease;
    
}
.leadership-plus:before {
    content: "";
    position: absolute;
    width: 80%;
    height: 80%;
    background-color: #209a47;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    border-radius: 50%;
    opacity: 0.6;
    -webkit-transition: all 800ms ease;
    -moz-transition: all 800ms ease;
    -o-transition: all 800ms ease;
    -ms-transition: all 800ms ease;
    transition: all 800ms ease;
    z-index: 1;
}
.leadership-plus a{ 
    color: #fff;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 10;}

.leadership-plus:hover {
        -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -o-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
}
.leadership-plus:hover:before {
    -webkit-transform: scale(1.9);
    -moz-transform: scale(1.9);
    -o-transform: scale(1.9);
    -ms-transform: scale(1.9);
    transform: scale(1.9);
    opacity: 0;
}
.leadership-content h5{
    font-weight: 500;
    font-size: 1.3rem;
}
.leadership-content h6{
    text-transform: inherit;
    color: #212529;
    padding: 8px 0 30px;
    font-weight: 300;
    line-height: 1.3;
    font-size: 14px !important;
}

.modal .modal-dialog {
    max-width: 900px;
}

.modal-body p{
    padding-bottom: 1rem;
    font-size: 16px;
}
.modal-body .uno-list li {font-size: 16px;}
.modal-body{padding: 0 4.3rem 2rem 4.3rem;}
.modal-body .media img {
    background-color: #e2d8d5;
}
.media img {
  width: 100%;
}
.modal-header button.close {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #209a47;
    color: #fff;
    opacity: 1;
    padding: 12px;
    text-shadow: 0 0 0 #fff;
    font-size: 16px;
}
button:focus {
    outline: 0px dotted;
    outline: 0;
}
.media-body{margin-left: 1.5rem;}
.teampopup {
  
  padding: 0 2.5rem 2rem 2.5rem;
}
.teampopup .col-lg-12 { padding-top: 30px;}
.teampopup .row {
  height: 480px;
  overflow-y: auto;
}
.teampopup .row::-webkit-scrollbar {width: 8px;} /* width */

.teampopup .row::-webkit-scrollbar-track {background: #f1f1f1;border-radius: 5px;} /* Track */

.teampopup .row::-webkit-scrollbar-thumb {background: #888; border-radius: 5px;} /* Handle */

.teampopup .row::-webkit-scrollbar-thumb:hover  {background: #555; } /* Handle on hover */

.leadership-content h6{letter-spacing: 0!important; text-transform: capitalize;}

.modal-header{border-bottom: 0!important; padding: 2rem 4rem;}

.media-body h6{
    letter-spacing: 0;
    color: #212529;
    text-transform: capitalize;
    padding-top: 10px;
}

ul.navigation {
    padding-left: 0;
    text-align: center;
}


/* .media img{width: 280px;} */

#contact-us .block{padding-top: 0!important;}

.goals__card{flex-basis: 50%;}
/*.goals__card:nth-child(3){max-width: 50%!important; padding-left: 0!important;}*/
.goals__card:nth-child(1){padding-bottom: 2em!important;}
.goals__card:nth-child(2){padding-right: 0em!important;}
.goals__card:nth-child(3){padding-left: 0!important;}
.whyblock {margin-top: 50px;}
.services-img-block{ 
    background: url(../images/solar-panels.jpg) no-repeat;
    background-position: 45% 50%;
    background-size: cover;
    width: 100%;
    height: 100%;
}

.wind-solor-img-block{
    background: url(../images/andreas-solar.jpg) no-repeat;
    background-position: 100%;
    background-size: cover;
    width: 100%;
    height: 100%;
}

.tower-img-block{
    background: url(../images/tower.png) no-repeat;
    background-position: 20% 20%;
    background-size: cover;
    width: 100%;
    height: 100%;
}

.vbsppl-img-wrap{
    background: url(../images/project-img-1.jpg) no-repeat;
    background-position: 45% 50%;
    background-size: 100%;
    width: 100%;
    height: 100%;
}

.mksppl-img-block{
    background: url(../images/mksppl.jpg) no-repeat;
    background-position: 45% 50%;
    background-size: cover;
    width: 100%;
    height: 100%;
}

.whpp-img-block{
    background: url(../images/satara-hybrid-energy.webp) no-repeat;
    background-position: 45% 50%;
    background-size: cover;
    width: 100%;
    height: 100%;
}

.dhebewadi-img-block{
    background: url(../images/wind-energy-image.jpg) no-repeat;
    background-position: 45% 50%;
    background-size: cover;
    width: 100%;
    height: 100%;
}

.mb-view{display: none;}

.ite-gallery{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(23rem, 1fr));
    grid-gap: 20px;
    align-items: center;
}

.ite-gallery-wrap .overlay img ,.ite-gallery-wrap .overlay video{
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.plusicon img{width: 50px;}

.pb-1 {
  padding-bottom: 1rem;
}



.poster {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.poster img {
  width: 300px;
  height: auto;
  border-radius: 8px;
}

.poster:hover {
  transform: scale(1.05);
}
/* 
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 20px;
  border-radius: 8px;
  width: 80%;
  max-width: 600px;
  position: relative;
}

.modal-content video {
  width: 100%;
  border-radius: 8px;
}

.close {
  position: absolute;
  top: 10px;
  right: 20px;
  color: #000;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: red;
} */


.video-modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

#videoModal {
  display: none;
}


.video-modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 30px;
  border-radius: 8px;
  width: 80%;
  max-width: 600px;
  position: relative;
  /* top: 50%;
  transform: translateY();
  -webkit-transform: translateY();
  -moz-transform: translateY();
  -ms-transform: translateY();
  -o-transform: translateY(); */
}

.video-modal-content video {
  width: 100%;
  border-radius: 8px;
}

.video-close {
  color: #aaa;
  position: absolute; 
  top: -2px; 
  right: 6px; 
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  z-index: 100; 
}

.video-close:hover,
.video-close:focus {
  color: red;
  text-decoration: none;
}

.text-container {
  width: 95%;
  /* margin: 0 0 auto 0;
  padding-left: 10px;
  padding-right: 10px; */
}

.our-projects-content {
  column-count: 2;
  column-gap: 20px;
}

.stats-block {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  /* gap: 20px; */
  flex-wrap: wrap;
  margin: 60px 0 0;
  text-align: center;
}

.pt-0 {
  padding-top: 0 !important;
}

.carousel-item img {
  width: 100% !important;
  object-position: center center;
  object-fit: cover;
  height: 100vh;
}


.carousel-fade .carousel-item {
  opacity: 0;
  transition-duration: .5s;
  transition-property: opacity;
 }
/*  
 .carousel-fade  .carousel-item.active,
 .carousel-fade  .carousel-item-next.carousel-item-left,
 .carousel-fade  .carousel-item-prev.carousel-item-right {
   opacity: 1;
 }
 
 .carousel-fade .active.carousel-item-left,
 .carousel-fade  .active.carousel-item-right {
  opacity: 0;
 }
 
 .carousel-fade  .carousel-item-next,
 .carousel-fade .carousel-item-prev,
 .carousel-fade .carousel-item.active,
 .carousel-fade .active.carousel-item-left,
 .carousel-fade  .active.carousel-item-prev {
  transform: translateX(0);
  transform: translate3d(0, 0, 0);
 } */
 
 
 .card-panel__card + .card-panel__card:last-child{
  border-left: 0;
 }
 

 .justify-center {
  justify-content: center !important;
 }


 .loader {
  color: #fff;
  
  font-family: Consolas, Menlo, Monaco, monospace;
  font-weight: bold;
  font-size: @loader-size;
  
  opacity: 0.7;

}

.counter-wrap{
  list-style: none;
}
