body {
	text-align: center;
	font-family: sans-serif;
	margin: 0;
}

.modal {
	width: 100%;
	height: 100vh;
	background: rgba(0,0,0,0.8);
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	animation: modal 2s 3s forwards;
	visibility: hidden;
	opacity: 0;
	z-index: 3;
}

.contenido1 {
	margin: auto;
	padding: 10px 10px 10px 10px;
	width: 31%;
	height: 39%;
	background: white;
	border-radius: 10px;
}
.contenido2 {
	margin: 14% auto;
	padding: 10px 10px 10px 10px;
	height: 51.9%;
	background: white;
	background-image: url("../img/gif-toyota.gif");
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: 100% 60%;
	border-radius: 5px;
}
.contenido3 {
	margin: auto;
	margin-top: 11%;
	margin-left: 10px;
	width: 38%;
	height: 38%;
	background-color: transparent;
	border-radius: 10px;
}

#cerrar + label {
	position: fixed;
	color: #fff;
	font-size: 25px;
	z-index: 50;
	background: #00abce;
	height: 40px;
	width: 40px;
	line-height: 40px;
	border-radius: 50%;
	right: 50%;
	top: 100px;
	cursor: pointer;
	animation: modal 2s 3s forwards;
	visibility: hidden;
	opacity: 0;

}

#cerrar {
	display: none;
}

#cerrar:checked + label, #cerrar:checked ~ .modal {
	display: none;
}
/* ///////////////////////////////////////////////////////////////////// 
//  Responsive Smartphone 350
/////////////////////////////////////////////////////////////////////*/
@media (max-width: 350px) {
  .modal {
	width: 100%;
}
.contenido2 {
	margin: auto;
	padding: 10px 10px 10px 10px;
	width: 100%;
	height: 40%;
	margin-top: 65px;
	background: white;
	background-image: url("../img/gif-toyota.gif");
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: 120% 70%;
	position: absolute;
}
.strong{
	display: none;
}
.contenido3 {
	margin: auto;
	margin-top: 245px;
	margin-left: -7px;
	width: 100%;
	height: 40%;
	background-color: transparent;
	border-radius: 10px;
}
#cerrar + label {
	position: fixed;
	color: #fff;
	font-size: 25px;
	z-index: 50;
	background: #00abce;
	height: 40px;
	width: 40px;
	line-height: 40px;
	border-radius: 50%;
	right: 45%;
	top: 20px;
	cursor: pointer;
	animation: modal 2s 3s forwards;
	visibility: hidden;
	opacity: 0;

}
}
/* ///////////////////////////////////////////////////////////////////// 
//  Responsive 991
/////////////////////////////////////////////////////////////////////*/
@media (min-width: 360px) and (max-width: 700px) {
	  .modal {
	width: 100%;

}
.contenido2 {
	margin: auto;
	padding: 10px 10px 10px 10px;
	width: 100%;
	height: 35%;
	margin-top: 75px;
	background: white;
	background-image: url("../img/gif-toyota.gif");
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: 120% 70%;
	position: absolute;
}
.strong{
	display: none;
}
.contenido3 {
	margin: auto;
	margin-top: 300px;
	margin-left: -7px;
	width: 100%;
	height: 40%;
	background-color: transparent;
	border-radius: 10px;
}
#cerrar + label {
	position: fixed;
	color: #fff;
	font-size: 25px;
	z-index: 50;
	background: #00abce;
	height: 43px;
	width: 43px;
	line-height: 40px;
	border-radius: 50%;
	right: 160px;
	top: 10px;
	cursor: pointer;
	animation: modal 2s 3s forwards;
	visibility: hidden;
	opacity: 0;

}
}
/* ///////////////////////////////////////////////////////////////////// 
//  Responsive 1024
/////////////////////////////////////////////////////////////////////*/
@media (min-width: 750px) and (max-width: 1000px) {
	  .modal {
	width: 100%;

}
.contenido2 {
	margin: auto;
	padding: 10px 10px 10px 10px;
	width: 78%;
	height: 38%;
	margin-top: 75px;
	margin-left: 83px;
	border-radius: 5px;
	background: white;
	background-image: url("../img/gif-toyota.gif");
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: 120% 70%;
	position: absolute;
}

.contenido3 {
	margin: auto;
	margin-top: 500px;
	width: 100%;
	height: 70%;
	background-color: transparent;
	border-radius: 10px;
}
#cerrar + label {
	position: fixed;
	color: #fff;
	font-size: 25px;
	z-index: 50;
	background: #00abce;
	height: 43px;
	width: 43px;
	line-height: 40px;
	border-radius: 50%;
	right: 48%;
	top: 10px;
	cursor: pointer;
	animation: modal 2s 3s forwards;
	visibility: hidden;
	opacity: 0;

}
}
/* ///////////////////////////////////////////////////////////////////// 
//  Keyframes 
/////////////////////////////////////////////////////////////////////*/
@keyframes modal {
	100% {
		visibility: visible;
		opacity: 1;
	}
}