﻿
.bg-cream {
    background-color: #EFECE3;
    position: relative;
    overflow: hidden;
}
.breadcrumb {
    background-color: #EFECE3;
}
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #20704D;
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

    .social-icon-footer:hover {
        background-color: #FFA900;
        color: white;
        transform: translateY(-3px);
    }

@media (max-width: 991px) {
    .social-links {
        gap: 20px;
        margin-top: 15px;
    }

    .social-icon-footer {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 767px) {
    .social-links {
        justify-content: flex-start;
        gap: 15px;
        margin-top: 10px;
    }

    .social-icon-footer {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 480px) {
    .social-links {
        gap: 12px;
    }

    .social-icon-footer {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}

.footer-wrap .intro h1 {
    color: #20704D;
}

.footer-wrap .footer-title {
    font-family: Roboto;
    font-weight: 700;
    color: #525252;
    font-size: 20px;
}
