@import url("../css/reset.css");
html {
  scroll-behavior: smooth;
}

html,
body {
  background: #000000;
}

body {
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  color: #fff;
  font-size: 16px;
  line-height: 150%;
  font-weight: 400;
  overflow-x: hidden;
}

.hr {
  border: none;
  border-bottom: 1px solid rgba(31, 114, 109, 0.2);
}

.nav {
  color: rgba(255, 255, 255, 0.9);
}

.nav li a.active {
  color: #66BA5D;
}

.text-green-gradient {
  background: -webkit-gradient(linear, left top, right top, from(#66BA5D), to(#B8C5B7));
  background: -o-linear-gradient(left, #66BA5D 0%, #B8C5B7 100%);
  background: linear-gradient(90deg, #66BA5D 0%, #B8C5B7 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-green-10-hover:hover {
  background: rgba(102, 186, 93, 0.1);
}

.bg-green-gradient-hover {
  position: relative;
  z-index: 1;
}

.bg-green-gradient-hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, right top, from(#66BA5D), to(#B8C5B7));
  background: -o-linear-gradient(left, #66BA5D 0%, #B8C5B7 100%);
  background: linear-gradient(90deg, #66BA5D 0%, #B8C5B7 100%);
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  opacity: 0;
  z-index: -1;
  border-radius: inherit;
}

.bg-green-gradient-hover:hover::before {
  opacity: 1;
}

.header nav li a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.header nav li a:hover {
  color: #66BA5D;
}

.btn {
  height: 48px;
  padding: 0px 24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.ceo-section {
  background: url(../images/bg-feedback.webp) no-repeat;
  background-size: cover;
  background-position: center;
}

.ceo-box {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}

.contacts-list .contact-item {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contacts-list .contact-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.tagline-box {
  background: url(../images/bg-tagline.webp) no-repeat;
  background-size: cover;
  background-position: center;
}

footer {
  padding: 48px 0 96px;
}

@media (max-width: 768px) {
  .map-pin {
    width: 100%;
    height: 343px;
  }
  footer {
    padding: 24px 0 48px;
  }
}
@media (max-width: 500px) {
  .quote-icon {
    position: absolute;
    top: 48px;
    right: 48px;
  }
}