.sec-esb-three-card-service__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 32px;
  margin: 70px 0 0;
}
.sec-esb-three-card__item {
  border: 1px solid #6576941a;
  /* box-shadow: 0px 4px 20.3px 0px #00000012; */
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition3);
}
.sec-esb-three-card__item:hover {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}
.sec-esb-three-card__item:first-child {
  background-color: #F7F0FA;
}
.sec-esb-three-card__item:nth-child(2) {
  background-color: #FAF7F0;
}
.sec-esb-three-card__item:nth-child(3) {
  background-color: #F0FAF7;
}

.sec-esb-three-card__inner-text {
  padding: 30px;
}
.sec-esb-three-card__title h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  color: #181f38;
  margin: 0 0 20px;
}
.sec-esb-three-card__description p {
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0px;
  color: #2b3857;
}
.sec-esb-three-card__inner-content {
  padding: 10px 15px 0;
  margin-top: auto;
  height: 190px;
}
.sec-esb-three-card__inner-img {
  background-color: #fff;
  box-shadow: 0px -5px 28.7px 0px #0000000f;
  border-radius: 10px 10px 0 0;
  text-align: center;
  padding: 5px 0 0;
  height: 100%;
}
.sec-esb-three-card__inner-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media screen and (max-width: 1440px) {
  .sec-esb-three-card-service__row {
    grid-gap: 20px;
  }
  .sec-esb-three-card__description p {
    font-size: 16px;
  }
}
@media screen and (max-width: 1366px) {
  .sec-esb-three-card-service__row {
    margin-top: 50px;
  }
  .sec-esb-three-card__inner-text {
    padding: 16px;
  }
}
@media screen and (max-width: 991px) {
  .sec-esb-three-card-service__row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .sec-esb-three-card-service__row {
    grid-template-columns: repeat(1, 1fr);
  }
  .sec-esb-three-card-service__row {
    margin-top: 30px;
  }
}
