/* styles.css */

/* ============ Fonts ============ */

@font-face {
    font-family: 'regular';
    src:  url('../Fonts/Commissioner-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap; 	
}

@font-face {
    font-family: 'regular';
    src:  url('../Fonts/Commissioner-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;    
}

@font-face {
    font-family: 'regular';
    src:  url('../Fonts/Commissioner-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;  
}

/* ============ Design Tokens ============ */
:root {

/* 
  Breakpoints 
    Tablet: 768px
    Desktop: 1600px
*/

  /* Grid */
    --container: 1640px;

  /* Typo: mobile-first Zielwerte
     Mobile: Headline 30px, Copy 20px, Note 17px
     Desktop: Headline 45px
     -> clamp(min, fluid, max)
  */
  --size-headline: clamp(27px, 2.2vw + 18px, 45px);
  --size-copy: clamp(18px, .6vw + 16px, 20px);
  --size-note: 17px;

  --font-regular: 'regular', Arial, sans-serif, Helvetica;

  --lineheight-headline: 1.3;
  --lineheight-copy: 1.5;
  --lineheight-note: 1.4;

  --padding: 2rem 0;
  --radius: 16px;
  --slant: 60px;
  --gap: 0;  
  
  --color-text: #1A1A1A;  
  --color-primary: #00659C;
  --color-accent: #5890BA;
  --color-accent-2: #666;
  --color-gradient: linear-gradient(to bottom, #5890BA, #448BC1);
  --color-light: #fff;
  --color-dark: #e6e6e6;
}


@media (min-width:1600px) {
    :root {
    --padding: 7rem 0;
    --lineheight-copy: 1.8;
    }
}


/* ============ Base ============ */

button,hr,input{overflow:visible}progress,sub,sup{vertical-align:baseline}[type=checkbox],[type=radio],legend{box-sizing:border-box;padding:0}html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}details,main{display:block}hr{box-sizing:content-box;height:0}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:ButtonText dotted 1px}fieldset{padding:.35em .75em .625em}legend{color:inherit;display:table;max-width:100%;white-space:normal}textarea{overflow:auto}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}[hidden],template{display:none}


*,
*::before,
*::after {
  box-sizing: border-box;
}


html {
    scroll-behavior:smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

body {
  font-family: var(--font-regular);
  background: var(--color-light);
  color: var(--color-text);
}

img {
    width: 100%;
    height: auto;
}

h1,h2,h3,h4,h5,h6 {
    font-size: var(--size-headline);
    font-weight: 400;
    margin:0;
    line-height: var(--lineheight-headline);
}

a { color: var(--color-primary); }
a:hover { color: var(--color-accent); }

/* ============ Typography ============ */

.headline {
  letter-spacing: -.02em;
}

p {
  font-size: var(--size-copy);
  line-height: var(--lineheight-copy);
  margin: 1rem 0 0 0;
}

/* ============ Layout: Container + Grid ============ */

.container {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: clamp(1rem, 3vw, 2rem);
}

.row {
  display: grid;
  gap: var(--gap);
  grid-template-columns: 1fr;

  /* Tablet: 4 columns */
  @media (min-width: 768px) {
    grid-template-columns: repeat(4, [col-start] 1fr);
  }

  /* Desktop: 12 columns */
  @media (min-width: 1600px) {
    grid-template-columns: repeat(12, [col-start] 1fr);
  }
}

section,
footer {

    .col,.col-lg-6, .col-12 {
        min-width: 0;
        grid-column: 1 / -1;
    }
    
    @media (min-width: 768px) {
        .col-lg-6  { grid-column:col-start 1 / span 2; }
        .col-lg-6 + .col-lg-6 { grid-column:col-start 3 / span 2; }
    }
    
    @media (min-width: 1600px) {
        .col-lg-6  { grid-column:col-start 1 / span 6; }
        .col-lg-6 + .col-lg-6 { grid-column:col-start 7 / span 6; }
    }    

    &#claim {
        @media (min-width: 1600px) {
            .col { grid-column:col-start 2 / span 10; }
        }
    }

    &#intro {
        @media (min-width: 768px) {
            .col { grid-column:col-start 1 / span 2; }
            .col-image { grid-column:col-start 3 / span 2; }
        }
        @media (min-width: 1600px) {
            .col { grid-column:col-start 1 / span 5; }
            .col-image { grid-column:col-start 7 / span 5; }
        }
    }
    
    &#services {
        @media (min-width: 768px) {            
            .col-products { grid-column:col-start 1 / span 2; }
            .col-cleaning { grid-column:col-start 3 / span 2; }
        }
        @media (min-width: 1600px) {
            .col { grid-column:col-start 2 / span 10; }
            .col-products { grid-column:col-start 2 / span 5; }
            .col-cleaning { grid-column:col-start 8 / span 4; }
            
            .col-claim { grid-column:col-start 2 / span 5; }
            .col-contact { grid-column:col-start 8 / span 4; }
        }
    }

    &#about {
        @media (min-width: 768px) {
            .col { grid-column:col-start 3 / span 2; order: 2; }
            .col-vita { grid-column:col-start 1 / span 2; order: 1; }
        }
        @media (min-width: 1600px) {
            .col { grid-column:col-start 8 / span 5; order: 2;}
            .col-vita { grid-column:col-start 2 / span 4; order: 1; }
        }
    }

    &#kontakt {
        @media (min-width: 768px) {
            .col { grid-column:col-start 2 / span 2; }
        }
        @media (min-width: 1600px) {
            .col { grid-column:col-start 2 / span 5;}
            .col-signe { grid-column:col-start 8 / span 1; }
            .col-address { grid-column:col-start 9 / span 4; }            
        }
    }
}

