/* Hero */
.hero {
  margin-top: unset;
  width: 100vw;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .slide-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.my-slides {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.slide-content {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.25);
  padding: 4rem;
}
.slide-content .text-wrap {
  position: absolute;
  bottom: 10%;
  padding: 2rem 3rem;
  border-bottom: 5px var(--btn-bg) solid;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.bts {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide-title {
  font-size: 2.5rem;
  color: var(--sub-text-color);
  line-height: 1;
  text-align: center;
}
.slide-tag-txt {
  font-size: var(--main-text-size);
  color: var(--sub-text-color);
  line-height: 1;
  text-align: center;
  margin-top: 1rem;
}
.btn-ic {
  width: 25px;
  height: 25px;
  margin-left: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Hero */
/* Culture */
.cul .container {
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.top-cul-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.top-cul-wrap .img {
  max-width: 600px;
  width: 100%;
  height: 300px;
}
.top-cul-wrap .dtls {
  max-width: 400px;
  width: 100%;
  padding: 2rem;
}
/* Hide the images by default */
.mySlides {
  display: none;
  height: 500px;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 40%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-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);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 1.5rem;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Container for image text */
.caption-container {
  text-align: center;
  background-color: #222;
  padding: 1rem 2rem;
  color: white;
}
.caption-container p {
  font-size: 2rem;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Six columns side by side */
.column {
  float: left;
  width: 16.66%;
}

/* Add a transparency effect for thumnbail images */
.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}
/* Culture */
/* Other cultures */
.other-culs .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.other-cul {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.other-cul-img {
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.other-cul-dtls {
  padding: 2rem;
  background-color: #fff;
  position: absolute;
  bottom: 2rem;
  left: 0;
  width: 70%;
  border-top-right-radius: 5rem;
  border-bottom-right-radius: 5rem;
}
.other-cul .other-cul-dtls-2 {
  padding: 2rem;
  background-color: #fff;
  position: absolute;
  bottom: 2rem;
  right: 0;
  width: 70%;
  border-top-left-radius: 5rem;
  border-bottom-left-radius: 5rem;
}
.other-cul-dtls .paragraph,
.other-cul-dtls-2 .paragraph {
  background-color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.other-cul-dtls h2,
.other-cul-dtls-2 h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
/* Other cultures */
@media screen and (min-width: 1290px) {
  .slide-content .text-wrap {
    border-left: 5px var(--btn-bg) solid;
    border-bottom: none;
  }
}

@media screen and (max-width: 767px) {
  .other-culs .container {
    grid-template-columns: 1fr;
  }
  .other-cul {
    flex-direction: column;
  }
  .other-cul-img {
    height: unset;
  }
  .other-cul-dtls,
  .other-cul .other-cul-dtls-2 {
    width: 100%;
    position: unset;
  }
}
