* {
  padding: 0;
  margin: 0;
  font-family: "Poppins", Arial, Helvetica, sans-serif;
}

body {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background-color: white;
  z-index: -1;
}

.background img {
  height: 100%;
  width: 100%;
}

.main-title {
  font-size: 24px;
  cursor: pointer;
  padding: 25px 100px;
  color: #4A4A4A;
  display: none;
}

.side-indicator {
  height: 70%;
  width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}

.side-indicator__line {
  position: absolute;
  width: 1px;
  height: 70%;
  background-color: #ef7b009f;
  opacity: 0.7;
}

.index {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background-color: #ef7b00;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: height 0.7s ease, width 0.7s ease;
}

.index p {
  opacity: 0;
  color: white;
  font-size: 10px;
  font-weight: bold;
  z-index: 9;
}

.active {
  height: 30px;
  width: 30px;
  background: #EF7D00;
  z-index: 1;
}

.active p {
  opacity: 1;
  font-size: 16px;
}

.content {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.text-wrapper {
  width: 60%;
}

.text {
  padding-left: 300px;
  padding-right: 0;
}

#title {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-bottom: 20px;
}

.text h4 {
  font-family: "Oswald";
  font-size: 3.5em;
  color: #EF7D00;
  position: relative;
}

#description {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

#description p {
  color: #4A4A4A;
  font-size: 16px;
  opacity: 0.8;
  position: relative;
}

.btn {
  width: 150px;
  background-color: transparent;
  display: flex;
  align-items: center;
  padding: 10px 10px;
  border-radius: 8px;
  margin-top: 60px;
  justify-content: space-evenly;
  cursor: pointer;
}

.btn p {
  color: #EF7D00;
  font-size: 18px;
}

.btn i {
  color: #EF7D00;
}

.glide {
  width: 40%;
}

.glide_cover{
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: 1;
  cursor: default;
}

.slide {
  height: 500px;
  width: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-right: 40px;
  flex-shrink: 0;
}

.slider-image {
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  transition: all 0.5s;
}

.glide__slide--active .slider-image {
  height: 500px;
}

.slider-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide p {
  color: #4A4A4A;
  font-size: 14px;
}

.rating {
  display: flex;
  width: 60px;
  padding: 8px 0;
  justify-content: space-between;
}

.circle {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4A4A4A;
  opacity: 0.5;
}

.active {
  opacity: 1;
}

.controls {
  width: 80px;
  display: flex;
  justify-content: space-between;
  position: relative;
  top: 20px;
}

.controls div {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background-color: #4A4A4A;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.7;
  transition: all 0.5s;
}

.controls div:active {
  transform: scale(0.6);
}

.controls i {
  color: #FFF;
  font-size: 12px;
  cursor: pointer;
}

@media  only screen and (max-width: 1600px){
  nav{
    padding: 25px 80px;
  }
  .side-indicator {
    width: 100px;
  }
  .text-wrapper {
    width: 50%;
  }
  .glide {
    width: 50%;
  }
  .text {
    padding-left: 100px;
  }
  /* .text h4 {
    transform: scale(0.8);
    transform-origin: left;
  } */
  .btn {
    width: 120px;
  }
  .btn p {
    font-size: 14px;
  }
}

@media  only screen and (max-width: 1300px){
  nav{
    padding: 25px 40px;
  }
  /* .text h4 {
    transform: scale(0.6);
    transform-origin: left;
  } */
  .slide {
    height: 400px;
    width: 220px;
  }
}

@media  only screen and (max-width: 1200px){
  .side-indicator {
    width: 120px;
  }
  .text{
    padding-left: 120px;
  }
  .content {
    flex-direction: column;
  }
  .text-wrapper {
    width: 100%;
  }
  .glide {
    width: 100%;
    padding-left: 120px;
    padding-top: 40px;
  }
  .btn {
    margin-top: 30px;
  }
  .slide {
    height: 300px;
    width: 200px;
  }
  .slider-image {
    height: 220px;
  }
  .slide p {
    font-size: 12px;
  }
}

@media  only screen and (max-width: 600px){
  .text {
    padding-left: 20px;
    padding-top: 30px;
  }
  
  .side-indicator {
    position: absolute;
    left: 0;
    top: 38%;
    width: 60px;
  }

  .glide {
    padding-left: 80px;
  }
}