.scroll_box {
    padding: 0 20px; 
  }
.popup-buttons1, .popup-buttons2 {
  position: fixed;
  bottom: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1000;
  transition: transform 0.5s ease-out, opacity 0.5s ease-out;
  opacity: 0;
  transform: translateX(-100%);
  left: 0; 
}

.popup-buttons1 {
  bottom: 160px;
  margin-bottom: 3%; 
}

.popup-buttons2 {
  left: 0; 
  bottom: 80px;
  margin-bottom: 10px;
}

.popup-buttons1 img, .popup-buttons2 img {
  width: 80px;
  height: auto;
  margin: 20px 0;
  cursor: pointer;
  transition: transform 0.3s;
  margin-bottom:30px;
}

.popup-buttons1 img:hover, .popup-buttons2 img:hover {
  transform: scale(1.1);
}

.popup-buttons1.visible, .popup-buttons2.visible {
  opacity: 1;
  transform: translateX(0);
}

@media only screen and (max-width: 767px) {

  img {
    margin-bottom: 5px; 
  }

  .popup-buttons1 {
    bottom: 160px; 
    margin-bottom: 10px; 
  }

  .popup-buttons2 {
    left: 0; 
    bottom: 80px;
    margin-bottom: 10px;
  }

  .popup-buttons1 img, .popup-buttons2 img {
    width: 50px;
    height: auto;
    margin: 0;
    cursor: pointer;
    transition: transform 0.3s;
  }

  .scroll_box {
    padding: 0 10px;
  }
}