:root {
  --white: white;
  --black: black;
}

.div-block {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 12px;
  display: flex;
}

.image {
  width: 400px;
  margin-bottom: 20px;
}

.text-block {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 40px;
}

.div-block-2 {
  margin-bottom: 20px;
  display: none;
}

.div-block-2.main {
  display: block;
}

.image-3 {
  display: none;
}

.sorteos-desktop {
  margin-bottom: 20px;
}

.sorteos-mobile {
  margin-bottom: 20px;
  display: none;
}

@media screen and (max-width: 991px) {
  .image-3 {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .image {
    width: 300px;
  }

  .image-3 {
    display: none;
  }
}

@media screen and (max-width: 479px) {
  .image {
    width: 250px;
  }

  .div-block-2 {
    padding: 10px;
    display: block;
  }

  .div-block-2.main, .image-2 {
    display: none;
  }

  .image-3 {
    display: block;
  }

  .sorteos-desktop {
    display: none;
  }

  .sorteos-mobile {
    padding: 10px;
    display: block;
  }
}


