/* Footer */
.footer {
    background-color: var(--color-primary-2);
}

.grid--footer-top {
    grid-template-areas:
        '. G_FLO G_FLO G_FLO . . . G_FSC G_FSC G_FSC G_FSC G_FSC';
    padding: 2rem 0;
}

.footer__logo {
    grid-area: G_FLO;
    display: flex;
}

.footer__social-container {
    grid-area: G_FSC;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.footer__social-container ul {
    list-style: none;
    display: flex;
    margin-right: 3rem;
}

.footer__social-container ul li a {
    margin: 0.6rem;
    height: 1.5rem;
    width: 1.5rem;
}

.footer__social-container ul li a img {
    height: inherit;
    width: inherit;
}

.footer__arrow-container {
    height: 3.5rem;
    width: 3.5rem;
    cursor: pointer;
    position: relative;
}

.footer__arrow-container:hover {
    animation-name: up-down-anim;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

@keyframes up-down-anim {
    0% {
        transform: translateY(0);
    }

    20% {
        transform: translateY(-0.5rem);
    }

    100% {
        transform: translateY(0);
    }
}

.footer__top div {
    text-align: center;
}

.footer__title {
    margin-bottom: 1.8rem;
    font-weight: 500;
}

.footer__subtitle {
    margin-bottom: 1.4rem;
    font-weight: 500;

}

.grid--footer-nav {
    grid-template-areas:
        '. G_NAC G_NAC G_NAC G_NAC G_NAC G_NAC G_NAC G_NAC G_NAC G_NAC .';
}

.grid_nav-container {
    grid-area: G_NAC;
    display: flex;
}

.grid_nav-container>* {
    flex: 1 1;
}

.flex-2-grow {
    flex-grow: 2;
}

.grid__footer-company,
.grid__footer-services,
.grid__footer-tech-stack {
    margin-right: 5rem;
}

.grid__footer-company {
    white-space: nowrap;
}

.grid__footer-contact-us {}

.grid_nav-container ul {
    margin-bottom: 1.25rem;
}

.grid--footer-bottom {
    grid-template-areas:
        '. G_COP G_COP G_COP G_COP G_COP G_LIN G_LIN G_LIN G_LIN G_LIN .';
    padding: 2rem 0;
    color: var(--color-tertiary-1);
}

.footer__copyrights {
    grid-area: G_COP;
}

.footer__bottom-links {
    grid-area: G_LIN;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.footer__bottom-links a {
    color: var(--color-tertiary-1);
    margin-left: 2rem;
}

/* Start -> Media Queries */

/* -- For Mobile -- */
@media screen and (max-width: 480px) {

    /* Footer */
    .grid--footer-nav {
        padding: 2rem 0;
        grid-template-areas:
            'G_NAC';

    }

    .grid_nav-container {
        display: flex;
        flex-wrap: wrap;
    }

    .grid_nav-container>* {
        flex: 1 1 90%;
    }

    .grid__footer-company,
    .grid__footer-services,
    .grid__footer-tech-stack {
        margin-right: 2rem;
        margin-top: 1.5rem;
    }

    #footer__tech-stack-container {
        display: none;
    }

    .grid--footer-bottom {
        padding: 2rem 0;
        grid-template-columns: repeat(1, 1fr);
        grid-template-areas:
            'G_LIN'
            'G_COP';
    }

    .footer__bottom-links {
        grid-area: G_LIN;
        display: flex;
        justify-content: space-between;
        margin-bottom: 1.5rem;
    }

    .footer__bottom-links a {
        margin-left: 0rem;
    }
}

/* -- For iPad / Tablets -- */
@media screen and (min-width: 481px) and (max-width: 768px) {

    /* Footer */
    .grid--footer-nav {
        grid-template-columns: repeat(12, 1fr);
        grid-template-areas:
            'G_NAC G_NAC G_NAC G_NAC G_NAC G_NAC G_NAC G_NAC G_NAC G_NAC G_NAC G_NAC';
    }

    .grid_nav-container {
        display: flex;
        flex-wrap: wrap;
    }

    .grid_nav-container>* {
        flex: 1 1 40%;
    }

    .grid__footer-company,
    .grid__footer-services,
    .grid__footer-tech-stack,
    .grid__footer-contact-us {
        margin-right: 2rem;
    }

    .grid--footer-bottom {
        grid-template-columns: repeat(12, 1fr);
        grid-template-areas:
            'G_COP G_COP G_COP G_COP G_COP G_COP G_LIN G_LIN G_LIN G_LIN G_LIN G_LIN';
        padding: 1rem 0;
    }

}

/* -- For Mobile / iPad / Tablets -- */
@media screen and (max-width: 768px) {

    /* Footer */
    .footer__arrow-container {
        height: 2.5rem;
        width: 2.5rem;
    }

    .footer__social-container {
        justify-content: space-between;
        margin-top: 1rem;
    }

    .footer__social-container ul {
        margin-right: 1rem;
    }

    .footer__social-container ul li a {
        margin: 0rem;
        margin-right: 1rem;
        height: 1.5rem;
        width: 1.5rem;
    }

    .grid--footer-top {
        grid-template-areas:
            'G_FLO'
            'G_FSC';
        padding: 2rem 0;
    }


}

/* -- For Small Screen / Laptops / Desktops -- */
@media screen and (min-width: 769px) and (max-width: 1150px) {

    .grid--footer-top {
        grid-template-areas:
            'G_FLO G_FLO G_FLO G_FLO . . . G_FSC G_FSC G_FSC G_FSC G_FSC';
        padding: 2rem 0;
    }

    .grid--footer-nav {
        grid-template-areas:
            'G_NAC G_NAC G_NAC G_NAC G_NAC G_NAC G_NAC G_NAC G_NAC G_NAC G_NAC G_NAC';
    }

    .grid--footer-bottom {
        grid-template-areas:
            'G_COP G_COP G_COP G_COP G_COP G_COP G_LIN G_LIN G_LIN G_LIN G_LIN G_LIN';
    }

    .grid__footer-company,
    .grid__footer-services,
    .grid__footer-tech-stack {
        margin-right: 2rem;
    }

}

/* -- For Large Screen / Mac -- */
@media screen and (min-width: 1151px) and (max-width: 1440px) {


}