/* ====== Footer Section ====== */
/* ====== Footer Section ====== */

.footer__section {

    display: flex;
    flex-direction: column;

    padding: 0 6vw;

    color: var(--white-color);
    background: var(--dark-color);

    .main__footer {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: start;

        gap: 30px;

        padding: 80px 0;

        .footer__container {
            display: flex;
            flex-direction: column;
            align-items: start;
            gap: 32px;

            .footer__links {
                display: flex;
                align-items: start;
                flex-direction: column;
                gap: 20px;

                .link {

                    /* Layout */

                    display: flex;
                    align-items: center;
                    gap: 6px;

                    /* Style */

                    transition: .3s color;

                    font-size: 18px;
                    color: var(--white-color);

                    >i {
                        font-size: 24px;
                        color: var(--primary-color);
                    }
                }

                .link:hover{
                    color: var(--primary-color);
                }
            }
        }
    }

    .footer__copy {

        border-top: 1px solid #666;

        padding: 20px 0;

        display: flex;
        align-items: center;
        justify-content: space-between;

        .footer__icons {
            display: flex;
            align-items: center;
            gap: 10px;

            >a {

                display: flex;
                align-items: center;
                justify-content: center;

                height: 40px;
                width: 40px;
                line-height: 40px;
                font-size: 20px;
                color: var(--white-color);
                background: rgba(255, 255, 255, 0.1);
                border-radius: 100%;

                transition: .3s background;
            }

            >a:hover{
                background-color: var(--primary-color);
            }
        }
    }
}




@media (max-width:880px) {
    .footer__section {
        .footer__copy {
            flex-direction: column-reverse;
            gap: 20px;
        }
    }
}