* {
  box-sizing: border-box;
  line-height: 1.5;
  font-family: 'Open Sans', sans-serif;
}
body {
  margin: 0;
  background: #EEE;
}
.container {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
}
.card {
  position: relative;
  background: #333;
  width: 320px;
  border-radius: 6px;
  padding: 2rem;
  color: #aaa;
  box-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.2), 0 0 1rem rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.card__image-container {
  margin: -2rem -2rem 1rem -2rem;
}
.card__line {
  opacity: 0;
  animation: LineFadeIn 0.8s 0.8s forwards ease-in;
}
.card__image {
  opacity: 0;
  animation: ImageFadeIn 0.8s 1.4s forwards;
  width: 320px;
}
.card__title {
  color: white;
  margin-top: 0
  font-weight: 800;
  letter-spacing: 0.01em;
}
.card__content {
  margin-top: 2rem;
  opacity: 0;
  animation: ContentFadeIn 0.8s 1.6s forwards;
}
.card__svg {
  position: absolute;
  left: 0;
  top: 243px;
}
.progress {
  opacity: 0;
  animation: ContentFadeIn 0.8s 1.6s forwards;
}
.card__phone {
  color: white;
  margin-top: 50px;
}
h1 {
  color: #222;
  font-size: 32px;
  animation: ContentFadeIn 0.8s 1.6s forwards;
}
p {
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}
a {
  display: inline-block;
  color: green;
  font-weight: 600;
  font-size: 22px;
}

img {
  width: 100%;
  height: auto;
  max-width: 800px;
}


@keyframes ContentFadeIn {
  0% {
    transform: translateY(-1rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes ImageFadeIn {
  0% {
    transform: translate(-0.5rem, -0.5rem) scale(1.05);
    opacity: 0;
    filter: blur(2px);
  }
  50% {
    opacity: 1;
    filter: blur(2px);
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
