/**** Structure ****/
#footer {
    position: relative;
    z-index: 99;
}
#footer {
    width: 100%;
    height: auto;
}
#footer {
    box-sizing: border-box;
    padding: 6em 5em;
}
@media screen and (max-width: 1024px) {
    #footer {
        padding: 5em 2em;
    }
}
#footer {
    background: var(--gradient__2);
    box-shadow: 0 0 5px #000;
}
#footer main {
    display: grid;
    grid-template-columns: auto auto auto auto;
    align-items: start;
    justify-content: center;
    gap: 6em;
}
@media screen and (max-width: 1024px) {
    #footer main  {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: flex-end;
        gap: 4em;
    }
}
#footer main div {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
@media screen and (max-width: 1024px) {
    #footer main div {
        align-items: center;
        gap: 20px;
    }
}
#footer main div h4 {
    font-family: 'bold-font';
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
}
@media screen and (max-width: 1024px) {
    #footer main div h4 {
        font-size: 14px;
    }
}

/**** Separator ****/
#footer hr {
    margin: 40px 30%;
    height: 1px;
    border: none;
    background: var(--color__2);
}

/**** Logo ****/
#footer .logo {
    width: auto;
    height: 7em;
}
#footer .logo img {
    width: auto;
    height: 100%;
}

/**** Copyright ****/
#footer .copyright {
    display: block;
    margin: 0;
}
#footer .copyright p,
#footer .copyright a {
    position: relative;
}
#footer .copyright p,
#footer .copyright a {
    font-family: 'content-font';
    font-size: 11px;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
}
@media screen and (max-width: 1024px) {
    #footer .copyright p,
    #footer .copyright a {
        font-size: 11px;
        letter-spacing: 1px;
    }
}