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


body {
  margin: 0;
  font-family: var(--font-base);
}

html {
  scroll-padding-top: 100px;
  scroll-behavior: smooth;
}

:root {
  --primary-color: #eb0000;
  --light-color: #ffffff;
  --dark-color: #000000;
  --muted-gray: #d9d9d9;
  --font-base: 'Poppins', sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.navbar {
  display: flex;
  color: var(--light-color);
  justify-content: space-between;
  align-items: center;
  padding: 40px 60px;
  background-color: var(--primary-color);
}

.header {
  position: flex;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.footer {
  position: flex;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.home-icon-overlay {
  position: absolute;
  top: 150px;
  left: 115px;
  z-index: 2;
}

.home-icon-overlay i {
  font-size: 25px;
  color: var(--light-color);
  background-color: var(--primary-color);
  border-radius: 50%;
  padding: 12px 10px;
  transition: transform 0.5s, background-color 0.5s ease;
}

.home-icon-overlay i:hover {
  transform: scale(1.2);
  background-color: var(--light-color);
  color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(235, 0, 0, 0.3);
}

.information {
  text-align: center;
  padding: 80px 20px 10px;
}

.info-title {
  font-family: var(--font-base);
  font-size: 70px;
  font-weight: 800;
  color: var(--dark-color);
  margin-top: 20px;
  margin-bottom: 60px;
  line-height: 1;
}

.info-title span {
  color: var(--primary-color);
}

.info-description {
  font-family: var(--font-base);
  font-size: 24px;
  font-weight: 420;
  text-align: justify;
  justify-content: center;
  color: var(--dark-color);
  max-width: 110vh;
  margin: 0 auto;
  line-height: 1.5;
}

.info-description span {
  color: var(--primary-color);
}


.slider-container {
  width: 100%;
  height: 95vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.slider-images {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 21px;
  height: 100%;
}

.slider-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  transition: 0.7s ease;
}

.slider-img {
  flex: 1;
  width: 180px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: 0.7s ease;
}

.slider-img.active {
  flex: 4;
  max-height: 750px;
}

.slider-images .slider-img:first-child {
  height: 65vh
}

.slider-images .slider-img:nth-child(2) {
  height: 75vh;
}

.slider-images .slider-img:nth-child(3) {
  height: 85vh;
}

.slider-images .slider-img:nth-child(5) {
  height: 65vh;
}

.slider-images .slider-img:nth-child(4) {
  height: 75vh;
}

.slider-img h1 {
  font-family: var(--font-base);
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.7s ease;
  text-shadow: 0 0 3px #000000;
  writing-mode: sideways-lr;
}

.details {
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.slider-img .details {
  pointer-events: none;
}

.slider-img .details * {
  pointer-events: auto;
}

.details h2 {
  font-family: var(--font-base);
  font-size: 60px;
  font-weight: 700;
  text-align: left;
  line-height: 44px;
  color: #fff;
  text-transform: uppercase;
  transition: 0.7s ease;
  display: none;
  margin-bottom: 20px;
  text-shadow: 0 0 6px #000000;
}

.details p {
  font-family: var(--font-base);
  font-size: 20px;
  font-weight: 700;
  text-align: left;
  line-height: 33px;
  text-align: left;
  color: #fff;
  transition: 0.7s ease;
  display: none;
  text-shadow: 0 0 6px #000000;
}

.slider-img.active {
  width: 766px !important;
  height: 750px !important;
}

.slider-img.active h1 {
  display: none;
}

.slider-img.active .details p,
.slider-img.active .details h2 {
  display: block;
  text-shadow: 0 0 6px #000000;
}