/* SCSS file content */
.abt-features-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: white;
  min-height: 340px;
  padding: 40px 20px 40px 20px;
  border-radius: 10px;
}
@media screen and (min-width: 1200px) {
  .abt-features-card {
    min-height: 430px;
    padding: 54px 28px 60px 30px;
    transition: all ease 0.5s;
    -o-transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
  }
  .abt-features-card:hover {
    -webkit-box-shadow: 0px 7px 7px 0px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 7px 7px 0px rgba(0, 0, 0, 0.1);
  }
}
@media screen and (max-width: 991.98px) {
  .abt-features-card_icon img {
    max-width: 60px;
  }
}
.abt-features-card_title {
  margin-bottom: 16px;
  color: #3C3C3A;
  letter-spacing: -0.27px;
}
@media screen and (min-width: 1200px) {
  .abt-features-card_title {
    margin-bottom: 20px;
    letter-spacing: -0.375px;
  }
}
.abt-features-card_content {
  color: #3C3C3A;
  line-height: 1.665;
  margin-bottom: 0;
  letter-spacing: -0.08px;
}
@media screen and (min-width: 1200px) {
  .abt-features-card_content {
    letter-spacing: -0.09px;
    max-width: 392px;
    margin-bottom: 20px;
  }
}
.abt-features-card_content_wrap {
  transition: all ease 0.5s;
  -o-transition: all ease 0.5s;
  -webkit-transition: all ease 0.5s;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}
.abt-features-card .btn {
  opacity: 0;
  visibility: hidden;
  height: 0;
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}

.abt-features-card-row {
  --bs-gutter-x: 22px;
}
.abt-features-card-row [class*=col-] {
  --bs-gutter-x: 22px;
}
@media screen and (max-width: 991.98px) {
  .abt-features-card-row [class*=col-]:not(:last-child) {
    margin-bottom: 30px;
  }
}
.abt-features-card-row [class*=col-]:first-child .abt-features-card {
  background-color: #ECEAFF;
}
.abt-features-card-row [class*=col-]:nth-child(2) .abt-features-card {
  background-color: #FFEDE5;
}
.abt-features-card-row [class*=col-]:last-child .abt-features-card {
  background-color: #FFE9F3;
}

@media screen and (min-width: 992px) and (max-width: 1199px){
  .abt-features-card_content_wrap{
    flex: auto;
    padding-top: 40px;
  }
  .abt-features-card{
    height: 100%;
  }
}