.dafe-slides * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.dafe-slides {
  display: none;
}

.dafe-slides[data-active-dafe] {
  display: block;
}

.dafe-carousel {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

.dafe-prev,
.dafe-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: rgb(120, 120, 120);
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.dafe-next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.dafe-prev:hover,
.dafe-next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.dafe-text,
.dafe-numbertext {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  width: 100%;
  text-align: center;
}

.dafe-numbertext {
  top: 0;
}

.dafe-dot-container {
  text-align: center;
  margin-top: 20px;
}

.dafe-dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.dafe-dot[data-active-dot-dafe] {
  background-color: #717171;
}

.dafe-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 50px;
  gap: 50px;
}

.dafe-button {
  display: block;
  border: none;
  color: white;
  width: max-content;
  padding: 12px 30px;
  border-radius: 2px;
  text-decoration: none;
  background-color: black;
}

.dafe-image {
  height: 350px;
  width: 100%;
  object-fit: cover;
  object-position: center center;
}

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

.dafe-fade {
  animation-name: dafe-fade;
  animation-duration: 2.5s;
}

@keyframes dafe-fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

@media only screen and (max-width: 300px) {
  .dafe-prev,
  .dafe-next,
  .dafe-text {
    font-size: 11px;
  }
}