/* Imprint */
body.p4 section {
    @media (min-width: 1600px) {
        .col-lg-6  { grid-column:col-start 1 / span 3; }
        .col-lg-6 + .col-lg-6 { grid-column:col-start 5 / span 8; }
    }
}

footer {
    @media (min-width: 768px) {
        .col { grid-column:col-start 1 / span 2; }
        .col-legal { grid-column:col-start 3 / span 2; }
    }
    @media (min-width: 1600px) {
        .col { grid-column:col-start 1 / span 6; }
        .col-legal { grid-column:col-start 7 / span 6; }          
    }
}

/* ============ Layout: Design ============ */

.skip-link {
    position: absolute;
    inset-block-start: 0;
    inset-inline-start: 0;
    transform: translateY(-100%);
    background: black;
    color: #fff;
    padding: .5rem 1rem;
    z-index: 1000;
    &:focus {
        transform: translateY(0);
    }
}

.visually-hidden {
    position: absolute;
    clip-path: inset(50%);
    width: 1px;
    height: 1px;
    overflow: hidden;
    white-space: nowrap;
}

div.data-more {
    @media (max-width: 767px) {
        position: absolute;
        clip-path: inset(50%);
        width: 1px;
        height: 1px;
        overflow: hidden;
        white-space: nowrap;
    }
}

div.data-more.show {
    position: static;
    width: auto;
    height: auto;
    overflow: initial;
    white-space: normal;
    clip-path: none;
}

.btn-primary {

    font-weight: 600;
    text-decoration: none;
    display: block;
    width: fit-content;
    margin-inline: auto;
    padding: 1rem 2rem;
    background: var(--color-primary);
    color: var(--color-light);
    border: 3px solid var(--color-primary);
    border-radius: 30px;
    line-height: 1;
    
    &.data-more::before {
        content: attr(data-content);
    }
    &:hover {
        color: var(--color-primary);
        background: transparent;
    }
    
    @media (min-width: 1600px) {
        font-size: var(--size-copy);        
    }
}

@media (min-width: 768px) {
    a.data-more { display: none; }
}


header {    
    .logo { 
        max-width: 200px;
        margin: 1rem 0 .5rem 0;
        @media (min-width:768px) {
            max-width: 300px;
            }
        }

    .contact-fixed {
        position: fixed;
        top: 1rem;
        @media (min-width:768px) {
            top: 2rem;
        } 
        @media (min-width:1600px) {
            top: 1rem;
        }           
        left: 0;
        right: 0;
        pointer-events: none;
        z-index: 2;
        .contact-fixed-inner {
            display: flex;
            justify-content: flex-end;
        }
    }
    
    @media (min-width: 1800px) {
        .contact-icon {
            transform: translateX(min(8rem, calc((100vw - var(--container)) / 2)));
        }
    }    

    .contact-icon {
        display: inline-block;
        width: 50px;
        height: 50px;
        border-radius: 100%;
        border: 2px solid var(--color-primary);
        background: var(--color-primary);
        color: var(--color-light);
        padding: .6rem .4rem 0 .4rem;
        pointer-events: initial;
        &:hover {
            color: var(--color-primary);
            background: var(--color-light);
        }
        @media (min-width: 1600px) {
            width: 80px;
            height: 80px;
            border-width: 3px;
            padding: 1.1rem .75rem 0 .75rem;            
        }        
    }
}

