#banners-home {
  margin: 0;
}

#banners-home>div {
  padding-left: 0;
  padding-right: 0;
}

#banners-home .banner {
  height: 70vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 20px 25px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  margin-bottom: 15px;
  position: relative;
  align-items: center;
}

#banners-home .banner>div:nth-of-type(1) {
  z-index: 2;
}

#banners-home>a {
  height: 515px !important;
  margin-right: 15px;
  width: 65%;
}

#banners-home .banner>.text {
  width: 100%;
  position: relative;

}

#banners-home .banner .banner-bg {
  mix-blend-mode: multiply;
  background-color: #7c101d;
  height: 42px;
  position: absolute;
  bottom: 95px;
  width: 100%;
  z-index: 1;
  width: 90%;
}

#banners-home .banner .button {
  width: fit-content;
  text-align: center;
  margin-bottom: 8px;
  margin-top: 10px;
  padding: 9px 30px;
  z-index: 2;
  background-color: #ffffff54;
  backdrop-filter: blur(6px);
  border-radius: 20px;
}

#banners-home .banner .button:hover {
  background-color: var(--color-secundary);
  border-color: var(--color-primary);
  color: white;
}

#banners-home .banner .button p {
  font-size: .9em;
  color: white;
  margin-bottom: 2px;
  font-weight: bold;
  text-shadow: 2px 1px 4px black;
}

#banners-home .banner .button img {
  margin-left: 15px;
  margin-top: 0;
}

#banners-home .banner p:not(.banner-link) {
  line-height: 1em;
  color: white;
}


#banners-home>div .banner p.banner-title {
  font-size: 2.1em;
  padding: 5px;
  font-weight: 100;
  text-align: center;
  width: 100%;
  font-family: 'Newsreader';
  letter-spacing: 1px;
  height: 40px;
  position: absolute;
  bottom: 20px;
  margin-bottom: 0;
  z-index: 9;
}

#banners-home>div>.banner {
  margin-bottom: 20px;
}

@media(max-width:1400px) {

  #banners-home>a,
  #banners-home>div {
    width: 50%;
  }

  #banners-home>div>.banner {
    margin-bottom: 0;
  }

  #banners-home .banner {
    height: 350px;
    padding: 20px;

  }

}

@media(max-width:768px) {
  #banners-home .banner {
    height: 250px;
  }

  #banners-home>div .banner p.banner-title {
    font-size: 1.7em;
  }

  #banners-home .banner .banner-bg {
    bottom: 100px;
  }
}

@media(max-width:576px) {


  #banners-home .banner .button p {
    font-size: .65em;
  }

  #banners-home>div .banner p.banner-title {
    font-size: 1em;
    bottom: 17px;
    padding: 5px 0;
  }

  #banners-home .banner .banner-bg {
    bottom: 96px;
  }

}