html {
  font-size: 1.3rem;
  box-sizing: border-box;
  margin: auto;
  /* Desktops, large screens */
  /* Small screens, laptops */
  /* iPads, Tablets */
}
@media (min-width: 1200px) {
  html {
    max-width: 1700px;
  }
}
@media (max-width: 1024px) {
  html {
    font-size: 1.2rem;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 1.1rem;
  }
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  overflow: hidden;
  overflow-y: auto;
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: normal;
  margin: auto;
  background-color: #ffffff;
  color: #302536;
}

h1 {
  font-weight: 300;
}

h2 {
  font-size: larger;
  font-weight: 500;
}

h3 {
  font-size: inherit;
  font-weight: inherit;
}

b {
  font-weight: 400 !important;
}

button {
  font-family: "Quicksand", sans-serif;
  font-size: 1.3rem;
}

footer {
  background-color: #ffffff;
  width: 100%;
  height: fit-content;
  margin-top: 60px;
}
@media (max-width: 480px) {
  footer {
    margin-top: 30px;
  }
}

a:hover {
  color: #27D038;
}

b {
  font-weight: bolder !important;
}

ul, li {
  list-style-image: url(/src/images/hexagon.svg);
}

.bold-400 {
  font-weight: 400 !important;
}

.bold-500 {
  font-weight: 500;
}

