/* 


footer section


*/


footer {
    background-color: var(--primary-color);
    color: #fff;
    padding: 20px 2.5rem;
}

footer .container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
}

footer .container .footerSection {
    min-width: 220px;
    max-width: 400px;
}

footer .container .footerSection h3 {
    font-size: 18px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

footer .container .footerSection p {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 8px;
}

footer .container .footerSection a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

footer .container .footerSection a:hover {
    color: #fff;
}

footer .container .footerSection .socialIcons {
    display: flex;
    gap: 15px;
}

footer .container .footerSection .socialIcons a {
    display: inline-block;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

footer .container .footerSection .socialIcons a img {
    width: 28px;
    height: 28px;
    transition: transform 0.3s;
}

footer .container .footerSection .socialIcons a img:last-child {
    width: 20px;
    height: 20px;
}

footer .container .footerSection .socialIcons a img:hover {
    transform: scale(1.1);
}

@media (max-width: 650px) {

    footer {
        padding: 40px 20px;
    }

    footer .container .footerSection {
        min-width: unset;
        max-width: unset;
    }
}