@font-face {
  font-family: "Power Grotesk Trial";
  src: url("../fonts/PowerGrotesk-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

body {
  box-sizing: border-box;
  margin: 0;
  overflow-x: hidden;
  padding: 0;
}

.phone {
  color: #fff;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.phone span {
  font-size: 20px;
  font-weight: 700;
}

a {
  text-decoration: none;
  cursor: pointer;
}

a:hover {
  text-decoration: none;
  color: white;
}

.img-fluid,
img,
picture img,
figure img {
  border-radius: 16px;
}

/* Exceptions: keep logos square */
img.logo-img,
.logo-img img {
  border-radius: 0 !important;
}
img.logo {
  border-radius: 0 !important;
}

.text-green {
  color: #a0dd43;
}

/* Phone icon circle */
.phone .fa {
  height: 56px;
  width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: #6e903a;
  font-size: 26px;
  transition: all 0.3s ease;
}

/* Hamburger button */
.burgericon {
  color: #a0dd43;
  font-family: Poppins;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  background: none;
  border: none;
  padding: 0;
  outline: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.burgericon:focus-visible {
  outline: 2px solid #a0dd43;
  outline-offset: 4px;
  border-radius: 4px;
}

/* Burger circle */
.burger {
  height: 56px;
  width: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: #6e903a;
  position: relative;
  transition: background-color 0.3s ease;
}

/* Burger lines */
.burger-line {
  display: block;
  width: 20px;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.25s ease;
}

.burger-line--top {
  transform: translateX(-50%) translateY(-7px);
}

.burger-line--middle {
  transform: translateX(-50%) translateY(0);
}

.burger-line--bottom {
  transform: translateX(-50%) translateY(7px);
}

/* Hamburger to X animation */
.burgericon.is-active .burger-line--top {
  transform: translateX(-50%) translateY(0) rotate(45deg);
}

.burgericon.is-active .burger-line--middle {
  opacity: 0;
  transform: translateX(-50%) scaleX(0);
}

.burgericon.is-active .burger-line--bottom {
  transform: translateX(-50%) translateY(0) rotate(-45deg);
}

.burgericon.is-active .burger {
  background-color: #a0dd43;
}

.burgericon:hover {
  color: #fff;
}

.burgericon:hover .burger {
  background-color: #a0dd43;
}

/* Full menu overlay */
#fullMenu {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #1a3e28;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 9999;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.35s ease,
              visibility 0s linear 0.45s;
}

#fullMenu.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.35s ease,
              visibility 0s linear 0s;
}

/* Menu backdrop */
.menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease,
              visibility 0s linear 0.4s;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.menu-backdrop.active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease,
              visibility 0s linear 0s;
}

/* Close button */
.cross {
  position: absolute;
  top: 50px;
  right: 50px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 12px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: transform 0.3s ease;
}

.cross:hover {
  transform: rotate(90deg);
}

.cross:focus-visible {
  outline: 2px solid #a0dd43;
  outline-offset: 4px;
  border-radius: 4px;
}

.cross-line {
  position: absolute;
  width: 24px;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
}

.cross-line--1 {
  transform: rotate(45deg);
}

.cross-line--2 {
  transform: rotate(-45deg);
}

/* Scroll lock */
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

/* Staggered entrance animation */
#fullMenu.active .rightMenu > nav > ul > li {
  animation: menuItemSlideIn 0.4s ease forwards;
  opacity: 0;
}

#fullMenu.active .rightMenu > nav > ul > li:nth-child(1) { animation-delay: 0.08s; }
#fullMenu.active .rightMenu > nav > ul > li:nth-child(2) { animation-delay: 0.14s; }
#fullMenu.active .rightMenu > nav > ul > li:nth-child(3) { animation-delay: 0.20s; }
#fullMenu.active .rightMenu > nav > ul > li:nth-child(4) { animation-delay: 0.26s; }
#fullMenu.active .rightMenu > nav > ul > li:nth-child(5) { animation-delay: 0.32s; }

