* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  max-height: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
  /* background: linear-gradient(to bottom, #B2DCFF, #B7D6F0); */
  /* background-color: #B2DCFF; */
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: antialiased;
}

.page {
  width: 100%;
  min-height: 100vh;
  text-align: center;
  padding-top: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero {
  width: 295.6px;
  height: 320px;
  overflow: hidden;
  margin-bottom: 40px;
}

.animation {
  overflow: hidden;
  margin: 0 auto;
  height: 598px;
  width: 739px;
  background: url(./images/sprite.svg);

  animation-name: sprite;
  animation-duration: 2.4s;
  animation-timing-function: steps(16);
  animation-iteration-count: infinite;

  transform: translate(-30%, -30%) scale(0.4);
}

@keyframes sprite {
  from { background-position: 0px; }
  to { background-position: -11824px;}
}

@media (min-width: 1024px) {
  .animation {
    transform: scale(1);
  }

  .hero {
    width: 739px;
    height: auto;
  }
}

.title {
  font-size: 2rem;
  font-weight: 600;
  color: #515151;
  text-align: center;
  margin-bottom: 32px;
}


.testimony {
  margin-bottom: 40px;
  padding: 0 .75rem;
}

.testimony p {
  font-style: italic;
  color: #515151;
  font-size: 1.125rem;
  max-width: 720px;
}

h2 {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
  color: #097DAA;
}

.pictures {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  padding: .75rem;
}

.picture {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  border-radius: .25rem;
  background-color: white;
  border: solid 1px #eaeaea;
  padding: 0.25rem;
}

.picture img {
  aspect-ratio: 1;
  object-fit: fill;
}