#container-slider{
    font-family: 'Avenir LT Std 65 Medium';
    position: relative;
    display: block;
    width: 100%;
    margin-top: 100px;
}
#slider {
    position: relative;
    display: block;
    width: 100%;
    height: 80vh;
    min-height: 500px;
}
#slider li {
    background-repeat: no-repeat;
    background-size: cover;
    background-position:top;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100%;
    height: 100%;
    display: block;
    -webkit-transition: opacity 1s;
    -moz-transition: opacity 1s;
    -ms-transition: opacity 1s;
    -o-transition: opacity 1s;
    transition: opacity 1s;
    z-index: -1;
    opacity: 0;
}
#container-slider .arrowPrev, #container-slider .arrowNext{
    font-size: 30pt;
    color: rgba(204, 204, 204, 0.65);
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 50px;
    z-index: 2;
}
#container-slider .arrowNext {
    left: initial;
    right: 50px !important;
}
.content_slider{
    color: #FFF;
    width: 60%;
    height: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 0 10vw;
}
.content_slider div{
    text-align: left;
}
.content_slider h2{
    font-family: var(--avenir_black);
    font-size: 40pt;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.content_slider p {
    font-size: 20pt;
    font-family: var(--avenir_roman);
    color: #FFF;
    margin-bottom: 20px;
}

.btnSlider{
    color: #FFF;
    font-size: 13pt;
    font-family: 'Avenir LT Std 55 Roman';
    letter-spacing: 1px;
    padding: 10px 30px;
    background: rgba(13, 13, 13, 0.55);
    border-radius: 20px;
    text-decoration: none;
    transition: .5s all;
}
.btnSlider:hover{
    background: #111;
}
.listslider {
    position: absolute;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    display: none;
    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: 460px){
	.content_slider h2 {
	    font-size: 15pt !important;
	}
	.content_slider p {
	    font-size: 12pt !important;
	}
	#container-slider .arrowPrev, #container-slider .arrowNext{
		font-size: 20pt;
	}
	#container-slider .arrowPrev{
		left: 15px;
	}
	#container-slider .arrowNext{
		right: 15px !important;
	}
	#slider{
		height: 400px;
		min-height: 400px;
	}
	#slider li .content_slider{
		padding: 10px 35px;
	}
	.btnSlider{
		padding: 10px 30px;
    	font-size: 10pt;
	}
}
@media screen and (min-width:1440px){
    .content_slider h2{
        font-size: 60pt;
    }
    .content_slider p {
        font-size: 30pt;
    }
    .btnSlider{
        font-size: 18pt;
    }
}