.tilesWrap {
  padding: 0;
  margin: 50px auto;
  list-style: none;
  text-align: center;
  font-family: "Oswald", sans-serif;
  height: max-content;
}
.tilesWrap div {
  display: inline-block;
  padding: 80px 20px 40px;
  position: relative;
  vertical-align: top;
  margin: 10px;
  background: #17d07a40;
  border: 1px solid #17d07a;
  border-radius: 2rem;
  text-align: left;
}
.tilesWrap div h2 {
  font-size: 114px;
  margin: 0;
  position: absolute;
  opacity: 0.2;
  top: 50px;
  right: 10px;
  transition: all 0.3s ease-in-out;
  color: #a8a8a8;
}
.tilesWrap div h3 {
  font-weight: 700;
  font-size: 26px;
  margin-top: 8px;
  text-align: center;
  color: grey;
}
.tilesWrap div p {
  font-size: 16px;
  line-height: 18px;
  color: #000;
  margin-top: 5px;
}
.tilesWrap div button {
  background: transparent;
  border: 1px solid #fff;
  padding: 10px 20px;
  color: #fff;
  border-radius: 3px;
  position: relative;
  transition: all 0.3s ease-in-out;
  transform: translateY(-40px);
  opacity: 0;
  cursor: pointer;
  overflow: hidden;
}
.tilesWrap div button:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 120%;
  background: #ffffff;
  top: 0;
  opacity: 0;
  left: -140px;
  border-radius: 0 20px 20px 0;
  z-index: -1;
  transition: all 0.3s ease-in-out;
}
.tilesWrap div:hover button {
  transform: translateY(5px);
  opacity: 1;
}
.tilesWrap div button:hover {
  color: #262a2b;
}
.tilesWrap div button:hover:before {
  left: 0;
  opacity: 1;
}
.tilesWrap div:hover h2 {
  top: 0px;
  opacity: 0.6;
}

.tilesWrap div:before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  z-index: -1;
  background: #fff;
  transform: skew(2deg, 2deg);
}

.privacity {
  margin: 0px auto;
  padding: 20px;
}

.privacity > h2 {
  color: #17d07a;
  font-size: 38px;
  font-weight: 700;
  margin: 0;
  margin-top: 35px;
  text-align: center;
}

.privacity > h3 {
  font-weight: 700;
  font-size: 26px;
  margin-top: 8px;
  text-align: center;
}

.privacity > p {
  margin-bottom: 30px;
}
