:root {
  --lightBlue: #f3fbff;
}

:root {
  --lightBlue: #f3fbff;
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.a-anim {
  animation-name: slideUp;
  animation-duration: 1s;
  animation-fill-mode: both;
}
.a-anim:nth-child(1) {
  animation-delay: 0s;
}
.a-anim:nth-child(2) {
  animation-delay: 0.2s;
}
.a-anim:nth-child(3) {
  animation-delay: 0.4s;
}

.a-blocks {
  margin: 80px auto 120px;
  max-width: 320px;
}
@media only screen and (min-width: 768px) {
  .a-blocks {
    max-width: none;
    display: grid;
    grid-auto-columns: auto;
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-width: 1025px) {
  .a-blocks {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.a-block {
  position: relative;
  overflow: hidden;
}
.a-block__content {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 42px;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75rem;
}
@media only screen and (min-width: 768px) {
  .a-block__content {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.875rem;
  }
}
.a-block:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.a-block--text-blue {
  color: #01a9c1;
}
.a-block--text-black {
  color: #000000;
}
.a-block--text-white {
  color: #ffffff;
}
.a-block--bg-light {
  background: #f3fbff;
}
.a-block--bg-dark {
  background: #01a9c1;
}
.a-block--bg-white {
  background: #ffffff;
}
.a-block--text-big > .a-block__content {
  font-weight: bold;
  font-size: 1.875rem;
  line-height: 2.125rem;
}
.a-block_image .a-block__content {
  padding: 0;
}
.a-block_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}