/* BODY */

html{
    font-size: 10px;
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}
body{
    font-size: 100%;
}
body, input, textarea, select, button{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: none;
    font-family: var(--font), sans-serif;
    font-weight: 400;
    color: var(--color-dark);
}
p{
    text-rendering: optimizeLegibility;
}
strong{
    font-weight: 500;
}
em{
    font-style: italic;
}
input, textarea, select, button{
    border: none;
    outline: none;
    resize: none;
    border-radius: 0;
    background-color: transparent;
    padding: 0;
    margin: 0;
}
input:not([type="checkbox"]):not([type="radio"]), textarea, select, button{
    -webkit-appearance: none;
}

button{
    overflow: visible;
}

a, button{
    color: var(--color-primary);
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    outline: none;
    
    transition:
        color 200ms ease-out,
        background-color 200ms ease-out,
        border 200ms ease-out,
        opacity 200ms ease-out,
        box-shadow 200ms ease-out;
    -webkit-transition:
        color 200ms ease-out,
        background-color 200ms ease-out,
        border 200ms ease-out,
        opacity 200ms ease-out,
        box-shadow 200ms ease-out;
    -moz-transition:
        color 200ms ease-out,
        background-color 200ms ease-out,
        border 200ms ease-out,
        opacity 200ms ease-out,
        box-shadow 200ms ease-out;
    -o-transition:
        color 200ms ease-out,
        background-color 200ms ease-out,
        border 200ms ease-out,
        opacity 200ms ease-out,
        box-shadow 200ms ease-out;
}

img{
    display:inline-block;
    max-width: 100%;
}


/* HIDDENS */

@media (max-width: 767px) {
    .u-hidden\@xs{
        display: none !important;
    }
}
@media (min-width: 768px) and (max-width: 979px) {
    .u-hidden\@sm{
        display: none !important;
    }
}
@media (min-width: 980px) and (max-width: 1199px) {
    .u-hidden\@md{
        display: none !important;
    }
}
@media (min-width: 1200px) {
    .u-hidden\@lg{
        display: none !important;
    }
}



/* ******* MOBILE ******* */

/* GENERAL */

