html, body, h1, p {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

.box h1 {
    font-size: 1.5em;
}

.box p {
    margin-top: 15px;
}

section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
}
.box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.5);
  min-width: 200px;
  min-height: 150px;
  width: 375px;
  padding: 30px;
  transition: all 0.4s cubic-bezier(0.65, -0.03, 0.21, 1.01);
  box-shadow: 0px 4px 45px -3px rgba(0, 0, 0, 0.07);
  cursor: pointer;
}
.box__wrapper {
  padding: 0px 0 5px 0;
  overflow: hidden;
}
.box__title {
  transform: translateY(300%) scaleY(3);
  transform-origin: bottom;
  transition: all 0.5s cubic-bezier(0.65, -0.03, 0.21, 1.01) 0.1s;
}
.box__paragraph {
  transform: translateY(300%) scaleY(3);
  transform-origin: bottom;
  transition: all 0.5s cubic-bezier(0.65, -0.03, 0.21, 1.01) 0s;
  color: #51B11A;
}
.box:hover {
  transform: scale(1.1);
  background-color: rgba(255, 255, 255, 0.8);
}
.box:hover .box__title {
  transform: translateY(0);
  transition: all 0.5s cubic-bezier(0.65, -0.03, 0.21, 1.01) 0s;
}
.box:hover .box__paragraph {
  transform: translateY(0);
  transition: all 0.5s cubic-bezier(0.65, -0.03, 0.21, 1.01) 0.2s;
}

.box > img {
    transition: all 0.5s cubic-bezier(0.65, -0.03, 0.21, 1.01) 0s;
    transform: translateY(20%);
}

.box:hover > img {
    transform: scale(0.75) translateY(0);
}

.box a {
    text-decoration: none;
    padding: 5px;
}

.jvectormap-zoomout,
.jvectormap-zoomin {
    display: none;
}