* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;

  font-family:"Poppins",Sans-serif;
}

body {
	--color: #9A0000;
	--transparent-color: rgba(154, 0, 0, 0.95);
	--black: black;
	--text: rgba(0,0,0,0.7);
	font-family:"Poppins",Sans-serif;
}

body {
	overflow-x: hidden;
}

main {
	margin-bottom: 120px;
}

h1,
h2,
h3,
h4,
h5 {
	font-family:"Poppins",Sans-serif;
}

/* Header */

header {
	width: 100%;
	z-index: 1000;
	height: 80px;

	display: flex;
	justify-content: center;

	position: fixed;
	transition: 0.25s ease-in-out;
}

header * {
	transition: 0.25s ease-in-out;
}

.header--scrolling {
	background-color: white;
}

.header__wrapper {
	width: 100%;
	max-width: 1200px;
	height: 100%;

	display: flex;
	justify-content: space-between;
	align-items: center;

	overflow: hidden;
}

.header__logo {
	height: 100%;
	display: flex;
	align-items: center;
	padding-top: 10px;
	padding-bottom: 10px;
}

.header__logo a {
	height: 100%;
}

.header__logo img {
	height: 100%;
}

.header__menu {
	display: flex;
	justify-content: center;
	align-items: center;
}

.header__menu ul {
	list-style: none;

	display: flex;
}

.header__menu li {
	margin-left: 15px;
	margin-right: 15px;

	display: flex;
	align-items: center;
}

.header__menu a {
	color: white;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 12px;
	font-family:"Poppins",Sans-serif;
	letter-spacing: 3px;
}

.header__menu .current_page_item a {
	font-family:"Poppins",Sans-serif;
}

.header__menu .menu-highlight {
	background-color: var(--color);
	padding: 10px 20px;
}

.header__whatsapp {
	height: 100%;
	overflow: hidden;
}

.header__whatsapp a {
	display: flex;
	align-items: center;
}

.header__whatsapp img {
	width: 30px;
	height: 30px;
}

.header--scrolling {
	box-shadow: 0 3px 45px rgba(0,0,0,0.15);
}

.header--scrolling .header__menu a {
	color: var(--black);
	transition: 0.25s ease-in-out;
}

.header--scrolling .menu-highlight a:hover,
.header--scrolling .menu-highlight a {
	color: white !important;
}

.header--scrolling .header__menu a:hover {
	color: var(--color);
}


/* Generales */

.wrapper {
	width: 100%;
	max-width: 1200px;
}

#home__slider {
	width: 100%;
	height: 100vh;
}

#home__slider .slick-slide  {
	height: 100vh;
}

.slick-dots {
	list-style: none;
	position: absolute;
	bottom: 0;

	width: 100%;
	display: flex;
	justify-content: center;
	height: 40px;
}

.slick-dots button {
	border: none;
	margin: 0 5px;
	width: 10px;
	height: 10px;
	background-color: white;
	border-radius: 10px;

	color: transparent;
	cursor: pointer;
	opacity: 0.7;
}

.slick-dots .slick-active button {
	opacity: 0.9;
}

.home__slider__item,
.home__slider__item__fondo--wrapper,
.home__slider__item__fondo,
.home__slider__intern,
.home__slider__wrapper {
	width: 100%;
	height: 100%;
}

.home__slider__item__fondo--wrapper {
	position: absolute;
	top: 0;
	left: 0;
}

.home__slider__item__fondo {
	background-size: cover;
	position: relative;
}

.home__slider__wrapper {
	overflow-y: hidden;
}

.home__slider__item {
	position: relative;
}

.home__slider__blur {
	background-color: rgba(0,0,0,0.5);
	width: 100%;
	height: 100%;
	z-index: 2;
}

.home__slider__black_blur {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
	background-image: url("images/slider-background.png");
	background-size: auto 100%;
	background-repeat: no-repeat;
	opacity: 0.6;
}

.home__slider__intern {
	position: relative;
	z-index: 10;

	display: flex;
	align-items: center;
	justify-content: center;

	padding-top: 80px;
}

.home__slider__intern * {
	color: white;
}