@keyframes menuItemSlideIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Focus styles for menu elements */
.rightMenu ul li a:focus-visible {
  outline: 2px solid #a0dd43;
  outline-offset: 2px;
  border-radius: 3px;
}

.icons a:focus-visible {
  outline: 2px solid #a0dd43;
  outline-offset: 4px;
  border-radius: 50%;
}

.rightMenu {
  padding: 130px 100px;
}

.menuLeft {
  min-height: 100vh;
  background: lightgray url("../images/menuLeft.png") center / cover no-repeat;
}

li {
  list-style: none;
}

.rightMenu ul li a {
  color: #fff;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.rightMenu ul li a:hover {
  color: #a0dd43;
}

.hero {
  background: url("../images/herobg.png") top center / 100% 80% no-repeat;
}

.heroCollage {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 992 / 934;
  display: block;
  position: relative;
  min-height: 360px;
  margin-left: auto;
}

.heroCollage__circle {
  position: absolute;
  border-radius: 50%;
  border: 22px solid #fff;
  box-shadow: -7px 18px 26.5px 0 rgba(0, 0, 0, 0.25);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.heroCollage__circle--left {
  width: 70%;
  height: 84%;
  left: 0;
  bottom: 0;
  background-image: url("../images/20.jpg");
}

.heroCollage__circle--right {
  width: 58%;
  height: 70%;
  right: 2%;
  top: 6%;
  background-image: url("../images/nuevaplan.png");
}

.heroCollage__cta {
  position: absolute;
  right: 0;
  bottom: 12%;
  padding: 18px 34px;
  border-radius: 80px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

@media (max-width: 576px) {
  .heroCollage {
    max-width: 420px;
    margin-left: 0;
    margin-right: auto;
    min-height: 280px;
  }
  .heroCollage__circle {
    border-width: 14px;
  }
  .heroCollage__cta {
    bottom: 8%;
    padding: 14px 22px;
  }
}

button,
.button {
  font-size: 20px;
  padding: 10px 20px;
}

.greenBtn {
  color: #fff;
  font-family: Poppins;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  border-radius: 29.5px;
  background: #0a863a;
  transition: all 0.3s ease;
}

.greenBtn:hover {
  background: #0b9b44;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(10, 134, 58, 0.4);
}

.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: auto;
}


.prof {
  color: #fff;
  font-family: Poppins;
  font-size: 15px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  border-radius: 25.5px;
  border: 1px solid #a0dd43;
  background: rgba(160, 221, 67, 0.2);
  padding: 6px 10px;
}

.w-max-content {
  width: max-content;
}

.h-max-content {
  height: max-content;
}
.serv {
  padding: 100px 0px;
}

/* Serving All Property Types - layout refinements */
.serv h3 {
  text-align: center;
  margin-bottom: 20px;
}

.serv .resid {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  padding: 32px 40px;
  border-radius: 32px;
  box-shadow: 0 8px 28px rgba(10, 134, 58, 0.18);
}

.serv .resid .removal {
  font-size: 30px;
}

.serv .comm {
  margin-top: 28px;
}

.serv .comm .removal {
  font-size: 26px;
}

.serv .broken-line {
  width: 50%;
}

@media (max-width: 992px) {
  .serv .resid {
    max-width: 100%;
    padding: 24px 24px;
    border-radius: 28px;
  }
  .serv .resid .removal {
    font-size: 24px;
  }
  .serv .comm .removal {
    font-size: 20px;
  }
  .serv h3 {
    margin-bottom: 16px;
  }
  .serv .broken-line {
    width: 60%;
  }
}

h1 {
  color: #fff;
  font-family: "Power Grotesk Trial";
  font-size: 74px;
  font-style: normal;
  letter-spacing: 2px;
  font-weight: 800;
  line-height: 1;
}
.resid {
  border-radius: 57px;
  background: #0a863a;
  padding: 40px 60px;
  text-align: center;
  transition: all 0.3s ease;
}

.resid:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(10, 134, 58, 0.3);
}

h2 {
  color: #fff;
  font-family: Poppins;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
}
.width-75 {
  width: 75%;
}
h4 {
  color: #fff;
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.3;
}

