/* Information */
.information {
  width: 100%;
  height: 200px;
  background-color: var(--lightsky);
  display: flex;
  justify-content: center;
}
.information .info-box {
  width: 1140px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.information .info-box .item {
  width: 24%;
  height: 100px;
  border-radius: 5px;
  padding: 20px 0;
  box-sizing: border-box;
  background-color: var(--white);
  box-shadow: var(--box-shadow);
  display: grid;
  grid-template-columns: 90px 1fr;
  transition: all 0.5s;
}
.information .info-box .item:hover {
  background-color: var(--black);
}
.information .item:hover .description h1,
.information .item:hover .description p {
  color: var(--white);
}
.information .item:hover .icon .icon-cover {
  background-color: var(--yellow);
}
/* icon */
.information .item .icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.information .icon .icon-cover {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 25px;
  background-color: var(--lightsky);
  display: flex;
  justify-content: center;
  align-items: center;
}
/* description */
.information .item .description h1 {
  font-family: thin;
  font-size: 20px;
  color: var(--yellow);
}
.information .item .description p {
  font-size: 14px;
  margin-left: 20px;
  color: var(--light_color);
}