.container-fluid {
    animation: fadeIn 2s linear;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        background-color: rgb(241, 240, 235);
    }
    100% { 
        opacity: 1; 
    }
}
#email-container {
    height: auto;
    background-color: rgb(4, 106, 144);
}

.title-container {
    height: 50px;
    display: flex;
    align-items: center;
    padding-left: 20px;
    padding-top: 80px ;
}

form {
    margin-top: 50px;
    padding-left: 20px;
    padding-right: 20px;
    height: auto;
}

 form label{
    color: white;
 }

 form input {
    border: 1px solid white !important;
    border-radius: 0px !important;
    width: 300px !important;
 }

 form textarea {
    border: 1px solid white !important;
    border-radius: 0px !important;
    height: 150px !important;
 }

 form button {
    color: rgb(80, 80, 80) !important;
    background-color: white !important;
    border-radius: 0px !important;
    border: 3px solid white !important;
    width: 100px;
    margin-bottom: 30px;
    margin-top: 25px;
    margin-right: 20px;
 }

 form button:hover {
    color: white !important;
    background-color: rgb(4, 106, 144) !important;
    border-radius: 0px !important;
    border: 3px solid white !important;
 }

.title-container h1 {
    color: white;
}

#img-container img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.contact-info-container {
    padding-left: 20px;
    padding-top: 50px;
}

.single-contact-container h3 {
    color: white;
    padding-top: 30px;
    width: 100%;
}

.single-contact-container img{
    height: 25px;
    padding-right: 10px;
}

.single-contact-container a {
    color: white;
    text-decoration: none;
    width: 100%;
}

.footer {
    height: 100px !important;
}

.p-iva-container {
    padding-top: 20px !important;
}

#email-sended {
    height: 30px;
    width: 30px;
}

.button-container {
    display: flex;
    height: 100px;
    align-items: center;
}

.button-container span {
    color: white;
    padding-left: 10px;
}

/*TABLET*/
@media screen and (max-width:990px) {
    #img-container {
        display: none;
    }

    #email-container {
        height: auto;
        background-color: rgb(4, 106, 144);
    }
}

/*MOBILE*/
@media screen and (max-width:767px) {
    #img-container {
        display: none;
    }
    #email-container {
        height: auto;
        background-color: rgb(4, 106, 144);
    }

    .single-contact-container h3 {
        font-size: medium;
    }

    .single-contact-container a {
        font-size: small;
    }

    
}