﻿@media (min-width: 992px) and (max-width: 1200px) {
	.pop_contenedor { 
		width: 100%;
	}
	
	.pop_contenedor .pop_titulo_contenedor {
   		width: 60%;
   	}

   	.pop_contenedor .pop_carrusel_contenedor {
		width: 40%;
	}

}

@media (min-width: 768px) and (max-width: 991px) {
	.pop_contenedor {
		max-width: calc(100vw - 50px); 
		width: 100%;
	}
	
	.pop_contenedor .pop_titulo_contenedor {
   		width: 70%;
   	}

   	.pop_contenedor .pop_carrusel_contenedor {
		width: 30%;
	}
}

@media (max-width: 767px) {
  	.pop_contenedor {
  		max-width: calc(100vw - 20px);
		width: 100%;
		display: block;
		margin: 0;
	}

	.pop_contenedor .pop_titulo_contenedor {
   		width: 100%;
   		text-align: center;
   		margin-bottom: 30px;
   	}

   	.pop_contenedor .pop_titulo:after{
		left: 50%;
		transform: translateX(-50%);
	}

   	.pop_contenedor .pop_carrusel_contenedor {
		width: 100%;
	}
}