
/*         Contacts         */

#contacts {
    width: var(--content-width);
    margin: 0 auto 160px;
    display: flex;
    justify-content: space-between;
}
  
.lato-mappa { 
    width: 50%; 
    background-color: var(--blue-dark);
}
  
.lato-mappa img {
    object-fit: cover;
    object-position: left top;
    width: 100%;
    height: 100%;
}
  
.lato-info{
    width: 50%;
    height: 420px;
    display: flex;
}
  
.info-text { margin: auto; }

.info-text h2 { margin-bottom: 16px; }
  
.info-button {
    border: 1.5px solid var(--blue-main);
    padding: 6px 10px;
    margin-top: 15px;
    border-radius: 8px;
    margin-bottom: 100px;
    background-color: white;
}

.info-button:hover {
    cursor: pointer;
    border: 1.5px solid var(--blue-accent);
    color: var(--blue-accent);
}







/*         Footer         */

footer {
    background-color: var(--blue-dark);
    display: flex;
    flex-direction: column;
    padding: 80px 0 65px;

    font-size: .85rem;
    text-align: center;
    line-height: 1.9;

    color: #959ca8;
}

.finanziatori {
    width: 450px;
    margin: 0 auto 35px;  
}

footer a {
    font-weight: bold;
    color: var(--white);
    transition: color .3s ease-in-out;
}

footer a:hover{
    color: var(--blue-accent);
}



