
.contenedor{
	width: 100%;
	overflow: hidden;
	padding-top: 30px;
  }
  
  .slider-contenedor{
	width: 100%;
	display: flex;
  }
  
  .contenido-slider{
	width: 100%;
	height: 600px;
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-shrink: 0;
  }
  

  
  .contenido-slider > img{
	width: 400px;
  }
  
  .contenido-slider > div{
	width: 40%;
  }
  
  .contenido-slider h2{
	font-weight: 300;
    font-family:'BBH Sans Hegarty',sans-serif;
	text-align:start;
	line-height: 30px;
    color: #15bcf9;
  }

  .contenido-slider h3{
	font-weight: 200;
	text-align: justify;
	line-height: 30px;
    color: white;
    font-family:'Raleway',sans-serif;

  }
  
  .contenido-slider a{
	color: #000000;
	background: #f68725;
	width: 150px;
	font-weight: 700;
	display: block;
	padding: 15px 0;
	text-align: center;
	border-radius: 50px;
	margin-top: 20px;
	text-decoration: none;

  }
  
 
  
  @media screen and (max-width:900px){
	.contenido-slider > img{
		width: 250px;
	}
  
	.contenido-slider > div{
		width: 40%;
	}
  
	.contenido-slider h2{
		font-size: 23px;
	}
  }
  
  
  @media screen and (max-width:600px){
	.contenido-slider{
	   flex-direction: column-reverse;
	}
  
	.contenido-slider > div{
		width: 80%;
	}
  
  }