iframe {
    mask-image: linear-gradient(to top, transparent 30px, black);
}


footer {
    background-color: #333;
    color: #fff;
    font-family: Arial, sans-serif;
    
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /*justify-content: space-between;*/
    gap: 10px;
    max-width: 80%; 
    margin: auto;
    padding: 10px;    
}

.footer-section {
    width: 20%;
    margin: 10px 0;
}

.footer-section h4, .footer-section h5 {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #f0a500;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #f0a500;
}

.footer-bottom {
    background-color: #222;
    text-align: center;
    padding: 15px;
    font-size: 0.9em;
}

.footer-bottom p {
    margin: 5px 0;
}

.social-links {
    margin-top: 10px;
}

.social-links a {
    color: #f0a500;
    margin: 0 8px;
    text-decoration: none;
}

.social-links a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-section {
        width: 45%;
    }
}

@media (max-width: 480px) {
    .footer-top {
        flex-direction: column;
    }
    .footer-section {
        width: 100%;
    }
}

.img ul {
    list-style-type: none;
    padding: 0;
}

.img li {
    margin-bottom: 10px;
}

.email-icon {
    width: 20px; /* Adjust the size as needed */
    height: auto;
    vertical-align: middle; /* Align icon with text */
    margin-right: 5px; /* Add spacing between icon and text */
}