.option {
  max-width: calc((100% - 90px) / 3);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 25px;
  background: #ffffff;
  border-radius: 10px;
  white-space: nowrap;
  transition: all 0.3s;
  cursor: pointer;
}

.option:hover {
  background: #008ec2;
}

.option .title {
  font-size: 21px;
  font-weight: bold;
  color: #161c2d;
}

.option:hover .title {
  color: #ffffff;
}

.option .option-icon {
  max-width: 43px;
  min-width: 43px;
  max-height: 43px;
  min-height: 43px;
  border-radius: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.option .option-icon .icon {
  transform: scale(0);
  transition: transform 0.3s;
}

.option:hover .option-icon .icon {
  transform: scale(1);
}