.herobanner {
  background-image: url(../images/bkg-blood.jpg);
  background-size: cover;
  height: 23.75rem;
}

.herobanner__img {
  max-height: 130px;
}

.card-locality {
  background-color: #F2F2F2;
  border-radius: 20px;
  margin-top: 2rem;
  transition: 1s;
}

.card-locality:hover {
  background-color: #000;
  color: #fff;
}

a {
  text-decoration: none;
  color: #000000;
}

a:hover {
  text-decoration: none;
}

.card-locality__flag {
  height: 60px;
  width: 60px;
  background: #fff;
  border-radius: 50%;
  border: 3px solid #fff;
  margin-top: -50px;
}

.color-cta {
  color: #AB1517;
}

.footer {
  background-color: #000000;
  height: 50px;
}

.list-animation div {
  padding: 20px 10px;
  text-align: center;
  opacity:0;
  transform:scale(.5);
  border: 1px solid #fff;
}

.list-animation div p {
  padding: 0;
  margin: 0;
}

.list-animation div:nth-child(1) {
  animation: pop .7s .2s forwards;
  
}

.list-animation div:nth-child(2) {
  animation: pop .9s .4s forwards;
  
}

.list-animation div:nth-child(3) {
    animation: pop .12s .6s forwards;
  }

.list-animation div:nth-child(4) {
  animation: pop .14s .8s forwards;
}

@media only screen and (max-width : 768px){ 

  .herobanner  {
    height: 13.75rem;
  }

  .herobanner__img {
   width: 100%;
   max-height: auto;
  }

  .card-locality {
    margin-top: 0.5rem;
  }
}


@keyframes pop {
  0% {
    opacity:0;
    transform:scale(.5)
  }
  50% {
    opacity:1
  }
  100% {
  opacity:1;
  transform: scale(1)
  }
}