/* 
font-family: 'Roboto', sans-serif;
font-family: 'Playfair Display SC', serif;
*/

.display-maximo {
	display: none;
}

.display-grande {
	display: none;
}

.display-mediano {
	display: none;
}

.display-chico {
	display: none;
}

body, html{
	width:100%;
	height:100%;
	scroll-behavior: smooth;
}

.vertical-centered-text {
		  -ms-display: flex;
		  display: flex;
		  /* alineacion vertical */
		  align-items: center;
		   /* alineacion horizontal */
		  justify-content: center;
}

.vertical-centered-text-menu {
		  -ms-display: flex;
		  display: flex;
		  /* alineacion vertical */
		  align-items: center;
		   /* alineacion horizontal */
		  justify-content: space-around;
}

input:focus {
    outline:none;
}


/* PRE LOADER */

*,*:after, *:before{
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

#contenedor_carga{
	background-color: #181818;
	height: 100%;
	width: 100%;
	position: fixed;
	-webkit-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
	z-index: 10000;
}

#carga{
	border: 6px solid #ccc;
	border-top-color: #666;
	border-top-style: #fff;
	height: 40px;
	width: 40px;
	border-radius: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	-webkit-animation: girar 1.5s linear infinite;
	-o-animation: girar 1.5s linear infinite;
	animation: girar 1.5s linear infinite;
}

@keyframes girar {
	from{ transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}





.brillo { 
	transition: opacity 500ms;
  	opacity: 1;
}

.brillo:hover { 
	transition: opacity 500ms;
  	opacity: 0.5;
}







/* MENU */

#btn-menu { 
	height:40px; 
	width:40px; 
	position:fixed; 
	right:0px;
	top:0px;
	text-align:center;
	z-index:15;
}

#logo-menu { 
	position: relative; 
	margin-bottom: 60px;
}

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
  z-index: 25;
}
.overlay:target {
  visibility: visible;
  opacity: 1;
}

.popup {
  width: 100%;
  height: 100%;
  top: 0px;
  right: 0px;
  position: absolute;
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
  transition: all 500ms;
}

.cerrar { 
	height:40px; 
	width:40px; 
	position:absolute;
	right:0px;
	top:0px;
	text-align:center;
}

ul, li { 
	list-style: none;
	margin: 10px 0;
}

.btn-menu{
	font-family: 'Archivo', sans-serif;
	font-weight: 400;
	font-size: 12pt;
	color: #ffffff;
	text-decoration: none;
	background-color: transparent;
	padding: 5px 10px;
	transition: 0.3s;
	border-radius: 15px;
}

.btn-menu:hover{
	color: #222;
	background-color: #fff;
}

#botonera{
	height: 50%;
	width: 50%;
	top: 25%;
	left: 25%;
	position: absolute;
	text-align: center;
}
 
.demo{ background: #f8f8f800; }
.testimonial{
    margin: 0 20px 40px;
}
.testimonial .testimonial-content{
    padding: 35px 25px 35px 50px;
    margin-bottom: 35px;
    background: #fcfcfc;
    border: 1px solid #f0f0f0;
    position: relative;
}
.testimonial .testimonial-content:after{
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #fff;
    position: absolute;
    bottom: -10px;
    left: 22px;
    transform: rotate(45deg);
}
.testimonial-content .testimonial-icon{
    width: 50px;
    height: 45px;
    background: #c7c7c7;
    text-align: center;
    font-size: 22px;
    color: #fff;
    line-height: 42px;
    position: absolute;
    top: 37px;
    left: -19px;
}
.testimonial-content .testimonial-icon:before{
    content: "";
    border-bottom: 16px solid #6b6b6b;
    border-left: 18px solid transparent;
    position: absolute;
    top: -16px;
    left: 1px;
}
.testimonial .description{
    font-size: 15px;
    font-style: italic;
    color: #8a8a8a;
    line-height: 23px;
    margin: 0;
}
.testimonial .title{
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #525252;
    text-transform: capitalize;
    letter-spacing: 1px;
    margin: 0 0 5px 0;
}
.testimonial .post{
    display: block;
    font-size: 14px;
    color: #ccc7c7;
}
.owl-theme .owl-controls{
    margin-top: 20px;
}
.owl-theme .owl-controls .owl-page span{
    background: #ccc;
    opacity: 1;
    transition: all 0.4s ease 0s;
}
.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
    background: #000000;
}

.icono-contacto {
	color: black; 
	font-size: 15px;
    margin-right: 10px;
}

.texto-contacto {
	color: black; 
	text-decoration: none !important;
}

.fa {
	line-height: 42px;
}

/* FIN MENU */