/* Hero section */
.zy-hero {
  background-color: var(--bg-primary);
  padding: 2rem 0;
  overflow: hidden;
  height: 100vh;
}

@media (max-width: 1919px) {
  .zy-hero {
    height: calc(100vh + 20vh);
  }
}

.zy-hero .hero-img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.zy-hero .text-green-hero {
  font-family: "GeneralSans";
  color: var(--zy-green-accent);
  font-size: 9vw;
  line-height: 1.1em;
}

.zy-hero .text-white-hero {
  font-family: "HaasGrotLight";
  color: var(--white-color);
  font-size: 4.5vw;
  letter-spacing: var(--letter-spacing-lg);
}

.zy-hero .hero-btn {
  background: transparent;
  border-radius: 5px;
  border: 2px var(--zy-green-accent) solid;
  padding: 11px 25px;
  color: var(--text-white);
  font-family: "HaasGrotBold";
  font-size: 16px;
  letter-spacing: var(--letter-spacing);
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease, transform 0.3s ease, color 0.3s ease;
  z-index: 1;
  box-sizing: border-box;
}

.zy-hero .hero-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
  z-index: -1;
}

.zy-hero .hero-btn:hover::before {
  transform: translateX(0);
}

.zy-hero .hero-btn:hover {
  background: var(--zy-green-dark);
  color: var(--text-white);
}

@media (min-width: 768px) {
  .zy-hero .text-green-hero {
    font-size: 50px;
  }

  .zy-hero .text-white-hero {
    font-size: 18px;
  }

  .zy-hero .hero-btn {
    font-size: 16px;
    align-self: flex-start;
  }
}

@media (min-width: 1200px) {
  .zy-hero .hero-img {
    max-width: 850px;
    max-height: 650px;
  }

  .zy-hero .text-green-hero {
    font-size: 65px;
  }

  .zy-hero .text-white-hero {
    font-size: 22px;
  }
}

@media only screen and (max-width: 991px) {
  .zy-hero .zy-hero-container {
    height: auto !important;
  }

  .zy-hero .hero-btn {
    align-self: center !important;
  }

  .zy-hero .hero-img {
    max-width: 300px;
  }
}

@media only screen and (max-width: 768px) {
  .zy-hero .hero-img {
    max-height: 400px;
  }

  .zy-hero .zy-hero-container {
    min-height: 900px;
  }
}

@media (min-width: 769px) and (max-width: 992px) {
  .zy-hero .hero-btn {
    align-self: center !important;
  }
}

@media (min-width: 992px) and (max-width: 1235px) {
  .zy-hero .hero-img {
    max-height: 500px;
  }
}

/* How it works */
.zy-how .card {
  position: relative;
  border: none !important;
  border-radius: 0px !important;
}

.zy-how .image-wrapper {
  overflow: hidden;
  height: 380px;
  position: relative;
  border-radius: 7px;
}

.zy-how .card-img-top {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  position: absolute;
  top: 0;
  left: 0;
  will-change: transform;
}

.zy-how .card:hover .card-img-top {
  transform: scale(1.1);
}

.zy-how h2 {
  font-family: "GeneralSans";
  color: var(--text-grey) !important;
  font-size: 50px;
}

.zy-how .text-muted {
  font-family: "HaasGrotLight";
  letter-spacing: var(--letter-spacing);
  color: var(--text-grey) !important;
  font-size: 22px;
}

.zy-how .text-underline {
  font-family: "HaasGrotBold";
  display: inline-block;
  position: relative;
  color: var(--text-black) !important;
}

.zy-how .text-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: var(--zy-green-accent);
  transition: background 0.5s ease-in-out;
}

.zy-how .text-underline:hover::after {
  background: var(--zy-green-light);
}

.zy-how .text-underline-title {
  font-family: "HaasGrotBold";
  display: inline-flex;
  margin-bottom: 20px;
}

.zy-how .card-title {
  font-family: "GeneralSans";
  font-size: 24px !important;
}

.zy-how .card-text {
  margin-top: 10px;
  font-family: "HaasGrotLight";
  font-size: 18px;
}

