.hero-top.d-flex.justify-content-between {
    align-items: center;
}

#map2 {
    filter: grayscale(100%);
  }
  

img.pswp__img{
    width: 85vw !important;
}

img.pswp__img {
    width: 1600px !important;
}

.sds {
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.title-container {
    text-align: center;
    cursor: pointer;
    position: relative;
  }
  
  .title {
    font-size: 24px;
    margin-bottom: 10px;
    position: relative;
  }
  
  .underline {
    width: 200px;
    height: 2px;
    background: white;
    margin: 0 auto;
    position: relative;
  }
  
  .arrow {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid white;
    margin: 8px auto 0 auto;
    transition: transform 0.3s ease;
  }
  
  .scroll-container {
    width: 50vw;
    height: 200px;
    overflow: hidden;
    margin-top: 20px;
    position: relative;
    perspective: 300px;
    background: #111111b9;
    display: none;
  }
  
  .scroll-text {
    position: absolute;
    bottom: -100%;
    width: 100%;
    text-align: center;
    animation: scroll-up 15s linear forwards;
    transform: rotateX(2deg);
    font-size: 16px;
    padding: 55px;
  }
  
  .scroll-text.manual-scroll {
    animation: none !important;
    overflow-y: auto;
    max-height: 200px;
    position: relative;
  }
  
  @keyframes scroll-up {
    from {
      top: 70%;
    }
    to {
      top: -1100%;
    }
  }
  
  .active .arrow {
    transform: rotate(180deg);
  }
  
  .close-button {
    position: absolute;
    top: 5px;
    right: 10px;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: none;
    z-index: 10;
  }

  div#form-message {
    padding-bottom: 10px;
    font-size: 24px;
    margin-bottom: 50px;
}


/* Call button */
.back-to-top2 {
    position: fixed;
    background: #5a9129;
    color: #fff;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    border-radius: 5px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 9;
}

.back-to-top2:hover {
    color: #ffffff;
    background: #000000;
}

.back-to-top2 i {
    padding-top: 10px;
}

a.back-to-top2 {
    display: flex;
    align-items: center;
    justify-content: center;
}