*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Noto Sans KR', sans-serif !important;
}

/* Footer */

footer{
    width: 100%;
    background: #4CAF50;
    color: white;
}

.container-footer{
    width: 100%;  
    background: #b1c02c;
}

.footer{
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-around;
    padding: 5px;
}

.copyright{
    color: white;
    font-size: 0.8rem;
}

.copyright a{
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 0.8rem;
}

.localidad {
    color: white;
    font-size: 0.8rem;
}

.localidad a{
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 0.8rem;
}

/* Navbar */

.nav-down .logo-img img{
    width: 32px;
    height: 32px;
    padding-bottom: 5px;
}

.separador {
	width: 100hv;
	height: 10px;
	background-color:#4CAF50;
}
.nav-up {
    background-color:#4CAF50;
    color: blanchedalmond;
	display: flex;
	justify-content: center;
	align-items: center;
}
.nav-up .logo {
    margin-bottom: 1rem;
}

.nav-down {
    background-color:#4CAF50;
	display: flex;
	justify-content: center;
	align-items: center;
}
.nav-down .links {
    transform: translateY(-25%) translateX(4%);
}
.vinc {
	text-decoration: none !important;
	color: white;
	margin-left: 1.5rem;
	margin-right: 1.5rem;
    padding-bottom: 0.1rem;
}
.vinc:hover {
	/* color: thistle; */
	color: white;
	border-bottom: solid;
	border-width: 2px;
	border-color: #b1c02c;
}
.activo {
	text-decoration: none !important;
	color: white;
	margin-left: 1.5rem;
	margin-right: 1.5rem;
    padding-bottom: 0.1rem;
	border-bottom: solid;
	border-width: 2px;
	border-color: #b1c02c;
}
.activo:hover{
    color: white;
}

/* Contenido */

.banner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-image: url('https://i.ibb.co/RhKDbK1/banner.jpg');
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    width: 100%;
    height: 300px;
}

.banner img {
    height: 120px;
}

.container {
    text-align: center;
}
.container-title {
    margin-top: 2rem;
    text-align: center;
}

.container-contact {
    margin-top: 0.5rem;
    text-align: center;
}

.container-contact h2 {
    margin-bottom: 0px;
}

.space {
    border: 1px solid black;
    margin: 0 auto 16px;
    width: 50px;
}

.row{
    margin-bottom: 2rem;
}

.col-md {
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
    border: solid;
    border-width: 2px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-color: #e2e2e2;
    padding-right: 0px;
    padding-left: 0px;
    -webkit-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.75);
    box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.75);
}

.col-md img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    width: 100%;
    height: auto;
}

.image-featured{
    text-decoration: none !important;
    color: black;
}

.image-featured:hover {
    color: black;
}

.enlace{
    text-decoration: none !important;
    color: black;
}
.enlace:hover{
    color: black;
}

.enlace img {
    width: 100px;
    height: 100px;
}

.col-6{
    margin-bottom: 2rem;
}

.map{
    overflow:hidden;
    padding-bottom:56.25%;
    position:relative;
    height:0;
}
.map iframe{
    text-align: center;
    transform: translateX(12.5%) translateY(10%);
    height:80%;
    width:80%;
    position:absolute;
}

.donaciones {
    text-align: center;
    margin-bottom: 2rem;
}


@media screen and (max-width: 500px) {
    .banner img {
        height: 80px;
    }
    .nav-up .logo {
        margin-bottom: 1rem;
    }

    .nav-down .links {
        transform: translateY(-20%) translateX(4%);
    }
    .localidad {
        opacity: 0;
    }
    
    .copyright {
        position: absolute;
        transform: translateY(-15%);
        padding-bottom: 0.01rem;
        font-size: 0.8rem;
    }
}

