@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;900&family=Roboto:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700;800;900&family=Orbitron:wght@400;500;600;900&family=Roboto:wght@400;500;700&display=swap');

.supercont-contactos{
    width: 90vw;
    max-width: 1200px;
    height: 100%;
    position: relative;
    margin: 0 auto;
  }

  .supercont2-contactos{
    width: 100%;
    padding-bottom: 20px;
  }

#formulario{
    padding: 2%;
    width: 50%;
    height: 565px;
    background-color: #002d6b;
    
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    /*margin: 10px;*/
    float: left;
}

input{
    padding: 10px;
    padding-bottom: 10px;w
    display: inline-block;
    width: 100%;
}

textarea {
    padding: 10px;
    display: inline-block;
    width: 100%;
    height: 245px;
    resize: none;
}

.form__input{
    width: 100%;
    background: #003681;
    padding: 5px;
    font-size: 12pt;
    outline: rgba(0, 0, 0, 0);
    color: #ffffff;
    font-family: 'Montserrat';
    font-weight: 500;

    text-align: left;
    margin-top: 10px;
    border-radius: 5px;
    border: none;
  }vertical

.form__input:focus{
    box-shadow: 0px 0px 5px 5px #001d46;
}

.form__submit{
    width: 100%;
    background-color: #003681;
    padding: 10px;
    color: white;
    font-family: "montserrat";
    font-weight: 600;
    text-align: center;
    font-size: 20px;
    margin-top: 10px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
  }
  
.form__submit:hover{
    background-color: #003c91;
    
}

#info{
    width: 50%;
    height: 565px;
    background-color: #ffffff;
    padding: 2%;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    float: left;
}

#info2{
    padding-left: 2%;
}

.cont-titulo{
    font-family: 'Montserrat';
    font-weight: 700;
    font-size: 2rem;
    color: #003681;
}

.cont-titulo-azul{
    font-family: 'Montserrat';
    font-weight: 700;
    font-size: 2rem;
    color: #fff;
}

.cont-info{
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 1rem;
    color: #000;
}

.cont-info-2{
    font-family: 'Roboto';
    font-weight: 500;
    font-size: 1rem;
    color: #000;
    float: left;
    padding-right: 5px;
}

.map{
    height: 100%;
    border-radius: 10px;
    width: 100%;
    padding-top: 15px;
}

.barra-logo img{
    position: relative;
    z-index: 5000;
}

@media screen and (max-width:1000px){
    .map{
        height: 360px;
        overflow-y: hidden;
    }
}

@media screen and (max-width:700px){
    #info{
        width: 100%;
        height: auto;
        padding: 4%;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    #formulario{
        width: 100%;
        height: auto;
        padding: 4%;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        border-bottom-left-radius: 15px;
        border-bottom-right-radius: 15px;
    }

    .map{
        height: 100%;
        overflow-y:auto;
    }
}