﻿.parte{
	border: 0px solid red;
	width: 100%;
	float: left;
	margin: 20px 0 0 0;
	padding:0 10px;

	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-o-box-sizing:border-box;
}

.seccion{
	border: 1px solid #eb5997;
	background: #f7f7f7;
	width: 62%;
	float: left;

	border-radius: 10px;

	box-shadow:3px 3px 10px gray;
}

.titulo-seccion{
	color: #eb5997;
	font-size: 24px;
	font-family: "Baskerville Old Face";
	padding: 10px 0;
}

.desarrollo-seccion{
	text-align: justify;
	line-height: 24px;
	padding: 10px;
}

.imagen-seccion{
	border: 0px solid red;
	width: 35%;
	text-align: center;
	float: left;
}

.imagen-seccion img{
	width: 100%;

	border-radius: 20px;
}

.info{
	border: 0px solid red;
	width: 33%;
	font-size: 35px;
	float: right;
	padding: 0 10px;

	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-o-box-sizing:border-box;
}

@media screen and (max-width: 1000px){
	iframe{
		width: 100%;
	}
	.info{
		width: 100%;
	}
}

@media screen and (max-width: 800px){
	.parte{
		padding: 0 10px;
	}
	.seccion{
		width: 100%;
	}
	.imagen-seccion{
		width: 100%;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
	.imagen-seccion img{
		width: 70%;
	}
}