.footer {
    background-color: #17171A;
    padding: 70px 0;
    position: relative;
    z-index: 1;
}

.footer .socials {
    margin-left: auto;
}

.footer .socials .social {
    text-decoration: none;
    margin-left: 1rem;
    filter: grayscale(10);
    transition: 1s;
}

.footer .socials .social:hover {
    filter: grayscale(0);
    transition: 1s;
}

.footer .footer-title {
    font-style: normal;
    font-weight: 600;
    font-size: 19.6301px;
    line-height: 27px;

    /* identical to box height, or 135% */
    letter-spacing: -0.03em;

    color: #FFFFFF;
}

.footer .footer-link {
    font-style: normal;
    font-weight: 500;
    font-size: 17.449px;
    line-height: 27px;

    /* identical to box height, or 152% */
    letter-spacing: -0.01em;

    color: #CCCCCC;
    text-decoration: none;
    transition: .7s;
}

.footer .footer-link:not(.no-hover):hover {
    color: var(--primary-color);
    transition: .7s;
}

.footer .form-inline {
    display: flex;
}

.footer .form-inline .form-group .form-control{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.footer .form-inline .btn-primary{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.footer .copyright {
    height: 100%;
    display: flex;
}
.footer .copyright p{
    font-size: 14px;
    margin-top: auto;
    margin-bottom: 0;
    text-align: end;
    width: 100%;
}