.grid-container-planet {
  display: grid;
  grid-template-areas: "a a c c" "b b c c" "d d e f" "d d e f";
  grid-gap: 1.1rem;
}

.grid-item-planet {
  flex: 1 1 calc(33.3333333333% - 15px);
  background-color: var(--e-global-color-accent) !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.grid-item-planet .image {
  width: 100%;
  height: 265px;
  aspect-ratio: 1;
}
.grid-item-planet .image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.grid-item-planet .the-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px;
  margin: auto 0;
  width: 100%;
}
.grid-item-planet .icon {
  position: absolute;
  top: 265px;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 70px;
  width: 70px;
}
.grid-item-planet .icon img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.grid-item-planet h3 {
  font-size: 15px !important;
  color: var(--e-global-color-secondary);
}
.grid-item-planet p {
  color: var(--e-global-color-text);
}
.grid-item-planet:nth-child(1), .grid-item-planet:nth-child(5) {
  background-color: var(--e-global-color-secondary) !important;
}
.grid-item-planet:nth-child(1) h3, .grid-item-planet:nth-child(1) p, .grid-item-planet:nth-child(5) h3, .grid-item-planet:nth-child(5) p {
  color: var(--e-global-color-6cd2880a) !important;
}
.grid-item-planet:nth-child(3), .grid-item-planet:nth-child(4) {
  background-color: white !important;
  border: 1px solid #E5E5E5;
}
.grid-item-planet:first-child {
  grid-area: a;
}
.grid-item-planet:nth-child(2) {
  grid-area: b;
}
.grid-item-planet:nth-child(3) {
  grid-area: c;
}
.grid-item-planet:nth-child(4) {
  grid-area: d;
}
.grid-item-planet:nth-child(5) {
  grid-area: e;
}
.grid-item-planet:nth-child(6) {
  grid-area: f;
}

@media only screen and (min-width: 1101px) {
  .grid-item-planet:nth-child(1), .grid-item-planet:nth-child(2) {
    flex-direction: row;
  }
  .grid-item-planet:nth-child(1) .the-content, .grid-item-planet:nth-child(2) .the-content {
    max-width: 50%;
  }
  .grid-item-planet:nth-child(1) .image, .grid-item-planet:nth-child(2) .image {
    width: 50%;
    height: 100%;
  }
  .grid-item-planet:nth-child(1) .icon, .grid-item-planet:nth-child(2) .icon {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
@media only screen and (max-width: 1100px) {
  .grid-container-planet {
    grid-template-areas: "a a b b" "c c e e" "f f d d";
  }
}
@media only screen and (max-width: 600px) {
  .grid-container-planet {
    grid-template-areas: "a" "b" "c" "d" "e" "f";
  }
  .grid-item-planet .image {
    height: 200px;
  }
  .grid-item-planet .icon {
    top: 200px;
  }
  .grid-item-planet:nth-child(1) .image, .grid-item-planet:nth-child(5) .image {
    height: 350px;
  }
  .grid-item-planet:nth-child(1) .icon, .grid-item-planet:nth-child(5) .icon {
    top: 350px;
  }
}
.planet-stats-container {
  display: grid;
  grid-template-areas: "a b d d" "c c d d";
  grid-gap: 1.1rem;
  margin-top: 40px;
}

.planet-stats-item {
  display: flex;
  flex-direction: column;
  justify-content: end;
  position: relative;
  border-radius: 4px;
  padding: 80px 32px 32px;
  background-color: var(--e-global-color-secondary);
  color: white;
  overflow: hidden;
  transition: all 0.4s !important;
}
.planet-stats-item:first-child {
  grid-area: a;
}
.planet-stats-item:first-child::before {
  display: none;
}
.planet-stats-item:nth-child(2) {
  grid-area: b;
  background-color: white;
  border: solid 1px var(--e-global-color-f58b4cc) !important;
}
.planet-stats-item:nth-child(2) h3 {
  color: var(--e-global-color-text) !important;
}
.planet-stats-item:nth-child(2) .content p {
  color: black !important;
}
.planet-stats-item:nth-child(2)::before {
  display: none;
}
.planet-stats-item:nth-child(3) {
  grid-area: c;
}
.planet-stats-item:nth-child(4) {
  grid-area: d;
}
.planet-stats-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.4;
}
.planet-stats-item h3 {
  margin: 18px 0 5px;
}
.planet-stats-item p, .planet-stats-item .content, .planet-stats-item .numbers {
  position: relative;
  z-index: 2;
}
.planet-stats-item .content p {
  color: white !important;
}
.planet-stats-item .numbers span:not(.spacer) {
  background-color: #F5F5F5;
  border-radius: 12px;
  color: var(--e-global-color-text) !important;
  font-size: 32px;
  font-weight: 600;
  padding: 2px 3px 0px;
}
.planet-stats-item .numbers .spacer {
  margin-right: 12px;
}

@media only screen and (max-width: 1100px) {
  .planet-stats-container {
    grid-template-areas: "a b" "c d";
  }
}
@media only screen and (max-width: 850px) {
  .planet-stats-container {
    grid-template-areas: "a" "b" "c" "d";
  }
  .planet-stats-item:nth-child(1), .planet-stats-item:nth-child(2) {
    padding-top: 60px;
  }
}
@media only screen and (max-width: 450px) {
  .planet-stats-item {
    padding: 80px 18px 32px;
  }
  .planet-stats-item .numbers span:not(.spacer) {
    font-size: 25px;
  }
}
.post-block-section .elementor-posts {
  display: grid;
  grid-template-areas: "a b" "a c";
  grid-gap: 1.1rem;
  grid-template-columns: unset !important;
}
.post-block-section .elementor-posts article {
  grid-area: a;
}
.post-block-section .elementor-posts article:nth-child(2) {
  grid-area: b;
}
.post-block-section .elementor-posts article:nth-child(3) {
  grid-area: c;
}
.post-block-section .elementor-posts article:nth-child(2) .elementor-post__thumbnail__link, .post-block-section .elementor-posts article:nth-child(3) .elementor-post__thumbnail__link {
  width: 70%;
}
.post-block-section .elementor-posts article:not(:nth-child(1)) .elementor-post__card {
  flex-direction: row;
}
.post-block-section .elementor-posts article .elementor-post__card .elementor-post__thumbnail {
  height: 100%;
}
.post-block-section .elementor-posts article .elementor-post__card .elementor-post__thumbnail img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.post-block-section .elementor-posts article h3.elementor-post__title {
  padding: 20px 24px 16px;
  min-height: 0;
  text-align: left;
  justify-content: start !important;
}
.post-block-section .elementor-posts article .elementor-post__excerpt {
  padding: 0 24px 42px;
  text-align: left;
}
.post-block-section .elementor-posts article .elementor-post__read-more {
  width: 100%;
  margin-top: auto;
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: 0;
}

@media only screen and (max-width: 1100px) {
  .post-block-section .elementor-posts {
    display: grid;
    grid-template-areas: "a" "b" "c";
  }
  .post-block-section .elementor-posts article .elementor-post__card {
    flex-direction: row;
  }
  .post-block-section .elementor-post__thumbnail__link {
    width: 70% !important;
  }
}
@media only screen and (max-width: 450px) {
  .post-block-section .elementor-posts article .elementor-post__card {
    flex-direction: column !important;
  }
  .post-block-section .elementor-posts article:nth-child(1) .elementor-post__thumbnail {
    padding-bottom: 80% !important;
  }
  .post-block-section .elementor-post__thumbnail__link {
    width: 100% !important;
  }
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-400px * var(--slide-count)));
  }
}
.slider-infinite {
  background: var(--e-global-color-secondary);
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 12px 0;
}
.slider-infinite .slide-track {
  animation: scroll calc(5s * var(--slide-count)) linear infinite;
  display: flex;
  width: calc(400px * var(--slide-count) * 3);
}
.slider-infinite .slide {
  height: 100px;
  width: 400px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}
