* {
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    background-image: linear-gradient(160deg, rgba(255, 255, 255, 0) 64%, #f1f1f1 40%);
    background-repeat: repeat;
}

.menu {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-evenly;
    align-items: center;
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    border-top: 10px solid #1c418a;
}

.menu img {
    width: 200px;
    margin-right: 10px;
    padding-right: 10px;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

nav a {
    text-decoration: none;
    font-family: inter;
    font-weight: 500;
    font-size: 13px;
    margin: 10px;
    padding: 10px;
    color: #1c418a;
    border-bottom: 2px solid transparent;
    transition: all 300ms ease;
}

nav a:hover {
    border-bottom: 2px solid #000d59;
}

.menu span {
    margin: 10px;
    font-family: inter;
    font-weight: 700;
    color: rgb(201, 4, 4);
}

.promoImage {
    width: 100%;
    height: 450px;
    overflow: hidden;
    position: relative;
}

.fowardCord {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.23);
    backdrop-filter: blur(2px);
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: flex-start;
    padding-left: 100px;
    font-family: inter;
    color: #fff;
    font-size: 35px;
    font-weight: 600;
    text-align: center;
}

.promoImageIMG {
    width: 100%;
}

.sectionContainer {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
    font-family: inter;
    min-height: 463.146px;
    position: relative;
    margin: 20px;
}

.sectionContainer label {
    font-size: 40px;
    font-weight: 600;
    margin: 20px;
    margin-bottom: 40px;
    margin-top: 0;
    padding: 0px 0px 10px 0px;
    border-bottom: 2px solid #212121;
    color: #000d59;
    width: 98%;
}

.sectionContainer p {
    font-size: 20px;
    width: 80%;
    margin: 15px;
}

.sectionContainerBody {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    position: relative;
    width: 100%;
}

.sectionContainerBody img {
    width: 40%;
    margin: 10px;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.sectionContainerBody div {
    display: flex;
    justify-content: flex-start;
    flex-flow: column nowrap;
    color: #212121;
    margin: 10px;
}

.sectionContainerBody div span {
    font-size: 20px;
    font-weight: 600;
    margin: 15px;
}

.sectionContact {
    width: 100%;
    height: 550px;
    background: #212121;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
}

.information {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    margin: 10px;
    width: 30%;
    height: 100%;
}

.information label {
    font-family: inter;
    font-weight: 600;
    font-size: 30px;
    border-bottom: 2px solid #a0a0a0;
    color: #a0a0a0;
    margin-top: 35px;
    margin-bottom: 15px;
    padding-bottom: 10px;
}

.information span {
    font-family: inter;
    color: #a0a0a0;
    margin-top: 5px;
    margin-bottom: 5px;
}

.map {
    width: 40%;
    height: 90%;
    background: wheat;
}

.map iframe {
    width: 100%;
    height: 100%;
}

.redes {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
}

.redes a {
    width: 100px;
    margin: 10px;
}

.redes a img {
    width: 100%;
}

@media only screen and (max-width: 1000px) {
    .menu {
        position: relative;
    }

    nav {
        position: absolute;
        background: white;
        top: 50px;
        width: 100%;
        display: flex;
        flex-flow: row nowrap;
        justify-content: flex-start;
    }

    nav a {
        font-size: 9px;
        text-align: center;
    }

    .fowardCord {
        padding-left: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .fowardCord img {
        width: 90%;
    }

    .sectionContainerBody {
        display: flex;
        flex-flow: column nowrap;
    }

    .sectionContainerBody label {
        margin: 0;
        text-align: center;
        font-size: 25px;
    }

    .menu img {
        width: 150px;
    }

    .menu span {
        font-size: 13px;
    }

    .sectionContainerBody img {
        width: 91%;
    }

    .promoImageIMG {
        width: auto;
        height: auto;
    }

    .information {
        width: 90%;
    }

    .map {
        width: 90%;
        margin-bottom: 30px;
    }

    .redes {
        justify-content: center;
    }

    .redes a {
        width: 80px;
    }

    .sectionContact {
        flex-flow: column nowrap;
        margin-bottom: 10px;
        height: 800px;
    }
}