:root {
    --primary-color: #fed605;
    --secondary-color: #222779;
    --blue-color: #134985;
    --white-color: #fff;
    --light-white: #f5eeeeb6;
    --black-color: #15161c;
    --background-color: #;
    --button-background: #fed605;
}

.footer-section {
    background-color: var(--black-color);
}

.footer-links {
    display: flex;
    flex-direction: column;
    text-align: start;
    align-items: start;
    justify-content: start;
}

.footer-links h4 {
    color: var(--primary-color);
}

.footer-links a {
    text-decoration: none;
    color: var(--light-white);
    font-family: "Noto Serif", serif;
}


.icon-link {
    font-size: 18px;
    color: #15161c !important;
    background-color: var(--button-background);
    /* padding: 8px; */
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.icon-link:hover {
    background-color: var(--blue-color) !important;
    color: var(--light-white) !important;
    transform: scale(1.1);
}

.container a {
    text-decoration: none;
    color: var(--light-white);
    font-family: "Noto Serif", serif;
}

.bottom-name{
    color: var(--white-color);
}

@media(max-width:499px){
    .bottom-name{
        font-size: 13px;
    }
}
/* @media(max-width:410px){
    .bottom-name{
        font-size: 10px;
    }
} */