@keyframes opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.services {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  min-height: 650px;
  background: #eaeaea;
  background-image: url(../img/services_bg.png);
  background-size: 100% 470px;
  transition: 2s;
}
.services__container {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
}
.services__cart {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 90%;
  background: #fff;
  padding: 25px;
  margin: 5px 0 15px 0;
}
.services__cart--active {
  background: #b9032e;
}
.services__cart__line {
  width: 65px;
  height: 1px;
  background: #131e39;
}
.services__cart__line--active {
  background: #fff;
}
.services__cart__title {
  font-family: "Work Sans", sans-serif;
  font-size: 2.1em;
  font-weight: 500;
  color: #131e39;
  padding: 20px 0 20px 0;
}
.services__cart__title__container {
  display: flex;
  justify-content: flex-start;
  min-height: 100px;
}
.services__cart__title--active {
  color: #fff;
}
.services__cart__text {
  font-family: "Work Sans", sans-serif;
  font-size: 1.5em;
  font-weight: 300;
  color: #282828;
  padding: 0 0 20px 0;
}
.services__cart__text--active {
  color: #fff;
}
.services__cart__text span {
  font-weight: 400;
}
.services__cart__circle {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #b9032e;
  margin-bottom: 10px;
}
.services__cart__circle--active {
  background: #fff;
}
.services__cart__circle__icon {
  position: absolute;
  left: 35%;
  top: 15%;
  font-family: "Work Sans", sans-serif;
  font-size: 2.3em;
  font-weight: 400;
  color: #fff;
}
.services__cart__circle__icon--active {
  color: #b9032e;
  top: 18%;
  transform: rotate(90deg);
}
.services__info {
  width: 100%;
  background: #eaeaea;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 30px 30px 0 30px;
}
.services__info--active {
  display: auto;
}
.services__info--inactive {
  display: none;
  transition: 1s all;
  opacity: 0;
}
.services__info__circle {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: #131e39;
  flex: none;
  margin-top: 4px;
}
.services__info__title {
  font-family: "Work Sans", sans-serif;
  font-size: 2.1em;
  font-weight: 500;
  color: #131e39;
  padding: 0 0 20px 0;
}
.services__info__boxes {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.services__info__box {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.services__info__box__text {
  font-family: "Work Sans", sans-serif;
  font-size: 1.5em;
  font-weight: 400;
  color: #282828;
  padding: 0 30px 25px 10px;
}

@media screen and (min-width: 769px) {
  .services {
    background-repeat: no-repeat;
    background-position: top;
  }
  .services__container {
    flex-direction: row;
    align-items: flex-start;
    max-width: 1140px;
    background: #eaeaea;
    padding: 0 20px;
  }
  .services__cart {
    width: 25%;
    min-height: 442px;
    border-right: 1px solid #131e39;
    margin: 0;
    padding: 25px 25px 0 25px;
  }
  .services__cart:hover {
    cursor: pointer;
  }
  .services__cart--last {
    border: none;
  }
  .services__cart__title {
    padding: 20px 0 0 0;
    min-height: 120px;
  }
  .services__cart__text {
    padding: 0 0 30px 0;
    min-height: 220px;
  }
  .services__info {
    background: #eaeaea;
    padding: 30px 30px 60px 30px;
  }
  .services__info--active {
    animation: opacity 1.5s;
  }
  .services__info__circle {
    margin-top: 0;
  }
  .services__info__title {
    padding: 50px 20px 60px 0;
  }
  .services__info__box {
    flex-direction: column;
    width: 25%;
  }
  .services__info__box__text {
    padding: 10px 30px 30px 0;
  }
  .services__info__boxes {
    max-width: 1140px;
  }
}
@media screen and (min-width: 1200px) {
  .services__container {
    padding: 0;
  }
  .services__cart {
    min-height: 420px;
  }
}

/*# sourceMappingURL=services.css.map */
