/*
Theme Name: Ecoligo Child Theme
Theme URI: http://briteweb.com
Version: 1.0
Description: A custom theme for Ecoligo
Author: Briteweb
Author URI: http://www.briteweb.com
template: bb-theme
*/

body {
  background-color: #faf2ee !important;
}

*!Fonts @font-face {
  font-family: "Albra Semi";
  src: url("/wp-content/themes/bb-theme-child/fonts/albra_semi-webfont.woff2")
      format("woff2"),
    url("/wp-content/themes/bb-theme-child/fonts/albra_semi-webfont.woff")
      format("woff");
  font-weight: 600;
}

/* montserrat-regular - latin_latin-ext_vietnamese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url('./fonts/montserrat-v25-latin_latin-ext_vietnamese-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-500 - latin_latin-ext_vietnamese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  src: url('./fonts/montserrat-v25-latin_latin-ext_vietnamese-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-600 - latin_latin-ext_vietnamese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  src: url('./fonts/montserrat-v25-latin_latin-ext_vietnamese-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-700 - latin_latin-ext_vietnamese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: url('./fonts/montserrat-v25-latin_latin-ext_vietnamese-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

h3,
h4,
h5,
h6 {
  font-family: "Montserrat", helvetica, arial !important;
  word-wrap: normal;
}

.big-title .fl-module-content h2.fl-heading,
.big-title-white .fl-module-content h2.fl-heading {
  font-size: 2.74rem;
  line-height: 120%;
}

.big-title {
  padding: 0 0 1rem 0;
}

.big-title h2 {
  color: #194440;
}

.big-title-white h2 {
  color: #fff;
}

/*~Layout~*/
.center {
  text-align: center;
}

.fl-row-content-wrap {
  padding-right: 20px;
  padding-left: 20px;
}

/*!Navigation*/

.mobile-full-menu .wpml-ls-current-language a span {
  color: #fee300 !important;
  font-weight: bold;
}

#mobile-menu a {
  font-size: 1.5rem;
}

.full-nav-col .fl-col-content {
  display: flex;
  flex-direction: row;
}

@media only screen and (min-width: 1140px) {
  .full-nav-col .fl-col-content #main-nav {
    display: flex;
    justify-content: flex-end;
    padding-right: 10px;
  }

  #main-nav .wpml-ls-item {
    border-left: 1px solid #194440;
  }

  #main-nav .wpml-ls-item .sub-menu {
    min-width: 80px;
  }
}

.full-nav-col .fl-col-content .login-btn-container {
  width: 130px;
  text-align: center;
  justify-content: center;
}

.login-btn-wrap a {
  width: auto;
  text-align: center;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid #194440;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.5s ease;
  display: inline-block;
  font-size: 14px;
}

.login-btn-wrap a:hover {
  color: #fff;
  background: #194440;
  transition: all 0.5s ease;
  text-decoration: none;
}

.fl-theme-builder-header-scrolled {
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 1s ease;
}

.fl-theme-builder-header-sticky {
  transition: all 1s ease;
}

#main-nav:hover > li a {
  color: #476966;
}

#main-nav > li:hover a {
  color: #194440;
}

#main-nav a {
  display: block;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
#main-nav .menu-item a::after {
  position: absolute;
  left: 30%;
  bottom: 0;
  display: block;
  width: 40%;
  height: 3px;
  background: #194440;
  content: "";
  opacity: 0;
  transform: rotateY(90deg);
  transition: opacity 0.3s linear, transform 0.3s ease-in-out;
}
#main-nav .menu-item a:hover {
  color: #194440;
}
#main-nav .menu-item a:hover::after,
#main-nav .menu-item a:active::after,
#main-nav .current-menu-item a::after,
#main-nav .current-page-ancestor a::after {
  transform: none;
  opacity: 1;
}

#main-nav ul li.wpml-ls-item {
  border-left: 1px solid #194440;
}

#main-nav ul li.wpml-ls-item ul li {
  border: none;
}

#main-nav .wpml-ls-item .sub-menu {
  min-width: 80px;
}

#main-nav ul li.wpml-ls-item ul li a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 3px;
  background: #194440;
  content: "";
  opacity: 0;
  transform: rotateY(90deg);
  transition: opacity 0.3s linear, transform 0.3s ease-in-out;
}

#main-nav ul li.wpml-ls-item ul li a:hover::after {
  transform: none;
  opacity: 1;
}

.login-white-btn-wrap {
  margin: 0 auto;
}

.login-white-btn-wrap a {
  text-align: center;
  justify-content: center;
  padding: 10px 20px;
  border: 1px solid #ffffff;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.5s ease;
  display: inline-block;
}

.login-white-btn-wrap a:hover {
  color: #fff;
  background: #258da2;
  transition: all 0.5s ease;
  text-decoration: none;
}

.button-center .fl-html {
  text-align: center;
  margin: 20px 0;
}

/*Sticky Secondary Menu*/

[bt-sticky] {
  z-index: 199 !important;
}

@media only screen and (max-width: 768px) {
  .project-info-page [bt-sticky] {
    top: 0 !important;
    position: relative !important;
    z-index: 1 !important;
  }

  #sticky-secondary-menu ul {
    text-align: center;
  }
}

#sticky-secondary-menu a {
  display: inline-block;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

