body {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:where([class^="ri-"])::before {
  content: "\f3c2";
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-fade-in {
  animation: fadeIn 0.8s ease forwards;
  opacity: 0;
}
.delay-100 {
  animation-delay: 0.1s;
}
.delay-200 {
  animation-delay: 0.2s;
}
.delay-300 {
  animation-delay: 0.3s;
}
.delay-400 {
  animation-delay: 0.4s;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}
.team-member:hover img {
  transform: scale(1.05);
}
.partner-logo:hover {
  transform: scale(1.05);
}
#logo,
#logo2 {
  margin: 0;
  padding: 0;
}
input:focus,
textarea:focus {
  border-color: #1a365d;
  box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.2);
}
.bg-cover {
  background-color: rgba(51, 51, 51, 0.2);
  /* background-color: rgba(153, 38, 85, 0.2); */
}
.indent-7x {
  text-indent: 7rem;
}
