@charset "utf-8";
@import url(http://fonts.googleapis.com/css?family=Hind:600,300);

body {
	margin: 0;
	font-family: 'Hind', sans-serif !important;
}
.main {
background-color: #f1cfaf;
}
a:link, a:visited {
	text-decoration: none;
	color: white;
}
a:focus, a:hover {
	color: #FFF !important;
}
.contenedor {
	height: auto;
	width: 1000px;
	margin:0 auto;
}
.menu{
	position:relative;
	float:left;
	width:1000px;
	height:482px;
}
.logo {
	position:relative;
	float:left;
	width:356px;
	/*height:143px;*/
	z-index: 9;
/*	padding: 20px 0px;*/
}

.logo a  {
	position: relative;
    display: inline-block;
}

.logo a img {
	width: auto;
	/*margin-top: 20px;*/
}
.logo-res {
	display: none;
}
.botonera{
    position: absolute;
    /* left: 0; */
    width: 100%;
    height: 51px;
    right: 0;
}
.botonera ul{
	position:relative;
	float:right;
	width:auto;
	height:51px;
	list-style-type:none;
	margin-top: 0px;
    margin-bottom: 0px;
    padding-left: 0px;
}
.botonera ul li{
	position:relative;
	float:left;
	width:116px;
	height:45px;
	background:#973c27;
	border-left: 1px solid rgba(255, 255, 255, 0.08);
	/*margin-left: 1px;*/
	-moz-transition: all 0.35s ease-in-out;
    -webkit-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}
.botonera ul li:hover{
	background: #661d0d;
    color: #FFF;
}
.botonera ul li.active {
	background: #661d0d;
	color: #FFF;
}
.botonera ul li:last-child{
	margin-right:0;
/*	border-left: none;*/
}

.botonera ul li a{
	width: 100%;
	height: 100%;
	position: relative;
	display: table;
	float: left;
	display: table;
	color: #279444;
	/* margin-top: 10px; */
	text-decoration: none;
	color: #FFF;
	font-size: 12px;
    text-align: center;
}
.botonera ul li a span{
	position:relative;
	display:table-cell;
	vertical-align:middle;
}
.slider {
	display: block;
	position: relative;
	margin-bottom: 15px
	/*border-bottom: 10px solid #950025;*/
}

.img-icon {
	text-align: center;
	width: 100%;
}

.img-icon img {
	position: relative;
	margin: 10px 0;
}
/*--HOME--*/
.informacion{
	position:relative;
	float:left;
	width:100%;
	height:auto;
	padding-left: 100px;
    padding-right: 100px;

}
.icono{
	position: relative;
    float: left;
    width: 100%;
	text-align: center;
}
.icono img.img_icono{
	position: relative;
	margin-bottom: 0px;

}
.bienvenidos{
    position: relative;
    float: left;
    width: 100%;
    height: auto;
}

.bienvenidos img{
	position: relative;
}

.single-title {
	margin-top: 35px;
	margin-bottom: 10px;
}

.pregunta {
	position: relative;
	float: left;
	width: 100%;
	text-align: center;
}

.pregunta a {
	background: #973c27;
	color: #fff;
	display: block;
	outline: none;
	padding: 10px 5px;
}

.pregunta a:hover {
	background: rgba(2, 101, 2, 0.9);
	color: #fff;
	text-decoration: none;
}

.pregunta a:focus {
	color: #fff;
	outline: none;
	text-decoration: none;
}

/*************/
/*   MODAL   */
/*************/

/* The Modal (background) */

.modal {
	display: none;
	/* Hidden by default */
	position: fixed;
	/* Stay in place */
	z-index: 1;
	/* Sit on top */
	left: 0;
	top: 0;
	width: 100%;
	/* Full width */
	height: 100%;
	/* Full height */
	overflow: auto;
	/* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.4);
	/* Black w/ opacity */
	transition: all 0.5s ease 0.06s;
	filter: blur(120px);
}

/* Modal Content/Box */

.modal-content {
	background-color: #fff;
	margin: 15% auto;
	/* 15% from the top and centered */
	padding: 1.2rem;
	max-width: 30%;
	/* Could be more or less, depending on screen size */
	visibility: hidden;
	box-shadow: 2px 2px 10px 0px rgba(99, 106, 119, 0.6);
	border-radius: 5px;
}

/* The Close Button */

.close {
	color: #dedede;
	/*float: right;*/
	font-size: 2rem;
	font-weight: bold;
	display: flex;
	align-items: center;
}

.close:hover:before {
	display: initial;
	color: #dedede;
}

.close:hover,
.close:focus {
	color: hsl(0, 100%, 70%);
	text-decoration: none;
	cursor: pointer;
}

.close:active,
.close:before:active {
	transition: all 60ms ease;
	transform: scale(0.97);
}


/***********************/
/*  modal form layout  */
/***********************/

.modal-content {
	display: flex;
	flex-direction: column;
}

.modal-header {
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
	font-size: 2em;
	font-weight: bold;
}

.modal-footer {
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
}

.modal-footer .submit {
	background: #973c27;
	border: none;
	color: #fff;
	padding: 10px 20px;
	outline: none;
}

.modal-form ul {
	padding: 0;
	position: relative;
	list-style-type: none;
}

.modal-form ul li label {
	margin-top: 5px;
}

.modal-form ul li label, .modal-form ul li input, .modal-form ul li textarea {
	float: left;
	width: 100%;
}

.modal-form ul li textarea {
	min-height: 150px;
	resize: none;
}

.slideDown {
	animation-name: slideDown;
	-webkit-animation-name: slideDown;
	animation-duration: 0.6s;
	-webkit-animation-duration: 0.6s;
	animation-timing-function: ease;
	-webkit-animation-timing-function: ease;
	visibility: visible !important;
}

@keyframes slideDown {
	0% {
		transform: translateY(-100%);
	}
	50% {
		transform: translateY(4%);
	}
	65% {
		transform: translateY(-2%);
	}
	80% {
		transform: translateY(2%);
	}
	95% {
		transform: translateY(-1%);
	}
	100% {
		transform: translateY(0%);
	}
}

/*MODAL MESSAGE*/
/*Notificacion*/
* {
  box-sizing: border-box;
}
html.modal-active, body.modal-active {
    overflow: hidden;
}
#modal-container {
    position: fixed;
    display: table;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    transform: scale(0);
    z-index: 999999;
}
#modal-container.two {
  transform: scale(1);
}
#modal-container.two .modal-background {
  background: transparent;
  animation: fadeIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container.two .modal-background .modal {
  opacity: 0;
  animation: scaleUp 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container.two + .content {
  animation: scaleBack 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container.two.out {
  animation: quickScaleDown 0s .5s linear forwards;
}
#modal-container.two.out .modal-background {
  animation: fadeOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container.two.out .modal-background .modal {
  animation: scaleDown 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container.two.out + .content {
  animation: scaleForward 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container .modal-background {
    display: table-cell;
    background: rgba(0, 0, 0, 0.8);
    text-align: center;
    vertical-align: middle;
}
#modal-container .modal-background .modal {
    background: white;
    padding: 50px;
    display: inline-block;
    border-radius: 3px;
    font-weight: 300;
    position: relative;
	width: 400px;
	height: 150px;
}
#modal-container .modal-background .modal h2 {
    font-size: 25px;
    line-height: 25px;
    margin-bottom: 15px;
}
#modal-container .modal-background .modal p {
    font-size: 18px;
    line-height: 22px;
}
#modal-container .modal-background .modal .modal-svg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 3px;
}
#modal-container .modal-background .modal .modal-svg rect {
    stroke: #fff;
    stroke-width: 2px;
    stroke-dasharray: 778;
    stroke-dashoffset: 778;
}

