@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400');


* {
    box-sizing: border-box;
}

.showSlide {
    display: none;
    position: relative;
    background-size: cover;
    width: 100%;
    height: 100%;
    background-position: center top;
    background-repeat: no-repeat;
    box-shadow: 0px 0px 0px 13px white, 0px 2px 14px rgba(0, 0, 0, 0.2);
	
}
.slidercontainer {
    width: 80%;
    max-width: 1300px;
    position: relative;
    margin: 40px auto;
    height: 70vh;
	
}
.left,
.right {
    cursor: pointer;
    position: absolute;
    width: 75px;
    height: 75px;
}
.right:hover {
    animation: arrowslideR 0.5s forwards;
}
.left:hover {
    animation: arrowslideL 0.5s forwards;
}
.right {
    right: 520px;
    bottom: -76px;
    background-color: #000;
    background-image: url(http://glyphbox.be/ng/pijlstjes.svg);
    background-size: 250px 250px;
    background-repeat: no-repeat;
    background-position: -181px;
}
@keyframes arrowslideR {
    0% {
        background-position: -181px;
    }
    100% {
        background-position: -118px;
    }
}
.left {
    bottom: -76px;
    right: calc(520px + 76px);
    background-color: #000;
    background-image: url(http://glyphbox.be/ng/pijlstjes.svg);
    background-size: 250px 250px;
    background-repeat: no-repeat;
    background-position: 7px;
    border: 1px solid black;
}
@keyframes arrowslideL {
    0% {
        background-position: 7px;
    }
    100% {
        background-position: -56px;
    }
}
.content {
    position: absolute;
    color: rgba(0,0,0,1);
    font-size: 130%;
    padding: 50px;
    position: absolute;
	background-color: rgba(255,204,0,1);
    top: 60%;
    right: -30px;
    text-align: left;
    width: 550px;
    height: auto;

/*                box-shadow: 0 2px 14px rgba(0,0,0,0.2); */
}
.content h2 {
    font-size: 34px;
    font-variant: small-caps;
    text-transform: lowercase;
    margin: 0;
}
.content p {
    font-size: 16px;
    line-height: 1.7;
}
.active {
    background-color: #000;
}
.slide {
    -webkit-animation-name: slide;
    -webkit-animation-duration: 1.5s;
    animation-name: slide;
    animation-duration: 2.5s;
	
}
@-webkit-keyframes slide {
    from {
      background-position: calc(50% - 30px) top ;
        opacity: 0.4;
        transform: translateX(10px)
    }
    to {
      background-position: 50% top;
        opacity: 1;
        transform: translateX(0px)
    }
}
.cta {
    border: none;
    outline: none;
    padding: 15px 40px;
    font-weight: bold;
    background: black;
    color: #fff;
    cursor: pointer;
    transition: 1s;
    margin-top: 2em;
}
.cta:hover {
    background: #fff;
    color: #000;
    box-shadow: 0 0 0 2px black;
}
@media screen and (max-width: 856px) {
    .slidercontainer {
        width: 90%;
        max-width: 1300px;
        position: relative;
        margin: 40px auto;
        height: 60vh;
    }
    .content {
        position: absolute;
        top: 80%;
        left: 0px;
        width: 100%;
        height: auto;
        padding: 50px 25px;
        box-shadow: 0 2px 14px rgba(0, 0, 0, 0.2);
    }
    .left {
        bottom: 60px;
        right: 86px;
        background-color: #000;
        background-image: url(http://glyphbox.be/ng/pijlstjes.svg);
        background-size: 250px 250px;
        background-repeat: no-repeat;
        background-position: 7px;
    }
/*     .st0 {
        fill: #00000;
    } */
    .right {
        bottom: 60px;
        right: 10px;
    }
}