* { /* V2.10 - 8:00am a 12:30 y de 2:00 a 5:00pm*/
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

html {
	font-size: 62.5%;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

body {
    /* font-family: "Poppins", sans-serif; */
	background: rgb(166, 189, 223);
}

header {
    display: flex;
    justify-content: center;
}

nav {
    text-align: center;
    width: 100%;
    height: max-content;
}

li {
    background: rgb(0, 105, 211);
    font-style: none;
    font-size: 2.2rem;
    height: max-content;
    color: white;
    list-style: none;
    display: flex;
    column-gap: 3rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

a {
    text-decoration: none;
    border-radius: 1rem;
    height: 100%;
    padding: 1rem;
    color: white;
    transition: 0.35s ease-out;
    align-content: center;
}

a:hover {
    color: rgb(27, 28, 90);
    background: rgb(166, 189, 223);
}

.pages-div {
    background: transparent;
    display: flex;
    gap: 0.5rem;
}

.title {
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    width: 100%;
    height: max-content;
    padding: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items: center;
    text-align: center;
    background-color: #ddd54f;
    h3 {
        font-size: 2.6rem;
        color: rgb(64, 50, 126)
    }

}

.contact-options {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.subtitle {
    background: rgb(255, 255, 255);
    color: rgb(27, 28, 90);
    padding: 0.8rem;
    margin: 0.8rem;
    border: 0.250rem solid rgb(0, 105, 211);
    border-radius: 2rem;
    font-size: 2.8rem;
    width: 95%;
    max-width: max-content;
    align-self: center;
    margin-bottom: 0.6rem;
    text-align: center;
}

.subtitle2 {
    font-size: 2.2rem;
    color: rgb(27, 28, 90);
    font-style: italic;
    text-align: center;
    margin: 0.8rem;
}

.contact-media-div {
    width: 100%;
    height: 100%;
    height: max-content;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.media-card {
    flex-grow: 1;
    margin: 1rem;
    max-width: 48rem;
    min-width: 32rem;
    height: 42rem;
    border-radius: 2rem;
    border: 0.250rem solid rgb(0, 105, 211);
    box-shadow: 0 0.7rem 0.2rem rgba(0, 0, 0, 0.6);
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;

    span {
        font-size: 1.8rem;
        color: rgb(27, 28, 90);
        padding: 0.8rem;
        border-radius: 0.8rem;
        background: rgb(166, 189, 223);
        font-weight: 700;
        width: 90%;
        height: 12rem;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: justify;
        margin-bottom: 0.6rem;
    }

    img {
        height: 20rem;
        width: 20rem;
    }

}

.boton-wpp {
    background: rgb(4, 185, 25);
    font-size: 2.4rem;
    transition: 0.35s ease-out;
    border: 0.2rem rgb(20, 67, 21) solid;
    height: 4.5rem;
    width: 90%;
    display: flex;
    gap: 0.6rem;
    justify-content: center;
    align-items: center;
}


.boton-wpp:hover {
    color: rgb(4, 185, 25);
    background: rgb(255, 255, 255);
}

.boton-gmail {
    background: #ea4335;
    font-size: 2.4rem;
    transition: 0.35s ease-out;
    border: 0.2rem #632d28 solid;
    height: 4.5rem;
    width: 90%;
    display: flex;
    gap: 0.6rem;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.boton-gmail:hover {
    color: #ea4335;
    background: rgb(255, 255, 255);
}