section {
    padding: var(--padding);
    line-height: 0;
}

body:not(.p1) main ol, ul {
    line-height: 1;
}

body:not(.p1) main ul {
    margin:0 0 0 1.5rem;
    padding:0;
    list-style: none;
}

body:not(.p1) main li {
    font-size: var(--size-copy);
    line-height: var(--lineheight-copy);
    margin: .5rem 0 0 0;
    &:first-of-type { margin-top: 0; }
}

body:not(.p1) main ul li {
    line-height: var(--lineheight-copy);
    font-size: var(--size-copy);
    margin: 0 0 0 1rem;
    &:first-of-type { margin-top: 1rem; }
    &::before {
        content: '– ';
        color: var(--color-primary);
        transform: translateX(-1rem);
        display: inline-block;
        position: absolute;
    }
}

p.headline {
    font-weight: 600;
}

.matomo {
    background: var(--color-primary);
    padding: .5rem 1rem .5rem 4rem;
    margin-top: 2rem;
    color: var(--color-light);
    border-radius: 9px;
    font-size: var(--size-copy);
    position: relative;
    line-height: var(--lineheight-copy);
    input {
        transform: scale(2);
        position: absolute;
        top: 1.25rem;
        left: 1.5rem;
    }
    strong {
        font-weight: 300;
    }
}

#hero {
    line-height: 0;
    position: relative;
    padding: 0;

    .grid {
        display: flex;
        gap: var(--gap);
        width: 100%;
        overflow: hidden;
        position: relative;
        margin: 0;             
        background:linear-gradient(180deg,rgba(7, 93, 141, 1) 0%, rgba(60, 134, 181, 1) 25%, rgba(60, 134, 181, 1) 50%, rgba(7, 93, 141, 1) 100%);
    }
    .left-side, 
    .right-side {
        flex: 1;
        height: 100%;
        overflow: hidden;
        position: relative;
        pointer-events: none;
        @media (min-width: 1440px) {
            pointer-events: initial;
        }
        div.sector {
            position: absolute; 
            bottom: 6rem;
            z-index: 1;
            width: 50%;
            -webkit-transition: transform .6s ease-out;
            transition: transform .6s ease-out;   
            pointer-events:none;
            div {
                position: relative;
                line-height: 1;
                color: var(--color-light);
            }
            img {
                position: absolute;
                transform: rotate(-30deg) translate(-3.5rem, -6rem);
                max-width: 180px;
            }
            strong {
                font-size: 30px;
                font-weight: 400;
                line-height: 1;
                text-transform: uppercase;
                span { display: block; }
            }
            p {
                font-size: var(--size-note);
                line-height: var(--lineheight-note);
            }            
        }
        img.hero {
            width: calc(200% - var(--slant));
        }
        
    }
    .left-side {
        clip-path: polygon(
            0 0,
            100% 0,
            calc(100% - var(--slant)) 100%,
            0 100%
        );
        
        div.sector {
            transform: translateX(-100vw);
        }
        &:hover div.sector {
        transform: translateX(11rem);
        }
    }
    .right-side {
        margin-left: calc(-1 * var(--slant));
        
        clip-path: polygon(
            var(--slant) 0,
            100% 0,
            100% 100%,
            0 100%
        );
        .hero {
            transform: translateX(calc(-50% + var(--slant)/2));
        }
        div.sector {
            max-width:430px;
            transform: translate(10rem, 100vh);
            img {
                transform: rotate(-22deg) translate(-3.25rem, -5.5rem);
            }
            p { margin-bottom: 1rem; }
        }
        &:hover div.sector {
            transform: translate(10rem, 0);
        }        
    }
    .hero-stripes {
        position: absolute;
        z-index: 1;
        bottom: -1px;
        width: 100%;
        pointer-events: none;
    }
}

