#slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}
#slider #line {
	height: 3px;
	background: #29778D;
	z-index: 1;
	position: absolute;
	bottom: 0;
	right: 0;
}
#slider #dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 16px;
	display: flex;
	justify-content: center;
    display: none;
}
#slider #dots li {
	transition: 0.9s;
	list-style-type: none;
	width: 10px;
	height: 10px;
	border-radius: 100%;
	background: #FFA200;
	margin: 0 0.25em;
	cursor: pointer;
}
#slider #dots li:hover,
#slider #dots li.active {
	background: white;
}
#slider picture {
    width: 100vw;
}
#slider .copy p {
    color: #fff;
    padding: 0;
}

@keyframes line {

	0% {width: 0%;}
	100% {width: 100%;}

}
#slider .content {
    position: absolute;
    top: 50%;
    right: 0;
    bottom: 0;
    left: 0;
}
#slider .content .container {
    width: 1200px;
    margin: 0 auto;
}
#slider .content .container p {
    text-align: center;
    color: #fff;
    width: 80%;
    margin: 0 auto;
}
#slider #back,
#slider #forword {
	width: 6%;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transition: 0.9s;
	cursor: pointer;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	color: white;
	font-weight: 700;
    font-size: 2rem;
}
#slider #forword {
	left: auto;
	right: 0;
}
#slider:hover #back,
#slider:hover #forword {
	opacity: 0.7;
}
ul#move {
	margin: 0;
	padding: 0;
	display: flex;
	width: 100%;
	background: #313131;
	margin-right: 100%;
}
ul#move li {
    position: relative;
	transition: 0.6s;
	min-width: 100%;
	color: white;
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
ul#move li img {
	width: 100%;
}
ul#move li .copy {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0 0 40px 40px;
    text-align: left;
}
ul#move li .copy h6 {
    font: 32px/46px Manrope-ExtraLight, Helvetica, sans-serif;
    color: #FFF;
    margin: 0 auto;
}
ul#move li .copy span {
    font: 18px/18px Manrope-ExtraLight, Helvetica, sans-serif;
    color: #FFF;
}
ul#move li::before {
    display: none;
}
ul#move li:nth-child(1) {
	background: #313131;
}
ul#move li:nth-child(2) {
	background: #313131;
}
ul#move li:nth-child(3) {
	background: #313131;
}

@media only screen and (max-width: 1024px) {

    ul#move li .copy {
        padding: 0 0 30px 30px;
    }
    ul#move li .copy h6 {
        font: 26px/40px Manrope-ExtraLight, Helvetica, sans-serif;
    }
    
}

@media only screen and (max-width: 820px) {
    
    ul#move li .copy h6 {
        font: 24px/38px Manrope-ExtraLight, Helvetica, sans-serif;
    }
    ul#move li .copy span {
        font: 16px/16px Manrope-ExtraLight, Helvetica, sans-serif;
        color: #FFF;
    }
    
}

@media only screen and (max-width: 540px) {
    
    header .container {
        width: 92%;
    }
    ul#move li .copy {
        padding: 0 5% 8%;
    }
    
}

@media only screen and (max-width: 430px) {
    
    #slider .copy p {
        font: 13px/18px Manrope-Light, Helvetica, sans-serif
    }
}