
.sliderContainer{
  display: flex;
  justify-content: center;
  align-items: center;
  /* height: calc(100vh - 230px); */
}

.slider{
	position: relative;
	width: 100%;
	height: 100%;
	background: #2c3e50; /* darckblue */
}

.myslide{
	height: 100%;
	display: none;
	overflow: hidden;
}

.prev, .next{
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	font-size: 50px;
	padding: 15px;
	cursor: pointer;
	color: #fff;
	transition: 0.1s;
	user-select: none;
}

.prev:hover, .next:hover{
	color: #00a7ff; /* blue */
}

.next{
	right: 0;
}

.dotsbox{
	position: absolute;
	left: 50%;
	transform: translate(-50%);
	bottom: 20px;
	cursor: pointer;
}

.dot{
	display: inline-block;
	width: 15px;
	height: 15px;
	border: 3px solid #fff;
	border-radius: 50%;
	margin: 0 10px;
	cursor: pointer;
}
/* /2 */

/* javascript */
.active, .dot:hover{
	border-color: #00a7ff; /* blue */
}
/* /javascript */

/* muslide add fade */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: 0.8}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: 0.8}
  to {opacity: 1}
}
/* /muslide add fade */

/* 3 */
.txt{
	position: absolute;
	top: 35%;
	right: 5%;
	-webkit-animation-name: posi;
  -webkit-animation-duration: 2s;
  animation-name: posi;
  animation-duration: 2s;
	z-index: 1;
	text-align: right;
  width: 300px;
}

@-webkit-keyframes posi {
  from {right: 25%;}
  to {right: 5%;}
}


@keyframes posi {
  from {right: 25%;}
  to {right: 05%;}
}

.txt h2{
  color: #2155CD;
  font-size: 1.2rem;
  margin-bottom: 0px;
  background-color: rgba(255,255,255,.8);
  padding: 6px;
  border-radius: 5px 5px 0px 0px;
}
.txt p{
	font-weight: bold;
	font-size: 17px;
  background-color: rgba(0,0,0,.6);
  padding: 20px;
  border-radius: 0px 0px 5px 5px;
  color: #FFC107;
}
/* /3 */

/* 4 */
.myslide img{
	transform: scale(1.5, 1.5);
	-webkit-animation-name: zoomin;
  	-webkit-animation-duration: 40s;
  	animation-name: zoomin;
  	animation-duration: 40s;
}
/* @-webkit-keyframes zoomin {
  from {transform: scale(1, 1);}
  to {transform: scale(1.5, 1.5);}
}


@keyframes zoomin {
  from {transform: scale(1, 1);}
  to {transform: scale(1.5, 1.5);}
} */
/* /4 */



/* 5 */
@media screen and (max-width: 800px){
	.myslide{
		height: 500px;
	}

  .slider{
    height: auto;
  }

 .sliderContainer{
     height: auto;
 }

	.txt{
		/* letter-spacing: 2px;
		line-height: 25px; */
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		-webkit-animation-name: posi2;
		-webkit-animation-duration: 2s;
		animation-name: posi2;
		animation-duration: 2s;
	}

	@-webkit-keyframes posi2 {
	  from {top: 35%;}
	  to {top: 50%;}
	}


	@keyframes posi2 {
	  from {top: 35%;}
	  to {top: 50%;}
	}

	.txt h1{
		font-size: 40px;
	}
	.txt p{
		font-size: 13px;
	}

}
/* /5 */

/* 6 */
@media screen and (max-width: 520px){
  .myslide{
		height: 300px;
	}

	.txt h1{
		font-size: 30px;
		margin-bottom: 20px;
	}
	.sign{
		margin-right: 20px;
	}
	.sign a{
		font-size: 12px;
	}
}
/* /6 */
@media screen and (max-width: 480px){
  .myslide{
    height: 300px;
  }

  .txt h2{
    font-size: 0.9rem;
    }

}
