@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900;1,1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
}

:root{
    --color-esqueleto:#eff3f5;
    --header-transparency:rgb(0 0 0 / 62%);
    --maincolor:#195EA3;
    --brightOrange: hsl(31,77%,52%);
    --darkCyan: hsl(184,100%,22%);
    --veryDarkCyan: hsl(179,100%,13%);
    --transparentWhite: hsla(0,0%,100%, 0.75);
}

.container__all{
    position: relative;
    right: 0;
    transition: all 300ms;
}

header {
    width: 100%;
    height: 60px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    background: #0a141d;
    transition: all 300ms;
}

.move_content {
    right: 250px;
}

.container__header {
    max-width: 1200px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    margin: auto;
    padding: 0px 20px;
}

header .logo {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    width: 130px;
}

.container__nav {
    position: relative;
    height: 100%;
}

nav {
    height: 100%;
}

nav ul {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul li {
    margin: 0px 20px;
    list-style: none;
}

nav ul li a{
    color: #ffffff;
    font-size: 14px;
    font-weight: 300;
}

.select {
    opacity: .8;
}

.btn__menu {
    width: 50px;
    height: 50px;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: background 300ms;
    color: white;
    display: none;
}

.btn__menu:hover {
    background: var(--maincolor);
}

.nav_mod {
    height: 50px;
    box-shadow: 1px 1px 10px 0px #00000010;
}

.focus {
    font-weight: 600;
    color: #195EA3;
}

@media screen and (max-width: 760px) {
    .container__nav {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .btn__menu {
        display: flex;
    }

    nav {
        width: 250px;
        height: 100%;
        background: var(--maincolor);
        position: fixed;
        top: 0;
        right: -250px;
        padding: 0 40px;
        transition: all 300ms;
       }

    .move_nav{
        right: 0;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 20px 0px;
    }

    .menu__registro {
        display: none;
    }
}



/* Aquí va el estilo del cover */
.banner-area{
    width:100%;
    height:100vh;
    background-image:linear-gradient(rgba(0, 0, 0, 0.7),rgba(0, 0, 0, 0.7)), url(../images/cover.png);
    background-size:cover;
    background-position: center;
}        

.content-area{
    height:100%;
    display:flex;
    justify-content: center;
    align-items: center;
}

.content{
    text-align: center;
}

.content h1{
    font-size:80px;
    color:#fff;
}

.content h5 {
    color: white;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 25px;
}

.content .btn{
    border:none;
    outline:none;
    padding:15px;
    margin-top:100px;
    border-radius: 4px;
    color:#eee;
    font-size: 18px;
    cursor: pointer;    
    background:#222;             
}





/* AQUÍ VA EL ESTILO DE LAS ETIQUETAS MISIÓN, ORACIÓN Y DONACIÓN */
.main-container{
    width: 350px;
    margin: 87px auto 40px;
    border-radius: 10px;
    overflow: hidden;
}

.main-container article {
    width: 100%;
    height: 240px;
    padding: 25px;
}

#mision-head {
    background-color: var(--brightOrange);
}

#oracion-head {
    background-color: var(--darkCyan);
}

#donacion-head {
    background-color: var(--veryDarkCyan);
}
.main-container img {
    margin-bottom: 10px;
    width: 50px;
}

.main-container h2 {
    color: white;
    font-weight: 500;
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.main-container p {
    color: #eff3f5;
    line-height: 20px;
    margin-bottom: 15px;
    font-size: 14px;
}

.main-container button {
    width: 120px;
    height: 35px;
    border-radius: 8px;
    border-style: none;
    background-color: white;
    font-size: 15px;
}

#mision-btn {
    color: var(--brightOrange);
}

#oracion-btn {
    color: var(--darkCyan);
}

#donacion-btn {
    color: var(--veryDarkCyan);
}

.main-container button:hover {
    cursor: pointer;
    border: 2px solid white;
}

#mision-btn:hover {
    background-color: var(--brightOrange);
    color: white;
}