#sticky-secondary-menu a::after {
  position: absolute;
  left: 30%;
  bottom: 0;
  display: block;
  width: 40%;
  height: 3px;
  background: #fee300;
  content: "";
  opacity: 0;
  transform: rotateY(90deg);
  transition: opacity 0.3s linear, transform 0.3s ease-in-out;
}
#sticky-secondary-menu a:hover {
  color: #fee300;
}
#sticky-secondary-menu a:hover::after,
#sticky-secondary-menu .current-menu-item a::after {
  transform: none;
  opacity: 1;
}

#sticky-secondary-menu .fl-menu .menu > li {
  display: inline-block;
}

/*Page Hero*/
.hero-overlay {
  background: url("/wp-content/themes/bb-theme-child/images/hero-logo-overlay.svg")
    no-repeat;
  background-size: cover;
  background-position: left center;
}

.hero-overlay .fl-col-content {
  z-index: -1;
}

.hero-bg-left .fl-row-content-wrap {
  background: url("/wp-content/uploads/halfcircle-bg.svg") no-repeat;
  background-position: right 46vw bottom 120% !important;
}
.hero-subtitle {
  padding: 20px 0;
  font-family: "Montserrat";
  font-weight: 500;
}
.hero-text-contained {
  justify-content: flex-end;
}

.hero-text-contained .fl-col-content {
  max-width: 672px;
}

/*Page Content*/
.tagline-dark,
.tagline-light,
.tagline-dark p,
.tagline-light p {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.125;
  margin-bottom: 0;
}

.tagline-dark {
  color: #258da2 !important;
}

.tagline-dark {
  color: #258da2 !important;
}

.row-label {
  font-size: 24px;
  color: #194440;
  font-weight: 600;
}

/*Blog*/

.blog-post-content p a,
.pp-faq p a {
  color: inherit;
  box-shadow: inset 0 -3px 0 -1px #2aa4bc;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-out;
  color: #000;
}

.blog-post-content p a:hover,
.pp-faq p a:active,
.pp-faq p a:hover,
.pp-faq p a:active {
  box-shadow: inset 0 -23px 0 -1px #2aa4bc;
  color: #ffffff;
}

.blog-post-content .wp-block-image img {
  margin: 1.5em 0;
}

/*blog sort*/
.blog-sort .facetwp-type-radio {
  background: #194440;
  border-radius: 300px;
  padding: 30px 60px;
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 80px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.125rem;
  flex-wrap: wrap;
  color: #fff;
}

/*blockquote*/
.wp-block-quote {
  border: none;
  background: #ffffff url("/wp-content/uploads/quotes.svg") center 10px
    no-repeat;
  text-align: center;
  font-family: "Albra Semi", "Playfair Display";
  word-wrap: normal;
}

.wp-block-quote.is-style-large {
  border-radius: 300px;
  margin: 60px 0;
  padding: 90px 40px 40px;
}

.wp-block-quote.is-project {
  padding: 40px 10px 00px 10px;
}

.wp-block-quote.is-style-large p,
.wp-block-quote.is-project p {
  font-family: "Albra Semi", "Playfair Display";
  font-style: normal;
  line-height: 150%;
  font-size: 24px;
  color: #194440;
}

.wp-block-quote.is-style-large cite,
.wp-block-quote.is-project cite {
  font-family: "Montserrat", helvetica;
}

/* blockquote mobile */
@media only screen and (max-width: 968px) {
  .wp-block-quote {
    border: none;
    background: #ffffff url("/wp-content/uploads/quotes.svg") center 10px
      no-repeat;
  }

  .wp-block-quote.is-style-large p,
  .wp-block-quote.is-project p {
    font-style: normal;
    line-height: 140%;
    font-size: 20px;
    color: #194440;
  }

  .wp-block-quote.is-style-large {
    border-radius: 50px;
    margin: 30px 0;
    padding: 60px 10px 40px 10px;
  }
}

/*testimonials*/
.testimonial-quote-section {
  background: url("/wp-content/uploads/quotes.svg") center 10px no-repeat;
}

.testimonial-quote-section .owl-theme .owl-dots .owl-dot span {
  border: 1px solid #194440;
}

.testimonial-quote-section .owl-prev {
  left: 0;
  position: absolute;
  display: inline-block;
  bottom: 50%;
}

.testimonial-quote-section .owl-next {
  right: 0;
  position: absolute;
  display: inline-block;
  bottom: 50%;
}

.testimonial-quote-section .owl-next svg,
.testimonial-quote-section .owl-prev svg {
  border: 1px solid #194440;
}

/*!Misc*/

.on-top {
  z-index: 99;
  position: relative;
}

/*!Buttons*/

a.btn-arrow {
  color: #194440;
  font-weight: 600;
  text-decoration: none;
  transition: color 1s ease-out;
  display: inline-block;
}
a.btn-arrow:hover {
  color: #476966;
  transition: color 1s ease-out;
  text-decoration: none;
}
a.btn-arrow:hover .arrow {
  width: 30px;
}
a.btn-arrow .arrow {
  cursor: pointer;
  display: inline-block;
  height: 10px;
  margin-left: 0em;
  margin-right: 0.25em;
  position: relative;
  transition: width 0.2s ease;
  vertical-align: middle;
  width: 18px;
  margin-bottom: 2px;
}
a.btn-arrow .arrow::after {
  border-right: 2px solid;
  border-top: 2px solid;
  content: "";
  display: block;
  height: 10px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
}
a.btn-arrow .arrow::before {
  border-bottom: 2px solid;
  content: "";
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}

/*back arrow button*/

