.content-columns--section {
  position: relative;
  background: var(--background-color);
  color: var(--text-color);
  margin: 0px 0 100px;
}
@media screen and (max-width: 768px) {
  .content-columns--section {
    margin: 0 0 60px;
  }
}
.content-columns--section h2.heading {
  font-size: 58px;
  font-weight: 700;
  margin: 40px auto;
}
@media screen and (max-width: 1280px) {
  .content-columns--section h2.heading {
    font-size: 42px;
  }
}
@media screen and (max-width: 768px) {
  .content-columns--section h2.heading {
    font-size: 32px;
  }
}
.content-columns--section h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}
.content-columns--section .swiper-wrapper {
  padding-bottom: 60px;
}
.content-columns--section .swiper-slide {
  height: auto !important;
}
.content-columns--section .swiper-slide .content--container {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.content-columns--section .swiper-slide .content--container .column--container {
  border-width: 1px;
  border-style: solid;
  border-radius: var(--border-radius);
  flex: 1 1 auto;
  position: relative;
}
.content-columns--section .swiper-slide .content--container .column--container .column--content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.content-columns--section .swiper-slide .content--container .column--container .column--content h4 {
  margin-bottom: 10px;
}
.content-columns--section .swiper-slide .content--container .column--container .column--content ul:not(:last-child) {
  margin-bottom: 20px;
}
.content-columns--section .swiper-slide .content--container .column--container .column--content li:not(:last-child) {
  margin-bottom: 5px;
}
.content-columns--section .swiper-slide .content--container .column--container .column--content .button--container {
  margin-top: auto;
}
@media screen and (max-width: 768px) {
  .content-columns--section.show-column-icons .swiper-slide:nth-child(2) .column--container:after, .content-columns--section.show-column-icons .swiper-slide:nth-child(2) .column--container:before {
    display: none;
  }
}
.content-columns--section.show-column-icons .swiper-slide:nth-child(2) .column--container:after {
  content: "";
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background-image: url(../../assets/images/equal.png);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 999999;
}
.content-columns--section.show-column-icons .swiper-slide:nth-child(2) .column--container:before {
  content: "";
  background-image: url(../../assets/images/plus.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: -45px;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  z-index: 999999;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000000000000000000;
  overflow-y: auto;
  visibility: hidden;
  transition: background-color 0.3s ease, visibility 0s linear 0.3s;
}
@media screen and (max-width: 1500px) {
  .popup-overlay .section--wrapper {
    padding: 0;
  }
}
.popup-overlay.active {
  background-color: rgba(0, 0, 0, 0.7);
  visibility: visible;
  transition: background-color 0.3s ease, visibility 0s;
}
.popup-overlay .popup-content {
  position: relative;
  background-color: var(--sand);
  width: 95%;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0 30px;
  border-radius: 5px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
@media screen and (max-width: 1500px) {
  .popup-overlay .popup-content {
    padding: 10px 20px 0;
  }
}
.popup-overlay.active .popup-content {
  opacity: 1;
  transform: scale(1);
}
.popup-overlay .close--trigger {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  padding: 25px;
  margin-right: -25px;
  margin-bottom: -25px;
  width: fit-content;
  margin-left: auto;
  cursor: pointer;
}
.popup-overlay .close--trigger .close--svg {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--green1);
  border-radius: 50%;
  width: 25px;
  height: 25px;
}
.popup-overlay .close--trigger span {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}
.popup-overlay .text-image--section {
  margin: 80px 0;
}
@media screen and (max-width: 1280px) {
  .popup-overlay .text-image--section {
    margin: 0 0 60px;
  }
}
.popup-overlay .text-image--section h2.heading {
  color: var(--green1);
  font-size: 58px;
  font-weight: 700;
  text-align: center;
  max-width: 1026px;
  margin: 40px auto;
}
@media screen and (max-width: 1280px) {
  .popup-overlay .text-image--section h2.heading {
    font-size: 42px;
  }
}
@media screen and (max-width: 768px) {
  .popup-overlay .text-image--section h2.heading {
    font-size: 32px;
  }
}
.popup-overlay .text-image--section .content--container {
  max-width: 1026px;
  margin: 0 auto;
}
.popup-overlay .text-image--section .content--container .text--container {
  font-weight: 600;
  margin-top: 60px;
  font-size: 24px;
}
@media screen and (max-width: 1280px) {
  .popup-overlay .text-image--section .content--container .text--container {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .popup-overlay .text-image--section .content--container .text--container {
    margin-top: 30px;
    font-size: 16px;
  }
}
.popup-overlay .transformation--section {
  background: var(--sand);
  padding: 0;
}
@media screen and (max-width: 768px) {
  .popup-overlay .transformation--section {
    padding: 20px 0 60px;
  }
}
.popup-overlay .transformation--section .heading--container {
  max-width: 1026px;
}
.popup-overlay .transformation--section .heading--container h2.heading {
  color: var(--green1);
  font-size: 58px;
  font-weight: 700;
  margin: 20px auto;
}
@media screen and (max-width: 1280px) {
  .popup-overlay .transformation--section .heading--container h2.heading {
    font-size: 42px;
  }
}
@media screen and (max-width: 768px) {
  .popup-overlay .transformation--section .heading--container h2.heading {
    font-size: 32px;
  }
}
.popup-overlay .transformation--section .heading--container p {
  margin-bottom: 40px;
}
.popup-overlay .transformation--section .swiper-wrapper {
  padding-bottom: 60px;
}
.popup-overlay .transformation--section .swiper-slide {
  height: auto !important;
}
.popup-overlay .transformation--section .swiper-slide .content--container {
  padding: 30px;
  border-radius: var(--border-radius);
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .popup-overlay .transformation--section .swiper-slide .content--container {
    padding: 20px;
  }
}
.popup-overlay .transformation--section .swiper-slide .content--container > div {
  flex: 0 0 auto;
}
.popup-overlay .transformation--section .swiper-slide .content--container h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}
.popup-overlay .transformation--section .swiper-slide .content--container p {
  margin-bottom: 20px;
}
.popup-overlay .transformation--section .swiper-slide .content--container h4 {
  font-weight: 400;
  margin-bottom: 20px;
}
.popup-overlay .transformation--section .swiper-slide .content--container ul {
  padding-left: 25px;
}
.popup-overlay .transformation--section .swiper-slide .content--container img {
  width: 100%;
  margin-bottom: 20px;
}
.popup-overlay .ratio-reduction--section {
  padding: 0px 0 80px;
}
@media screen and (max-width: 768px) {
  .popup-overlay .ratio-reduction--section {
    padding: 20px 0 60px;
  }
}
.popup-overlay .ratio-reduction--section .heading--container h2.heading {
  color: var(--green1);
  font-size: 58px;
  font-weight: 700;
  margin: 20px auto;
  text-align: center;
}
@media screen and (max-width: 1280px) {
  .popup-overlay .ratio-reduction--section .heading--container h2.heading {
    font-size: 42px;
  }
}
@media screen and (max-width: 768px) {
  .popup-overlay .ratio-reduction--section .heading--container h2.heading {
    font-size: 32px;
  }
}
.popup-overlay .ratio-reduction--section .ratio-reduction--numbers {
  display: flex;
  justify-content: center;
  gap: 0 80px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .popup-overlay .ratio-reduction--section .ratio-reduction--numbers {
    flex-direction: column;
    gap: 20px;
  }
}
.popup-overlay .ratio-reduction--section .ratio-reduction--numbers .ratio-reduction--number {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .popup-overlay .ratio-reduction--section .ratio-reduction--numbers .ratio-reduction--number {
    margin-top: 20px;
  }
}
.popup-overlay .ratio-reduction--section .ratio-reduction--numbers .ratio-reduction--number h3.number {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 7px;
  color: var(--green2);
}
@media screen and (max-width: 768px) {
  .popup-overlay .ratio-reduction--section .ratio-reduction--numbers .ratio-reduction--number h3.number {
    font-size: 45px;
  }
}
.popup-overlay .ratio-reduction--section .ratio-reduction--green-text {
  font-size: 21px;
  text-align: center;
  color: var(--sand);
  background: var(--green2);
  padding: 7px 40px;
  border-radius: var(--border-radius);
  width: fit-content;
  margin: 60px auto 0;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .popup-overlay .ratio-reduction--section .ratio-reduction--green-text {
    margin-top: 40px;
    font-size: 18px;
  }
}
.popup-overlay .ratio-reduction--section .ratio-reduction--disclaimer {
  font-size: 16px;
  margin-top: 60px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .popup-overlay .ratio-reduction--section .ratio-reduction--disclaimer {
    margin-top: 40px;
  }
}
.popup-overlay .ratio-reduction--section .ratio-reduction--disclaimer a {
  color: var(--green1);
  text-decoration: underline;
}

/*# sourceMappingURL=content-columns.css.map */