.banner__internal__title {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.banner__internal__title h2 {
	font-size: 80px;
	text-transform: uppercase;
	max-width: 500px;
	line-height: 70px;
}

.banner__internal__title span {
	font-size: 16px;
	margin-top: 20px;
}

.banner__internal__title .btn {
	margin-top: 30px;
}

/* Sections */

.general_section {
	width: 100%;

	margin-top: 50px;
	margin-bottom: 40px;
}

.general_section .wrapper {
	margin: 0 auto;
}

.desc__sec {
	display: flex;
	justify-content: center;
	margin-top: 50px;
}

.desc__sec.left {
	flex-direction: row-reverse;
}

.desc__sec.right .desc__text__wrapper {
	margin-left: 25px;
}

.desc__sec.left .desc__text__wrapper {
	margin-right: 25px;
}

.right .desc__img {
	padding-right: 60px;
}

.left .desc__img {
	padding-left: 60px;
}

.desc__img {
	box-sizing: content-box;
	max-width: 390px;
	/*overflow: hidden;*/
	display: flex;
	justify-content: center;
	align-items: center;
}

.desc__img img {
	width: 100%;
}

.desc__img.with-subtitle img {
	/*margin-top: 60px;*/
}

.desc__text__wrapper {
	width: 100%;
	max-width: 750px;
}

.desc__subtitle {
	color: var(--color);
	text-transform: uppercase;
	margin-bottom: 24px;
}

.desc__subtitle span {
	font-family:"Poppins",Sans-serif;
	letter-spacing: 3px;
}

.desc__title {
	color: var(--black);
	margin-bottom: 24px;
}

.desc__title span {
	font-family:"Poppins",Sans-serif;
	font-size: 3em;
}

.desc__text {
	color: var(--text);
	line-height: 32px;
	font-size: 15px;
	text-align: justify;
}

.desc__text ul,
.desc__text p {
	margin-bottom: 24px;
}

.desc__text input[type="text"],
.desc__text input[type="email"] {
	border: none;
	border-bottom: 1px solid var(--color);

	width: 100%;
}

.desc__text textarea {
	width: 100%;
	max-width: 100%;
	font-size: 13px;

	border: 1px solid var(--color);
	height: 160px;
	padding: 10px;
}

.btn {
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
	display: inline-block;
	transition: 0.25s ease-in-out;
	border-radius: 2px;
}

.btn--red {
	background-color: var(--color);
	color: white;
}

.btn--red:hover {
	background-color: var(--transparent-color);
}

.btn--red a {
	color: white;
}

.btn--white {
	border: 1px solid white;
}

.btn a {
	display: block;
	padding: 12.5px 20px;
	text-decoration: none;
}

.btn a span {
	font-size: 13px;
	letter-spacing: 3px;
	font-family:"Poppins",Sans-serif;
	text-transform: uppercase;
}

.btn input {
	background-color: transparent;
	border: none;
	display: flex;
	justify-content: center;
	align-items: center;

	padding-top: 14px;
	padding-right: 20px;
	padding-left: 20px;
	padding-bottom: 14px;
	margin-bottom: -34px;

	font-size: 13px;
	letter-spacing: 3px;
	font-family:"Poppins",Sans-serif;
	text-transform: uppercase;
	color: white;

	cursor: pointer;
}

.btn .ajax-loader {
	display: none;
}

/* Sections Headers */

.section__header {
	height: 300px;
	background-size: cover;
	position: relative;
}

.intern .section__header {
	height: 330px;
}

.footer__contacto__background,
.section__header__background {
	position: absolute;
	background-color: rgba(154, 0, 0, 0.6);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.footer__contacto__background--blur,
.section__header__background--blur {
	background-color: rgba(0,0,0,0.5);
	width: 100%;
	height: 100%;
	z-index: 2;
	position: absolute;
	left: 0;
	top: 0;
}

#home__servicios .wrapper {
	padding-top: 40px;
}

.section__header .wrapper {
	height: 100%;
	z-index: 10;
	position: relative;
}

.intern .section__header .wrapper {
	margin: 0 auto;
	display: flex;
	align-items: center;
	padding-top: 80px;
}

.section__text--subtitle {
	color: white;
	text-transform: uppercase;
	margin-bottom: 24px;
}

.intern .section__text--subtitle * {
	font-size: 12px;
}

.section__text--subtitle a {
	color: white;
	text-decoration: none;
	font-family:"Poppins",Sans-serif;
	letter-spacing: 3px;
}

.section__text--subtitle a::after {
	content: " / ";
	cursor: default;
}

.section__text--subtitle span {
	font-family:"Poppins",Sans-serif;
	letter-spacing: 3px;
}

.section__text--title {
	color: white;
	margin-bottom: 24px;
}

.section__text--title span {
	font-family:"Poppins",Sans-serif;
	font-size: 3em;
}

/*  Home Servicios */

#home__servicios .offset {
	margin-top: -130px;
	position: relative;
	z-index: 50;
}