a.btn-arrow .back-arrow {
  cursor: pointer;
  display: inline-block;
  height: 10px;
  margin-left: 0.25em;
  margin-right: 0em;
  position: relative;
  transition: width 0.2s ease;
  vertical-align: middle;
  width: 18px;
  margin-bottom: 2px;
}
a.btn-arrow .back-arrow::before {
  border-right: 2px solid;
  border-top: 2px solid;
  content: "";
  display: block;
  height: 10px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-135deg);
  width: 10px;
}
a.btn-arrow .back-arrow::after {
  border-bottom: 2px solid;
  content: "";
  right: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}

.btn-green-outline a {
  border: 1px solid #194440;
  background: transparent;
  box-sizing: border-box;
  border-radius: 30px;
}

.btn-green-outline a span {
  color: #194440;
  font-weight: bold;
}

.btn-green-outline a:hover span {
  color: #fff;
}

.btn-blue {
  margin: 0.625rem 0;
}
.btn-blue a.fl-button {
  color: #fff;
  background: #258da2 !important;
  border: none;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 32px;
  font-weight: 500;
}

.btn-blue a.fl-button:hover {
  background: #2aa4bc !important;
}

.btn-yellow a.fl-button {
  color: #194440 !important;
  background: #fee300 !important;
  border: none;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 32px;
  font-weight: 500;
}

.btn-yellow a.fl-button:hover {
  background: #fdaf66 !important;
  color: #194440 !important;
}

/*~Rows~*/

.info-row {
  padding: 2.5rem 1.25rem;
}

.blue-pill-bg .fl-row-content-wrap {
  margin: -300px 0 -300px 0;
}

.fl-number-int {
  font-family: "Albra Semi", "Playfair Display";
}

.pink-shape-bg .fl-row-content-wrap {
  background-position: center top 7.5vh !important;
}

@media only screen and (min-width: 1260px) {
  .icon-connect-bg {
    background-image: url("/wp-content/uploads/Union-bg.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: scroll;
    background-size: contain;
  }
}

/*~Project Page~*/

/*~~ Progress Bar ~~*/
.progress {
  box-sizing: content-box;
  height: 12px;
  position: relative;
  margin: 10px 0 10px 0;
  background: #faf2ee;
  border-radius: 40px;
  padding: 0px;
}
.progress > span {
  display: block;
  height: 100%;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  background-color: #2aa4bc;
  position: relative;
  overflow: hidden;
}

.project_status-complete .progress > span {
  background-color: #00b0a0;
}

.project_status-complete .progress > span:after {
  animation: none;
}

.progress > span:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: linear-gradient(
    -45deg,
    rgba(0, 0, 0, 0.1) 25%,
    transparent 25%,
    transparent 50%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.1) 75%,
    transparent 75%,
    transparent
  );
  z-index: 1;
  background-size: 20px 20px;
  animation: move 2s linear infinite;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  overflow: hidden;
}

.update-post {
  padding-top: 40px;
}

.updates-post-image {
  padding: 10px 0 30px 0;
}

.updates-post-date {
  font-family: Montserrat;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 17px;
  text-transform: uppercase;
  color: #2aa4bc;
  margin-bottom: 10px;
}

.updates-post-title {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  color: #194440;
  margin-bottom: 16px;
}

.updates-post:nth-child(n + 2) {
  border-top: 1px solid #47696;
  padding-top: 20px;
  margin-top: 20px;
}

.fl-slideshow-image-nav-left .fl-slideshow-nav-buttons,
.fl-slideshow-image-nav-left a {
  margin-left: -16px;
}

.fl-slideshow-image-nav-right .fl-slideshow-nav-buttons,
.fl-slideshow-image-nav-right a {
  margin-right: -16px;
}

.project-gallery .fl-slideshow-nav-prev {
  background: url("/wp-content/uploads/gallery-arrow-prev.svg") left center
    no-repeat !important;
}

.project-gallery .fl-slideshow-nav-next {
  background: url("/wp-content/uploads/gallery-arrow-next.svg") right center
    no-repeat !important;
}

.project-gallery .fl-slideshow-nav-next:hover {
  background-position: right center !important;
  opacity: 0.8;
}

.project-gallery .fl-slideshow-nav-prev:hover {
  background-position: 0 center !important;
  opacity: 0.8;
}

@keyframes move {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 50px 50px;
  }
}

.invest-table.blue {
  background-color: #c1eff440;
  color: #194440;
}

.invest-table {
  padding: 10px 15px;
}

.invest-table-header .fl-html {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  margin: 0 30px;
}

.invest-table .fl-html {
  display: flex;
  justify-content: space-between;
  text-align: left;
}

.invest-table-divider {
  border-right: 2px solid #b5c3c2;
}

.sidebar .center .fl-html {
  display: flex;
  justify-content: center !important;
  text-align: center !important;
}

.invest-table .smallbracket {
  font-size: 12px;
}

.invest-table .first {
  width: 55% !important;
}

.invest-table .second {
  width: 45% !important;
}

.center .fl-html div {
  display: inline;
  width: 50%;
  margin-bottom: 15px;
  padding: 0 20px;
}

/*Project Grid*/
.project-status-sort .facetwp-radio {
  padding: 0 20px !important;
}

.facetwp-facet-project_status_de div[data-value="active"],
.facetwp-facet-project_status_de div[data-value="complete"],
.facetwp-facet-project_status_es div[data-value="active"],
.facetwp-facet-project_status_es div[data-value="complete"],
.facetwp-facet-project_status_vi div[data-value="active"],
.facetwp-facet-project_status_vi div[data-value="complete"] {
  visibility: hidden;
  position: relative;
}

