footer {
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px) saturate(1.5);
    border-top: rgba(255, 255, 255, 0.1) 1px solid;
}

.footer {
    padding: 60px 20px;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    font-size: 18px;
    line-height: 30px;
    color: var(--color-gray);
}

.footer_logo {
    max-height: 90px;
    max-width: 140px;
}

.footer-socials {
    margin-top: 15px;
    display: flex;
    gap: 10px
}

.footer-socials a {
    color: var(--color-white);
    text-decoration: none;
    transition: opacity 0.3s ease; 
    &:hover {
        opacity: 0.8;
    }
}

.footer-socials div  {
    height: 45px;
    width: 45px;
    border-radius: 30px;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-cryodry {
    color: #3498db;
    text-decoration: none;
}

.footer-cryodry:hover {
    color: #2980b9;
    text-decoration: underline;
}


@media only screen and (max-width: 768px) {
    .footer {
        width: calc(100% - 40px);
        text-align: center;
    }

    .footer_logo {
        display: block;
        margin-right: auto;
        margin-left: auto;
    }

    .footer-socials {
        margin-right: auto;
        margin-left: auto;
    }
}
