@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600&display=swap");
* {
  font-family: "Rubik", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  transition: 0.2s linear;
  text-transform: capitalize;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 8rem;
}

section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.btn {
  display: inline-block;
  margin-top: 2rem;
  border-radius: 5rem;
  cursor: pointer;
  font-size: 1.8rem;
  padding: 1rem 3rem;
  transition: 0.5s;
  box-shadow: 0 0 5px black;
  background-color: #00614A;
  color: white;
}
.btn:hover {
  background-color: white;
  color: #00614A;
  border: 2px solid rgb(6, 26, 6);
}

.heading {
  margin-bottom: 2.5rem;
  text-align: center;
  font-size: 4rem;
  color: #00614A;
  text-transform: uppercase;
}
.heading span {
  text-transform: uppercase;
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: url("../images/plants.jpg");
  background-size: cover;
  background-position-x: 20%;
  background-position-y: 20%;
  width: 100%;
  height: 100vh;
  z-index: -1;
  -webkit-animation: introLoad 2s forwards;
          animation: introLoad 2s forwards;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #00614A;
  box-shadow: 0 0 5px black;
  padding: 0.5rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
header .flex {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .flex .logo {
  width: 9rem;
}
header .flex nav a {
  margin-left: 2rem;
  color: white;
  font-size: 2rem;
  transition: 0.5s;
}
header .flex nav a:hover {
  margin-bottom: 1rem;
  border-bottom: 1px solid white;
}
header .flex nav .calc {
  display: none;
}
header .flex .btn1 {
  margin-right: 1rem;
  border: 2px solid #fff;
  color: #fff;
  font-size: 1.8rem;
  transition: 0.5s;
  border-radius: 5rem;
  padding: 0.9rem;
  font-weight: bold;
}
header .flex .btn1:hover {
  background-color: #fff;
  color: #00614A;
}
header .flex #menu-btn {
  cursor: pointer;
  font-size: 2.5rem;
  display: none;
}

.home {
  margin-top: 25rem;
}
.home .row .content {
  text-align: center;
}
.home .row .content h3 {
  margin-bottom: 5rem;
  font-size: 8rem;
  color: white;
  line-height: 1;
}
.home .row .content a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.7rem;
  font-size: 2rem;
  font-weight: bold;
  border: 2px solid rgb(219, 230, 219);
  box-shadow: none;
  background-color: #00614A;
  color: white;
  border: 2px solid #fff;
}
.home .row .content a:hover {
  background-color: white;
  color: #00614A;
  border: 2px solid #00614A;
}

.steps {
  margin-top: 15rem;
}
.steps .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(27rem, 1fr));
  gap: 3rem;
}
.steps .box-container .box {
  background-color: white;
  border-radius: 0.5rem;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  box-shadow: 0 0 5px black;
}
.steps .box-container .box:hover {
  transform: translateY(-10px);
  cursor: pointer;
  transition: background-color 0.5s;
}
.steps .box-container .box i {
  font-size: 6rem;
  color: #00614A;
}
.steps .box-container .box .content h3 {
  font-size: 3rem;
  color: #00614A;
  margin-bottom: 0.5rem;
}
.steps .box-container .box .content p {
  font-size: 1.8rem;
  color: rgb(47, 44, 44);
  text-transform: none;
}
.steps .calcbtn {
  text-align: center;
  margin-top: 5rem;
}
.steps .calcbtn a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.7rem;
  font-size: 2rem;
  font-weight: bold;
}
.steps .calcbtn a:hover {
  border: none;
}

.about {
  margin-top: 5rem;
}
.about .row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.about .row .image {
  flex: 1 1 40rem;
}
.about .row .image img {
  width: 100%;
}
.about .row .content {
  text-align: center;
  flex: 1 1 40rem;
}
.about .row .content h3 {
  font-size: 2rem;
  color: #00614A;
}
.about .row .content p {
  padding: 1rem 0;
  line-height: 2;
  font-size: 1.6rem;
}

