/* button reset */

/* SLIDER */

.slider {
  position: static;
  width: calc((350px* 3) - 3px);
  height: 550px;
  /* box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1); */
  overflow: hidden;
  margin: 0 auto;
}

.wrapper {
  overflow: hidden;
  position: relative;
  width: calc(350px* 3);
  height: 550px;
  z-index: 1;
  pointer-events: auto;
}


.slides {
  display: flex;
  position: relative;
  top: 0;
  left: -350px;
  width: 10000px;
  pointer-events: auto;
}

.slides.shifting {
  transition: left 0.2s ease-out;
}

.slide2 {
  width: 350px;
  height: 550px;
  padding: 0 5px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 1s;
  position: relative;
  border-radius: 2px;
  border-right: 3px solid white;
}


.fourthSection {
  position: relative;
}

.control {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 100%;
  background: none;
  color: orange;
  transform: translate(50%, -50%);
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.7rem;
}

.prev,
.next {
  background-size: 22px;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  position: absolute;
}

.prev2 {
  left: 120px !important;
  cursor: pointer;
}

.next2 {
  right: 170px !important;
  cursor: pointer;
}

.slider-heading {
  font-family: Lato, sans-serif;
  text-align: center !important;
  position: relative;
  top: 30px;
  color: dimgray;
  margin: 100px auto;
}

.slide2 img {
  width: 100%;
  height: 100%;
}

/* LIGHTBOX */
#lightbox {
  position: fixed;
  z-index: 1000;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);  
  display: none;
}

#lightbox.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

#lightbox img {
  max-width: 80%;
  max-height: 70%;
  border: 2px solid white;
}

#lightbox .prev,
#lightbox .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 2rem;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
  z-index: 1001;
  display: none;
}

#lightbox .next {
  right: 5% !important;
}

#lightbox .prev {
  left: 5% !important;
}

/* slider for responsive  */

.MultiCarousel {
  float: left;
  overflow: hidden;
  padding: 15px;
  width: 100%;
  position: relative;
}
.MultiCarousel .MultiCarousel-inner {
  transition: 1s ease all;
  float: left;
}
.MultiCarousel .MultiCarousel-inner .item {
  float: left;
}
.MultiCarousel .MultiCarousel-inner .item > div {
  text-align: center;
  padding: 10px;
  margin: 10px;
  width: 300px;
  /* background: #f1f1f1; */
  /* color: #666; */
}
.MultiCarousel .leftLst,
.MultiCarousel .rightLst {
  position: absolute;
  border-radius: 50%;
  top: calc(50% - 20px);
}
.MultiCarousel .leftLst {
  left: 0px;
  /* right: -8px; */
  color: #eb5805;
  font-size: 42px;
  font-weight: 700;
  background: no-repeat;
  border: navajowhite;
}
.MultiCarousel .rightLst {
  right: 0px;
  color: #eb5805;
  font-size: 42px;
  font-weight: 700;
  background: no-repeat;
  border: navajowhite;
}

.MultiCarousel .leftLst.over,
.MultiCarousel .rightLst.over {
  pointer-events: none;
  background: #ccc;
  display: none;
}
.slider1RespImg {
  margin: auto;
}
:not(.btn-check) + .btn:active {
  color: #eb5805 !important;
  background-color: transparent !important;
  border-color: white !important;
}

.btn:hover {
  color: #eb5805 !important;
  background-color: transparent !important;
  border-color: white !important;
}

.fourthSectionItem {
  display: flex;
  justify-content: center;
}


.btn:active:focus, .btn:focus {
  outline: none !important;
  outline-offset: -2px;
}

.btn:active{
  box-shadow: none !important;
}

