:root {
  /* color variables */
  --zy-green-light: #a3ff1d;
  --zy-green-medium: #33cc00;
  --zy-green-dark: #15a800;
  --zy-green-accent: #34c100;
  --text-white: #fff;
  --text-primary: #001e00;
  --text-grey: #0c1911;
  --light-grey: #efefef;
  --dark-grey: #898989;
  --white-color: #fff;
  --black-color: #000000;
  --bg-primary: #001e00;

  /* font size variables */
  --nav-font-size: 18px;
  --letter-spacing: 1px;
  --letter-spacing-lg: 1.5px;
}

@media (max-width: 1919px) {
  html {
    zoom: 80%;
  }
}

.modal-backdrop {
  zoom: 500% !important;
}

/* common */
a {
  text-decoration: none !important;
}

.zy-logo {
  font-family: "CentraExtraBold";
  font-size: 43px;
  text-transform: uppercase;
  color: var(--zy-green-accent) !important;
  margin-right: 34px;
}

.white-text {
  color: var(--text-white);
}

.lozad {
  opacity: 1;
}

@media (min-width: 768px) and (max-width: 1600px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1500px;
  }
}

@media (min-width: 1600px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1525px;
  }
}

/* Header */
.custom-logo {
  width: auto;
  height: 31px;
  margin-right: 38px;
}

.zynoff-header {
  background-color: var(--bg-primary);
  height: 80px;
  display: flex;
  align-items: center;
  /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
  z-index: 1000;
}

.navbar-collapse {
  background-color: var(--bg-primary);
  max-height: 100vh;
  overflow-y: auto;
}

.navbar-toggler {
  border-color: var(--white-color);
}

.navbar-toggler-icon {
  color: var(--white-color);
}

.navbar-toggler {
  --bs-navbar-toggler-icon-bg: url('data:image/svg+xml,%3csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"%3e%3cpath stroke="%23ffffff" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M4 7h22M4 15h22M4 23h22" /%3e%3c/svg%3e');
}

.nav-link {
  color: var(--text-white) !important;
  font-size: var(--nav-font-size);
  font-family: "HaasGrotMedium";
  letter-spacing: var(--letter-spacing);
  transform: all 0.3s ease;
}

.nav-link:hover {
  color: var(--zy-green-accent) !important;
  transform: all 0.3s ease;
}

header .menu-item {
  margin-right: 15px;
}

@media (max-width: 992px) {
  .navbar-collapse {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    padding: 1rem 0 1rem 0;
    background-color: var(--bg-primary);
    z-index: 1000;
    border-radius: 0px 0px 10px 10px;
  }

  .nav-link {
    padding: 10px 0;
    text-align: center;
  }

  .navbar-nav {
    flex-direction: column;
    align-items: center;
  }
}

/* Glow animation */
@keyframes zy-glow {
  0% {
    box-shadow: 0 0 5px rgba(66, 255, 176, 0.4), 0 0 10px rgba(66, 255, 176, 0.3), 0 0 15px rgba(66, 255, 176, 0.2);
  }

  50% {
    box-shadow: 0 0 10px rgb(51 204 2 / 63%), 0 0 20px rgb(51 204 2 / 63%), 0 0 30px rgb(51 204 2 / 63%);
  }

  100% {
    box-shadow: 0 0 5px rgba(66, 255, 176, 0.4), 0 0 10px rgba(66, 255, 176, 0.3), 0 0 15px rgba(66, 255, 176, 0.2);
  }
}

.navbar-expand-lg .navbar-collapse {
  overflow: visible;
}

/* Nav buttons */
.btn-nav {
  background: var(--zy-green-accent);
  border-radius: 5px;
  border: 1px solid var(--zy-green-accent);
  padding: 11px 17px;
  color: var(--text-black);
  font-family: "HaasGrotBold";
  font-size: 16px;
  letter-spacing: var(--letter-spacing);
  transition: background 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  width: 135px;
  text-align: center;
  /* animation: zy-glow 2s infinite alternate; */
  position: relative;
  z-index: 2;
}

.btn-nav::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;
}

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

.btn-nav:hover {
  background: var(--zy-green-dark);
}

/* Outline Button */
.btn-nav-outline {
  background: transparent;
  border-radius: 5px;
  border: 1px solid var(--white-color);
  padding: 11px 17px;
  color: var(--text-white);
  font-family: "HaasGrotBold";
  font-size: 16px;
  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;
  z-index: 1;
  width: 135px;
  text-align: center;
}

.btn-nav-outline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  color: var(--text-white);
  background: var(--white-color);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
  z-index: -1;
}

.btn-nav-outline:hover::before {
  transform: translateX(0);
}

.btn-nav-outline:hover {
  color: var(--black-color) !important;
  background: var(--black-color);
}

@media (max-width: 992px) {
  .navbar-collapse {
    text-align: center;
  }

  .navbar-nav {
    flex-direction: column;
    align-items: center;
  }

  .btn-nav,
  .btn-nav-outline {
    width: 155px;
  }

  .navbar-collapse .d-flex {
    /*flex-direction: column;*/
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 1rem;
  }
}

@media (min-width: 992px) {
  .navbar-collapse .d-flex {
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
  }
}

/* footer */
.zy-footer {
  background-color: var(--bg-primary);
}

