.intro {
    background-image: url('../images/Fachada.jpg');
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 90vh;
    margin: auto;
    z-index: 2;
}

.intro .container {
    display: flex;
    margin: auto;
    width: 100%;
    height: 100%;
    background-color: RGBA(130, 46, 22, 0.70);
}

.intro .container .content {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    margin: auto;
}

.intro .container .content img {
    width: 300px;
    margin: auto;
}

.intro .container .content .boton {
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    width: 50%;
    border: 10px double #fff;
    text-align: center;
    font-size: 30px;
    font-family: fantasy;
    text-decoration: none;
    color: white;
    background-color: RGBA(0, 0, 0, 0.3);
    transition: background-color 0.5s ease-in-out;
}

.intro .container .content .boton:hover {
    background-color: RGBA(50, 0, 50, 0.8);
    text-shadow: 2px 2px #000;
    transition: all 0.5s ease-in-out;
}

.MensajeBienvenida {
    text-align: center;
    font-size: 30px;
    text-shadow: 2px 2px #000000;
    color: #fff;
    font-family: Arial;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    margin: auto;
    padding-bottom: 20px;
    z-index: 2;
}


/* Flecha hacia abajo */

.flechas {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    height: 100px;
}

.chevron {
    position: absolute;
    width: 2.1rem;
    height: 0.48rem;
    opacity: 0;
    transform: scale(0.3);
    -webkit-animation: move-chevron 3s ease-out infinite;
    animation: move-chevron 3s ease-out infinite;
}

.chevron:first-child {
    -webkit-animation: move-chevron 3s ease-out 1s infinite;
    animation: move-chevron 3s ease-out 1s infinite;
}

.chevron:nth-child(2) {
    -webkit-animation: move-chevron 3s ease-out 2s infinite;
    animation: move-chevron 3s ease-out 2s infinite;
}

.chevron:before,
.chevron:after {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 50%;
    background: #fff;
}

.chevron:before {
    left: 0;
    transform: skewY(30deg);
}

.chevron:after {
    right: 0;
    width: 50%;
    transform: skewY(-30deg);
}

@-webkit-keyframes move-chevron {
    25% {
        opacity: 1;
    }
    33.3% {
        opacity: 1;
        transform: translateY(2.28rem);
    }
    66.6% {
        opacity: 1;
        transform: translateY(3.12rem);
    }
    100% {
        opacity: 0;
        transform: translateY(4.8rem) scale(0.5);
    }
}

@keyframes move-chevron {
    25% {
        opacity: 1;
    }
    33.3% {
        opacity: 1;
        transform: translateY(2.28rem);
    }
    66.6% {
        opacity: 1;
        transform: translateY(3.12rem);
    }
    100% {
        opacity: 0;
        transform: translateY(4.8rem) scale(0.5);
    }
}


/* Nosotros */

.nosotros {
    padding-top: 10px;
}

.nosotros .contenedor {
    display: flex;
    width: 100%;
    padding: 20px 0;
}

.nosotros .contenedor .contenido {
    display: flex;
    width: 100%;
    margin: auto;
    align-items: center;
    flex-direction: column;
    padding-top: 20px;
    overflow: hidden;
}

.nosotros .contenedor .contenido .titulo {
    width: 90%;
    text-align: center;
}

.nosotros .contenedor .contenido .descripcion {
    width: 90%;
    font-size: 1.2em;
    text-align: justify;
}

.nosotros .contenedor .contenido .titulo img {
    width: 300px;
    border-radius: 30px;
}

@media screen and (max-width:1100px) {
    .nosotros .contenedor {
        flex-wrap: wrap;
    }
}


/* Identificación */

.identificacion {
    background-color: var(--colorprimarytransparent);
    width: 100%;
    margin: auto;
}

.identificacion .titulo,
.identificacion .contenedor {
    margin: auto;
    width: 100%;
    height: 100%;
    background-color: RGBA(255, 255, 255, 0.9);
}

.identificacion .contenedor .contenido {
    display: flex;
    width: 90%;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
    justify-content: space-around;
}

.identificacion .contenedor .contenido .titulo {
    text-align: center;
    background: transparent;
}

.identificacion .contenedor .contenido .descripcion {
    font-size: 1.2em;
    text-align: justify;
    width: 70%;
    margin: auto;
}

.identificacion .contenedor .contenido .titulo img {
    width: 65%;
    border-radius: 30px;
}

.identificacion .contenedor .contenido ul {
    list-style: none;
    padding: 0;
    margin-left: 0;
}

.identificacion .contenedor .contenido ul li {
    padding: 5px;
}

.identificacion .contenedor .contenido ul li::before {
    content: "\2022";
    padding-right: 5px;
    margin-left: -30px;
    color: var(--colorprimary);
    font-size: 50px;
    line-height: 25px;
    vertical-align: -11px;
    width: 15px;
}

