@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Oswald:wght@500&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.slider-section {
  position: relative;
  height: 100vh;
  width: 100vw;
  background-color: #000;
  overflow: hidden;
}

.slider-section .entire {
  color: #ffffffdd;
  position: relative;
  height: 100%;
  width: 100%;
}

.slider-section .card {
  position: absolute;
  left: 0;
  top: 0;
  background-position: center;
  background-size: cover;
  box-shadow: 6px 6px 10px 2px rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
}

.slider-section .card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.slider-section .card-content {
  position: absolute;
  left: 0;
  top: 0;
  color: #ffffffdd;
  padding-left: 16px;
}

.slider-section .content-place {
  margin-top: 6px;
  font-size: 6px;
  font-weight: 500;
}

.slider-section .content-title-1,
.slider-section .content-title-2 {
  font-weight: 600;
  font-size: 14px;
  color: white;
  font-family: "Oswald", sans-serif;
}

.slider-section .content-start {
  width: 30px;
  height: 5px;
  border-radius: 99px;
  background-color: #ffffffdd;
}

.slider-section .details {
  z-index: 22;
  position: absolute;
  top: 240px;
  left: 60px;
}

.slider-section .details .place-box {
  height: 46px;
  overflow: hidden;
}

.slider-section .details .place-box .text {
  /* padding-top: 16px;
  font-size: 20px;
  color: white; */
}

.slider-section .details .place-box .text:before {
  /* top: 0;
  left: 0;
  position: absolute;
  content: "";
  width: 30px;
  height: 4px;
  border-radius: 99px;
  background-color: white; */
}

.slider-section .details .title-1,
.slider-section .details .title-2 {
  color: white;
  font-weight: 600;
  font-size: 72px;
  font-family: "Oswald", sans-serif;
}

.slider-section .details .title-box-1,
.slider-section .details .title-box-2 {
  margin-top: 2px;
  height: 100px;
  overflow: hidden;
}

.slider-section .details > .desc {
  margin-top: 16px;
  width: 500px;
}

.slider-section .details > .cta {
  width: 500px;
  margin-top: 24px;
  display: flex;
  align-items: center;
}

.slider-section .indicator {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 5px;
  z-index: 60;
  background-color: #ecad29;
}

.slider-section .pagination {
  position: absolute;
  left: 0px;
  top: 0px;
  display: inline-flex;
}

.slider-section .pagination > .arrow {
  z-index: 60;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  border: 2px solid #ffffff55;
  display: grid;
  place-items: center;
}

.slider-section .pagination > .arrow:nth-child(2) {
  margin-left: 20px;
}

.slider-section .pagination svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
  color: #ffffff99;
}

.slider-section .pagination .progress-sub-container {
  margin-left: 24px;
  z-index: 60;
  width: 500px;
  height: 50px;
  display: flex;
  align-items: center;
}

.slider-section .pagination .progress-sub-background {
  width: 500px;
  height: 3px;
  background-color: #ffffff33;
}

.slider-section .pagination .progress-sub-foreground {
  height: 3px;
  background-color: #ecad29;
}

.slider-section .pagination .slide-numbers {
  width: 50px;
  height: 50px;
  overflow: hidden;
  z-index: 60;
  position: relative;
}

.slider-section .pagination .slide-numbers .item {
  width: 50px;
  height: 50px;
  position: absolute;
  color: white;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  font-size: 32px;
  font-weight: bold;
}

.slider-section .cover {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  z-index: 100;
}

.header-section {
  padding: 2rem;
  background-color: #f8f8f8;
  color: #333;
  margin-bottom: 2rem;
}

.header-section h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-family: "Oswald", sans-serif;
}

.header-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
}

footer {
  padding: 2rem;
  background-color: #333;
  color: white;
  text-align: center;
  margin-top: 2rem;
}

footer p {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
} 

@media (max-width: 480px) {
  .slider-section {
    height: 100vh;
  }

  .slider-section .details {
    top: 15%;
    left: 5%;
  }

  .slider-section .details .title-1,
  .slider-section .details .title-2 {
    font-size: 1.8rem;
  }

  .slider-section .details > .desc {
    font-size: 0.8rem;
  }

  .slider-section .pagination {
    bottom: 5px;
  }

  .header-section h1 {
    font-size: 1.5rem;
  }

  .header-section p {
    font-size: 0.85rem;
  }

  footer {
    font-size: 0.85rem;
  }
}