@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@600;700&display=swap");
 
body {
  background: #e7f3f1;
}
* {
	 box-sizing: border-box;
}

[class*="reveal-"] {
  opacity: 0;
  transform: translateY(-30px);
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
  transition: 1s cubic-bezier(.5, 0, 0, 1);
}

.reveal-2 {
  transition-delay: .6s;
}

.reveal-2:hover {
  transition-delay: -.5s;
}

.reveal-3 {
  transition-delay: .9s;
}

.reveal-3:hover {
  transition-delay: -.5s;
}

 .page-contain {
	 display: flex;
	 /* min-height: 100vh; */
	 align-items: center;
	 justify-content: center;
	 /* background: #e7f3f1; */
	 /* border: 0.75em solid white; */
	 /* padding: 2em; */
	 padding: 1em;
	 font-family: "Open Sans", sans-serif;
}
 .data-card {
	 display: flex;
	 flex-direction: column;
	 max-width: 20.75em;
	 min-height: 20.75em;
	 overflow: hidden;
	 border-radius: 0.5em;
	 text-decoration: none;
	 background: white;
	 margin: 1em;
	 padding: 2.75em 2.5em;
	 box-shadow: 0 1.5em 2.5em -0.5em rgba(0, 0, 0, 0.1);
	 transition: transform 0.45s ease, background 0.45s ease;
}
 .data-card h3 {
	 color: #2e3c40;
	 font-size: 3em;
	 font-weight: 600;
	 line-height: 1;
	 padding-bottom: 0.5em;
	 margin: 0 0 0.142857143em;
	 border-bottom: 2px solid #1f5eb9;
	 transition: color 0.45s ease, border 0.45s ease;
}
 .data-card h4 {
	 color: #627084;
	 text-transform: uppercase;
	 font-size: 1.125em;
	 font-weight: 700;
	 line-height: 1;
	 letter-spacing: 0.1em;
	 margin: 0 0 1.777777778em;
	 transition: color 0.45s ease;
}
 .data-card p {
	 opacity: 0;
	 color: #fff;
	 font-weight: 600;
	 line-height: 1.8;
	 margin: 0 0 1.25em;
	 transform: translateY(-1em);
	 transition: opacity 0.45s ease, transform 0.5s ease;
}
 .data-card .link-text {
	 display: block;
	 color: #1f5eb9;
	 font-size: 1.125em;
	 font-weight: 600;
	 line-height: 1.2;
	 margin: auto 0 0;
	 transition: color 0.45s ease;
}
 .data-card .link-text svg {
	 margin-left: 0.5em;
	 transition: transform 0.6s ease;
}
 .data-card .link-text svg path {
	 transition: fill 0.45s ease;
}
 .data-card:hover {
	 background: #1f5eb9;
	 transform: scale(1.02);
}
 .data-card:hover h3 {
	 color: #fff;
	 border-bottom-color: #1f5eb9;
}
 .data-card:hover h4 {
	 color: #fff;
}
 .data-card:hover p {
	 opacity: 1;
	 transform: none;
}
 .data-card:hover .link-text {
	 color: #fff;
}
 .data-card:hover .link-text svg {
	 -webkit-animation: point 1.25s infinite alternate;
	 animation: point 1.25s infinite alternate;
}
 .data-card:hover .link-text svg path {
	 fill: #fff;
}
 @-webkit-keyframes point {
	 0% {
		 transform: translateX(0);
	}
	 100% {
		 transform: translateX(0.125em);
	}
}
 @keyframes point {
	 0% {
		 transform: translateX(0);
	}
	 100% {
		 transform: translateX(0.125em);
	}
}
