*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
#container-slider
{
    position: relative;
    display: block;
    width: 100%;
}
#slider {
    position: relative;
    display: block;
    width: 100%;
	height: 600px;
}
#slider li {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100%;
    height: 100%;
    display: block;
    transition: opacity 1s;
    z-index: -1;
    opacity: 0;
}
#container-slider .arrowPrev, #container-slider .arrowNext{
	font-size: 32px;
    color: rgba(255, 255, 255, 0.70);
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 50px;
    z-index: 2; 
}
#container-slider .arrowNext {
	left: initial;
    right: 50px !important;
}
.content_slider{
    padding: 16px 32px;
    color: #FFF;
    width: 100%;
    height: 600px;
}
.content_slider div{
	text-align: center;
}
.content_slider h2{
	font-family: inherit;
	font-size: 2em;
    text-transform: uppercase;
    margin-bottom: 16px;
	color:white;
	margin-block-end:1em;
}
	.content_slider p {
		font-size: 16px;
		font-family: inherit;
		color: #FFF;
		margin-bottom: 2em;
	}
#slider li .content_slider{
    background: rgba(0, 0, 0, 0.50);
    padding: 10px 125px;
}
.content_slider{
    display: flex;
    justify-content: center;
    align-items: center;
}
.btnSlider {
	background: #ed2f59;
	color:white;	
	font-size: 16px;
	font-family: inherit;
	padding: 10px 50px;
	border: 1px solid #CCC;
	border-radius: 24px;
	text-decoration: none;
	transition: .5s all;
}
.btnSlider:hover {
	background: white;
	color: #ed2f59;
	text-decoration: none;
}
.listslider {
    position: absolute;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
    left: 50%;
    bottom: 5%;
    list-style: none;
    z-index: 2;
    transform: translateX(-50%);
}
.listslider li {
    border-radius: 50%;
    width: 10px;
    height: 10px;
    cursor: pointer;
    margin: 0 5px;
}
.listslider li a {
    background: #CCC;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    display: block;
}
.item-select-slid {
    background: #FFF  !important;
}
@media screen and (max-width: 1000px){
	.content_slider h2 {
	    font-size: 28px !important;
	}
	#container-slider .arrowPrev, #container-slider .arrowNext{
		font-size: 24px;
	}
	#container-slider .arrowPrev{
		left: 16px;
	}
	#container-slider .arrowNext{
		right: 16px !important;
	}
	#slider{
		height: 500px;
	}
	.content_slider{
		height: 500px;
	}
}
@media screen and (max-width: 800px){
	.content_slider h2 {
	    font-size: 28px !important;
	}
	#container-slider .arrowPrev, #container-slider .arrowNext{
		font-size: 24px;
	}
	#container-slider .arrowPrev{
		left: 16px;
	}
	#container-slider .arrowNext{
		right: 16px !important;
	}
	#slider{
		height: 450px;
	}
	.content_slider{
		height: 450px;
	}
}
@media screen and (max-width: 600px){
	.content_slider h2 {
	    font-size: 28px !important;
	}
	#container-slider .arrowPrev, #container-slider .arrowNext{
		font-size: 24px;
	}
	#container-slider .arrowNext{
		right: 16px !important;
	}
	#slider{
		height: 400px;
	}
	.content_slider{
		height: 400px;
	}
}
@media screen and (max-width: 400px){
	.content_slider h2 {
	    font-size: 24px !important;
	}
	.arrowPrev, .arrowNext{
		display:none;
	}
	#slider{
		height: 350px;
	}
	.content_slider{
		height: 350px;
	}
}