@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@media (max-width: 1279px) {
  .top-menu {
    position: fixed;
    width: 320px;
    background-color: #0f766e;
    left: 0;
    top: 0;
    height: 100%;
    overflow: hidden;
    z-index: 999;
    transform: translate(-100%);
    transition: all 0.5s ease;
  }
  .top-menu.active {
    transform: translate(0%);
  }
}
@media (max-width: 639px) {
  .top-menu {
    width: 100%;
  }
}
@media (max-width: 1279px) {
  .top-menu .menu-main {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    padding-bottom: 17.5rem;
    background-color: #0f766e;
  }
}
.top-menu > ul > li {
  display: inline-block;
  padding: 1.6rem 0;
  position: relative;
  margin-right: 1.5rem;
}
.top-menu > ul > li:last-child {
  margin-right: 0;
}
@media (max-width: 1279px) {
  .top-menu > ul > li {
    display: block;
    padding: 0;
    margin-right: 0;
  }
}
.top-menu > ul > li:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background-color: #D8992C;
  transition: all 0.3s ease;
}
.top-menu > ul > li:hover:before {
  width: 100%;
}
@media (max-width: 1279px) {
  .top-menu > ul > li:hover:before {
    width: 0;
  }
}
.top-menu > ul > li.active:before {
  width: 100%;
}
@media (max-width: 1279px) {
  .top-menu > ul > li.active:before {
    width: 0;
  }
}
.top-menu > ul > li > a {
  display: inline-block;
  font-weight: normal;
  color: #ffffff;
}
@media (max-width: 1279px) {
  .top-menu > ul > li > a {
    display: flex;
    padding: 1rem 1rem;
    border-bottom: 1px solid #115e59;
    background-color: #0f766e;
  }
}

.pulse-btn {
  animation: pulse 3s linear infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(57, 181, 74, 0.7);
  }
  40% {
    box-shadow: 0 0 0 10px rgba(57, 181, 74, 0);
  }
  80% {
    box-shadow: 0 0 0 10px rgba(57, 181, 74, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(57, 181, 74, 0);
  }
}
.mobile-menu-trigger {
  display: none;
}
@media (max-width: 1279px) {
  .mobile-menu-trigger {
    display: inline-flex;
  }
}

@media (max-width: 1279px) {
  .mobile-menu-head {
    height: 175px;
    position: relative;
  }
}

.mobile-nav-items {
  background-color: #f1f5f9;
  color: #475569;
  font-weight: 400 !important;
}

.menu-overlay {
  display: none;
}
@media (max-width: 1279px) {
  .menu-overlay {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 499;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease;
  }
  .menu-overlay.active {
    visibility: visible;
    opacity: 1;
  }
}

.quote-card {
  position: relative;
  background-color: rgb(13 148 136);
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-top: 2rem;
}

.quote-card::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border: solid 12px transparent;
  border-top-color: rgb(13 148 136);
  bottom: -1.5rem;
  left: 2rem;
}

.quote-text {
  color: white;
  font-style: italic;
  font-size: 1.125rem;
  line-height: 1.75;
  text-align: center;
}
