@font-face {
    font-family: "bartkey";
    src: url(../fonts/BARTKEY.ttf);
    src: url(../fonts/BARTKEY.otf);
    font-weight: 100;
}

:root {
    color-scheme: only light;
  }

footer {
    border-top: 1px solid white;
    border-radius: 0.2rem;
    z-index: 10;
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0d141e8f;
    height: auto;
    width: 100vw;
    padding-top: 20px;
    color: #fff;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    letter-spacing: 0.4rem;
    font-family: bartkey;
}

ul {
    padding-inline-start: 0 !important;
}

.footer-content h3 {
    color: #ef7a25;
    font-size: 1.8rem;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 3rem;
}

.footer-content p {
    max-width: 500px;
    margin: 10px auto;
    padding: 0rem 1rem;
    line-height: 22px;
    font-size: 14px;
}

@media screen and (min-width: 1024px) and (max-height: 1310px) {
    .footer-content p {
        max-width: 44rem;

        font-family: bartkey;
        margin: 10px auto;
        padding: 0rem 1rem;
        line-height: 28px;
        font-size: 16px;
    }
}

.socials {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.socials li {
    margin-right: 10px;
}

.socials a {
    text-decoration: none;
    color: #fff;
}

.socials a i {
    font-size: 1.1rem;
    transition: color .4s ease;

}

.socials a:hover i {
    color: #ef7a25;
}

.footer-bottom {
    background: #0000008c;
    width: 100vw;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    word-spacing: 2px;
    text-transform: capitalize;
}

.footer-bottom span {
    text-transform: uppercase;
    font-weight: 200;
}