
.highlight {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.highlight-img {
  width: 50vw;
  height: 70vh;
  overflow: hidden;
}

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

.highlight-text {
  width: 50%;
  padding: 5vh 5vw;
}

.highlight-text h1 {
  margin-bottom: 3vh;
}

.highlight-img .slideshow {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.highlight-img .slide-list img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fitting {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fitting-header {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: 10vh 0 2vh 0;
}

.highlight-text h5 {
  text-align: left;
  margin: 0 0 20px 4rem;
}

h4 {
  margin: 0 0 20px 4rem;
  text-align: center;
}

h4::before, h5::before {
  display: block;
  position: relative;
  content: '';
  right: 65px;
  top: 14px;
  height: 3px;
  width: 4rem;
  background-color: var(--orange);
}

h5::before {
  top: 11px;
  width: 3rem;
  right: 50px;
}

@media only screen and (max-width: 768px) {
  .highlight {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .fitting-header {
    margin: 2vh 0;
  }

  .highlight-img {
    width: 100%;
    height: 40vh;
  }

  .highlight-text {
    width: 100%;
  }
}

.slide-list {
  display: flex;
  transition: transform 1s;
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  min-width: 100%;           /* only one slide visible */
  height: auto;
}

.slide img {
  width: 100%;
  height: auto;              /* no stretching */
  object-fit: cover;
}

.slideshow .buttons{
    position: absolute;
    top: 45%;
    left: 5%;
    width: 90%;
    display: flex;
    justify-content: space-between;
}

.slideshow .buttons button{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff;
    border: none;
    font-family: monospace;
    font-weight: bold;
}
.slideshow .dots{
    position: absolute;
    bottom: 10px;
    left: 0;
    color: #fff;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}
.slideshow .dots li{
    list-style: none;
    width: 10px;
    height: 10px;
    background-color: #fff;
    margin: 10px;
    border-radius: 20px;
    transition: 0.5s;
    cursor: pointer;
}
.slideshow .dots li.active{
    background-color: var(--orange);
}
@media screen and (max-width: 768px){
    .slideshow{
        height: 400px;
    }
}

#prev::before {
  visibility: hidden;
  content: "\f104";
}

#next::before {
  visibility: hidden;
  content: "\f105";
}

#prev, #next {
  visibility: hidden;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 20px;
  color: var(--orange);
  display: inline-block;
  text-align: center;
  line-height: 44px;
  transition: color 0.1s ease-in-out;
}

#prev:hover, #next:hover {
  visibility: hidden;
  background-color: var(--orange);
  color: white;
  cursor: pointer;
}