.section-map {
  position: relative;
}

.section-map .map__logo {
  position: absolute;
  bottom: 40px;
  right: 50px;

}

@media screen and (max-width: 769px) {
  .section-map .map__logo {
      left: 50px;
      right: unset;
  }
}

.landBox {
  padding: 1rem;
  min-width: 150px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;

  filter: drop-shadow(0px 3px 3.5px rgba(0, 0, 0, 0.09));
  background-color: #ffffff;
  border: 1px solid #d1d1d1;
  border-radius: 5px;


}

@media screen and (max-width: 769px) {
  .landBox {
      position: fixed !important;
      top: unset !important;
      bottom: 3rem !important;
      left: 50% !important;
      transform: translateX(-50%);
      width: calc(100% - 4rem);
  }
}

.landBox p {
  margin: 0;
  margin-bottom: 0 !important;
  font-size: 1rem;
}

.landBox .land-status {
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  font-size: 20px;
  line-height: 26px;
  text-transform: uppercase;
  color: transparent;
  font-family: "Inter";
}

.landBox .land-status.red {
  color: #ff0000;
}

.landBox .land-status.orange {
  color: #FFD091;
}

@media screen and (max-width: 769px) {
  .landBox .land-status {

      position: absolute;
      top: unset;
      right: 1rem;
      left: unset;
      bottom: 0;

      transform: translate(0%, -50%) rotate(0);
      font-size: 18px;
      line-height: 1;

  }
}

.preloader {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(255, 255, 255, 0.8);
display: flex;
justify-content: center;
align-items: center;
z-index: 9999;
border: solid 1px #f1f1f1;
}

.loader-text {
font-size: 24px;
font-weight: bold;
animation: blink 1s infinite alternate; 
}

@keyframes blink {
0% {
  opacity: 1; 
}
100% {
  opacity: 0; 
}
}