* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: "Black Ops One", system-ui;
  font-weight: 400;
  font-style: normal;
}
button {
  cursor: pointer;
}
body {
  font-family: "Manrope", sans-serif;
  background-color: #ffffff;
}
nav {
  position: fixed;
  z-index: 50;
  top: 0;
  height: 60px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  background-color: #ffffff;
}

nav img {
  width: 150px;
  height: 100%;
  object-fit: contain;
  filter: contrast(80%);
}

nav .nav-btns {
  display: flex;
  gap: 1rem;
}

nav .nav-btns button {
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  color: white;
  background-color: #4e9e1c;
}

nav .nav-btns button p {
  display: none;
}
nav .nav-btns button img {
  width: 25px;
  filter: invert(1);
}

.hero-section {
  position: relative;
  padding: 2rem;
  margin-top: 60px;
  overflow: hidden;
}
.hero-canvas {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.hero-canvas img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.3;
  animation: rotation 30s linear infinite;
}

.hero-bg {
  position: absolute;
  /* border: 1px solid; */
  width: 100%;
  height: 520px;
  background-color: white;
  background: radial-gradient(
    circle,
    rgba(150, 234, 99, 0.4158438375350141) 41%,
    rgba(249, 249, 249, 1) 76%,
    rgba(255, 255, 255, 1) 100%
  );
  top: -40px;
  left: 0;
}

.hero {
  position: relative;
}
.hero .hero-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.hero .hero-btns button {
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  background: #ffffff;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  border: 1px solid #4e9e1c;
}

.hero .hero-btns .primary {
  background-color: #4e9e1c;
  border: none;
  color: #ffffff;
}

.img-container {
  display: flex;
  justify-content: center;
  margin: 4rem 0;
  animation: bouncing 4s linear infinite;
}
.hero h1 {
  font-size: 50px;
  line-height: 45pt;
  text-align: center;
  padding-top: 50px;
}

.hero h1 br {
  display: none;
}

.hero p {
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  text-align: center;
  margin-top: 2rem;
}

.services-section {
  margin-top: 4rem;
}

.services-section h3 {
  text-align: center;
}
.services-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  margin-top: 2rem;
}

.service {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  width: 300px;
}

.service .service_head {
  display: flex;
  flex-direction: row;
  /* justify-content: center; */
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.service p {
  font-size: 14px;
}

.service .service_head img {
  width: 35px;
  height: 35px;
}

.service .service_head h3 {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
}

.fixes-section {
  margin-top: 4rem;
  padding: 2rem;
}

.fixes-section h3 {
  text-align: center;
}

.fixes-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.fix-card {
  border: 0.5px solid #c2c2c2;
  border-radius: 0.7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0;
  gap: 0.4rem;
}
.fix-card h3 {
  font-size: 15px;
}
.fix-card p {
  text-align: center;
  font-size: 12px;
  width: 80%;
}

.fix-card button {
  background-color: #4e9e1c;
  border: none;
  padding: 0.3rem 1rem;
  border-radius: 0.5rem;
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
}

.extras {
  padding: 2rem;
}
.extras h5 {
  font-size: 16px;
  text-align: center;
  margin-bottom: 2rem;
}
.extras img {
  margin: 0 auto;
  animation: pulse 6s linear infinite;
}
.footer-section {
  margin-top: 4rem;
  padding: 2rem;
}
.footer-container {
  /* border: 1px solid; */
  padding: 2rem;
  border-radius: 1.5rem;
  background: rgb(97, 196, 36);
  background: linear-gradient(
    90deg,
    rgba(120, 211, 63, 0.516) 21%,
    rgb(221, 243, 206) 54%,
    rgba(255, 255, 255, 1) 100%
  );
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.footer-container .logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}
.footer-container .logo-container img {
  filter: contrast(80%);
}
.footer-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 1rem auto;
}
.footer-btns button {
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  background: #ffffff;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  border: 1px solid #4e9e1c;
}

.footer-btns .primary {
  background-color: #4e9e1c;
  border: none;
  color: #ffffff;
}
.footer_base {
  text-align: center;
  color: #3c3c3c;
  font-size: 12px;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1000px) {
  nav {
    height: 100px;
  }
  nav .nav-btns button {
    width: fit-content;
    padding: 0 1rem;
    gap: 1rem;
  }
  nav .nav-btns button p {
    display: block;
    font-size: 1rem;
  }
  .hero-section {
    margin-top: 100px;
  }
  .hero-bg {
    position: absolute;
    /* border: 1px solid; */
    width: 100%;
    height: 420px;
    background-color: white;
    background: radial-gradient(
      circle,
      rgba(150, 234, 99, 0.2158438375350141) 41%,
      rgba(249, 249, 249, 1) 56%,
      rgba(255, 255, 255, 1) 100%
    );
    top: -20px;
    left: 0;
  }
  .hero h1 {
    font-size: 70px;
    line-height: 55pt;
    text-align: center;
    padding-top: 50px;
  }
  .hero h1 br {
    display: block;
  }
  .services-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 4rem;
  }
  .services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .service {
    width: fit-content;
  }
  .service .service_head img {
    width: 40px;
    height: 40px;
  }
  .service .service_head h3 {
    font-size: medium;
  }
  .fixes-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 4rem;
  }

  .fixes-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .fix-card {
    padding: 1.5rem 0;
    gap: 1rem;
  }
  .fix-card h3 {
    font-size: 18px;
  }
  .fix-card p {
    font-size: 16px;
  }

  .fix-card button {
    font-size: 16px;
  }
  .footer-section {
    margin: 4rem auto 0;
    padding: 4rem;
    max-width: 1440px;
  }
  .footer-container p {
    text-align: center;
  }
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes bouncing {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.4;
  }
}
