.slider_loc {
    position: relative;
    width: 50vw;
    max-width: 500px;
    height: 500px;
  }
  
  .slider_loc .slide_loc {
    position: absolute;
    border: solid black;
    border-radius: 8px;
    transition: opacity 1s;
    opacity: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
  }
  
  .slider_loc .slide_loc.current-slide {
    opacity: 1;
    z-index: 2;
  }
  
  .prev_loc, .next_loc {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    text-align: center;
    z-index: 3;
  }
  
  .prev_loc {
    left: 5%;
  }
  
  .next_loc {
    right: 5%;
  }
  
  .content {
    display: flex;
  }
  
  .details {
    margin-left: 40px;
    max-width: 65%;
  }
  
@media (max-width: 1620px) {
  .content {
    flex-direction: column;
    align-items: center;
  }

  .slider_loc {
    max-width: 200%;
    width: 70vw;
    height: 70vw
  }

  .prev_loc, .next_loc {
    width: 75px;
    height: 75px;
    font-size: 50px;
  }

  .prev_loc {
    left: -15%;
  }

  .next_loc {
    right: -15%;
  }

  .details {
    margin-top: 1%;
    margin-left: 0;
    text-align: center;
    width: 100%;
    max-width: 90%;
    font-size: 40px;
  }
}
