/*
 * Copyright 2020 Adobe. All rights reserved.
 * This file is licensed to you under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License. You may obtain a copy
 * of the License at http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under
 * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
 * OF ANY KIND, either express or implied. See the License for the specific language
 * governing permissions and limitations under the License.
 */

:root {
    /* eggs unimedia corporate colors */
    --eggs-yellow: #fab900;           /* Primary Yellow (Y) */
    --eggs-dark-gray: #28262c;        /* Dark Gray (K1) */
    --eggs-medium-gray: #575d5e;      /* Medium Gray (K3) */
    --eggs-light-gray: #bebebe;       /* Light Gray (K5) */
    --eggs-background-gray: #f4f4f4;  /* Background Gray (K6) */
    --eggs-white: #fff;            /* White */
    --eggs-pink: #f3a5c8;             /* Pink accent */
    
    /* color mappings */
    --background-color: var(--eggs-background-gray);
    --light-color: var(--eggs-white);
    --dark-color: var(--eggs-medium-gray);
    --text-color: var(--eggs-dark-gray);
    --link-color: var(--eggs-yellow);
    --link-hover-color: var(--eggs-dark-gray);

    /* fonts */
    --body-font-family: "AdobeClean", "Helvetica Neue", helvetica, arial, sans-serif;
    --heading-font-family: "Burns", "AdobeClean", helvetica, arial, sans-serif;

    /* body sizes */
    --body-font-size-m: 1.6rem;
    --body-font-size-s: 19px;
    --body-font-size-xs: 17px;

    /* heading sizes */
    --heading-font-size-xxl: 55px;
    --heading-font-size-xl: 44px;
    --heading-font-size-l: 34px;
    --heading-font-size-m: 27px;
    --heading-font-size-s: 24px;
    --heading-font-size-xs: 22px;

    /* nav height */
    --nav-height: 64px;
}

/* fallback fonts */
@font-face {
    font-family: roboto-condensed-fallback;
    size-adjust: 88.82%;
    src: local('Arial');
}

@font-face {
    font-family: roboto-fallback;
    size-adjust: 99.529%;
    src: local('Arial');
}

@media (width >= 900px) {
    :root {
        /* body sizes */
        --body-font-size-m: 1.6rem;
        --body-font-size-s: 16px;
        --body-font-size-xs: 14px;

        /* heading sizes */
        --heading-font-size-xxl: 45px;
        --heading-font-size-xl: 36px;
        --heading-font-size-l: 28px;
        --heading-font-size-m: 22px;
        --heading-font-size-s: 20px;
        --heading-font-size-xs: 18px;
    }
}

html {
    font-family: sans-serif;
    font-size: 62.5%;
    min-height: 100%
}

body {
    display: none;
    margin: 0;
    background-color: var(--background-color);
    height: 100%;
    overflow-x: hidden;
    position: relative;
    color: var(--text-color);
    font-family: var(--body-font-family);
    font-size: var(--body-font-size-m);
    font-style: normal;
    font-weight: 400;
    line-height: 1.75;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased
}



body.appear {
    display: block;
}

header .header,
footer .footer {
    visibility: hidden;
}

header .header[data-block-status="loaded"],
footer .footer[data-block-status="loaded"] {
    visibility: visible;
}

@media screen and (width >= 768px) and (width <= 1199px) {
    header {
        background-color: var(--eggs-dark-gray);
        height: 7rem;
    }
}

@media screen and (width >= 1200px) {
    header {
        background-color: var(--eggs-dark-gray);
        height: 8rem;
    }
}

@media screen and (width >= 768px) {
    h1 {
        font-size: 35px;
        font-size: 3.5rem;
        margin-bottom: 12px;
        margin-bottom: 1.2rem;
        line-height: 44px;
        line-height: 4.4rem
    }

    h2 {
        font-size: 28px;
        font-size: 2.8rem;
        margin-bottom: 10px;
        margin-bottom: 1rem;
        line-height: 32px;
        line-height: 3.2rem
    }

    h3, h3.title, h4, h5, h6 {
        font-size: 26px;
        font-size: 2.6rem;
        margin-bottom: 8px;
        margin-bottom: .8rem;
        line-height: 30px;
        line-height: 3rem
    }

    h3.title, h4, h5, h6 {
        font-size: 18px;
        font-size: 1.8rem;
        line-height: 22px;
        line-height: 2.2rem
    }

    h4, h5 {
        font-size: 22px;
        font-size: 2.2rem;
        line-height: 26px;
        line-height: 2.6rem
    }

    h5 {
        font-size: 20px;
        font-size: 2rem;
        line-height: 24px;
        line-height: 2.4rem
    }
}