/* General Items */

.items {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 25px;
	row-gap: 25px;
}

.item {
	overflow: hidden;
	position: relative;
}

.item figure {
	display: flex;
	height: 520px;
	flex-direction: column;
}

.item__img--wrapper {
	width: 100%;
	height: 280px;
	overflow: hidden;
}

.item__img--wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.5s ease-in-out;
}

.item:hover img {
	transform: scale(1.05);
}

.item figcaption {
	flex-grow: 1;
	border: 1px solid #DFDFDF;

	display: flex;
	align-items: center;
	flex-direction: column;
	padding: 20px 15px;
}

.item figcaption h3 {
	color: var(--color);
	font-size: 24px;
	text-align: center;
}

.item figcaption p {
	/*margin-top: 10px;*/
	font-size: 15px;
	line-height: 30px;
	text-align: center;
	color: var(--text);
	flex-grow: 1;
	
	display: flex;
	justify-content: center;
	align-items: center;
}

.item figcaption .btn {
	/*margin-top: 20px;*/
}

.item__number {
	position: absolute;
	left: 0;
	top: 0;

	width: 80px;
	height: 65px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--color);
	color: white;
	font-size: 35px;
}

/* Footer */

.horario_atencion {
	position: sticky; 
	bottom: 0;
	float: right;
	margin-right: 20px;
	transform: translateY(-40px);

	width: 250px;
	height: 100px;
	background-color: var(--color);

	border-radius: 3px;
	box-shadow: 0 3px 45px rgba(0,0,0,0.15);
	z-index: 500;
	overflow: hidden;

	padding: 10px;
}

.horario_atencion figure {
	height: 100%;

	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.horario_atencion img {
	height: 80%;
}

.horario_atencion figcaption {
	margin-left: 10px;
	color: white;
}

.horario_atencion p {
	margin-top: 5px;
}

.footer__contacto {
	position: relative;
	background-size: cover;
	height: 300px;
}

.footer .wrapper {
	margin: 0 auto;
	position: relative;
	z-index: 10;
}

.footer__contacto--figure {
	height: 350px;
	margin-top: -50px;;
}

.footer__contacto--figure img {
	height: 100%;
}

.footer__contacto__wrapper {
	display: flex;	
}

.footer__contacto--text {
	display: flex;
	flex-direction: column;
	justify-content: center;

	margin-left: 20px;
}

.footer__contacto--text a {
	color: white;
	text-decoration: none;
}

.footer__contacto--text h3 {
	font-size: 3em;
}

.footer__contacto--text span {
	font-size: 1.5em;
}

.footer__mensajes {
	width: 100%;
	height: 120px;
}

.footer__mensaje {
	height: 100%;
	margin: 0 auto;
}

.footer__mensaje__text {
	height: 100%;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
}

.footer__mensaje a {
	text-decoration: none;
	color: var(--black);
	transition: 0.25s ease-in-out;

	display: block;
	margin: 0 auto;
	width: 100%;
	max-width: 1200px;
	height: 100%;
}

.footer__mensaje a:hover {
	color: var(--color);
}

.footer__mensaje__text h3 {
	font-size: 2em;
}

.footer__mensaje__text span {
	font-size: 1em;
}

.footer__main {
	background-color: var(--black);
	padding: 25px 0;
}

.footer__main * {
	color: white;
}

.footer__main .wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer__datos figure {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.footer__datos img {
	width: 275px;
}

.footer__datos figcaption {
	margin-top: 20px;

	display: flex;
}

.footer--secondcolumn {
	margin-left: 40px;
}

.footer__datos h4 {
	font-size: 1.5em;
}

.footer__datos .content {
	line-height: 20px;
	font-size: 15px;
}

.footer__datos .content div,
.footer__datos .content p {
	margin-top: 20px;
}

.footer__datos .content br {
	display: block;
	margin-top: 5px;
}

.footer__datos .content i {
	margin-right: 8px;
}

.footer__menu ul {
	list-style: none;

	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.footer__menu a {
	text-decoration: none;
	line-height: 50px;
}

#pag404 {
	display: flex;
	height: 750px;
	justify-content: center;
	align-items: center;
	padding-top: 80px;
}

#pag404 .wrapper {
	text-align: center;
}

#pag404 h2 {
	color: var(--color);
	font-size: 100px;
}

