.text-rendering {
    text-rendering: optimizeLegibility;
}
.font-uppercase {
    font-feature-settings: "case" on !important;
	text-transform: uppercase;
}




/*text rotate*/
  @keyframes spin-slow {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

  .animate-spin-slow {
    animation: spin-slow 15s linear infinite;
  }


/*video*/
button.vjs-big-play-button {
    border-radius: 0 !important;
}




[x-cloak] {
    display: none !important;
}


/*scroll to top*/
#button {
	display: none;
	position: fixed;
	right:  30px;
	bottom:  30px;
	cursor: pointer;
	z-index: 1000;
}
#button.show {
  display: block;
}
@media only screen and (max-width: 600px) {
    #button {
    bottom: 30px;
    right: 10px;
}
}

/*slider text color*/
.text-white {
    color: #fff;
}
.text-black {
    color: #000;
}


/*gallery*/
.gallery-container  .swiper-button-prev, 
.gallery-container  .swiper-button-next {
    width: 40px;
    height: 40px;
    background: rgb(0 0 0 / 50%);
    justify-content: center;
    align-items: center;
	border-radius: 100%;
	-webkit-transition:  all 0.4s ease-in-out 0s;
	transition:  all 0.4s ease-in-out 0s;
}
.gallery-container .swiper-button-next::after {
	content: "\2192";
	font-size: 1.5rem;
	padding-bottom: 8px;
	color: #fff;
}
.gallery-container  .swiper-button-prev::after {
	content: "\2190";
	font-size: 1.5rem;
	padding-bottom: 8px;
	color: #fff;
	-webkit-transition:  all 0.4s ease-in-out 0s;
	transition:  all 0.4s ease-in-out 0s;
}
.gallery-container  .swiper-button-prev:hover, 
.gallery-container  .swiper-button-next:hover {	
	 background: rgb(0 0 0 / 80%);
	-webkit-transition:  all 0.4s ease-in-out 0s;
	transition:  all 0.4s ease-in-out 0s;
}




p  {
	margin-bottom: 0.5rem;
}