.contact {
  margin-top: 5rem;
}
.contact .row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.contact .row .image {
  flex: 1 1 40rem;
}
.contact .row .image img {
  width: 100%;
}
.contact .row form {
  flex: 1 1 40rem;
  box-shadow: 0 0 5px black;
  padding: 5rem;
}
.contact .row form .inputBox {
  position: relative;
}
.contact .row form .inputBox .box {
  width: 100%;
  margin-top: 1rem;
  margin-bottom: 2rem;
  border-radius: 0.5rem;
  font-size: 1.8rem;
  padding: 1.4rem;
  text-transform: none;
  border: 1px solid #00614A;
}
.contact .row form .inputBox span {
  font-size: 1.6rem;
  color: #00614A;
  position: absolute;
  left: 5%;
  top: 0;
  padding: 0 10px;
  pointer-events: none;
  transition: 0.5s;
  background: white;
}
.contact .row form .inputBox input:valid ~ span, .contact .row form .inputBox input:focus ~ span, .contact .row form .inputBox textarea:focus ~ span {
  transform: translateX(2px) translateY(-1px);
  padding: 0 10px;
  border-left: 1px solid #00614A;
  border-right: 1px solid #00614A;
  letter-spacing: 0.2em;
}
.contact .row form .submitBtn {
  text-align: center;
}
.contact .row form .submitBtn .btn {
  margin-top: 3rem;
}

.footer {
  background-color: #00614A;
  text-align: center;
  padding: 3rem;
  margin-top: 8rem;
  box-shadow: 0 0 5px black;
}
.footer .share a {
  margin: 0 0.7rem;
  height: 5.5rem;
  width: 5.5rem;
  line-height: 5.5rem;
  border: 1px solid white;
  border-radius: 50%;
  font-size: 2.5rem;
  color: white;
  vertical-align: middle;
  transition: 0.5s;
}
.footer .share a:hover {
  background-color: white;
  color: #00614A;
  transform: translateY(-10px);
}
.footer .credit {
  margin-top: 2.5rem;
  padding: 1.5rem;
  padding-top: 2.5rem;
  border-top: 0.1rem solid rgb(204, 201, 201);
  font-size: 1.8rem;
  color: rgb(228, 220, 220);
}
.footer .credit span {
  font-weight: bold;
  padding: 2rem 0;
}

/* media queries  */
@media (max-width: 991px) {
  html {
    font-size: 55%;
  }
  .home .row .content h3 {
    font-size: 8rem;
  }
  .steps {
    margin-top: 20rem;
  }
}
@media (max-width: 768px) {
  header .flex #menu-btn {
    display: inline-block;
    color: #fff;
    font-size: 3rem;
    margin-right: 1rem;
  }
  header .flex #menu-btn.fa-times {
    transform: rotate(180deg);
  }
  header .flex .logo {
    width: 9rem;
  }
  header .flex nav {
    position: absolute;
    top: 110%;
    left: 0;
    right: 0;
    border-top: 0.1rem solid #00614A;
    border-bottom: 0.1rem solid #00614A;
    background-color: #00614a;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    text-align: center;
  }
  header .flex nav a {
    display: block;
    padding: 1rem;
    margin: 1rem 15rem;
    transition: 0.5s;
    color: white;
  }
  header .flex nav a:hover {
    background-color: #00614A;
    color: #fff;
    transform: translateY(-5px);
    font-weight: bold;
    border-bottom: none;
  }
  header .flex nav .calc {
    display: block;
  }
  header .flex .btn1 {
    display: none;
  }
  header .flex nav.active {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  .home .row .content h3 {
    font-size: 5.5rem;
  }
  .steps {
    margin-top: 25rem;
  }
}
@media (max-width: 450px) {
  html {
    font-size: 50%;
  }
  .home .row .content h3 {
    font-size: 4.5rem;
  }
  .heading {
    font-size: 3rem;
  }
  .steps {
    margin-top: 30rem;
  }
}/*# sourceMappingURL=style.css.map */