.zy-how .card-body {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.zy-how .benefits-button {
  background: var(--zy-green-accent);
  border-radius: 5px;
  padding: 10px 20px;
  color: var(--text-white);
  text-align: center;
  font-family: "HaasGrotBold";
  font-size: 18px;
  letter-spacing: var(--letter-spacing);
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease, transform 0.3s ease, background 0.3s ease;
  box-sizing: border-box;
  border: 2px solid transparent;
}

.zy-how .benefits-button:hover {
  background: transparent;
  color: var(--zy-green-accent);
  border: 2px solid var(--zy-green-accent);
}

@media (min-width: 767px) {
  .zy-how {
    margin-top: 100px;
    margin-bottom: 50px;
  }
}

/* Features */
.zy-features {
  background-color: var(--light-grey);
  padding-top: 100px;
  padding-bottom: 80px;
}

.zy-features .box {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 7px !important;
}

.zy-features .box-top p {
  font-size: 18px;
  font-family: "HaasGrotLight";
}

.zy-features .box-bottom {
  font-size: 18px;
  display: none;
}

.zy-features .box-top h5 {
  font-family: "GeneralSans";
  font-size: 22px;
}

.zy-features .animation-container {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.zy-features .animation-container svg {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
}

@media (max-width: 767px) {
  .zy-features .box {
    height: auto;
    min-height: 250px;
  }

  .zy-features .animation-container {
    height: 100%;
  }
}

.zy-features .all-features {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.zy-features .all-features .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.zy-features .all-features .feature-button {
  z-index: 2;
  position: relative;
}

.zy-features h1 {
  font-family: "CentraExtraBold";
  padding-top: 30px;
  font-size: 95px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--zy-green-accent);
}

.zy-features .tagline {
  font-family: "GeneralSans";
  font-size: 30px;
  text-align: left;
}

.zy-features .feature-button {
  font-family: "GeneralSans";
  font-size: 24px;
  display: inline-flex;
  color: var(--text-white);
  position: relative;
  transition: background 0.5s ease-in-out;
}

.zy-features hr.feature-button-separator {
  border: 2px solid var(--zy-green-dark);
  margin: 5px;
  opacity: 1 !Important;
  position: relative;
  z-index: 9;
  transition: all 0.5s ease;
}

.zy-features box:hover .feature-button-separator {
  border: 2px solid var(--zy-green-light);
  transition: all 0.5s ease;
}

@media (min-width: 767px) {
  .zy-features {
    padding-top: 150px;
    padding-bottom: 100px;
  }
}

@media (max-width: 767px) {
  .zy-features h1 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 1rem;
  }

  .zy-features h5 {
    margin-top: 20px;
  }

  .zy-features .tagline {
    font-size: 20px;
    text-align: center;
  }
}

@media (max-width: 991px) {
  .zy-features h1 {
    text-align: center !important;
    line-height: 60px;
  }

  .zy-features .tagline {
    text-align: center !important;
    line-height: 30px;
    margin-top: 25px;
  }

  .zy-features h5 {
    text-align: center;
  }

  .zy-features .box-top p {
    text-align: center;
  }
}

@media (min-width: 1920px) {
  .back-to-work {
    line-height: 100px;
  }
}

/* Grid */
.zy-grid h5 {
  font-family: "GeneralSans";
  font-size: 45px;
}

.zy-grid p {
  font-family: "HaasGrotLight";
  font-size: 22px;
  line-height: 34px;
}

.zy-grid .poster-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: opacity 0.5s ease;
  opacity: 1;
  z-index: 2;
}

.zy-grid .hover-video {
  width: 300px;
  height: auto;
  object-fit: cover;
  pointer-events: none;
  z-index: 1;
}

.zy-grid .grid-dark {
  background-color: var(--bg-primary);
  background-color: #001900;
  color: var(--white-color);
}

.zy-grid .grid-dark a {
  background: var(--zy-green-accent);
  border-radius: 5px;
  padding: 10px 20px;
  color: var(--bg-primary);
  text-align: center;
  font-family: "HaasGrotBold";
  font-size: 18px;
  letter-spacing: var(--letter-spacing);
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease, transform 0.3s ease, background 0.3s ease;
  box-sizing: border-box;
  border: 2px solid transparent;
}

