/*@import url('https://fonts.googleapis.com/css?family=Open+Sans');*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Open Sans', sans-serif;
  height: 100vh;
}

.slider-container {  
  position:relative;
overflow:hidden;
 left:0px;
  width:100%;  
  height:100vh;
    padding:0px;
}
  
.left-slide {
  height:100vh;
  width:30%;
  position: absolute;
  top:0px; 
  left:0;
  transition: transform 3.5s ease-in-out;
opacity:1;  
z-index:99;  
}

.left-slide > div {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}  

.left-slide h1 {  
  font-size:30px;
  margin-bottom:20px;
  margin-top: -30px;
  font-weight:bold;
  text-transform:uppercase;
  color:#C1C1C1;
}

.sliderText{animation-duration:2s;animation-delay:3s;}

.left-slide p{color:#C1C1C1;}

.right-slide {
  height: 100%;
  position: absolute;
  top: 0;
  left: 30%;
  width: 70%;
  transition: transform 0.5s ease-in-out;
}

.right-slide > div {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 100%;
  width: 100%;
}

button {
  background-color:#868686;
  opacity:0.7;
  border: none;
  color: #aaa;
  cursor: pointer;
  font-size: 16px;
  padding: 10px;
}

button:hover {
  color: #222;
}

button:focus {
  outline: none;
}

.slider-container .action-buttons button {
  position: absolute;
  left: 35%;
  top: 50%;
  z-index: 100;
}

.slider-container .action-buttons .down-button {
  transform: translateX(-100%);
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.slider-container .action-buttons .up-button {
  transform: translateY(-100%);
  border-top-right-radius: 5px;   
  border-bottom-right-radius: 5px;
}

@media only screen and (max-width: 600px) {   
    
.slider-container {
  height:400px;
}
      
.left-slide{
width:50%;
height:800px;
left:0;   
}      
    
.left-slide > div {
 height:200px;     
}
    
.right-slide {
left:50%;
width:50%;
height:200px;
    }
    
.left-slide h1 {
  font-size:0.9em;
text-transform:uppercase;
  margin-bottom: 10px;
  margin-top: -30px;
padding: 10px;
}
    
.left-slide p {
font-size:0.8em;padding: 10px;
}
    
button {
  font-size: 10px;
  padding: 10px;  
}  
.slider-container .action-buttons button {
  left:50%; 
  top: 55%;
 
}

}