p {
    line-height: 1.75;
    margin: 0 0 28px
}

sub, sup {
    font-size: 11px;
    font-size: 1.1rem;
    position: relative
}

sub {
    bottom: -.5em
}

sup {
    left: 2px;
    top: -.5em
}

em, i {
    font-style: italic
}

strong, .component-dropdown-1 .select2-container--default .select2-results__option strong, b {
    font-weight: 700
}

.small, small {
    font-size: 80%
}

cite {
    font-style: normal
}

.mark, mark {
    padding: 12px;
    padding: 1.2rem;
    background-color: #f5f5f5
}

.trim-name-prefix {
    font-style: italic;
    text-transform: lowercase
}

p,
dl,
ol,
ul,
pre,
blockquote {
    margin-top: 0.8em;
    margin-bottom: 0.25em;
}

pre {
    padding: 16px;
    border-radius: 8px;
    background-color: var(--light-color);
    overflow-x: auto;
    white-space: pre;
}

main > div {
    margin: 40px 16px;
}

input,
textarea,
select,
button {
    font: inherit;
}

/* links */
a:any-link {
    color: var(--link-color);
    text-decoration: none;
    word-break: break-word;
}

a:hover {
    color: var(--link-hover-color);
    text-decoration: underline;
}

/* buttons */
a.button:any-link,
button {
    box-sizing: border-box;
    display: inline-block;
    max-width: 100%;
    margin: 12px 0;
    border: 2px solid transparent;
    border-radius: 2.4em;
    padding: 0.5em 1.2em;
    font-family: var(--body-font-family);
    font-style: normal;
    font-weight: 500;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    background-color: var(--link-color);
    color: var(--background-color);
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

a.button:hover,
a.button:focus,
button:hover,
button:focus {
    background-color: var(--link-hover-color);
    cursor: pointer;
}

button:disabled,
button:disabled:hover {
    background-color: var(--light-color);
    cursor: unset;
}

a.button.secondary,
button.secondary {
    background-color: unset;
    border: 2px solid currentcolor;
    color: var(--text-color);
}

main img {
    max-width: 100%;
    width: auto;
    height: auto;
}

.icon {
    display: inline-block;
    height: 24px;
    width: 24px;
}

.icon img {
    height: 100%;
    width: 100%;
}

/* sections */
main > .section {
    margin: 40px 0;
}

main > .section > div {
    /*    max-width: 1200px;
       margin: auto;
       padding: 0 24px; */
}

main > .section:first-of-type {
    margin-top: 0;
}


/* section metadata */
main .section.light,
main .section.highlight {
    background-color: var(--light-color);
    margin: 0;
    padding: 40px 0;
}


.main-header, .main-heading {
    margin-bottom: 0
}

.main-header > h1, .main-header > h2, .main-header > h3, .main-header > h4, .main-header > h5, .main-header > h6, .main-header > p, .main-heading > h1, .main-heading > h2, .main-heading > h3, .main-heading > h4, .main-heading > h5, .main-heading > h6, .main-heading > p {
    font-size: 30px;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    line-height: 37px
}

@media screen and (width >= 768px) and (width <= 959px) {
    .main-header > h1, .main-heading > h1 {
        font-size: 40px;
        font-size: 4rem;
        line-height: 47px
    }
}

@media screen and (width >= 960px) {
    .main-header > h1, .main-heading > h1 {
        font-size: 50px;
        font-size: 5rem;
        line-height: 57px
    }
}

@media screen and (width >= 768px) and (width <= 959px) {
    .main-header > h2, .main-heading > h2 {
        font-size: 40px;
        font-size: 4rem;
        line-height: 47px
    }
}

@media screen and (width >= 960px) {
    .main-header > h2, .main-heading > h2 {
        font-size: 50px;
        font-size: 5rem;
        line-height: 57px
    }
}

@media screen and (width >= 768px) and (width <= 959px) {
    .main-header > h3, .main-heading > h3 {
        font-size: 40px;
        font-size: 4rem;
        line-height: 47px
    }
}

@media screen and (width >= 960px) {
    .main-header > h3, .main-heading > h3 {
        font-size: 50px;
        font-size: 5rem;
        line-height: 57px
    }
}

@media screen and (width >= 768px) and (width <= 959px) {
    .main-header > h4, .main-heading > h4 {
        font-size: 40px;
        font-size: 4rem;
        line-height: 47px
    }
}

@media screen and (width >= 960px) {
    .main-header > h4, .main-heading > h4 {
        font-size: 50px;
        font-size: 5rem;
        line-height: 57px
    }
}

@media screen and (width >= 768px) and (width <= 959px) {
    .main-header > h5, .main-heading > h5 {
        font-size: 40px;
        font-size: 4rem;
        line-height: 47px
    }
}

@media screen and (width >= 960px) {
    .main-header > h5, .main-heading > h5 {
        font-size: 50px;
        font-size: 5rem;
        line-height: 57px
    }
}

@media screen and (width >= 768px) and (width <= 959px) {
    .main-header > h6, .main-heading > h6 {
        font-size: 40px;
        font-size: 4rem;
        line-height: 47px
    }
}

@media screen and (width >= 960px) {
    .main-header > h6, .main-heading > h6 {
        font-size: 50px;
        font-size: 5rem;
        line-height: 57px
    }
}

@media screen and (width >= 768px) and (width <= 959px) {
    .main-header > p, .main-heading > p {
        font-size: 40px;
        font-size: 4rem;
        line-height: 47px
    }
}

@media screen and (width >= 960px) {
    .main-header > p, .main-heading > p {
        font-size: 50px;
        font-size: 5rem;
        line-height: 57px
    }
}

.small-header, .small-heading {
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    margin-bottom: 0
}

@media screen and (width >= 768px) and (width <= 959px) {
    .small-header, .small-heading {
        font-size: 40px;
        font-size: 4rem;
        line-height: 47px
    }
}

@media screen and (width >= 960px) {
    .small-header, .small-heading {
        font-size: 40px;
        font-size: 4rem;
        line-height: 47px
    }
}

.small-header, .small-header > h1, .small-header > h2, .small-header > h3, .small-header > h4, .small-header > h5, .small-header > h6, .small-header > p, .small-heading, .small-heading > h1, .small-heading > h2, .small-heading > h3, .small-heading > h4, .small-heading > h5, .small-heading > h6, .small-heading > p {
    font-size: 30px;
    font-size: 3rem;
    line-height: 37px
}

@media screen and (width >= 768px) and (width <= 959px) {
    .small-header > h1, .small-heading > h1 {
        font-size: 40px;
        font-size: 4rem;
        line-height: 47px
    }
}

@media screen and (width >= 960px) {
    .small-header > h1, .small-heading > h1 {
        font-size: 40px;
        font-size: 4rem;
        line-height: 47px
    }
}

@media screen and (width >= 768px) and (width <= 959px) {
    .small-header > h2, .small-heading > h2 {
        font-size: 40px;
        font-size: 4rem;
        line-height: 47px
    }
}

@media screen and (width >= 960px) {
    .small-header > h2, .small-heading > h2 {
        font-size: 40px;
        font-size: 4rem;
        line-height: 47px
    }
}

@media screen and (width >= 768px) and (width <= 959px) {
    .small-header > h3, .small-heading > h3 {
        font-size: 40px;
        font-size: 4rem;
        line-height: 47px
    }
}

@media screen and (width >= 960px) {
    .small-header > h3, .small-heading > h3 {
        font-size: 40px;
        font-size: 4rem;
        line-height: 47px
    }
}

@media screen and (width >= 768px) and (width <= 959px) {
    .small-header > h4, .small-heading > h4 {
        font-size: 40px;
        font-size: 4rem;
        line-height: 47px
    }
}

@media screen and (width >= 960px) {
    .small-header > h4, .small-heading > h4 {
        font-size: 40px;
        font-size: 4rem;
        line-height: 47px
    }
}

@media screen and (width >= 768px) and (width <= 959px) {
    .small-header > h5, .small-heading > h5 {
        font-size: 40px;
        font-size: 4rem;
        line-height: 47px
    }
}

@media screen and (width >= 960px) {
    .small-header > h5, .small-heading > h5 {
        font-size: 40px;
        font-size: 4rem;
        line-height: 47px
    }
}

@media screen and (width >= 768px) and (width <= 959px) {
    .small-header > h6, .small-heading > h6 {
        font-size: 40px;
        font-size: 4rem;
        line-height: 47px
    }
}

@media screen and (width >= 960px) {
    .small-header > h6, .small-heading > h6 {
        font-size: 40px;
        font-size: 4rem;
        line-height: 47px
    }
}

@media screen and (width >= 768px) and (width <= 959px) {
    .small-header > p, .small-heading > p {
        font-size: 40px;
        font-size: 4rem;
        line-height: 47px
    }
}

@media screen and (width >= 960px) {
    .small-header > p, .small-heading > p {
        font-size: 40px;
        font-size: 4rem;
        line-height: 47px
    }
}


nav a:any-link {
    word-break: break-word;
    color: var(--eggs-light-gray);
    text-decoration: none;
}

nav a:hover {
    color: var(--eggs-yellow);
    text-decoration: underline;
}