.slider-infinite .slide:after {
  content: "";
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background-image: url("../img/leaf-icon.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.slider-infinite h3 {
  font-size: 24px !important;
  font-weight: 600;
  color: white;
  margin: 0;
}

@media only screen and (max-width: 550px) {
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-300px * var(--slide-count)));
    }
  }
  .slider-infinite {
    padding: 0;
    margin-bottom: 15px;
  }
  .slider-infinite .slide-track {
    width: calc(300px * var(--slide-count) * 3);
  }
  .slider-infinite .slide {
    width: 300px;
  }
  .slider-infinite h3 {
    font-size: 18px !important;
  }
}
.other-products-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px 100px;
  padding: 50px 50px 70px;
  background-color: #F5F5F5;
  border-radius: 4px;
  background-repeat: no-repeat;
  background-position: 50% 44%;
  background-size: 36%;
}
.other-products-wrapper .single-other-product {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  border-radius: 4px;
  max-width: 260px;
  background-color: white;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.25);
  position: relative;
}
.other-products-wrapper .single-other-product:nth-child(1) {
  top: 20px;
}
.other-products-wrapper .single-other-product:nth-child(3) {
  top: 10px;
  left: 75px;
}
.other-products-wrapper .single-other-product:nth-child(4) {
  right: 45px;
}
.other-products-wrapper .single-other-product .icon {
  margin-top: -55px;
}
.other-products-wrapper .single-other-product .the-content {
  text-align: center;
}
.other-products-wrapper .single-other-product .the-content p {
  color: var(--e-global-color-primary) !important;
  margin-bottom: 0;
}