#claim {
    text-align: center;
    
    @media (min-width: 768px) {
        padding: 4rem 0 5rem;
    }
    @media (min-width: 1600px) {
        padding: var(--padding);
        text-align: left;
    }
    h2 {
        color: var(--color-primary);
        @media (min-width: 1600px) {
            font-size: 60px;
        }
    }
    span:not(.dot) {
        @media (max-width: 767px) {
        display: block; 
        }
    }
    span.dot {
        display: inline-block;
        font-size:0;
        border: 2px solid var(--color-primary);
        width: 6px;
        height: 6px;
        border-radius: 100%;
        margin: 0 0 0 .25rem;
        transform: translateY(-.2rem);
    }
    p {
        color: var(--color-accent-2);
        @media (min-width: 1600px) {
            font-size: 30px;
        }        
    }
}

#intro {
    background: var(--color-dark);
    padding: 0; 
    @media (min-width: 1600px) {
        overflow: hidden;        
    }
    .container {
        padding-inline: 0;
        @media (min-width: 1600px) {
            width: 100%;
            .row {
                display: block;
                position: relative;                
            }
        }
    }
    
    .col-about {
        padding-inline: clamp(1rem, 3vw, 2rem);
        padding-top: 2rem;
        h2 {
            text-align: center;
            @media (min-width: 768px) {
                text-align: left;
            }
        }
        @media (min-width: 1600px) {
            display: grid;
            grid-template-columns: repeat(12, [col-start] 1fr);
            width: min(100%, var(--container));
            margin-inline: auto;
            padding-inline: 0;
            padding: var(--padding);
            padding-bottom: 0;
            
            h2, div.data-more {
                grid-column: col-start 2 / span 5;
                padding-inline: clamp(1rem, 3vw, 2rem);
            }
            div.data-more {
                margin-top: 1rem;
            }
        }        
    }    


    .col-image {
        display: grid;
        align-items: center;
        pointer-events: none;
        @media (min-width: 768px) {
            img { clip-path: polygon( var(--slant) 0, 100% 0, 100% 100%, 0 100% ); }

        }
        @media (min-width: 1600px) {
            position: absolute;
            top: 0;
            width: 100%;
            max-width: 1920px;
            left: 50%;
            transform: translateX(-50%);
         
            .image  {
                display: grid;
                grid-template-columns: repeat(12, [col-start] 1fr);
                width: 100%;
                div {
                    grid-column: col-start 7 / span 6;        
                    img {
                        max-width: 816px;
                        float: right;
                    }
                }
            }
            .stripe-divider {
                position: absolute;
                height: 50px;
                bottom: 0;
                width: 100%;                
                span {
                    display:block;
                    background: url('../Images/bar.svg') no-repeat;
                    background-position: 8px 0;
                    height: 100%;
                }
            }
        }        
    }
    
    h2 {
        @media (min-width: 1080px) {
            span { display: block; }
        }
    }
    a{
        margin: 2rem auto;
        @media (min-width: 768px) {
            margin: 3rem 0 5rem;
        }
    }
    p { font-weight: 300; }
}

#services {

    .col-clients {
        p { margin: 0; }
        @media (min-width:768px) {
            position: absolute;
            clip-path: inset(50%);
            width: 1px;
            height: 1px;
            overflow: hidden;
            white-space: nowrap;
        }        
    }

    .accordion {
        margin: 2rem 0;
    }
    .accordion-item {
        border: 0 solid var(--color-accent-2);
        border-width: 0 0 1px 0;
        padding: .5rem 0;
        &:first-of-type { border-top-width: 1px;}
        @media (min-width:768px) {
            border: 0;
            padding: 0;
            
            div[data-content]::after {
                content: attr(data-content);
                font-size: var(--size-copy);
                font-weight: 300;
                white-space: nowrap;
                display: block;
                margin: 2rem 0;
                @media (min-width:1600px) {
                    margin: 3rem 0 3rem;
                }
            }
        }
    }
    .accordion-header {
        color: var(--color-primary);
        span { display: block; }
        position: relative;
        svg {
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 2rem;
            height: 2rem;
            background: var(--color-primary);
            color: var(--color-light);            
            line-height:0;
            border-radius: 100%;
            padding: .5rem;
        }

        &::before {
            @media (min-width:1600px) {
                content: url('../Images/3S_arrow-blue.svg');
                position: absolute;
                left:-5rem;
                top:-2.7rem;
            }
        }
        
        @media (min-width:768px) {
            color: var(--color-text);
            font-size: 30px;
            svg { display: none; }
        }
        @media (min-width:1200px) {
            font-size: var(--size-headline);
        }
    }
    
    .accordion-item + .accordion-item .accordion-content {
        @media (min-width:768px) {
            margin-top: 4rem;
        }
        @media (min-width:1600px) {
            margin-top: 6rem;
        }
    }
    
    ul,li {
        margin:0;
        padding:0;
        list-style: none;
    }
    
    li {
        line-height: var(--lineheight-copy);
        font-size: var(--size-copy);
        font-weight: 300;
        margin: .5rem 0 0 0;
        @media (min-width:1600px) {
            margin: 1rem 0 0 0;
        }
        padding: 0 0 0 1rem;
        &::before {
            content: '– ';
            color: var(--color-primary);
            transform: translateX(-1rem);
            display: inline-block;
            position: absolute;
        }
    }

    .accordion-content,    
    .col-contact {
        display: none;
        @media (min-width:768px) {
            display: block;
        }
    }

    .accordion-item.is-open {
        svg { display: none; }
        .accordion-content {
            display: block;
        }
    }

    .col-claim {

        @media (min-width:768px) {
            h3 { font-size: 30px; }
            margin: 2rem auto;
            text-align: center;
        }
        @media (min-width: 1600px) {
            h3 { font-size: var(--size-headline); }
            margin: 4rem 0 0;
            text-align: left;
        }
    }
    
    .col-contact {
        @media (min-width:768px) {
            margin-bottom: 3rem;
        }
        @media (min-width:1600px) {
            margin-bottom: 0;
            a {
                 margin: 4rem 0 0 0;
            }
        }        
    }
}

