* {box-sizing: border-box}
body {font-family: Verdana, sans-serif; margin:0}
.mySlides {display: none}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: 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;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.1s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 10s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}


.footer{
  width: 100%;
  height: 20px; /* Tinggi footer */
  position: fixed; /* Atau bisa diganti dengan position: absolute; */
  bottom: 0;
  left:0;
  right:0;
  background-color: skyblue;
  color: white;
  text-align: center;
  line-height: 10px;
  margin-top: 100px;
  font-size: 16px;
  
  
}

.foter p{
  margin-top: 3px;
}



.contact-inner{
    font-family: sans-serif;
    text-align: center;
    margin-top: 100px;
}
.bi-whatsapp{
  font-size: 20px;
}

.bi-geo-alt{
    font-size: 20px;
    margin-top: 10px;
}

.news-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Untuk menengahkan card */
  margin-top: 20px;
  margin-bottom: 20px;
}


.news-card {
  width: 300px; /* Sesuaikan lebar dengan kebutuhan Anda */
  border: 1px solid #ddd;
  border-radius: 15px;
  margin: 10px;
  overflow: hidden; /* Mengatur overflow untuk memotong teks yang terlalu panjang */
  
}

.news-card img {
  width: 100%;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  
}

.news-card h2 {
  font-size: 18px;
  margin: 10px;
  margin-right: 30px;
}

.news-card p {
  width: 40%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
 
}


.read-more {
  display: block;
  background-color: #007bff;
  color: #fff;
  text-align: center;
  padding: 10px;
  text-decoration: none;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
margin-bottom: 50px;
}

.read-more:hover {
  background-color: #0056b3;
}






.pagination {
    margin-top: 20px;
}

.card-img-top {
    height: 250px;
    object-fit: cover;
}

.card-text {
    height: 60px;
    overflow: hidden;
    text-overflow: ellipsis;
}