.facetwp-facet-project_status_de div[data-value="active"]:before,
.facetwp-facet-project_status_de div[data-value="complete"]:before,
.facetwp-facet-project_status_es div[data-value="active"]:before,
.facetwp-facet-project_status_es div[data-value="complete"]:before,
.facetwp-facet-project_status_vi div[data-value="active"]:before,
.facetwp-facet-project_status_vi div[data-value="complete"]:before {
  visibility: visible;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  word-wrap: normal;
}

/* Project Status DE */
.facetwp-facet-project_status_de div[data-value="active"]:before {
  content: "Aktiv";
}

.facetwp-facet-project_status_de div[data-value="complete"]:before {
  content: "Abgeschlossen";
}

/* Project Status ES */
.facetwp-facet-project_status_es div[data-value="active"]:before {
  content: "Activa";
}

.facetwp-facet-project_status_es div[data-value="complete"]:before {
  content: "Completa";
}

/* Project Status VI */
.facetwp-facet-project_status_vi div[data-value="active"]:before {
  content: "Tích cực";
}

.facetwp-facet-project_status_vi div[data-value="complete"]:before {
  content: "Hoàn thành";
}

/*Intro*/
.highlight-container .fl-html {
  display: flex;
  justify-content: space-evenly;
  text-align: center;
  min-width: 400px;
}

.highlight-wrap {
  padding: 2%;
  width: 100%;
}

.highlight-wrap h3 {
  margin: 0;
  padding: 0;
  font-size: 1.5rem;
}

@media only screen and (max-width: 1100px) {
  .highlight-wrap h3 {
    font-size: 1rem;
  }
}

@media only screen and (max-width: 768px) {
  .highlight-container .fl-html {
    display: flex;
    text-align: left;
    min-width: auto;
    flex-direction: column;
  }

  .icon-highlight {
    display: flex !important;
    width: 100%;
    align-items: center;
  }

  .icon-highlight img {
    width: 50px;
    height: 50px;
    padding: 0;
    margin-bottom: 0;
    float: left;
    margin-right: 20px;
  }
}

.icon-highlight img {
  object-fit: contain;
  width: 75px;
  height: 75px;
  padding: 0;
}

.highlight-container div:nth-child(n + 4) {
  display: none;
}

.icon-highlight {
  display: block;
  margin-bottom: 10px;
}

/*Sidebar*/

.investnow-btn a {
  background: #258da2;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 32px;
  padding: 10px 20px;
  color: #fff;
  display: flex;
  margin: 20px 30px;
  justify-content: center;
  transition: all 0.5s ease;
}

.investnow-btn a:hover {
  background: #2aa4bc;
  transition: all 0.5s ease;
  color: #fff;
  text-decoration: none;
}

h3.current-raised {
  color: #258da2;
  font-size: 1.5rem;
}

h3.goal-amount {
  color: #476966;
  font-size: 1rem;
  font-weight: 500;
}

.sidebar .amount-detail {
  font-weight: 600;
}

.sidebar-note {
  background-color: #faf2ee;
}
.sidebar-table-row {
  font-size: 14px;
  color: #194440;
  font-weight: 500;
}

.sidebar-label {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  color: #476966;
}

.sidebar-number-label {
  font-size: 20px;
  color: #476966;
  font-weight: 600;
}

.sidebar-cta {
  font-size: 14px;
}

.sidebar-cta .cta-intro {
  font-size: 16px;
}

.sidebar-cta .cta-interest-rate {
  font-family: "Albra Semi";
  font-size: 30px;
  margin-left: -5px;
  padding-left: 15px;
  background: url("/wp-content/uploads/rate-tag-bg.svg") no-repeat;
  background-size: contain;
}

.sidebar-cta .cta-rate {
  color: #194440;
}

@media only screen and (min-width: 768px) {
  .sidebar-pad-left .fl-col-content {
    margin-left: 0px;
  }

  .sidebar-pad-right .fl-col-content {
    margin-right: 0px;
  }
  .sticky {
    position: sticky;
    position: -webkit-sticky;
    top: 215px;
  }
}

/* Content Tabs */
.invest-content-row {
  justify-content: space-evenly;
  display: flex;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 40px;
}

.tablerow {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  color: #476966;
  font-size: 14px;
  margin: 0 -10px;
}

.tablerow .content {
  width: 50%;
  padding-left: 10px;
}

.tablerow:nth-child(even) {
  background: rgba(193, 239, 244, 0.4);
}

.tablerow:nth-child(odd) {
  background: #ffffff;
}

.total-box {
  background: #2aa4bc !important;
  color: #ffffff !important;
  padding: 5px 0;
}

.file-attachment {
  width: 100%;
  padding-bottom: 10px;
}

.file-attachment img {
  padding-bottom: 3px;
}

.file-attachment a {
  color: #2aa4bc;
  font-weight: 700;
}

@media only screen and (max-width: 768px) {
  .tablerow:last-child {
    flex-direction: column;
  }

  .tablerow:last-child .content {
    padding-top: 20px;
    width: 100%;
  }
}

@media only screen and (min-width: 768px) {
  .sticky-tabs {
    position: sticky;
    position: -webkit-sticky;
    top: 0px;
    z-index: 88;
  }
}

.tab {
  overflow: hidden;
  background-color: #faf2ee;
}

.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 15px 30px;
  transition: 0.3s;
  color: #446663;
  border-radius: 0;
  font-size: 18px;
  font-weight: 500;
  font-family: Montserrat, helvetica, Arial;
}