.zy-grid .grid-dark a:hover {
  background: transparent;
  color: var(--zy-green-accent);
  border: 2px solid var(--zy-green-accent);
}

.zy-grid .grid-dark img {
  height: auto;
}

.zy-grid .grid-light {
  background-color: var(--zy-green-light);
  color: var(--text-primary);
}

.zy-grid .grid-light img {
  height: auto;
}

.zy-grid .grid-light a {
  background: #000;
  border-radius: 5px;
  padding: 10px 20px;
  color: var(--zy-green-light);
  text-align: center;
  font-family: "HaasGrotBold";
  font-size: 18px;
  letter-spacing: var(--letter-spacing);
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease, transform 0.3s ease, background 0.3s ease;
  box-sizing: border-box;
  border: 2px solid transparent;
}

.zy-grid .grid-light a:hover {
  background: var(--zy-green-accent);
  color: var(--text-white);
  border: 2px solid var(--zy-green-accent);
}

.zy-grid .grid-grey {
  background-color: var(--light-grey);
  color: var(--text-primary);
}

.zy-grid .grid-grey img {
  height: auto;
}

.zy-grid .grid-grey a {
  background: #000;
  border-radius: 5px;
  padding: 10px 20px;
  color: var(--light-grey);
  text-align: center;
  font-family: "HaasGrotBold";
  font-size: 18px;
  letter-spacing: var(--letter-spacing);
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease, transform 0.3s ease, background 0.3s ease;
  box-sizing: border-box;
  border: 2px solid #000;
}

.zy-grid .grid-grey a:hover {
  background: var(--zy-green-accent);
  color: var(--text-white);
  border: 2px solid var(--zy-green-accent);
}

.zy-grid .animation-container {
  height: 300px;
}

.zy-grid .grid-accent {
  background-color: var(--zy-green-accent);
  color: var(--white-color);
}

.zy-grid .grid-accent a {
  background: #fff;
  border-radius: 5px;
  padding: 10px 20px;
  color: var(--zy-green-accent);
  text-align: center;
  font-family: "HaasGrotBold";
  font-size: 18px;
  letter-spacing: var(--letter-spacing);
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease, transform 0.3s ease, background 0.3s ease;
  box-sizing: border-box;
  border: 2px solid #fff;
}

.zy-grid .grid-accent a:hover {
  background: #000;
  color: var(--text-white);
  border: 2px solid #000;
}

.zy-grid .grid-accent img {
  height: auto;
}

.zy-grid .grid {
  padding: 70px 40px 80px 40px !important;
  border-radius: 5px !important;
}

.zy-grid .spacer {
  height: 350px;
}

@media only screen and (min-width: 768px) {
  .zy-grid .grid-dark img {
    max-width: 400px;
  }

  .zy-grid .grid-light img {
    max-width: 350px;
  }

  .zy-grid .grid-grey img {
    max-width: 350px;
  }

  .zy-grid .grid-accent img {
    max-width: 400px;
  }
}

/* CTE */
.zy-cte {
  background-color: var(--bg-primary);
  position: relative;
}

.zy-cte .cte-img {
  border-radius: 10px;
}

.zy-cte .bg-image {
  background-image: url("../images/home/cte-bg.webp");
  background-size: cover;
  background-position: center;
  height: 100%;
}

.zy-cte {
  padding-top: 200px;
  padding-bottom: 200px;
}

.zy-cte h1 {
  font-family: "GeneralSans";
  font-size: 50px;
  color: var(--zy-green-accent);
}

.zy-cte p,
.zy-cte ul {
  font-family: "HaasGrotLight";
  font-size: 22px;
  color: var(--text-white);
}

.zy-cte .cte-btn {
  background: var(--zy-green-accent);
  border-radius: 5px;
  padding: 11px 25px;
  color: var(--bg-primary);
  border: 2px var(--zy-green-accent) solid;
  font-family: "HaasGrotBold";
  font-size: 16px;
  letter-spacing: var(--letter-spacing);
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease, transform 0.3s ease;
  box-sizing: border-box;
}

