:root {
    --content-side-padding: 1.4rem;
    --paragraph-font-size: 1rem;
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    font-size: 20px; /* html font size affects everything! */
    scroll-behavior: auto !important; /* jQuery scroll script has conflict with scroll-behavior: smooth in _reboot.scss. Override it with css. */
}

body {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    line-height: 1.3;
    color: #000;
    width: 100%;
}

h1, h2, h3, h4, h5 {
    font-weight: 700;
    font-style: normal;
}

h1 {
    font-size: 1.25rem;
    line-height: 1;
    text-transform: uppercase;
}

h2 {
    font-size: 1.25rem;
    text-transform: uppercase;
}

h3 {
    font-size: 1.1rem;
}

h4 {
    font-size: 1.1rem;
}

p, li, a {
    font-size: var(--paragraph-font-size);
}

p {
    line-height: inherit;
}

b, strong {
    font-weight: 700;
}

a {
    color: blue;
}

a:hover {
    color: green;
    text-decoration: underline;
}

a.raquo:after {
    content: "\00BB";
    display: inline-block;
    vertical-align: baseline;
    margin-left: 0.4em;
}

.btn {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    padding-left: 2rem;
    padding-right: 2rem;
}

svg.icon {
    display: block;
    width: 2.5rem;
    height: 2.5rem;
}

[data-action] {
    cursor: pointer;
}

.nobr { white-space: nowrap; }
.show-mob { display: none; }
.fullscreen {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

main, video, img { display: block; }
small { font-size: 80%; }
svg { pointer-events: none; }

main {
    z-index: 2;
    position: relative;
    width: 100%;
    overflow: hidden;
}

section {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.wrapper {
    position: relative;
    width: 100%; max-width: 60rem;
    box-sizing: border-box;
    margin: 0 auto;
}

.padding {
    padding: 1.5rem var(--content-side-padding);
}

.padding-bottom-0 {
    padding-bottom: 0;
}

.padding-top-0 {
    padding-top: 0;
}

.text-wrap {
    display: block;
}

.centered-text-wrap {
    display: block;
    margin: 0 auto;
}

.img-col img,
img.section-img { position: relative; display: block; width: 100%; }


/*
    VIDEO CONTAINER
*/
.video-container {
    position: relative;
    width: 100%;
}

.video-container video {
    display: block;
    width: 100%;
    height: auto;
}

.video-container .loader {
    opacity: 1;
    position: absolute;
    pointer-events: none;
    z-index: 2;
    width: 100%;
    height: 100%;
    top: 0;
    background-image: url('../images/2025/loader.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 4rem;
    background-color: rgba(0, 0, 0, 0.8);
    
    -webkit-transition:     opacity 0.3s ease;
    -ms-transition:         opacity 0.3s ease;
    transition:             opacity 0.3s ease;
}

.video-container.loaded .loader { pointer-events: none; opacity: 0; }

.video-container .poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: cover;

    -webkit-transition:     opacity 0s ease;
    -ms-transition:         opacity 0s ease;
    transition:             opacity 0s ease;
}

.video-container.started .poster { pointer-events: none; opacity: 0; }

.video-container .control {
    z-index: 3;
    opacity: 1;
    position: absolute;
    width: 4rem; height: 4rem;
    cursor: pointer;

    -webkit-transition: opacity 0.3s ease;
    -ms-transition:     opacity 0.3s ease;
    transition:         opacity 0.3s ease;
}

.video-container .control.play {
    pointer-events: none;
    top: 50%; left: 50%;
    margin: 0 auto;

    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}

.video-container:not(.loaded) .control.play,
.video-container.playing .control.play {
    opacity: 0;
}

.video-container .control.soundoff,
.video-container .control.soundon {
    opacity: 0; pointer-events: none;
    top: 0em; right: 0em;
    width: 5em; height: 5em;
    padding: 1.5em;
}

.video-container[data-muted="1"].playing .control.soundoff,
.video-container[data-muted="0"].playing .control.soundon { opacity: 1; pointer-events: auto; }

.video-container .control svg {
    pointer-events: none;
    width: 100%;
    height: 100%;
    fill: white;
}

.video-container .control.play svg {
    -webkit-transform:  scale(1);
    -ms-transform:      scale(1);
    transform:          scale(1);

    -webkit-transition: transform 0.3s ease;
    -ms-transition:     transform 0.3s ease;
    transition:         transform 0.3s ease;
}

.video-container:not(.loaded) .control.play svg,
.video-container.playing .control.play svg {
    -webkit-transform:  scale(2);
    -ms-transform:      scale(2);
    transform:          scale(2);
}


/*
    PARALLAX
*/
.parallax-img {
    position: relative;
    width: 100%;
    background-size: cover;
    background-position: center;
    will-change: transform;

    -webkit-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);

    -webkit-transition: transform 0.5s cubic-bezier(0.2, 0.6, 0.4, 1);
        -ms-transition: transform 0.5s cubic-bezier(0.2, 0.6, 0.4, 1);
            transition: transform 0.5s cubic-bezier(0.2, 0.6, 0.4, 1);
}

img.parallax-img { display: block; }

div.parallax-img:after {
    content: "";
    width: 100%;
    display: block;
}

.parallax-bg {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-bottom: 40%;
}

.parallax-bg .wrap {
    z-index: 1;
    position: absolute;
    top: 50%;
    left: 50%;

    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}

.parallax-bg .parallax-img {
    position: absolute;
    display: block;
    width: 100%;
    top: 0;
    left: 0;
}

.parallax-bg-1 .parallax-img { margin-top: -10%; }
.parallax-bg-2 .parallax-img { margin-top: -10%; }
.parallax-bg-3 .parallax-img { margin-top: -10%; }


/*
    REVEALS
*/
.reveal-on-scroll .reveal-text,
.reveal-on-scroll .reveal-image,
.reveal-on-scroll.reveal-text,
.reveal-on-scroll.reveal-image {
  opacity: 0;

    -webkit-transition: transform 2s ease, opacity 1s ease;
        -ms-transition: transform 2s ease, opacity 1s ease;
            transition: transform 2s ease, opacity 1s ease;
    
    -webkit-transition-delay: 0.1s;
        -ms-transition-delay: 0.1s;
            transition-delay: 0.1s;
}

.reveal-on-scroll .reveal-text,
.reveal-on-scroll.reveal-text {
-webkit-transform: translateY(5rem);
    -ms-transform: translateY(5rem);
        transform: translateY(5rem);
}

.reveal-on-scroll.reveal .reveal-text,
.reveal-on-scroll.reveal-text.reveal {
    opacity: 1;

    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
}

.reveal-on-scroll.reveal .reveal-image,
.reveal-on-scroll.reveal-image .reveal { opacity: 1; }




/*
   FOOTER
*/
footer {
    z-index: 1;
    display: block;
    position: relative;
}