.zy-footer .menu-title {
  size: 24px;
  font-family: "GeneralSans";
}

.zy-footer ul {
  list-style-type: none;
  padding-left: 0px;
  size: 18px;
  line-height: 30px;
  font-family: "HaasGrotLight";
}

.zy-footer a {
  color: var(--text-white);
}

.zy-footer li a {
  transition: all 0.3s ease;
}

.zy-footer li a:hover {
  color: var(--zy-green-accent);
  transition: all 0.3s ease;
}

@media only screen and (min-width: 768px) {
  .zy-footer .last .menu {
    margin-top: 35px;
  }
}

/* Industry list */
.zy-industry-matrix a {
  color: var(--text-grey);
  transition: all 0.3s ease;
}

.zy-industry-matrix a:hover {
  color: var(--zy-green-accent);
  transition: all 0.3s ease;
}

.modal-title {
  font-family: "GeneralSans";
  color: var(--text-grey);
  font-size: 20px;
}

/* Pricing tables */
.zy-pricing {
  background-color: var(--light-grey);
}

.zy-pricing h2 {
  font-family: "GeneralSans";
  font-size: 50px;
  text-align: start;
}

.zy-pricing .pricing-card {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  transition: transform 0.3s;
  text-align: left;
  background-color: var(--white-color);
  border-radius: 10px;
}

.zy-pricing .pricing-btn {
  background: var(--zy-green-accent);
  border-radius: 5px;
  width: 100%;
  padding: 14px 0;
  color: var(--text-white);
  text-align: center;
  font-family: "HaasGrotBold";
  font-size: 16px;
  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-pricing .pricing-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--zy-green-accent);
  border-radius: 5px;
  z-index: -1;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.zy-pricing .pricing-btn:hover::before {
  transform: scale(1.1);
  opacity: 0;
}

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

.zy-pricing .pricing-btn:hover {
  color: var(--zy-green-accent);
}

.zy-pricing .pricing-btn:not(:hover) {
  color: var(--text-white);
}

.zy-pricing .plan {
  justify-content: flex-start;
}

.zy-pricing .plan h4 {
  font-family: "GeneralSans";
  font-size: 30px;
}

.zy-pricing .plan p {
  font-family: "HaasGrotLight";
  font-size: 18px;
  color: var(--text-primary);
  letter-spacing: var(--letter-spacing);
}

.zy-pricing .custom {
  justify-content: flex-start;
  background-color: var(--bg-primary) !important;
}

.zy-pricing .custom h4 {
  font-family: "CentraExtraBold";
  font-size: 60px;
  line-height: 56px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--zy-green-accent);
}

.zy-pricing .custom p {
  font-family: "HaasGrotLight";
  font-size: 18px;
  color: var(--text-white);
  letter-spacing: var(--letter-spacing);
}

.zy-pricing .custom span {
  font-family: "GeneralSans";
  color: var(--zy-green-accent);
  padding-left: 5px;
  line-height: 20px;
}

.zy-pricing .custom .pricing-btn {
  margin-top: auto !important;
}

@media (max-width: 768px) {
  .zy-pricing .custom h4 {
    line-height: 60px;
  }
}

.zy-pricing .info {
  padding: 60px;
  background-color: var(--zy-green-accent);
}

.zy-pricing .info h4 {
  font-family: "CentraExtraBold";
  font-size: 60px;
  line-height: 56px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--text-white);
}

@media (max-width: 768px) {
  .zy-pricing .info h4 {
    line-height: 60px;
  }
}

.zy-pricing .info p {
  font-family: "HaasGrotLight";
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 1.5rem;
  color: var(--text-white);
  letter-spacing: var(--letter-spacing);
}

.zy-pricing .info span {
  font-family: "HaasGrotLight";
  font-size: 14px;
  color: var(--text-white);
  margin-top: auto;
  letter-spacing: var(--letter-spacing);
}

.zy-pricing .pricing-card:hover {
  transform: translateY(-15px);
}

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

.zy-pricing .price small {
  font-size: 16px;
  font-family: "HaasGrotLight";
  color: var(--dark-grey);
}

.zy-pricing img.check-icon {
  width: 25px;
  margin-right: 15px;
}

.zy-pricing li {
  padding-bottom: 10px;
  font-size: 18px;
  color: var(--text-primary);
}

.zy-pricing li span {
  color: var(--bg-primary);
  font-family: "HaasGrotBold";
}

.zy-pricing .old-price {
  margin-top: -5px;
}

.zy-pricing .old-price span {
  text-decoration: line-through;
  font-size: 17px;
  font-family: "GeneralSans";
  color: var(--text-primary);
}

.zy-pricing .old-price small {
  text-decoration: none;
  font-size: 14px;
  font-family: "HaasGrotLight";
  color: var(--text-primary);
}

.zy-pricing .tagline {
  margin-top: auto;
}

.zy-pricing .container {
  padding-top: 115px;
  padding-bottom: 115px;
}

.zy-pricing .mt-mobile-5 {
  margin-top: 0;
}

@media (max-width: 768px) {
  .zy-pricing .mt-mobile-5 {
    margin-top: 2rem;
  }
}

@media (min-width: 1920px) {
  .zy-features .box,
  .zy-features .all-features {
    height: 357.25px !important;
  }
}