.site-footer {
    background-color: var(--color-primary-dark);
    z-index: 20;
    align-content: center;
    position: relative;
}

.footer{
    align-self: center;
    margin: auto;
}

.footer-content{
   gap: 10%;
   padding: 60px 0px;
}

.footer-column-1{
    width: fit-content;
    gap: 30px;
}
.footer-column-1 img{
    width: 30vw;
    max-width: 400px;
    height: auto;
}
.footer-column-2{
    padding-top: 20px;
    width: 50%;
    justify-content: flex-end;
    gap: 15%;
   
}
.footer-column-2a-links, .footer-column-2b-links{
    max-width: 110px;
}

.footer-bottom{
    padding-top: 30px;
    display: flex;
    height: 50px;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 10px;
    column-gap: 100px;
}

@media (max-width: 1024px) {
    .footer-content.flex-row {
        flex-direction: column-reverse;
        gap: 60px;
    }
    .footer-column-2{
    padding-top: 20px;
    width: 100%;
    justify-content: flex-start;
    gap: 60px;
    flex-wrap: wrap;
    }
    .footer-column-1 img{
    width: 30vw;
    min-width: 280px;
    height: auto;
    }
    
}





.contact-section{
    padding: 100px 0 100px 0;
    z-index: 20;
    background-color: var(--color-primary-light);
}
.line-decor{
    top: 100px;
    right: -5%;
    width: 50%;
    height: auto;
}
.line-decor path{
    stroke-dasharray: 9999;
    stroke-dashoffset: 9999;
}
.contact-inner{
    gap: 10%;
    max-width:95rem;
    width: 100%;
}
.contact-column-1{
    width: 60%;
}
.contact-column-2{
    width: 40%;
}
.contact-column-1 .brick-canvas-wrap--contact{
    width: 100%;
    border-radius: 0 10px 10px 0;
    overflow: hidden;
}
.contact-column-1 .brick-canvas-wrap--contact .brick-source-img{
    width: 100%;
    height: auto;
    max-height: 600px;
    border-radius: 0 10px 10px 0;
    object-fit: cover;
    display: block;
    visibility: hidden;
}
.contact-column-1 .brick-canvas-wrap--contact .brick-canvas{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0 10px 10px 0;
    display: none;
}

.contact-cta{
    width: fit-content;
}
.contact-link {
    text-decoration: none;
    outline: none;
    width: fit-content;
    border: none;
}
.contact-link-txt{
    align-content: center;
    position: relative;
}
.contact-link-svg{
    padding:12px 15px ;
    height: 80%;
    align-self: center;
    align-content: center;
    background-color: rgb(253, 253, 255);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
     position: relative;
    transition: all var(--transition) var(--transition);
    z-index: ;

}


.contact-link-svg::before{
    content: '';
    position: absolute;
    top: 0;
    opacity: 0.5;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-secondary);
    transform: translateX(-100%);
    transform-origin: left;
    transition: all var(--transition) ;
    z-index: 1;

}
.contact-cta:hover .contact-link-svg::before{
    transform: translateX(0);
    opacity: 1;
}


#contact-arrow{
    width: 18px;
    position: relative;
    transition-delay: 0.3s;
    fill: rgba(0, 78, 162, 1);
    transition: fill 0.3s ease;
     
}
.contact-link:hover #contact-arrow{
    animation: slideIn 0.6s ease forwards;
    animation-delay: 0.3s;
}
.contact-link:hover #contact-arrow{
    fill: var(--color-primary-light);
}


@media (max-width:767px){
    .contact-inner.flex-row{
        flex-direction: column;
    }
    .contact-column-1{
        width: 97.5%;
    }
    .contact-column-2{
        width: 100%;
    }
    .contact-column-1 .brick-canvas-wrap--contact .brick-source-img{
        width: 97.5%;
    }
    .contact-inner{
        gap: 20px
    }
    .line-decor{
        top: 56%;
        width: 97.5%;
    }
}