@media screen and (max-width:760px) {
    .identificacion .contenedor .contenido {
        flex-wrap: wrap;
        margin: auto;
    }
    .identificacion .contenedor .contenido .titulo img {
        max-width: 80%;
        height: auto;
        margin: auto;
        border-radius: 30px;
        max-height: -webkit-fit-content;
        max-height: -moz-fit-content;
        max-height: fit-content;
    }
}


/* Objetivos */

.objetivos .cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 20px;
    align-items: center;
    overflow: hidden;
}

.card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    width: 300px;
    height: auto;
    border-radius: 10px;
    margin: 10px;
    border-bottom: 4px solid var(--colorprimary);
    position: relative;
}

.card:hover {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.card img {
    border-radius: 10px 10px 0 0;
}

.card .container p {
    font-size: 1em;
    padding: 10px;
}

.card .container .contenido {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding-bottom: 10px;
}

.accordion {
    background-color: #fff;
    color: #000;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    border-radius: 0 0 10px 10px;
    text-align: center;
    font-weight: bold;
    outline: none;
    font-size: 1.2em;
    margin-top: -5px;
}

.active,
.accordion:hover {
    background-color: var(--colorprimary);
    color: #fff;
}

.panel {
    padding: 0 10px;
    padding-top: 20px;
    margin-top: -20px;
    background-color: white;
    max-height: 0;
    text-shadow: none;
    color: #000;
    font-size: 1.05em;
    border-radius: 10px;
    text-align: justify;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.panel ul {
    padding-top: 10px;
    margin-bottom: 10px;
}

.panel ul li {
    list-style-position: inside;
}

.accordion:after {
    font-family: 'boxicons' !important;
    font-weight: normal;
    content: '\ed35'; /* bx bx-plus */
    font-size: 1.5em;
    color: #000;
    float: right;
    margin-left: 5px;
}

.accordion:hover::after {
    color: #fff;
}

.active:after {
    content: '\ed42'; /* bx bx-minus */
    color: #fff;
}


/* Texto Final */

.textofinal {
    background-color: RGBA(76, 91, 114, 1);
    overflow: hidden;
}

.textofinal .contenido {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 100%;
    margin: auto;
}

.textofinal .contenido img {
    height: 160px;
    margin-right: 10px;
}

.parrafofinal {
    font-family: Arial;
    padding: 20px;
    color: #fff;
    text-shadow: 1px 1px #000;
    font-size: 16px;
    width: 80%;
    height: auto;
    margin: auto;
    position: relative;
}

#final {
    width: 100%;
    padding-bottom: 20px;
    padding-top: 20px;
    margin: auto;
    background-color: var(--colorprimary);
}

#final ul {
    list-style-position: inside;
    padding: 10px;
}

#final .contenedor {
    width: 80%;
    height: auto;
    margin: auto;
    background-color: RGBA(255, 255, 255, 0.9);
    box-shadow: 2px 2px 2px #000, -2px 0px 2px #000;
    padding: 20px;
    border-radius: 20px;
    font-family: Arial, sans-serif;
    margin-top: 10px;
    margin-bottom: 10px;
}

#final .contenedor h1 {
    text-align: center;
    color: #fff;
    text-shadow: 1.5px 1.5px #000;
    background-color: var(--colorprimary);
    border-radius: 40px;
    margin: auto;
}

#final .contenedor p {
    text-align: center;
}

#oraciones .titulo {
    margin: auto;
    width: 100%;
    height: 100%;
    background-color: #00ffff;
}

#oraciones .contenedor {
    margin: auto;
    width: 100%;
    height: 100%;
    background-color: #00ffff;
    display: flex;
    justify-content: space-around;
    padding-top: 20px;
    padding-bottom: 20px;
}

#oraciones .oracionmariagoretti {
    width: 600px;
    height: auto;
    border-radius: 40px;
    padding: 10px;
    background-color: RGBA(255, 255, 255, 0.8);
    box-shadow: 0 0 10px var(--colorprimary);
    margin: auto;
}

#oraciones .oracionmariagoretti h2 {
    text-align: center;
}

#oraciones .oracionmariagoretti p {
    padding: 5px;
    text-align: justify;
}

#oraciones .oracionbenefactores {
    width: 600px;
    height: auto;
    border-radius: 40px;
    padding: 10px;
    background-color: RGBA(255, 255, 255, 0.8);
    box-shadow: 0 0 10px var(--colorprimary);
    margin: auto;
}

#oraciones .oracionbenefactores h2 {
    text-align: center;
}

#oraciones .oracionbenefactores p {
    padding: 5px;
    text-align: justify;
}

@media screen and (max-width:768px) {
    .textofinal .contenido {
        justify-content: center;
    }
    .parrafofinal {
        text-align: center;
    }
    #oraciones .contenedor {
        flex-wrap: wrap;
    }
    #oraciones .oracionbenefactores {
        width: 90%;
        margin: auto;
        margin-top: 20px;
    }
    #oraciones .oracionmariagoretti {
        width: 90%;
        margin: auto;
    }
}