@import url(https://fonts.googleapis.com/css?family=Roboto:400,100,100italic,300,300italic,400italic,500,500italic,700,700italic,900,900italic);
section.box-menu,
.box-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  transition: all 0.5;
}
.body {
  background-color: #393e46;
}

.box {
  min-width: 200px;
  height: 250px;
  border: solid 1px #14d4f3;
  position: relative;
  display: block;
  margin: 0.2em;
  padding: 15px;
  background: rgb(66, 74, 86);
  overflow: hidden;
  /* box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); */
  cursor: pointer;
  border-radius: 10px;
}
.box .icon-cont {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 75px;
  height: 75px;
  border: 6px solid #f8c472;
  border-radius: 50%;
  margin: 0 auto;
  display: block;
  text-align: center;
  z-index: 5;
  box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.5),
    0 0 0 0px rgba(3, 108, 129, 0.5);
}
.box .icon-cont i {
  color: #f8c472;
  font-size: 2.5em;
  line-height: 70px;
}
.box:hover .icon-cont {
  -webkit-animation: shady 4s linear infinite;
  animation: shady 4s linear infinite;
}
.box h3 {
  font-weight: 300;
  color: #e1f0fa;
  text-shadow: 1px 1px 0px #196090;
  position: absolute;
  top: 110px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.25em;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  z-index: 4;
}
.box .expand {
  width: 35px;
  height: 35px;
  background: rgb(124 124 124);
  font-weight: 600;
  color: #ffffff;
  display: block;
  margin: 0 auto;
  text-align: center;
  line-height: 35px;
  cursor: pointer;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 15px;
}
.box .expand span.minus {
  opacity: 0;
}
.box .expand span.plus {
  opacity: 1;
  padding-left: 5px;
}

@-webkit-keyframes shady {
  0% {
    box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.5),
      0 0 0 0px rgba(3, 108, 129, 0.5);
  }
  20% {
    box-shadow: 0 0 0 100px rgba(255, 255, 255, 0),
      0 0 0 0px rgba(3, 108, 129, 0);
  }
  20.1% {
    box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.5),
      0 0 0 0px rgba(3, 108, 129, 0.5);
  }
  50% {
    box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.5),
      0 0 0 0px rgba(3, 108, 129, 0.5);
  }
  70% {
    box-shadow: 0 0 0 100px rgba(255, 255, 255, 0),
      0 0 0 0px rgba(3, 108, 129, 0);
  }
  70.1% {
    box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.5),
      0 0 0 0px rgba(3, 108, 129, 0.5);
  }
  100% {
    box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.5),
      0 0 0 0px rgba(3, 108, 129, 0.5);
  }
}

@keyframes shady {
  0% {
    box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.5),
      0 0 0 0px rgba(3, 108, 129, 0.5);
  }
  20% {
    box-shadow: 0 0 0 100px rgba(255, 255, 255, 0),
      0 0 0 0px rgba(3, 108, 129, 0);
  }
  20.1% {
    box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.5),
      0 0 0 0px rgba(3, 108, 129, 0.5);
  }
  50% {
    box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.5),
      0 0 0 0px rgba(3, 108, 129, 0.5);
  }
  70% {
    box-shadow: 0 0 0 100px rgba(255, 255, 255, 0),
      0 0 0 0px rgba(3, 108, 129, 0);
  }
  70.1% {
    box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.5),
      0 0 0 0px rgba(3, 108, 129, 0.5);
  }
  100% {
    box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.5),
      0 0 0 0px rgba(3, 108, 129, 0.5);
  }
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  transition: all 300ms ease-in-out;
}

body {
  font-family: "Roboto", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  background: #fafafa;
}

section.box-menu,
.box-menu {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
