
.wrapper {
  max-width: 1080px;
  margin: 50px auto;
  padding: 0 20px;
  position: relative;
}

.wrapper .center-line {
  position: absolute;
  height: 100%;
  width: 4px;
  background: #47515e;
  left: 50%;
  transform: translateX(-50%);
}

.wrapper .row {
  display: flex;
}

.wrapper .row-1 {
  justify-content: flex-start;
}
.wrapper .row-2 {
  justify-content: flex-end;
}

.wrapper .row section {
  width: calc(50% - 40px);
  position: relative;
}

.row section .icon,
.center-line .scroll-icon {
  position: absolute;
  background: #47515e;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  font-size: 17px;
}

.center-line {
  bottom: 0px;
  left: 50%;
  font-size: 25px;
  transform: translateX(-50%);
}

.row-1 section .icon {
  top: 40%;
  right: -60px;
}

.row-2 section .icon {
  top: 40%;
  left: -60px;
}

.row section .details {
  display: flex;
  align-items: center;
  /*justify-content: space-between;*/
}

.row section .bottom a {
  text-decoration: none;
  background: #ff7979;
  color: #fff;
  padding: 7px 15px;
  border-radius: 5px;
  /* font-size: 17px; */
  font-weight: 400;
  transition: all 0.3s ease;
}

.row section .bottom a:hover {
  transform: scale(0.97);
}

.details-img {
  width: 50%;
  display: block;
}

.details-text, .details-text-pc{
  width: 50%;
  display: block;
  text-align: center;
}

.details-text-movil {
  width: 50%;
  display: none;
  text-align: center;
}

.details-text-1 {
  text-align: center;
    font-size: 35px;
    color: #FF6E00;
    font-family: arial, helvetica;
    font-weight: 800;
}

.details-text-2 {
  text-align: center;
  font-size: 22px;
  color: #47515e;
  font-family: arial, helvetica;
}

.details-text-3 {
  text-align: center;
  font-size: 14px;
  color: #47515e;
  font-family: arial, helvetica;
  margin: 10px 0;
}

@media(max-width: 790px) {
  .wrapper .center-line{
    left: 40px;
  }
  .wrapper .row{
    margin: 30px 0 3px 60px;
  }
  .wrapper .row section{
    width: 100%;
  }
  .row-1 section::before{
    left: -7px;
  }
  .row-1 section .icon {
    left: -60px;
  }
  .details-text-pc {
    display: none;
  }
  .details-text-movil {
    display: block;
  }
}