* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a {
    text-decoration: none;
    color: #fff;
}
li {
    list-style: none;
}
h2 {
    font-family: 'Pacifico', cursive;
}
p {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    text-align: justify;
}

.title {
    display: flex;
    align-items: center;
    gap: 10px;
}
.title img {
    height: 30px;
    width: 30px;
}
.title p {
    color: #3F2212;
    font-weight: 900;
}

.login {
    display: flex;
    gap: 20px;
    margin-right: 20px;
}
.login a {
    border: 2px solid #000;
    color: #000;
    border-radius: 0 20px 0 20px;
    padding: 5px 10px;
    font-size: 15px;
    background: transparent;
    font-family: 'Poppins', sans-serif;
}

header {
    display: flex;
    background: #fff;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
}.logo {
    margin-left: 40px;
}
.logo img {
    height: 70px;
    width: 90px;
    margin-top: 5px;
}
.nav {
    margin-right: 40px;
}
.nav ul {
    display: flex;
    gap: 20px;
}
.nav ul li a {
    color: #3F2212;
    font-weight: 900;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
}

#nosotros, #noticias {
    background: #a7f5bb;
}

#noticias {
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

banner .bg_banner {
    width: 100%;
    height: 500px;
    background: url("../img/portada-banner.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: row;
}
banner .bg_banner h1 {
    font-size: 50px;
    color: #3F2212;
}
banner .bg_banner p {
    width: 50%;
    margin-top: 20px;
    font-weight: 900;
    margin-bottom: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
}
banner .bg_banner .btn {
    display: flex;
    align-items: center;
    gap: 50px;
}
banner .bg_banner .btn a {
    background: #5BC4C6;
    padding: 10px 20px;
    border-radius: 0 20px 0 20px;
    border: 2px solid #45AAC4;
}
banner .bg_banner .btn .redes {
    display: flex;
    gap: 20px;
    align-items: center;
}
banner .bg_banner .btn .redes i {
    font-size: 20px;
}
.relleno {
    visibility: hidden;
}

.container_nosotros {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 40px;
}
.container_nosotros .img img {
    width: 500px;
    height: 500px;
}
.text_nosotros h2 {
    margin-top: 35px;
}
.text_nosotros > p {
    width: 400px;
    margin-top: 35px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    text-align: justify;
}

.container_donaciones {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 40px;
}
.container_donaciones .img img {
    width: 500px;
    height: 500px;
}
.text_donaciones > p {
    width: 400px;
    margin-top: 35px;
    margin-bottom: 20px;
}
.text_donaciones p span {
    FONT-WEIGHT: 900;
    font-family: 'Pacifico', cursive;
    font-size: 20px;
    line-height: 60px;
}
.text_donaciones a {
    background: #5BC4C6;
    padding: 10px 20px;
    border: 2px solid #45AAC4;
    border-radius: 0 20px 0 20px;
    color: #fff;
    FONT-WEIGHT: 900;
}

.container_noticias {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.noticia_visible {
    display: flex !important;
}
.noticia {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.noticia img {
    height: 500px;
    width: 500px;
}
.noticia h2 {
    font-size: 30px;
}
.noticia h4 {
    margin-top: 10px;
    font-size: 18px;
}
.noticia p {
    margin-top: 10px;
    width: 100%;
}

.container_footer_contact {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: #000;
    color: #fff;
    padding: 20px;
}
.copy {
    border: 1px solid rgb(20, 20, 20);
    color: #fff;
    background: #000;
    padding: 10px;
}
.copy p {
    text-align: center;
}
.location_footer, .phone_footer, .correo_footer {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}
.contact_footer h2, .contact_footer i {
    color: #fff;
}
.redes {
    display: flex;
    gap: 10px;
}
.redes a {
    color: #fff;
}

.p_donaciones {
    display: flex;
    flex-wrap: wrap;
}
.text_donaciones {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.p_1, .p_2 {
    width: 50%;
}

.text_donaciones h2 {
    font-size: 35px;
}
.p_1 p, .p_2 p {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    text-align: center;
}

.container_fotos {
    display: flex;
    justify-content: center;
    align-items: center;
}
.container_fotos img {
    width: 25%;
    height: 300px;
}

#noticias .title {
    margin-bottom: 30px;
}