:root {
  --lightBlue: #f3fbff;
}

body {
  background: #f3fbff;
}

.a-solutions-list {
  margin-top: 60px;
}

.a-solution {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 32px 0 rgba(52, 119, 145, 0.07);
  background: #ffffff;
}
@media only screen and (min-width: 768px) {
  .a-solution {
    display: flex;
  }
}
@media only screen and (min-width: 768px) {
  .a-solution__image {
    flex: 0 0 260px;
    max-width: 260px;
  }
}
@media only screen and (min-width: 1025px) {
  .a-solution__image {
    flex: 0 0 360px;
    max-width: 360px;
  }
}
.a-solution__content {
  flex: 1;
  padding: 36px 50px;
}
.a-solution__title {
  font-weight: 700;
  font-size: 1.5625rem;
  line-height: 140%;
  color: #000000;
}
.a-solution__title:hover {
  color: #01a9c1;
}
.a-solution__subtitle {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 162%;
  letter-spacing: 0.02em;
  color: #1faac0;
}
.a-solution__text {
  color: #363943;
  margin: 12px 0 0 0;
  font-weight: 300;
  font-size: 1rem;
  line-height: 162%;
}
.a-solution .a-button {
  margin: 28px 0 0 0;
  min-width: 212px;
}
.a-solution + .a-solution {
  margin: 40px 0 0 0;
}
.a-solution__image {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}
@media only screen and (min-width: 768px) {
  .a-solution__image {
    min-height: 0;
  }
}
.a-solution__img {
  max-width: 100%;
  max-height: 100%;
  padding: 12px;
}
.a-solution:last-child {
  margin-bottom: 80px;
}
@media only screen and (min-width: 768px) {
  .a-solution:nth-child(odd) .a-solution__image {
    order: 2;
  }
}
@media only screen and (min-width: 768px) {
  .a-solution:nth-child(odd) .a-solution__content {
    order: 1;
  }
}
@media only screen and (min-width: 768px) {
  .a-solution:nth-child(even) .a-solution__image {
    order: 1;
  }
}
@media only screen and (min-width: 768px) {
  .a-solution:nth-child(even) .a-solution__content {
    order: 2;
  }
}