#slider {
    width: 100%;
    position: relative;
    margin: 210px 0 0 0;
    overflow: hidden;
    border-bottom-right-radius: 30px;
}
#slider #line {
	height: 0;
	background: #FF6600;
	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: none;
	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: #FFF;
	font-weight: 700;
    font-size: 2rem;
    display: none;
}
#slider #forword {
	left: auto;
	right: 0;
}
#slider:hover #back, #slider:hover #forword {
    opacity: 1;
    background-color: none;
}
ul#move {
	margin: 0;
	padding: 0;
	display: flex;
	width: 100%;
	background: none;
	margin-right: 100%;
}
ul#move li {
    position: relative;
    background: #000;
	transition: 0.6s;
	min-width: 100%;
	color: #FFF;
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
ul#move li img {
	width: 100%;
    border-radius: 0;
    opacity: 0.5
}
ul#move li .copy {
    position: absolute;
    bottom: 50px;
    left: 50px;
    text-align: left;
    z-index: 1;
}
ul#move li .copy h2 {
    font: 22px/32px Manrope-Light, Helvetica, sans-serif;
    color: #FFF;
}
ul#move li .copy h2::after {
    display: none;
}
ul#move li button {
    color: #FFF;
    background: url("../images/nav-arrow.svg") #FBAC18 no-repeat 88% 50%;
    margin-top: 50px;
    -webkit-transition: all 0.8s ease-out;
    -moz-transition: all 0.8s ease-out;
    -o-transition: all 0.8s ease-out;
    transition: all 0.8s ease-out;
}
ul#move li button:hover {
    color: #FFF;
    background: url("../images/nav-arrow.svg") #FFC453 no-repeat 92% 50%;
}
ul#move li button a:hover {
    opacity: 1;
}
ul#move li::before {
    display: none;
}
ul#move li:nth-child(1) {
}
ul#move li:nth-child(2) {
}
ul#move li:nth-child(3) {
}

@media only screen and (max-width: 1024px) {
    
   ul#move li button {
        margin-top: 25px;
    } 
}

@media only screen and (max-width: 820px) {
    
    #slider {
        margin: 155px 0 0 0;
    }
    ul#move li .copy {
        bottom: 35px;
        left: 35px;
    }
}

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

    #slider {
        margin: 135px 0 0 0;
    }
    ul#move li .copy {
        bottom: 40px;
        left: 7%;
        width: 86%;
    }
    
}