:root{
    --ff-formbgcolor: none !important;
    --ff-heading-font: HelveticaRegular !important;
    --ff-paragraph-font: HelveticaLight !important;
}

html{
    overflow-x: hidden;
}

/* 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%); 
    /* background: rgba(237, 237, 237, 1); */
}

body{
    margin: 0;
    width: 100vw;
    height: auto;
}

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%;
    margin-right: 12%;
}


/*********************************** form ***********************************/
.ff-form input{
    font-family: HelveticaRegular !important;
    font-size: 18px !important;
}

.ff-form .ff-secfields .ff-item label {
    font-family: HelveticaLight !important;
    font-size:24px;
}

.ff-form {
    width: 100vw !important;
    height: auto !important;
    margin-left: 12% !important;
    margin-right: 12% !important;
    margin-bottom: 100px !important;
}

.ff-layout-default {
    max-width: 76vw !important;
    padding: 0px 0px !important;
}

.ff-form .ff-powered-img {
    visibility: hidden !important;
}

.ff-form .ff-widget-error b {
    visibility: hidden !important;
}

.ff-widget-error {
    font-family: HelveticaThin !important;
}

.ff-form .ff-item textarea {
    font-family: HelveticaRegular !important;
}

.ff-success {
    height: 20vh !important;
    margin-top: 50px !important;
    font-size: 30px !important;
    font-family: HelveticaRegular !important;
}

.ff-form .ff-description :nth-child(2n){
    visibility: hidden !important;
}

.ff-form-check{
    font-size: 22px !important;
}


/*********************************** footer ***********************************/
.pFooter{
    margin-top: 0px;
    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: 28px;
    margin-left: auto;
    margin-right: auto;
}

.colorChange {
	-webkit-animation: colorChange 6s linear infinite alternate both;
	animation: colorChange 6s linear infinite alternate both;
}

@-webkit-keyframes colorChange {
    0% {
        background: rgba(248,225,50,1);
    }
    50% {
        background: rgba(221,77,54,1);
    }
    100% {
        background: rgba(74,36,138,1);
    }
}

@keyframes colorChange {
    0% {
        background: rgba(248,225,50,1);
    }
    50% {
        background: rgba(221,77,54,1);
    }
    100% {
        background: rgba(74,36,138,1);
    }
}


/************************************************** Responsive **************************************************/
@media screen and (max-width: 900px){
    /*********************************** default ***********************************/
    h1 {
        font-size: 3.2rem;
    }

    h2{
        font-size: 1.3rem;
    }


    /*********************************** nav ***********************************/
    #logoNav{
        width: 30%;
    }


    /*********************************** 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 ***********************************/
    .ff-form input{
        font-size: 18px !important;
    }

    .ff-form .ff-secfields .ff-item label {
        font-size:20px !important;
    }


    /*********************************** footer ***********************************/
    .pFooter{
        margin-top: 0px;
        font-size: 18px;
    }
}