@media only screen and (max-width: 991px) {
  .other-products-wrapper {
    background-position: center 20px;
    background-size: 350px;
    align-items: stretch;
    justify-content: center;
    gap: 50px;
    padding-top: 300px;
  }
  .other-products-wrapper .single-other-product {
    position: unset;
    width: calc(50% - 25px);
    max-width: unset;
    justify-content: start;
  }
}
@media only screen and (max-width: 650px) {
  .other-products-wrapper .single-other-product {
    width: 100%;
  }
}
.certs-slider-wrapper {
  position: relative;
}
.certs-slider-wrapper .slick-arrow {
  width: 13vw;
  height: 400px;
  position: absolute;
  z-index: 2;
  left: 1vw;
  top: calc(50% + 50px);
  transform: translateY(-50%);
  background-color: #F5F5F5;
  border: none;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.certs-slider-wrapper .slick-arrow.slick-next {
  left: unset;
  right: 1vw;
}
.certs-slider-wrapper .slick-arrow.slick-next:before {
  content: "\f054";
}
.certs-slider-wrapper .slick-arrow.slick-next:hover::before {
  left: 52%;
}
.certs-slider-wrapper .slick-arrow:before {
  content: "\f053";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 33px;
  color: white;
  opacity: 1;
  z-index: 3;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.2s ease-in-out;
}
.certs-slider-wrapper .slick-arrow:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #144733;
  opacity: 0.4;
}
.certs-slider-wrapper .slick-arrow:hover:before {
  left: 48%;
}
.certs-slider-wrapper .slick-arrow .content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0.4;
}
.certs-slider-wrapper .slick-arrow .icon {
  height: 110px;
  width: 95px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.certs-slider-wrapper .slick-arrow .title {
  margin-top: 12px;
  color: var(--e-global-color-text);
  text-align: center;
}

.certs-slider {
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.certs-slider .slick-list {
  width: 70%;
  margin: auto;
}
.certs-slider .single-cert {
  display: inline-block;
  vertical-align: middle;
  float: none;
  padding: 100px 0 0 0;
  text-align: center;
  position: relative;
}
.certs-slider .single-cert .wrapper {
  position: relative;
  background-color: #F5F5F5;
  border-radius: 4px;
  padding: 100px 80px 60px;
}
.certs-slider .single-cert .image {
  position: absolute;
  top: -65px;
  left: 50%;
  transform: translate(-50%, 0);
  height: 130px;
}
.certs-slider .single-cert .small-text {
  font-size: 9px;
  line-height: 2;
  margin-top: -13px;
  display: block;
}
.certs-slider .single-cert .content {
  max-width: 750px;
  margin: auto;
}
.certs-slider .single-cert h3 {
  color: var(--e-global-color-text);
  margin-top: 45px;
}
.certs-slider .impact-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
.certs-slider .impact-wrapper .single-impact {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 220px;
}
.certs-slider .impact-wrapper .single-impact p {
  color: var(--e-global-color-secondary) !important;
  font-size: 16px !important;
}
.certs-slider .impact-wrapper .single-impact::before {
  content: "";
  display: block;
  background-image: url("../img/leaf-icon-secondary.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 16px;
  width: 22px;
  margin-bottom: 16px;
}

@media only screen and (max-width: 1199px) {
  .certs-slider .slick-list {
    width: 60%;
  }
  .certs-slider-wrapper .slick-arrow {
    width: 18vw;
  }
}
@media only screen and (max-width: 991px) {
  .certs-slider .slick-list {
    width: 86%;
  }
  .certs-slider .single-cert h3 {
    margin-top: 40px;
  }
  .certs-slider .single-cert .wrapper {
    padding: 100px 30px 40px;
  }
  .certs-slider-wrapper .slick-arrow {
    width: 5vw;
    height: 5vw;
  }
  .certs-slider-wrapper .slick-arrow .content {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .certs-slider .slick-list {
    width: calc(100% - 100px);
  }
  .certs-slider-wrapper .slick-arrow {
    width: 35px;
    height: 35px;
  }
  .certs-slider-wrapper .slick-arrow::before {
    font-size: 30px;
  }
}
.btn-cascades-inc .elementor-button {
  padding: 12px 12px;
  color: var(--e-global-color-text);
  background-color: white;
  border: 1px solid #E5E5E5;
  border-radius: 4px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  line-height: 1em;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.4s !important;
}
.btn-cascades-inc .elementor-button i {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--e-global-color-text);
  font-style: normal;
  margin-left: 10px;
  transition: all 0.4s !important;
}
.btn-cascades-inc .elementor-button .elementor-button-text {
  color: var(--e-global-color-text);
  flex-grow: unset;
  transition: all 0.4s !important;
}
.btn-cascades-inc .elementor-button .elementor-button-icon svg {
  width: 2.7em;
  transition: all 0.4s !important;
}
.btn-cascades-inc .elementor-button .elementor-button-content-wrapper {
  align-items: center;
}
.btn-cascades-inc .elementor-button:hover {
  background-color: var(--e-global-color-text);
  color: white !important;
}
.btn-cascades-inc .elementor-button:hover i {
  color: white;
}
.btn-cascades-inc .elementor-button:hover .elementor-button-icon svg {
  filter: contrast(0) brightness(2);
}
.btn-cascades-inc .elementor-button:hover .elementor-button-text {
  color: white !important;
}/*# sourceMappingURL=main.css.map */