* {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Red Hat Text', sans-serif;
    font-size: 100%;
    scroll-behavior: smooth;
}

.main-line {
  background-color: #FFF;
  width: 25px;
  min-height: calc(100vh + 100px);
  position: absolute;
  right: 0;
}

.small-arrow-right {
  position: absolute;
  top: 118px;
  right: 25px;
  width: 0;
  height: 0;
  border-width: 32.5px 39px 32.5px 0;
  border-color: transparent #FFF transparent transparent;
  border-style: solid;
}

.left-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 25px;
    height: 100%;
    background-color: #F8F8F8;
  }
  
  .left-arrow {
    position: absolute;
    top: 118px;
    left: 25px;
    width: 0;
    height: 0;
    border-width: 32.5px 0 32.5px 39px;
    border-color: transparent transparent transparent #F8F8F8;
    border-style: solid;
  }

  .left-arrow-list-offer {
    position: absolute;
    top: 331px;
    left: 25px;
    width: 0;
    height: 0;
    border-width: 32.5px 0 32.5px 39px;
    border-color: transparent transparent transparent #FFFFFF;
    border-style: solid;
}

  @media only screen and (max-width: 1024px) {
    .main-line, .left-line, .left-arrow, .small-arrow-right, .left-arrow-list-offer {
      display: none;
    }
  }