.about-card {
  position: relative;
  top: -200px;
  margin-bottom: -120px;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0px 4px 100px 4px #00000059;
}

.about-card .header {
  gap: 15px;
  padding: 20px 0 0 0;
}

.about-card .about-left-title {
  font-size: 40px;
  letter-spacing: 2px;
  font-weight: 700;
}

.about-card .body {
  padding: 10px 40px;
}

.about-card .about-text {
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 0 20px;
  color: #000;
}

.about-card .about-right-title {
  margin-bottom: 0;
  padding-left: 20px;
  font-size: 20px;
  font-weight: 700;
}

.about-card .body ul {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.about-card .body ul li {
  font-size: 16px;
  font-weight: 700;
  transition: all 0.1s ease-in-out;
}

.about-card .body ul li:hover {
  transform: translate(3px, -3px);
}

.about-card .body ul li.active {
  color: #3b69e2;
}

.about-who-we {
  font-size: 27px;
  font-weight: 700;
}

.about-paragraph p {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 1200px) {
  .about-card .body {
    padding: 10px 30px;
  }

  .about-card .body ul li {
    font-size: 13px;
  }
}

@media (max-width: 991px) {
  .col-12.col-lg-3 .about-card {
    top: 0;
    margin: 15px 0 50px 0;
  }

  .about-card .body ul li {
    font-size: 16px;
  }

  .about-card .body {
    padding: 20px 40px;
  }
}
