* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f5f2f2;
}

a {
  text-decoration: none;
}

.logo img {
  margin: 1px 5px 0px 10px;
  float: left;
}

#button-highlight {
  color: #3a9039;
}

.navbar {
  position: fixed;
  background-color: white;
  border-bottom: 3px solid rgb(38, 161, 38);
  width: 100%;
  z-index: 1;
  padding-top: 5px;
  padding-bottom: 4px;
}

.nav-links a {
  float: left;
  text-decoration: none;
  color: black;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 530;
  padding: 12px;
  border: none;
  background-color: white;
}

.nav-links a:hover,
.nav-links button:hover {
  color: #3a9039;
}

.nav-links button {
  float: right;
  text-decoration: none;
  color: black;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 530;
  padding: 12px;
  border: none;
  background-color: white;
}

.menu {
  display: none;
  flex-direction: column;
  font-size: 22px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(0, 0, 0, 0.838);
}

.page-content {
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  position: relative;
  background-color: white;
  box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  margin: 55px 0px 0px 0px;
  padding: 20px 20px 10px 20px;
  width: 50%;
  max-width: 100%
}

@media (max-width: 768px){
    .container{
        width: 100%;
    }
}

@media (max-width: 992px){
    .container{
        width: 100%;
    }
}

@media (max-width: 600px){
    .container{
        width: 100%;
    }
}
h1 {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  margin: 15px 0px 25px 0px;
  color: #2b9829;
}
.card-heading {
  text-align: left;
}

.card {
  background-color: #ffffff;
  border-radius: 10px;
}

.card-heading {
  font-size: 17px;
  font-weight: 600;
  color: #2b9829;
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
}

.card-body p {
  margin-bottom: 10px;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
}

label {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 5px;
}

.footer {
  width: 100%;
  background-image: url("bg.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.footer-content {
  padding: 20px 30px 8px 30px;
  background-color: #242424c2;
}

#contact-us {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 20px;
  font-family: "Poppins", sans-serif;
}

.footer-content p {
  font-size: 13.5px;
  font-family: "Montserrat", sans-serif;
  font-weight: 480;
  margin-bottom: 15px;
  color: white;
}

#location,
#phone,
#email_address {
  font-size: 15px;
  color: #ffd700;
  padding-left: 20px;
}

#credits {
  margin-top: 35px;
  text-align: center;
}

@media (max-width: 600px) {
  .container {
    padding: 30px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: white;
    position: absolute;
    top: 60px;
    left: 0;
    padding: 0px 0px 10px 0px;
    height: fit-content;
    text-align: left;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links.active a,
  .nav-links.active button {
    font-size: 15px;
    text-align: left;
  }
  .menu {
    display: flex;
    font-size: 19px;
  }

  .dropdown-content a {
    font-size: 15px;
  }

  h1 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .card-heading {
    font-size: 15px;
    font-weight: 520;
  }

  .grid-container-services .card-heading {
    font-size: 15px;
    font-weight: 500;
  }

  label {
    font-size: 13.5px;
  }

  .footer-content #footer-heading {
    font-size: 12px;
  }

  .footer-content p {
    font-size: 12px;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    margin-bottom: 5px;
    color: white;
    margin-bottom: 0;
  }
}