/* Global paragraph styling for improved readability */
p {
  font-family: Poppins;
  font-size: 15px;
  line-height: 1.7;
}

.leaf1 {
  position: absolute;
  top: -70px;
  left: -70px;
}

.leaf2 {
  position: absolute;
  bottom: -70px;
  right: -70px;
}

.professional h4,
.special h4 {
  color: rgba(30, 30, 30, 1);
}

.comm h4 {
  color: rgba(30, 30, 30, 1);
  font-weight: 400;
}

.professional {
  padding-bottom: 100px;
  background: url("../images/profBg.png") bottom center / 100% 90% no-repeat;
}

.removal {
  color: #1e1e1e;
  font-family: "Power Grotesk Trial";
  font-size: 36px;
  font-style: normal;
  letter-spacing: 2px;
  font-weight: 800;
  line-height: normal;
}

.our {
  color: #1e1e1e;
  font-family: Poppins;
  font-size: 15px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  padding: 7px 30px;
  border-radius: 25.5px;
  border: 1px solid #a0dd43;
  background: rgba(160, 221, 67, 0.2);
}

.years {
  color: #1e1e1e;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}
.bigGreen {
  color: #fff;
  font-family: "Power Grotesk Trial";
  font-size: 64px;
  font-style: normal;
  letter-spacing: 2px;
  font-weight: 800;
  line-height: normal;
  border-radius: 94.5px;
  background: #0a863a;
  width: 150px;
  height: 150px;
}

.lines {
  overflow: hidden;
  white-space: nowrap;
  padding: 100px 0px 0px;
}

.isa-rotate {
  background: #dfeec8;
  transform: rotate(2.611deg);
}
h3 {
  color: #1e1e1e;
  text-align: center;
  font-family: "Power Grotesk Trial";
  font-size: 48px;
  font-style: normal;
  letter-spacing: 2px;
  font-weight: 800;
  line-height: 1.2;
}

.isa,
.tree {
  display: flex;
  width: max-content;
  animation: ticker 18s linear infinite;
  padding: 30px 0;
}

.tree {
  animation: ticker 18s linear infinite reverse;
}

.imageTree {
  border-radius: 253px;
  border: 20px solid #fff;
  background: lightgray url("../images/tree1.png") center / cover no-repeat;
  height: 400px;
  width: 400px;
  box-shadow: -7px 18px 26.5px 0 rgba(0, 0, 0, 0.25);
  transition: all 0.4s ease;
}

.imageTree:hover {
  transform: scale(1.05);
  box-shadow: -7px 18px 40px 0 rgba(0, 0, 0, 0.35);
  border-color: #a0dd43;
}
.imageTree2 {
  background: lightgray url("../images/tree2.png") center / cover no-repeat;
}

.imageTree3 {
  background: lightgray url("../images/tree3.jpg") center / cover no-repeat;
}
.imageTree4 {
  background: lightgray url("../images/tree4.png") center / cover no-repeat;
}
.imageTree5 {
  background: lightgray url("../images/m.jpeg") center / cover no-repeat;
}
.imageTree6 {
  background: lightgray url("../images/tree6.jpg") center / cover no-repeat;
}

.isa span {
  color: #0a863a;
  font-family: Poppins;
  font-size: 40px;
  font-weight: 800;
  padding-right: 80px;
}

.tree-rotate {
  transform: rotate(-6.919deg);
  background: #1a3e28;
  position: relative;
  top: -100px;
  z-index: -1;
  width: 120%;
  left: -10%;
}

.tree span {
  color: #fff;
  font-family: Poppins;
  font-size: 40px;
  font-weight: 800;
  padding-right: 80px;
}

.icons i {
  color: rgba(160, 221, 67, 1);
  font-size: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.icons i:hover {
  color: #fff;
  transform: scale(1.15);
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.proud {
  border-radius: 369.5px;
  background:
    linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.38) 0%,
      rgba(255, 255, 255, 0.38) 100%
    ),
    url("../images/proudBg.png") lightgray -0.464px 0px / 100.053% 117.116%
      no-repeat;
  padding: 150px 0px 100px;
}

.riskCard {
  padding: 25px 35px;
  border-style: solid;
  border-color: #0a863a;
  border-width: 2px 0 2px 4px;
  border-radius: 49px 0px 0px 49px;
  transition: all 0.3s ease;
}

.riskCard:hover {
  transform: translateX(-8px);
  box-shadow: 8px 8px 25px rgba(10, 134, 58, 0.15);
  border-color: #a0dd43;
}

.learnBtn {
  color: #1a3e28;
  font-family: Poppins;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  transition: all 0.3s ease;
}

.learnBtn:hover {
  color: #0a863a;
  transform: translateX(5px);
}

.learnBtn:hover svg path {
  fill: #0a863a;
}

.moreBtn {
  color: #0a863a;
  font-family: Poppins;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  border-radius: 29.5px;
  background: #fff;
  border: 2px solid white;
  transition: all 0.3s ease;
}
.broken-line {
  border: none;
  border-top: 2px dashed #0a863a;
  width: 50%;
  margin: 20px auto;
}

.moreBtn:hover {
  background-color: #0a863a;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(10, 134, 58, 0.3);
}

.googleStars {
  color: var(--dark, #2a251d);
  font-family: Poppins;
  font-size: 20.01px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.icons .fa {
  font-size: 20px;
  color: #ffc430;
}

.cust {
  padding: 50px 0px 100px;
}

.cust .name {
  color: #1a1a1a;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 125% */
}

.reviewCard h4 {
  color: #1a1a1a;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 125% */
}

.reviewCard {
  border-radius: 16px;
  border: 0.5px solid #2a251d;
  padding: 24px;
  transition: all 0.3s ease;
}

.reviewCard:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border-color: #0a863a;
}

.reviewCard .dateTime {
  color: rgba(0, 0, 0, 0.5);
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px; /* 125% */
}

footer {
  background: url("../images/footerBg.png") center / cover no-repeat;
  padding-bottom: 50px;
}

.logo-img {
  position: relative;
  top: -60px;
}

.lets {
  color: var(--WHITE-WHITE, #fff);
  font-family: Poppins;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.whether {
  color: var(--WHITE-WHITE, #fff);
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.footerAdd {
  color: var(--WHITE-WHITE, #fff);
  font-family: Poppins;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 117%; /* 29.25px */
  letter-spacing: -0.25px;
}

.footerAdd .fa {
  color: #a0dd43;
  font-size: 25px;
}

footer .googleStars {
  color: var(--WHITE-WHITE, #fff);
  font-family: Poppins;
  font-size: 20.01px;
  font-style: normal;
  font-weight: 700;
  line-height: 109%; /* 21.811px */
  letter-spacing: 0.2px;
}

footer .googleStars .icons .fa {
  color: #a0dd43;
  font-size: 20px;
}
.freeEstimate {
  width: 90%;
  text-align: center;
  font-family: Inter;
  font-size: 34.488px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #fcffe2;
}

.freeEstimate span {
  color: #a0dd43;
  font-weight: 700;
}

.footer-contact {
  border-radius: 52.224px;
  background: var(--DARK-DARK-40, rgba(0, 0, 0, 0.4));
  padding: 50px 30px;
  transition: all 0.3s ease;
}

.footer-contact:hover {
  background: rgba(0, 0, 0, 0.55);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.footer-contact label {
  font-family: Poppins;
  font-size: 15.766px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 15.766px */
  letter-spacing: -0.788px;
  text-transform: capitalize;
  background: var(--Gradient3, linear-gradient(0deg, #d5f2ff 0%, #fcffe2 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 5px;
}

.footer-contact input,
.footer-contact textarea {
  border: none;
  border-bottom: 3.941px solid var(--Gradient3, #d5f2ff);
  background-color: transparent;
  padding: 2px 7px;
  color: white;
  margin-bottom: 20px;
}

.footer-contact .greenBtn {
  font-size: 17px;
}

.policy {
  color: #fff;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 23.1px; /* 165% */
}

.serv-risk-text {
  color: #1e1e1e;
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.sevice-risk li {
  color: #1e1e1e;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  list-style: disc;
  margin-left: 15px;
}

@media (max-width: 1600px) {
  /* Large screens */

  .serv-risk-text {
    font-size: 20px;
  }

  .removal {
    font-size: 30px;
  }

  .bigGreen {
    font-size: 55px;
  }
  .phone,
  .burger-label,
  .footer-contact label,
  .footer-contact .greenBtn,
  .policy {
    font-size: 14px;
  }
  .phone span,
  button,
  .button,
  .years,
  .googleStars,
  .whether,
  footer .googleStars,
  footer .googleStars .icons .fa {
    font-size: 16px;
  }
  .phone .fa {
    font-size: 24px;
    height: 52px;
    width: 52px;
  }
  .burger {
    height: 52px;
    width: 52px;
  }

  h1 {
    font-size: 66px;
  }
  h2,
  .footerAdd .fa,
  .footerAdd {
    font-size: 20px;
  }

  h3 {
    font-size: 42px;
  }

  h4 {
    font-size: 17px;
  }

  .isa span {
    font-size: 32px;
  }

  .rightMenu ul li a {
    font-size: 20px;
  }

  .cust .name,
  .reviewCard h4,
  .sevice-risk li {
    font-size: 14px;
  }

  .reviewCard .dateTime {
    font-size: 10px;
  }

  .lets,
  .freeEstimate {
    font-size: 28px;
  }
}
@media (max-width: 1200px) {
  h1 {
    font-size: 50px;
  }

  h2,
  .footerAdd .fa,
  .footerAdd {
    font-size: 18px;
  }

  h3 {
    font-size: 34px;
  }

  h4 {
    font-size: 15px;
  }

  .removal {
    font-size: 26px;
  }

  .isa span,
  .tree span {
    font-size: 28px;
  }

  .bigGreen {
    font-size: 45px;
    height: 130px;
    width: 130px;
  }

  .years {
    font-size: 14px;
  }

  .imageTree {
    height: 300px;
    width: 300px;
  }

  .proud {
    border-radius: 120px;
    padding: 100px 20px 80px;
  }

  .riskCard {
    padding: 20px 25px;
    border-radius: 35px 0px 0px 35px;
  }

  .lines {
    padding: 70px 0px 0px;
  }

  .serv {
    padding: 60px 0px;
  }

  .lets,
  .freeEstimate {
    font-size: 24px;
  }

  .freeEstimate {
    width: 100%;
  }

  .leaf1 {
    height: 250px;
    top: -60px;
  }

  .leaf2 {
    height: 250px;
    right: 0px;
    bottom: -60px;
  }

  .rightMenu ul li a {
    font-size: 18px;
  }

  .rightMenu {
    padding: 130px 80px;
  }

  .whether {
    font-size: 15px;
  }

  .googleStars,
  footer .googleStars {
    font-size: 16px;
  }

  .professional {
    padding-bottom: 60px;
  }
  .sevice-risk {
    position: relative !important;
    width: 100% !important;
    bottom: 0px !important;
  }
  .special {
    padding: 0px 10px !important;
  }
}
@media (max-width: 992px) {
  .leaf2 {
    height: 200px;
    bottom: -50px;
    right: 0px;
  }
  .leaf1 {
    height: 200px;
    top: -80px;
    left: -50px;
  }

  h3 {
    font-size: 24px;
  }
  h1 {
    font-size: 38px;
  }
  h2,
  .footerAdd .fa,
  .footerAdd {
    font-size: 15px;
  }
  .rightMenu {
    padding: 150px 70px;
  }
  .rightMenu ul li a {
    font-size: 16px;
  }
  .width-75 {
    width: 100%;
  }
  .hero {
    background: url("../images/hero-bg-2.png") top center / 100% 70% no-repeat;
  }
  .bigGreen {
    font-size: 40px;
    height: 120px;
    width: 120px;
    text-align: center;
  }
  .years {
    text-align: center;
  }
}
@media (max-width: 767px) {
}
