@charset "UTF-8";
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  line-height: 2em;
  color: #454545;
}

ul, header, menu {
  padding: 0;
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: #E89C46;
}

.cont1 li, .icon, .txt {
  display: inline-block;
  vertical-align: top;
}

.fixed {
  animation: posicion 1s ease;
  position: fixed;
}

.destacado {
  font-weight: 700;
}

#quienes, #servicios, #galeria, #contacto {
  padding-top: 50px;
}

.titulo {
  background: #282355;
  color: #fff;
  text-align: center;
  font-weight: 200;
  padding: 60px 0;
  font-size: 36px;
  margin: 40px 0;
}

header {
  width: 100%;
  height: 100px;
  background: #761854;
  position: absolute;
  top: 0px;
  left: 0;
  z-index: 10;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

header #logo {
  position: absolute;
  width: 300px;
}

header #logo img {
  width: 100%;
}

header .menu {
  position: absolute;
  bottom: 0;
  right: 20px;
}

header .menu ul {
  list-style: none;
}

header .menu ul li {
  vertical-align: top;
  display: inline-block;
}

header .menu ul li a {
  color: #fff;
  text-decoration: none;
  padding: 20px;
  display: block;
  font-weight: 700;
  font-size: 16px;
}

header .menu ul li a:hover {
  background: #941e69;
}

h1 {
  font-size: 60px;
  text-align: center;
  font-weight: 500;
}

.wrapper {
  width: 100%;
  padding: 20px;
}

.gris {
  background: #f1f1f1;
}

.contenido {
  max-width: 1200px;
  margin: 0 auto;
}


.contenido h1 {
  font-size: 28px;
  margin: 30px 0 0 0;
}

.contenido h1 i {
  margin-right: 10px;
}

.contenido .separador1 {
  text-align: right;
}

.contenido .separador2 {
  text-align: left;
}

.col2 {
  width: 50%;
  display: inline-block;
  vertical-align: top;
  padding: 0 25px;
}
.col2 h1{margin-bottom:30px;}
.col2 p {
  margin: 0;
}

.col2 .sub {
  font-size: 22px;
  font-weight: 700;
}

.galerias li {
  vertical-align: top;
  display: inline-block;
}

.galerias img{width:100%;}

#wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

#wrapper .sub {
  max-width: 550px;
  margin: 0 auto;
  text-align: center;
  font-size: 20px;
  color: #e6e6e6;
  font-weight: 500;
}

#wrapper #quienes .cont1 {
  text-align: center;
}

#wrapper #quienes .cont1 ul .amarillo {
  border-bottom: 10px solid #fbcf61;
}

#wrapper #quienes .cont1 ul .rojo {
  border-bottom: 10px solid #ff6f6f;
}

#wrapper #quienes .cont1 ul .verde {
  border-bottom: 10px solid #a8d164;
}

#wrapper #quienes .cont1 ul li {
  background: rgba(100, 100, 100, 0.2);
  width: 32%;
  padding: 20px;
  min-height: 400px;
}

#wrapper #quienes .cont1 ul li p {
  font-size: 14px;
  line-height: 18px;
}

#wrapper #quienes .cont1 ul .centro {
  margin: 0 1%;
}

#wrapper #servicios .serv {
  padding: 15px;
  background: rgba(100, 100, 100, 0.2);
}

#wrapper #servicios .serv .icon {
  font-size: 60px;
  text-align: center;
  width: 15%;
  padding: 80px 0;
}

#wrapper #servicios .serv .txt {
  width: 85%;
}

#wrapper #galeria .gal_img {
  text-align: center;
  list-style: none !important;
}

#wrapper #galeria .gal_img li {
  list-style: none;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 10px;
  padding: 20px img;
}

#map_canvas {
  width: 100%;
  height: 400px;
}

#info {
  font-family: Arial;
  background: #E2BA52;
  text-align: center;
  padding: 15px 0 0 0;
  margin-top: 60px;
}

#info h2 {
  font-size: 40px;
}

#info h3 {
  font-size: 76px;
  color: #000;
  width: auto;
  display: block;
}

#contacto {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

#contacto .formulario {
  width: 60%;
  margin: 0 auto;
}

#contacto .formulario input, #contacto .formulario textarea {
  width: 100%;
  padding: 20px;
  font-size: 14px;
  border: none;
  margin-bottom: 1em;
  text-align: center;
}

#contacto .formulario .btn_enviar {
  font-size: 14px;
  background: #000;
  border: 2px solid #fff;
  color: #fff;
  padding: 15px;
}

.top {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #B72727;
  padding: 8px 15px;
  font-size: 30px;
}

.top a {
  color: #fff;
}

@keyframes posicion {
  0% {
    top: -100px;
    opacity: 0;
  }
  100% {
    top: 0px;
    opacity: 1;
  }
}

.tabs{
  display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    margin-top: 30px;
}

.tabs li {
	display: inline-block;
	padding: 0.5em 1.0em;
	border: none;
	border-radius: 1px;
	font-size: 16px;
	text-transform: uppercase;
	cursor: pointer;
		background:#512155;
	    float: left;
    border-radius: 0px;
    margin-left: 35px;
    margin-right: 0px;
    padding: 10px;
}

.tabs li:hover {
  background-color: #761854;
}

.tabs li.active {
    background-color: #761854;
}

.tabs li.active a {
  color: white;
	text-decoration:none;
}

.tabs li a {
	color:#fff;
	text-decoration:none;
}


.tabs:after {
    content: "";
    display: block;
    clear: both;
    margin-bottom: 40px;
}



		#navegacion{margin-top:15px;    margin-right: 5%;}
#navegacion ul
{
	list-style:none;
	position:relative;
	float:right;
	margin:0;
	padding:0;
  background:#761854;
}
#navegacion ul a
{
	display:block;
	color:#fff;
	text-decoration:none;
	line-height:32px;
	padding:25px;
	    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: normal;
}
#navegacion ul li
{
	position:relative;
	float:left;
	margin:0;
	padding:0;
	margin-left: 1em;
}
#navegacion ul ul
{
	display:none;
	position:absolute;
	top:100%;
	left:0;
	background:#761854;
	padding:0;
	border: 3px solid #fff;
    border-top: none;
}
#navegacion ul ul li{float:none;width:160px}
#navegacion ul ul a{line-height:120%;padding:10px 15px;font-weight: bold;}
#navegacion ul li:hover > ul{display:block}

#menu {
    display: none;}
.btn_movil {
  display: none;
  font-size: 20px;
  color: #fff !important; }
  .btn_movil i {
    color: #fff !important; }
    header #menu {
    margin: 0 auto;
    max-width: 1200px;
    min-width: 1000px;
    padding: 20px 0;
    font-size: 20px; }
    header #menu li {
      display: inline-block;
      vertical-align: top; }
      header #menu li a {
        color: #fff;
        text-decoration: none;
        padding: 0 20px;
        text-shadow: 1px 1px 3px #000000; }
    
@media only screen and (max-width: 935px) {
.col2 {
    width: 100%;}
  .btn_movil {
    display: block;
    position: absolute;
    left: 50%;
        margin-left: 30%;
    top: 40px; }
#navegacion{display:none;}
  #menu {
    position: relative;
    float: right;
    width: 36% !important;
    min-width: 0% !Important;
    top: 100px;
    background: #761854; }
    #menu li {
      display: block !important; }
      #menu ul {display:table;}
   }
   
   @media only screen and (max-width: 430px) {
.btn_movil {
    margin-left: 20%;}
    header #logo {
    width: 200px;
}
}