#about {
    background: var(--color-gradient);
    color: var(--color-light);
    overflow: hidden;

    a{
        margin: 2rem auto 0 auto;
    }
    
    p,li {
        font-weight: 300;    
    }
    
    ul,li {
        margin:0;
        padding:0;
        list-style: none;
    }
    
    ul {
        margin-top: 1rem;
    }
    
    li {
        line-height: var(--lineheight-copy);
        margin: .5rem 0 0 0;
        @media (min-width: 1600px) {
            line-height: var(--lineheight-note);
        }
    }
    
    @media (min-width: 1600px) {
        h2, h3 { line-height: 1; }
        
        h2 { margin-bottom: 2.5rem; }
    }
    
    .col-vita  {
        margin-top: 2rem;      
        .vita { margin-top: 2rem; }               
        
        @media (min-width:768px) {
            margin: 0;
            color: var(--color-light);
            padding: var(--padding);
            padding-right: 4rem;
            position: relative;
            &::after {
                content: '';
                width: 5rem;
                height: 101%;
                position: absolute;
                top: -1px;
                right: 0rem;
                background: var(--color-dark);
                clip-path: polygon( var(--slant) 0, 100% 0, 100% 100%, 0 100% );
            }            
            .vita { 
                max-width: 455px;
                margin: 0;
                font-size: var(--size-note);                
                p { font-size: var(--size-note); }    
                h3 { font-size: 30px; }
            }
            .vita + .vita { margin-top: 2rem; }
            p {line-height: 1.5;}
                
                
        }
        @media (min-width: 1600px) {          
            padding-left: 3rem;
            @media (min-width: 1800px) {
                padding-left: 0;
            }
            padding-bottom: 5rem;

            .vita { 
                margin: 0 0 2rem;
                h3 { font-size:  35px }
            }
            .vita + .vita { margin-top: 4rem; }
            &::after {
                width: 7rem;
                right: -9rem;
            }
            .stripe-divider {
                position: absolute;
                height: 50px;
                top: 0;
                width: 100%;  
                right:-5.25rem;
                span {
                    display:block;
                    background: url('../Images/bar.svg') no-repeat;
                    height: 100%;
                }
            }            
        }
    }
    .col-about {
        @media (min-width: 768px) {
            padding: var(--padding);
        }
    }
    
    @media (min-width: 768px) {
        padding: 0;
        background: var(--color-light);
        background: linear-gradient(90deg, rgba(88, 144, 186, 1) 0%, rgba(88, 144, 186, 1) 50%, rgba(230, 230, 230, 1) 50%, rgba(230, 230, 230, 1) 100%);
        color: var(--color-text);        
    }       
    
    @media (min-width: 1600px) {
        background: var(--color-light);
        background: linear-gradient(90deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 9%, rgba(88, 144, 186, 1) 9%, rgba(88, 144, 186, 1) 50%, rgba(230, 230, 230, 1) 50%, rgba(230, 230, 230, 1) 100%);     
    }    
}

