:root {
    --primary-color: #000000;
}

@font-face {
    font-family: TitleFont;
    src: url(../css/font/Nexa-Heavy.ttf);
}

@font-face {
    font-family: BodyFont;
    src: url(../css/font/Nexa-ExtraLight.ttf);
}


body {
    overflow-x: none;
    font-family: BodyFont !important;
    background-color: var(--primary-color) !important;
    color: white !important;
}

h1 {
    color: var(--primary-color);
    text-align: center;
    padding: 16px 0;
    font-size: 40px;
    font-family: TitleFont !important;
}

p {
    text-align: center;
}





.header {
    display: block;
    position: relative;
    width: 100%;
    height: 100vh;

    background-image: url('../img/macchine-2.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.header img {
    display: block;
    position: absolute;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 90%;
    max-width: 600px;
}

.header h1 {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 48px;
    width: 90%;
}

.header p {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 26px;
    width: 90%;
}

.header p span {
    font-size: 30px;
}

@media only screen and (min-width: 992px) {
    .header {
        background-position: top;
    }
}





.countdown-section {
    background-color: var(--primary-color);
    height: fit-content;
    display: block;
}

.countdown-section .container {
    color: white;
    margin: 0 auto;
    text-align: center;

}

.countdown-section h1 {
    font-weight: normal;
    letter-spacing: .125rem;
    text-transform: uppercase;
}

.countdown-section ul {
    margin: 0;
    padding: 20px 0;
}

.countdown-section li {
    display: inline-block;
    font-size: 18px;
    list-style-type: none;
    padding: 10px;
    text-transform: uppercase;
}

/*@media only screen and (max-width: 768px) {
    .countdown-section li {
        width: 40%;
    }
}*/

.countdown-section li span {
    display: block;
    font-size: 18px;
}

.countdown-section .emoji {
    display: none;
    padding: 1rem;
}

.countdown-section .emoji span {
    font-size: 4rem;
    padding: 0 .5rem;
}




.mappa img {
    width: 100%;
    margin: 0;
    padding: 0;
}



.form-contatto {
    background-color: var(--primary-color);
    color: white;
}


.iban-section {
    color: var(--primary-color);
    padding: 20px 0;
    background-color: white;
}



footer {
    border: 10px solid var(--primary-color);

    min-height: 220px;
    color: white;
    background-color: var(--primary-color);

    background-image: url(../img/logo.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: relative;
}

footer p {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    font-size: 20px;
}


.form-btn-submit {
    border: 2px solid white;
    color: var(--primary-color);
    background-color: white;
    border-radius: 4px;
    width: 90%;
    margin: 0 auto;
    display: block;
    padding: 8px;
    font-size: 22px;
}




.whatsapp_business {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF !important;
    border-radius: 50px;
    text-align: center;
    font-size: 38px;
    z-index: 100;
}


a {
    color: white !important;
}