.u-hidden-for-seo{
    position: absolute;
    left: -9999px;
}
.o-scrollable{
    width: 100%;
    height: 100%;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.o-scrollable--x{
    overflow:hidden;
    overflow-x:auto;
}
.u-mask{
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
}



/* STRUCTURE */

.o-wrapper{
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: var(--space-x);
    padding-left: var(--space-x);
}

.o-section{
    padding-top: var(--space-y-lg);
    padding-bottom: var(--space-y-lg);
}
.o-section--t{
    padding-top: var(--space-y-lg);
}
.o-section--b{
    padding-bottom: var(--space-y-lg);
}

.u-tap-size,
.c-btn,
.c-arrow-link{
    position: relative;
}
.u-tap-size:before,
.c-btn:before,
.c-arrow-link:before{
    content: "";
    display: block;
    width: 100%;
    min-width: var(--tap-size);
    height: var(--tap-size);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}



/* ALIGNS */

.o-align-middle:before{
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}
.o-align-middle__aligner{
    display: inline-block;
    vertical-align: middle;
    width: 100%;
}




/* TEXT */

.u-text{
    font-family: var(--font);
    font-size: 1.7rem;
    font-weight: 300;
    line-height: 1.5;
}
strong.u-text{
    font-weight: 500;
}



/* BTNS */

.c-btn{
    display: inline-block;
    padding: 1.15em 3.9em 1.25em;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    background-color: var(--color-cta);
    color: var(--color-lightest);
    text-transform: uppercase;
    border-radius: 5px;
}
.c-btn--outline{
    padding: 15px 52px;
    color: var(--color-primary);
    border: 2px solid currentColor;
    background: none;
}



/* ARROW LINK */

.c-arrow-link{
    display: inline-block;
    font-size: 1.8rem;
    letter-spacing: -0.03em;
}
.c-arrow-link:after{
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 9px;
    height: 9px;
    border: solid currentColor;
    border-width: 2px 2px 0 0;
    transform: rotate(45deg);
    position: relative;
    top: -1px;
    margin-left: 0.3em;
}

.c-arrow-link--white{
    color: var(--color-lightest);
}
.c-arrow-link--secondary{
    color: var(--color-secondary);
}
.c-arrow-link--dark{
    color: var(--color-dark);
}



/* HEADING */

.c-heading__heading{
    font-size: 3.2rem;
    line-height: 1.1;
    font-weight: 300;
}
.c-heading__caption{
    margin-top: 1em;
}

:root .c-heading--margin{
    margin-bottom: 40px;
}



/* PIC */

.c-pic{
    position: relative;
}
.c-pic__pic,
.c-pic__img{
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
}
.c-pic--bg{
    background-color: var(--color-lighter);
}
.c-pic--br{
    overflow: hidden;
    border-radius: 10px;
}





/* ********************** TALL MOBILE PORTRAIT ********************** */

@media (max-width: 767px) and (min-height: 730px){

    /* BTN */
    
    .c-btn--margin{
        margin-top: 64px;
    }



    /* HEADING */
    
    :root .c-heading--margin{
        margin-bottom: 56px;
    }

}

 



/* ********************** MOBILE LANDSCAPE ********************** */

@media (orientation: landscape) and (min-width: 500px) and (max-width: 767px) {

    /* STRUCTURE */
    
    .o-wrapper--xs{
        width: 80%;
    }

    .o-section{
        padding-top: calc( var(--space-y) * 1.5 );
        padding-bottom: calc( var(--space-y) * 1.5 );
    }
    .o-section--t{
        padding-top: calc( var(--space-y) * 1.5 );
    }
    .o-section--b{
        padding-bottom: calc( var(--space-y) * 1.5 );
    }

}





/* ********************** de Mobile a TABLET ********************** */

@media (min-width: 768px) {

    /* STRUCTURE */

    .o-wrapper--xs{
        width: 80%;
        max-width: 770px;
        padding-left: 0;
        padding-right: 0;
    }



    /* HEADING */
    
    .c-heading__heading{
        font-size: 4.2rem;
    }
    :root .c-heading--margin{
        margin-bottom: 48px;
    }

}
@media (min-width: 768px) and (max-width: 979px){
}




/* ********************** de Tablet a DESKTOP ********************** */

@media (min-width: 980px) {

    /* BTN */
    
    .c-btn--margin{
        margin-top: 64px;
    }

    /* Hovers */

    .c-btn{
        overflow: hidden;
    }
    .c-btn span{
        position: relative;
        z-index: 1;
    }
    .c-btn:after{
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        z-index: 0;
        background-color: var(--color-primary);
        border-radius: 5px;
        opacity: 0;
        transform: translate3d(0,101%,0);
        transition:
            transform 400ms var(--easeOutCubic),
            opacity 400ms ease-out;
    }

    .c-btn:not([disabled]):hover,
    .c-btn:focus{
        transition-delay: 0ms;
        transition-duration: 400ms;
    }
    .c-btn:not([disabled]):hover:after,
    .c-btn:focus:after{
        opacity: 1;
        transform: translate3d(0,0,0);
    }

    .c-btn--fill{
        transition:
            background-color 600ms var(--easeOutCubic) 100ms;
    }
    .c-btn--fill:not([disabled]):hover,
    .c-btn--fill:focus{
        background-color: transparent;
        transition-delay: 0ms;
        transition-duration: 400ms;
    }



    /* ARROW LINK */

    /* Hovers */

    .c-arrow-link{
        transform: translate3d(0,0,0);
        transition:
            color 200ms ease-out,
            transform 400ms var(--easeOutCubic);
    }
    .c-arrow-link:after{
        transform: translate3d(0,0,0) rotate(45deg);
        transition:
            border-color 200ms ease-out,
            transform 400ms var(--easeOutCubic);
    }

    .c-arrow-link:hover,
    .c-arrow-link:focus{
        transform: translate3d(16px,0,0);
        color: var(--color-hover);
    }
    .c-arrow-link:hover:after,
    .c-arrow-link:focus:after{
        transform: translate3d(8px,0,0) rotate(45deg);
        border-color: var(--color-hover);
    }

    .c-arrow-link--white:hover,
    .c-arrow-link--white:focus{
        color: var(--color-dark);
    }
    .c-arrow-link--white:hover:after,
    .c-arrow-link--white:focus:after{
        border-color: var(--color-dark);
    }



    /* TEXT */

    .u-text{
        font-size: 1.8rem;
    }



    /* HEADING */
    
    .c-heading__heading{
        font-size: 4.8rem;
    }

}




/* ********************** de Desktop a DESKTOP 2 ********************** */

@media (min-width: 1200px) {

    /* BTN */
    
    .c-btn--margin{
        margin-top: 74px;
    }



    /* HEADING */

    :root .c-heading--margin{
        margin-bottom: 58px;
    }

}
@media (min-width: 1200px) and (min-height: 790px){

    /* BTN */
    
    .c-btn--margin{
        margin-top: 80px;
    }



    /* HEADING */

    :root .c-heading--margin{
        margin-bottom: 70px;
    }
    
}




/* ********************** de Desktop 2 a HD ********************** */

@media (min-width: 1400px) {

    /* HEADING */
    
    .c-heading__heading{
        font-size: 5.6rem;
    }

}
@media (min-width: 1400px) and (min-height: 790px){
}




/* ********************** de Hd a FULL HD ********************** */

@media (min-width: 1600px) {

    /* TEXT */
    
    .u-text{
        font-size: 2rem;
    }

    
    
    /* BTN */
/*     
    .c-btn{
        font-size: 1.6rem;
    } */



    /* ARROW LINK */
    
    .c-arrow-link{
        font-size: 2rem;
    }
    .c-arrow-link:after{
        width: 10px;
        height: 10px;
    }



    /* HEADING */
    
    .c-heading__heading{
        font-size: 6.4rem;
    }
    

}
@media (min-width: 1600px) and (min-height: 790px){
}
@media (min-width: 1600px) and (min-height: 900px){}
@media (min-width: 1800px){}




/* ********************** 4K ********************** */

@media (min-width: 2048px) {
    
    /* TEXT */
    
    .u-text{
        font-size: 2.2rem;
    }



    /* ARROW LINK */
    
    .c-arrow-link{
        font-size: 2.2rem;
    }
    .c-arrow-link:after{
        width: 11px;
        height: 11px;
    }

}

















