@font-face{
    font-family: 'Baloo Bhaijaan';
    src: url(../font/BalooBhaijaan-Regular.ttf);
}
* {
  box-sizing: border-box;
  font-family: 'Baloo Bhaijaan';
}

img {
  display: block;
  max-width: 100%;
}

body {
  margin: 0;
  background: #efefef;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -background-size: cover;
}

.contenedor {
  margin: auto;
  width: 98%;
}

/*Header*/

.header {
  height: 70px;
  background: #fdcc4c; 
	transition: all 0.3s;
}

.header .contenedor {
  display: flex;
  justify-content: space-between;
}

.logo {
  display: block;
  width: 220px;
  cursor: pointer;
	padding-top: 0px;
}


.logo, .fa-bars-staggered {
  margin: 0 10px;
}

.fa-bars-staggered {
  display: block;
  width: 45px;
  height: 45px;
  font-size: 30px;
  text-align:center;
  line-height: 44px;
  border-radius: 5px;
  margin-top: 12px;
  margin-left: auto;
  padding-top: 7px;
  cursor: pointer;
  background: #fdcc4c;
  color: #00348e;
      box-shadow: 0 0 0 3px white,
    5px 5px 10px #494949;
}

.fa-bars-staggered:hover {
  background: #00348e;
  color: #fdcc4c;
}

/*Menú*/

.nav {
  position: absolute;
  top: 70px;
  left: -100%;
  width: 100%;
  transition: all 0.5s;
}

.menu {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
	z-index: 100;
}

.menu__link {
  display: block;
  padding: 15px;
  background: #fdcc4c;
  text-decoration: none;
  color: #ff3b3f;    
}

.menu__link:hover, .select {
  background: rgb(250, 250, 250);
  color: #00348e;
}

.mostrar {
  left: 0;
}

.select {
  background: rgb(250, 250, 250);
  color: #00348e;
}

.fixed {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 1000;
	background: rgba(250, 250, 250, 0.5);
}

/*Sucursales*/

.titulo {
  background: #fdcc4c;
  text-align: center;
  font-size: 20px;
  color: #00348e;
  margin-bottom: 0px;
  padding-bottom: 10px;
}
.titulo h1 {
    margin-bottom: 0px;
}
.titulo h3 {
    margin-top: 0px;
}

#map{
    width: 100%;
    height: 450px;
    margin: auto;
    margin-top: -28px;
    margin-bottom: 35px;
    position: relative;
	  overflow: hidden;
    box-shadow: 0px 10px 0px 0px #fdcc4c,
    0px 10px 20px #000;
    border-radius: 0px;
}

#map a{
    color: #ff3b3f;
}

#sucursales {
  text-align: center;
  padding-bottom: 50px;
  padding-top: 0;
}

#sucursales .contenedor {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0;
  padding-top: 0;
}

.sucursales-zoo {
  margin: 20px;
}

#sucursales h4 {
  font-size: 16px;
  color: #ff3b3f;
  background: #d9d9d9;
  width: 300px;
  height: 200px;
  margin: 7px auto;
  border-style: solid;
  border-color: white;
  border-width: 5px;
  padding-top: 10px;
  box-shadow: 0 0 0 0 transparent,
  0 15px 50px #000;
}

.location{
  font-size: 14px;
  color: #00348e;
  text-decoration: none;
  width: 100%;
  margin: 5px;
}
.location:hover{
  color: rgba(250,250,250,0.8);
}

.llamar{
  font-size: 18px;
  color: #00348e;
  text-decoration: none;
  width: 100%;
  margin: 5px;
}

.llamar:hover{
  color: rgba(250,250,250,0.8); 
}

/*Footer*/

.footer {
  background: #fdcc4c;
  color: #ff3b3f;
  padding: 10px;
  text-align: center;
  margin-top: 30px;
}

.footer .social [class^="fa-"] {
    display: inline-block;
    color: #00348e;
    text-decoration: none;
    font-size: 40px;
    margin-bottom: 30px;
    margin-left: 10px;
    margin-right: 10px;
}
.certificado {
    width: 90%;
    margin: auto;
    color: #00348e;
}
.certificado_img {
    height: 500px;
    margin: auto;
}
.certificado_txt {
    color: #ff3b3f;
    text-decoration: none;
}

/*Responcive*/

@media(min-width:1024px) {
    
    body {
  margin: 0;
  background: #efefef;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -background-size: cover;
}
  
  .contenedor {
		width: 1000px;
	}
	.logo {
		height: 100px;
	}
	.nav {
		position: static;
		width: auto;
	}
	.menu {
		display: flex;
	}
	#btn-menu {
	display: none;
    }
	.menu__link {
	font-size: 1.2em;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 20px;
    padding-top: 20px;
}
	.select {
		background: rgb(250, 250, 250);
		color: #ff3b3f;
	}
	.menu__link:hover, .select {
		background: white;
		color: #ff3b3f;
	}
    .mapa{
       width: 50%;
       margin: auto;
    }
    #map{
    width: 1000px;
    height: 650px;
    margin: auto;
    margin-top: -28px;
    margin-bottom: 35px;
    position: relative;
	overflow: hidden;
    box-shadow: 0px 0px 0px 10px #ff3b3f,
    0px 10px 20px #000;
    border-radius: 0px;
}
	
}