/* ......... Footer starts here.............. */
* {
           
    box-sizing: border-box;
    font-family:  Hebrew;
}

body {
    background-color: #fffbfb;
}

.footer {
    background-color: #22ac8e;
    color: rgb(48, 41, 41);
    
}

.footer-container-fluid {
    width: 80%;
    max-width: 1900px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin: 10px;
}

.footer h3 {
    margin-bottom: 20px;
    border-bottom: 2px solid #f39c12;
    display: inline-block;
    padding-bottom: 5px;
    color: #413838;
}

.quick-links ul {
    list-style: none;
}

.quick-links ul li {
    margin-bottom: 10px;
}

.quick-links ul li a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.quick-links ul li a:hover {
    color: #f39c12;
}

.address p {
    line-height: 1.6;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gallery img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 5px;
    transition: 0.3s;
}

.gallery img:hover {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .gallery {
        justify-content: center;
    }
}
