body {
  font-size: 1rem;
  font-family: Montserrat, sans-serif;
  font-weight: 400;
}

h2 {
  font-size: 2rem;
  color: #005e42;
  font-weight: bold;
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.6rem;
  color: #005e42;
  font-weight: bold;
  margin-bottom: 2.2rem;
  position: relative;
}

h2:after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: #005e42;
}

#services h2:after {
  display: none;
}

.read-more {
  color: #005e41;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 5px;
  border-bottom: 2px solid #005e41;
}

header {
  position: fixed;
  top: 2rem;
  left: 0;
  right: 0;
  z-index: 99999;
  background-color: #fff;
  box-shadow: 1px 4px 4px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease-in-out;
}

header.scrolled {
  top: 0;
}

header .header-content {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

header .header-content .header-log {
  margin: -1.2rem 0 -1.7rem 0;
  width: 110px;
  height: 110px;
  transition: all 0.2s ease-in-out;
}

header.scrolled .header-content .header-log {
  margin: 0 0 -2.9rem 0;
}

header .header-content .header-navigation {
  flex: 1;
}

header .header-content .header-navigation ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: end;
}

header .header-content .header-navigation ul a {
  color: #a7a7a7;
  text-decoration: none;
  font-weight: 500;
}
header .header-content .header-navigation ul a.active {
  color: #005e42;
}

header .header-navigation-close,
header .header-navigation-icon {
  cursor: pointer;
}
header .header-navigation-close span,
header .header-navigation-icon span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #005e42;
  margin: 5px 0;
}

header .header-navigation-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10000;
}

header .header-navigation-close span {
  background-color: #fff;
  position: relative;
}
header .header-navigation-close span:first-child {
  transform: rotate(45deg);
  top: 4px;
}
header .header-navigation-close span:last-child {
  transform: rotate(-45deg);
  top: -3px;
}

.main-banner {
  position: relative;
}

.main-banner .background {
  background: #005e41;
  background: -webkit-linear-gradient(
    0deg,
    rgba(0, 94, 65, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  background: -moz-linear-gradient(
    0deg,
    rgba(0, 94, 65, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  background: linear-gradient(
    0deg,
    rgba(0, 94, 65, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#005E41", endColorstr="#FFFFFF", GradientType=0);
  height: 80vh;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.brochure {
  text-decoration: none;
  color: #fff;
  position: absolute;
  right: 10px;
  bottom: 20px;
  z-index: 1;
}

#about-us .about-us-image {
  position: relative;
  z-index: 999;
}

.text-justify {
  text-align: justify;
}

#services {
  background-color: #f3f3f3;
}

#services .card-img {
  border-radius: 0;
}

#services .topic {
  color: #005e41;
  font-weight: bold;
}

footer h2 {
  color: #fff;
}

footer {
  background-color: #005e41;
  color: #ffff;
}

.footer-logo {
  max-width: 100px;
  max-height: 100px;
}

.about-us-card {
  border: 1px solid #4d9881;
  background-color: #4d9881;
  color: #fff;
}
.about-us-card h4 {
  font-size: 16px;
  font-weight: 400;
  margin-top: 1rem;
  margin-bottom: 0.2rem;
}
.about-us-card p {
  font-size: 16px;
  font-weight: 600;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.swiper-button-next,
.swiper-button-prev {
  color: #005e42;
  display: none;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-weight: 600;
  font-size: 18px;
}

.swiper-button-prev {
  left: -30px;
}
.swiper-button-next {
  right: -40px;
}

#sell-in-bulk {
  background: #4d9881;
  color: #fff;
}
#sell-in-bulk h3 {
  color: #fff;
  margin-bottom: 10px;
}
#sell-in-bulk a {
  background: #fff;
  color: #4d9881;
  padding: 15px;
  border: 0;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
}

@media screen and (min-width: 768px) {
  #about-us .about-us-image {
    margin-top: -6rem;
  }
  .swiper-button-next,
  .swiper-button-prev {
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  header .header-navigation {
    position: fixed;
    top: 0;
    right: -120vw;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0);
    z-index: 9999;
    transition: right 0.3s ease-in-out 0.1s,
      background-color 0.1s ease-in-out 0s;
  }
  header .header-content .header-log {
    margin: -1.2rem 0 -1.7rem 0;
    width: 90px;
    height: 90px;
  }
  header .header-navigation ul {
    background-color: #4d9881;
    padding: 30px 20px !important;
    flex-direction: column;
    align-items: start !important;
    height: 100%;
    justify-content: start !important;
    max-width: 250px;
    margin-left: auto !important;
  }
  header .header-content .header-navigation ul a {
    color: #ddd;
  }
  header .header-content .header-navigation ul a.active {
    color: #fff;
  }

  header .header-navigation.active {
    right: 0vw;
    background-color: rgba(0, 0, 0, 0.3);
    transition: right 0.3s ease-in-out 0s,
      background-color 0.3s ease-in-out 0.3s;
  }
}

input[type="file"]::-webkit-file-upload-button {
  height: 56px;
}
.contact-us .form-floating .form-control {
  border: 0.1rem solid #005e42;
  border-radius: 0;
  font-size: 18px;
}

.your-message .form-control {
  min-height: 9rem;
}

.contact-us .send-btn {
  background-color: #4d9881;
  color: #fff;
  padding: 1rem 2.5rem;
  font-weight: 500;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
}

.contact-us .send-btn .send {
  color: #ffffff;
  font-weight: 500;
  font-size: 22px;
}
