.services {
  padding-bottom: 100px;
  background-color: #f7f7fb;
}

@media screen and (max-width: 1200px) {
  .services {
    padding-top: 40px;
    padding-bottom: 60px;
  }
  .services__cards [data-aos="fade-up"] {
    transform: none !important;
    opacity: 1;
  }
}

.services__heading {
  margin-bottom: 40px;
}

@media screen and (max-width: 1200px) {
  .services__heading {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 1200px) {
  .services__cards .col:not(:last-child) {
    margin-bottom: 10px;
  }
}

.service-card {
  display: block;
  width: 100%;
  height: 100%;
  padding: 51px 30px 30px 30px;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #eaeaf1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/*@media screen and (hover: hover) and (pointer: fine) {
  .service-card:hover {
    border-color: #b6c1dd;
    -webkit-box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
            box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
  }
}*/

@media screen and (max-width: 1200px) {
  .service-card {
    padding: 30px;
  }
}

@media screen and (max-width: 576px) {
  .service-card {
    padding-left: 12px;
    padding-right: 0;
  }
}

.service-card__icon {
  display: block;
  margin-bottom: 45px;
  width: 95px;
  height: 113px;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 1200px) {
  .service-card__icon {
    margin-bottom: 0;
    margin-right: 20px;
    width: 70px;
    height: 70px;
    transition: 0.3s;
  }
}
@media screen and (max-width: 576px) {
  .service-card__icon {
    margin-right: 12px;
    width: 45px;
    height: 45px;
  }
}

.service-card__title {
  color: #0a2896;
  text-align: left;
}

@media screen and (max-width: 1200px) {
  .service-card__title {
    max-width: 600px;
    font-size: 22px;
    transition: 0.3s;
  }
}
.service-card__control {
  cursor: auto;
}
.service-card__control-arrow {
  display: none;
}
@media screen and (max-width: 1200px) {
  .service-card__control {
    display: flex;
    align-items: center;
    position: relative;
    padding-right: 30px;
    cursor: pointer;
    width: 100%;
  }
  .service-card__control.is-on .service-card__title, .service-card__control.is-on .service-card__icon {
    color: #0084ff;
  }
  .service-card__control.is-on .service-card__control-arrow {
    transform: rotate(180deg);
    color: #0084ff;
  }
  .service-card__control-arrow {
    display: block;
    position: absolute;
    top: calc(50% - 4px);
    right: 0;
    width: 13px;
    height: 7px;
    transition: 0.3s;
  }
}

@media screen and (max-width: 567px) {
  .service-card__control {
    padding-right: 30px;
  }
  .service-card__control-arrow {
    right: 12px;
  }
}

.service-card__info {
  padding-top: 20px;
  color: #606981;
}
@media screen and (max-width: 1200px) {
  .service-card__info {
    display: none;
  }
  .service-card__info.is-open {
    display: block;
    animation: animateServiseCard 0.3s linear;
  }
}
@media screen and (max-width: 576px) {
  .service-card__info {
    padding-left: 18px;
    padding-right: 18px;
  }
}
@keyframes animateServiseCard {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.service-card__info ul {
  padding-top: 0;
  padding-bottom: 0;
}

@media screen and (max-width: 1200px) {
  .service-card__info ul > li:not(:last-child) {
    margin-bottom: 15px;
  }
}