@media only screen and (max-width: 1060px) {
  .tab button {
    padding: 15px 14px;
    font-size: 0.875rem !important;
  }
}

.tab button:hover,
.tab button:focus {
  background-color: #fcfcfc;
  border: none;
  color: #000;
}

.tab button.active {
  background-color: #fff;
  color: #000;
  border: none;
  transition: all 1s;
}

.tabcontent {
  display: none;
  animation: fadeEffect 1s;
  background: #fff;
  border: none;
  padding: 20px;
}

@keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive Table */

.table {
  display: table;
  width: 100%;
  text-align: center;
  border-collapse: separate;
  margin-top: 20px;
}

.table_row {
  display: table-row;
}

.theader {
  display: table-row;
}

.table_header {
  display: table-cell;
  background: #194440;
  color: #fff;
  padding: 20px 0;
  min-width: 50px;
}

.table_small {
  display: table-cell;
}

.table_row > .table_small > .table_cell:nth-child(odd) {
  display: none;
  background: rgba(193, 239, 244, 0.4);
  color: #333;
  padding-top: 10px;
  padding-bottom: 10px;
}

.table_row > .table_small > .table_cell {
  padding-top: 10px;
  padding-bottom: 10px;
  color: #333;
}

.total-box .table_cell {
  color: #fff !important;
}

.table_row:nth-child(2n + 3) {
  background: rgba(193, 239, 244, 0.4);
}

.total-mobile {
  display: none;
}

@media screen and (max-width: 650px) {
  .table_row > .table_small > .table_cell {
    border-bottom: #f5f5f5 1px solid;
  }

  .total-desktop {
    display: none !important;
  }

  .total-mobile {
    display: block;
  }
  .table {
    display: block;
  }
  .table_row:nth-child(2n + 3) {
    background: none;
  }
  .theader {
    display: none;
  }
  .table_row > .table_small > .table_cell:nth-child(odd) {
    background: #194440;
    color: #ffffff;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .table_row > .table_small > .table_cell:nth-child(odd) {
    display: table-cell;
    width: 50%;
  }
  .table_cell {
    display: table-cell;
    width: 50%;
  }
  .table_row {
    display: table;
    width: 100%;
    border-collapse: separate;
    padding-bottom: 20px;
    margin: 5% auto 0;
    text-align: center;
  }
  .table_small {
    display: table-row;
  }
  .table_row > .table_small:first-child > .table_cell:last-child {
    border-left: none;
  }
  .table_row > .table_small > .table_cell:first-child {
    border-left: #f5f5f5 1px solid;
  }
  .table_row > .table_small:first-child > .table_cell:first-child {
    border-top-left-radius: 5px;
    border-top: #f5f5f5 1px solid;
  }
  .table_row > .table_small:first-child > .table_cell:last-child {
    border-top-right-radius: 5px;
    border-top: #f5f5f5 1px solid;
  }
  .table_row > .table_small:last-child > .table_cell:first-child {
    border-right: none;
  }
  .table_row > .table_small > .table_cell:last-child {
    border-right: #f5f5f5 1px solid;
  }
  .table_row > .table_small:last-child > .table_cell:first-child {
    border-bottom-left-radius: 5px;
  }
  .table_row > .table_small:last-child > .table_cell:last-child {
    border-bottom-right-radius: 5px;
  }

  .table_row > .table_small:first-child > .table_cell {
    border-left: #f5f5f5 1px solid;
  }

  .table_row > .table_small:last-child > .table_cell {
    border-right: #f5f5f5 1px solid;
  }

  .table_row:last-child > .table_small:last-child > .table_cell:last-child {
    border-bottom-right-radius: 5px;
  }

  .table_row:last-child > .table_small:first-child > .table_cell:last-child {
    border-bottom-left-radius: 5px;
  }
}

/*Section Show More */

.sectionblock {
  margin: 20px 0;
  display: inline-block;
}

.sectionblock h2 {
  color: #194440;
  font-size: 2rem;
  line-height: 4rem;
}

.sectionblock p {
  display: block;
}

.morerow .sectionblock {
  padding: 1.5rem;
  border-radius: 4px;
  margin-bottom: 4rem;
  box-shadow: 0 1px 6px rgba(97, 59, 31, 0.2);
  background: white;
}
.morerow .content {
  font-family: "Lucida Bright", Georgia, serif;
  font-size: 1.1rem;
  line-height: 1.5rem;
  margin-bottom: 1rem;
}
.morerow .content h2 {
  margin: 0.5rem 0;
}

.morerow a {
  appearance: none;
  background: white;
  color: #2779bd;
  display: inline-flex;
  align-items: center;
  height: 26px;
  text-decoration: none;
  line-height: 26px;
  padding: 0 14px;
  font-size: 14px;
  border-radius: 3px;
  border: 1px solid #2779bd;
}
.morerow a:hover {
  background: rgba(39, 121, 189, 0.1);
}
.excerpt-hidden {
  height: 12rem;
  overflow: hidden;
  position: relative;
  display: inline-block;
}
.excerpt-hidden:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}
.excerpt-visible {
  height: auto;
  overflow: auto;
}

.js-show-more {
  padding-top: 20px;
  padding-left: 27px;
  background: url("/wp-content/uploads/more-icon.svg") no-repeat bottom left;
}

/*Stat Module*/
.stat-left .fl-number .fl-number-text {
  text-align: left;
}

.stat-number {
  color: #fee300 !important;
  font-size: 3rem;
  font-family: "Albra Semi", Playfair Display, serif !important;
}

