.slider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  border: 0vw solid black;
}

.slider {
  width: 100%;
  /* height: 20.83vw; */
  height: auto;
  margin-left: 1.15vw;
  margin-right: 1.15vw;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.slider-large {
  width: 100%;
  height: 41.67vh;
  margin-left: 1.15vw;
  margin-right: 1.15vw;
  text-align: center;
  overflow: hidden;
  position: relative;
}


.slides {
  display: flex;
  overflow-x: hidden;
  position: relative;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.slide-container {}

.slide {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  scroll-snap-align: center;
  margin-left: 1.15vw;
  margin-right: 1.15vw;
  margin-top: .78125vw;
  margin-bottom: .78125vw;
  box-sizing: border-box;
  transform-origin: center center;
  transform: scale(1);
  background: var(--universal--white--ffffff);
  border-radius: 1.82vw;
  box-shadow: .052vw .052vw 1.04vw #00000029;
  overflow: hidden;
}

.two_slides_per_view {
  width: calc(50% - 2.29vw);
  /* set to 50% to show two slides at a time */
  height: 13vw;
}

.three_slides_per_view {
  width: calc(33% - 2.29vw);
  /* set to 33% to show two slides at a time */
  height: 13vw;
}

.three_slides_per_view_video {
  width: calc(33% - 2.29vw);
  /* set to 33% to show two slides at a time */
  height: 18.23vw;
}

.four_slides_per_view {
  width: calc(25% - 2.29vw);
  /* set to 25% to show two slides at a time */
  height: 13vw;
}

.slide__text {
  font-size: 2.083vw;
  font-weight: bold;
  font-family: sans-serif;
  width: 100%;
}

.slide a {
  background: none;
  /* border: none; */
  /* if changing this, it will affect the website button on the school search results slides. */
}

/*
.slider__nav {
  box-sizing: border-box;
  position: absolute;
  bottom: 5%;
  left: 50%;
  width: 10.42vw;
  margin-left: -5.21vw;
  text-align: center;
}
*/

.slider__nav {
  box-sizing: border-box;
  /* position: absolute; */
  bottom: 3vw;
  width: 100%;
  text-align: center;
}

.slider__navlink {
  display: inline-block;
  font-family: var(--font-family-mreaves_xl_mod_ot-reg);
  font-size: var(--font-size-s);
  font-style: normal;
  color: var(--light-gray);
  margin: 0 .52vw;
  0 .52vw;
  cursor: pointer;
}

.slider__navlink.active {
  /* background-color: var(--main-site-color); */
  color: var(--main-site-color);
  font-weight: bold;
}

.slide__text table {
  width: 100%;
  margin: 0vw;
  border: 0vw solid black;
  border-collapse: separate;
  border-spacing: .52vw;
  padding-left: .52vw;
  padding-right: .52vw;
}

.slide__text td {
  padding-left: .78125vw;
  padding-right: .78125vw;
  border: 0vw solid black;
}

@media only screen and (max-width: 999px) {
  .slider__nav {
    margin-top: 1.5vw;
  }

  .slider__navlink {
    font-size: var(--font-size-l);
  }

  .slider-large.custom-height-slider {
    height: auto;
  }

  .slider-large.custom-height-slider .slides {
    flex-wrap: wrap;
  }

  .slider-large.custom-height-slider .slide.three_slides_per_view_video {
    width: 47%;
    height: 35.23vw;
  }
}

@media only screen and (max-width: 600px) {
  .slider {
    margin-top: 2vw;
    margin-left: 0;
    margin-right: 0;
  }

  .three_slides_per_view {
    width: 30%;
    height: auto;
  }

  .three_slides_per_view .btn-outline-info {
    font-size: var(--font-size-xs);
    margin: 1vw 0;
  }

  .slide__text table {
    padding: 1.5vw;
  }

  .slider__nav {
    margin-top: 1.5vw;
  }

  .slider__navlink {
    font-size: var(--font-size-xl);
  }

  .slider-large.custom-height-slider .slide.three_slides_per_view_video {
    height: 55.23vw;
  }
}