@import url("main.css");

@media 
(min-width: 672px) 
and (max-width: 990px) {
    footer {
        position: relative;
        top: 5rem;
        width: 100%;
        height: 20rem;
        border-top: 1px solid rgba(173, 173, 173, 0.25);
        background-color: var(--page-white);
    }
    
    footer .col {
        position: relative;
        float: left;
        top: 0;
        width: 32%;
        height: 17rem;
        text-align: center;
    
        /* border: 1px solid black; */
    }
    
    footer .address {
        margin-left: .25%;
        margin-right: 1.5%;
    }
    
    footer .contact {
        margin-right: 1.5%;
    }
    
    footer .col-headline {
        position: relative;
        top: 1rem;
        text-align: center;
        font-size: 1.7rem;
        font-weight: 500;
        color: var(--primary);
    }
    
    footer .line {
        position: absolute;
        top: 2rem;
        width: 2px;
        height: 14rem;
        background-color: rgba(173, 173, 173, 0.25);
    }
    
    footer .line-1 { left: 33%;}
    
    footer .line-2 { left: 66.66%;}
    
    footer .address .name {
        position: relative;
        top: 2rem;
        font-size: 1.5rem;
    }
    
    footer .address .adresse {
        position: relative;
        top: 3rem;
    }
    
    footer .address .location-link {
        position: relative;
        top: 5rem;
        font-size: 1.2rem;
        padding-top: 12px;
        padding-left: 17px;
        padding-right: 22px;
        padding-bottom: 12px;
        background-color: var(--primary);
        color: var(--page-white);
        text-decoration: none;
        border-radius: 7px;
        transition: .3s ease;
    }
    
    footer .address .location-link i {
        margin-right: .3rem;
        padding: .3rem;
        padding-left: .4rem;
        padding-right: .4rem;
        border-radius: 100%;
        background-color: var(--primary-dark);
    }
    
    footer .address .location-link:hover {
        cursor: pointer;
        background-color: var(--primary-dark);
        box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    }
    
    footer .contact .contact-btn {
        position: relative;
        top: 5rem;
        padding-top: 12px;
        padding-left: 10px;
        padding-right: 20px;
        padding-bottom: 12px;
        background-color: var(--primary);
        color: var(--page-white);
        border-radius: 7px;
        text-decoration: none;
        font-size: .9rem;
        transition: .3s ease;
    }
    
    footer .contact .contact-btn:hover {
        cursor: pointer;
        background-color: var(--primary-dark);
        box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    }
    
    footer .contact .contact-btn i {
        margin-right: .3rem;
        padding: .3rem;
        padding-left: .4rem;
        padding-right: .4rem;
        border-radius: 100%;
        background-color: var(--primary-dark);
    }
    
    footer .contact .email-btn { display: none;}

    footer .contact .email-btn-tablet {
        display: initial;
        top: 6.5rem;
    }
    
    footer .sitemap a {
        position: relative;
        top: 2rem;
        line-height: 1.7rem;
        font-size: 1.2rem;
        color: var(--text-grey);
        transition: .2s ease;
    }
    
    footer .sitemap a:hover {
        cursor: pointer;
        color: var(--primary);
    }
    
    footer .sec-footer {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2.5rem;
        background-color: var(--primary);
        color: var(--page-white);
        text-align: center;
        line-height: 2.5rem;
        font-size: .9rem;
    }
    
    footer .sec-footer a {
        position: relative;
        top: .1rem;
        left: .2rem;
        text-decoration: none;
        font-size: 1.1rem;
        font-weight: 500;
        color: var(--page-white);
        transition: .3s ease;
        line-height: 2.5rem;
    }
    
    footer .sec-footer a:hover {
        text-decoration: underline;
    }
    
    footer .sec-footer a i {
        margin-left: .3rem;
    }
    
    footer .sec-footer .legal-links {
        position: absolute;
        top: -.1rem;
        right: .5rem;
        z-index: 450;
    }
    
    footer .sec-footer .legal-links a {
        margin-left: .1rem;
        margin-right: .5rem;
        font-size: .8rem;
    }
}