/*********************************** scroll bar ***********************************/
/* Works on Firefox */
* {
    scrollbar-width:thin;
    scrollbar-color: rgb(46,46,46) rgb(231, 231, 231);
}   

/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 15px;
}

*::-webkit-scrollbar-track {
    background: rgb(231, 231, 231);
}

*::-webkit-scrollbar-thumb {
    background-color: rgb(46,46,46);
    border-radius: 0px;
    border: 0px solid rgb(231, 231, 231);
}

/*********************************** fonts ***********************************/
@font-face {
    font-family: HelveticaThin;
    src: url(./HelveticaNowDisplay-Thin.ttf);
    font-display: swap;
}

@font-face {
    font-family: HelveticaBold;
    src: url(./HelveticaNowDisplay-Bold.ttf);
    font-display: swap;
}

@font-face {
    font-family: HelveticaLight;
    src: url(./HelveticaNowDisplay-Light.ttf);
    font-display: swap;
}

@font-face {
    font-family: HelveticaRegular;
    src: url(./HelveticaNowDisplay-Regular.ttf);
    font-display: swap;
}


/*********************************** default ***********************************/
html{
    background: linear-gradient(140deg, rgba(237,237,237,1) 0%, rgba(231,231,231,1) 100%); 
}
body{
    margin: 0;
}

h1 {
    font-size: 3.7rem;
    font-family: HelveticaThin;
}

h2{
    font-size: 1.8rem;
    font-family: HelveticaLight;
}


/*********************************** nav ***********************************/
#navBar{
    width: 100%;
    height: 150px;
    display: flex;
}

#logoNav{
    position: relative;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 12%;
    width: 20%;
}

.NavSig{
    font-family: HelveticaLight;
    position: relative;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: auto;
    margin-right: 12%;
    font-size: 2.5rem;
    float: right;
}

/*********************************** titulo/subtitulo ***********************************/
#tituloContacto{
    margin-left: 12%;
    margin-bottom: 0px;
}

#subTituloContacto{
    margin-top: 20px;
    margin-left: 12%;
}


/*********************************** form ***********************************/
.container{
    margin-top: 60px;
    margin-left: 12%;
    margin-right: 12%;
}

.pForm{
    margin-top: 50px;
    margin-bottom: 10px;
}

.col{
    font-family: HelveticaLight;
    font-size: 1.5rem;
}

.form-group{
    font-family: HelveticaLight;
    font-size: 1.5rem;
}

.form-control{
    width: 100%;
    font-family: HelveticaRegular;
    font-size: 1.2rem;
    border: none;
}


/*********************************** boton ***********************************/
.btn-lg{
    margin-top: 30px;
    margin-bottom: 30px;
    width: 100%;
    padding: 10px;
    font-family: HelveticaLight;
    font-size: 1.5rem;
    position: relative;
    border-radius: 5px;
    border: none;
    background: rgb(213, 213, 213);
}

.btn-lg:hover{
    background: rgb(197, 197, 197);
    cursor: pointer;
}


/*********************************** footer ***********************************/
.pFooter{
    margin-top: 80px;
    margin-left: 12%;
    font-size: 1.5rem;
    font-family: HelveticaLight;
}

.recuadroColores{
    margin-top: 25px;
    background: linear-gradient(90deg, rgba(248,225,50,1) 0%, rgba(221,77,54,1) 50%, rgba(74,36,138,1) 100%);
    width: 76%;
    height: 25px;
    margin-left: auto;
    margin-right: auto;
}

/*********************************** respuesta ***********************************/
#tituloContactoR{
    text-align: center;
    margin-top: 50px;
    margin-bottom: 10px;
    margin-left: 5%;
    margin-right: 5%;
}

.containerR{
    margin-top: 0px;
    margin-left: 12%;
    margin-right: 12%;
}

#footerRespuesta{
    width: 100%;
    position: absolute;
    top: auto;
    bottom: 0px;
}



/************************************************** Responsive **************************************************/
@media screen and (max-width: 900px){
    /*********************************** default ***********************************/
    h1 {
        font-size: 3.2rem;
    }

    h2{
        font-size: 1.3rem;
    }

    /*********************************** nav ***********************************/
    #logoNav{
        width: 30%;
    }

    /*********************************** form ***********************************/
    .col{
        font-size: 1.3rem;
    }
    
    .form-group{
        font-size: 1.3rem;
    }
    
    .form-control{
        font-size: 1rem;
    }

    /*********************************** boton ***********************************/
    .btn-lg{
        font-size: 1.3rem;
    }

    /*********************************** footer ***********************************/
    .pFooter{
        font-size: 1.3rem;
    }
}


@media screen and (max-width: 600px){
    /*********************************** default ***********************************/
    h1 {
        margin-right: 10%;
        margin-top: 0px;
        font-size: 50px;
    }

    h2{
        font-size: 25px;
    }

    /*********************************** nav ***********************************/
    #logoNav{
        width: 45%;
    }

    .NavSig{
        font-size: 2rem;
    }
    
    
    /*********************************** form ***********************************/
    .container{
        margin-left: 10%;
        margin-right: 12%;
    }
    .col{
        font-size: 18px;
    }

    .form-group{
        font-size: 18px;
    }

    .form-control{
        font-size: 14px;
    }

    /*********************************** boton ***********************************/
    .btn-lg{
        font-size: 18px;
    }

    /*********************************** footer ***********************************/
    .pFooter{
        margin-top: 50px;
        font-size: 18px;
    }
}