body {
    overflow-x: hidden;
}

.body-bg-color::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.9) 30%,
        rgba(255, 255, 255, 0.93) 15%,
        rgba(255, 255, 255, 1)
    );
    z-index: -1;
}

.mobile_btn.close svg path {
    stroke: #fff;
}

.width_list {
    width: 857px;
    top: 3.5rem;
    box-shadow: 0px 4px 59px rgba(0, 0, 0, 0.11);
    background-color: white;
}
/* media screen for pads */
@media (max-width: 768px) {
    .width_list {
        width: 600px;
    }
}
@media (max-width: 600px) {
    .width_list {
        width: 330px;
        transform: translateX(1.5rem);
    }
}

.rounded_list {
    width: 85px;
    height: 85px;
    border-radius: 50%;
}

.display_flex {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.box_shadow {
    box-shadow: 0px 4px 59px rgba(0, 0, 0, 0.11);
    background-color: white;
}
.toggle_nav {
    top: 4.5rem;
    right: 1rem;
    white-space: nowrap;
}

/* modals */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: none;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.modal.show {
    display: block;
    opacity: 1;
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}



* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0px 2px;
  margin-top: 10px;
  margin-bottom: 0;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.dot.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}