@media only screen and (max-width: 768px) {
  .stat-number {
    font-size: 2rem;
  }
}

.stat-text {
  color: #ffffff;
  font-size: 1rem;
}

/*Post Project Carousel*/

.project-slider .owl-stage-outer:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 140px;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(193, 239, 244, 0) 0%,
    rgba(193, 239, 244, 0.4) 25%,
    rgba(193, 239, 244, 1) 100%
  );
  overflow: hidden;
}

.project-slider .owl-stage-outer::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 140px;
  height: 100%;
  background: linear-gradient(
    to left,
    rgba(193, 239, 244, 0) 0%,
    rgba(193, 239, 244, 0.4) 25%,
    rgba(193, 239, 244, 1) 100%
  );
  overflow: hidden;
  z-index: 66;
}

.project-slider .owl-carousel .owl-stage-outer {
  overflow: hidden;
  margin-right: -130px;
  margin-left: -130px;
  padding-left: 130px;
}

.hide-overflow .fl-row-content-wrap {
  overflow: hidden;
}

.project-slider .pp-content-post-carousel .owl-carousel {
  overflow: visible;
}

.project-slider .pp-content-post-carousel .owl-nav button.owl-next {
  right: -5vw;
  margin-right: 20px;
}

.project-slider .pp-content-post-carousel .owl-nav button.owl-prev {
  left: -5vw;
  margin-left: 20px;
}

.project-slider .owl-nav .disabled {
  display: none;
}

.project-slider .owl-nav svg {
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
}

/*Subscribe CTA*/
.subscribe-button button {
  height: 46px !important;
  width: 100%;
  font-size: 1rem;
  border: 1px solid #194440;
  border-radius: 32px;
  transition: all 1s ease;
}

.subscribe-button button:hover {
  background: #476966;
  border: 1px solid #476966;
  transition: all 1s ease;
}

.subscribe-button div {
  height: 100% !important;
}

.column-twothirds {
  grid-column: span 8 !important;
}

.column-onethird {
  grid-column: span 4 !important;
}

/*Project Grid Page*/
.project-posts-grid ul.pp-post-filters {
  background: #258da2;
  border-radius: 300px;
  padding: 30px 60px;
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 80px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.125rem;
  flex-wrap: wrap;
}

@media only screen and (max-width: 768px) {
  .project-posts-grid ul.pp-post-filters {
    border-radius: 0px;
    padding: 30px 20px;
    margin: 0 -20px 80px -20px;
    font-size: 0.875rem;
  }
  .filter-row {
    display: block;
  }
}

.project-posts-grid ul .pp-post-filter::after {
  position: relative;
  left: 30%;
  bottom: 0;
  display: block;
  width: 40%;
  height: 3px;
  background: #fee300;
  content: "";
  opacity: 0;
  transform: rotateY(90deg);
  transition: opacity 0.3s linear, transform 0.3s ease-in-out;
  margin-top: 5px;
}
.project-posts-grid ul .pp-post-filter:hover {
  color: #fee300;
}
.project-posts-grid ul .pp-post-filter:hover::after,
.project-posts-grid ul .pp-filter-active::after {
  transform: none;
  opacity: 1;
}

.filter-row {
  display: inline-block;
  margin: 0 5px;
}

.facetwp-facet {
  margin-bottom: 10px !important;
}

.facetwp-radio,
.facetwp-radio.checked {
  background: none !important;
}
.project-status-sort .facetwp-type-radio {
  display: flex;
  justify-content: space-evenly;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.125rem;
  flex-wrap: wrap;
  margin-bottom: 0 !important;
  color: #ffffff;
}

.facetwp-facet-project_status .facetwp-counter {
  display: none;
}

.facetwp-radio:hover,
.facetwp-radio.checked {
  color: #fee300;
}

.facetwp-radio::after {
  position: relative;
  left: 30%;
  bottom: 0;
  display: block;
  width: 40%;
  height: 3px;
  background: #fee300;
  content: "";
  opacity: 0;
  transform: rotateY(90deg);
  transition: opacity 0.3s linear, transform 0.3s ease-in-out;
  margin-top: 5px;
  visibility: visible;
}

.facetwp-radio:hover::after,
.facetwp-radio.checked::after {
  transform: none;
  opacity: 1;
}

