.swiper-slide.item {
    display: flex;
    justify-content: center;
	    padding: 5px 10px 10px 5px;
}

.home-banner img {
  max-height: 85vh;
}
.slider-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0 0 0;
}

.swiper-pagination-bullet {
    /*width: 55px;*/
    /*height: 10px;*/
    display: inline-block;
    /*border-radius: 0px;*/
    background: #000;
    opacity: .5;
    margin: 0 5px 0 0;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #f5821f;
}

.swiper-button-next, .swiper-button-prev {
  transform: scale(0.4)
}

@media only screen and (max-width: 768px) {
  .swiper-button-prev, .swiper-button-next {
     height: 20px!important;
  }
  .swiper-pagination-bullet {
     display: none!important
  }
}


.topbutton {
     height:40px;
     width:40px;
     position:fixed;
     right:25px;
     bottom:25px;
     z-index:1;
     background-repeat:no-repeat;
     display:none;
	border: solid 1px;
    border-radius: 20px;
	cursor: pointer;
}

.topbutton:hover {
	background-color: #f5821f
}
.topbutton::before {
	content: "\f106";
    font-family: "Font Awesome 6 Free";
	font-weight: 900;
	font-size: 25px;
	margin-left: 8px;
}

.topbutton:hover::before {
	color: #ffffff
}

