.foot {
    background: radial-gradient(rgb(0, 0, 0), rgb(128,128,128));
    padding: 20px 0;
}

.foot__title {
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    color: rgba(254, 254, 255, 0.842);
    text-align: end;
    padding-right: 40px;
}
.foot__list {
    max-width: 420px;
    background-color: rgba(245, 246, 247, 0.425);
    padding: 10px;
    border-radius: 15px;
}
.foot__contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.foot__link {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1em;
    color: aliceblue;
    font-weight: 500;
    transition: all 0.4s ease;
}
.foot__link:hover {
    color: rgba(109, 236, 194, 0.808);
    text-decoration: underline;
}
.foot__link-page {
    border: 2px double white;
    border-radius: 10px;
    transition: all 0.4s ease;
}
.foot__link-page:hover {
    border: 2px double rgb(100, 184, 190);
}
.foot__img {
    border-radius: 10px;
    object-fit: cover;
}

/* адаптив */
/* 768px */
@media (max-width:768px) {
    .foot {
        
    }
    .foot__title {
        text-align: center;
        font-size: 2rem;
        padding: 0;
    }
    .foot__contact {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }
    .foot__list {
        width: 100%;
    }
    .foot__link-page {
        display: none;
    }
}