.facetwp-type-dropdown,
.facetwp-sort {
  position: relative;
  width: auto;
  max-width: 100%;
  background: #faf2ee;
  border: 1px solid #194440;
  border-radius: 31px;
  padding: 8px 5px 8px 10px;
}
.facetwp-type-dropdown select,
.facetwp-sort select {
  font-size: 1rem;
  font-weight: 500;
  max-width: 100%;
  padding-right: 24px;
  border: none;
  background: #faf2ee;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.facetwp-type-dropdown select:active,
.facetwp-type-dropdown select:focus,
.facetwp-sort select:active,
.facetwp-sort select:focus {
  outline: none;
  box-shadow: none;
}

.facetwp-type-dropdown:after,
.facetwp-sort:after {
  content: " ";
  position: absolute;
  top: 50%;
  margin-top: -2px;
  right: 8px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #194440;
}

.facetwp-counter {
  display: none;
}

.facetwp-facet-blog_load_more,
.facetwp-facet-blog_load_more_de,
.facetwp-facet-blog_load_more_es,
.facetwp-facet-blog_load_more_vi {
  text-align: center;
}

/* Project Single Page */

.investcard-wrap {
  display: flex;
  justify-content: space-between;
  color: #476966;
}

.project-share a.pp-share-button-link {
  background: transparent !important;
  transition: all 0.5s ease;
}

.project-share a.pp-share-button-link:hover {
  background: #fff !important;
}

.project-share a:hover .pp-share-button-icon i {
  color: #194440 !important;
  transition: all 0.5s ease;
}

.project-share .pp-share-button {
  border: 1px solid #fff;
}

.fl-number-string {
  font-family: "Albra Semi", Playfair Display, serif;
}

.tabcontent h2 {
  color: #194440;
  font-size: 2rem;
  line-height: 4rem;
}

.fl-builder-content-3555 {
  padding: 0;
}

.country-flag {
  width: 1em !important;
  margin: 0 3px 3px 5px;
  display: inline-block !important;
}

.tablecolumn-container {
  display: flex;
  overflow-x: auto;
  margin: 20px 0;
  flex-direction: column;
}

.payout-col1 {
  min-width: 65px;
}

.payout-col2 {
  min-width: 116px;
}

.payout-col3 {
  min-width: 150px;
}

.payout-col4 {
  min-width: 172px;
}

.payout-col5 {
  min-width: 144px;
}

.payout-col6 {
  min-width: 100px;
}

.tablecolumn-container .tableheader,
.tablecolumn-container .table-row {
  justify-content: space-evenly;
}

.tablerepeatercolumn .table-row {
  justify-content: center;
  width: 200px;
}

.tablecolumn-container .table-row {
  display: flex;
  align-items: center;
}

.tablecolumn-container .table-row span {
  padding: 10px 0;
}

.tablecolumn-container span {
  text-align: center;
}

.tablehead {
  background: #194440;
  font-size: 14px;
  text-align: center;
  font-weight: 600;
  align-items: center;
  display: flex;
  justify-content: space-evenly;
}

.table-row:nth-child(even) span {
  background: rgba(193, 239, 244, 0.4);
}

.table-row:nth-child(odd) span {
  background: #ffffff;
}

.tablehead span {
  background: #194440;
  color: #fff;
  padding: 20px 0;
}

.tabcontent h2 {
  color: #194440;
  font-size: 2rem;
  line-height: 2.6rem;
}

/*project equipment*/
.equipment-scroll-wrap {
  display: flex;
  overflow-x: auto;
}

.image-equipment {
  padding: 10px 0;
  width: auto;
  height: 200px;
  align-items: center;
  display: flex;
  max-height: 100%;
}

.equipment-wrap {
  padding: 20px;
  min-width: 300px;
}

.equipment-wrap h3 {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  font-weight: bold;
}

/*footer*/

.footer-menu a {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  color: #666666;
  font-size: 14px;
}

.footer-menu .footer-title a {
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  text-transform: uppercase;
  color: #194440;
}

.subscribe-form-footer .gform_button {
  margin: 0 0 0 20px;
}

.gform_footer input {
  margin-bottom: 0 !important;
}

/* Landing Page Styles */

.fl-button {
  font-weight: 600 !important;
}

.overflow-hidden {
  overflow: hidden;
}

.right-circle-hero {
  position: absolute;
  top: -100px;
  right: -25vw;
}

.right-circle-hero img {
  width: 40vw;
  height: auto;
}

.left-circle-hero {
  position: absolute;
  top: 10vw;
  left: -30vw;
}

.left-circle-hero img {
  width: 50vw;
  height: auto;
}

.stat-number,
.stat-text {
  text-align: center !important;
}

.text-block {
  width: 60%;
  margin: 0 auto;
  text-align: center;
  height: 10vh;
  z-index: 33;
  position: relative;
}

.text-container {
  padding: 10%;
}

.hero-btn {
  background: #fee300;
  box-shadow: 0px 6.86647px 20.5994px rgba(0, 0, 0, 0.15);
  border-radius: 55px;
  padding: 15px 30px;
  margin: 40px auto;
  color: #194440 !important;
  font-weight: bold;
  font-size: 18px;
  display: inline-block;
  z-index: 88;
  position: relative;
}

.hero-btn:hover {
  background: #fdaf66 !important;
  color: #194440 !important;
  text-decoration: none;
}

.block--2 {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: flex-end;
}
.circle-wrap {
  padding-top: 10%;
  z-index: 2;
}

.circleHero {
  width: 60vw;
  height: auto;
  z-index: 2;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 100%;
  box-shadow: 0px 0px 250px rgba(255, 255, 255, 0);
  transition: box-shadow 0.5s ease-in-out;
}

.circleimg {
  width: 60vw;
  height: auto;
  z-index: 2;
}

.progress-bar-container {
  background: #c1eff4;
  padding: 5px 20px;
  border-radius: 20px;
}

.progress {
  height: 15px;
  box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 768px) {
  .testimonial-quote-slider-light .fl-slide-mobile-photo-img {
    width: 50%;
    margin: 20px auto;
  }

  .testimonial-quote-slider-light .atc-HeadlineText {
    font-size: 24px !important;
  }

  .testimonial-quote-slider-light > .fl-slide-content {
    background: red !important;
  }

  .text-block {
    width: 80%;
    margin: 0 auto;
    text-align: center;
    height: 10vh;
    padding-top: 80px;
  }

  .circleHero {
    width: 120vw;
    height: auto;
    z-index: 2;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 100%;
    box-shadow: 0px 0px 250px rgba(255, 255, 255, 0);
    transition: box-shadow 0.5s ease-in-out;
  }

  .circleimg {
    width: 120vw;
    height: auto;
  }
}

.active .circleHero {
  box-shadow: 0px 0px 250px rgba(255, 255, 255, 1);
  transition: box-shadow 0.5s ease-in-out;
}

/* Sticky Header ------*/

.sticky-header {
  height: 80px;
  position: fixed;
  width: 100%;
  top: -100px;
  right: 0;
  left: 0;
  z-index: 999;
  visibility: hidden;
  transition: ease 0.4s;
}

.sticky-header--scrolled {
  top: 0;
  visibility: visible;
}

/* Layout -------*/

.invest-list-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.icon-invest-list {
  opacity: 0;
  padding: 40px 0;
}

.icon-invest-list .fl-callout-photo-left .fl-callout-photo,
.icon-invest-list .fl-callout-photo-left-text .fl-callout-photo {
  width: 10%;
}

.incentive-card .fl-col-content {
  border-radius: 0 0 10px 10px;
}

.incentive-card .fl-col-content,
.pdf-pop {
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.5s ease;
  transform: translate(0px, 0px);
}

.incentive-card .fl-col-content:hover,
.pdf-pop:hover {
  box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.1);
  transform: translate(0px, -5px);
  transition: all 0.5s ease;
}

