@media screen and (max-width: 1280px) {
 
.slider {
 height:100%;
  width: 100%;
  position: relative;
  margin: auto;

  .slide {
    display: none;
   height:100%;
    width: 100%;

    img {
     height:100%;
      width: 100%;
      filter: contrast(90%);
      object-fit: cover;
    }

  
  }

  a.prev,
  a.next {
    position: absolute;
    top: 40%;
    font-size: 30px;
    cursor: pointer;
    user-select: none;
    color: #ffffff;
    padding: 12px;
    transition: 0.2s;

    &:hover {
      background-color: rgba(0, 0, 0, 0.4);
      border-radius: 2px;
    }
  }
  .next {
    right: 20px;
	
  }
  .prev {
    left: 20px;
  }
}

.show {
  animation: fade 0.5s ease-out;
}

@keyframes fade {
  from {
    opacity: 0.5;
  }
  to {
    opacity: 1;
  }
}
}


@media screen and (max-width: 480px) {
	
	


  a.prev,
  a.next {
    position: absolute;
    top: 50%;
    font-size: 30px;
    cursor: pointer;
    user-select: none;
    color: #ffffff;
    padding: 12px;
    transition: 0.2s;

    &:hover {
      background-color: rgba(0, 0, 0, 0.4);
      border-radius: 2px;
    }
  }
  