.underline {
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

.text-justified {
  text-align: justify;
}

.section {
  width: 100%;
  padding-left: 200px;
  padding-right: 200px;
  margin: auto;
  /* Desktops, large screens */
  /* Small screens, laptops */
  /* iPads, Tablets */
  /* Mobile devices */
}
@media (max-width: 1199px) {
  .section {
    padding-left: 150px;
    padding-right: 150px;
  }
}
@media (max-width: 1024px) {
  .section {
    padding-left: 100px;
    padding-right: 100px;
  }
}
@media (max-width: 768px) {
  .section {
    padding-left: 70px;
    padding-right: 70px;
  }
}
@media (max-width: 480px) {
  .section {
    padding-left: 30px;
    padding-right: 30px;
  }
}

/* Scene */
.scene {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  opacity: 0.5;
}

.scene .blob-1 path {
  fill: url(#gradient-2);
}

.scene .blob-2 path {
  fill: url(#gradient-1);
}

.scene .blob-3 path {
  fill: url(#gradient-3);
}

.scene .blob-4 path {
  fill: url(#gradient-1);
}

.scene .blob-5 path {
  fill: url(#gradient-2);
}

.scene .blob-6 path {
  fill: url(#gradient-3);
}

.scene path:first-of-type {
  fill-opacity: 0.1;
}

.scene path:nth-of-type(2) {
  fill-opacity: 0.2;
}

.scene path:nth-of-type(3) {
  fill-opacity: 0.3;
}

.scene path:nth-of-type(4) {
  fill-opacity: 0.4;
}

.scene path:nth-of-type(5) {
  fill-opacity: 0.5;
}

.scene path:nth-of-type(6) {
  fill-opacity: 0.6;
}

/* NAVBAR */
.navbar-container {
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 30px;
}

.navbar-logo {
  width: 120px;
  margin-top: 13px;
}

.navbar-logo-link {
  display: block;
  height: fit-content;
  z-index: 4;
}

.navbar-menu-container {
  display: flex;
}
.navbar-menu-container a {
  display: block;
  text-decoration: none;
  color: #302536;
}
.navbar-menu-container a:hover {
  color: #27D038;
}
.navbar-menu-container a.navbar-menu-item-active {
  font-weight: 500;
}
.navbar-menu-container .navbar-menu-item {
  width: fit-content;
  padding: 0.5em 1em;
}

.navbar-right-container {
  width: 575px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.navbar-phone {
  display: flex;
  gap: 0.5em;
  height: fit-content;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: #302536;
  background-image: linear-gradient(to right, #27D038, #AAF02D);
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: 2px 2px 5px rgba(145, 141, 135, 0.5137254902);
}
.navbar-phone:hover {
  background-image: none;
  background-color: #27D038;
  font-weight: 500;
}
.navbar-phone:hover .feather, .navbar-phone:hover p {
  color: #ffffff;
  stroke-width: 2;
}
.navbar-phone p {
  font-size: 1rem;
  margin: 0;
}
.navbar-phone .feather {
  color: #302536;
  height: 24px;
  width: 24px;
  stroke-width: 1.5;
}

.navbar-menu-icon {
  display: none;
}

.navbar-menu-container-responsive {
  display: none;
}

@media (max-width: 991px) {
  .navbar-menu-container {
    display: none;
  }
  .navbar-menu-container.visible {
    background-color: #ffffff;
    display: grid;
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    align-content: start;
    padding-top: 160px;
    padding-left: 100px;
  }
  .navbar-menu-container.visible .navbar-menu-item {
    width: auto;
    font-size: 1.3rem;
    padding: 0.7em 0;
  }
  .navbar-right-container {
    align-items: center;
    justify-content: flex-end;
    width: fit-content;
    gap: 0;
  }
  .navbar-right-container .feather {
    width: 22px;
    height: 22px;
  }
  #burger-menu {
    height: 32px;
    width: 32px;
    display: block;
    margin-left: 50px;
  }
  #close-menu {
    display: none;
    height: 32px;
    width: 32px;
    z-index: 3;
    color: #302536;
  }
  #close-menu.visible {
    display: block;
  }
}
@media (max-width: 768px) {
  .navbar-menu-container.visible {
    padding-left: 70px;
  }
  .navbar-phone {
    display: none;
  }
  .navbar-phone.visible {
    display: flex;
    gap: 10px;
    z-index: 2;
    position: absolute;
    top: 380px;
    left: 0;
    margin-left: 70px;
    width: fit-content;
  }
  .navbar-phone.visible p {
    font-size: 1.3rem;
  }
  .navbar-phone.visible .feather {
    height: 26px;
    width: 26px;
  }
}
@media (max-width: 480px) {
  .navbar-menu-container.visible {
    padding-left: 30px;
  }
  .navbar-phone {
    display: none;
  }
  .navbar-phone.visible {
    display: flex;
    gap: 10px;
    z-index: 2;
    position: absolute;
    left: 0;
    margin-left: 30px;
    width: fit-content;
  }
  .navbar-phone.visible p {
    font-size: 1.3rem;
  }
  .navbar-phone.visible .feather {
    height: 26px;
    width: 26px;
  }
}
/* FOOTER */
.footer-container {
  display: grid;
  grid-template-columns: auto auto auto;
  justify-content: space-between;
  row-gap: 10px;
  column-gap: 30px;
  padding-top: 50px;
  padding-bottom: 50px;
}
.footer-container p {
  margin: 0;
}
@media (max-width: 899px) {
  .footer-container {
    grid-template-columns: auto auto;
  }
  .footer-container .footer-desc {
    grid-area: 2/1;
  }
  .footer-container .footer-name {
    padding-top: 30px;
    grid-area: 3/1;
  }
  .footer-container .footer-contact {
    grid-area: 4/span 2;
  }
  .footer-container .footer-menu-container {
    grid-area: span 2/2;
  }
}
@media (max-width: 480px) {
  .footer-container {
    margin-top: 100px;
  }
}
@media (max-width: 375px) {
  .footer-container {
    grid-template-columns: auto;
    padding-top: 20px;
  }
  .footer-container .footer-logo-link {
    grid-area: 2/1;
  }
  .footer-container .footer-desc {
    grid-area: 3/1;
  }
  .footer-container .footer-name {
    grid-area: 4/1;
  }
  .footer-container .footer-contact {
    grid-area: 5/1;
  }
  .footer-container .footer-menu-container {
    grid-area: 1/1;
  }
}

.footer-logo {
  width: 100px;
  height: 46px;
}

.footer-desc {
  width: 200px;
  grid-area: 2/1;
  font-size: smaller;
}

.footer-menu-container {
  width: 100%;
  height: fit-content;
  display: flex;
  gap: 20px;
  grid-area: span 2/3;
}
.footer-menu-container .navbar-menu-item {
  padding: 0;
}
@media (max-width: 1199px) {
  .footer-menu-container {
    display: grid;
    height: 100%;
    align-content: space-between;
    justify-content: end;
  }
}
@media (max-width: 899px) {
  .footer-menu-container {
    display: flex;
    justify-content: start;
    gap: 20px;
    padding-top: 20px;
  }
}
@media (max-width: 599px) {
  .footer-menu-container {
    display: grid;
  }
}
@media (max-width: 375px) {
  .footer-menu-container {
    display: flex;
    padding-bottom: 20px;
  }
}

.footer-contact {
  display: grid;
  grid-template-columns: auto auto;
  grid-area: 2/2;
  height: 100%;
  align-content: start;
  justify-content: start;
  column-gap: 20px;
  row-gap: 10px;
  font-size: 0.9rem;
}
.footer-contact span {
  font-weight: 600;
}
.footer-contact a {
  text-decoration: none;
  color: #302536;
}

.footer-name {
  font-weight: 600;
}
.footer-name span {
  padding-right: 18px;
}

/* HERO SECTION */
.hero-section {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 90px;
}
@media (max-width: 820px) {
  .hero-section {
    display: block;
    padding-bottom: 30px;
  }
}

.hero-img-container {
  display: flex;
  flex-direction: column;
}

.hero-img {
  vertical-align: middle;
  height: auto;
  max-width: 650px;
  margin: auto auto;
  width: 100%;
  z-index: -1;
}
@media (max-width: 820px) {
  .hero-img {
    width: 100%;
    margin-top: 30px;
  }
}

.hero-text-block {
  width: 35%;
  margin-right: 20px;
}
.hero-text-block h1 {
  margin-bottom: 50px;
}
.hero-text-block span {
  font-weight: 400;
}
@media (max-width: 820px) {
  .hero-text-block {
    width: 100%;
    margin-right: 0;
  }
  .hero-text-block h1 {
    margin-bottom: 0.67em;
  }
}

.hero-button {
  width: fit-content;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.8em 0.8em 0.8em 1em;
  border-radius: 50px;
  border: 1px;
  text-decoration: none;
  background-image: linear-gradient(to right, #27D038, #AAF02D);
  color: #302536;
  box-shadow: 2px 2px 5px rgba(145, 141, 135, 0.5137254902);
  font-weight: 500;
  font-size: 1.1rem;
}
.hero-button:hover {
  background-image: none;
  background-color: #27D038;
  color: #ffffff;
  font-weight: 500;
}
.hero-button:hover .feather {
  color: #ffffff;
  stroke-width: 2;
}
.hero-button .feather {
  height: 22px;
}
@media (max-width: 480px) {
  .hero-button {
    margin-top: 40px;
  }
}

.hero-button:visited {
  color: #302536;
}

/* HOMEPAGE SERVICES */
.services-section {
  display: grid;
  grid-template-columns: 30% 30% 30%;
  row-gap: 80px;
  padding-bottom: 90px;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .services-section {
    grid-template-columns: 45% 45%;
  }
}
@media (max-width: 659px) {
  .services-section {
    grid-template-columns: 100%;
    justify-content: space-evenly;
    align-content: space-evenly;
    row-gap: 60px;
  }
}
@media (max-width: 480px) {
  .services-section {
    row-gap: 40px;
  }
}

.card {
  display: block;
  position: relative;
  height: 100%;
  background-color: #ffffff;
  padding: 2rem 2rem 3rem 2rem;
  border-radius: 20px;
  box-shadow: 5px 5px 10px rgba(145, 141, 135, 0.5137254902);
}
.card:first-child {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .card img {
    width: auto;
    height: 50px;
  }
}

.learn-more {
  opacity: 0;
  position: absolute;
  bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 5px;
  border-bottom: solid 2px #27D038;
  font-weight: 500;
}
.learn-more p {
  margin: 0;
}
.learn-more .feather {
  height: 20px;
}
@media (hover: none) {
  .learn-more {
    opacity: 1;
  }
}

@media (hover: hover) and (pointer: fine) {
  .card:hover {
    background-color: #f0fce1;
  }
  .card:hover .learn-more {
    opacity: 1;
  }
}
.services-section a {
  color: #302536;
  text-decoration: none;
}

.reveal {
  position: relative;
  opacity: 0;
}

.reveal.active {
  opacity: 1;
}

.active.fade-bottom {
  animation: fade-bottom 0.5s ease-in;
}

@keyframes fade-bottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/* SERVICES PAGE */
.services-desc-section {
  padding-top: 60px;
}
@media (max-width: 480px) {
  .services-desc-section {
    padding-top: 0px;
  }
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-top: 30px;
}

/* Style the button that is used to open and close the collapsible content */
.collapsible-header {
  display: flex;
  background-color: #ffffff;
  color: #302536;
  cursor: pointer;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  align-items: center;
  justify-content: space-between;
  background-color: #F5F7F8;
  border-radius: 50px;
  padding: 8px 30px 8px 40px;
}
@media (max-width: 480px) {
  .collapsible-header {
    padding: 8px 20px 8px 20px;
  }
}

.collapsible-title {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.collapsible-title img {
  width: auto;
  height: 45px;
  padding-right: 15px;
}
@media (max-width: 480px) {
  .collapsible-title img {
    width: auto;
    height: 40px;
  }
}

.collapsible-header .feather {
  margin-left: 10px;
}

@media (hover: hover) and (pointer: fine) {
  .collapsible:hover {
    background-color: #f0fce1;
  }
}
.collapsible-active {
  background-color: #F5F7F8;
  border-end-end-radius: 0;
  border-end-start-radius: 0;
}

.collapsible.collapsible-active:hover {
  background-color: #F5F7F8;
}

/* Style the collapsible content. Note: hidden by default */
.collapsible-content {
  display: none;
  overflow: hidden;
  padding: 40px;
  padding-bottom: 60px;
  background-color: #F5F7F8;
  margin-bottom: 30px;
  border-end-end-radius: 50px;
  border-end-start-radius: 50px;
}
.collapsible-content h3 {
  margin: 0;
}
@media (max-width: 480px) {
  .collapsible-content {
    padding: 40px 20px;
  }
}

.blog-link {
  width: fit-content;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  column-gap: 30px;
  row-gap: 20px;
}
.blog-link a {
  white-space: nowrap;
  text-decoration: none;
  color: #302536;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  border: solid 1.5px #27D038;
  padding: 6px 20px;
  border-radius: 50px;
}
.blog-link a:hover {
  background-color: #27D038;
  color: #ffffff;
}
.blog-link .feather {
  stroke-width: 2;
}

/* CONTACT PAGE */
.contact-section {
  display: grid;
  grid-template-columns: 45% 50%;
  height: auto;
  justify-content: space-between;
  align-items: center;
  padding-top: 60px;
  /* Mobile devices */
}
@media (max-width: 480px) {
  .contact-section {
    grid-template-columns: 100%;
    justify-items: center;
    padding-top: 0px;
    row-gap: 20px;
  }
}

.contact-text {
  width: 100%;
  font-weight: 400;
  grid-area: 1/1;
}
.contact-text a {
  text-decoration: none;
  color: #27D038;
}
@media (max-width: 480px) {
  .contact-text {
    text-justify: inter-word;
    grid-area: 1;
  }
}

.contact-form-container {
  display: block;
  width: 100%;
  height: fit-content;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 2px 2px 10px rgba(145, 141, 135, 0.5137254902);
  grid-area: span 2/2;
}
.contact-form-container p {
  display: none;
  font-size: smaller;
  color: #FF3A30;
  padding-bottom: 0.5em;
}
.contact-form-container form > span {
  display: none;
  font-size: small;
  color: #FF3A30;
  margin: 0;
  position: relative;
  top: -14px;
}
@media (max-width: 1024px) {
  .contact-form-container {
    padding: 35px;
  }
}
@media (max-width: 480px) {
  .contact-form-container {
    padding: 35px 25px;
    grid-area: 2;
  }
  .contact-form-container form {
    display: block;
  }
}

.contact-img {
  display: block;
  width: 80%;
  height: auto;
  grid-area: 2/1;
}
@media (max-width: 480px) {
  .contact-img {
    grid-area: 3;
    margin-top: 30px;
  }
}

/* Style inputs with type="text", select elements and textareas */
input[type=text], input[type=tel], input[type=email], select, textarea {
  width: 100%; /* Full width */
  padding: 12px; /* Some padding */
  border: 1px solid #ccc; /* Gray border */
  border-radius: 4px; /* Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-top: 6px; /* Add a top margin */
  margin-bottom: 16px; /* Bottom margin */
  resize: vertical; /* Allow the user to vertically resize the textarea (not horizontally) */
  font-family: inherit;
}
input[type=text]:focus, input[type=tel]:focus, input[type=email]:focus, select:focus, textarea:focus {
  outline: 1px solid black;
  border: none;
}

/* Style the submit button with a specific background color etc */
input[type=submit] {
  background-color: #ffffff;
  color: #302536;
  padding: 0.6em 1.2em;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  border: solid 1.5px #27D038;
}
input[type=submit]:hover {
  background-color: #27D038;
  color: #ffffff;
}

.input-valid {
  outline: 1px solid #27D038;
}

.input-invalid {
  outline: 1px solid #FF3A30;
}

.contact-schedule {
  font-size: larger;
  margin-top: 80px;
}

.terms-and-conds, .policy {
  padding-top: 60px;
}
.terms-and-conds a, .policy a {
  color: #302536;
  text-decoration-color: #27D038;
  font-weight: bolder;
}
.terms-and-conds .notice, .policy .notice {
  padding-bottom: 30px;
  font-weight: 600;
}
@media (max-width: 480px) {
  .terms-and-conds, .policy {
    padding-top: 0px;
  }
}

.contact-box {
  width: fit-content;
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 10px;
}
@media (max-width: 480px) {
  .contact-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

.footer-band {
  display: flex;
  margin: 0;
  padding-bottom: 10px;
  font-size: 0.8rem;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-band p {
  margin: 0;
  margin-right: 60px;
  padding-top: 5px;
}
.footer-band a {
  color: #302536;
  text-decoration: none;
  padding: 5px 0px 5px 10px;
}
.footer-band a:hover {
  color: #27D038;
}
@media (max-width: 480px) {
  .footer-band a {
    padding: 2px 10px 2px 0px;
  }
}
.footer-band > div {
  display: flex;
  justify-content: flex-end;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .footer-band > div {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    padding-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .footer-band {
    flex-direction: column-reverse;
  }
}/*# sourceMappingURL=style.css.map */