.footer-nav-v2 {
    background-color: rgb(var(--clr-primary));
    background-image: linear-gradient(to right, rgb(var(--clr-primary)) 0%, rgb(28, 43, 152, 0.7) 90%), url(../../images/Icon_Blue.png);
    background-repeat: no-repeat;
    background-position-x: 95%;
    background-position-y: center;
    background-size: auto 115%;

    display: grid;
    grid-template-columns: repeat(12, 1fr);
}
.footer-nav-v2 * {
    color: rgb(var(--clr-text-light));
}
.footer-nav-v2 ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer-nav-v2 li {
    line-height: 2rem;
}

.footer-nav-v2-section1 {
    grid-column: span 9;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.footer-nav-v2-section1 a:hover{
    text-decoration: underline;
}
.footer-nav-v2-logo-container {
    padding: 2.5rem var(--page-margin);
    grid-column: span 3;
}
.footer-nav-logo-v2-wrapper {
    max-width: 300px;
}
.footer-nav-v2-info-container {
    padding: 0 var(--page-margin);
    grid-column: span 3;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
@media only screen and (max-width: 900px){
    .footer-nav-v2-section1 {
        grid-column: span 12;
    }
    .footer-nav-v2-info-container {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 3rem;
    }
    .footer-nav-v2-address-wrapper {
        order: 3;
        grid-column: span 1;
    }
    .footer-nav-v2-decorative-container {
        display: none;
    }
}
.footer-nav-v2-address-wrapper {
    display: grid;
    justify-content: center;
    justify-items: start;
}
.footer-nav-v2-address {
    margin-top: 1rem;
}
.footer-nav-v2-links-wrapper {
    display: grid;
    justify-content: center;
    justify-items: start;
}
.footer-nav-v2-links-wrapper h2{
    text-decoration: underline;
    font-weight: 500;
}
.footer-nav-v2-social-wrapper {
    display: grid;
    justify-content: center;
    justify-items: start;
}
.footer-nav-v2-social-wrapper ul {
    height: 100%;
    display: flex;
    flex-direction: column;
    /* justify-content: space-evenly; */
    justify-content: center;
}
.footer-nav-v2-social-wrapper i{
    /*width: 2rem;
    height: 2rem;*/
    font-size: 1.5rem;
}
.footer-nav-v2-social-wrapper i:hover,
.footer-nav-v2-social-wrapper svg:hover {
    color: rgb(var(--clr-accent));
    fill: rgb(var(--clr-accent));
}
.footer-nav-v2-design-container {
    grid-column: span 3;
    padding-top: 3rem;
    padding-left: var(--page-margin);
}
.footer-nav-v2-copyright-info{
    font-size: var(--fs-300);
}
.footer-nav-v2-copyright-info a:visited {
    color: rgb(var(--clr-text-light));
}
.footer-nav-v2-copyright-info a {
    text-decoration: underline;
}

.footer-nav-v2-decorative-container {
 grid-column: span 3;
}

