/* * {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
} */
/* 
.lorem-ipsum {
  padding: 1em;
  margin: 1em;
} */

/** carousel **/
.simple-carousel {
  position: relative;
  overflow: hidden;
  margin: 0 auto 0 auto;
  border-radius: 4px;
  height: 100vh !important; /* Carousel Heigth [now is full screen]*/
}

.simple-carousel ul {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.simple-carousel ul li.slide {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  /* height: 30rem; */
  /* background: #ccc; */
  text-align: center;
  line-height: 300px;
  background-size: cover;
  background-position: center;
}

.simple-carousel ul li.slide.active {
  opacity: 1;
}

.simple-carousel a.control_prev,
a.control_next {
  position: absolute;
  top: 40%;
  z-index: 999;
  display: block;
  padding: 5em 2em;
  color: #fff;
  text-decoration: none;
  opacity: 0.6;
  cursor: pointer;
}

.simple-carousel a.control_prev:hover,
a.control_next:hover {
  opacity: 1;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.simple-carousel a.control_prev {
  left: 0;
  border-radius: 0 2px 2px 0;
}

.simple-carousel a.control_next {
  right: 0;
  border-radius: 2px 0 0 2px;
}

@media screen and (max-width: 600px) {
}

/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */

#slider {
  width: 100vw;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  /* box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.4); */
}

.slide {
  width: 100%;
  /* height: 100vh; */
  display: none;
  animation-name: fade;
  animation-duration: 1s;
}
img {
  width: 100%;
}
@keyframes fade {
  from {
    opacity: 0.5;
  }
  to {
    opacity: 1;
  }
}

.controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  padding: 15px 10px;
  border-radius: 5px;
}

.controls:hover {
  background: white;
  transition: 0.3s;
}

.controls:active {
  color: grey;
}

#left-arrow {
  left: 10px;
}

#right-arrow {
  right: 10px;
}

#dots-con {
  text-align: center;
}
.dot {
  display: inline-block;
  background: grey;
  padding: 8px;
  border-radius: 50%;
  margin: 10px 5px;
}

.active {
  background: crimson;
}

@media (max-width: 576px) {
  #slider {
    width: 100%;
  }

  .controls {
    font-size: 1em;
  }

  #dots-con {
    display: none;
  }
}

.slide-img {
  height: 100vh;
}