@keyframes fadeIn {
  0% {
    background: transparent;
  }
  100% {
    background: rgba(0, 0, 0, 0.7);
  }
}
@keyframes fadeOut {
  0% {
    background: rgba(0, 0, 0, 0.7);
  }
  100% {
    background: transparent;
  }
}
@keyframes scaleUp {
  0% {
    transform: scale(0.8) translateY(1000px);
    opacity: 0;
  }
  100% {
    transform: scale(1) translateY(0px);
    opacity: 1;
  }
}
@keyframes scaleDown {
  0% {
    transform: scale(1) translateY(0px);
    opacity: 1;
  }
  100% {
    transform: scale(0.8) translateY(1000px);
    opacity: 0;
  }
}
@keyframes scaleBack {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.85);
  }
}
@keyframes scaleForward {
  0% {
    transform: scale(0.85);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes quickScaleDown {
  0% {
    transform: scale(1);
  }
  99.9% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}

.bienvenidos h2, .faq h2, .single-title h2 {
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 22px;
    width: 100%;
    position: relative;
    float: left;
    padding: 12px 0;
}

.bienvenidos h2:after, .faq h2:after, .single-title h2:after {
	content: "";
	width: 45px;
	border-bottom: solid 2px #973c27;
	position: absolute;
	left: 0;
	bottom: 0;
}

.faq .accordion {
	margin-bottom: 0px;
}

.faq .accordion li p {
    padding: 10px 25px;
}

.border-color {
    padding: 0;
    list-style: none;
    width: 50%;
	margin: 0 auto;
}

.border-color li {
	display: inline-block;
	width: 100%;
    padding: 10px 0;
	background: #4867AA;
	text-align: center;
border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

.border-color li .urgencias {
	font-size: 20px;
}

.border-color li .urgencias a,
.border-color li .urgencias a:focus {
	color: #FF;
	outline: none;
	text-decoration: none;
}

.medidas li {
    padding: 16px 0;
	background-color: #930
}

.bienvenidos p {
	position: relative;
	float: left;
	width: 100%;
	height: auto;
	font-size: 16px;
	color: #555;
	padding-top: 10px;
    padding-bottom: 20px;
}

.noticias {
	float: left;
	position: relative;
	text-align: center;
}

.font-icon {
	color: #973c27;
	font-size: 38px !important;
    padding: 20px 0;
}

.noticias p {
	margin-top: 0px;
	margin-bottom: 0px;
	text-align: center;
	font-size: 15px;
	width: 100%;
	position: relative;
	float: left;
	padding-bottom: 10px;
	text-transform: uppercase;
}

.enlaces{
	position:relative;
	float:left;
	width:100%;
	height:auto;
}
.izquierdo{
	position:relative;
	float:left;
	width:100%;
	height:auto;
}

.cont_acceso {
	float: left;
	position: relative;
	width: 100%;
}

.izquierdo img.acceso{
    position: relative;
    float: left;
    width:100%;
    height: auto;
    /* margin-bottom: 10px; */
}

.cont_acceso:before {
	z-index: 1;
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	opacity: 0;
	transform: scale(0,1);
	-moz-transform: scale(0,1);
	-webkit-transform: scale(0,1);
	transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-webkit-transition: all 0.4s ease 0s;
	background: #973c27;
}

.cont_acceso:hover:before {
	transform: scale(1);
	-moz-transform: scale(1);
	-webkit-transform: scale(1);
	opacity: 0.7;
}

.text-trans {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 10px;
	width: 100%;
	height: 50%;
}

.cont_acceso .text-trans p {
	color: rgba(255,255,255,1);
    font-size: 16px;
	opacity: 0;
	text-align: center;
	width: 100%;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.35s;
	transition: opacity 0.2s, transform 0.35s;
	-webkit-transform: translate3d(0,40px,0);
	transform: translate3d(0,40px,0);
}

.cont_acceso .text-trans p span {
	font-weight: bold;
}

.cont_acceso:hover .text-trans p {
	-webkit-transition-delay: 0.05s;
	transition-delay: 0.05s;
	-webkit-transition-duration: 0.35s;
	transition-duration: 0.35s;
	-webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
	opacity: 1;
	z-index: 9;
}

.gallery-hover .text-trans .zoom-icon {
	color: #96361f;
    font-size: 17px;
	opacity: 0;
	text-align: center;
	font-weight: bold;
	width: 100%;
	font-style: inherit;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.35s;
	transition: opacity 0.2s, transform 0.35s;
	-webkit-transform: translate3d(0,40px,0);
	transform: translate3d(0,40px,0);
}

.gallery-hover:hover .text-trans .zoom-icon {
	-webkit-transition-delay: 0.05s;
	transition-delay: 0.05s;
	-webkit-transition-duration: 0.35s;
	transition-duration: 0.35s;
	-webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
	opacity: 1;
	position: relative;
	z-index: 9;
}

.izquierdo h2{
	margin: 10px 0;
    text-align: center;
    font-size: 15px;
    position: relative;
    float: left;
    width: 100%;
}
.izquierdo p{
	font-size: 14px;
    color: #555;
    text-align: justify;
    position: relative;
    float: left;
}

.centro{
	position:relative;
	float:left;
	width:100%;
	/*height:400px;*/
}
.centro img.acceso{
    position: relative;
    float: left;
    width: 100%;
    height: auto;
}

.centro h2{
    margin: 10px 0;
    text-align: center;
    font-size: 15px;
    position: relative;
    float: left;
    width: 100%;
}
.centro p{
	font-size: 14px;
    color: #555;
    text-align: justify;
    position: relative;
    float: left;
}

.derecha{
	position:relative;
	float:left;
	width:100%;
	/*height:400px;*/
}
.derecha img.acceso{
    position: relative;
    float: left;
    width: 100%;
    height: auto;
    /* margin-bottom: 10px; */
}
.derecha h2{
    margin: 10px 0;
    text-align: center;
    font-size: 15px;
    position: relative;
    float: left;
    width: 100%;
}
.derecha p{
	font-size: 14px;
    color: #555;
    text-align: justify;
    position: relative;
    float: left;
}

/*--EMPRESA--*/
.informacion-empresa{
	position:relative;
	float:left;
	width:100%;
	height:auto;
	padding-left: 100px;
    padding-right: 100px;
}

.empresa{
    position: relative;
    float: left;
    width: 100%;
    height: auto;
	text-align:center;
}

.empresa img{
    position: relative;
    margin-top: 10px;
}

.empresa h2 {
    margin-top: 0px;
    margin-bottom: 0px;
    text-align: center;
    font-size: 15px;
    width: 100%;
    position: relative;
    float: left;
    padding-bottom: 20px;
	line-height: 22px;
}
.empresa p {
	position:relative;
	float:left;
	width:100%;
	height:auto;
	font-size:16px;
	color:#555;
	text-align:justify;
	margin-top: 10px;
}
.empresa-imagen {
	text-align: center;
}

.empresa-imagen img {
	margin-top: 20px;
	position: relative;
	width: 200px;
}
#mainButton {
    color: white;
    border: none;
    outline: none;
    font-size: 18px;
    overflow: hidden;
    position: relative;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    text-transform: uppercase;
    background-color: #dd9256;
    padding: 14px;
}
#mainButton a:hover {
	color: #666;
	text-decoration: none;
}

.align-center {
	text-align: center !important;
}

.info-vet {
	font-weight: 600;
	color: #973c27;
}

.titulo-lista {
	float: left;
	position: relative;
}

.titulo-lista h2 {
	font-size: 18px;
}

ul.acciones li:last-child {
	border-bottom:none;
}

ul.acciones {
	list-style-type: none;
	list-style-type: decimal !ie; /*IE 7- hack*/
	margin: 0;
	margin-left: 0em;
	counter-reset: li-counter;
	float: left;
}

ul.acciones li{
	border-bottom:1px solid rgba(12, 153, 189,.1);
	padding:10px 0 12px 0;
}

ul.acciones li:before {
	font-size: 18px;
	font-weight: 400;
	color: #ffb973;
	margin:0 25px 0 0;
	content: counter(li-counter);
	counter-increment: li-counter;
}

/*--SERVICIOS--*/

.informacion-servicios{
	position:relative;
	float:left;
	width:100%;
	height:auto;

}
.servicios{
    position: relative;
    float: left;
    width: 100%;
    height: auto;
	text-align:center;
}
.servicios img{
    position: relative;
    margin-top: 10px;
}
.servicios  h2{
    margin-top: 0px;
    margin-bottom: 0px;
    text-align: center;
    font-size: 15px;
    width: 100%;
    position: relative;
    float: left;
    border-bottom: 5px solid #43073a;
    padding-bottom: 10px;
}
.servicios  p{
	position:relative;
	float:left;
	width:100%;
	height:auto;
	font-size:12px;
	color:#333;
	text-align:justify;
	margin-top: 10px;
}
.cont-servicios{
	position:relative;
	float:left;
	width:800px;
	height:auto;
	margin-top: 20px;
}
.izquierdo-sericios{
	position:relative;
	float:left;
	width:100%;
	height: auto;
	background:#d9cdd8;
	margin-right: 0px;
}
.izquierdo-sericios img{
	position:relative;
	float:left;
	width:260px;
	height:179px;
	margin-bottom:10px;
}
.izquierdo-sericios h2{
    margin-top: 18px;
    margin-bottom: 10px;
    text-align: center;
    font-size: 15px;
    position: relative;
    float: left;
    width: 100%;
	color: #555;
}
.izquierdo-sericios p{
	font-size: 12px;
    color: #555;
    text-align: justify;
    position: relative;
    float: left;
	padding-left: 10px;
    padding-right: 10px;

}
.centro-servicios{
	position:relative;
	float:left;
	width:100%;
	height: auto;
	background:#d9cdd8;
	margin-right: 0px;
}
.centro-servicios img{
	position:relative;
	float:left;
	width:260px;
	height:179px;
	margin-bottom: 10px;
}
.centro-servicios h2{
    margin-top: 18px;
    margin-bottom: 10px;
    text-align: center;
    font-size: 15px;
    position: relative;
    float: left;
    width: 100%;
	color: #555;
}
.centro-servicios p{
	font-size: 12px;
    text-align: justify;
    position: relative;
    float: left;
    color: #555;
	padding-left: 10px;
    padding-right: 10px;
}
.derecha-servicios{
	position:relative;
	float:left;
	width:100%;
	height: auto;
	background:#d9cdd8;
}
.derecha-servicios img{
	position:relative;
	float:left;
	width:100%;
	height:179px;
	margin-bottom: 10px;
}
.derecha-servicios h2{
    margin-top: 18px;
    margin-bottom: 10px;
    text-align: center;
    font-size: 15px;
    position: relative;
    float: left;
    width: 100%;
	color:#333;
}
.derecha-servicios p{
	font-size: 12px;
    text-align: justify;
    position: relative;
    float: left;
	padding-left: 10px;
    padding-right: 10px;
	color: #555;
}

/*--PRODUCTOS--*/
a.menucategorias:link, a.menucategorias:visited {
	color: #634826;
}
a.menucategorias:hover {
	color: #67471d;
}
a.menucategorias.active {
	color: #ab6d1c;
}
section.filter-section label {
	height: 30px;
}
section.filter-section label:before {
    content: "\f0da";
	font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
	display: block;
    width: 10px;
    height: 100%;
    float: left;
}

/*--GALERIA--*/

.informacion-galeria{
	position:relative;
	float:left;
	width:100%;
	height:auto;

}
.galeria{
    position: relative;
    float: left;
    width: 100%;
    height: auto;
	text-align:center;
}
.galeria img{
	position: relative;
	margin-top: 10px;
}
.gallery-items a img {
    max-width: 100%;
    width: 100% !important;
}
.gallery-items strong {
	font-size: 13px;
}
.galeria  h2{
    margin-top: 0px;
    margin-bottom: 0px;
    text-align: center;
    font-size: 15px;
    width: 100%;
    position: relative;
    float: left;
    padding-bottom: 20px;
}

.galeria  p{
	position:relative;
	float:left;
	width:100%;
	height:auto;
	font-size:16px;
	color:#333;
	text-align:justify;
	margin-top: 10px;
}

.imagenes-galeria{
    position: relative;
    float: left;
    width: 100%;
    height: 100%;
}

.imagenes-galeria ul{
	position:relative;
	float:left;
	width:100%;
	height:auto;
	list-style-type:none;
	padding-left: 0px;
	margin-bottom: 0px;
}

.imagenes-galeria ul li{
	position:relative;
	float:left;
	width:100%;
	height:100%;
	list-style-type:none;
	background:#ffb973;
	margin-right: 10px;
    margin-bottom: 10px;
}

.gallery-items {
	padding-bottom: 30px;
}

.gallery-hover {
	float: left;
	position: relative;
	width: 100%;
}

.gallery-hover:before {
	z-index: 1;
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	opacity: 0;
	transform: scale(0,1);
	-moz-transform: scale(0,1);
	-webkit-transform: scale(0,1);
	transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-webkit-transition: all 0.4s ease 0s;
	background: #e2e1e1;
}

.gallery-hover:hover:before {
	transform: scale(1);
	-moz-transform: scale(1);
	-webkit-transform: scale(1);
	opacity: 0.7;
}

.text-trans.zoom {
	height: 65%;
}

.img-responsive {
	padding-bottom: 30px;
}

/*--NUMERACION--*/

.numeracion{
	width: 100%;
    height: 27px;
    position: relative;
    margin-right: 12px;
	text-align:center;
}

.numeracion ul {
    margin-top: 0px;
    font-size: 14px;
    margin-bottom: 0px;
    color: white;
    width: 100%;
    float: right;
    position: relative;

}
.numeracion ul li{
	position: relative;
	float: left;
	width: 25px;
	height: 27px;
	display: table;
	background-color: #ffb973;
	margin-right: 10px;
	margin-bottom: 10px;
  /* margin-right: 5px; */
  text-align: center;
  /* border: 1px solid #A6C59E; */
}
.numeracion ul li.active{
	background-color: #930;
}
.numeracion ul li:hover{
  background:#d0a070 ;
  border: 0px solid #FFF;
  color:#fff;
}


.numeracion ul li a {
	display: table-cell;
	vertical-align: middle;

}
.selecion-filtro ul li:hover a {
	color:#279444;
}


/*--CONTACTO--*/
.mapa{
	position:relative;
	float:left;
	width:1000px;
	height:308px;
}
.informacion-contacto{
	position:relative;
	float:left;
	width:100%;
	height:auto;
}
.contacto{
	position:relative;
	float:left;
	width:100%;
	height:auto;
	text-align: center;
}
.contacto p{
	position:relative;
	float:left;
	width:800px;
	height:auto;
	font-size:12px;
	color:#333;
	text-align:justify;
}

.contacto  h2{
    margin-top: 0px;
    margin-bottom: 0px;
    text-align: center;
    font-size: 15px;
    width: 100%;
    position: relative;
    float: left;
    padding-bottom: 10px;
}

.info-contacto{
    width: 318px;
    height: auto;
    position: relative;
    float: left;
}

.font-icon-contact {
	color: #973c27;
	font-size: 30px !important;
	position: relative;
}

.info-contacto ul{
    width: 314px;
    height: auto;
    position: relative;
    float: left;
    list-style-type: none;
    padding-left: 0px;
    font-size: 15px;
    margin-bottom: 0px;
	margin-top: 12px;

}

.info-contacto ul li{
	width:257px;
	height:auto;
	position:relative;
	float:left;
	list-style-type:none;
	padding-left: 34px;
	padding-left: 0px;
    margin-left: 10px;
	margin-top: 15px;

}

.contact-icon {
	font-size: 15px;
	padding-right: 5px;
}
.urgencias {
	color: #fff;
	font-weight: 600;
	text-transform: uppercase;
}
.urgencias p {
    padding-left: 35px;
}

/*--FORMULARIO--*/
.formulario{
    position: relative;
    float: right;
    width: 100%;
	margin-bottom:10px;
}

.formulario h2 {
    border-radius: 5px;
    display: block;
    font-family: sans-serif;
    font-size: 20px;
    width: 433px;
	color: #702c1f;
	font-weight: 100;
}

/*--- estilos para los ul y li del formulario ---*/

.formulario ul {
    list-style-type: none;
    margin: 0px;
    margin-top: 13px;
	padding-left: 0px;

}
.formulario ul img{
    position: relative;
    float: left;
    width: 34px;
    margin-top: 10px;
	}
.formulario li{
	padding: 7px;
	position: relative;
	width:100%;
}
.formulario li p{
	font-size: 12px;
	color: #555555;
	float: left;
	margin-top: 0;

}

.formulario label {
    color: #555555;
    display: inline-block;
    float: left;
    font-family: sans-serif;
    font-size: 15px;
    font-weight: lighter;
	margin-top: 3px;
    padding: 3px;
    width: 100%;
}
.formulario input[type="text"], .formulario input[type="email"] {
	height: 30px;
	width: 100%;
	padding: 5px 8px;
}

.formulario textarea {
    padding:8px;
    width:100%;
}
.formulario button {
      float: right;
}

/*----- estilos visuales de los elementos --------*/

.formulario input[type="text"], .formulario input[type="email"], .formulario textarea {
    border:1px solid #973c27;
    color: #888;
    font-size: 12px;
    padding-right:30px;
    -moz-transition: padding .25s;
    -webkit-transition: padding .25s;
    -o-transition: padding .25s;
    transition: padding .25s;
	resize: none;
}
.formulario .submit {
	background: #973c27;
	color: #fff;
	padding: 5px 20px;
	border: none;
	float: right;
}
.formulario input:focus, .formulario textarea:focus {
	outline: none;
}

.required {
	color: #d92e31;
	font-weight: bold;
}

/* === Estilos del boton de Envio === */
button.submit {
	padding: 9px 17px;
	font-family: Helvetica, Arial, sans-serif;
	font-weight: bold;
	line-height: 1;
	color: #FFF;
	border: none;
	background-image: -moz-linear-gradient(0% 100% 90deg, #BBBBBB, #FFFFFF);
	background-color: #973c27;
	-moz-transition: all 0.35s ease-in-out;
	-webkit-transition: all 0.35s ease-in-out;
	-o-transition: all 0.35s ease-in-out;
	-ms-transition: all 0.35s ease-in-out;
	transition: all 0.35s ease-in-out;
}
button.submit:hover {
    cursor: pointer;
    color: #fff;
    background: #661d0d;
}
button.submit:focus {
	outline: none;
}
.sucursales h4 {
	font-weight: bold;
	margin-top: 25px;
}

/*-- DETALLE NOTICIAS  --*/
.single-post {
	float: left;
	position: relative;
}

.post-media .item img {
	max-width: 100%;
	width: 100%;
}

.post-content .title {
	margin-bottom: 40px;
}

.post-info {
	margin-bottom: 40px;
}

.post-content .post-info > * {
    display: inline-block;
    padding: 0 20px 0 0;
    opacity: 0.4;
}

.icon-detalle {
	padding-right: 5px;
}


/*--FOOTER--*/
footer{
	position:relative;
	float:left;
	width:1000px;
	height:100px;
	background:#973c27;
	margin-top: 20px;
}

footer img{
	position: relative;
    float: right;
    margin-right: 25px;
	width: auto;
	margin-top: 10px;
}
footer ul{
	position:relative;
	float:left;
	margin-top: 23px;
	list-style-type:none;
	padding-left: 34px;
	width: 50%;
}
footer li{
	font-size: 13px;
    color: #fff;
	margin-top: 3px;
}
footer ul img{
	width: 20px;
    position: relative;
    float: left;
    margin-right: 10px;
}

.global3{
	position:relative;
	float:left;
	width:1000px;
	height:32px;
	background:#661d0d;
}
.global3 p{
	color: #FFF;
    font-size: 13px;
    position: relative;
    float: right;
    margin-right: 12px;
	margin-top: 7px;
    margin-bottom: 0px;
}
.global3 p a{
    color: #FFF;
    font-size: 13px;
    position: relative;
    float: right;
    margin-right: 12px;
    margin-bottom: 0px;
    font-weight: bold;
    text-decoration: none;
    margin-left: 3px;
	-moz-transition: all 0.35s ease-in-out;
	-webkit-transition: all 0.35s ease-in-out;
	-o-transition: all 0.35s ease-in-out;
	-ms-transition: all 0.35s ease-in-out;
	transition: all 0.35s ease-in-out;
}
.global3 p a:hover{
    position: relative;
    /* float: right; */
    margin-left: 3px;
    margin-bottom: 0px;
    /* color: #000; */
    font-size: 13px;
    color: #F60;
    font-weight: bold;
    text-decoration: none;
}
.handle{
  -webkit-box-sizing: border-box;
  background: #661d0d;
  box-sizing: border-box;
  color: white;
  cursor: pointer;
  display: none;
  padding: 15px 20px;
  text-align: left;
  width: 100%;
}

/*FORMULARIO PREGUNTA*/
.min-form {
	float: left;
	border: none;
	background: #973c27;
	color: #fff;
	padding: 4px 10px;
	border-radius: 3px;
}
.btn-close {
	float: right;
	font-size: 25px;
	padding: 0px;
}
input:focus, input:active, textarea:focus, textarea:active, button:focus, button:active, .btn:focus, .btn:active {
	box-shadow: none;
	outline: none !important;
	resize: none;
}

.btn-link {
	color: #973c27;
}
.btn-link:hover {
	color: #007400;
	text-decoration: none;
}

.flip {
	-webkit-perspective: 800;
	perspective: 800;
	/*width: 290px;*/
	max-width: 100%;
	height: 45px;
	position: relative;
}
.flip ul {
	padding: 0;
	list-style: none;
	margin: 0;
}
.flip .button {
	width: 100%;
	height: 100%;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	-webkit-transform-origin: top;
	transform-origin: top;
	-webkit-transition-delay: 0.4s;
	transition-delay: 0.4s;
}
.flip .button li {
	width: 100%;
	height: 100%;
	position: absolute;
	right: 3px;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	z-index: 2;
}
.flip .button li:first-child {
	background: #973c27;
	color: white;
	cursor: pointer;
	z-index: 1;
	border-radius: 5px;
	font-size: 1.3em;
	text-align: center;
	line-height: 50px;
}
.flip .button li:last-child {
	-webkit-transform: rotatex(180deg);
	transform: rotatex(180deg);
	background-color: white;
	padding: 0 20px;
	box-shadow: none;
	-webkit-transition-delay: 0.4s;
	transition-delay: 0.4s;
}
.flip.flipped .button {
	-webkit-transform: rotatex(180deg) translateY(-100px);
	transform: rotatex(180deg) translateY(-100px);
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
}
.flip.flipped .button li:last-child {
	border-radius: 0 0 5px 5px;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08), 0 2px 3px rgba(0, 0, 0, 0.22);
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
}
.flip .content li {
	-webkit-transition: 0.2s;
	transition: 0.2s;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform-origin: bottom;
	transform-origin: bottom;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform: rotatex(-100deg);
	transform: rotatex(-100deg);
	width: 100%;
	height: 100%;
	z-index: 2;
	background: #fff;
	color: black;
	cursor: pointer;
}
.flip .content li h4 {
	color: #973c27;
	font-weight: bold;
	text-transform: uppercase;
}
.flip .content li:first-child {
	border-radius: 5px 5px 0 0;
}
.flip .content li:nth-last-child(3) {
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
}
.flip .content li:nth-last-child(2) {
	-webkit-transition-delay: 0.2s;
	transition-delay: 0.2s;
}
.flip .content li:nth-last-child(1) {
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
}
.flip.flipped .content ul li {
	-webkit-transform: rotatex(0deg);
	transform: rotatex(0deg);
	pointer-events: initial;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08), 0 2px 3px rgba(0, 0, 0, 0.22);
}
.flip.flipped .content ul li:nth-last-child(4) {
	-webkit-transition-delay: 0.8s;
	transition-delay: 0.8s;
}
.flip.flipped .content ul li:nth-last-child(3) {
	-webkit-transition-delay: 0.6s;
	transition-delay: 0.6s;
}
.flip.flipped .content ul li:nth-last-child(2) {
	-webkit-transition-delay: 0.4s;
	transition-delay: 0.4s;
}
.flip.flipped .content ul li:nth-last-child(1) {
	-webkit-transition-delay: 0.2s;
	transition-delay: 0.2s;
}
.flip .content {
	position: absolute;
	bottom: -10px;
	right: 3px;
	margin: 0;
	pointer-events: none;
	width: 100%;
}
.flip .content ul {
	/*width: 290px;*/
}
.flip .content ul li {
	padding: 20px;
}
.flip .content ul li input, .flip .content ul li textarea {
	width: 100%;
	padding: 7px 0;
	border: 0;
	border-bottom: 1px solid #973c27;
	font-size: 16px;
}
.flip .content ul li input:focus {
	box-shadow: none;
	border-bottom-color: #973c27;
	outline: 0 none;
}
.flip .content ul:nth-child(2) {
	bottom: 100px;
}