.zy-cte .cte-btn:hover {
  color: var(--zy-green-accent);
  background: var(--bg-primary);
  border: 2px var(--zy-green-accent) solid;
  transition: color 0.3s ease, transform 0.3s ease;
}

@media (max-width: 767.98px) {
  .zy-cte .box-layout {
    padding: 30px 20px;
  }

  .zy-cte h1 {
    font-size: 30px;
  }

  .zy-cte p {
    font-size: 16px;
  }

  .zy-cte .cte-btn {
    font-size: 14px;
  }

  .zy-cte .bg-image {
    position: relative;
    height: 300px;
    margin-top: 310px;
    background-position: center center;
  }

  .zy-cte {
    margin-bottom: 350px;
  }
}

.desktop-view {
  display: block;
}

.mobile-view {
  display: none;
}

.bg-image {
  background-image: url("../images/home/cte-bg.webp");
  background-size: cover;
  background-position: center;
  height: 100%;
}

.spacer {
  height: 400px;
}

@media only screen and (max-width: 768px) {
  .desktop-view {
    display: none;
  }

  .mobile-view {
    display: block;
  }

  .mobile-text-container {
    text-align: center;
    padding: 80px 20px;
    background-color: var(--zy-green-accent);
  }

  .mobile-image-container {
    background-image: url("../images/home/cte-bg.webp");
    background-size: cover;
    background-position: center;
    height: 400px;
  }
}

/* Review */
.zy-review .image-container {
  width: 500px;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.zy-review h1 {
  font-family: "CentraExtraBold";
  padding-top: 30px;
  font-size: 95px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--zy-green-accent);
}

.zy-review .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  -moz-transform: scale(-1, -1);
  -o-transform: scale(-1, -1);
  -webkit-transform: scale(-1, -1);
  transform: scale(-1, 1);
}

.zy-review .testimonial-desc {
  font-family: "HaasGrotLight";
  font-size: 20px;
}

.zy-review .testimonial-name {
  font-family: "GeneralSans";
  font-size: 18px;
}

.zy-review .testimonial-company {
  font-family: "HaasGrotLight";
  font-size: 18px;
  color: var(--zy-green-accent);
}

@media (max-width: 767.98px) {
  .zy-review .image-container {
    width: 300px;
    height: 300px;
  }
}

button.owl-dot {
  border: 2px solid #000 !important;
}

.owl-dot {
  width: 16px !important;
  height: 16px !important;
  margin: 0 8px !important;
}

div.owl-dots {
  margin-top: 60px !important;
}

.owl-dot.active {
  background-color: #000 !important;
}

.hero-tff .form-control {
  border: 2px var(--zy-green-accent) solid;
  border-radius: 5px 0px 0px 5px;
  height: 50px;
}

.hero-tff .input-group {
  flex-wrap: nowrap !important;
}

.hero-tff .wpcf7-form-control::placeholder {
  color: #818F81;
  font-weight: 600;
  font-size: 16px;
}

.hero-tff .wpcf7-form-control {
  color: #818F81;
  font-weight: 600;
  font-size: 16px;
}

.hero-tff .wpcf7-submit {
  background-color: var(--zy-green-accent);
  border-color: var(--zy-green-accent);
  border-radius: 0px 5px 5px 0px !important;
  font-weight: 600;
  font-size: 16px;
  padding: 10px 20px;
  color: #000 !Important;
}

.hero-tff .wpcf7-submit:active {
  background-color: var(--zy-green-accent);
  border-color: var(--zy-green-accent);
  border-radius: 0px 5px 5px 0px !important;
  font-weight: 600;
  font-size: 16px;
  padding: 10px 20px;
  color: #000 !Important;
}

.hero-tff .wpcf7-not-valid-tip {
  display: none;
}

.text-xs-highlighted {
  color: var(--zy-green-accent);
  font-weight: 600;
  font-size: 16px;
}

.wpcf7-response-output {
  background-color: #fff !important;
  margin: 1em 0em 1em !important;
  width: max-content;
}