*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.site-footer {
    padding: 5rem 2rem 3rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 2rem;
    position: relative;
    flex-wrap: wrap;
    box-sizing: border-box;
    width: 100%;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 3%;
    right: 3%;
    height: 1px;
    background: linear-gradient(
            to right,
            transparent,
            rgba(207, 227, 228, 0.25) 20%,
            rgba(207, 227, 228, 0.25) 80%,
            transparent
    );
}

.footer-brand {
    text-align: center;
}

.footer-brand-name {
    font-family: var(--font);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 100;
    letter-spacing: 0.45em;
    color: var(--white-color);
    text-transform: uppercase;
    opacity: 0.15;
    text-indent: 0.45em;
    display: block;
    line-height: 1;
}

.footer-cta {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-bottom {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
}


.footer-info {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: rgba(207, 227, 228, 0.35);
    line-height: 1.8;
    text-transform: lowercase;
}

.footer-info a {
    font-size: 0.75rem;
    color: rgba(207, 227, 228, 0.35);
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 0.1em;
}

.footer-info a:hover {
    color: rgba(207, 227, 228, 0.7);
}

img{
    height: 150px;
}

@media (max-width: 600px) {
    .site-footer {
        flex-direction: column;
        padding: 3rem 1.5rem 2rem;
        gap: 1.5rem;
    }

    .site-footer::before {
        left: 1.5rem;
        right: 1.5rem;
    }

    .footer-info{
        text-align: center;
    }

    .footer-info:nth-of-type(1) {
        order: 2;
    }

    .footer-cta {
        order: 1;
    }

    .footer-info:nth-of-type(2) {
        order: 3;
    }

    .footer-brand { }
    .footer-bottom{
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

}