@import url(https://fonts.googleapis.com/css?family=Open+Sans);
@import url(http://weloveiconfonts.com/api/?family=fontawesome|typicons);
[class*="fontawesome-"]:before {
  font-family: 'FontAwesome', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
}

header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

.contenedor {
    width: 98%;
    margin: auto;
}

h1 {
    float: left;
}

header .contenedor {
    display: table;
}

section {
    width: 100%;
    margin-bottom: 25px;
}

#bienvenidos {
    text-align: center;
}

footer .contenedor {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 25px;
}

.copy {
    font-size: 20px;
}
.desa{
	font-size: 13px;
}

.sociales {
    width: 100%;
    text-align: center;
    font-size: 28px;
}

.sociales a {
    color: #333;
    text-decoration: none;
}

@media (min-width:768px) { 
    .sociales {
        width: auto;
    }
    
    footer .contenedor {
        justify-content: space-between;
    }
}


@media (min-width:1024px) {
    .contenedor {
        width: 1000px;
    }
}


#blog h3, h4 {
    text-align: center;
}

#blog .contenedor{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

#blog article {
    margin: 15px;
}

#blog img {
    width: 100%;
	height:160px;
    max-width: 280px;
	
}
#banner {
    margin-top:-25px;
    position: relative;
}

#banner img {
    width: 100%;
    height: 100%;
}

#banner .contenedor {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    color: #fff;
}

#banner h2 {
    font-size: 28px;
}

#banner a {
    display: block;
    width: 100px;
    color: #fff;
    text-decoration: none;
    padding: 7px;
    margin-top: 10px;
    border: 3px solid #fff;
}

#banner a:hover {
    background: rgba(0,0,0,1);
}

@media (min-width:80px) {
	#banner h2 {
        font-size: 30px;
		margin-top:40px;
		margin-left:25px;
    }
    
    #banner a {
        margin-top: 7px;
		margin-left:80px;
    }
	#banner p{
		margin-left:30px;
	}
    
}

@media (min-width:768px) { 
    #banner {
        height: 500px;
        overflow: hidden;
    }
    
    #banner img {
        height: auto;
        margin-top: -100px;
    }
	#banner h2 {
        font-size: 60px;
    }
    
    #banner a {
        margin-top: 5px;
		margin-left:260px;
    }
	#banner p{
		margin-top:-12px;
	}
}

@media (min-width:1024px) { 
    #banner img {
        margin-top: -200px;
		
    }
	#banner h2 {
        font-size: 90px;
    }
    
    #banner a {
        margin-top: 25px;
    }
}

#info {
    color: #000000;
    text-align: center;
    padding: 20px;
}

#info .contenedor {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.info-pet {
    margin: 20px;
}

.info-pet img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 7px solid #fff;
}

@media (min-width:480px) {
    .info-pet {
        width: 40%;
    }
}

@media (min-width:1024px) {
    .info-pet {
        width: auto;
    }
}
#menu-bar {
    display: none;
}

header label {
    float: right;
    font-size: 15px;
    margin: 6px 0;
    cursor: pointer;
	background:#fff;
	border-radius: 7%;
	padding:1px;
}

.menu {
    position: absolute;
    top: 130px;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(51,51,51,0.9);
    transition: all 0.5s;
    transform: translateX(-100%);
}

.menu a {
    display: block;
    color: #fff;
    height: 50px;
    text-decoration: none;
    padding: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

.menu a:hover {
    background: rgba(255,255,255,0.3);
}

#menu-bar:checked ~ .menu {
    transform: translateX(0%);
}

@media (min-width:1024px) {
    .menu {
        position: static;
        width: auto;
        height: auto;
        transform: translateX(0%);
        float: right;
        display: flex;
    }
    
    .menu a {
        border: none;
    }
    
    header label { 
        display: none;
    }
}

img{
	width:120px;
	height:100px;
}




#llegar {
    margin-top:65px;
    position: relative;
}

#llegar img {
    width: 100%;
    height: 100%;
}

#llegar .contenedor {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    color: #fff;
}

#llegar h2 {
    font-size: 28px;
}

#llegar a {
    display: block;
    width: 100px;
    color: #fff;
    text-decoration: none;
    padding: 7px;
    margin-top: 10px;
    border: 3px solid #fff;
}

#llegar a:hover {
    background: rgba(51,51,51,0.8);
}

@media (min-width:80px) {
	#llegar h2 {
        font-size: 10px;
    }
    
    #llegar a {
        margin-top: 25px;
    }
    
}

@media (min-width:768px) { 
    #llegar {
        height: 900px;
        overflow: hidden;
    }
    
    #llegar img {
        height: auto;
        margin-top: -100px;
    }
	#llegar h2 {
        font-size: 200px;
    }
    
    #llegar a {
        margin-top: 5px;
    }
}

@media (min-width:1024px) { 
    #llegar img {
        margin-top: -200px;
    }
	#llegar h2 {
        font-size: 100px;
    }
    
    #llegar a {
        margin-top: 25px;
    }
}










