 .previous, .next {
        display: block;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        display: inline-block;
        margin-bottom: 0;
        font-size: 14px;
        font-weight: 400;
        line-height: 1.42857143;
        text-align: center;
        white-space: nowrap;
        vertical-align: middle;
        -ms-touch-action: manipulation;
        touch-action: manipulation;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        background-image: none;
        border: 0;
        background-color: transparent;
        color: black;
        z-index: 1000;
    }

    .previous {
        left: -20px;
    }

    .next {
        right: -23px;
    }

    .slick-slide {
        margin: 0 10px;
		height: auto;
    }

@media (max-width:900px) {
   .previous {
            left: -10px;
        }

        .next {
            right: -10px;
        }

        .fa-3x {
            font-size: 1.5em;
        }
}
.slick-dots {
	display: flex;
	justify-content: center;
	
	margin: 0;
	padding: 1rem 0;
	
	list-style-type: none;
	
		
	
}
.slick-dots li {
			margin: 0 0.25rem;
		}
		
.slick-dots button {
	display: block;
	width: 1rem;
	height: 1rem;
	padding: 0;
	
	/* border: none; */
	border-radius: 100%;
	background-color: #E7E0D6;
	
	text-indent: -9999px;
}
.slick-dots li.slick-active button {
			background-color: blue;
		}