#kontakt {
     
    @media (min-width: 768px) {
        padding: 4rem 0 5rem;
    }      
    
    h2 { color: var(--color-primary);}

    ul, li {
        list-style: none;
        margin:0;
        padding:0;
    }
    
    @media (min-width:1600px) {
        padding: var(--padding);
        ul { margin-top: 2rem; }
        li + li { margin-top: 1.25rem; }
    }
    
    a { margin-top: 2rem ; }
    
    
    .col-invoice {
        @media (min-width:1600px) {
            padding-right: 5rem;
        }
    }
        
    .col-signe {
        text-align: center;
        margin-top: 1rem;
        @media (min-width:1600px) {
            margin:0;
        }
        img { 
            max-width: 120px; 
            margin-top: 2rem;
            }
    }
    
    p {
        @media (min-width:768px) {
            font-weight: 300;
        }
    }
    
    
    a.btn-primary {
        @media (min-width:1600px) {
            background: none;
            padding: 0;
            margin-inline: 0;
            margin-top: 1rem;
            border:0;
            color: var(--color-primary);
            font-size: 25px;
            font-weight: 600;
            &:hover { 
                text-decoration: underline; 
                color: var(--color-accent);
                }
        }        
    }
    
    address {
        font-style: normal;
        font-size: var(--size-copy);
        margin-top: 1rem;
        p { margin: 0; }
        p.strong {             
            font-weight: 600;
            text-transform: uppercase;
            span {
                display: block;
                @media (min-width: 400px) {
                    display: inline;
                }                
            }
            @media (min-width: 1600px) {
                font-size: 23px;
                font-weight: 400;
            }
        }
        text-align: center;
        line-height: var(--lineheight-copy);
        @media (min-width: 1600px) {
            text-align: left;
            font-weight: 300;
            margin: 2rem 0 0 2rem;
        }
    }
}

footer {
    background: var(--color-dark);
    padding: 1rem 0;
    @media (min-width: 768px) {
        padding: 1rem 0 .5rem;
    }        
    @media (min-width: 1600px) {
        padding: 4rem 0 .5rem 0;
    }    
    
    a {
        color: var(--color-accent-2);
        text-transform: uppercase;
        text-decoration: none;
        &:hover { text-decoration: underline; }
        font-size: var(--size-note);
    }
    text-align: center;
    ul { 
        list-style: none; 
        display: flex;
        @media (min-width: 768px) {
            display: block;
        }
        gap: 2rem;
        padding: 0;
        }
    li { 
        display: inline-block; 
        flex: 1;
        padding:0;
        text-align: right;
        }
    li + li { 
        text-align: left; 
        @media (min-width: 768px) {
            margin-left: 2rem;
        }
    }
    
    .col-company { 
        display: none; 
        text-transform: uppercase;
        p {
            font-size: var(--size-note);
            color: var(--color-accent-2);
            line-height: 1;
            margin: 1rem 0 0;
        }
        @media (min-width: 768px) {
            display: block;
        }
    }
    
    @media (min-width: 768px) {
        text-align: left;
        .col-legal { text-align: right; }
    }
    @media (min-width: 1600px) {
        
    }
}

.toTop {
    bottom: 0;
    transform: translateY(5rem);
    position: fixed;
    bottom: 1rem;
    right: 0;
    -webkit-transition: transform .6s ease-out;
    transition: transform .6s ease-out;
}
@media (min-width: 375px) {
.down .toTop { display: block; transform: translateY(1rem); }
.down.scroll-end .toTop { transform: translateY(.5rem); }
}

@media (min-width: 769px) {
.down.scroll-end .toTop { transform: translateY(-3rem); }
}

@media (min-width: 1710px) {
    .toTop { right: 1rem; }
    .down.scroll-end .toTop { transform: translateY(1rem); }
}

/* ==========================================================================
   ANIMATE
   ========================================================================== */

.move {
    position: relative;
    -webkit-transition: transform 1s ease-out;     
    transition: transform 1s ease-out;
}

/* LEFT */
.move.left {
    transform: translateX(-10rem);
}
.move.left.isVisible {
    transform: translateX(0);
}

/* RIGHT */
.move.right {
    transform: translateX(10rem);
}
.move.right.isVisible {
    transform: translateX(0);
}

/* UP */
.move.up {
    transform: translateY(10rem);
}
.move.up.isVisible {
    transform: translateY(0);
}

/* DOWN */
.move.down {
    transform: translateY(-10rem);
}
.move.down.isVisible {
    transform: translateY(0);
}