
@font-face {
    font-family: "my_grandpas_farm";
    src: url(assets/font/my_grandpas_farm.ttf) ;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');


:root {
    --main-color:
        /*#fada26;#ffee8d*/
        #111;
    --contrast-color:
        /*#dcc022;*/
        #fada26;
}

body{
    background-color: var(--main-color);
}

footer{
    margin-top: 50px;
}
h1{
    font-family: my_grandpas_farm;
    text-align: center;
}
h1,label{
    color: white;
    font-weight: 500;
}

/* Form */
form {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}
form input,
form select,
form textarea {
    width: 94.93670886075949%;
    padding: 15px;
    border: 1px solid black;
    background-color: var(--contrast-color);
    border-radius: 10px;
    margin: 10px 0;
    font-size: 1.302vw;
    -webkit-appearance: none;
    color: black;
}

form input:focus,
form select:focus,
form textarea:focus {
    outline: 0;
}
::placeholder {
    color: #1d1d1d;
}
#newsletterForm input[type="text"],
#newsletterForm input[type="email"] {
    width: 48%;
    float: left;
}
#newsletterForm input[type="text"],
#newsletterForm input[type="email"],
#newsletterForm input[type="submit"],
#newsletterForm select,
#newsletterForm #newsletterTrattDati {
    margin: 1%;
    color: black;
}
@media only screen and (max-width: 600px) {
    #newsletterTrattDati {
        padding: 10px 0;
        clear: both;
    }
}
/*Fine Form*/
/*Input type checkbox e radio*/
input[type="checkbox"],
input[type="radio"] {
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none;
    display: block;
    float: left;
    margin-right: -2em;
    opacity: 0;
    width: 1em;
    z-index: -1;
}
input[type="checkbox"]+label,
input[type="radio"]+label {
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    font-size: 1.302vw;
    font-weight: 300;
    padding-left: 2.4em;
    padding-right: 0.75em;
    position: relative;
}
input[type="checkbox"]+label:before,
input[type="radio"]+label:before {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    text-transform: none !important;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}
input[type="checkbox"]+label:before,
input[type="radio"]+label:before {
    border-radius: 4px;
    border: solid 1px;
    content: '';
    display: inline-block;
    font-size: 0.8vw;
    height: 2.0625em;
    left: 0;
    line-height: 2.0625em;
    position: absolute;
    text-align: center;
    top: 0;
    width: 2.0625em;
}
input[type="checkbox"]:checked+label:before,
input[type="radio"]:checked+label:before {
    content: 'X';
    font-family: cursive;
    color: black;
    background-color: var(--contrast-color);
}
input[type="checkbox"]+label:before {
    border-radius: 4px;
}
input[type="radio"]+label:before {
    border-radius: 100%;
}
input:disabled{
    opacity: 0.5;
}
#recaptcha > div{
    margin: 15px auto;
}





#navigationButtons {
    width: 95%;
    margin: 0 auto;
}
#navigationButtons button {
    background-color: var(--contrast-color);
    color: black;
    border: 1px solid black;
    /* border: 0; */
    text-align: center;
    border-radius: 10px;
    padding: 10px;
    margin: 1%;
    cursor: pointer;
    font-family: 'my_grandpas_farm';
}
.navigationButtons-3 button {
    width: 30%;
    font-size: 2.5em;
}
.navigationButtons-4 button {
    width: 22.62%;
    font-size: 2.2em;
}

#navigationButtons button:focus {
    outline: 0;
}

.buttonFooter{
    display: inline;
   
}

.ada{
    overflow: hidden;
}


