:where([class^="ri-"])::before {
  content: "\f3c2";
}
.animate-fade-in {
  animation: fadeIn 0.8s ease-in-out forwards;
}
.animate-slide-in-left {
  transform: translateX(-30px);
  animation: slideInLeft 0.8s ease-in-out forwards;
}
.animate-slide-in-right {
  transform: translateX(30px);
  animation: slideInRight 0.8s ease-in-out forwards;
}
.animate-fade-up {
  transform: translateY(20px);
  animation: fadeUp 0.8s ease-in-out forwards;
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
@keyframes slideInLeft {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideInRight {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.nav-item {
  position: relative;
}
.nav-item::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  /* #00b8a9 */
  background-color: #f47c57;
  transition: width 0.3s ease;
}
.nav-item:hover::after {
  width: 100%;
}
.swiper-bg1 {
  background-image: linear-gradient(
      to right,
      rgba(26, 43, 94, 0.9),
      rgba(26, 43, 94, 0.75)
    ),
    url(../images/banner1.jpg);
  background-size: cover;
  background-position: center;
}
.banner-bg {
  background-image: linear-gradient(
      to right,
      rgba(26, 43, 94, 0.9),
      rgba(26, 43, 94, 0.75)
    ),
    url(../images/banner_bg.jpg);
  background-size: cover;
  background-position: center;
}
.text-limit-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}
.contact-section {
  background-image: linear-gradient(
      to right,
      rgba(26, 43, 94, 0.9),
      rgba(26, 43, 94, 0.8)
    ),
    url("../images/home_contact.jpg");
  background-size: cover;
  background-position: center;
}

.form-group.error input,
.form-group.error textarea {
  border-color: #ec0008;
}
.form-group.error .error-message {
  display: block;
}