@media screen and (min-width: 992px){
	.botonera {
		z-index: 9;
	}
	header.menu {
		height: auto !important;
		width: 100%;
	}
}


@media screen and (max-width: 992px){
	.botonera {
		position: relative;
	}
	.botonera ul {
		width: 100%;
		display: none;
	}
	.informacion-galeria{
		width:100%;
		height:auto;
		padding-left: 10px;
		padding-right: 10px;
	}
	.informacion.servicios{
		    width: 100%;
	}
	.izquierdo-servicios{
			width:100%;
	}
	.cont-servicios{
		width:100%;
		height:	auto;
	}
	.informacion-empresa{
		width:100%;
		height:auto;
	}
	.empresa-imagen {
		max-width:100%;
	}
	.empresa-imagen img{
		width:100%;
	}

	.informacion-galeria{
		width:100%;
		height:auto;
		padding-left: 10px;
		padding-right: 10px;
	}
	.izquierdo {
		max-width: 100%;
		height:auto;
	}
	.centro {
		max-width: 100%;
		height:auto;
	}
	.derecha{
		max-width: 100%;
		height:auto;
	}
	.espacio{
		padding-top: 10px;
		position: relative;
		float: left;
	}
	.logo {
		background-color: transparent;
		position: absolute;
		right: 20px;
		top: 7px;
		width: auto;
		z-index: 5;
		padding: 0px !important;
	}
	.logo img {
		width:37px !important;
	}
	.logo img {
		display: none;
	}
	.logo-res {
		display: block;
		text-transform: uppercase;
		font-size: 17px;
		padding-top: 8px;
	}
	.rslides {
		position: relative !important;
	}
	header.menu {
		height: auto !important;
		width: 100%;
	}

	nav.botonera  ul{
    	max-height: 0;
    	height: auto;
	}
	.showing{
	    max-height: 20em !important;
		z-index: 9;
		display: block !important;
	}
	nav.botonera ul li{
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		border-bottom: 1px solid rgba(218, 221, 255, 0.17);
		display: block;
		text-align: left;
		width: 100%;
    }
	.handle{
	    display: block;
	}
	.global3 {
		text-align: center;
	}
	.global3 p {
		float: none;
	}
	.global3 p a{
		float: none;
	}
	.slider{
		display: block;
		position: relative;
	}
	.faq {
		padding-bottom: 50px;	
	}
}
@media screen and (max-width: 768px){
	.izquierdo {
		max-width: 100%;
		height:auto;
	}
	.centro {
		max-width: 100%;
		height:auto;
	}
	.derecha{
		max-width: 100%;
		height:auto;
	}
	.espacio{
		padding-top: 10px;
		position: relative;
		float: left;
	}
	.informacion.servicios{
		    width: 100%;
	}

}