#pag404 h3 {
	font-size: 20px;
	padding-top: 20px;
}

#pag404 .btn {
	margin-top: 30px;
}

/* Responsive */

@media all and (max-width: 1200px) {
	.desc__wrapper,
	.wrapper,
	.header__wrapper {
		padding-left: 20px;
		padding-right: 20px;
	}

	.banner__internal__title h2 {
		font-size: 2.3em;
		line-height: 43px;
	}

	main {
		margin-bottom: 20px !important;
	}
}

/* General Section */
@media all and (min-width: 661px) and (max-width: 1200px) {
	.desc__img {
		max-width: 25%;
		padding-right: 2% !important;
	}
}

@media all and (max-width: 660px) {
	.desc__sec.left,
	.desc__sec {
		flex-direction: column;
	}

	.desc__text__wrapper {
		margin-left: 0 !important;
	}

	.desc__title span {
		font-size: 2em;
		line-height: 40px;
	}

	.desc__text {
		font-size: 14px;
		line-height: 30px;
	}

	.desc__text__wrapper {
		margin-top: 20px;
	}

	.desc__img {
		padding-left: 0 !important;
		padding-right: 0 !important;
	}

	.horario_atencion {
		display: none;
	}

	.section__text--title span {
		font-size: 2em;
	}

	#home__servicios .offset {
		margin-top: -170px;
	}

	.desc__img {
		display: flex;
		max-width: 100%;
	}
}

/* Items */

@media all and (max-width: 800px) {
	.items {
		grid-template-columns: 1fr;
	}
}

/* Footer */

@media all and (max-width: 670px) {
	.footer__contacto--figure {
		display: none;
	}

	.footer__contacto {
		height: 170px;
		display: flex;
	}

	.footer__mensaje__text h3,
	.footer__contacto--text h3 {
		font-size: 1.5em;
	}

	.footer__contacto--text span {
		font-size: 1.2em;
	}
}

@media all and (max-width: 530px) {
	.footer__menu {
		display: none;
	}

	.footer__datos {
		width: 100%;
	}

	.footer__datos figure {
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.footer__datos figcaption {
		text-align: center;

		flex-direction: column;
	}

	.footer--secondcolumn {
		margin-left: 0;
		margin-top: 20px;
	}
}

/* MenÃº */

.header__responsive_menu {
	display: none;
}

@media all and (max-width: 990px) {
	.header__menu ul {
		display: none;
	}

	.header__responsive_menu {
		display: flex;

		width: 30px;
		height: 30px;
	}

	.header__burger {
		display: flex;
		justify-content: space-between;
		flex-direction: column;

		cursor: pointer;
		width: 100%;
		height: 24px;
		margin-top: 3px;
	}

	.header__burger div {
		width: 100%;
		height: 2px;
		background-color: white;
	}

	.header__responsive_menu .menu {
		display: none;
	}

	.header__responsive_menu .menu.active {
		display: flex;
		flex-direction: column;
	}

	.header__responsive_menu .menu * {
		transition: 0.25s ease-in-out;
	}

	.header__responsive_menu .active ul {
		list-style: none;
		position: fixed;
		top: 0;
		width: 100vw;
		background-color: white;
		left: 0;
	}

	.header__responsive_menu .active li {
		padding: 30px 20px;
	}

	.header__responsive_menu .active li:hover {
		background-color: rgba(0,0,0,0.05);
	}

	.header__responsive_menu .active li a {
		text-decoration: none;
		text-transform: uppercase;
		font-size: 14px;
		font-family:"Poppins",Sans-serif;
		letter-spacing: 3px;
		color: var(--color);
	}

	.header__responsive_menu .active .menu-highlight a {
		color: var(--color) !important;
	}

	.close {
		position: absolute;
		top: 20px;
		right: 20px;
		font-size: 20px;
		color: var(--color);
		cursor: pointer;
	}
	
	.header--scrolling .header__burger div {
		background-color: var(--color);
	}

	header {
		width: 100vw;
	}

	.header__wrapper {
		display: flex;
		justify-content: space-between;

		width: 100vw;
	}

	.header__logo {
		height: 80%;
	}
}