.how-it-works-wrapper {
  display: flex;
  margin: 0 10.4%;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.how-it-works-wrapper .cards {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 380px;
}
.how-it-works-wrapper .cards .card {
  box-sizing: border-box;
  height: 306px;
  width: 248px;
  border: 20px solid #effaff;
  border-radius: 16px;
  background-color: #ffffff;
  box-shadow: 0 2px 24px 0 rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-evenly;
  flex-direction: column;
  align-items: center;
  transition: all 0.5s;
}
.how-it-works-wrapper .cards .card .icon {
  width: 120px;
  height: 120px;
}
.how-it-works-wrapper .cards .card .title {
  color: #233468;
  font-family: century-gothic, sans-serif;
  font-weight: 700;
  font-size: 22px;
}
.how-it-works-wrapper .cards .card.active {
  box-sizing: border-box;
  height: 352px;
  width: 280px;
  border: 20px solid #a3d4ff;
  border-radius: 16px;
  background-color: #ffffff;
  box-shadow: 0 2px 24px 0 rgba(0, 0, 0, 0.16);
}
.how-it-works-wrapper .cards .card.active .title {
  color: #0d7cdb;
}
.how-it-works-wrapper .arrow {
  height: 306px;
  width: 100px;
  background: url(/app/themes/default/resources/assets/images/custom_widgets/image-box-hover/collapse.png) 50% no-repeat;
  background-size: 70%;
}
.how-it-works-wrapper .descriptions .description {
  height: 97px;
  width: 945px;
  color: #233468;
  font-family: montserrat, sans-serif;
  font-size: 20px;
  line-height: 32px;
  text-align: center;
  display: none;
  margin: 80px 0;
}
.how-it-works-wrapper .descriptions .description.active {
  display: block;
}