.brand-client .wapper-client .logo-box { flex-direction: column; }

.brand-client .wapper-client .logo-box > h5 { font-size: 1.25rem; }

.slide-arrow {
  position: absolute;
  top: 50%;
  margin-top: -15px;
  z-index: 1;
  cursor: pointer;
  border-right: 5px solid #ff9800;
  border-bottom: 5px solid #ff9800;
  height: 25px;
  width: 25px;
  transform: rotate(-45deg) translateY(-50%);
}

.slide-arrow.prev-arrow {
  left: 50px;
  transform: rotate(135deg) translateY(50%);
}

.slide-arrow.next-arrow { right: 40px; }

.v-light .client-see .slide-arrow { border-color: #ff9800; }

.client-see .slide-arrow.prev-arrow { left: -10px; }

.client-see .slide-arrow.next-arrow { right: -30px; }


.scroll-to-top {
  position: fixed;
  right: 50px;
  bottom: 50px;
  opacity: 0;
  transition: 0.5s ease all;
  cursor: pointer;
}

.scroll-to-top.show { opacity: 1; }

.scroll-to-top img { width: 30px; }

@keyframes draw-svg {
  from { stroke-dashoffset: 1; }
  to { stroke-dashoffset: 0; }
}
.draw-svg path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: draw-svg 5s linear alternate infinite;
}

.map-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.map-content img {
  filter: drop-shadow(3px 2px 10px white);
}

@media only screen and (max-width: 767px) {

 .client-see .slide-arrow.prev-arrow{
    left: 15px;
  }

  .client-see .slide-arrow.next-arrow{
    right: 0;
  }



}