body {
  margin: 0;
  font-family: 'Dosis', sans-serif;
  background-color: rgb(86,103,122);
}

.bg-container {
  position: relative;
  width: 100%;
}

.bg-container img {
  width: 100%;
  height: auto;
  display: block;
}

.texto {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 24px;
  text-shadow: 1px 1px 5px black;
  flex-wrap: wrap;
  font-weight: 600;
}

.bg-1920 .texto {
  font-size: 32px;
}

.texto a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
}

.texto img {
  height: 24px;
  width: auto;
}

.texto-720 {
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 28px;
  bottom: 1%;
}

@media (max-width: 790px) {
  .texto-720 {
    font-size: 24px;
  }
}

@media (max-width: 710px) {
  .texto-720 {
    font-size: 20px;
  }
}

@media (max-width: 630px) {
  .texto-720 {
    font-size: 18px;
  }
}

@media (max-width: 540px) {
  .texto-720 {
    font-size: 16px;
    gap: 7px;
  }
}

@media (max-width: 470px) {
  .texto-720 {
    font-size: 14px;
    bottom:2px;
  }
}

.bg-1920,
.bg-992,
.bg-720 {
  display: none;
}

@media (min-width: 1921px) {
  .bg-1920 {
    display: block;
  }
}

@media (max-width: 1920px) and (min-width: 993px) {
  .bg-992 {
    display: block;
  }
}

@media (max-width: 992px) {
  .bg-720 {
    display: block;
  }
}