#highlights {
  width: 100%;
  position: relative;
  overflow: hidden;
  height: auto;
  margin-bottom: 2.5%;
}

#highlights figure,
#highlights img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.highlight {
  position: relative;
  width: 100%;
  display: block;
  height: auto;
  text-align: center;
  color: #fff;
  font-size: 48px;
  text-decoration: underline;
}

.widthContainer {
  width: 100%;
}

#imageGroupTitle {
  font-size: 20px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-top: 50px;
  margin-bottom: 25px;
  color: #333234;
  text-align: center;
}

.slick-dots {
  bottom: 20px;
}

.slick-dots li button:before {
  /* border: 1px solid #fff; */
  /* border-radius: 100px; */
  width: 40px;
  height: 5px;
  background-color: #fff;
  color: transparent;
  opacity: 0.5;
  font-size: 0;
}

.slick-dots li {
  width: 10px;
  height: 10px;
  margin: 0 20px;
}

.slick-dots li button {
  width: 10px;
  height: 10px;
  padding: 0;
}

.slick-dots li.slick-active button:before {
  opacity: 1;
}

/* .slick-list.draggable {
  max-height: calc(100vh - var(--menu-height));
} */

.categorieContainer {
  position: relative;
  width: 100%;
  margin: 50px auto;
  display: block;
}

.categoriesSlider {
  display: flex;
  justify-content: center;
}

a.box {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.boxText {
  margin-top: 30px;
  width: 100%;
  text-align: center;
  height: auto;
}

.boxImgContainer.first img {
  width: auto;
  max-width: 100%;
  padding: 0px 15px;
}

.boxImgContainer.first {
  height: 30vh;
  width: 100%;
  overflow: hidden;
  margin: auto;
  display: flex;
  justify-content: center;
}

.boxImgContainer.first img:hover {
  transform: scale(1.1);
  transition: transform 0.5s ease-in-out;
}

img.categoriesRightArrow.slick-arrow {
  position: absolute;
  right: 40px;
  top: calc(50% - 30px);
  z-index: 1;
  width: 15px;
  object-fit: contain;
  height: 15px;
  cursor: pointer;
  transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  background: var(--grey);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  padding: 10px;
  border-radius: 50%;
  /* filter: invert(1); */
}

img.categoriesRightArrow.slick-arrow:hover {
  background: var(--base);
}

img.categoriesLeftArrow.slick-arrow {
  position: absolute;
  left: 40px;
  top: calc(50% - 30px);
  z-index: 1;
  cursor: pointer;
  transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  height: 15px;
  width: 15px;
  object-fit: contain;
  background: var(--grey);
  padding: 10px;
  border-radius: 50%;
  /* filter: invert(1); */
}

img.categoriesLeftArrow.slick-arrow:hover {
  background: var(--base);
}

body .group-look-slider-title {
  font-size: calc(var(--base-font-size) + 6px);
  line-height: calc(var(--base-font-size) + 10px);
  width: 95%;
  margin: 0 auto 30px;
  position: relative;
  padding-top: 2.5%;
  padding-bottom: 0;
  overflow: hidden;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
}

body .group-look-slider-title{
  margin-top: 40px;
}

body .look-slider-tag {
  background: var(--base);
  color: var(--white);
}

body .look-slider-right-arrow {
  position: absolute;
  right: 50px;
  top: calc(55% - 0px);
  z-index: 1;
  width: 10px;
  object-fit: contain;
  height: 10px;
  cursor: pointer;
  transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  background: var(--grey);
  -ms-transform: rotate(180deg);
  padding: 10px;
  border-radius: 50%;
}

body .look-slider-left-arrow {
  position: absolute;
  left: 50px;
  top: calc(55% - 0px);
  z-index: 1;
  width: 10px;
  object-fit: contain;
  height: 10px;
  cursor: pointer;
  transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  background: var(--grey);
  -ms-transform: rotate(180deg);
  padding: 10px;
  border-radius: 50%;
}

.look-slider-right-arrow.slick-arrow:hover, .look-slider-left-arrow.slick-arrow:hover {
  background: black;
}

@media screen and (max-width: 768px) {
  #imageGroups {
    width: 100%;
  }

  .sliderContainer {
    margin-bottom: 40px;
  }

  .slick-list.draggable {
    max-height: calc(100vh - var(--menu-height-mobile));
  }

  #highlights figure, #highlights img {
    height: calc(100svh - var(--menu-height-mobile));
  }

  .highlight iframe {
    height: 100vh !important;
    aspect-ratio: 16/9;
  }

  .slick-dots li button:before {
    width: 40px !important;
    height: 5px !important;
    border-radius: 0px !important;
  }

  .slick-dotted.slick-slider {
    margin-bottom: 0px;
  }

}