#container {
    width: 1400px;
    height: 550px;
    margin: 20px auto 0 auto;
    overflow: hidden;
    position: relative;
    z-index: 2;
}
#slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

#slider {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    float: left;
    border-radius: 5px;
}
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
}
.slide-copy {
    background: linear-gradient(to right, rgb(255,255,255, .7), rgb(255,255,255, .6), rgb(255,255,255, 0), rgb(255,255,255, 0)  );
    position: absolute;
    /* bottom: 50px; */
    /* left: 100px; */
    
    height: 100%;
    width: 100%;
    /* background: rgba(0, 0, 0, 0.5); */
    display: grid;
    align-items: center;
}
.slide-copy > div {
    width: 700px;
    margin-left: 100px;
}
a.cta.home-link {
    display: grid;
}
.slide-copy h2 {
    font-size: 45px;
    line-height: 1.3;
}
img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#prev, #next {
    width: 40px;
    height: 60px;
    position: absolute;
    top: 50%;
    padding: 10px;
    margin: 0 auto;
    margin-top: -30px;
    background: transparent;
    float: left;
    cursor: pointer;
    z-index: 100;
    background: rgba(255, 255, 255, 0.4);
    transition: .4s;
}
#prev:hover, #next:hover {
    background: rgba(255, 255, 255, 0.5);
}
#next {
    transform: rotateZ(180deg);
    margin-left: -40px;
}
#prev {
    margin-right: -40px;
}
.circles {
    width: 100%;
    position: relative;
    z-index: 10;
    bottom: 50px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
}
.circles span {
    z-index: 10;
    bottom: 0;
    width: 10px;
    height: 10px;
    background-color: rgb(0, 0, 0, .1);
    border-radius: 50%;
    margin-right: 15px;
    transition: .4s;
}
.circles span:last-child {
    margin-right: 0px;
}
.circles span:hover {
    background: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 1300px) {
    #container {
        width: 900px;
        height: 450px;
    }
    .slide-copy > div {
        margin-left: 50px;
        width: 500px;
    }
}
@media screen and (max-width: 900px) {
    #container {
        width: 800px;
        height: 500px;
    }
    .slide-copy > div {
        margin-left: 50px;
        width: 450px;
    }
    .circles {
        margin-top: 20px;
    }
}
@media screen and (max-width: 768px) {
    #container {
        margin: 20px auto 0px auto;
        width: 700px;
        height: 350px;
    }
    .slide-copy > div{
        width: 350px;
        padding-top: 30px;
    }
    #prev, #next {
        width: 20px;
        height: 40px;
        padding: 5px;
    }
    #prev img, 
    #next img {
        width: 20px;
        height: 30px;
    }
    #prev {
        margin-right: -20px;
    }
    #next {
        margin-left: -20px;
    }
}
@media screen and (max-width: 576px) {
    #container {
        width: 100%;
        height: 200px;
    }
    .slide-copy > div {
        width: 320px;
        padding-top: 30px;
    }
    a.cta.home-link {
        display: none;
    }
    .bottom {
        margin: 40px auto;
    }
}