.wrap {
  height: calc(100vh - 530px);
  background: black;
  overflow: hidden;
}
.road {
  width: 30px;
  height: 300px;
  margin: auto;
}

.line div {
  width: 30px;
  height: 150px;
  margin-bottom: 80px;
  background: #fff;
}
.button {
  padding: 1em 3em;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 500;
  color: #000;
  background-color: #fff;
  border: none;
  border-radius: 45px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease 0s;
  cursor: pointer;
  outline: none;
  display: inline-block;
}

.button:hover {
  background-color: #ce3827;
  box-shadow: 0px 15px 20px #ce382746;
  color: #fff;
  transform: translateY(-7px);
}

.button:active {
  transform: translateY(-1px);
}

@media screen and (max-width: 3840px) {
  .wrap {
    height: calc(100vh - 530px);
    background: black;
    overflow: hidden;
  }
}

@media screen and (max-width: 1660px) {
  .wrap {
    height: calc(100vh - 350px);
    background: black;
    overflow: hidden;
  }
}
body {
  position: relative;
  z-index: 1;
}
body::before {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 50%;
  content: "";
}
