:root {
    --footer-bg: #fff;
}

.footer {
    position: relative;
    padding: 45px;
    background: var(--footer-bg);
    color: black;
}

.footer .footer-about h3,
.footer .footer-tools h3,
.footer .footer-contact h3 {
    position: relative;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 1px;
}

.footer .footer-tools a {
    display: block;
    text-decoration: none;
    margin-bottom: 10px;
    transition: transform .2s ease;
    text-transform: none;
    color: black;
    text-decoration: none;
}

.footer .footer-tools a:hover {
    color: var(--color-1);
    transform: scale(1.05);
}

.footer .footer-tools a::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .footer-contact p i {
    width: 25px;
}

.footer .footer-social {
    position: relative;
    margin-top: 20px;
}

.footer .footer-social a {
    display: inline-block;
}

.footer .footer-social a i {
    margin-right: 15px;
    font-size: 18px;
}

.footer .footer-social a:last-child i {
    margin: 0;
}

.footer .footer-links {
    position: relative;
    padding: 10px 0;
    font-size: 0;
    text-align: center;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
}

.footer .footer-links a {
    color: #000;
    font-size: 16px;
    margin-right: 15px;
    text-decoration: none;
    transition: 0.2s;
    padding-right: 15px;
    border-right: 1px solid black;
}

.footer .footer-links a:hover {
    color: var(--color-1);
}

.footer .footer-links a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.footer .copyright {
    padding: 30px 15px 0;
}

.footer .copyright p {
    margin: 0;
}

.footer .copyright .col-md-6:last-child p {
    text-align: right;
}

.footer .copyright p a {
    font-weight: 500;
    letter-spacing: 1px;
}

@media (max-width: 768px) {

    .footer .copyright p,
    .footer .copyright .col-md-6:last-child p {
        margin: 5px 0;
        text-align: center;
    }
}

/* .footer .newsletter {
    position: relative;
    margin: 0 auto 45px auto;
    padding: 30px 15px;
    text-align: center;
}

.footer .newsletter h2 {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer .newsletter .form {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.footer .newsletter input {
    height: 50px;
    border: 2px solid black;
    border-radius: 0;
}

.footer .newsletter .btn {
    position: absolute;
    top: 5px;
    right: 5px;
    height: 40px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: #FD6766;
    background: #121518;
    border-radius: 0;
    border: 2px solid #FD6766;
    transition: .3s;
}

.footer .newsletter .btn:hover {
    color: #ffffff;
    background: #FD6766;
}

.footer .newsletter .btn:focus {
    box-shadow: none;
} */