@media screen and (max-width: 700px) {
	.centered-btns_tabs {
		display: none;
	}
}

@media screen and (max-width: 490px) {
	.logo-res {
		font-size: 10px;
		padding-top: 12px;
	}
	footer {
		float: left;
		height: auto;
		position:  relative;
		text-align: center;
	}
	footer ul {
		width: 100%;
	}
	footer ul li {
		text-align: left;
	}
	footer img {
		float: none;
		margin-right: 0;
	}
}
@media screen and (max-width: 320px){
		.informacion-galeria{
			width:100%;
		}
			.cont-servicios{
			width:100%;
			height:	auto;
		}
}

.masking-btn, .whiteSection .featuredCollection .thumbnail .imageWrapper .masking .viewBtn, .mainContent .featuredCollection .thumbnail .imageWrapper .masking .viewBtn, .productListSingle .media .media-left .maskingImage .viewBtn {
    width: 196px;
    min-height: 55px;
    border: 3px solid #ffffff;
    text-transform: uppercase;
    font-weight: 700;
    color: #ffffff;
    font-size: 16px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    box-shadow: 0;
    border-radius: 0;
    padding: 0;
    line-height: 55px;
}
.content-center, .imageBox .productImage .productMasking ul, .whiteSection .featuredProducts .slide .productImage .productMasking ul, .mainContent .featuredProducts .slide .productImage .productMasking ul, .productsContent .productBox .productImage .productMasking ul, .masking-btn, .whiteSection .featuredCollection .thumbnail .imageWrapper .masking .viewBtn, .mainContent .featuredCollection .thumbnail .imageWrapper .masking .viewBtn, .productListSingle .media .media-left .maskingImage .viewBtn {
    position: absolute;
    top: 50%;
    left: 50%;
    -moz-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
@media (min-width: 1200px)
.btn {
    font-size: 15px;
    padding: 13px 0;
}
@media (min-width: 992px)
.btn {
    font-size: 14px;
    padding: 12px 0;
}
@media (min-width: 768px)
.btn {
    font-size: 12px;
    padding: 8px 0;
}
@media (min-width: 480px)
.btn {
    font-size: 15px;
    padding: 13px 0;
}
.btn {
    display: inline-block;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    text-transform: uppercase;
    text-align: center;
    font-size: 14px;
    padding: 9px 0;
    outline: 0!important;
}
.btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}