.pdf-pop .pp-hover-card-icon-wrap {
  background: #19444070;
  width: 100px;
  margin: 0 auto;
  border-radius: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.blue-pill-bg .fl-row-content-wrap {
  margin: -200px 0 -200px 0 !important;
}

.testimonial-slide .fl-slide-photo-img {
  border-radius: 100%;
}

.testimonial-quote-slider-dark .fl-slide-mobile-photo-img {
  border-radius: 100%;
  width: 50%;
  margin: 40px auto 20px auto !important;
}

/* Story Parallax Section */

.story-parallax {
  position: relative;
  z-index: 1;
}

.story-parallax .story-section {
  position: relative;
  width: 100%;
  height: 80vh;
  z-index: 2;
}

.story-section .left-wrap {
  padding-top: 10vmin;
  padding-bottom: 10vmin;
  padding-right: 10vmin;
  padding-left: 10vmin;
  text-align: left;
  width: 50%;
  display: inline-block;
}

.story-section.right {
  text-align: right;
}

.story-section .right-wrap {
  padding-top: 10vmin;
  padding-bottom: 10vmin;
  padding-right: 10vmin;
  padding-left: 10vmin;
  text-align: right;
  display: inline-block;
  width: 50%;
}

.story-section.left {
  text-align: left;
}

@media only screen and (max-width: 768px) {
  .story-section .right-wrap,
  .story-section .left-wrap {
    padding-top: 5vmin;
    padding-bottom: 5vmin;
    padding-right: 5vmin;
    padding-left: 5vmin;
    text-align: center;
    display: inline-block;
    width: 100%;
  }

  .story-section.left,
  .story-section.right {
    text-align: center;
  }
}

.story-parallax .story-section h2 {
  line-height: 1.1em;
  margin-bottom: 20px;
}

.story-parallax .ground-container {
  position: relative;
  overflow: hidden;
}
.story-parallax .ground-container .parallax {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: -100px;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  transform-origin: top center;
}
.story-parallax .ground-container .ground {
  z-index: -1;
  background-image: url("https://ihrecoligo.com/wp-content/uploads/sites/7/2021/11/ecoligo-solar-birdseye-bg-main.jpg");
}
.story-parallax .ground-container .clouds {
  z-index: 2;
  background-image: url("https://ihrecoligo.com/wp-content/uploads/sites/7/2021/11/sky-clouds-min-scaled.webp");
}

@media only screen and (max-width: 768px) {
  .story-parallax .story-section {
    position: relative;
    padding: 4vmin;
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    z-index: 2;
    text-align: center;
  }

  .story-parallax .ground-container .clouds {
    opacity: 10;
  }
}

/* Split text */

.textup span {
  margin-top: 0px;
  line-height: 1.3em;
  overflow: hidden;
}

.split-line {
  overflow: hidden;
}

.split-parent {
  overflow: hidden;
}
.split-child {
  display: inline-block;
}

/* Raised goal marker */

.raised-goal-marker {
  position: absolute;
  bottom: 14px;
  z-index: 9;
  text-align: right;
  margin-left: -26px;
}

.marker-tooltip {
  display: inline-block;
  position: relative;
  text-align: left;
}

.marker-tooltip .top {
  min-width: 200px;
  text-align: center;
  top: -20px;
  left: 50%;
  transform: translate(-50%, -100%);
  padding: 10px 20px;
  color: #000000;
  background-color: #ffffff;
  font-weight: normal;
  font-size: 13px;
  border-radius: 8px;
  position: absolute;
  z-index: 99999999;
  box-sizing: border-box;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.1);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.8s;
}

.marker-tooltip:hover .top {
  visibility: visible;
  opacity: 1;
}

.marker-tooltip .top i {
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -12px;
  width: 24px;
  height: 12px;
  overflow: hidden;
}

.marker-tooltip .top i::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: #ffffff;
  box-shadow: none;
}

.other-projects {
  display: none;
}

.other-projects .pp-content-post {
  display: none;
}

.fl-builder-edit .other-projects .pp-content-post {
  display: block;
}


.fl-builder-edit .other-projects {
  display: block;
}

.extra-hide-projects {
  display: none;
}

.fl-builder-edit .extra-hide-projects {
  display: block;
}

.postid-21029 .fl-node-63886cdaca058 .ecoone img, .postid-21029 .fl-node-638851d1e09c5, .postid-21029 .fl-node-63886cdaca058 {
  display: none;
}