/* Variables
Variables that the other CSS sections depend upon
*/
{% include '../../css/variables/_colors.css' %}

/* ==== DESKTOP ==== */

.bs-large-slider {
  padding: 0;
  /* overflow-x: hidden; */
  padding-top: 97px;
  position: relative;
}
@media (max-width: 991px) {
  .bs-large-slider {
    display: none !important;
  }
}

.bs-large-slider__sticky {
  height: calc(100vh - 97px);
  min-height: 375px;
  position: sticky;
  top: 97px;
  overflow-x: hidden;
}

.bs-large-slider__slides {
  width: 100%;
  display: flex;
  gap: 100px;
  flex-direction: row;
  flex-wrap: nowrap;
  overflow: visible;
  height: calc(100% - 50px);
  column-gap: 24px;
}

.bs-large-slider__slides__single {
  height: 100%;
  width: 100%;
  background-color: #000;
  flex-basis: 100%;
  flex-grow: 0;
  flex-shrink: 0;
  padding: 50px;
  display: flex;
  position: relative;
  background-size: cover;
  cursor: none !important;
}

.bs-large-slider__slides__single:hover
.bs-large-slider__slides__single__hover-caption {
  opacity: 1 !important;
}

.bs-large-slider__slides__single:hover
.bs-large-slider__slides__single__hover-caption__container {
  transform: scale(1);
}


.bs-large-slider__slides__single * {
  pointer-events: none !important;
}

.bs-large-slider__slides__single * {
  color: #fff;
}

.bs-large-slider__slides__single::after {
  content: '';
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.bs-large-slider__slides__single__hover-caption {
  position: absolute;
  top: 0;
  left: 0;
  height: 150px;
  width: 150px;
  transition: opacity 0.25s ease;
  z-index: 3;
}

.bs-large-slider__slides__single__hover-caption__container {
  position: absolute;
  top: 0;
  left: 0;
  height: 150px;
  width: 150px;
  border-radius: 50%;
  background-color: #1041DF;
  transform: scale(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.bs-large-slider__slides__single__hover-caption__arrow {
  height: 32px;
  width: 32px;
  background-size: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 30px;
}

.bs-large-slider__slides__single__hover-caption__inner {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  display: block;
  text-align: center;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.17em;
  padding: 70px 6px 6px 6px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.bs-large-slider__slides__single__content {
  align-self: flex-end;
  max-width: 825px;
  position: relative;
  z-index: 2;
}

.bs-large-slider__slides__single__content h2 {
  font-size: 75px;
}

.bs-large-slider__slides__single__content p {
  font-size: 39px;
  line-height: 1.15em;
  letter-spacing: 0.01em;
  margin-bottom: 0;
}

.bs-large-slider__controls {
  /* position: absolute;
  bottom: -50px; */
  height: 50px;
  /* background-color: #ff0000; */
  width: 100%;
  left: 0;
  display: flex;
  flex: 1;
  z-index: 2;
  line-height: 50px;
  padding: 0 10px;
}

.bs-large-slider__controls__left {
  width: 50%;
  text-align: left;
  display: flex;
  column-gap: 16px;
  flex: 1;
}

.bs-large-slider__controls__right {
  width: 50%;
  text-align: right;
}

.bs-large-slider__controls__text {
  font-weight: 600 !important;
  font-size: 16px;
  color: #333333 !important;
  text-transform: uppercase;
}

a.bs-large-slider__controls__text:hover {
  color: #104ADF !important;
} 

.bs-large-slider__controls__text.numbers {
  position: relative;
  padding-left: 24px;
}

.bs-large-slider__controls__text.numbers::after {
  height: 15px;
  width: 1px;
  background-color: #969696;
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  content: '';
}

.bs-large-slider__controls__bullets {
  display: flex;
  column-gap: 4px;
  justify-content: space-between;
  flex: 1;
  flex-grow: 0;
  flex-shrink: 0;
}

.bs-large-slider__controls__bullets__single {
  background: rgba(16, 74, 223, 0.2);
  height: 3px;
  width: 16px;
  margin-top: 23.5px;
  transition: background-color 0.25s ease;
  cursor: pointer;
}

.bs-large-slider__controls__bullets__single.active,
.bs-large-slider__controls__bullets__single:hover {
  background: #104ADF;
}

/* ==== MOBILE ==== */

.bs-large-slider-mobile {
  display: none;
  padding-top: 97px;
}
@media (max-width: 991px) {
  .bs-large-slider-mobile {
    display: block;
  }
}

.bs-large-slider-mobile > *:not(last-child) {
  margin-bottom: 24px;
}

.bs-large-slider-mobile__single {
  background-color: #000;
  color: #fff;
  padding: 92px 24px;
  text-align: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  display: block;
}

.bs-large-slider-mobile__single::after {
  content: '';
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.bs-large-slider-mobile__single h2 {
  color: #fff;
  font-size: 1.875rem;
  position: relative;
  z-index: 2;
}

.bs-large-slider-mobile__single .bs-button {
  width: 100%;
  max-width: 500px;
  position: relative;
  z-index: 2;
}