#oracion-btn:hover {
    background-color: var(--darkCyan);
    color: white;
}

#donacion-btn:hover {
    background-color: var(--veryDarkCyan);
    color: white;
}



@media (min-width:944px) {
    .main-container {
        width: 1080px;
        display: flex;
        margin-top: 50px;
    }

    .main-container article {
        height: 240px;
    }
    
}



/* AQUÍ VA EL FORMATO DE LOS TITULOS */
.titulo {
    width: 100%;
    margin: 80px auto 40px;
}

.titulo h2 {
    align-items: center;
    justify-items: center;
    font-size: 45px;
    font-weight: 600;
}



/* AQUI VA EL FORMATO DE ULTIMAS NOTICIAS */
.container__cards{
    width: 100%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 80px;
}

.card {
    width: 350px;
    margin: 10px;
    padding: 20px;
    background: rgba(10, 26, 42, 0.95);
    box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 300ms;
}

.card:hover .cover__card img {
    transform: scale(1.1);
}

.card:hover {
    transform: translateY(-10px);
}

.cover__card {
    width: 100%;
    height: 180px;
    border-radius: 14px;
    overflow: hidden;
    
}

.cover__card img {
    width: 110%;
    align-items: center;
    justify-content: center;
    transition: all 300ms;
}

.card h2 {
    font-size: 18px;
    font-weight: 500;
    margin-top: 20px;
    color: #fff;
}

.card p {
    margin-top: 20px;
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    letter-spacing: 0.5px;
}

.card hr {
    margin-top: 30px;
    border: none;
    height: 0.1px;
    background: #fff;
}

.footer__card {
    margin-top: 10px;
    display: flex;
    color: #fff;
    justify-content: space-between;
}

.footer__card h3 {
    font-size: 12px;
    font-weight: 400px;
}

.footer__card i {
    font-size: 14px;
    font-weight: 200;
}





/* Aquí va la frase del padre Al */
.frase-home {
    background-color: var(--darkCyan);
    padding: 15px 10px;
    text-align: center;
    color: #fff;
    width: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
    margin: auto;
    
}

.frase-home h2 {
    width: 50%;
    font-size: 30px;
    font-weight: 400;
    padding-top: 40px;
    padding-bottom: 40px;
    margin: auto;
}

.frase-home i {
    font-size: 15px;
}





/* AQUI VA EL FORMATO DE LOS PRÓXIMO EVENTOS */
.container__events {
    width: 100%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 80px;
}

.events {
    width: 350px;
    margin: 10px;
    padding: 20px;
    background: var(--brightOrange);
    border-radius: 15px;
    transition: all 300ms;
}

.header__event {
    display: flex;
    color: #fff;
    justify-content: first baseline;
    align-items: baseline;
}

.event__day {
    font-size: 40px;
    font-weight: 300;
}

.event__title {
    color: white;
    font-weight: 400;
    font-size: 16px;
}

.event__btn {
    background: white;
    color: black;
    padding: 8px;
    border-radius: 5px;
    margin-top: 10px;
    margin-left: 60%;
    border: none;
    font-weight: 500;
    cursor: pointer;
}

.event__btn:hover {
    background: var(--maincolor);
    color: white;
}




/* INVITACIÓN A DONAR */
.invitacion {
    display: flex;
    width: 100%;
    height: 350px;
    background: var(--maincolor);
}

.invitacion__imagen {
    width: 60%;
    height: 350px;
    overflow: hidden;
    background-image: url(../images/cover.png);
    background-size: cover;
    background-position: center;
}

.invitacion__imagen img {
    width: 100%;

}

.invitacion__texto {
    width: 40%;
    justify-content: center;
    display: grid;
    grid-template-columns: auto;
    padding: 10px 0px;
    margin-top: 80px;
    margin-bottom: 100px;
}

.invitacion__texto h2 {
    font-size: 55px;
    width: 100%;
    color: white;
    text-align: center;
}

