.site-footer {
    margin-top: 5rem;
    color: #eaf1ff;
    background:
        radial-gradient(circle at 12% 0%, rgba(97, 212, 255, .18), transparent 30%),
        linear-gradient(135deg, #071b35 0%, #0b1f3a 55%, #08284f 100%);
}

.footer-main {
    padding: 4.5rem 0 3rem;
}

.footer-logo img {
    height: 82px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    padding: .45rem .7rem;
}

.footer-about {
    color: #c8d7ea;
    margin: 1.25rem 0;
    max-width: 420px;
}

.site-footer h5 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer li {
    margin: .52rem 0;
}

.site-footer a {
    color: #c8d7ea;
    text-decoration: none;
}

.site-footer a:hover {
    color: #61d4ff;
}

.footer-social {
    display: flex;
    gap: .65rem;
    flex-wrap: wrap;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    color: #fff;
}

.footer-contact {
    display: grid;
    gap: .7rem;
    margin-bottom: 1rem;
}

.footer-contact span {
    color: #c8d7ea;
}

.footer-contact i {
    color: #61d4ff;
    width: 20px;
}

.footer-newsletter {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: .5rem;
}

.footer-newsletter .form-control {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .18);
    color: #fff;
}

.footer-newsletter .form-control::placeholder {
    color: #b8c7dc;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 1rem 0;
    color: #b8c7dc;
    font-size: .92rem;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom a {
    margin-left: 1rem;
}

@media (max-width: 767px) {
    .site-footer {
        margin-bottom: 3.25rem;
    }

    .footer-newsletter {
        grid-template-columns: 1fr;
    }

    .footer-bottom a {
        margin: 0 1rem 0 0;
    }
}

