.social-icons {
    position: absolute;
    bottom: 12px; 
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 12px; 
}

.social-btn {
    background-color: transparent;
    color: #ffffff;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: none;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background-color: transparent; 
    color: #003366;
    transform: scale(1.15);
}

@media (max-width: 1250px) {
    .wrap-5 .social-btn {
        width: 22px;
        height: 22px;
        font-size: 15px;
    }
    .wrap-5 .social-icons {
        bottom: 5px;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .social-btn, .wrap-5 .social-btn {
        width: 32px;
        height: 32px;
        font-size: 20px;
    }
    .social-icons, .wrap-5 .social-icons {
        bottom: 12px;
        gap: 12px;
    }
}