body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

.container-menu {
    height: 75px;
}

.banner {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

.logo_nav_container {
    width: 100%;
    background: #2E3192;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5rem;
    top: 2rem;
    margin: 1rem;
}

.menu {
    background-color:#2E3192;
    height: 75px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 5px 0 10px rgba(0, 0, 0, .3);
    position: fixed;
    top: 0;
    margin: 0;
    z-index: 2;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
}
.logo {
    width: 60%;
    margin: 0;
    float: left;
}

.menu_items {
    display: flex;
    list-style: none;
    margin-right: 50px;
}

.menu_items li {
    border-radius: 3px;
    margin: 0 10px;

}

.menu_items li a {
    padding: 7px 13px;
    text-decoration: none;
    font-size: 15px;
    display: block;
    color: #ffff;
}

.menu_items li a:hover {
    color:#F45F70;
}

.btn_contact {
    background: #F45F70;
    border-radius: 2rem;
}


.menu_items li .btn_contact:hover {
    background: white;
    border-radius: 2rem;
    color: #F45F70;
}

.menu_items li:hover, li.active {
    background-color:#3d409c;
    color:#F45F70;
    transition: .4s;
    border-radius: 2rem;
    
}

.btn_menu {
    margin-right: 30px;
    font-size: 30px;
    color: white;
    cursor: pointer;
    display: none;
}

ul.show {
    top: 75px;
}





@media all and (max-width: 768px) {
    .logo_nav_container {
        padding-left: 35px;
    }
    .menu_items li a {
        font-size: 16px;
    }
}

@media all and (max-width: 768px) {
    .menu {
        height: 75px;
        box-shadow: 5px 0 10px rgba(0, 0, 0, .3);
    }
    .btn_menu {
        display: inline-flex;
    }
    .menu_items {
        position: fixed;
        width: 100vw;
        height: calc(100% - 75px);
        background:#2E3192;
        top: -100vh;
        text-align: center;
        transition: all .4s;
        flex-direction: column;
    }
    .menu_items li {
        margin: 30px 0 0 0;
        line-height:  30px;
    } 
    .menu_items li:hover {
        background: none;
    }
    .menu_items li a {
        font-size: 20px;
        color: #ffff;
        font-weight: bold;
    }
    .menu_items li a:hover {
        color:#F45F70;
    }
    .logo_nav_container {
        padding-left: 35px;
    }
}

@media all and (max-widht:768px) and (orientation: landscape) {
    .menu_items li {
        margin: 5px 0 0 0;
    }
    .menu_items {
        overflow: scroll;
        height: calc(100% - 75px);
    }
}
/* FORMULARIO DE CONTACTO */

#seccionUno {
    background-color: #F6F7FA;
    margin-top: -7px;
    font-family: 'Poppins', sans-serif;
}

* {
    box-sizing: border-box;
}

.form-contact {
    font-family: 'Poppins', sans-serif;
    width: 98%;
    max-width: 500px;
    margin: auto;
    background: white;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    box-shadow: 1px 0 10px rgba(0, 0, 0, .10);
    position: relative;
    top: -80px;

}

.form-title {
    background: #F45F70;
    text-align: center;
    color: white;
    padding: 10px;
    font-weight: bold;
    font-size: 28px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    line-height: 35px;
    padding-top: 17px;
}

.form-subtitle {
    background: #F45F70;
    color: white;
    padding: 15px;
    font-weight: normal;
    font-size: 20px;
    text-align: center;
    padding-top: 0px;
}
.contenedor-inputs {
    padding: 20px 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: white;
    box-shadow: rgba(0, 0, 0, .3);
    border-radius: 2rem;
}


input[type="text"]:focus, input[type="email"]:focus {
    border: 1px solid #2E3192;
    border-radius: 5px;
}

label {
    color: #2E3192;
    font-size: 12px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

input {
    margin-bottom: 8px;
    padding: 10px;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid #D6D6D6;
    color: #686880;
    outline: none;
}


.input-48 {
    width: 48%;
    font-family: 'Poppins', sans-serif;
    font-size: 12px
}

.input-100 {
    width: 100%;
    font-family: 'Poppins', sans-serif;
    font-size: 12px

}

textarea {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 15px;
    padding: 15px;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid #D6D6D6;
    color: #686880;
    outline: none;
}

textarea[type="text"]:focus{
    border: 1px solid #2E3192;
    border-radius: 5px;
}



.btn-enviar{
    display: block;
    width: 75%;
    margin: 8px auto;
    padding: 5px;
    border: 1px solid #2a2e8f;
    background-color: #2E3192;
    color: white;
    border-radius: 2rem;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    }
    
    .btn-enviar:hover {
        background: #F45F70;
        border: 1px solid #d85060;
    }



.btn-enviar:active{
    transform: scale(1.05);
}

#terms {
    width: 70%;
    padding: 7px;
    text-align: left;
    font-size: 12px;
    color: #2E3192;

}

.banner-mobile {
    display: none;
}

@media all and (max-width:950px) {
    .banner-desktop {
        display:none;
        
    }

    .banner-mobile {
        display: block;
    }

    .input-48 {
        width: 100%;
        font-family: 'Poppins', sans-serif;
        font-size: 12px
    }
    
    .input-100 {
        width: 100%;
        font-family: 'Poppins', sans-serif;
        font-size: 12px
    
    }
    
    textarea {
        font-family: 'Poppins', sans-serif;
        margin-bottom: 15px;
        padding: 15px;
        font-size: 16px;
        border-radius: 8px;
        border: 1px solid #D6D6D6;
        color: #686880;
        outline: none;
    }

    label {
        font-size: 12px;
        display: block;
    }
    
    input {
        margin-bottom: 8px;
        padding: 7px;
        margin-bottom: 5px;

    }

    .form-contact {
        width: 75%;
        position: relative;
        top: -23px;
        margin-bottom: 40px;
    
    }

    .form-title {

        font-size: 20px;
    }
    
    .form-subtitle {
        font-size: 14px;
    }


}

/* Pie de página */

footer{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-flow: row wrap;
    padding: 50px;
    color: white;
    background: #2E3192;
    margin-top: -32px;
}

.footer > * {
    flex: 1 100%;
}

.footer-left {
    margin-right: 1.25em;
    margin-bottom: 2em;
}

.footer-left img {
    width: 50%;
}

h3 {
    font-weight: bold;
    font-size: 16px;

}

.footer ul {
    list-style: none;
    padding-left: 0;
}

.footer li {
    line-height: 2em;

}

.footer a {
    text-decoration: none;
}

.footer-right {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-flow: row wrap;

}

.footer-right > *{
    flex: 1 50%;
    margin-right: 1.25em;

}

.box a {
    color: white;
}

.footer-bottom {
    text-align: center;
    color: white;
    margin-top: 50px;
}

.footer-left p {
    padding-right: 20%;
    color: white;
}

.socials a {
    background-color: #2E3192;
    width: 50%;
}

.socials a i {
    color: white;
    margin-right: 10px 12px;
    font-size: 16px;
}


@media screen and (min-width: 600px) {
    .footer-right > *{
        flex: 1;
    }
    .footer-left{
        flex: 1 0px;
    }
    .footer-right{
        flex: 0px;
    }

}

@media (max-width: 600px) {
    .footer {
        padding: 15px;
    }
}