.invitacion__texto p {
    margin: auto;
    padding-bottom: 20px;
    width: 80%;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    color: white;
}

.invitacion__texto button {
    width: 50%;
    margin: 0 25%;
    padding: 12px;
    border-radius: 5px;
    border: none;
    background: white;
    color: black;
    font-weight: 500;
    font-size: 18px;
}

.invitacion__texto a {
    width: 100%;
    text-decoration: none;
    margin: auto;
}

.invitacion__texto button:hover {
    background-color: #5787b7;
}

@media (max-width:700px){

    .invitacion {
        width: 100%;
        margin: 0;
        display: flex;
    }
    .invitacion__imagen {
        visibility: hidden;
        width: 0%;
    }
    .invitacion__imagen img {
        visibility: hidden;
        width: 0%;
    }
    .invitacion__texto {
        margin: 0;
        padding: 0 15px;
        width: 100%;
        align-items: center;
        display: flex;
        flex-wrap: wrap;
    }


    .invitacion__texto p {
        width: 100%;
        margin: auto;
    }
}




/* Aqui debajo va el footer */
.pie-pagina {
    width: 100%;
    background-color: #0a141d;  
}

.pie-pagina .grupo-1 {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    grid-gap: 50px;
    padding: 45px 0px;
}

.pie-pagina .grupo-1 .box figure{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: visible;
}

.box1 {
    width: 30%;
}

.box2 {
    width: 50%;
}

.box3 {
    width: 30%;
}


.pie-pagina .grupo-1 .box figure img{
    width: 180px;
    visibility: visible;
}

.pie-pagina .grupo-1 .box h2{
    color: white;
    margin-bottom: 25px;
    font-size: 18px;
}

.pie-pagina .grupo-1 .box p {
    color: #efefef;
    margin-bottom: 10px;
    font-size: 14px;
}

.pie-pagina .grupo-1 .red-social a {
    display: inline-block;
    text-decoration: none;
    width: 45px;
    height: 45px;
    line-height: 45px;
    color: white;
    margin-right: 10px;
    background-color: #0d2033;
    text-align: center;
    border-radius: 5px;
    transition: all 300ms ease;
}

.pie-pagina .grupo-1 .red-social a:hover {
    color: #2164A7;
}

.pie-pagina .grupo-2 {
    background-color: #0a1a2a;
    padding: 15px 10px;
    text-align: center;
    color: #fff;
}

.pie-pagina .grupo-2 small {
    font-size: 15px;
}

@media screen and (max-width:700px) {
    .pie-pagina .grupo-1 {
        width: 95%;
        display: flex;
        padding: 35px 0px;
        flex-wrap: wrap;
    }
    .pie-pagina .grupo-1 .box figure img{
        visibility: hidden;
    }

    .box2 {
        width: 100%  !important;
        margin-left: 10px;
        margin-right: 10px;
        margin-top: -230px;
    }

    .box3 {
        width: 95%;
        margin-left: 10px;
        margin-right: 10px;
    }

    
    .frase-home h2 {
        width: 90%;
        font-size: 20px;
        font-weight: 400;
        padding-top: 40px;
        padding-bottom: 40px;
    }
}




/* CONFIGURACIÓN DE BOTÓN REGISTRARSE */

.boton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    height: 40px;
    background: #2164A7;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500px;
    border: none;
    cursor: pointer;
    transition: .3s ease all;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.boton a {
    color: white;
    text-decoration: none;
}

.boton span {
    position: relative;
    z-index: 2;
    transition: .3s ease all;
}

.boton.registro::after{
    content: "";
    width: 100%;
    height: 100%;
    background: black;
    position: absolute;
    z-index: 1;
    top: -40px;
    left: 0;
    transition: .3s ease-in-out all;
}

.boton.registro:hover::after{
    top: 0px;
}


@keyframes move_vector {
    0% {
        transform: translateY(10px);
    }
    25% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(10px);
    }
}
