/* Slideshow container */
.slideshow-container {
  /* max-width: 1000px; */
  position: relative;
  margin: auto;
  width:100%;
  /* margin-top:-110px; */
}

.mySlides img{
    width:100%;
    height:auto;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

.slideCaption{
    background-color: rgb(186 136 41 / 75%);
    color: #ffffff;
    padding: 20px 25px;
    position: absolute;
    font-family: 'Noto Sans Thai', sans-serif;
    font-size: 25px;
    font-weight: 600;
    top: 22%;
    left: 2%;
    width: 44%;
    text-shadow: 0 0 5px #a66a0b;
    border-radius: 0;
    text-align:center;

    background: rgb(167,110,17);
    background: -moz-linear-gradient(45deg,  rgba(167,110,17,0.75) 0%, rgba(226,196,103,0.75) 50%, rgba(211,179,97,0.75) 54%, rgba(167,110,17,0.75) 100%);
    background: -webkit-linear-gradient(45deg,  rgba(167,110,17,0.75) 0%,rgba(226,196,103,0.75) 50%,rgba(211,179,97,0.75) 54%,rgba(167,110,17,0.75) 100%);
    background: linear-gradient(45deg,  rgba(167,110,17,0.75) 0%,rgba(226,196,103,0.75) 50%,rgba(211,179,97,0.75) 54%,rgba(167,110,17,0.75) 100%); 
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a76e11', endColorstr='#a76e11',GradientType=1 );

}
.slide-2 .slideCaption{
    top: auto;
    bottom: 5%;
    left: 4%;
    text-align: left;
    width: 46%;
    background: linear-gradient(45deg,  rgba(167,110,17,0.55) 0%,rgba(226,196,103,0.55) 50%,rgba(211,179,97,0.55) 54%,rgba(167,110,17,0.55) 100%); 
}

/* The dots/bullets/indicators */
.slideDots{
    width:100%;
    position:absolute;
    bottom:0;
    text-align:center;
}
.dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 2px;
    background-color:rgb(255 255 255 / 70%);
    border-radius: 0;
    display: inline-block;
    transition: background-color 0.6s ease;

    /* display:none; */
}
.active, .dot:hover {
  background-color: #bb9352;
}

/* Fading animation */
.fade {
    animation-name: fade; 
    animation-duration: 10s;
}

@keyframes fade {
    0% {
        opacity:0.7;
	}
	50% {
		opacity:1.0;
	}
	100% {
		opacity:1.0;
	}
}