p {
    margin: none;
}
.footer {
    background: #0e6fad;
    color: #fff;
    padding: 60px 0 0;
    font-family: "Poppins", sans-serif;
}

.footer-container {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-box h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.footer-box p {
    font-size: 14px;
    line-height: 26px;
    color: #d9e6f7;
}

.footer-box a {
    color: #ff99cc;
    text-decoration: none;
}

.underline {
    width: 40px;
    height: 3px;
    background: #2f8bff;
    margin: 0 0 15px 0;
    border-radius: 20px;
}

.social {
    margin-top: 20px;
}

.social a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    color: #0e6fad;
    border-radius: 50%;
    font-size: 16px;
    margin-right: 10px;
    transition: .3s;
}

.social a:hover {
    transform: translateY(-5px);
}

.footer-box i {
    color: #fff;
    margin-right: 10px;
    font-size: 16px;
}

iframe {
    border-radius: 5px;
    margin-top: 10px;
}

.copyright {
    background: #085a8d;
    padding: 15px;
    text-align: center;
    margin-top: 40px;
    display: flex;
    justify-content: space-evenly;
}

copyright p {
    margin-bottom: 0;
    font-size: 13px;
    color: #cfe9ff;
}

copyright span {
    color: #41b0ff;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .social a {
        margin: 5px;
    }
}
