#footer-wrap {
    position: relative;
    background: var(--dark-grey);
    border-top: 1px solid var(--grey);
    color: var(--grey);
    min-width: var(--min-width);
}

#footer-wrap h2 {
    font-size: 30px;
    color: var(--light-grey);
    text-rendering: optimizelegibility;
    text-transform: uppercase;
    font-weight: 400;
    white-space: nowrap;
}

#footer-wrap a {
    color: var(--light-grey);
    text-decoration: none;
}

#footer-wrap a:hover {
    color: var(--text-color);
}

#footer-wrap .container {
    padding: 0;
}

#footer-wrap #footer,
#footer-wrap #copyright {
    padding: 25px;
}

#footer-wrap #footer {
    display: flex;
    gap: 50px;
    align-items: start;
}

#footer-wrap #copyright {
    border-top: 1px solid var(--grey);
    text-align: center;
}

#footer-wrap #copyright > p {
    margin: 25px 0 0 0;
}

#footer-wrap #copyright > div {
    text-transform: uppercase;
}

#footer-wrap ul.footer-menu {
    display: flex;
    list-style: none;
    justify-content: center;
    margin: 0;
    padding: 0;
}

#footer-wrap ul.footer-menu li:not(:last-of-type)::after {
    content: "";
    border-right: 1px solid var(--grey);
    padding-right: 5px;
    margin-right: 5px;
} 

#footer-wrap #scrolltop {
    position: absolute;
    bottom: 25px;
    right: 25px;
    display: block;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--white);
    text-align: center;
}

#footer-wrap #shield {
    position: absolute;
    bottom: 25px;
    right: 70px;
    display: block;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--white);
    text-align: center;
}

#footer-wrap #scrolltop::after {
  content: "\f077";
  font-family: "FontAwesome";
  font-size: 18px;
  line-height: 28px;
}

#footer-wrap #shield::after {
  content: "\f132";
  font-family: "FontAwesome";
  font-size: 18px;
  line-height: 31px;
}

#footer-wrap #scrolltop:hover {
    background-color: var(--x-light-color);
}

#footer-wrap #shield:hover {
    background-color: var(--x-light-color);
}

@media screen and (max-width: 980px) {
    
    @media screen and (max-width: 781px) {
        #footer-wrap #footer {
            flex-direction: column;
        }
    }
}