body {
  color: #333;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

.rigth-side {
  background-color: #590527;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  padding-left: 10%;
  display: flex;
}

.section {
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  height: 100vh;
  display: flex;
}

.left-side {
  background-image: url('../images/fondo-clena.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: flex-start;
  align-items: flex-end;
  width: 50%;
  height: 100vh;
  display: flex;
}

.text-block {
  color: #ffc10e;
  z-index: 4;
  margin-top: 40px;
  margin-bottom: 40px;
  font-family: Lato, sans-serif;
  font-size: 48px;
  line-height: 130%;
}

.text-block-2 {
  color: #fff;
  text-transform: uppercase;
  text-shadow: 3px 4px 4px #0009;
  z-index: 5;
  width: 200%;
  font-family: Montserrat, sans-serif;
  font-size: 60px;
  line-height: 120%;
}

.image-rigth {
  width: 300px;
  display: block;
}

.image-left {
  width: 300px;
  display: none;
}

.body {
  background-color: #590527;
}

@media screen and (min-width: 1280px) {
  .left-side {
    background-position: 0%;
  }

  .text-block-2 {
    max-width: 1200px;
  }
}

@media screen and (max-width: 991px) {
  .rigth-side {
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: 50vh;
    padding-left: 5%;
  }

  .section {
    flex-flow: column-reverse;
    justify-content: flex-end;
    align-items: flex-start;
    height: auto;
  }

  .left-side {
    width: 100%;
    height: 50vh;
  }

  .text-block {
    font-size: 40px;
  }

  .text-block-2 {
    width: 90%;
    font-size: 50px;
  }

  .image-rigth {
    display: none;
  }

  .image-left {
    margin-bottom: 40px;
    margin-left: 5%;
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .text-block {
    font-size: 32px;
  }

  .text-block-2 {
    font-size: 40px;
  }

  .image-left {
    width: 250px;
  }
}

@media screen and (max-width: 479px) {
  .text-block {
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 24px;
  }

  .text-block-2 {
    font-size: 32px;
  }

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


