/*==================FONTS=====================*/
@font-face {
    font-family: gdsherpa;
    src: url("../fonts/gdsherpa-regular.woff2") format("woff2"), url("../fonts/gdsherpa-regular.woff") format("woff");
    font-display: swap;
}

@font-face {
    font-family: gdsherpa;
    src: url("../fonts/gdsherpa-bold.woff2") format("woff2"), url("../fonts/gdsherpa-bold.woff") format("woff");
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: Noe Display;
    src: url("../fonts/NoeDisplay-Regular.ttf") format("truetype");
    font-weight: normal;
}

@font-face {
    font-family: Noe Display;
    src: url("../fonts/NoeDisplay-RegularItalic.ttf") format("truetype");
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: Noe Display;
    src: url("../fonts/NoeDisplay-Medium.ttf") format("truetype");
    font-weight: 500;
}

@font-face {
    font-family: Noe Display;
    src: url("../fonts/NoeDisplay-MediumItalic.ttf") format("truetype");
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: Noe Display;
    src: url("../fonts/NoeDisplay-Bold.ttf") format("truetype");
    font-weight: 700;
}

@font-face {
    font-family: Noe Display;
    src: url("../fonts/NoeDisplay-BoldItalic.ttf") format("truetype");
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: Noe Display;
    src: url("../fonts/NoeDisplay-Black.ttf") format("truetype");
    font-weight: 800;
}

@font-face {
    font-family: Noe Display;
    src: url("../fonts/NoeDisplay-BlackItalic.ttf") format("truetype");
    font-weight: 800;
    font-style: italic;
}

@font-face {
    font-family: GD Sage;
    src: url("../fonts/GD-Sage-Medium.ttf") format("truetype"), url("../fonts/GD-Sage-Medium.otf") format("opentype"), url("../fonts/GDSageWeb-Medium.woff") format("woff"), url("../fonts/GDSageWeb-Medium.woff2") format("woff2");
    font-weight: 500;
}

@font-face {
    font-family: GD Sage;
    src: url("../fonts/GD-Sage-Bold.ttf") format("truetype"), url("../fonts/GD-Sage-Bold.otf") format("opentype"), url("../fonts/GDSageWeb-Bold.woff") format("woff"), url("../fonts/GDSageWeb-Bold.woff2") format("woff2");
    font-weight: 700;
}

/*================END FONTS===================*/
/*==================================
  ------------ RESET CSS -----------
  ==================================*/
html,
body,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
pre,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

html {
    font-size: 10px;
}

nav ol,
nav ul:not(.list),
.list--reset ol,
.list--reset ul:not(.list) {
    margin: 0;
    padding: 0;
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

b,
strong {
    font-weight: bold;
}

em {
    font-style: italic;
}

small {
    font-size: smaller;
}

sup {
    vertical-align: super;
    font-size: 75%;
    line-height: 1;
}

sub {
    vertical-align: sub;
    font-size: 75%;
    line-height: 1;
}

/*---------- Animations ----------*/
@keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/*@-webkit-keyframes fade-from-bottom {
    0% {
        -webkit-transform: translateY(70px);
        -ms-transform: translateY(70px);
        transform: translateY(70px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
  }
  
  @-moz-keyframes fade-from-bottom {
    0% {
        -webkit-transform: translateY(70px);
        -ms-transform: translateY(70px);
        transform: translateY(70px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
  }
  
  @-o-keyframes fade-from-bottom {
    0% {
        -webkit-transform: translateY(70px);
        -ms-transform: translateY(70px);
        transform: translateY(70px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
  }
  
  @keyframes fade-from-bottom {
    0% {
        -webkit-transform: translateY(70px);
        -ms-transform: translateY(70px);
        transform: translateY(70px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
  }
  
  
  .fade-from-bottom {
    -webkit-animation: fade-from-bottom 700ms;
    -moz-animation: fade-from-bottom 700ms;
    -o-animation: fade-from-bottom 700ms;
    animation: fade-from-bottom 700ms;
    animation-fill-mode: both;
  }*/
.animate-fade-bottom {
    -webkit-transition: opacity 700ms cubic-bezier(0.694, 0, 0.335, 1), -webkit-transform 700ms cubic-bezier(0.694, 0, 0.335, 1);
    transition: opacity 700ms cubic-bezier(0.694, 0, 0.335, 1), -webkit-transform 700ms cubic-bezier(0.694, 0, 0.335, 1);
    -o-transition: opacity 700ms cubic-bezier(0.694, 0, 0.335, 1), transform 700ms cubic-bezier(0.694, 0, 0.335, 1);
    transition: opacity 700ms cubic-bezier(0.694, 0, 0.335, 1), transform 700ms cubic-bezier(0.694, 0, 0.335, 1);
    transition: opacity 700ms cubic-bezier(0.694, 0, 0.335, 1), transform 700ms cubic-bezier(0.694, 0, 0.335, 1), -webkit-transform 700ms cubic-bezier(0.694, 0, 0.335, 1);
    opacity: 0;
    -webkit-transform: translateY(70px);
    -ms-transform: translateY(70px);
    transform: translateY(70px);
}

.animate-fade-bottom.fade-from-bottom,
.animate-fade-bottom.js--fade-from-bottom {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

/*==================================
  --------- DEFAULT STYLES ---------
  ==================================*/
body {
    overflow-x: hidden;
    color: #5e5e5e;
    font-family: gdsherpa, Arial, sans-serif;
    font-size: 20px;
    font-size: 2rem;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: none;
}

@media only screen and (min-width: 320px) {
    body {
        font-size: calc(14px + ((1vw - 3.2px) * 0.375));
        font-size: calc(1.4rem + ((1vw - 3.2px) * 0.375));
    }
}

@media only screen and (min-width: 1920px) {
    body {
        font-size: 20px;
        font-size: 2rem;
    }
}

@media only screen and (max-width: 319px) {
    body {
        font-size: 14px;
        font-size: 1.4rem;
    }
}

/*---------- TYPOGRAPHY ----------*/
h1 {
    font-family: GD Sage, Arial, sans-serif;
    font-size: 100px;
    font-size: 10rem;
    line-height: 1.2;
    font-weight: 500;
    margin-top: 100px;
    margin-bottom: 100px;
    color: #2b2b2b;
}

.dark h1 {
    color: #fff;
}

@media only screen and (min-width: 320px) {
    h1 {
        font-size: calc(45px + ((1vw - 3.2px) * 3.4375));
        font-size: calc(4.5rem + ((1vw - 3.2px) * 3.4375));
    }
}

@media only screen and (min-width: 1920px) {
    h1 {
        font-size: 100px;
        font-size: 10rem;
    }
}

h2 {
    font-family: GD Sage, Arial, sans-serif;
    font-size: 75px;
    font-size: 7.5rem;
    line-height: 1.14;
    font-weight: 500;
    margin-top: 70px;
    margin-bottom: 70px;
    color: #2b2b2b;
}

.dark h2 {
    color: #fff;
}

@media screen and (max-width: 375px) {
    h2 {
        margin-bottom: 25px;
    }
}

@media only screen and (min-width: 320px) {
    h2 {
        font-size: calc(32px + ((1vw - 3.2px) * 2.6875));
        font-size: calc(3.2rem + ((1vw - 3.2px) * 2.6875));
    }
}

@media only screen and (min-width: 1920px) {
    h2 {
        font-size: 75px;
        font-size: 7.5rem;
    }
}

h3 {
    font-family: GD Sage, Arial, sans-serif;
    font-size: 65px;
    font-size: 6.5rem;
    line-height: 1.11;
    font-weight: 500;
    margin-top: 50px;
    margin-bottom: 50px;
    color: #2b2b2b;
}

.dark h3 {
    color: #fff;
}

@media only screen and (min-width: 320px) {
    h3 {
        font-size: calc(28px + ((1vw - 3.2px) * 2.3125));
        font-size: calc(2.8rem + ((1vw - 3.2px) * 2.3125));
    }
}

@media only screen and (min-width: 1920px) {
    h3 {
        font-size: 65px;
        font-size: 6.5rem;
    }
}

h4 {
    font-family: GD Sage, Arial, sans-serif;
    font-size: 50px;
    font-size: 5rem;
    line-height: 1.2;
    font-weight: 500;
    margin-top: 40px;
    margin-bottom: 40px;
    color: #2b2b2b;
}

.dark h4 {
    color: #fff;
}

@media only screen and (max-width: 480px) {
    h4 {
        margin-bottom: 25px;
    }
}

@media only screen and (min-width: 320px) {
    h4 {
        font-size: calc(24px + ((1vw - 3.2px) * 1.625));
        font-size: calc(2.4rem + ((1vw - 3.2px) * 1.625));
    }
}

@media only screen and (min-width: 1920px) {
    h4 {
        font-size: 50px;
        font-size: 5rem;
    }
}

h5 {
    font-family: GD Sage, Arial, sans-serif;
    font-size: 41px;
    font-size: 4.1rem;
    line-height: 1.12;
    font-weight: 500;
    margin-top: 30px;
    margin-bottom: 30px;
    color: #2b2b2b;
}

.dark h5 {
    color: #fff;
}

@media only screen and (min-width: 320px) {
    h5 {
        font-size: calc(22px + ((1vw - 3.2px) * 1.1875));
        font-size: calc(2.2rem + ((1vw - 3.2px) * 1.1875));
    }
}

@media only screen and (min-width: 1920px) {
    h5 {
        font-size: 41px;
        font-size: 4.1rem;
    }
}

a {
    text-decoration: underline;
    color: #8c8c8c;
}

p {
    line-height: 1.6;
}

i {
    display: inline-block;
}

@media only screen and (max-width: 319px) {
    h1 {
        font-size: 45px;
        font-size: 4.5rem;
    }

    h2 {
        font-size: 32px;
        font-size: 3.2rem;
    }

    h3 {
        font-size: 28px;
        font-size: 2.8rem;
    }

    h4 {
        font-size: 24px;
        font-size: 2.4rem;
    }

    h5 {
        font-size: 22px;
        font-size: 2.2rem;
    }
}

/*------------ COMMON ------------*/
img {
    max-width: 100%;
}

input[type="checkbox"],
input[type="radio"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

input[type="checkbox"] + label,
input[type="radio"] + label {
    user-select: none;
    cursor: pointer;
}

@media only screen and (min-width: 320px) {
    input[type="checkbox"] + label,
    input[type="radio"] + label {
        font-size: calc(15px + ((1vw - 3.2px) * 0.0625));
        font-size: calc(1.5rem + ((1vw - 3.2px) * 0.0625));
    }
}

@media only screen and (min-width: 1920px) {
    input[type="checkbox"] + label,
    input[type="radio"] + label {
        font-size: 16px;
        font-size: 1.6rem;
    }
}

@media only screen and (max-width: 319px) {
    input[type="checkbox"] + label,
    input[type="radio"] + label {
        font-size: 15px;
        font-size: 1.5rem;
    }
}

input[type="checkbox"] + label:before,
input[type="radio"] + label:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 1px solid #afafaf;
    margin-right: 10px;
    line-height: 1;
    vertical-align: sub;
}

.js--invalid input[type="checkbox"] + label:before,
.js--invalid input[type="radio"] + label:before {
    border-color: #b72121 !important;
}

input[type="checkbox"]:checked + label:before,
input[type="radio"]:checked + label:before {
    width: 20px;
    height: 20px;
    border-width: 4px;
}

input[type="radio"] + label:before {
    border-radius: 100%;
}

input::-ms-clear {
    display: none;
}

iframe {
    width: 100%;
}

/*------- HACKS AND FIXES -------*/
.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

/*------------ LISTS ------------*/
.list {
    list-style-type: disc;
    padding-left: 30px;
    margin-top: 15px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.list--ordered {
    list-style-type: decimal;
}

.list--alpha {
    list-style-type: lower-alpha;
}

.list--roman {
    list-style-type: lower-roman;
}

.list--inside {
    list-style-position: inside;
}

/*------- BUTTONS / INPUTS -------*/
.input,
.textarea,
.dropdown,
.upload,
.submit,
.button {
    display: inline-block;
    max-width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 16px 25px;
    background: transparent;
    border: 1px solid #afafaf;
    color: #2b2b2b;
    border-radius: 0;
    font-family: gdsherpa, Arial, sans-serif;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1;
}

@media only screen and (min-width: 320px) {
    .input,
    .textarea,
    .dropdown,
    .upload,
    .submit,
    .button {
        font-size: calc(14px + ((1vw - 3.2px) * 0.125));
        font-size: calc(1.4rem + ((1vw - 3.2px) * 0.125));
    }
}

@media only screen and (min-width: 1920px) {
    .input,
    .textarea,
    .dropdown,
    .upload,
    .submit,
    .button {
        font-size: 16px;
        font-size: 1.6rem;
    }
}

@media only screen and (max-width: 319px) {
    .input,
    .textarea,
    .dropdown,
    .upload,
    .submit,
    .button {
        font-size: 14px;
        font-size: 1.4rem;
    }
}

.input::-ms-clear,
.textarea::-ms-clear,
.dropdown::-ms-clear,
.upload::-ms-clear,
.submit::-ms-clear,
.button::-ms-clear {
    display: none;
}

.submit,
.button,
.upload,
.dropdown {
    cursor: pointer;
}

.button {
    background-color: #fff;
    font-weight: 700;
    transition: 0.3s ease-in-out;
    padding-left: 32px;
    padding-right: 32px;
    text-align: center;
    text-decoration: none;
    line-height: 17px;
}

@media only screen and (max-width: 767px) {
    .button {
        display: block;
        width: 100%;
    }
}

.button--smaller {
    padding: 11px 24px;
}

.button--small {
    padding-left: 25px;
    padding-right: 25px;
}

.textarea {
    width: 100%;
    resize: vertical;
}

.upload {
    line-height: 0;
}

.button--inverted {
    background: #00782e;
    color: #fff;
}

.button--inverted.js--disabled {
    background: #fff;
    border-color: #00782e;
    color: #00782e;
}

.button--dark {
    background-color: #fff;
    color: #2b2b2b !important;
}

.dropdown {
    padding: 7px 25px 7px 15px;
    background: transparent url("../design/svg/dropdown-arrow.svg") no-repeat right 10px center;
    background-size: 10px 6px;
    min-width: 136px;
    line-height: 1.5;
}

.dropdown::-ms-expand {
    display: none;
}

/*------------ TABLES ------------*/
.table {
    width: 100%;
    margin: 16px 0;
    color: #2b2b2b;
}

@media only screen and (min-width: 320px) {
    .table {
        font-size: calc(14px + ((1vw - 3.2px) * 0.25));
        font-size: calc(1.4rem + ((1vw - 3.2px) * 0.25));
    }
}

@media only screen and (min-width: 1920px) {
    .table {
        font-size: 18px;
        font-size: 1.8rem;
    }
}

@media only screen and (max-width: 319px) {
    .table {
        font-size: 14px;
        font-size: 1.4rem;
    }
}

.table thead th {
    text-align: left;
}

.table tr {
    border-bottom: 1px solid #d8d8d8;
}

.table th,
.table td,
.table tr > .grid_col {
    margin: 0;
    padding: 45px 8px;
}

.table th {
    font-weight: 700;
    color: #111111;
    padding-top: 25px;
    padding-bottom: 25px;
    text-align: left;
}

.table th:first-child,
.table td:first-child {
    padding-left: 0;
}

.table th:last-child,
.table td:last-child {
    padding-right: 0;
    text-align: right;
}

.table--headless tr:nth-child(even) {
    background-color: transparent;
}

.table--headless tr:nth-child(odd) {
    background-color: #afafaf;
}

.table--headless tr:first-child {
    background-color: #00782e;
    text-align: left;
}

.table--headless tr:first-child td {
    color: #fff;
}

.table-wrapper {
    overflow-x: auto;
}

.table a {
    word-break: break-all;
}

@media only screen and (max-width: 1023px) {
    .table--responsive thead {
        display: none;
    }

    .table--responsive tbody {
        border-top: 2px solid #d8d8d8;
        border-bottom: 2px solid #d8d8d8;
    }

    .table th,
    .table td,
    .table tr > .grid_col {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .table th:first-child,
    .table td:first-child {
        padding-left: 8px;
    }

    .table th:last-child,
    .table td:last-child {
        text-align: left;
        padding-right: 8px;
    }

    .table--responsive td {
        display: block;
    }

    .table--responsive td[data-heading]:before {
        content: attr(data-heading) ": ";
        font-weight: bold;
        display: inline-block;
        vertical-align: top;
        min-height: 1px;
        box-sizing: border-box;
        width: 50%;
        padding-right: 10px;
    }

    .table--responsive td[data-heading] > span {
        display: inline-block;
        vertical-align: top;
        min-height: 1px;
        box-sizing: border-box;
        width: 50%;
    }

    .table--ownership .heading {
        display: none;
    }
}

@media only screen and (max-width: 480px) {
    .table th,
    .table td,
    .table tr > .grid_col {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .table tr > td:first-child {
        padding-top: 20px;
    }

    .table tr > td:last-child {
        padding-bottom: 20px;
    }
}

/*--------- SPECIAL BOXES --------*/
.code {
    margin: 32px 0;
    padding: 20px 15px;
    background: #afafaf;
    border-left: 3px solid rgba(0, 111, 186, 0.5);
    font-family: monospace, serif;
    font-size: 14px;
    font-size: 1.4rem;
    word-break: break-all;
    word-wrap: break-word;
    white-space: pre;
    overflow: hidden;
}

.code_comment {
    opacity: 0.5;
}

.quote {
    margin: 32px 0;
    padding: 20px 15px;
    background: #afafaf;
    border-left: 3px solid rgba(241, 175, 15, 0.5);
    font-size: 14px;
    font-size: 1.4rem;
    font-style: italic;
}

.quote p:before {
    margin-right: 5px;
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\eb1b";
}

.quote p:after {
    margin-left: 5px;
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\eb1c";
}

/*==================================
  -------- Q4 Modules Icons ---------
  ==================================*/
.module_q4-icon-links .module_link:before,
.module_q4-icon-links .module_rss-link:before {
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\eecd";
    font-size: 18px;
    vertical-align: middle;
    display: inline-block;
    padding-right: 5px;
}

.module_q4-icon-links .module_rss-link:before,
.module_q4-icon-links .module_link.module_link-rss:before {
    content: "\eefa";
    font-size: 12px;
    background-color: #00782e;
    color: #fff;
    padding: 4px;
    text-align: center;
    border-radius: 2px;
}

.module_q4-icon-links .module_add-to-calendar-reveal:before {
    content: "\ea5f";
    padding-right: 5px;
}

.module_q4-icon-links .module_link[href$=".mp3"]:before,
.module_q4-icon-links .module_link[href$=".wmv"]:before,
.module_q4-icon-links .module_link[href$=".MP3"]:before,
.module_q4-icon-links .module_link[href$=".WMV"]:before {
    content: "\e952";
}

.module_q4-icon-links .module_link[href$=".xls"]:before,
.module_q4-icon-links .module_link[href$=".csv"]:before,
.module_q4-icon-links .module_link[href$=".XLS"]:before,
.module_q4-icon-links .module_link[href$=".CSV"]:before {
    content: "\eeae";
}

.module_q4-icon-links .module_link[href$=".mp4"]:before,
.module_q4-icon-links .module_link[href$=".flv"]:before,
.module_q4-icon-links .module_link[href$=".avi"]:before,
.module_q4-icon-links .module_link[href$=".MP4"]:before,
.module_q4-icon-links .module_link[href$=".FLV"]:before,
.module_q4-icon-links .module_link[href$=".AVI"]:before {
    content: "\e95e";
}

.module_q4-icon-links .module_link[href$=".pdf"]:before,
.module_q4-icon-links .module_link[href$=".PDF"]:before {
    content: "\e900";
}

.module_q4-icon-links .module_link.module_link-webcast:before,
.module_q4-icon-links .module_webcast-link:before {
    content: "\e989";
}

.module_q4-icon-links .module_link.module_link-news:before,
.module_q4-icon-links .module_link.module_link-transcript:before {
    content: "\e99b";
}

.module_q4-icon-links .module_link.module_link-presentation:before {
    content: "\e95c";
}

.module_q4-icon-links .module_link.module_link-file:before {
    content: "\eb81";
}

.module_q4-icon-links .module_link.module_link-sec:before {
    content: "\e9bb";
}

.module_q4-icon-links .module_link.module_link-sec[href$=".pdf"]:before {
    content: "\ef3e";
}

.module_q4-icon-links .module_link.module_link-sec[href$=".rtf"]:before {
    content: "\ef40";
}

.module_q4-icon-links .module_link.module_link-sec[href$=".xls"]:before {
    content: "\ef41";
}

.module_q4-icon-links .module_link.module_link-sec[href$=".zip"]:before {
    content: "\e9b9";
}

/*==================================
  ----------- TOAST GRID -----------
  ==================================*/
.grid {
    list-style: none;
    margin-left: -20px;
}

.grid_col--1-of-1,
.grid_col--2-of-2,
.grid_col--3-of-3,
.grid_col--4-of-4,
.grid_col--5-of-5,
.grid_col--6-of-6,
.grid_col--7-of-7,
.grid_col--8-of-8,
.grid_col--12-of-12 {
    width: 100%;
}

.grid_col--1-of-2,
.grid_col--2-of-4,
.grid_col--3-of-6,
.grid_col--4-of-8,
.grid_col--6-of-12 {
    width: 50%;
}

.grid_col--1-of-3,
.grid_col--2-of-6,
.grid_col--4-of-12 {
    width: 33.3333333333%;
}

.grid_col--2-of-3,
.grid_col--4-of-6,
.grid_col--8-of-12 {
    width: 66.6666666667%;
}

.grid_col--1-of-4,
.grid_col--2-of-8,
.grid_col--3-of-12 {
    width: 25%;
}

.grid_col--3-of-4,
.grid_col--6-of-8,
.grid_col--9-of-12 {
    width: 75%;
}

.grid_col--push-1-of-1,
.grid_col--push-2-of-2,
.grid_col--push-3-of-3,
.grid_col--push-4-of-4,
.grid_col--push-5-of-5,
.grid_col--push-6-of-6,
.grid_col--push-7-of-7,
.grid_col--push-8-of-8,
.grid_col--push-12-of-12 {
    margin-left: 100%;
}

.grid_col--push-1-of-2,
.grid_col--push-2-of-4,
.grid_col--push-3-of-6,
.grid_col--push-4-of-8,
.grid_col--push-6-of-12 {
    margin-left: 50%;
}

.grid_col--push-1-of-3,
.grid_col--push-2-of-6,
.grid_col--push-4-of-12 {
    margin-left: 33.3333333333%;
}

.grid_col--push-2-of-3,
.grid_col--push-4-of-6,
.grid_col--push-8-of-12 {
    margin-left: 66.6666666667%;
}

.grid_col--push-1-of-4,
.grid_col--push-2-of-8,
.grid_col--push-3-of-12 {
    margin-left: 25%;
}

.grid_col--push-3-of-4,
.grid_col--push-6-of-8,
.grid_col--push-9-of-12 {
    margin-left: 75%;
}

.grid_col--pull-1-of-1,
.grid_col--pull-2-of-2,
.grid_col--pull-3-of-3,
.grid_col--pull-4-of-4,
.grid_col--pull-5-of-5,
.grid_col--pull-6-of-6,
.grid_col--pull-7-of-7,
.grid_col--pull-8-of-8,
.grid_col--pull-12-of-12 {
    margin-left: -100%;
}

.grid_col--pull-1-of-2,
.grid_col--pull-2-of-4,
.grid_col--pull-3-of-6,
.grid_col--pull-4-of-8,
.grid_col--pull-6-of-12 {
    margin-left: -50%;
}

.grid_col--pull-1-of-3,
.grid_col--pull-2-of-6,
.grid_col--pull-4-of-12 {
    margin-left: -33.3333333333%;
}

.grid_col--pull-2-of-3,
.grid_col--pull-4-of-6,
.grid_col--pull-8-of-12 {
    margin-left: -66.6666666667%;
}

.grid_col--pull-1-of-4,
.grid_col--pull-2-of-8,
.grid_col--pull-3-of-12 {
    margin-left: -25%;
}

.grid_col--pull-3-of-4,
.grid_col--pull-6-of-8,
.grid_col--pull-9-of-12 {
    margin-left: -75%;
}

.grid_col--1-of-5 {
    width: 20%;
}

.grid_col--push-1-of-5 {
    margin-left: 20%;
}

.grid_col--pull-1-of-5 {
    margin-left: -20%;
}

.grid_col--2-of-5 {
    width: 40%;
}

.grid_col--push-2-of-5 {
    margin-left: 40%;
}

.grid_col--pull-2-of-5 {
    margin-left: -40%;
}

.grid_col--3-of-5 {
    width: 60%;
}

.grid_col--push-3-of-5 {
    margin-left: 60%;
}

.grid_col--pull-3-of-5 {
    margin-left: -60%;
}

.grid_col--4-of-5 {
    width: 80%;
}

.grid_col--push-4-of-5 {
    margin-left: 80%;
}

.grid_col--pull-4-of-5 {
    margin-left: -80%;
}

.grid_col--1-of-6 {
    width: 16.6666666667%;
}

.grid_col--push-1-of-6 {
    margin-left: 16.6666666667%;
}

.grid_col--pull-1-of-6 {
    margin-left: -16.6666666667%;
}

.grid_col--5-of-6 {
    width: 83.3333333333%;
}

.grid_col--push-5-of-6 {
    margin-left: 83.3333333333%;
}

.grid_col--pull-5-of-6 {
    margin-left: -83.3333333333%;
}

.grid_col--1-of-7 {
    width: 14.2857142857%;
}

.grid_col--push-1-of-7 {
    margin-left: 14.2857142857%;
}

.grid_col--pull-1-of-7 {
    margin-left: -14.2857142857%;
}

.grid_col--2-of-7 {
    width: 28.5714285714%;
}

.grid_col--push-2-of-7 {
    margin-left: 28.5714285714%;
}

.grid_col--pull-2-of-7 {
    margin-left: -28.5714285714%;
}

.grid_col--3-of-7 {
    width: 42.8571428571%;
}

.grid_col--push-3-of-7 {
    margin-left: 42.8571428571%;
}

.grid_col--pull-3-of-7 {
    margin-left: -42.8571428571%;
}

.grid_col--4-of-7 {
    width: 57.1428571429%;
}

.grid_col--push-4-of-7 {
    margin-left: 57.1428571429%;
}

.grid_col--pull-4-of-7 {
    margin-left: -57.1428571429%;
}

.grid_col--5-of-7 {
    width: 71.4285714286%;
}

.grid_col--push-5-of-7 {
    margin-left: 71.4285714286%;
}

.grid_col--pull-5-of-7 {
    margin-left: -71.4285714286%;
}

.grid_col--6-of-7 {
    width: 85.7142857143%;
}

.grid_col--push-6-of-7 {
    margin-left: 85.7142857143%;
}

.grid_col--pull-6-of-7 {
    margin-left: -85.7142857143%;
}

.grid_col--1-of-8 {
    width: 12.5%;
}

.grid_col--push-1-of-8 {
    margin-left: 12.5%;
}

.grid_col--pull-1-of-8 {
    margin-left: -12.5%;
}

.grid_col--3-of-8 {
    width: 37.5%;
}

.grid_col--push-3-of-8 {
    margin-left: 37.5%;
}

.grid_col--pull-3-of-8 {
    margin-left: -37.5%;
}

.grid_col--5-of-8 {
    width: 62.5%;
}

.grid_col--push-5-of-8 {
    margin-left: 62.5%;
}

.grid_col--pull-5-of-8 {
    margin-left: -62.5%;
}

.grid_col--7-of-8 {
    width: 87.5%;
}

.grid_col--push-7-of-8 {
    margin-left: 87.5%;
}

.grid_col--pull-7-of-8 {
    margin-left: -87.5%;
}

.grid_col--1-of-12 {
    width: 8.3333333333%;
}

.grid_col--push-1-of-12 {
    margin-left: 8.3333333333%;
}

.grid_col--pull-1-of-12 {
    margin-left: -8.3333333333%;
}

.grid_col--2-of-12 {
    width: 16.6666666667%;
}

.grid_col--push-2-of-12 {
    margin-left: 16.6666666667%;
}

.grid_col--pull-2-of-12 {
    margin-left: -16.6666666667%;
}

.grid_col--5-of-12 {
    width: 41.6666666667%;
}

.grid_col--push-5-of-12 {
    margin-left: 41.6666666667%;
}

.grid_col--pull-5-of-12 {
    margin-left: -41.6666666667%;
}

.grid_col--7-of-12 {
    width: 58.3333333333%;
}

.grid_col--push-7-of-12 {
    margin-left: 58.3333333333%;
}

.grid_col--pull-7-of-12 {
    margin-left: -58.3333333333%;
}

.grid_col--10-of-12 {
    width: 83.3333333333%;
}

.grid_col--push-10-of-12 {
    margin-left: 83.3333333333%;
}

.grid_col--pull-10-of-12 {
    margin-left: -83.3333333333%;
}

.grid_col--11-of-12 {
    width: 91.6666666667%;
}

.grid_col--push-11-of-12 {
    margin-left: 91.6666666667%;
}

.grid_col--pull-11-of-12 {
    margin-left: -91.6666666667%;
}

.grid_col {
    box-sizing: border-box;
    display: inline-block;
    margin-right: -0.25em;
    min-height: 1px;
    padding-left: 20px;
    vertical-align: top;
}

@media (max-width: 480px) {
    .grid_col {
        display: block;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
}

@media (max-width: 1200px) and (min-width: 1025px) {
    .grid_col[class*="grid_col--lg-"] {
        display: inline-block;
        margin-right: -0.24em;
    }

    .grid_col.grid_col--lg-1-of-1 {
        width: 100%;
    }

    .grid_col.grid_col--lg-1-of-2,
    .grid_col.grid_col--lg-2-of-4 {
        width: 50%;
    }

    .grid_col.grid_col--lg-1-of-3 {
        width: 33.3333333333%;
    }

    .grid_col.grid_col--lg-2-of-3 {
        width: 66.6666666667%;
    }

    .grid_col.grid_col--lg-1-of-4 {
        width: 25%;
    }

    .grid_col.grid_col--lg-3-of-4 {
        width: 75%;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .grid_col[class*="grid_col--lc-"] {
        display: inline-block;
        margin-right: -0.24em;
    }

    .grid_col.grid_col--lc-1-of-1 {
        width: 100%;
    }

    .grid_col.grid_col--lc-1-of-2,
    .grid_col.grid_col--lc-2-of-4 {
        width: 50%;
    }

    .grid_col.grid_col--lc-1-of-3 {
        width: 33.3333333333%;
    }

    .grid_col.grid_col--lc-2-of-3 {
        width: 66.6666666667%;
    }

    .grid_col.grid_col--lc-1-of-4 {
        width: 25%;
    }

    .grid_col.grid_col--lc-3-of-4 {
        width: 75%;
    }
}

@media (max-width: 768px) and (min-width: 481px) {
    .grid_col[class*="grid_col--md-"] {
        display: inline-block;
        margin-right: -0.24em;
    }

    .grid_col.grid_col--md-1-of-1 {
        width: 100%;
    }

    .grid_col.grid_col--md-1-of-2,
    .grid_col.grid_col--md-2-of-4 {
        width: 50%;
    }

    .grid_col.grid_col--md-1-of-3 {
        width: 33.3333333333%;
    }

    .grid_col.grid_col--md-2-of-3 {
        width: 66.6666666667%;
    }

    .grid_col.grid_col--md-1-of-4 {
        width: 25%;
    }

    .grid_col.grid_col--md-3-of-4 {
        width: 75%;
    }
}

@media (max-width: 480px) {
    .grid_col[class*="grid_col--sm-"] {
        display: inline-block;
        margin-right: -0.24em;
    }

    .grid_col.grid_col--sm-1-of-2,
    .grid_col.grid_col--sm-2-of-4 {
        width: 50%;
    }

    .grid_col.grid_col--sm-1-of-3 {
        width: 33.3333333333%;
    }

    .grid_col.grid_col--sm-2-of-3 {
        width: 66.6666666667%;
    }

    .grid_col.grid_col--sm-1-of-4 {
        width: 25%;
    }

    .grid_col.grid_col--sm-3-of-4 {
        width: 75%;
    }
}

.grid_col--centered {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.grid_col--d-first {
    float: left;
}

.grid_col--d-last {
    float: right;
}

.grid--no-gutter {
    margin-left: 0;
}

.grid--no-gutter .grid_col {
    padding-left: 0;
}

.grid .grid--no-gutter .grid_col {
    padding-left: 0;
}

.grid--no-gutter .grid .grid_col {
    padding-left: 20px;
}

.grid--no-gutter .grid_col--span-all {
    margin-left: 0;
    width: 100%;
}

.grid--flex {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
}

.grid--gutter-40 {
    margin-left: -40px;
}

.grid--gutter-40 .grid_col {
    padding-left: 40px;
}

.grid--no-gutter .grid--gutter-40 .grid_col {
    padding-left: 40px;
}

.grid--no-space .grid_col {
    margin-right: 0;
}

.grid_col--ab {
    vertical-align: bottom;
}

.grid_col--am {
    vertical-align: middle;
}

/*==================================
  --------- UTILITY CLASSES --------
  ==================================*/
.hidden:not([role="tabpanel"]) {
    display: none !important;
}

.hidden[role="tabpanel"] {
    display: none;
}

.disabled {
    opacity: 0.1;
    border-color: #5e5e5e;
    color: #5e5e5e;
    transition: none;
    pointer-events: none;
}

.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

.inline {
    display: inline;
}

.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.vtop {
    vertical-align: top;
}

.vmiddle {
    vertical-align: middle;
}

.vbottom {
    vertical-align: bottom;
}

.right {
    float: right;
}

.left {
    float: left;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-justify {
    text-align: justify;
}

.uppercase {
    text-transform: uppercase;
}

.lowercase {
    text-transform: lowercase;
}

.background--cover {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

.background--brand {
    background-color: #00782e;
}

.background--alt-brand {
    background-color: #f1af0f;
}

.background--dark {
    background-color: #222;
}

.background--light {
    background-color: #fff;
}

.background--grey {
    background-color: #afafaf;
}

.background--success {
    background-color: #23a217;
}

.background--error {
    background-color: #b72121;
}

.background--color-1 {
    background-color: #462a72;
}

.background--color-2 {
    background-color: #0b4744;
}

.background--color-3 {
    background-color: #fff1e1;
}

.background--color-4 {
    background-color: #f5f7f8;
}

.background--color-5 {
    background-color: #114985;
}

.background--color-6 {
    background-color: #fce9db;
}

.background--color-7 {
    background-color: #5b003b;
}

.background--color-8 {
    background-color: #8c8c8c;
}

.background--color-9 {
    background-color: #bd8150;
}

.background--color-10 {
    background-color: #f7eeee;
}

.background--color-11 {
    background-color: #0b3354;
}

.background--color-12 {
    background-color: #860f01;
}

.background--color-13 {
    background-color: #003a15;
}

.background--color-14 {
    background-color: #833a25;
}

.background--color-15 {
    background-color: #d19500;
}

.background--color-16 {
    background-color: #2b2b2b;
}

.background--color-17 {
    background-color: #fadcd9;
}

.background--color-18 {
    background-color: #1bdbdb;
}

.background--color-19 {
    background-color: #000000;
}

.background--color-20 {
    background-color: #145fa9;
}

.background--color-21 {
    background-color: #8b0053;
}

.background--color-22 {
    background-color: #00a63f;
}

.background--color-23 {
    background-color: #004249;
}

.background--color-24 {
    background-color: #6d3209;
}

.color--brand {
    color: #00782e;
}
.color--brand-committee {
    color: #00838c;
}
.color--dark {
    color: #222;
}

.color--grey {
    color: #afafaf;
}

.color--success {
    color: #23a217;
}

.color--error {
    color: #b72121;
}

.color--1 {
    color: #462a72;
}

.color--2 {
    color: #0b4744;
}

.color--3,
.module_date-time.color--3 {
    color: #fff1e1;
}

.color--4 {
    color: #f5f7f8;
}

.color--5 {
    color: #114985;
}

.color--6,
.module_date-time.color--6 {
    color: #fce9db;
}

.color--7 {
    color: #5b003b;
}

.color--8 {
    color: #8c8c8c;
}

.color--9 {
    color: #bd8150;
}

.color--10,
.module_date-time.color--10 {
    color: #f7eeee;
}

.color--11 {
    color: #0b3354;
}

.color--12 {
    color: #860f01;
}

.color--13 {
    color: #003a15;
}

.color--14 {
    color: #833a25;
}

.color--15 {
    color: #d19500;
}

.color--16 {
    color: #2b2b2b;
}

.color--17 {
    color: #fadcd9;
}

.color--18 {
    color: #00a839;
}

.color--19 {
    color: #000000;
}

.color--20 {
    color: #145fa9;
}

.color--21 {
    color: #8b0053;
}

.color--22 {
    color: #00a63f;
}

.color--23 {
    color: #004249;
}

.color--24 {
    color: #6d3209;
}

.dark {
    color: #fff;
}

.dark a:not(.button) {
    color: #fff;
}

.no-margin {
    margin: 0;
}

.no-margin-top {
    margin-top: 0;
}

.no-margin-bottom {
    margin-bottom: 0;
}

.no-margin-right {
    margin-right: 0;
}

.no-margin-left {
    margin-left: 0;
}

.no-padding-top {
    padding-top: 0;
}

.no-padding-bottom {
    padding-bottom: 0;
}

.no-padding-right {
    padding-right: 0;
}

.no-padding-left {
    padding-left: 0;
}

/*==================================
  --------- ACCESSIBILITY ----------
  ==================================*/
*:focus {
    outline: none;
}

a:focus {
    text-decoration: underline !important;
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    border: 0 !important;
}

#maincontent:focus {
    outline: 0px;
}

/*---------- Javascript ----------*/
.js--loading:after {
    position: relative;
    left: 50%;
    display: inline-block;
    margin: 10px 0 10px -25px;
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\eb27";
    font-size: 50px;
    font-size: 5rem;
    animation: spin 0.8s infinite linear;
}

.js--hidden:not([role="tabpanel"]) {
    display: none !important;
}

.js--hidden[role="tabpanel"] {
    display: none;
}

.js--visible {
    display: block;
}

.js--disabled {
    opacity: 0.1;
    border-color: #5e5e5e;
    color: #5e5e5e;
    transition: none;
    pointer-events: none;
}

.js--invalid input[type="text"],
.js--invalid select {
    border: 1px solid #b72121 !important;
}

.js--invalid input[type="checkbox"] {
    border-color: #b72121 !important;
}

/*==================================
  ----------- MODULE CSS -----------
  ==================================*/
/*-------- All Module CSS --------*/
.module_header,
.module_back-to-top,
.module_anchor-target,
.module_file-size,
.module_file-type,
.module_file-text {
    display: none;
}

.module_nav:not(:empty),
.module_headline:not(:empty),
.module_location:not(:empty),
.module_speakers:not(:empty),
.module_links:not(:empty),
.module_body:not(:empty),
.module_options:not(:empty),
.module_not-found:not(:empty) {
    margin-bottom: 20px;
}

.module_error-container {
    margin-bottom: 30px;
    color: #b72121;
}

.module_add-to-calendar-reveal {
    color: #00782e;
    cursor: pointer;
}

.module_add-to-calendar-reveal:focus {
    text-decoration: underline;
}

.module_add-to-calendar-list {
    display: none;
}

.module_add-to-calendar-list:after {
    content: "Select your Calendar";
    display: block;
    margin-top: 15px;
    font-size: 14px;
    font-size: 1.4rem;
    text-align: center;
}

.fancybox-container .module_add-to-calendar-list {
    padding: 70px;
}

.module_add-to-calendar-item {
    display: inline-block;
    margin: 0 10px;
}

.module_add-to-calendar-item--ics {
    display: none;
}

.module_add-to-calendar-link {
    font-size: 24px;
    font-size: 2.4rem;
}

.module_add-to-calendar.js--hidden {
    display: none;
}

.module_actions,
.module_pager {
    margin-top: 20px;
}

.module_date-time {
    margin-bottom: 20px;
    line-height: 1.2;
    color: #8c8c8c;
}

.dark .module_date-time {
    color: #fff;
}

@media only screen and (min-width: 320px) {
    .module_date-time {
        font-size: calc(13px + ((1vw - 3.2px) * 0.1875));
        font-size: calc(1.3rem + ((1vw - 3.2px) * 0.1875));
    }
}

@media only screen and (min-width: 1920px) {
    .module_date-time {
        font-size: 16px;
        font-size: 1.6rem;
    }
}

@media only screen and (max-width: 319px) {
    .module_date-time {
        font-size: 13px;
        font-size: 1.3rem;
    }
}

@media only screen and (max-width: 767px) {
    .module_date-time {
        margin-bottom: 20px;
    }

    .module_nav:not(:empty),
    .module_headline:not(:empty),
    .module_location:not(:empty),
    .module_speakers:not(:empty),
    .module_links:not(:empty),
    .module_body:not(:empty),
    .module_options:not(:empty),
    .module_not-found:not(:empty) {
        margin-bottom: 20px;
    }
}

.module_error-container {
    display: block;
}

.module_error-container ul {
    padding-left: 18px;
    list-style-type: disc;
}

.module_error-container ul > li {
    line-height: 1.5;
}

.module_error-container > br {
    display: none;
}

.module_error-container > span {
    display: block;
    line-height: 1.5;
}

.module_error-container > span:before {
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\ec6b";
    margin-right: 5px;
}

.module_headline-link,
.module_headline-text {
    line-height: 1.4;
    font-weight: 700;
    color: #2b2b2b;
    text-decoration: none;
}

.dark .module_headline-link,
.dark .module_headline-text {
    color: #fff;
}

@media only screen and (min-width: 320px) {
    .module_headline-link,
    .module_headline-text {
        font-size: calc(18px + ((1vw - 3.2px) * 0.4375));
        font-size: calc(1.8rem + ((1vw - 3.2px) * 0.4375));
    }
}

@media only screen and (min-width: 1920px) {
    .module_headline-link,
    .module_headline-text {
        font-size: 25px;
        font-size: 2.5rem;
    }
}

@media only screen and (max-width: 319px) {
    .module_headline-link,
    .module_headline-text {
        font-size: 18px;
        font-size: 1.8rem;
    }
}

.module_more-link {
    line-height: 1.2;
    color: #8c8c8c;
    text-decoration: underline;
}

@media only screen and (min-width: 320px) {
    .module_more-link {
        font-size: calc(13px + ((1vw - 3.2px) * 0.1875));
        font-size: calc(1.3rem + ((1vw - 3.2px) * 0.1875));
    }
}

@media only screen and (min-width: 1920px) {
    .module_more-link {
        font-size: 16px;
        font-size: 1.6rem;
    }
}

@media only screen and (max-width: 319px) {
    .module_more-link {
        font-size: 13px;
        font-size: 1.3rem;
    }
}

.module_image {
    display: inline-block;
    max-width: 30%;
    margin-bottom: 16px;
}

.module_image--right {
    float: right;
    margin-left: 32px;
}

.module_image--left {
    float: left;
    margin-right: 32px;
}

.module_introduction {
    margin-bottom: 35px;
}

.module_item {
    padding: 50px 0 30px;
    border-bottom: 1px solid #d8d8d8;
}
.module-committee .module_item {
    border-bottom: 0;
}
.module_item:first-child {
    border-top: 1px solid #d8d8d8;
}

@media only screen and (max-width: 767px) {
    .module_item {
        padding-top: 30px;
        padding-bottom: 20px;
    }
}

.module_label {
    display: inline-block;
    margin-bottom: 5px;
}

@media only screen and (min-width: 320px) {
    .module_label {
        font-size: calc(13px + ((1vw - 3.2px) * 0.0625));
        font-size: calc(1.3rem + ((1vw - 3.2px) * 0.0625));
    }
}

@media only screen and (min-width: 1920px) {
    .module_label {
        font-size: 14px;
        font-size: 1.4rem;
    }
}

@media only screen and (max-width: 319px) {
    .module_label {
        font-size: 13px;
        font-size: 1.3rem;
    }
}

.module_label + .module_required {
    font-size: 14px;
    font-size: 1.4rem;
}

@media only screen and (min-width: 320px) {
    .module_label + .module_required {
        font-size: calc(13px + ((1vw - 3.2px) * 0.0625));
        font-size: calc(1.3rem + ((1vw - 3.2px) * 0.0625));
    }
}

@media only screen and (min-width: 1920px) {
    .module_label + .module_required {
        font-size: 14px;
        font-size: 1.4rem;
    }
}

@media only screen and (max-width: 319px) {
    .module_label + .module_required {
        font-size: 13px;
        font-size: 1.3rem;
    }
}

.module_links > *,
.module_links li,
.module_links .module_presentation {
    display: inline;
}

@media only screen and (max-width: 480px) {
    .module_links > *,
    .module_links li,
    .module_links .module_presentation {
        display: block;
    }
}

.module_links.module_links--stack > *,
.module_links.module_links--stack li,
.module_links.module_links--stack .module_presentation {
    display: block;
}

.module_link {
    display: inline-block;
    vertical-align: middle;
    margin: 0 15px 5px 0;
    line-height: 1.2;
    color: #8c8c8c;
    text-decoration: underline;
}

@media only screen and (min-width: 320px) {
    .module_link {
        font-size: calc(13px + ((1vw - 3.2px) * 0.1875));
        font-size: calc(1.3rem + ((1vw - 3.2px) * 0.1875));
    }
}

@media only screen and (min-width: 1920px) {
    .module_link {
        font-size: 16px;
        font-size: 1.6rem;
    }
}

@media only screen and (max-width: 319px) {
    .module_link {
        font-size: 13px;
        font-size: 1.3rem;
    }
}

.module_link > .module_link-text,
.module_link > i,
.module_link > span {
    vertical-align: middle;
}

.module_link > i:before {
    display: block;
}

.module_link[style="DISPLAY:block;"],
.module_link[style="display: block;"] {
    display: inline-block !important;
}

.module_loader {
    display: inline-block;
    animation: spin 1s linear infinite;
}

.module_message {
    display: block;
    margin: 16px 0;
}

.module_message[style$="hidden;"],
.module_message:empty {
    display: none;
}

.module_message--success {
    color: #23a217;
}

.module_message--success:before {
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\ed71";
    margin-right: 5px;
}

.module_message--error {
    color: #b72121;
}

.module_message--error:before {
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\ed4f";
    margin-right: 5px;
}

.module_nav {
    text-align: center;
    white-space: nowrap;
    overflow-x: auto;
}

.module_nav:not(:empty) {
    margin-bottom: 70px;
}

.module_nav .module_nav-link-wrap {
    display: inline-block;
    vertical-align: middle;
}

.module_nav .module_nav-link-wrap + .module_nav-link-wrap:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    background-color: #2b2b2b;
    border-radius: 100%;
    width: 4px;
    height: 4px;
    margin-top: -5px;
    margin-left: 22px;
    margin-right: 22px;
}

.module_nav-link,
.module_nav .ModuleYearLink,
.module_nav-link:visited,
.module_nav .ModuleYearLink:visited {
    display: inline-block;
    margin-bottom: 10px;
    color: #d6d6d6;
    text-decoration: none;
    cursor: pointer;
}

@media only screen and (min-width: 320px) {
    .module_nav-link,
    .module_nav .ModuleYearLink,
    .module_nav-link:visited,
    .module_nav .ModuleYearLink:visited {
        font-size: calc(18px + ((1vw - 3.2px) * 0.3125));
        font-size: calc(1.8rem + ((1vw - 3.2px) * 0.3125));
    }
}

@media only screen and (min-width: 1920px) {
    .module_nav-link,
    .module_nav .ModuleYearLink,
    .module_nav-link:visited,
    .module_nav .ModuleYearLink:visited {
        font-size: 23px;
        font-size: 2.3rem;
    }
}

@media only screen and (max-width: 319px) {
    .module_nav-link,
    .module_nav .ModuleYearLink,
    .module_nav-link:visited,
    .module_nav .ModuleYearLink:visited {
        font-size: 18px;
        font-size: 1.8rem;
    }
}

.module_nav-link.selected,
.module_nav-link.selected:visited,
.module_nav-link.js--selected,
.module_nav-link.js--selected:visited,
.module_nav .ModuleYearLink.selected,
.module_nav .ModuleYearLink.selected:visited,
.module_nav-link.selected:visited,
.module_nav-link.selected:visited:visited,
.module_nav .ModuleYearLink.selected:visited,
.module_nav .ModuleYearLink.selected:visited:visited {
    color: #2b2b2b;
    cursor: default;
}

@media only screen and (max-width: 767px) {
    .module_nav .module_nav-link-wrap + .module_nav-link-wrap:before {
        margin-left: 10px;
        margin-right: 10px;
    }

    .module_nav:not(:empty) {
        margin-bottom: 40px;
    }
}

@media only screen and (max-width: 480px) {
    .module_nav-link,
    .module_nav .ModuleYearLink,
    .module_nav-link:visited,
    .module_nav .ModuleYearLink:visited {
        margin-bottom: 10px;
    }
}

.module_options-label,
.module_options-select {
    margin-right: 10px;
}

@media only screen and (max-width: 480px) {
    .module_options-label,
    .module_options-select,
    .module_options-submit {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
}

.module_pager a {
    color: #5e5e5e;
}

.module_pager a[href] {
    color: #00782e;
}

.module_reminder .module_input.module_reminder-period,
.module_reminder .module_input.module_reminder-email {
    margin-right: 10px;
}

.module_reminder.js--reminded {
    display: none;
}

@media only screen and (max-width: 767px) {
    .module_reminder .module_input.module_reminder-period,
    .module_reminder .module_input.module_reminder-email,
    .module_reminder-button {
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
}

.module_required {
    color: #5e5e5e;
}

.module_required-text {
    font-size: 13px;
    font-size: 1.3rem;
    color: #5e5e5e;
}

.module_rss {
    float: right;
}

@media only screen and (max-width: 767px) {
    .module_rss--top {
        margin-top: -20px;
    }
}

.module_speakers li {
    margin-bottom: 5px;
}

.module_title {
    margin-top: 0;
}

h2.module_title {
    font-size: 41px;
    font-size: 4.1rem;
    text-align: center;
}

@media only screen and (min-width: 320px) {
    h2.module_title {
        font-size: calc(26px + ((1vw - 3.2px) * 0.9375));
        font-size: calc(2.6rem + ((1vw - 3.2px) * 0.9375));
    }
}

@media only screen and (min-width: 1920px) {
    h2.module_title {
        font-size: 41px;
        font-size: 4.1rem;
    }
}

.module-title-left h2.module_title,
h2.module_title.text-left {
    text-align: left;
}

.module-title-right h2.module_title,
h2.module_title.text-right {
    text-align: right;
}

.module-title-large h2.module_title,
h2.module_title--large {
    font-size: 65px;
    font-size: 6.5rem;
}

@media only screen and (min-width: 320px) {
    .module-title-large h2.module_title,
    h2.module_title--large {
        font-size: calc(26px + ((1vw - 3.2px) * 2.4375));
        font-size: calc(2.6rem + ((1vw - 3.2px) * 2.4375));
    }
}

@media only screen and (min-width: 1920px) {
    .module-title-large h2.module_title,
    h2.module_title--large {
        font-size: 65px;
        font-size: 6.5rem;
    }
}

.module-title-small h2.module_title,
h2.module_title--small {
    font-family: gdsherpa, Arial, sans-serif;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 400;
}

@media only screen and (min-width: 320px) {
    .module-title-small h2.module_title,
    h2.module_title--small {
        font-size: calc(12px + ((1vw - 3.2px) * 0.375));
        font-size: calc(1.2rem + ((1vw - 3.2px) * 0.375));
    }
}

@media only screen and (min-width: 1920px) {
    .module-title-small h2.module_title,
    h2.module_title--small {
        font-size: 18px;
        font-size: 1.8rem;
    }
}

@media only screen and (max-width: 319px) {
    h2.module_title {
        font-size: 26px;
        font-size: 2.6rem;
    }

    .module-title-large h2.module_title,
    h2.module_title--large {
        font-size: 26px;
        font-size: 2.6rem;
    }

    .module-title-small h2.module_title,
    h2.module_title--small {
        font-size: 12px;
        font-size: 1.2rem;
    }
}

.module_view-all-link {
    color: #2b2b2b;
    border-radius: 0;
    font-family: gdsherpa, Arial, sans-serif;
    line-height: 1;
    display: inline-block;
    background-color: #fff;
    border: 1px solid #afafaf;
    font-weight: 700;
    transition: 0.3s ease-in-out;
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
}

@media only screen and (min-width: 320px) {
    .module_view-all-link {
        font-size: calc(14px + ((1vw - 3.2px) * 0.125));
        font-size: calc(1.4rem + ((1vw - 3.2px) * 0.125));
    }
}

@media only screen and (min-width: 1920px) {
    .module_view-all-link {
        font-size: 16px;
        font-size: 1.6rem;
    }
}

@media only screen and (max-width: 375px) {
    .module-event .module_item {
        padding-bottom: 30px !important;
    }

    .module-presentation .module_item {
        padding-bottom: 20px !important;
    }
}

@media only screen and (max-width: 319px) {
    .module_view-all-link {
        font-size: 14px;
        font-size: 1.4rem;
    }
}

@media only screen and (max-width: 767px) {
    .module_view-all-link {
        display: block;
    }
}

.module_input[type="text"],
.module_input[type="email"],
.module_input[type="file"],
.module_dropdown,
.module textarea.module_input {
    display: block;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* Text area demands width*/
    width: 100%;
    max-width: none;
    padding: 7px 30px;
    border: 1px solid #afafaf;
    border-radius: 0;
    background-color: #fff;
    font-family: gdsherpa, Arial, sans-serif;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1;
}

.module_input[type="text"]::-ms-clear,
.module_input[type="email"]::-ms-clear,
.module_input[type="file"]::-ms-clear,
.module_dropdown::-ms-clear,
.module textarea.module_input::-ms-clear {
    display: none;
}

.module textarea.module_input {
    resize: vertical;
}

.module_input[type="file"],
.module_dropdown {
    cursor: pointer;
}

.module_input[type="file"] {
    line-height: 1;
}

.module_input--brand[type="text"] {
    display: inline-block;
    width: auto;
}

.module_dropdown {
    background: #afafaf url("../design/svg/q4-icon_chevron-down-black.svg") no-repeat right 20px center;
    background-size: 14px 14px;
}

.module_dropdown::-ms-expand {
    display: none;
}

.module-details .module_date-time {
    margin-bottom: 15px;
}

/*------- Captcha Component ------*/
.CaptchaContainer {
    display: none;
}

.CaptchaContainer table tr:nth-child(1) {
    display: none;
}

.CaptchaContainer table tr:nth-child(2) td {
    padding-bottom: 20px;
}

.CaptchaContainer table tr:nth-child(3) td {
    padding-bottom: 5px;
    font-size: 14px;
    font-size: 1.4rem;
}

.CaptchaContainer table tr:nth-child(3) td span {
    display: none !important;
}

.CaptchaContainer table tr:nth-child(4) span {
    display: none !important;
}

.CaptchaContainer table tr td {
    padding-right: 10px;
}

@media only screen and (max-width: 768px) {
    .CaptchaContainer table tr td {
        padding-right: 0;
    }
}

.CaptchaContainer input[type="text"] {
    appearance: none;
    -webkit-appearance: none;
    display: block;
    max-width: none;
    padding: 7px 30px;
    border: 1px solid #afafaf;
    border-radius: 0;
    background-color: #fff;
    font-family: inherit;
    font-size: 16px;
    font-size: 1.6rem;
}

.fancybox-container .CaptchaContainer table tr:nth-child(4) td {
    padding-bottom: 20px;
}

.fancybox-container .CaptchaContainer table tr td {
    padding-right: 0;
}

/*- Investment Calculator Widget -*/
.module-calculator_input:not(:last-of-type) {
    margin-bottom: 20px;
}

.module-calculator_input h4 {
    margin-bottom: 12px;
}

.module-calculator_input label {
    display: inline-block;
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 5px;
}

.module-calculator_input input[type="checkbox"] + label {
    margin: 0;
}

.module-calculator_input-row {
    padding-bottom: 10px;
}

.module-calculator_input-row input[type="text"] {
    margin-top: 10px;
    max-width: 300px;
}

.module-calculator_input-row--other input[type="text"] {
    display: none;
}

.module-calculator_input-row--other input.js--revealed[type="text"] {
    display: block;
}

@media screen and (min-width: 1024px) {
    .module-calculator_popup-container {
        min-width: 920px;
    }
}

@media screen and (min-width: 481px) and (max-width: 768px) {
    .module-calculator_popup-container .table thead {
        display: none;
    }

    .module-calculator_popup-container .table tbody {
        border-top: 2px solid #00782e;
        border-bottom: 2px solid #00782e;
    }

    .module-calculator_popup-container .table td {
        display: block;
    }

    .module-calculator_popup-container .table td:before {
        content: attr(data-heading) ": ";
        font-weight: bold;
    }
}

.module-calculator_info td:first-child:before {
    content: none;
}

/*- Committee Composition Widget -*/
@media only screen and (max-width: 768px) {
    .module-committee .module_container--desktop {
        display: none;
    }
}

.module-committee .module_container--tablet {
    display: none;
}

@media only screen and (max-width: 768px) {
    .module-committee .module_container--tablet {
        display: block;
    }
}

.module-committee .module_header {
    display: block;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    font-weight: normal;
}

.module-committee .module_item {
    padding: 0;
}

.module-committee .module_item ~ .module_item {
    border: 0;
}

.module-committee .module_item:nth-child(even) {
    background: rgba(0, 0, 0, 0.05);
}

.module-committee .grid_col {
    padding: 20px 15px;
    text-align: center;
}

.module-committee .grid_col:first-child {
    text-align: left;
}

.module-committee_category.js--active .module_header i:before {
    content: "\edc2";
}

.module-committee_custom-role {
    margin-left: 5px;
}

.module-committee_bio {
    padding: 0 15px 20px;
    text-align: left;
}

.module-committee_bio p {
    margin: 0;
}

.module-committee_bio p:not(:last-of-type) {
    margin-bottom: 16px;
}

.module-committee_legend-container {
    padding: 20px 15px;
}

.module-committee_legend {
    display: inline-block;
    margin-right: 30px;
}

.module-committee_legend i {
    margin-right: 5px;
}

/*----- Download List Module -----*/
.module-downloads .module_nav {
    display: none;
}

.module-downloads .module_header {
    display: block;
    color: #2b2b2b;
}

.module_header-text.module-downloads_description,
.module_header-text.module-downloads_title {
    display: inline-block;
    vertical-align: middle;
    box-sizing: border-box;
    margin-right: -0.25em;
    min-height: 1px;
    padding-top: 25px;
    padding-bottom: 25px;
    font-weight: 700;
}

@media only screen and (min-width: 320px) {
    .module_header-text.module-downloads_description,
    .module_header-text.module-downloads_title {
        font-size: calc(16px + ((1vw - 3.2px) * 0.125));
        font-size: calc(1.6rem + ((1vw - 3.2px) * 0.125));
    }
}

@media only screen and (min-width: 1920px) {
    .module_header-text.module-downloads_description,
    .module_header-text.module-downloads_title {
        font-size: 18px;
        font-size: 1.8rem;
    }
}

@media only screen and (max-width: 319px) {
    .module_header-text.module-downloads_description,
    .module_header-text.module-downloads_title {
        font-size: 16px;
        font-size: 1.6rem;
    }
}

.module_header-text.module-downloads_description {
    width: 80%;
}

.module_header-text.module-downloads_title {
    width: 20%;
    text-align: right;
}

.module-downloads .module_header + .module_item {
    border-top: 1px solid #d8d8d8;
}

.module-downloads .module_item {
    padding: 42px 0;
}

.module-downloads_thumbnail,
.module-downloads_description,
.module-downloads_date {
    display: none;
}

.module-downloads_title {
    position: relative;
}

.module-downloads_title-link {
    color: #2b2b2b;
    margin: 0 55px 0 0;
    text-decoration: none;
}

@media only screen and (min-width: 320px) {
    .module-downloads_title-link {
        font-size: calc(16px + ((1vw - 3.2px) * 0.125));
        font-size: calc(1.6rem + ((1vw - 3.2px) * 0.125));
    }
}

@media only screen and (min-width: 1920px) {
    .module-downloads_title-link {
        font-size: 18px;
        font-size: 1.8rem;
    }
}

@media only screen and (max-width: 319px) {
    .module-downloads_title-link {
        font-size: 16px;
        font-size: 1.6rem;
    }
}

.module-downloads_title-link:before {
    color: #8c8c8c;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    text-transform: uppercase;
    text-decoration: underline;
}

.module_links-text .module-downloads_title-link:before {
    content: "html";
}

.module_links-text .module-downloads_title-link[href$=".pdf"]:before,
.module_links-text .module-downloads_title-link[href$=".PDF"]:before {
    content: "pdf";
}

.module_links-text .module-downloads_title-link[href$=".doc"]:before,
.module_links-text .module-downloads_title-link[href$=".DOC"]:before,
.module_links-text .module-downloads_title-link[href$=".rtf"]:before,
.module_links-text .module-downloads_title-link[href$=".RTF"]:before {
    content: "rtf";
}

.module_links-text .module-downloads_title-link[href$=".xls"]:before,
.module_links-text .module-downloads_title-link[href$=".XLS"]:before {
    content: "xls";
}

.module_links-text .module-downloads_title-link[href$=".zip"]:before,
.module_links-text .module-downloads_title-link[href$=".ZIP"]:before {
    content: "zip";
}

@media only screen and (max-width: 767px) {
    .module_header-text.module-downloads_description {
        width: 70%;
    }

    .module_header-text.module-downloads_title {
        width: 30%;
    }

    .module-downloads .module_item {
        padding: 25px 0;
    }

    .module-downloads_title-link {
        margin-right: 50px;
    }
}

/*--------- Event Module ---------*/
.module-event .module_item {
    padding-bottom: 50px;
}

.module-event .module_location,
.module-event .module_speakers h4,
.module-event .module_body {
    display: none;
}

.module-event .module_date-time,
.module-event .module_links,
.module-event .module_more {
    display: inline;
}

.module-event .module_links:not(:empty):before {
    content: "\2014";
    margin: 0 12px;
    color: #8c8c8c;
}

.module-event .module_more:before {
    content: "|";
    margin: 0 12px;
    font-size: 14px;
    vertical-align: baseline;
}

.module-event .module_options {
    margin-bottom: 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #dddddd;
}

.module-event-archive.module-event-archive.module-event-archive {
    padding-top: 140px;
}

@media only screen and (max-width: 767px) {
    .module-event-archive.module-event-archive.module-event-archive {
        padding-top: 50px;
    }
}

.module-event-archive .module_title {
    margin-bottom: 50px;
}

@media only screen and (max-width: 375px) {
    .module-event-archive .module_title {
        margin-bottom: 25px;
    }
}

.module-event-details .module_speakers h4 {
    display: none;
}

.module-event-latest .module_container--content {
    margin-bottom: 20px;
}

.module-event-latest .module_item {
    margin: 10px 0;
    border: none;
    text-align: left;
    padding-top: 0;
    padding-bottom: 0;
}

.module-event-latest .module_item.grid_col {
    padding-left: 20px;
}

.module-event-latest .module_item-wrap {
    padding: 30px;
    background-color: #afafaf;
}

.module-event-latest .module_date-time {
    margin-bottom: 15px;
    font-weight: normal;
}

.module-event-latest .module_headline {
    line-height: 150%;
    font-weight: 200;
}

.module-event-latest .module_links {
    margin: 0;
}

.module-event-latest.background--grey .module_item-wrap {
    background-color: #fff;
}

.module-event-latest.module-event-list .module_item {
    padding-left: 0;
    padding-top: 20px;
}

.module-event-latest.module-event-list .module_item + .module_item {
    border-top: 1px solid #dddddd;
}

.module-event-upcoming .module_nav {
    display: none;
}

.module-event-calendar {
    display: table;
    width: 100%;
}

.module-event-calendar_calendar-container,
.module-event-calendar_event-container {
    display: table-cell;
    width: 50%;
    text-align: center;
    vertical-align: middle;
}

.module-event-calendar_calendar-container {
    padding-right: 20px;
}

.module-event-calendar_event-container {
    padding: 50px;
    border: 1px solid #d8d8d8;
}

.module-event-calendar_event-container .module_item {
    border: none;
}

.module-event-calendar_splash i {
    font-size: 40px;
    font-size: 4rem;
    color: #00782e;
}

.module-event-calendar_splash p {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.2;
}

.module-event-calendar_controls {
    padding: 20px 15px;
    background-color: #00782e;
    font-weight: bold;
    color: #fff;
}

.module-event-calendar_previous-month,
.module-event-calendar_month,
.module-event-calendar_next-month {
    display: inline-block;
}

.module-event-calendar_previous-month,
.module-event-calendar_next-month {
    cursor: pointer;
}

.module-event-calendar_previous-month {
    float: left;
}

.module-event-calendar_next-month {
    float: right;
}

.module-event-calendar_day-container {
    border-bottom: 1px solid #d8d8d8;
}

.module-event-calendar_day {
    position: relative;
    width: 14.285%;
    margin: 0;
    padding: 8px 0 25px;
    border-top: 1px solid #d8d8d8;
    border-left: 1px solid #d8d8d8;
}

.module-event-calendar_day.calendar-dow-6 {
    border-right: 1px solid #d8d8d8;
}

.module-event-calendar_day--name {
    padding: 15px 0 10px;
    border: none;
}

.module-event-calendar_day--today {
    background: #afafaf;
}

.module-event-calendar_day--event {
    cursor: pointer;
}

.module-event-calendar_day--event:after {
    content: "";
    position: absolute;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: block;
    height: 4px;
    background-color: #00782e;
}

.module-event-calendar_day--selected {
    background-color: #00782e;
    color: #fff;
}

.module-event-calendar_day--selected:after {
    background-color: #fff;
}

.module-event-calendar_day--adjacent-month {
    color: rgba(51, 51, 51, 0.1);
    pointer-events: none;
}

.module-event-calendar_day--adjacent-month:after {
    content: none;
}

.module-event-calendar .module_item {
    padding: 0;
}

.module-event-calendar .module_date-time,
.module-event-calendar .module_headline {
    margin-bottom: 20px;
}

.module-event-calendar .module_add-to-calendar {
    margin: 0;
}

.module-event .module_links--separator .module_link > .module_link-text,
.module-event .module_links--separator .module_link > i,
.module-event .module_links--separator .module_link > span,
.module-event-details .module_links--separator .module_link > .module_link-text,
.module-event-details .module_links--separator .module_link > i,
.module-event-details .module_links--separator .module_link > span {
    vertical-align: baseline;
}

.module-event .module_links--separator > *:not(:first-child):before {
    content: "|";
    margin: 0 12px;
    font-size: 14px;
    vertical-align: baseline;
}

.module-event .module_links--separator .module_link {
    margin-right: 0;
}

.module-event .module_links--separator .module_attachments li:not(:first-child):before,
.module-event .module_links--separator .module_financials li:not(:first-child):before {
    content: "|";
    margin: 0 12px;
    font-size: 14px;
    vertical-align: baseline;
}

.module-event-details .module_links--separator > *:not(:first-child):before {
    content: "|";
    margin: 0 12px;
    font-size: 14px;
    vertical-align: baseline;
}

.module-event-details .module_links--separator .module_link {
    margin-right: 0;
}

.module-event-details .module_links--separator .module_attachments li:not(:first-child):before,
.module-event-details .module_links--separator .module_financials li:not(:first-child):before {
    content: "|";
    margin: 0 12px;
    font-size: 14px;
    vertical-align: baseline;
}

.module-event-details .module_links--separator .module_add-to-calendar.js--hidden + .module_webcast:before,
.module-event-details .module_links--separator .module_add-to-calendar + .module_webcast:empty + *:before {
    content: none;
}

@media only screen and (max-width: 768px) {
    .module-event-calendar {
        display: block;
    }

    .module-event-calendar_calendar-container,
    .module-event-calendar_event-container {
        display: block;
        width: 100%;
    }

    .module-event-calendar_calendar-container {
        padding-right: 0;
    }

    .module-event-calendar_event-container {
        margin-top: 20px;
    }
}

@media only screen and (max-width: 480px) {
    .module-event-calendar_day {
        display: inline-block;
    }

    .module-event .module_links > *,
    .module-event .module_links li,
    .module-event .module_links .module_presentation,
    .module-event-details .module_links > *,
    .module-event-details .module_links li,
    .module-event-details .module_links .module_presentation {
        display: inline;
    }
}

/*---------- FAQ Module ----------*/
.module-faq .module_item {
    padding: 0;
}

.module-faq_question {
    font-family: gdsherpa, Arial, sans-serif;
    margin: 0;
    padding: 35px 35px 35px 0;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    margin-top: 0;
    cursor: pointer;
}

@media only screen and (min-width: 320px) {
    .module-faq_question {
        font-size: calc(20px + ((1vw - 3.2px) * 0.3125));
        font-size: calc(2rem + ((1vw - 3.2px) * 0.3125));
    }
}

@media only screen and (min-width: 1920px) {
    .module-faq_question {
        font-size: 25px;
        font-size: 2.5rem;
    }
}

@media only screen and (max-width: 319px) {
    .module-faq_question {
        font-size: 20px;
        font-size: 2rem;
    }
}

.module-faq_question:after {
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e912";
    font-size: 15px;
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.module-faq .module_item.js--active .module-faq_question:after {
    -webkit-transform: translateY(-50%) rotate(90deg);
    -ms-transform: translateY(-50%) rotate(90deg);
    transform: translateY(-50%) rotate(90deg);
}

.module-faq_answer {
    max-width: 850px;
    padding-top: 10px;
    padding-bottom: 50px;
}

.module-faq_answer > *:first-child {
    margin-top: 0;
    padding-top: 0;
}

.module-faq_answer > *:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.module-faq_answer p {
    margin: 0;
    padding: 0 0 10px;
}

.module-faq .toggle-all a:before {
    content: "Show all";
}

.module-faq .toggle-all.js--active a:before {
    content: "Hide all";
}

@media only screen and (max-width: 767px) {
    .module-faq_question {
        padding-top: 25px;
        padding-bottom: 25px;
    }

    .module-faq_question:after {
        right: 0;
    }

    .module-faq_answer {
        padding-top: 0;
        padding-bottom: 30px;
    }
}

/*--- Financial Report Modules ---*/
.module-financial-year.module-financial-year.module-financial-year.module-financial-year {
    padding-top: 110px;
}

@media only screen and (max-width: 767px) {
    .module-financial-year.module-financial-year.module-financial-year.module-financial-year {
        padding-top: 30px;
    }
}

.module-financial-year .module_container--inner {
    padding-top: 30px;
}

.module-financial-year .module_introduction {
    display: none;
}

.module-financial-year .module_container--content.grid {
    margin-left: -40px;
}

.module-financial-year .module-financial_year.grid_col {
    padding-left: 40px;
    padding-bottom: 40px;
}

.module-financial-year .module-financial_year.grid_col:last-child {
    padding-bottom: 0;
}

.module-financial-year .module-financial_year-text-cover {
    position: relative;
}

.module-financial-year .module-financial_year-text {
    margin: 0;
    text-align: left;
    color: #fff;
    position: absolute;
    top: 30%;
    left: 0;
    right: 0;
    padding: 0 60px;
}

@media only screen and (min-width: 320px) {
    .module-financial-year .module-financial_year-text {
        font-size: calc(30px + ((1vw - 3.2px) * 0.6875));
        font-size: calc(3rem + ((1vw - 3.2px) * 0.6875));
    }
}

@media only screen and (min-width: 1920px) {
    .module-financial-year .module-financial_year-text {
        font-size: 41px;
        font-size: 4.1rem;
    }
}

@media only screen and (max-width: 319px) {
    .module-financial-year .module-financial_year-text {
        font-size: 30px;
        font-size: 3rem;
    }
}

.module-financial-year .module-financial_year-text > span {
    display: block;
}

.module-financial-year .module-financial_year-text > span:first-child {
    font-family: gdsherpa, Arial, sans-serif;
    font-weight: 700;
    margin-bottom: 15px;
    color: #d8efef;
}

.module-financial-year .module-financial_year:nth-child(4n + 1) .module-financial_year-text > span:first-child {
    color: #d9f2e2;
}

.module-financial-year .module-financial_year:nth-child(4n + 2) .module-financial_year-text > span:first-child {
    color: #ffeea9;
}

@media only screen and (min-width: 320px) {
    .module-financial-year .module-financial_year-text > span:first-child {
        font-size: calc(20px + ((1vw - 3.2px) * 0.3125));
        font-size: calc(2rem + ((1vw - 3.2px) * 0.3125));
    }
}

@media only screen and (min-width: 1920px) {
    .module-financial-year .module-financial_year-text > span:first-child {
        font-size: 25px;
        font-size: 2.5rem;
    }
}

@media only screen and (max-width: 319px) {
    .module-financial-year .module-financial_year-text > span:first-child {
        font-size: 20px;
        font-size: 2rem;
    }
}

.module-financial-year .module_cover {
    margin-bottom: 25px;
}

.module-financial-year .module_cover img {
    display: block !important;
    width: 100%;
}

.module-financial-year .module_item {
    padding: 0;
    border: none;
}

.module-financial-year .module_item ~ .module_item {
    border: none;
}

.module-financial-year .module_links {
    margin: 0;
}

.module-financial-year .module_link {
    margin-right: 0;
}

@media only screen and (max-width: 767px) {
    .module-financial-year .module_link {
        display: block;
    }
}

.module-financial-year .button {
    font-size: 0;
    line-height: 0;
    padding-top: 17.5px;
    padding-bottom: 17.5px;
}

.module-financial-year .button:before {
    content: "Download PDF";
    line-height: 1;
}

@media only screen and (min-width: 320px) {
    .module-financial-year .button:before {
        font-size: calc(12px + ((1vw - 3.2px) * 0.125));
        font-size: calc(1.2rem + ((1vw - 3.2px) * 0.125));
    }
}

@media only screen and (min-width: 1920px) {
    .module-financial-year .button:before {
        font-size: 14px;
        font-size: 1.4rem;
    }
}

@media only screen and (max-width: 319px) {
    .module-financial-year .button:before {
        font-size: 12px;
        font-size: 1.2rem;
    }
}

.module-financial-year .module-financial_year {
    text-align: center;
}

.module-financial-quarter .module_options {
    margin-bottom: 40px;
}

.module-financial-quarter .dropdown {
    min-width: 256px;
}

.module-financial-quarter .module_options-label {
    display: block;
    font-weight: 700;
    color: #111111;
    margin-bottom: 7px;
}

@media only screen and (min-width: 320px) {
    .module-financial-quarter .module_options-label {
        font-size: calc(15px + ((1vw - 3.2px) * 0.0625));
        font-size: calc(1.5rem + ((1vw - 3.2px) * 0.0625));
    }
}

@media only screen and (min-width: 1920px) {
    .module-financial-quarter .module_options-label {
        font-size: 16px;
        font-size: 1.6rem;
    }
}

@media only screen and (max-width: 319px) {
    .module-financial-quarter .module_options-label {
        font-size: 15px;
        font-size: 1.5rem;
    }
}

.module-financial-quarter .module_item {
    padding: 0;
}

.module-financial-quarter .module_links {
    margin: 0;
    padding-top: 20px;
    padding-bottom: 50px;
}

.module-financial-quarter .module_links > div {
    display: block;
}

.module-financial-quarter .module_link {
    margin-bottom: 10px;
}

.module-financial-quarter .module-financial_year-text {
    font-family: gdsherpa, Arial, sans-serif;
    margin: 0;
    padding: 35px 30px 35px 0;
    font-weight: 700;
    cursor: pointer;
    position: relative;
}

@media only screen and (min-width: 320px) {
    .module-financial-quarter .module-financial_year-text {
        font-size: calc(20px + ((1vw - 3.2px) * 0.3125));
        font-size: calc(2rem + ((1vw - 3.2px) * 0.3125));
    }
}

@media only screen and (min-width: 1920px) {
    .module-financial-quarter .module-financial_year-text {
        font-size: 25px;
        font-size: 2.5rem;
    }
}

@media only screen and (max-width: 319px) {
    .module-financial-quarter .module-financial_year-text {
        font-size: 20px;
        font-size: 2rem;
    }
}

.module-financial-quarter .module-financial_year-text:after {
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e912";
    font-size: 15px;
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.module-financial-quarter .module_item.js--active h3:after {
    -webkit-transform: translateY(-50%) rotate(90deg);
    -ms-transform: translateY(-50%) rotate(90deg);
    transform: translateY(-50%) rotate(90deg);
}

.module-financial-quarter_ccfi {
    padding-top: 60px;
}

.module-financial-quarter_ccfi > *:first-child {
    margin-top: 0;
}

.module-financial-quarter_ccfi > *:last-child {
    margin-bottom: 0;
}

@media only screen and (min-width: 320px) {
    .module-financial-quarter_ccfi {
        font-size: calc(14px + ((1vw - 3.2px) * 0.25));
        font-size: calc(1.4rem + ((1vw - 3.2px) * 0.25));
    }
}

@media only screen and (min-width: 1920px) {
    .module-financial-quarter_ccfi {
        font-size: 18px;
        font-size: 1.8rem;
    }
}

@media only screen and (max-width: 319px) {
    .module-financial-quarter_ccfi {
        font-size: 14px;
        font-size: 1.4rem;
    }
}

.module-financial-table_header {
    background-color: #00782e;
    color: #fff;
}

.module-financial-table_header-year-container {
    text-align: center;
}

.module-financial-table_header-year,
.module-financial-table_header-category.grid_col {
    padding: 20px 15px;
}

.module-financial-table_body-row {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.module-financial-table_body-row:nth-child(even) {
    background-color: #afafaf;
}

.module-financial-table_body-year-container {
    text-align: center;
}

.module-financial-table_body-year,
.module-financial-table_body-category.grid_col {
    padding: 20px 15px;
}

.module-financial-table_item {
    display: inline-block;
    margin-right: 15px;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: normal;
}

.module-financial-table_item ~ .module_item {
    margin-right: 5px;
}

.module-financial-table_item--empty {
    opacity: 0.1;
}

.module-financial-table .slick-slider {
    display: inline-block;
    padding: 0;
}

.module-financial-table .slick-slide:focus {
    outline: none;
}

.module-financial-table .slick-arrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    z-index: 10;
}

.module-financial-table .slick-prev {
    left: 10px;
}

.module-financial-table .slick-next {
    right: 10px;
}

.module-financial-table .slick-disabled {
    opacity: 0.1;
    cursor: default;
}

.module-financial-mashup .module_body {
    max-height: 300px;
    overflow: hidden;
    position: relative;
}

.module-financial-mashup .module_body > *:first-child,
.module-financial-mashup .module_body > style + p {
    margin-top: 0;
}

.module-financial-mashup .module_body:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50px;
    z-index: 1;
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0.5) 0%, white 70%, white 100%);
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.5) 0%, white 70%, white 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, white 70%, white 100%);
}

.module-financial-mashup .module-financial-mashup_documents .module_links + h4 {
    margin-top: 30px;
}

.module-financial-mashup .module-financial-mashup_documents .module_links > div {
    background-color: #afafaf;
    padding: 15px;
    margin-bottom: 1px;
}

.module-financial-mashup .module-financial-mashup_documents .module_links .module_link {
    margin: 0;
}

.module-financial-mashup .q4-icon_chevron-right {
    font-size: 10px;
    font-size: 1rem;
    margin-left: 5px;
}

@media only screen and (max-width: 1280px) {
    .module-financial-year .module-financial_year-text {
        padding: 0 30px;
    }
}

@media only screen and (max-width: 768px) {
    .module-financial-table_item {
        margin-right: 10px;
    }
}

@media only screen and (max-width: 767px) {
    .module-financial-quarter .module-financial_year-text {
        padding-top: 25px;
        padding-bottom: 25px;
    }

    .module-financial-quarter .module_links {
        padding-top: 0;
        padding-bottom: 25px;
    }
}

@media only screen and (max-width: 480px) {
    .module-financial-table_item {
        margin: 5px;
    }
}

/* Latest Quarterly Result Widget */
.module-latest-quarter .module_item {
    margin: 50px 0;
    padding: 0;
}

.module-latest-quarter .module_item ~ .module_item {
    border: none;
}

.module-latest-quarter .module_links {
    margin: 0;
    border-left: 2px solid rgba(255, 255, 255, 0.5);
    text-align: left;
}

.module-latest-quarter .module_links > div {
    display: inline-block;
    text-align: center;
}

.module-latest-quarter .module_link {
    margin: 0;
}

.module-latest-quarter .module_link:before {
    display: inline-block;
    font-size: 55px;
    font-size: 5.5rem;
    padding: 0;
}

.module-latest-quarter .module_link-text {
    display: block;
    margin: 15px 0 0;
    font-size: 16px;
    font-size: 1.6rem;
    text-transform: none;
    font-weight: normal;
}

.module-latest-quarter .module-financial_type-text,
.module-latest-quarter .module-financial_year-text {
    display: inline-block;
    width: 100%;
}

.module-latest-quarter .module-financial_type-text {
    font-size: 55px;
    font-size: 5.5rem;
    font-weight: normal;
}

.module-latest-quarter .module-financial_year-text {
    margin-top: 15px;
    font-size: 24px;
    font-size: 2.4rem;
}

.module-latest-quarter .grid_col {
    vertical-align: bottom;
}

@media only screen and (max-width: 1024px) {
    .module-latest-quarter .module_links {
        border-left: 0;
    }

    .module-latest-quarter .module_link {
        margin: 0 0 15px;
    }

    .module-latest-quarter .grid_col {
        vertical-align: middle;
    }
}

@media only screen and (max-width: 768px) {
    .module-latest-quarter .module_item > div:first-child {
        margin-bottom: 30px;
    }
}

/*------ Formbuilder Module ------*/
.module-form--custom .module_container--content {
    display: none;
}

.module-form--custom .module_container--content.js--visible {
    display: block;
}

.module-form .module_container--content {
    margin-left: -20px;
}

@media only screen and (max-width: 768px) {
    .module-form .module_container--content {
        margin-left: 0;
    }
}

.module-form .module_error-container li[style="visibility: hidden;"] {
    display: none;
}

.module-form .module_required {
    margin-left: 3px;
}

.module-form .module_container--captcha > div {
    margin: 0;
    padding: 0;
}

.module-form .module_container--captcha > div .ErrorMessage {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    font-size: 1.4rem;
    color: #b72121;
}

.module-form .module_container--captcha > div .ErrorMessage[style="visibility: hidden;"] {
    display: none;
}

.module-form_item {
    display: inline-block;
    width: 50%;
    margin-bottom: 20px;
    padding-left: 20px;
    vertical-align: top;
}

.module-form_item > label,
.module-form_item legend {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 14px;
    font-size: 1.4rem;
}

.module-form_item legend {
    float: left;
    margin-bottom: 15px;
    font-size: 16px;
    font-size: 1.6rem;
}

.module-form_item legend ~ ul {
    clear: both;
    padding-left: 10px;
}

.module-form_item ul li:not(:last-of-type) {
    padding-bottom: 5px;
}

.module-form_item--document-request,
.module-form_item--are-you-an-investor {
    width: 100%;
}

@media only screen and (max-width: 768px) {
    .module-form_item {
        width: 100%;
        padding-left: 0;
    }
}

.module-form_error-text {
    color: #b72121;
}

.module-form_error-text[style="visibility:hidden;"] {
    display: none;
}

.module-form .CaptchaContainer {
    display: block;
}

.module-form .CaptchaContainer input[type="text"] {
    width: 100%;
}

.module-glossary .module_header {
    display: block;
}

.module-glossary .module_header table {
    width: 100%;
    table-layout: fixed;
}

.module-glossary .module_header table a {
    color: #5e5e5e;
    font-weight: normal;
}

.module-glossary .module_header table a[href] {
    color: #00782e;
}

/*---------- Job Modules ---------*/
.module-job-details_description-container {
    margin-bottom: 35px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.module-job-details_description {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.module-job-details_description label {
    font-weight: normal;
}

.module-job-details_description input {
    width: auto;
    max-width: none;
    padding: 0;
    border: none;
    float: right;
    font-family: gdsherpa, Arial, sans-serif;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 0;
}

@media only screen and (max-width: 480px) {
    .module-job-details_description label:after {
        content: ":";
    }

    .module-job-details_description input {
        display: block;
        float: none;
        margin-top: 5px;
    }
}

.module-job-details .grid_col {
    padding: 15px 20px;
}

.module-job-application_table {
    display: block;
    width: 100%;
    margin-left: -20px;
    font-size: 0;
}

.module-job-application_table tr {
    display: inline-block;
    width: 50%;
    margin-bottom: 20px;
    padding-left: 20px;
    vertical-align: top;
    font-size: 16px;
    font-size: 1.6rem;
}

.module-job-application_table tr:last-child {
    margin-bottom: 0;
}

.module-job-application_table tr.module-job-application_cover-letter-text,
.module-job-application_table tr.module-job-application_resume-text {
    width: 100%;
}

.module-job-application_table tr td {
    display: block;
    position: relative;
}

.module-job-application_table tr label {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 14px;
    font-size: 1.4rem;
}

@media only screen and (max-width: 768px) {
    .module-job-application_table {
        margin-left: 0;
    }

    .module-job-application_table tr {
        width: 100%;
        padding-left: 0;
    }
}

.module-job-application .module_required {
    font-size: 14px;
    font-size: 1.4rem;
}

/*----- Miscellaneous Modules ----*/
.module-script {
    display: none;
}

.module-slideshow_ratio {
    padding-bottom: 56.25%;
    /* this should be changed with aspecRatio option in widget */
    position: relative;
}

.module-slideshow_viewer:not(.grid_col) {
    display: inline-block;
    width: 100%;
    max-width: 640px;
}

.module-slideshow_viewer:not(.grid_col):not(:last-child) {
    margin-bottom: 25px;
}

.module-slideshow_title {
    margin-bottom: 10px;
    display: none;
}

.module-slideshow .module_links > * + * {
    margin-top: 15px;
}

.module-slideshow_link {
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: bold;
    text-transform: uppercase;
}

.module-slideshow iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
}

.module-rss p + h2 {
    margin: 40px 0 30px;
}

.module_pager {
    color: #444444;
    text-align: center;
}

@media only screen and (min-width: 320px) {
    .module_pager {
        font-size: calc(14px + ((1vw - 3.2px) * 0.125));
        font-size: calc(1.4rem + ((1vw - 3.2px) * 0.125));
    }
}

@media only screen and (min-width: 1920px) {
    .module_pager {
        font-size: 16px;
        font-size: 1.6rem;
    }
}

@media only screen and (max-width: 319px) {
    .module_pager {
        font-size: 14px;
        font-size: 1.4rem;
    }
}

.module_pager > span {
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    margin-bottom: 10px;
}

.module_pager > span:not(:last-child) {
    margin-right: 20px;
}

.pager-active {
    color: #c0c0c0;
    cursor: text;
    pointer-events: none;
}

.pager-disabled {
    color: #c0c0c0;
    cursor: text;
    pointer-events: none;
}

.pager-first,
.pager-prev,
.pager-next,
.pager-last {
    font-size: 0;
}

.pager-first:before,
.pager-prev:before,
.pager-next:before,
.pager-last:before {
    font-family: "q4-icons";
}

@media only screen and (min-width: 320px) {
    .pager-first:before,
    .pager-prev:before,
    .pager-next:before,
    .pager-last:before {
        font-size: calc(12px + ((1vw - 3.2px) * 0.125));
        font-size: calc(1.2rem + ((1vw - 3.2px) * 0.125));
    }
}

@media only screen and (min-width: 1920px) {
    .pager-first:before,
    .pager-prev:before,
    .pager-next:before,
    .pager-last:before {
        font-size: 14px;
        font-size: 1.4rem;
    }
}

@media only screen and (max-width: 319px) {
    .pager-first:before,
    .pager-prev:before,
    .pager-next:before,
    .pager-last:before {
        font-size: 12px;
        font-size: 1.2rem;
    }
}

.pager-prev:before {
    content: "\e913";
}

.pager-next:before {
    content: "\e914";
}

.pager-first:before {
    content: "\e915";
}

.pager-last:before {
    content: "\e916";
}

@media only screen and (max-width: 767px) {
    .module_pager {
        color: inherit;
    }

    .module_pager > span:not(:last-child) {
        margin-right: 15px;
    }
}

/*------ Navigation Modules ------*/
.nav_close {
    display: none;
}

.nav--sitemap {
    width: 100%;
    max-width: 1690px;
    margin: 0 auto;
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 70px;
}

.nav--sitemap a {
    display: inline-block;
}

.nav--sitemap .level1 > li:not(:last-of-type) {
    margin-bottom: 35px;
}

.nav--sitemap .level1 > li > a,
.nav--sitemap .level1 > li > a:visited {
    margin-bottom: 15px;
    font-size: 24px;
    font-size: 2.4rem;
    color: #2b2b2b;
    text-transform: uppercase;
}

.nav--sitemap .level2 > li,
.nav--sitemap .level3 > li {
    padding: 5px 0;
}

.nav--sitemap .level2 > li > a,
.nav--sitemap .level3 > li > a {
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: bold;
    text-transform: uppercase;
}

.nav--sitemap .level2 > li > a {
    margin-bottom: 5px;
}

.nav--sitemap .level3 > li {
    padding-left: 15px;
}

/*-------- News Module CSS -------*/
.module-news-latest.module-news-latest.module-news-latest {
    padding-top: 140px;
}

@media only screen and (max-width: 767px) {
    .module-news-latest.module-news-latest.module-news-latest {
        padding-top: 70px;
    }
}

.module-news-latest .module_container--inner {
    padding-top: 35px;
}

.module-news .module_item {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
}

.module-news .module_headline {
    flex: 0 0 100%;
    max-width: 100%;
    order: -1;
}

.module-news .module_more-link {
    display: block;
}

.module-news .module_date-text:after {
    content: "\2014";
    margin: 0 15px;
}

.module-news .module_footer {
    text-align: center;
}

.module-news .module_view-all-link--bottom {
    margin-top: 80px;
}

.module-news--latest .module_container--content {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.module-news--latest .module_item {
    display: block;
    width: 33.3333333333%;
    padding-left: 70px;
    padding-right: 70px;
    border: none;
    position: relative;
}

.module-news--latest .module_item ~ .module_item {
    border-top: none;
}

.module-news--latest .module_date-time {
    margin-bottom: 20px;
}

.module-news--latest .module_headline {
    order: inherit;
    margin-bottom: 15px;
}

.module-news--latest .module_date-text:after {
    display: none;
}

.module-news--latest .module_more {
    position: absolute;
    left: 70px;
    bottom: 0;
}

@media only screen and (min-width: 320px) {
    .module-news--latest .module_more-link {
        font-size: calc(13px + ((1vw - 3.2px) * 0.3125));
        font-size: calc(1.3rem + ((1vw - 3.2px) * 0.3125));
    }
}

@media only screen and (min-width: 1920px) {
    .module-news--latest .module_more-link {
        font-size: 18px;
        font-size: 1.8rem;
    }
}

@media only screen and (max-width: 319px) {
    .module-news--latest .module_more-link {
        font-size: 13px;
        font-size: 1.3rem;
    }
}

.module-news-details.module-news-details {
    color: #2b2b2b;
    padding-top: 130px;
    line-height: 1.3;
}

@media only screen and (min-width: 320px) {
    .module-news-details.module-news-details {
        font-size: calc(14px + ((1vw - 3.2px) * 0.125));
        font-size: calc(1.4rem + ((1vw - 3.2px) * 0.125));
    }
}

@media only screen and (min-width: 1920px) {
    .module-news-details.module-news-details {
        font-size: 16px;
        font-size: 1.6rem;
    }
}

@media only screen and (max-width: 319px) {
    .module-news-details.module-news-details {
        font-size: 14px;
        font-size: 1.4rem;
    }
}

.module-news-details.module-news-details.module-news-details .module_container--outer {
    max-width: 1130px;
}

.module-news-details .module_view-all-link {
    margin-bottom: 25px;
    display: none;
}

.module-news-details .module_view-all-link--bottom {
    margin-top: 25px;
    margin-bottom: 0;
}

.module-news-details .module_date-time {
    text-align: center;
    color: #2b2b2b;
    font-size: 16px;
    font-family: gdsherpa, Arial, sans-serif;
}

.module-news-details .module-details_title {
    text-align: center;
    margin-top: 40px;
}

.module-news-details_category {
    display: none;
}

.module-news-details ul {
    margin: 16px 0;
    padding-left: 32px;
    list-style-type: disc;
}

.module-news-details ul li {
    line-height: 1.5;
}

.module-news-details a {
    word-break: break-all;
}

.module-news-details_share {
    text-align: center;
    margin-bottom: 80px;
}

.module-news-details_share > * {
    display: inline-block;
    vertical-align: top;
}

.module-news-details_share-title {
    color: #8c8c8c;
}

@media only screen and (min-width: 320px) {
    .module-news-details_share-title {
        font-size: calc(13px + ((1vw - 3.2px) * 0.3125));
        font-size: calc(1.3rem + ((1vw - 3.2px) * 0.3125));
    }
}

@media only screen and (min-width: 1920px) {
    .module-news-details_share-title {
        font-size: 18px;
        font-size: 1.8rem;
    }
}

@media only screen and (max-width: 319px) {
    .module-news-details_share-title {
        font-size: 13px;
        font-size: 1.3rem;
    }
}

.module-news-details_share-title:after {
    content: "\2014";
    margin-left: 10px;
}

.module-news-details_share li {
    display: inline-block;
    margin-left: 10px;
}

@media only screen and (min-width: 320px) {
    .module-news-details_share a {
        font-size: calc(13px + ((1vw - 3.2px) * 0.3125));
        font-size: calc(1.3rem + ((1vw - 3.2px) * 0.3125));
    }
}

@media only screen and (min-width: 1920px) {
    .module-news-details_share a {
        font-size: 18px;
        font-size: 1.8rem;
    }
}

@media only screen and (max-width: 319px) {
    .module-news-details_share a {
        font-size: 13px;
        font-size: 1.3rem;
    }
}

.module-news-details_share .a2a_svg {
    display: none;
}

.module-news-details.module-news-details img:not(.slick-slide) {
    float: none;
    display: block;
    margin: 0 auto;
    padding-top: 70px;
    padding-bottom: 70px;
}

@media only screen and (max-width: 1280px) {
    .module-news--latest .module_item {
        padding-left: 20px;
        padding-right: 20px;
    }

    .module-news--latest .module_more {
        left: 20px;
    }
}

@media only screen and (max-width: 1024px) {
    .module-news-latest .module_container--inner {
        padding-top: 0;
    }
}

@media only screen and (max-width: 1023px) {
    .module-news--latest .module_item {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .module-news--latest .module_more {
        position: static;
        left: 0;
    }
}

@media only screen and (max-width: 767px) {
    .module-news .module_view-all-link--bottom {
        margin-top: 40px;
    }

    .module-news-details_share {
        margin-bottom: 0;
    }

    .module-news-details_share-title:after {
        margin-left: 5px;
    }

    .module-news-details_share li {
        margin-left: 2px;
    }
}

/*------ Person List Module ------*/
.module-person .module-person_description,
.module-person .module-person_res-photo-container,
.module-person .module_comma {
    display: none;
}

.module-person .module_item.module_item {
    position: relative;
    padding: 0 0 0 40px;
    border: none;
}

.module-person .module_item:nth-child(n + 5) {
    padding-top: 105px;
}

.module-person--custom .module_item {
    width: 20%;
}

.module-person--custom .module_item:nth-child(n + 4) {
    padding-top: 0;
}

.module-person--custom .module_item:nth-child(n + 6) {
    padding-top: 105px;
}

.module-person .module-person_photo-container {
    cursor: pointer;
}

.module-person .module-person_photo-container img {
    display: block;
    width: 100%;
}

.module-person .module-person_name-container {
    margin-top: 20px;
    cursor: pointer;
}

.module-person .module-person_name-container h3 {
    font-family: gdsherpa, Arial, sans-serif;
    line-height: 1.7;
    font-weight: 400;
    margin: 0;
}

@media only screen and (min-width: 320px) {
    .module-person .module-person_name-container h3 {
        font-size: calc(16px + ((1vw - 3.2px) * 0.125));
        font-size: calc(1.6rem + ((1vw - 3.2px) * 0.125));
    }
}

@media only screen and (min-width: 1920px) {
    .module-person .module-person_name-container h3 {
        font-size: 18px;
        font-size: 1.8rem;
    }
}

@media only screen and (max-width: 319px) {
    .module-person .module-person_name-container h3 {
        font-size: 16px;
        font-size: 1.6rem;
    }
}

.module-person .module-person_link {
    text-decoration: none;
    color: #2b2b2b;
}

.module-person .module-person_suffix-title-container {
    display: block;
}

.module-person .module-person_suffix,
.module-person .module-person_title {
    color: #8c8c8c;
}

.fancybox-container .module-person {
    margin: 0;
    width: 100%;
}

.fancybox-container .module-person .module_item {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0;
    min-height: 100vh;
    height: 1px;
}

.fancybox-container .module-person_name-container a {
    color: #5e5e5e;
}

.fancybox-container .module-person_photo-container {
    width: 45%;
    background-color: #0b4744;
    text-align: center;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: default;
}

.fancybox-container .module-person_photo-container img {
    max-width: 375px;
}

.fancybox-container .module-person_name-description-res-container {
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 55%;
}

.fancybox-container .module-person_photo-container,
.fancybox-container .module-person_name-description-res-container {
    padding: 100px 5%;
}

.fancybox-container .module-person_name-container {
    cursor: text;
}

.fancybox-container .module-person_name {
    display: block;
    margin-bottom: 10px;
    line-height: 1;
}

.fancybox-container .module-person_name-container h3 {
    line-height: 1;
}

@media only screen and (min-width: 320px) {
    .fancybox-container .module-person_name {
        font-size: calc(18px + ((1vw - 3.2px) * 0.125));
        font-size: calc(1.8rem + ((1vw - 3.2px) * 0.125));
    }
}

@media only screen and (min-width: 1920px) {
    .fancybox-container .module-person_name {
        font-size: 20px;
        font-size: 2rem;
    }
}

@media only screen and (max-width: 319px) {
    .fancybox-container .module-person_name {
        font-size: 18px;
        font-size: 1.8rem;
    }
}

.fancybox-container .module-person_title {
    color: #8c8c8c;
}

@media only screen and (min-width: 320px) {
    .fancybox-container .module-person_title {
        font-size: calc(18px + ((1vw - 3.2px) * 0.125));
        font-size: calc(1.8rem + ((1vw - 3.2px) * 0.125));
    }
}

@media only screen and (min-width: 1920px) {
    .fancybox-container .module-person_title {
        font-size: 20px;
        font-size: 2rem;
    }
}

@media only screen and (max-width: 319px) {
    .fancybox-container .module-person_title {
        font-size: 18px;
        font-size: 1.8rem;
    }
}

.fancybox-container .module-person_description-container {
    margin-top: 40px;
}

.fancybox-container .module-person_description {
    display: block;
}

@media only screen and (min-width: 320px) {
    .fancybox-container .module-person_description {
        font-size: calc(14px + ((1vw - 3.2px) * 0.25));
        font-size: calc(1.4rem + ((1vw - 3.2px) * 0.25));
    }
}

@media only screen and (min-width: 1920px) {
    .fancybox-container .module-person_description {
        font-size: 18px;
        font-size: 1.8rem;
    }
}

@media only screen and (max-width: 319px) {
    .fancybox-container .module-person_description {
        font-size: 14px;
        font-size: 1.4rem;
    }
}

.fancybox-container .module-person .fancybox-close-small {
    font-size: 0;
    line-height: 0;
    top: 60px;
    right: 60px;
    color: #000;
    background: none;
}

.fancybox-container .module-person .fancybox-close-small:before {
    font-family: "q4-icons";
    content: "\e90d";
    font-size: 26px;
    font-size: 2.6rem;
    line-height: 1;
}

.module-person-accordion .module-person_name-container {
    padding: 20px 15px;
    margin-bottom: 10px;
    background-color: #00782e;
    color: #fff;
    cursor: pointer;
}

.module-person-accordion .module-person_name-container h3 {
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: bold;
    color: inherit;
    margin: 0;
}

.module-person-accordion .module-person_name-container h3:before {
    float: right;
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\ed5d";
}

.module-person-accordion .module_item {
    padding: 0;
    border: 0 none;
}

.module-person-accordion .module_item.js--active h3:before {
    content: "\ed5e";
}

.module-person-accordion .module-person_name {
    margin-right: 10px;
}

.module-person-accordion .module-person_title {
    font-size: 14px;
    font-size: 1.4rem;
}

.module-person-accordion .module_comma {
    display: none;
}

.module-person-accordion .module-person_description-container {
    padding: 15px;
}

.module-person-accordion .module-person_photo-container {
    float: left;
    margin: 0 25px 15px 0;
}

.module-person-accordion .module-person_photo-container img {
    display: block;
    margin: auto;
}

.module-person-accordion .module-person_description > *:first-child {
    margin-top: 0;
}

.module-person-accordion .module-person_res-photo-container > span {
    margin-right: 10px;
}

.page-person-details .layout.layout {
    padding-top: 0;
}

/*.page-person-details .pane--header .module-logo a {
    background-image: url('../design/2020/LOCKUP_CLEARSPACE.svg');
  }*/
.page-person-details .pane--header .layout_toggle button {
    color: #000;
}

.page-person-details .layout_footer {
    margin-top: 0;
}

.module-person-details .module_title {
    display: none;
}

.module-person-details .module_comma {
    display: none;
}

.module-person-details.module-person-details .module_container--outer {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}

.module-person-details .module_container--inner {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.module-person-details_photo-container,
.module-person-details_name-description-container {
    padding: 230px 5%;
}

.module-person-details_photo-container {
    width: 45%;
    background-color: #0b4744;
    text-align: center;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
}

.module-person-details_photo-container img {
    width: 100%;
    max-width: 375px;
}

.module-person-details_name-description-container {
    width: 55%;
}

.module-person-details_name {
    display: block;
    margin-bottom: 10px;
    color: #2b2b2b;
}

@media only screen and (min-width: 320px) {
    .module-person-details_name {
        font-size: calc(18px + ((1vw - 3.2px) * 0.125));
        font-size: calc(1.8rem + ((1vw - 3.2px) * 0.125));
    }
}

@media only screen and (min-width: 1920px) {
    .module-person-details_name {
        font-size: 20px;
        font-size: 2rem;
    }
}

@media only screen and (max-width: 319px) {
    .module-person-details_name {
        font-size: 18px;
        font-size: 1.8rem;
    }
}

.module-person-details_suffix,
.module-person-details_title {
    display: block;
    font-size: 20px;
    font-size: 2rem;
    color: #8c8c8c;
}

@media only screen and (min-width: 320px) {
    .module-person-details_suffix,
    .module-person-details_title {
        font-size: calc(18px + ((1vw - 3.2px) * 0.125));
        font-size: calc(1.8rem + ((1vw - 3.2px) * 0.125));
    }
}

@media only screen and (min-width: 1920px) {
    .module-person-details_suffix,
    .module-person-details_title {
        font-size: 20px;
        font-size: 2rem;
    }
}

@media only screen and (max-width: 319px) {
    .module-person-details_suffix,
    .module-person-details_title {
        font-size: 18px;
        font-size: 1.8rem;
    }
}

.module-person-details_description-container {
    margin-top: 40px;
}

@media only screen and (min-width: 320px) {
    .module-person-details_description-container {
        font-size: calc(14px + ((1vw - 3.2px) * 0.25));
        font-size: calc(1.4rem + ((1vw - 3.2px) * 0.25));
    }
}

@media only screen and (min-width: 1920px) {
    .module-person-details_description-container {
        font-size: 18px;
        font-size: 1.8rem;
    }
}

@media only screen and (max-width: 319px) {
    .module-person-details_description-container {
        font-size: 14px;
        font-size: 1.4rem;
    }
}

.module-presentation.module-presentation.module-presentation {
    padding-top: 140px;
}

@media only screen and (max-width: 767px) {
    .module-presentation.module-presentation.module-presentation {
        padding-top: 50px;
    }
}

.module-presentation .module_title {
    margin-bottom: 50px;
}

@media only screen and (max-width: 375px) {
    .module-presentation .module_title {
        margin-bottom: 25px;
    }
}

.module-presentation .module_item {
    padding-bottom: 50px;
}

.module-presentation .module_body {
    display: none;
}

.module-presentation .module_date-time,
.module-presentation .module_links {
    display: inline;
}

.module-presentation .module_links:not(:empty):before {
    content: "\2014";
    margin: 0 12px;
    color: #8c8c8c;
}

@media only screen and (max-width: 1280px) {
    .module-person--custom .module_item {
        width: 20%;
    }

    .module-person--custom .module_item:nth-child(n + 6) {
        padding-top: 105px;
    }
}

@media only screen and (max-width: 1200px) {
    .module-person .module_item:nth-child(n + 4) {
        padding-top: 105px;
    }

    .module-person--custom .module_item {
        width: 33.3333333333%;
    }
}

@media only screen and (max-width: 1023px) {
    .fancybox-container .module-person .module_item {
        height: auto;
    }

    .fancybox-container .module-person_photo-container,
    .fancybox-container .module-person_name-description-res-container {
        width: 100%;
    }

    .fancybox-container .module-person_name-container {
        text-align: center;
        margin-top: 0;
    }

    .fancybox-container .module-person .fancybox-close-small {
        top: 30px;
        right: 30px;
        color: #fff;
    }

    .fancybox-container .module-person .fancybox-close-small:before {
        font-size: 20px;
        font-size: 2rem;
    }

    .page-person-details .module-help-center_link > span,
    .page-person-details .module-help-center_link i {
        color: #fff;
        background: transparent;
        background: -webkit-linear-gradient(left, #fff, #fff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: #fff;
    }

    .module-person-details_photo-container,
    .module-person-details_name-description-container {
        width: 100%;
        padding-top: 120px;
        padding-bottom: 120px;
    }

    .module-person-details_name-container {
        text-align: center;
    }
}

@media only screen and (max-width: 768px) {
    .module-person .module_item:nth-child(n + 3) {
        padding-top: 105px;
    }

    .module-person--custom .module_item {
        width: 50%;
    }

    .module-person-accordion .module-person_photo-container {
        float: none;
        margin: 0 auto 15px auto;
        text-align: center;
    }

    .module-person-accordion .module-person_res-photo-container > span {
        display: block;
        margin: 0 0 10px 0;
    }
}

@media only screen and (max-width: 767px) {
    .module-person .module_item:nth-child(n + 3) {
        padding-top: 40px;
    }

    .module-person .module-person_suffix-title-container {
        line-height: 1.3;
    }

    .fancybox-container .module-person_photo-container,
    .fancybox-container .module-person_name-description-res-container {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .fancybox-container .module-person .fancybox-close-small {
        top: 20px;
        right: 20px;
    }

    .module-person-details_photo-container,
    .module-person-details_name-description-container {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

@media only screen and (max-width: 480px) {
    .module-person .module_item:nth-child(n + 2) {
        padding-top: 40px;
    }

    .module-person--custom .module_item {
        width: 100%;
    }

    .fancybox-container .module-person_photo-container {
        margin-right: 0;
        max-width: none;
    }

    .fancybox-container .module-person_name {
        font-size: 24px;
        font-size: 2.4rem;
        line-height: 1.2;
    }

    .fancybox-container .module-person_title {
        font-size: 18px;
        font-size: 1.8rem;
        line-height: 1.125;
    }

    .module-person-details_photo-container {
        margin-right: 0;
        max-width: none;
    }
}

/*------ Q4 Preview Toolbar ------*/
body.PreviewBody {
    margin: 0;
    background-position: 0;
}

body.PreviewBody .PreviewToolBar {
    position: fixed;
    top: 100%;
    bottom: auto;
    width: 100%;
    margin: 0;
    padding: 35px 20px;
    border: 0;
    background: #222;
    font-size: 0;
    text-align: left;
    color: #fff;
    z-index: 100;
}

body.PreviewBody .PreviewToolBar.js--open {
    top: auto;
    bottom: 0;
}

body.PreviewBody .PreviewToolBar .PreviewTrigger {
    position: absolute;
    top: 0;
    left: 10px;
    padding: 20px;
    background: #222;
    -webkit-transform: translate(0, -100%);
    -ms-transform: translate(0, -100%);
    transform: translate(0, -100%);
    font-size: 24px;
    font-size: 2.4rem;
    cursor: pointer;
}

body.PreviewBody .PreviewToolBar .PreviewTrigger.js--active i:before {
    content: "\ed6d";
}

body.PreviewBody .PreviewToolBar .PreviewFloatLeft,
body.PreviewBody .PreviewToolBar .PreviewDateControls {
    display: inline-block;
    vertical-align: middle;
}

body.PreviewBody .PreviewToolBar .PreviewFloatLeft:before,
body.PreviewBody .PreviewToolBar .PreviewDateControls:before {
    font-size: 16px;
    font-size: 1.6rem;
    margin-right: 15px;
    line-height: 50px;
}

body.PreviewBody .PreviewToolBar .PreviewFloatLeft {
    float: none;
}

body.PreviewBody .PreviewToolBar .PreviewFloatLeft:before {
    content: "Select Preview Type:";
}

body.PreviewBody .PreviewToolBar .PreviewDateControls {
    float: right;
}

body.PreviewBody .PreviewToolBar .PreviewDateControls:before {
    content: "Select Preview Date:";
}

body.PreviewBody .PreviewToolBar img {
    display: none;
}

body.PreviewBody .PreviewToolBar input[type="radio"],
body.PreviewBody .PreviewToolBar label,
body.PreviewBody .PreviewToolBar input[type="text"],
body.PreviewBody .PreviewToolBar select,
body.PreviewBody .PreviewToolBar input[type="submit"] {
    display: inline-block;
    margin-right: 5px;
    font-family: "Open Sans", sans-serif !important;
    font-weight: 300;
    font-size: 14px;
    font-size: 1.4rem;
    text-transform: uppercase;
    vertical-align: baseline;
}

body.PreviewBody .PreviewToolBar input[type="text"],
body.PreviewBody .PreviewToolBar select,
body.PreviewBody .PreviewToolBar input[type="submit"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 15px 20px;
    border: 0;
    border-radius: 0;
}

body.PreviewBody .PreviewToolBar label + input[type="radio"] {
    margin-left: 15px;
}

body.PreviewBody .PreviewToolBar input[type="text"] {
    min-width: 110px;
}

body.PreviewBody .PreviewToolBar select {
    padding: 15px 35px 15px 20px;
    background: #fff url("../design/svg/q4-icon_chevron-down-black.svg") no-repeat right 10px center;
    background-size: 14px 14px;
}

body.PreviewBody .PreviewToolBar select::-ms-expand {
    display: none;
}

body.PreviewBody .PreviewToolBar input[type="submit"] {
    background: #00782e;
    color: #fff !important;
}

@media only screen and (max-width: 1024px) {
    body.PreviewBody .PreviewToolBar .PreviewFloatLeft,
    body.PreviewBody .PreviewToolBar .PreviewDateControls {
        display: block;
        float: none;
        margin-bottom: 15px;
    }

    body.PreviewBody .PreviewToolBar .PreviewFloatLeft:before,
    body.PreviewBody .PreviewToolBar .PreviewDateControls:before {
        display: block;
    }
}

@media only screen and (max-width: 768px) {
    body.PreviewBody .PreviewToolBar input[type="radio"],
    body.PreviewBody .PreviewToolBar label,
    body.PreviewBody .PreviewToolBar input[type="text"],
    body.PreviewBody .PreviewToolBar select,
    body.PreviewBody .PreviewToolBar input[type="submit"] {
        margin-bottom: 5px;
    }
}

/*-------- Search Modules --------*/
.module-search {
    position: relative;
    text-align: right;
}

.module-search_input[type="text"] {
    display: inline-block;
    width: 90%;
    padding: 7px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #fff;
    font-size: 14px;
    font-size: 1.4rem;
}

.module-search_button {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 15px;
    height: 15px;
    padding: 0;
    border: 0;
    background: transparent url("../design/svg/q4-icon_buttons.svg");
    background-size: 300%;
    font-size: 0;
    cursor: pointer;
}

.module-search-result_link {
    margin-bottom: 15px;
}

.module-search-result_description {
    display: block;
    margin-bottom: 15px;
}

.module-search-result_description:after {
    content: "...";
}

.module-search-result_url {
    display: none;
}

/*-------- SEC Module CSS --------*/
.module-sec {
    color: #2b2b2b;
}

.module-sec .module_options {
    margin-bottom: 50px;
}

.module-sec .module_options-item {
    display: inline-block;
    vertical-align: top;
    margin-right: 40px;
}

.module-sec .dropdown {
    min-width: 256px;
}

.module-sec .module_options-label {
    display: block;
    font-weight: 700;
    color: #111111;
    margin-bottom: 7px;
}

@media only screen and (min-width: 320px) {
    .module-sec .module_options-label {
        font-size: calc(15px + ((1vw - 3.2px) * 0.0625));
        font-size: calc(1.5rem + ((1vw - 3.2px) * 0.0625));
    }
}

@media only screen and (min-width: 1920px) {
    .module-sec .module_options-label {
        font-size: 16px;
        font-size: 1.6rem;
    }
}

@media only screen and (max-width: 319px) {
    .module-sec .module_options-label {
        font-size: 15px;
        font-size: 1.5rem;
    }
}

.module-sec .module_header {
    display: block;
}

.module-sec .module_header-text {
    font-weight: 700;
    color: #111111;
    padding: 25px 8px;
}

@media only screen and (min-width: 320px) {
    .module-sec .module_header-text {
        font-size: calc(14px + ((1vw - 3.2px) * 0.25));
        font-size: calc(1.4rem + ((1vw - 3.2px) * 0.25));
    }
}

@media only screen and (min-width: 1920px) {
    .module-sec .module_header-text {
        font-size: 18px;
        font-size: 1.8rem;
    }
}

@media only screen and (max-width: 319px) {
    .module-sec .module_header-text {
        font-size: 14px;
        font-size: 1.4rem;
    }
}

.module-sec .module_header-text:first-child {
    padding-left: 0;
}

.module-sec .module_header-text:last-child {
    padding-right: 0;
    text-align: right;
}

@media only screen and (min-width: 320px) {
    .module-sec .module_container--content {
        font-size: calc(14px + ((1vw - 3.2px) * 0.25));
        font-size: calc(1.4rem + ((1vw - 3.2px) * 0.25));
    }
}

@media only screen and (min-width: 1920px) {
    .module-sec .module_container--content {
        font-size: 18px;
        font-size: 1.8rem;
    }
}

@media only screen and (max-width: 319px) {
    .module-sec .module_container--content {
        font-size: 14px;
        font-size: 1.4rem;
    }
}

.module-sec .module_item {
    padding: 0;
}

.module-sec .module_item .grid_col {
    vertical-align: middle;
    padding: 42px 8px;
}

.module-sec .module_item .grid_col:first-child {
    padding-left: 0;
}

.module-sec .module_item .grid_col:last-child {
    padding-right: 0;
    text-align: right;
}

.module-sec_filing-link {
    color: #2b2b2b;
    text-decoration: none;
}

.module-sec_download-list-item {
    display: inline-block;
}

.module-sec_download-list-item:not(:first-child):before {
    content: "|";
    margin: 0 12px;
    font-size: 14px;
}

.module-sec_download-list .module_link {
    margin: 0;
}

.module-sec_download-list .module_link:before {
    font-size: 18px;
    font-size: 1.8rem;
    text-transform: uppercase;
}

.module-sec .module_pager {
    margin-top: 50px;
}

.module-sec-details_date,
.module-sec-details_description {
    margin-bottom: 15px;
}

.module-sec-details_download-list-item {
    display: inline-block;
}

.module-sec-details_download-list-item:not(:first-child):before {
    content: "|";
    margin: 0 12px;
    font-size: 14px;
}

.module-sec-details_download-list .module_link {
    margin: 0;
}

.module-sec-details_download-list .module_link:before {
    font-size: 18px;
    font-size: 1.8rem;
    text-transform: uppercase;
}

.module-sec .module_links-text .module_link.module_link-sec:before,
.module-sec-details .module_links-text .module_link.module_link-sec:before {
    content: "html";
}

.module-sec .module_links-text .module_link.module_link-sec[href$=".pdf"]:before,
.module-sec-details .module_links-text .module_link.module_link-sec[href$=".pdf"]:before {
    content: "pdf";
}

.module-sec .module_links-text .module_link.module_link-sec[href$=".rtf"]:before,
.module-sec-details .module_links-text .module_link.module_link-sec[href$=".rtf"]:before {
    content: "rtf";
}

.module-sec .module_links-text .module_link.module_link-sec[href$=".xls"]:before,
.module-sec-details .module_links-text .module_link.module_link-sec[href$=".xls"]:before {
    content: "xls";
}

.module-sec .module_links-text .module_link.module_link-sec[href$=".zip"]:before,
.module-sec-details .module_links-text .module_link.module_link-sec[href$=".zip"]:before {
    content: "zip";
}

@media only screen and (max-width: 1364px) {
    .module-sec-details_download-list .module_link {
        margin: 0;
    }

    .module-sec_download-list-item:not(:first-child):before {
        margin: 0 8px;
    }
}

@media only screen and (max-width: 1279px) {
    .module-sec_download-list .module_link:before {
        font-size: 14px;
        font-size: 1.4rem;
    }

    .module-sec_download-list-item:not(:first-child):before {
        margin: 0 7px;
    }
}

@media only screen and (max-width: 1023px) {
    .module-sec .module_header {
        display: none;
    }

    .module-sec .module_container--content {
        border-top: 2px solid #d8d8d8;
        border-bottom: 2px solid #d8d8d8;
    }

    .module-sec .module_header + .module_item {
        border-top: 2px solid #00782e;
    }

    .module-sec .module_item {
        padding: 15px 0;
    }

    .module-sec .module_item .grid_col {
        width: 100%;
        padding: 0;
    }

    .module-sec .module_item .grid_col:last-child {
        text-align: left;
    }

    .module-sec .module_item .grid_col:before {
        content: attr(data-before);
        font-weight: 700;
        display: inline-block;
        vertical-align: top;
        box-sizing: border-box;
        min-height: 1px;
        margin-right: -0.25em;
        width: 40%;
    }

    .module-sec .module_item .grid_col > span,
    .module-sec .module_item .grid_col > ul {
        display: inline-block;
        vertical-align: top;
        box-sizing: border-box;
        min-height: 1px;
        margin-right: -0.25em;
        width: 60%;
    }

    .module-sec .module_item + .module_footer {
        border-bottom: 2px solid #00782e;
    }

    .module-sec_date,
    .module-sec_filer,
    .module-sec_filing,
    .module-sec_description {
        margin-bottom: 15px;
    }

    .module-sec_download-list .module_link:before,
    .module-sec-details_download-list .module_link:before {
        font-size: 13px;
        font-size: 1.3rem;
    }

    .module-sec_download-list-item:not(:first-child):before,
    .module-sec-details_download-list-item:not(:first-child):before {
        margin: 0 5px;
        font-size: 10px;
    }
}

@media only screen and (max-width: 767px) {
    .module-sec h2 {
        margin-bottom: 40px;
    }

    .module-sec .module_options-item {
        display: block;
        width: 100%;
        margin-right: 0;
    }

    .module-sec .module_options-label,
    .module-sec .module_options-select,
    .module-sec .module_options-submit {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
}

/*---- Accessibility Skip Link ---*/
.module-skip_link {
    position: absolute;
    top: -100px;
    left: 50%;
    padding: 15px 20px;
    background: transparent;
    color: white;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    transition: 0.5s ease-in-out;
    z-index: 100;
}

.module-skip_link:focus,
.module-skip_link:active,
.module-skip_link:hover {
    top: 0;
    background: #00782e;
    outline: 0;
}

.module-skip_link:visited {
    color: #fff;
}

/*------ Stock Chart Widget ------*/
.module-stock-chart .highcharts-legend-item:first-child path {
    stroke: #2b2b2b;
}

.module-stock-chart .highcharts-legend-item:first-child text {
    cursor: default !important;
}

.module-stock-chart .highcharts-series-0 {
    stroke: #2b2b2b;
}

.module-stock-chart .highcharts-series-0 path:first-child {
    stroke: #2b2b2b;
}

.module-stock-chart .highcharts-series-group .highcharts-series-2 path {
    stroke: #2b2b2b;
}

.module-stock-chart .highcharts-series.highcharts-series-3 path {
    stroke: #2b2b2b;
}

.module-stock-chart .highcharts-navigator rect {
    fill: rgba(43, 43, 43, 0.6);
}

.module-stock-chart .highcharts-navigator-handle {
    stroke: rgba(0, 0, 0, 0.05);
    fill: #f2f2f2;
    cursor: ew-resize;
}

.module-stock-chart .highcharts-navigator-handle-right rect,
.module-stock-chart .highcharts-navigator-handle-left rect {
    stroke-width: 0;
    fill: #2b2b2b;
}

.module-stock-chart .highcharts-navigator-handle-right path,
.module-stock-chart .highcharts-navigator-handle-left path {
    stroke: #fff;
}

.module-stock-chart .highcharts-highcharts-scrollbar g:first-of-type rect {
    fill: #2b2b2b;
    stroke: #2b2b2b;
}

.module-stock-chart .highcharts-range-selector {
    box-sizing: content-box;
}

.module-stock-chart .highcharts-range-input rect {
    stroke: #cccccc;
    fill: #f2f2f2;
}

.module-stock-chart .highcharts-button rect,
.module-stock-chart .highcharts-input-group rect {
    stroke-width: 0;
    fill: rgba(0, 0, 0, 0.05);
}

.module-stock-chart .highcharts-button text,
.module-stock-chart .highcharts-input-group text {
    fill: #5e5e5e;
}

.module-stock-chart .highcharts-container > svg > .highcharts-button {
    display: none;
}

/*------ Stock Header Module -----*/
.module-stock-header {
    text-align: right;
}

@media only screen and (max-width: 1024px) {
    .module-stock-header {
        text-align: center;
    }
}

.module-stock-header .module_container--outer {
    display: inline-block;
    padding: 40px 55px;
    background: rgba(0, 0, 0, 0.6);
    text-align: center;
}

.module-stock-header_description1 {
    display: block;
    font-weight: bold;
    margin-bottom: 16px;
}

.module-stock-header_stock-price {
    display: block;
    margin-bottom: 8px;
    font-size: 45px;
    font-size: 4.5rem;
    color: #fff;
}

.module-stock-header_stock-price:before {
    content: "$";
}

.module-stock-header_change,
.module-stock-header_percent-change {
    display: inline-block;
    margin-bottom: 24px;
    font-size: 20px;
    font-size: 2rem;
}

.module-stock-header_percent-change:before {
    content: "(";
}

.module-stock-header_percent-change .module-stock-header_indicator {
    display: none;
}

.module-stock-header_percent-change:after {
    content: ")";
}

.module-stock-header_volume {
    display: block;
    margin-bottom: 32px;
}

.module-stock-header_volume:before {
    content: "Volume ";
    font-weight: bold;
}

.module-stock-header_description3,
.module-stock-header_date {
    display: block;
    font-size: 12px;
    font-size: 1.2rem;
}

.module-stock-header_volume-text {
    display: none;
}

/*------ Stock Quote Module ------*/
.module-stock .module_options {
    margin-bottom: 60px;
}

.module-stock .module_options > span {
    display: inline-block;
    vertical-align: bottom;
    margin-right: 30px;
}

.module-stock .module_options-label {
    font-weight: 700;
    color: #111111;
    display: block;
    margin-bottom: 7px;
}

@media only screen and (min-width: 320px) {
    .module-stock .module_options-label {
        font-size: calc(15px + ((1vw - 3.2px) * 0.0625));
        font-size: calc(1.5rem + ((1vw - 3.2px) * 0.0625));
    }
}

@media only screen and (min-width: 375px) {
    .module-stock .module_options-label {
        font-size: calc(16px + ((1vw - 3.2px) * 0.0625));
        font-size: calc(1.6rem + ((1vw - 3.2px) * 0.0625));
    }
}

@media only screen and (min-width: 1920px) {
    .module-stock .module_options-label {
        font-size: 16px;
        font-size: 1.6rem;
    }
}

@media only screen and (max-width: 319px) {
    .module-stock .module_options-label {
        font-size: 15px;
        font-size: 1.5rem;
    }
}

.module-stock .module_container--content {
    color: #2b2b2b;
}

@media only screen and (min-width: 320px) {
    .module-stock .module_container--content {
        font-size: calc(16px + ((1vw - 3.2px) * 0.125));
        font-size: calc(1.6rem + ((1vw - 3.2px) * 0.125));
    }
}

@media only screen and (min-width: 1920px) {
    .module-stock .module_container--content {
        font-size: 18px;
        font-size: 1.8rem;
    }
}

@media only screen and (max-width: 319px) {
    .module-stock .module_container--content {
        font-size: 16px;
        font-size: 1.6rem;
    }
}

.module-stock .stock-historical-range .module_options > *:not(:last-of-type) {
    margin-bottom: 20px;
}

.module-stock_header {
    color: #afafaf;
    padding-bottom: 90px;
}

@media only screen and (min-width: 320px) {
    .module-stock_header {
        font-size: calc(16px + ((1vw - 3.2px) * 0.125));
        font-size: calc(1.6rem + ((1vw - 3.2px) * 0.125));
    }
}

@media only screen and (min-width: 1920px) {
    .module-stock_header {
        font-size: 18px;
        font-size: 1.8rem;
    }
}

@media only screen and (max-width: 319px) {
    .module-stock_header {
        font-size: 16px;
        font-size: 1.6rem;
    }
}

.module-stock_header > span {
    display: block;
}

.module-stock_header > span + span {
    margin-top: 10px;
}

.module-stock_header .module-stock_price {
    font-family: GD Sage, Arial, sans-serif;
    font-weight: 500;
    color: #00782e;
    margin-top: 30px;
}

@media only screen and (min-width: 320px) {
    .module-stock_header .module-stock_price {
        font-size: calc(45px + ((1vw - 3.2px) * 0.3125));
        font-size: calc(4.5rem + ((1vw - 3.2px) * 0.3125));
    }
}

@media only screen and (min-width: 1920px) {
    .module-stock_header .module-stock_price {
        font-size: 50px;
        font-size: 5rem;
    }
}

@media only screen and (max-width: 319px) {
    .module-stock_header .module-stock_price {
        font-size: 45px;
        font-size: 4.5rem;
    }
}

.module-stock_header .module-stock_price:before {
    content: "$";
}

.module-stock_lookup-title {
    font-family: gdsherpa, Arial, sans-serif;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 35px;
}

@media only screen and (min-width: 320px) {
    .module-stock_lookup-title {
        font-size: calc(22px + ((1vw - 3.2px) * 0.1875));
        font-size: calc(2.2rem + ((1vw - 3.2px) * 0.1875));
    }
}

@media only screen and (min-width: 1920px) {
    .module-stock_lookup-title {
        font-size: 25px;
        font-size: 2.5rem;
    }
}

@media only screen and (max-width: 319px) {
    .module-stock_lookup-title {
        font-size: 22px;
        font-size: 2.2rem;
    }
}

.module-stock_item {
    padding-left: 30px;
    padding-right: 30px;
}

.module-stock_item:nth-child(odd) {
    background-color: #f5f7f8;
}

.module-stock_label > span,
.module-stock_value > span {
    display: block;
    padding: 23px 20px;
}

.module-stock_value > span {
    color: #00782e;
}

.module-stock_value > span.module-stock_change,
.module-stock_value > span.module-stock_percent-change {
    color: #2b2b2b;
}

.module-stock_label {
    font-weight: normal;
}

.module-stock_value .module-stock_price:before,
.module-stock_value .module-stock_high:before,
.module-stock_value .module-stock_low:before,
.module-stock_value .module-stock_open:before,
.module-stock_value .module-stock_close:before,
.module-stock_value .module-stock_week-low:before,
.module-stock_value .module-stock_week-high:before,
.module-stock_value .module-stock_previous-close:before {
    content: "$";
}

@media only screen and (max-width: 1023px) {
    .module-stock_item {
        padding-left: 0;
        padding-right: 0;
    }

    .module-stock_item .grid_col--push-3-of-8 {
        margin-left: 10% !important;
    }
}

@media only screen and (max-width: 768px) {
    .module-stock_item .grid_col--push-3-of-8 {
        margin-left: 0 !important;
    }

    .module-stock .module_options > span {
        display: block;
        width: 100%;
        margin-right: 0;
    }

    .module-stock-historical .module_options-label,
    .module-stock-historical .module_options-select,
    .module-stock-historical .module_options-submit {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }

    .module-stock-quote .module-stock_item:nth-child(odd) {
        background: none;
    }

    .module-stock-quote .module-stock_label:nth-child(1),
    .module-stock-quote .module-stock_value:nth-child(2) {
        background-color: #f5f7f8;
    }

    .module-stock_label > span,
    .module-stock_value > span {
        padding: 15px 10px;
    }
}

/*- MailingList Subscribe Module -*/
.module-subscribe_table {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

.module-subscribe_table tbody {
    width: 100%;
    display: block;
}

.module-subscribe_form {
    font-size: 0;
}

.module-subscribe_form tr {
    display: inline-block;
    width: 50%;
    margin-bottom: 20px;
    vertical-align: top;
    font-size: 16px;
    font-size: 1.6rem;
}

.module-subscribe_form tr:nth-child(even) {
    padding-left: 10px;
}

.module-subscribe_form tr:nth-child(odd) {
    padding-right: 10px;
}

.module-subscribe_form tr.module-subscribe_notes-text {
    margin: 0;
}

.module-subscribe_form tr.module-subscribe_notes-text,
.module-subscribe_form tr.module-subscribe_notes-input {
    display: block;
    width: 100%;
    padding: 0;
}

@media only screen and (max-width: 768px) {
    .module-subscribe_form tr {
        width: 100%;
    }

    .module-subscribe_form tr:nth-child(even) {
        padding-left: 0;
    }

    .module-subscribe_form tr:nth-child(odd) {
        padding-right: 0;
    }
}

.module-subscribe_form td {
    display: block;
}

.module-subscribe_form label {
    display: inline-block;
    margin-bottom: 5px;
    font-weight: 700;
}

@media only screen and (min-width: 320px) {
    .module-subscribe_form label {
        font-size: calc(15px + ((1vw - 3.2px) * 0.0625));
        font-size: calc(1.5rem + ((1vw - 3.2px) * 0.0625));
    }
}

@media only screen and (min-width: 1920px) {
    .module-subscribe_form label {
        font-size: 16px;
        font-size: 1.6rem;
    }
}

@media only screen and (max-width: 319px) {
    .module-subscribe_form label {
        font-size: 15px;
        font-size: 1.5rem;
    }
}

.module-subscribe_mailing-list tr.module-subscribe_list-header td {
    padding-bottom: 15px;
}

.module-subscribe_mailing-list tr table td {
    padding-bottom: 10px;
}

.module-subscribe_mailing-list tr table tr:last-child td {
    padding-bottom: 0;
}

.module-subscribe .module_required {
    font-size: 14px;
    font-size: 1.4rem;
}

.module-subscribe .CaptchaContainer {
    width: 50%;
}

@media only screen and (max-width: 768px) {
    .module-subscribe .CaptchaContainer {
        width: 100%;
    }
}

/* MailingList Unsubscribe Module */
.module-unsubscribe_table {
    width: 50%;
}

@media only screen and (max-width: 768px) {
    .module-unsubscribe_table {
        width: 100%;
    }
}

.module-unsubscribe_table td {
    padding-right: 10px;
}

@media only screen and (max-width: 768px) {
    .module-unsubscribe_table td {
        padding-right: 0;
    }
}

.module-unsubscribe_table label {
    display: inline-block;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.module-unsubscribe_table .module_input[type="text"] {
    background-color: #fff;
}

/*==================================
  ----------- LAYOUT CSS -----------
  ==================================*/
/*------- iframe layout CSS ------*/
.layout--iframe .pane--content .module {
    padding: 35px 0;
}

.layout--iframe .pane--content .module_container--outer {
    max-width: none;
}

/*==================================
  ------------ BLANK CSS -----------
  ==================================*/
/*-------- Layout Specific -------*/
.layout {
    position: relative;
}

.layout:before {
    content: "";
    background: rgba(0, 0, 0, 0.35);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s ease-in-out;
    z-index: 101;
}

.layout:not(.layout--home) {
    padding-top: 110px;
}

.layout,
.layout_inner {
    overflow-x: hidden;
}

.layout_footer {
    background-color: #1d1d1d;
    margin-top: 200px;
}

.layout--home .pane--banner .pane_inner {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}

@media only screen and (max-width: 767px) {
    .layout.js--mobile {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        overflow: hidden;
    }

    .layout.js--mobile:before {
        opacity: 1;
        visibility: visible;
    }

    .layout:not(.layout--home) {
        padding-top: 52px;
    }

    .layout_footer {
        margin-top: 70px;
    }
}

/*--------- Pane Specific --------*/
.pane_inner {
    width: 100%;
    max-width: 1830px;
    margin: 0 auto;
    padding-left: 5%;
    padding-right: 5%;
}

.pane--content .pane_inner {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}

.pane--content .module {
    padding-top: 50px;
    padding-bottom: 50px;
}


.pane--content .module_container--outer,
.pane--content .module_container-interior {
    width: 100%;
    max-width: 1830px;
    margin: 0 auto;
    padding-left: 25px;
    padding-right: 25px;
}

.page-company-news .pane--content .module_container--outer {
    /* max-width: 1500px; */
}

@media only screen and (max-width: 480px) {
    .pane--content .module {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .pane--content .module_container--outer,
    .pane--content .module_container-interior {
        padding-left: 25px;
        padding-right: 25px;
    }
}

.pane--content .module-container-smaller .module_container--outer {
    /* max-width: 1630px; */
}

.pane--content .module--no-container .module_container--outer {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}

.pane--content .module--thin {
    padding-top: 25px;
    padding-bottom: 25px;
}

.pane--content .module--thin-top {
    padding-top: 25px;
}

.pane--content .module--thin-bottom {
    padding-bottom: 25px;
}

.pane--content .module--thick {
    padding-top: 75px;
    padding-bottom: 75px;
}

.pane--content .module--thick-top {
    padding-top: 75px;
}

.pane--content .module--thick-bottom {
    padding-bottom: 75px;
}

.pane--content .module--no-padding {
    padding-top: 0;
    padding-bottom: 0;
}

.pane--content .module--no-padding-top {
    padding-top: 0;
}

.pane--content .module--no-padding-bottom {
    padding-bottom: 0;
}

.pane--content .module-sitemap {
    padding-bottom: 35px;
}

/*--------- Page Specific --------*/
.page--no-alternating .pane--content {
    padding: 35px 0;
}

.page--no-alternating .module {
    padding-top: 35px;
    padding-bottom: 35px;
}

/*-------- Module Specific -------*/
.module-social .module_tabs {
    margin-bottom: 10px;
}

.module-social .module_tabs .button {
    display: block;
}

.module-social .module_tabs .button.js--selected {
    background: #00782e;
    color: #fff;
}

.module-social .module_tab {
    display: inline-block;
    padding-right: 5px;
    padding-bottom: 5px;
}

@media (max-width: 640px) {
    .module-social .module_tab {
        width: 50%;
    }
}

.module-social .module_container--content {
    padding: 0;
    display: flex;
    justify-content: stretch;
    align-items: stretch;
}

@media (max-width: 767px) {
    .module-social .module_container--content {
        padding: 0 20px;
        margin: 0;
    }
}

.module-social .module_container--content .slick-track {
    display: flex;
    justify-content: stretch;
    align-items: stretch;
}

.module-social .module_container--content .slick-list {
    width: 100%;
}

.module-social .module_container--content .slick-arrow {
    color: #00782e;
}

.module-social .module_headline-link {
    color: #00782e;
}

.module-social .module_item {
    height: auto;
}

.module-social .module_item.grid_col {
    padding: 0 0 0 20px;
    margin: 15px 0;
}

@media (max-width: 767px) {
    .module-social .module_item.grid_col {
        padding-left: 0;
    }
}

.module-social .module_item-wrap {
    padding: 30px;
    background-color: #afafaf;
    height: 100%;
}

.module-social .module_item + .module_item {
    border-top: none;
}

.module-social .module_date {
    text-align: left;
    margin-bottom: 15px;
}

.module-social .module_headline {
    text-align: left;
    margin: 0;
    line-height: 1.5;
}

.module-social .module_icon {
    float: right;
    margin-left: 5px;
    margin-bottom: 5px;
    font-size: 20px;
    font-size: 2rem;
}

.module-social .module_icon .q4-icon_twitter {
    color: #1da1f2;
}

.module-social .module_icon .q4-icon_facebook {
    color: #365899;
}

.module-social .module_icon .q4-icon_youtube {
    color: #cc181e;
}

/*# sourceMappingURL=global.css.map */
/*===========================HEADER===========================*/
.pane--header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
    z-index: 10;
}

.pane--header .module {
    display: inline-block;
    vertical-align: middle;
}

.module-logo a {
    display: block;
    background-image: url("../design/2020/final/Desktop_Black.svg");
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    width: 152px;
    height: 32px;
}

@media screen and (max-width: 464px) {
    .module-logo a {
        background-image: url("../design/2020/final/Mobile_LogoMark_Black.svg");
    }
}

.pane--header .layout_toggle {
    margin-left: 30px;
}

.layout_toggle button {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    display: inline-block;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    font-size: 18px;
    font-size: 1.8rem;
    color: #000;
}

.module-help-center {
    float: right;
    margin-top: 16px;
}

@media only screen and (max-width: 1023px) {
    .module-help-center {
        margin-top: 0;
    }
}

.module-help-center_link {
    text-decoration: none;
    font-size: 16px;
    font-size: 1.6rem;
    display: block;
}

.module-help-center_link > span {
    color: #3c6bc7;
    background: transparent;
    background: -webkit-linear-gradient(left, #3c6bc7, #8d4eb5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    vertical-align: middle;
    line-height: 1.5;
}

.module-help-center_link i {
    color: #3c6bc7;
    background: transparent;
    background: -webkit-linear-gradient(left, #3c6bc7, #8d4eb5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
    position: relative;
    top: 1px;
    font-size: 11px;
    font-size: 1.1rem;
}

.pane--navigation {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    transition: 0.5s all;
    z-index: 120;
    width: 0;
    overflow: hidden;
}

.pane--navigation:before {
    content: "";
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    bottom: 0;
}

.pane--navigation .pane_outer:before {
    content: "";
    background: #fff;
    position: absolute;
    top: 0;
    right: 80%;
    bottom: 0;
    width: 10000000%;
}

.pane--navigation .pane_outer {
    width: 100%;
    max-width: 1830px;
    margin: 0 auto;
    padding-left: 5%;
    padding-right: 5%;
    height: 100%;
    position: relative;
}

.pane--navigation .pane_inner {
    max-width: none;
    padding: 0;
    padding-top: 40px;
    padding-bottom: 40px;
    overflow-x: hidden;
    overflow-y: auto;
    width: 485px;
    margin: 0;
    position: relative;
    background: #fff;
    height: 100%;
    z-index: 1;
}

.js--mobile .pane--navigation {
    width: 100%;
    overflow-y: auto;
}

.pane--navigation .layout_toggle {
    position: absolute;
    top: 41px;
    right: 45px;
}

.pane--navigation .layout_toggle button {
    font-size: 17px;
    font-size: 1.7rem;
}

.pane--navigation .module,
.pane--navigation nav {
    opacity: 0;
    transition: 0.3s opacity;
    transition-delay: 0.3s;
}

.js--mobile .pane--navigation .module,
.js--mobile .pane--navigation nav {
    opacity: 1;
}

.pane--navigation .module-back-to-corporate {
    transition-delay: 0.5s;
}

.pane--navigation nav {
    transition-delay: 0.7s;
}

.module-back-to-corporate {
    padding-top: 70px;
}

.module-back-to-corporate a {
    line-height: 17px;
    color: #2b2b2b;
    text-decoration: none;
}

@media only screen and (min-width: 320px) {
    .module-back-to-corporate a {
        font-size: calc(12px + ((1vw - 3.2px) * 0.125));
        font-size: calc(1.2rem + ((1vw - 3.2px) * 0.125));
    }
}

@media only screen and (min-width: 1920px) {
    .module-back-to-corporate a {
        font-size: 14px;
        font-size: 1.4rem;
    }
}

@media only screen and (max-width: 319px) {
    .module-back-to-corporate a {
        font-size: 12px;
        font-size: 1.2rem;
    }
}

.module-back-to-corporate a > span {
    text-decoration: underline;
    margin-left: 12px;
}

.nav--main {
    padding-top: 25px;
}

.nav--main a {
    display: inline-block;
    color: #8c8c8c;
    padding-top: 7px;
    padding-bottom: 7px;
    text-decoration: none;
}

@media only screen and (min-width: 320px) {
    .nav--main a {
        font-size: calc(15px + ((1vw - 3.2px) * 0.0625));
        font-size: calc(1.5rem + ((1vw - 3.2px) * 0.0625));
    }
}

@media only screen and (min-width: 1920px) {
    .nav--main a {
        font-size: 16px;
        font-size: 1.6rem;
    }
}

@media only screen and (max-width: 319px) {
    .nav--main a {
        font-size: 15px;
        font-size: 1.5rem;
    }
}

.nav--main .level1 > li + li {
    margin-top: 5px;
}

.nav--main .level1 > li > a {
    font-family: GD Sage, Arial, sans-serif;
    font-weight: 500;
    color: #2b2b2b;
}

@media only screen and (min-width: 320px) {
    .nav--main .level1 > li > a {
        font-size: calc(28px + ((1vw - 3.2px) * 0.75));
        font-size: calc(2.8rem + ((1vw - 3.2px) * 0.75));
    }
}

@media only screen and (min-width: 1920px) {
    .nav--main .level1 > li > a {
        font-size: 40px;
        font-size: 4rem;
    }
}

@media only screen and (max-width: 319px) {
    .nav--main .level1 > li > a {
        font-size: 28px;
        font-size: 2.8rem;
    }
}

.nav--main .level2 {
    display: none;
    padding-top: 10px;
    padding-bottom: 10px;
}

.nav--main li.js--expanded > .level2 {
    display: block;
}

.nav--main .level2 > li.selected a,
.nav--main .level2 > li.expanded a {
    color: #2b2b2b;
    text-decoration: underline;
}

.module-page-title {
    padding-top: 110px;
    padding-bottom: 70px;
}

.module-page-title h1 {
    font-size: 75px;
    font-size: 7.5rem;
    margin: 0;
}

@media only screen and (min-width: 320px) {
    .module-page-title h1 {
        font-size: calc(45px + ((1vw - 3.2px) * 1.875));
        font-size: calc(4.5rem + ((1vw - 3.2px) * 1.875));
    }
}

@media only screen and (min-width: 768px) {
    .pane--header .layout_toggle,
    .js--mobile .pane--navigation {
        display: none;
    }
}

@media only screen and (min-width: 1920px) {
    .module-page-title h1 {
        font-size: 75px;
        font-size: 7.5rem;
    }
}

.page-company-news .module-page-title h1 {
    font-family: Noe Display;
    font-size: 66px;
    font-weight: 500;
    line-height: 79px;
    letter-spacing: 0;
}

@media only screen and (max-width: 767px) {
    .pane--header {
        padding-top: 12px;
        padding-bottom: 15px;
    }

    .module-logo a {
        background-size: 152px 36px;
        width: 44px;
        height: 36px;
        background-image: url("../design/2020/final/Mobile_LogoMark_Black.svg");
    }

    .pane--navigation .module-logo.pop-up a {
        background-image: url("../design/2020/final/Mobile_LogoMark_Black.svg");
        background-size: 152px 36px;
        width: 44px;
        height: 36px;
    }

    .pane--header .layout_toggle {
        float: right;
        margin-left: 0;
        /*margin-top: 11px;*/
    }

    .page-about-overview .pane--header .layout_toggle button {
        height: 36px;
    }

    .pane--header .layout_toggle button {
        font-size: 11px;
        font-size: 1.1rem;
        height: 36px;
    }

    .pane--header .layout_toggle button:before {
        content: "\e911";
        color: #fff;
        height: 36px;
    }

    .PageAboutUsContact .pane--header .layout_toggle button:before,
    .PageNewsroomAwardsHonors .pane--header .layout_toggle button:before,
    .PageNewsroomNewsReleases .pane--header .layout_toggle button:before,
    .PageNewsroomHistoryMilestones .pane--header .layout_toggle button:before,
    .PageNewsroomMediaResources .pane--header .layout_toggle button:before {
        content: "\e911";
        color: #000;
    }

    .PageInvestorRelationsStockInformation .pane--header .layout_toggle button:before,
    .PageInvestorRelationsEventsPresentations .pane--header .layout_toggle button:before,
    .PageInvestorRelationsResources .pane--header .layout_toggle button:before,
    .PageInvestorRelationsGoverance .pane--header .layout_toggle button:before,
    .PageInvestorRelationsFinancials .pane--header .layout_toggle button:before,
    .PageInvestorRelationsNewsReleases .pane--header .layout_toggle button:before {
        content: "\e911";
        color: #000;
    }

    .module-help-center.module-help-center {
        display: none;
    }

    .pane--navigation {
        background: #fff;
    }

    .pane--navigation:before,
    .pane--navigation .pane_outer:before {
        display: none;
    }

    .pane--navigation .pane_inner {
        padding-top: 12px;
        padding-bottom: 20px;
        width: 90vw;
    }

    .pane--navigation .layout_toggle {
        top: 20px;
        right: 0;
    }

    .module-back-to-corporate {
        padding-top: 40px;
    }

    .nav--main {
        padding-top: 30px;
    }

    .module-page-title {
        padding-top: 70px;
        padding-bottom: 30px;
    }

    .layout .nav--dropdown {
        display: none;
    }
}

@media only screen and (max-width: 319px) {
    .module-page-title h1 {
        font-size: 45px;
        font-size: 4.5rem;
    }
}

/*=========================END HEADER=========================*/
/*===========================FOOTER===========================*/
.pane--footer {
    padding-top: 110px;
    font-size: 14px;
    font-size: 1.4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.pane--footer .pane_inner {
    position: relative;
}

.FooterPaneDiv {
    display: block;
    width: 100%;
    position: relative;
}

.FooterPaneDiv:before,
.FooterPaneDiv:after {
    content: "";
    display: table;
}

.FooterPaneDiv:after {
    clear: both;
}

.FooterPaneDiv:before {
    content: "";
    background: #fff;
    height: 1px;
    display: block;
    position: absolute;
    bottom: -1px;
    left: calc(100% - 434px);
    width: 10000%;
}

.pane--footer .module:not(.module-embed) {
    padding-bottom: 80px;
}

.pane--footer .module_title {
    margin-bottom: 25px;
    text-align: left;
}

.pane--footer a {
    text-decoration: none;
}

.pane--footer .module_error-container {
    margin-bottom: 20px;
}

.pane--footer .module_error-container p {
    display: none;
}

.pane--footer .module_introduction {
    display: none;
}

.pane--footer .module-subscribe_email label,
.pane--footer .module-subscribe_list-header,
.pane--footer .module-subscribe_email .module_required,
.pane--footer .module-subscribe_mailing-list,
.pane--footer .module-subscribe .CaptchaContainer {
    display: none;
}

.pane--footer .module-subscribe_table-wrap {
    max-width: 465px;
    position: relative;
}

.pane--footer .module-subscribe_form tbody {
    display: block;
}

.pane--footer .module-subscribe_form tr {
    width: 100%;
    margin: 0;
    padding: 0;
}

.pane--footer .module-subscribe_mailing-list {
    margin: 20px 0 10px;
}

.pane--footer .module-subscribe_list > td {
    padding: 0;
}

.pane--footer .module-subscribe input[type="checkbox"] + label:before {
    border-color: #fff;
}

.pane--footer .module-subscribe_mailing-list.js--revealed {
    display: block;
}

.pane--footer .module-subscribe_table-input.module-subscribe_list,
.pane--footer .module-subscribe_table-input.module-subscribe_list > td,
.pane--footer .module-subscribe_table-input.module-subscribe_list table {
    display: block;
    width: 100%;
}

.pane--footer .module-subscribe_table-input.module-subscribe_list table tr {
    display: inline-block;
    vertical-align: top;
    width: 50%;
    margin-right: -0.25em;
}

.pane--footer .module_input[type="text"] {
    font-size: 20px;
    font-size: 2rem;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.05);
    border-color: transparent;
    padding-top: 17px;
    padding-bottom: 17px;
    padding-right: 170px;
    height: 65px;
}

.pane--footer .module_input[type="text"]::-webkit-input-placeholder {
    color: #fff;
    opacity: 0.5;
}

.pane--footer .module_input[type="text"]::-moz-placeholder {
    color: #fff;
    opacity: 0.5;
}

.pane--footer .module_input[type="text"]::-ms-input-placeholder {
    color: #fff;
    opacity: 0.5;
}

.pane--footer .module_actions {
    position: absolute;
    top: 0;
    right: 0;
    margin-top: 0;
}

.pane--footer .module_actions .button {
    height: 65px;
    text-transform: uppercase;
    min-width: 156px;
    background-color: #f6f5f6;
    border-color: #f6f5f6;
}

@media only screen and (min-width: 320px) {
    .pane--footer .module_actions .button {
        font-size: calc(16px + ((1vw - 3.2px) * 0.125));
        font-size: calc(1.6rem + ((1vw - 3.2px) * 0.125));
    }
}

@media only screen and (min-width: 1920px) {
    .pane--footer .module_actions .button {
        font-size: 18px;
        font-size: 1.8rem;
    }
}

@media only screen and (min-width: 1920px) {
    .pane--footer .module_actions .button {
        font-size: 16px;
        font-size: 1.6rem;
    }
}

.module-godaddy-guides {
    padding-right: 60px;
}

.module-godaddy-guides .module_container--content {
    display: inline-block;
    vertical-align: top;
}

.module-godaddy-guides_link:focus {
    text-decoration: none !important;
}

.module-godaddy-guides_link > span {
    display: block;
}

.module-godaddy-guides_link-subheading {
    line-height: 1.5;
    letter-spacing: -0.31px;
    color: #8f4db5;
    background: transparent;
    background: -webkit-linear-gradient(left, #8f4db5, #3b6cc7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media only screen and (min-width: 320px) {
    .module-godaddy-guides_link-subheading {
        font-size: calc(19px + ((1vw - 3.2px) * 0.375));
        font-size: calc(1.9rem + ((1vw - 3.2px) * 0.375));
    }
}

@media only screen and (min-width: 1920px) {
    .module-godaddy-guides_link-subheading {
        font-size: 25px;
        font-size: 2.5rem;
    }
}

@media only screen and (max-width: 319px) {
    .module-godaddy-guides_link-subheading {
        font-size: 19px;
        font-size: 1.9rem;
    }
}

.module-godaddy-guides_link-text {
    font-family: GD Sage, Arial, sans-serif;
    line-height: 1.12;
    font-weight: 500;
    margin-top: 30px;
    margin-bottom: 30px;
}

@media only screen and (min-width: 320px) {
    .module-godaddy-guides_link-text {
        font-size: calc(22px + ((1vw - 3.2px) * 1.1875));
        font-size: calc(2.2rem + ((1vw - 3.2px) * 1.1875));
    }
}

@media only screen and (min-width: 1920px) {
    .module-godaddy-guides_link-text {
        font-size: 41px;
        font-size: 4.1rem;
    }
}

@media only screen and (max-width: 319px) {
    .module-godaddy-guides_link-text {
        font-size: 22px;
        font-size: 2.2rem;
    }
}

.module-godaddy-guides_link-text > span,
.module-godaddy-guides_link-text > img {
    display: inline-block;
    vertical-align: middle;
}

.module-godaddy-guides_link-text > img {
    margin-left: 30px;
}

.pane--footer2 {
    padding-top: 80px;
}

@media only screen and (min-width: 320px) {
    .pane--footer2 {
        font-size: calc(14px + ((1vw - 3.2px) * 0.125));
        font-size: calc(1.4rem + ((1vw - 3.2px) * 0.125));
    }
}

@media only screen and (min-width: 1920px) {
    .pane--footer2 {
        font-size: 16px;
        font-size: 1.6rem;
    }
}

@media only screen and (max-width: 319px) {
    .pane--footer2 {
        font-size: 14px;
        font-size: 1.4rem;
    }
}

.pane--footer2 .module:not(.module-embed) {
    padding-bottom: 50px;
}

.pane--footer2 .module_title {
    text-align: left;
}

.pane--footer2 a {
    text-decoration: none;
}

.module-footer-links.module-footer-links.module-footer-links.module-footer-links {
    padding-bottom: 80px;
}

.module-footer-links .module_container--content {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.module-links--footer .module_title {
    font-family: gdsherpa, Arial, sans-serif;
    font-weight: 700;
    margin-bottom: 35px;
}

@media only screen and (min-width: 320px) {
    .module-links--footer .module_title {
        font-size: calc(16px + ((1vw - 3.2px) * 0.125));
        font-size: calc(1.6rem + ((1vw - 3.2px) * 0.125));
    }
}

@media only screen and (min-width: 1920px) {
    .module-links--footer .module_title {
        font-size: 18px;
        font-size: 1.8rem;
    }
}

@media only screen and (max-width: 319px) {
    .module-links--footer .module_title {
        font-size: 16px;
        font-size: 1.6rem;
    }
}

.module-links--footer li + li {
    margin-top: 20px;
}

.module-links--footer a {
    color: #afafaf;
}

.module-footer-logo img {
    width: 120px;
}

.module-links--social li {
    display: inline-block;
    vertical-align: top;
}

.module-links--social li + li {
    margin-left: 17px;
}

.module-links--social a {
    font-size: 17px;
    font-size: 1.7rem;
}

.pane--credits {
    padding-top: 60px;
    padding-bottom: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
}

@media only screen and (min-width: 320px) {
    .pane--credits {
        font-size: calc(14px + ((1vw - 3.2px) * 0.125));
        font-size: calc(1.4rem + ((1vw - 3.2px) * 0.125));
    }
}

@media only screen and (min-width: 1920px) {
    .pane--credits {
        font-size: 16px;
        font-size: 1.6rem;
    }
}

@media only screen and (max-width: 319px) {
    .pane--credits {
        font-size: 14px;
        font-size: 1.4rem;
    }
}

.pane--credits a {
    color: #fff;
    text-decoration: none;
}

.copyright {
    color: #444444;
}

.module-links--bottom {
    float: right;
}

.module-links--bottom li {
    display: inline-block;
    vertical-align: top;
}

.module-links--bottom li + li {
    margin-left: 35px;
}

.module-q4-credits {
    padding-top: 20px;
    text-align: center;
}

@media only screen and (max-width: 1280px) {
    .module-links--bottom li + li {
        margin-left: 25px;
    }
}

@media only screen and (min-width: 1024px) {
    .module-links--footer .module_title {
        pointer-events: none;
    }

    .module-links--footer .module_container--inner {
        display: block !important;
        height: auto !important;
        overflow: visible !important;
    }
}

@media only screen and (max-width: 1023px) {
    .pane--footer {
        padding-top: 50px;
        border-bottom: none;
    }

    .pane--footer .module:not(.module-embed) {
        padding-bottom: 50px;
    }

    .FooterPaneDiv:before {
        display: none;
    }

    .pane--footer .module_title {
        font-size: 22px;
        font-size: 2.2rem;
    }

    .pane--footer .module.grid_col {
        width: 100%;
    }

    .module-godaddy-guides {
        float: none;
        text-align: left;
        position: relative;
        margin-bottom: 50px;
        padding-right: 0;
    }

    .module-godaddy-guides:after {
        content: "";
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        position: absolute;
        bottom: 0;
        left: 0;
        width: 10000%;
    }

    .module-godaddy-guides_link-subheading {
        letter-spacing: -0.24px;
    }

    .module-godaddy-guides_link-text {
        margin-top: 20px;
        margin-bottom: 0;
    }

    .module-godaddy-guides_link-text > img {
        width: 44px;
        margin-left: 25px;
    }

    .pane--footer .module-subscribe .module_title {
        margin-bottom: 0;
    }

    .pane--footer .module-subscribe_table-wrap {
        max-width: none;
    }

    .pane--footer .module_input[type="text"] {
        font-size: 14px;
        font-size: 1.4rem;
        background-color: transparent;
        border-bottom: 1px solid #fff;
        padding-left: 0;
        padding-right: 35px;
        height: auto;
    }

    .pane--footer .module_actions .button {
        background-color: transparent;
        background-image: url(../design/svg/q4-icon_chevron-right-white.svg);
        font-size: 0;
        background-repeat: no-repeat;
        background-position: center;
        background-size: 10px 18px;
        border-color: transparent;
        min-width: auto;
        padding-right: 10px;
        padding-left: 10px;
        height: 56px;
    }

    .module-links--footer {
        width: 100%;
    }

    .pane--footer2 {
        padding-top: 0;
    }

    .pane--footer2 .module.grid_col {
        width: 100%;
    }

    .module-footer-links.module-footer-links.module-footer-links.module-footer-links {
        padding-bottom: 50px;
    }

    .module-links--footer + .module-links--footer {
        padding-top: 30px;
    }

    .module-links--footer .module_title {
        cursor: pointer;
        margin-bottom: 0;
        position: relative;
        padding-right: 20px;
    }

    .module-links--footer .module_title:after {
        font-family: "q4-icons" !important;
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        /* Better Font Rendering =========== */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        content: "\ed5d";
        font-size: 14px;
        font-size: 1.4rem;
        position: absolute;
        top: 50%;
        right: 0;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .module-links--footer.js--active .module_title:after {
        content: "\ed5e";
    }

    .module-links--footer .module_container--inner > ul {
        padding-top: 30px;
    }

    .module-links--social {
        text-align: left;
    }

    .module-links--social ul {
        display: -webkit-flex;
        display: flex;
        justify-content: space-between;
    }

    .module-links--social li + li {
        margin-left: 0;
    }

    .module-links--social a {
        font-size: 20px;
        font-size: 2rem;
    }

    .pane--credits {
        padding-top: 0;
        border-top: none;
        padding-bottom: 40px;
    }

    .pane--credits .pane_inner {
        position: relative;
        padding-top: 40px;
    }

    .pane--credits .pane_inner:before {
        content: "";
        display: block;
        background: rgba(255, 255, 255, 0.2);
        height: 1px;
        position: absolute;
        top: 0;
        left: 25px;
        right: 25px;
    }

    .pane--credits .module.grid_col {
        width: 100%;
    }

    .module-links--bottom {
        float: none;
        text-align: left;
    }

    .module-links--bottom li {
        display: block;
    }

    .module-links--bottom li + li {
        margin-top: 12px;
        margin-left: 0;
    }

    .copyright {
        font-size: 12px;
        font-size: 1.2rem;
        line-height: 1.5;
        padding-top: 35px;
    }
}

@media only screen and (max-width: 767px) {
    .pane--footer .module-subscribe_table-input.module-subscribe_list table tr {
        width: 100%;
        margin-right: 0;
    }
}

/*=========================END FOOTER=========================*/
/*=========================INNER PAGES========================*/
.module_container--small {
    max-width: 880px;
    margin: 0 auto;
}

.module-intro {
    padding-top: 220px;
    padding-bottom: 220px;
    position: relative;
    color: #2b2b2b;
}

.module-intro:before {
    content: "";
    background-color: inherit;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -1000%;
    width: 1000%;
}

.module-intro:after {
    content: "";
    background-color: inherit;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -1000%;
    width: 1000%;
}

.module-intro h1 {
    font-size: 75px;
    font-size: 7.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

@media only screen and (min-width: 320px) {
    .module-intro h1 {
        font-size: calc(45px + ((1vw - 3.2px) * 1.875));
        font-size: calc(4.5rem + ((1vw - 3.2px) * 1.875));
    }
}

@media only screen and (min-width: 1920px) {
    .module-intro h1 {
        font-size: 75px;
        font-size: 7.5rem;
    }
}

.module-intro .module_container--inner {
    max-width: 610px;
    margin: 0 auto;
}

.module-intro .module_container--inner > *:first-child {
    margin-top: 0;
}

.module-intro .module_container--inner > *:last-child {
    margin-bottom: 0;
}

.module-intro a {
    color: inherit;
    text-decoration: none;
}

.module-ir-contact {
    padding-top: 160px;
    color: #8c8c8c;
}

.module-ir-contact .module_title {
    margin-bottom: 20px;
}

.module-ir-contact p {
    line-height: 1;
}

.module-ir-contact .module_container--inner > *:last-child {
    margin-bottom: 0;
}

.module-accordion_item {
    border-bottom: 1px solid #d8d8d8;
}

.module-accordion_item:first-child {
    border-top: 1px solid #d8d8d8;
}

.module-accordion_toggle {
    font-family: gdsherpa, Arial, sans-serif;
    margin: 0;
    padding: 35px 30px 35px 0;
    font-size: 25px;
    font-size: 2.5rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    margin-top: 0;
    cursor: pointer;
}

.module-accordion_toggle:after {
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e912";
    font-size: 15px;
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.module-accordion_item.js--active .module-accordion_toggle:after {
    -webkit-transform: translateY(-50%) rotate(90deg);
    -ms-transform: translateY(-50%) rotate(90deg);
    transform: translateY(-50%) rotate(90deg);
}

.module-accordion_panel {
    padding-top: 10px;
    padding-bottom: 50px;
}

.module-accordion_panel > *:first-child {
    margin-top: 0;
    padding-top: 0;
}

.module-accordion_panel > *:first-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.module-accordion_panel p {
    margin: 0;
    padding: 0 0 10px;
}

@media only screen and (max-width: 767px) {
    .module-intro {
        padding-top: 122px;
        padding-bottom: 122px;
    }

    .module-ir-contact {
        padding-top: 70px;
    }

    .module-accordion_toggle {
        font-size: 20px;
        font-size: 2rem;
        padding-top: 25px;
        padding-bottom: 25px;
    }

    .module-accordion_panel {
        padding-top: 0;
        padding-bottom: 30px;
    }
}

@media only screen and (max-width: 319px) {
    .module-intro h1 {
        font-size: 45px;
        font-size: 4.5rem;
    }
}

/*====================ABOUT OVERVIEW==================*/
.page-about-overview .pane--header .module-logo a,
.page-newsroom-overview .pane--header .module-logo a,
.page-investor-overview .pane--header .module-logo a,
.page-team .pane--header .module-logo a,
.page-person-details .pane--header .module-logo a {
    background-image: url("../design/2020/final/Desktop_White.svg");
}

@media screen and (max-width: 767px) {
    .page-about-overview .pane--header .module-logo a,
    .page-newsroom-overview .pane--header .module-logo a,
    .page-investor-overview .pane--header .module-logo a,
    .page-team .pane--header .module-logo a,
    .page-person-details .pane--header .module-logo a {
        background-image: url("../design/2020/final/Mobile_LogoMark_White.svg");
    }
}

.page-about-overview .pane--header .layout_toggle button {
    color: #fff;
}

.page-about-overview .module-help-center_link > span,
.page-about-overview .module-help-center_link i {
    color: #fff;
    background: transparent;
    background: -webkit-linear-gradient(left, #fff, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff;
}

.page-about-overview .module-title-small h2.module_title,
.page-about-overview h2.module_title--small {
    margin-bottom: 40px;
}

.module-video-about h1 {
    margin-top: 0;
    margin-bottom: 0;
    background-image: url("../design/cubs_poetry.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    padding-top: 9.31%;
    padding-bottom: 9.31%;
    position: relative;
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
    .module-video-about h1 {
        background-image: url("../design/cubs_poetry@2x.jpg");
    }
}

.module-video-about h1 br {
    display: none;
}

.module-video-about .module_container--outer {
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
}

.module-video-about .module_container--inner {
    width: 100%;
    max-width: 1830px;
    margin: 0 auto;
    padding: 150px 5%;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    height: 100vh;
    position: relative;
}

.module-video-about_play-button {
    font-family: gdsherpa, Arial, sans-serif;
    position: absolute;
    bottom: -70px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    letter-spacing: 3px;
    text-decoration: none;
}

@media only screen and (min-width: 320px) {
    .module-video-about_play-button {
        font-size: calc(14px + ((1vw - 3.2px) * 0.25));
        font-size: calc(1.4rem + ((1vw - 3.2px) * 0.25));
    }
}

@media only screen and (min-width: 1920px) {
    .module-video-about_play-button {
        font-size: 18px;
        font-size: 1.8rem;
    }
}

@media only screen and (max-width: 319px) {
    .module-video-about_play-button {
        font-size: 14px;
        font-size: 1.4rem;
    }
}

.module-video-about_play-button:before {
    font-family: "q4-icons";
    content: "\e912";
    margin-right: 10px;
}

.module-about-intro_item.grid_col {
    padding: 80px 7%;
}

.module-about-intro_item > *:first-child {
    margin-top: 0;
}

@media only screen and (min-width: 320px) {
    .module-about-intro_item h4 {
        font-size: calc(29px + ((1vw - 3.2px) * 1.3125));
        font-size: calc(2.9rem + ((1vw - 3.2px) * 1.3125));
    }
}

@media only screen and (min-width: 1920px) {
    .module-about-intro_item h4 {
        font-size: 50px;
        font-size: 5rem;
    }
}

@media only screen and (max-width: 319px) {
    .module-about-intro_item h4 {
        font-size: 29px;
        font-size: 2.9rem;
    }
}

.module-dream-slider .slick-slider {
    padding: 0;
}

.module-dream-slider .slick-slide.slick-slide {
    display: table;
    padding: 0;
    border: none;
}

.module-dream-slider .module_item-inner {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    height: 90vh;
    padding: 200px 140px;
    position: relative;
}

.module-dream-slider .module_item-title {
    font-size: 200px;
    font-size: 20rem;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 20px;
}

@media only screen and (min-width: 320px) {
    .module-dream-slider .module_item-title {
        font-size: calc(50px + ((1vw - 3.2px) * 9.375));
        font-size: calc(5rem + ((1vw - 3.2px) * 9.375));
    }
}

@media only screen and (min-width: 1920px) {
    .module-dream-slider .module_item-title {
        font-size: 200px;
        font-size: 20rem;
    }
}

.module-dream-slider .module_item[data-slick-index="0"] .module_item-title {
    text-shadow: 0 34px 80px #db9d90;
}

.module-dream-slider .module_item[data-slick-index="1"] .module_item-title {
    text-shadow: 0 34px 80px rgba(114, 163, 145, 0.78);
}

.module-dream-slider .module_item[data-slick-index="2"] .module_item-title {
    text-shadow: 0 34px 80px #ccb290;
}

.module-dream-slider .module_item[data-slick-index="3"] .module_item-title {
    text-shadow: 0 10px 100px #cb9a19;
}

.module-dream-slider .module_item-description {
    line-height: 1.2;
    font-weight: 400;
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    text-align: center;
    padding-left: 25px;
    padding-right: 25px;
}

@media only screen and (min-width: 320px) {
    .module-dream-slider .module_item-description {
        font-size: calc(14px + ((1vw - 3.2px) * 0.375));
        font-size: calc(1.4rem + ((1vw - 3.2px) * 0.375));
    }
}

@media only screen and (min-width: 1920px) {
    .module-dream-slider .module_item-description {
        font-size: 30px;
        font-size: 3rem;
    }
}

@media only screen and (max-width: 319px) {
    .module-dream-slider .module_item-description {
        font-size: 14px;
        font-size: 1.4rem;
    }
}

.module-dream-slider .module_item-description p {
    line-height: 1.2;
}

.module-dream-slider .module_item-description > *:first-child {
    margin-top: 0;
}

.module-dream-slider .module_item-description > *:last-child {
    margin-bottom: 0;
}

.module-dream-slider .slick-prev {
    left: 60px;
}

.module-dream-slider .slick-next {
    right: 60px;
}

.module-dream-slider .slick-dots {
    margin-top: 20px;
}

.module-who-we-are.module-who-we-are .module_container--outer {
    max-width: 1800px;
}

.module-who-we-are .module-who-we-are-slider {
    padding-top: 160px;
}

.module-who-we-are-slider .slick-slider {
    padding: 0;
    margin-left: -130px;
}

.module-who-we-are-slider .slick-track {
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.module-who-we-are-slider .module_item.module_item {
    padding: 0 0 0 130px;
    border: none;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.module-who-we-are-slider .module_item-inner {
    width: 100%;
    overflow: hidden;
}

.module-who-we-are-slider .slick-slide img {
    width: 100%;
    transition: transform 0.7s;
}

.module-who-we-are-slider .slick-dots {
    margin-top: 20px;
    padding-left: 130px;
}

.module-what-we-have-done.module-what-we-have-done {
    padding-bottom: 180px;
    padding-top: 140px;
}

.module-what-we-have-done.module-what-we-have-done .module_title {
    margin-bottom: 30px !important;
}

.module-highlights--about {
    padding-top: 85px;
}

.module-highlights_item.grid_col {
    padding-left: 6.5vw;
    padding-right: 6.5vw;
}

.module-highlights_icon {
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 175px;
}

.module-highlights_icon img {
    max-height: 175px;
}

.module-highlights_value {
    margin-top: 25px;
    margin-bottom: 15px;
}

@media only screen and (min-width: 320px) {
    .module-highlights_value {
        font-size: calc(50px + ((1vw - 3.2px) * 0.9375));
        font-size: calc(5rem + ((1vw - 3.2px) * 0.9375));
    }
}

@media only screen and (min-width: 1920px) {
    .module-highlights_value {
        font-size: 65px;
        font-size: 6.5rem;
    }
}

@media only screen and (max-width: 319px) {
    .module-highlights_value {
        font-size: 50px;
        font-size: 5rem;
    }
}

.module-highlights_description > *:first-child {
    margin-top: 0;
}

@media only screen and (max-width: 375px) {
    .module-highlights_description {
        max-width: 210px;
        margin: 0 auto;
    }
}

.module-our-team.module-our-team {
    background-color: #fff1e1;
    padding-top: 200px;
    padding-bottom: 200px;
    position: relative;
}

.module-our-team:before {
    content: "";
    background-color: #0b4744;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    transition: width 1s ease-in-out;
}

.module-our-team.js--fade-from-bottom:before {
    width: 50%;
}

.module-our-team .module_container--outer {
    position: relative;
    z-index: 1;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}

.module-our-team_items-container.grid--flex {
    justify-content: space-between;
    align-items: center;
}

.module-our-team_item.grid_col {
    padding-left: 7.2vw;
    padding-right: 7.2vw;
}

.module-our-team_item--description {
    font-family: GD Sage, Arial, sans-serif;
    line-height: 1.22;
    font-weight: 500;
    -webkit-transform: translateX(-100px);
    -ms-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 0;
    transition: all 1s ease-in-out;
}

@media only screen and (min-width: 320px) {
    .module-our-team_item--description {
        font-size: calc(24px + ((1vw - 3.2px) * 1.0625));
        font-size: calc(2.4rem + ((1vw - 3.2px) * 1.0625));
    }
}

@media only screen and (min-width: 1920px) {
    .module-our-team_item--description {
        font-size: 41px;
        font-size: 4.1rem;
    }
}

@media only screen and (max-width: 319px) {
    .module-our-team_item--description {
        font-size: 24px;
        font-size: 2.4rem;
    }
}

.module-our-team.js--fade-from-bottom .module-our-team_item--description {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
}

.module-our-team_item--description .module_title {
    margin-bottom: 30px !important;
}

.module-our-team_item--description p {
    line-height: 1.22;
    margin-top: 0;
    margin-bottom: 25px;
}

@media screen and (max-width: 375px) {
    .module-our-team_item--description p {
        margin-bottom: 50px;
    }
}

.module-our-team_item--image .button {
    display: none;
}

.module-our-team_item--image img {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
    transition: transform 1s ease-in-out;
    transition-delay: 0.3s;
}

.module-our-team_item--image .high-resolution {
    display: none;
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
    .module-our-team_item--image .low-resolution {
        display: none;
    }

    .module-our-team_item--image .high-resolution {
        display: inline-block;
    }
}

.module-our-team.js--fade-from-bottom .module-our-team_item--image img {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.page-about-overview .module-news--latest.module-news--latest {
    padding-top: 200px;
    padding-bottom: 225px;
}

.page-about-overview .module-news--latest.module-news--latest .module_links,
.page-about-overview .module-news--latest.module-news--latest .module_body {
    display: none;
}

.module-our-spaces_background {
    background-image: url("../design/our-spaces.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding-top: 20%;
    padding-bottom: 20%;
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
    .module-our-spaces_background {
        background-image: url("../design/our-spaces@2x.jpg");
    }
}

@media only screen and (min-width: 320px) {
    .module-our-spaces .module_title {
        font-size: calc(41px + ((1vw - 3.2px) * 4.9375));
        font-size: calc(4.1rem + ((1vw - 3.2px) * 4.9375));
    }
}

@media only screen and (min-width: 1920px) {
    .module-our-spaces .module_title {
        font-size: 120px;
        font-size: 12rem;
    }
}

.module-our-spaces_item.grid_col {
    padding: 35px 135px 25px;
}

.module.module-guides {
    padding-top: 90px;
}

.module-guides_logo > * {
    display: inline-block;
    vertical-align: bottom;
}

.module-guides_logo > img {
    width: 150px;
    height: 20px;
}

.module-guides_logo-text {
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.3;
    color: #8d4eb5;
    background: transparent;
    background: -webkit-linear-gradient(left, #8d4eb5, #3c6bc7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.module-guides_intro.grid--flex {
    align-items: center;
}

.module-guides_intro-item--description.module-guides_intro-item--description {
    padding: 20px 100px 0;
}

.module-guides_intro-item--description h4 {
    margin-top: 25px;
}

.module-guides_intro .button {
    margin-top: 10px;
}

.module-guides_intro-image-legend {
    color: #2b2b2b;
    margin-top: 20px;
    padding-left: 17px;
    margin-top: 10px;
    position: relative;
}

@media only screen and (min-width: 320px) {
    .module-guides_intro-image-legend {
        font-size: calc(11px + ((1vw - 3.2px) * 0.125));
        font-size: calc(1.1rem + ((1vw - 3.2px) * 0.125));
    }
}

@media only screen and (min-width: 1920px) {
    .module-guides_intro-image-legend {
        font-size: 13px;
        font-size: 1.3rem;
    }
}

@media only screen and (max-width: 319px) {
    .module-guides_intro-image-legend {
        font-size: 11px;
        font-size: 1.1rem;
    }
}

.module-guides_intro-image-legend:before {
    content: "";
    background: #3c6bc7;
    background: linear-gradient(93.34deg, #1976d2 0%, #9e42b5 100%);
    width: 2px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
}

.module-guides_intro-image-legend > span {
    display: block;
}

.module-guides_intro-image-legend > span + span {
    margin-top: 5px;
}

.module-guides_intro-image-legend-name {
    font-weight: 700;
}

.module-guides_intro-image .desktop {
    display: none;
    max-width: 905px;
    width: 100%;
}

.module-guides_intro-image .mobile {
    display: block;
}

.module-guides_highlights {
    padding-top: 80px;
}

.module-guides_highlights-item.module-guides_highlights-item {
    padding-top: 40px;
    padding-right: 70px;
}

.module-guides_highlights-title {
    font-weight: 700;
    color: #2b2b2b;
    margin-top: 0;
    margin-bottom: 0;
}

.module-join-team img {
    max-width: 177px;
    width: 100%;
}

@media only screen and (min-width: 320px) {
    .module-guides_highlights-title {
        font-size: calc(18px + ((1vw - 3.2px) * 0.75));
        font-size: calc(1.8rem + ((1vw - 3.2px) * 0.75));
    }
}

@media only screen and (min-width: 376px) {
    .module-guides_intro-image .desktop {
        display: block;
    }

    .module-guides_intro-image .mobile {
        display: none;
    }
}

@media only screen and (min-width: 1920px) {
    .module-guides_highlights-title {
        font-size: 30px;
        font-size: 3rem;
    }
}

@media only screen and (max-width: 319px) {
    .module-guides_highlights-title {
        font-size: 18px;
        font-size: 1.8rem;
    }
}

@media only screen and (min-width: 1025px) {
    .module.module-join-team {
        padding-top: 120px;
    }
}

.module-join-team h3 {
    font-size: 6.5rem !important;
    /* line-height: 1.3; */
    margin-top: 25px;
}

@media only screen and (min-width: 320px) {
    .module-join-team h3 {
        font-size: calc(22px + ((1vw - 3.2px) * 0.125));
        font-size: calc(2.2rem + ((1vw - 3.2px) * 0.125));
    }
}

@media only screen and (min-width: 1920px) {
    .module-join-team h3 {
        font-size: 24px;
        font-size: 2.4rem;
    }
}

@media only screen and (max-width: 319px) {
    .module-join-team h3 {
        font-size: 22px;
        font-size: 2.2rem;
    }
}

@media only screen and (max-width: 1840px) {
    .module-our-team_item.grid_col {
        padding-left: 5%;
        padding-right: 5%;
    }
}

@media only screen and (max-width: 1280px) {
    .module-about-intro_item.grid_col {
        padding-left: 30px;
        padding-right: 30px;
    }

    .module-who-we-are-slider .module_item.slick-current + .module_item {
        pointer-events: none;
    }

    .module-highlights_item.grid_col {
        padding-left: 20px;
        padding-right: 20px;
    }

    .module-our-spaces_item.grid_col {
        padding-left: 30px;
        padding-right: 30px;
    }

    .module-guides_intro-item--description.module-guides_intro-item--description {
        padding-left: 30px;
        padding-right: 30px;
    }

    .module-guides_highlights-item.module-guides_highlights-item {
        padding-right: 20px;
    }
}

@media only screen and (max-width: 1279px) {
    .module-who-we-are-slider .slick-slider {
        margin-left: -60px;
    }

    .module-who-we-are-slider .module_item.module_item {
        padding-left: 60px;
    }

    .module-who-we-are-slider .slick-dots {
        padding-left: 60px;
    }
}

@media only screen and (max-width: 1023px) {
    .module-about-intro_item.grid_col {
        width: 100%;
        padding: 0;
    }

    .module-dream-slider .module_item-inner {
        height: 623px;
        padding-left: 25px;
        padding-right: 25px;
    }

    .module-who-we-are.module-who-we-are .module_container--outer {
        padding: 0;
    }

    .module-who-we-are .module_container--small {
        padding-left: 5%;
        padding-right: 5%;
    }

    .module-highlights_item.grid_col {
        width: 100%;
    }

    .module-highlights_icon {
        min-height: auto;
    }

    .module-our-team.module-our-team {
        background: none;
        padding-top: 0;
        padding-bottom: 0;
    }

    .module-our-team:before {
        display: none;
    }

    .module-our-team.module-our-team .module_container--outer {
        padding: 0;
    }

    .module-our-team_item.module-our-team_item {
        width: 100%;
        padding-top: 45px;
        padding-bottom: 40px;
    }

    .module-our-team_item--description {
        background-color: #0b4744;
    }

    .module-our-team_item--image.module-our-team_item--image {
        padding-top: 0;
        background-color: #fff1e1;
    }

    .module-our-team_item--image.grid_col {
        position: static;
        right: 0;
    }

    .module-our-team_item--image img {
        position: relative;
        margin-top: -40px;
    }

    .module-our-team_item--description .button {
        display: none;
    }

    .module-our-team_item--image .button {
        margin-top: 30px;
        display: block;
    }

    .module-our-spaces_item.grid_col {
        padding: 0;
        width: 100%;
    }

    .module-guides_intro-item.module-guides_intro-item {
        width: 100%;
    }

    .module-guides_intro-item--description.module-guides_intro-item--description {
        padding-top: 30px;
        padding-left: 0;
        padding-right: 0;
        order: 3;
    }

    .module-guides_highlights-item.module-guides_highlights-item {
        width: 100%;
        padding-right: 0;
    }

    .module-guides_intro .button {
        margin-top: 30px;
        margin-bottom: 10px;
    }

    .module-join-team h3 {
        font-size: 4.5rem !important;
    }
}

@media only screen and (max-width: 767px) {
    .page-about-overview .module-title-small h2.module_title,
    .page-about-overview h2.module_title--small {
        margin-bottom: 20px;
    }

    .module-video-about .module_container--inner {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .module-video-about_play-button {
        letter-spacing: 1.99px;
    }

    .module-dream-slider .module_container--outer {
        padding: 0;
    }

    .module-dream-slider .slick-slide.slick-slide {
        display: block;
    }

    .module-dream-slider .module_item-inner {
        height: auto;
        padding-top: 100px;
        padding-bottom: 100px;
        display: -webkit-flex;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .module-dream-slider .module_item-description {
        /* position: static; */
        color: #5e5e5e;
        max-width: 100%;
        margin: 0 auto;
        padding-top: 20px;
        bottom: 10%;
    }

    .module-who-we-are.module-who-we-are {
        padding-bottom: 0;
    }

    .module-who-we-are .module-who-we-are-slider {
        padding-top: 15px;
    }

    .module-who-we-are-slider .slick-slider {
        margin-left: -25px;
    }

    .module-who-we-are-slider .module_item.module_item {
        padding-left: 25px;
    }

    .module-who-we-are-slider .slick-dots {
        padding-left: 25px;
    }

    .module-what-we-have-done.module-what-we-have-done {
        padding-top: 70px;
        padding-bottom: 55px;
    }

    .module-highlights--about {
        padding-top: 5px;
    }

    .module-highlights_value {
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .module-highlights_icon-image1 {
        width: 128px;
    }

    .module-highlights_icon-image2 {
        width: 93px;
    }

    .module-highlights_icon-image3 {
        width: 96px;
    }

    .module-highlights_item.grid_col + .module-highlights_item.grid_col {
        padding-top: 45px;
    }

    .page-about-overview .module-news--latest.module-news--latest {
        padding-top: 75px;
        padding-bottom: 55px;
    }

    .page-about-overview .module-news--latest .module_item:first-child {
        padding-top: 0;
    }

    .module-our-spaces.module-our-spaces {
        padding-bottom: 0;
    }

    .module-our-spaces_background {
        padding-top: 30%;
        padding-bottom: 30%;
    }

    .module-our-spaces_items-container {
        padding-top: 10px;
    }

    .module-our-spaces h5 {
        margin-bottom: 20px;
    }

    .module-guides.module-guides {
        padding-top: 40px;
    }

    .module-guides_highlights {
        padding-top: 0;
    }

    .module-guides_intro-item--description h4 {
        margin-top: 20px;
    }

    .module-guides_logo > img {
        width: 100px;
        height: 13px;
    }

    .module-join-team.module-join-team {
        padding-top: 10px;
        padding-bottom: 70px;
    }

    .module-join-team img {
        width: 121px;
    }

    .module-join-team h3 {
        font-size: 3rem !important;
    }
}

@media only screen and (max-width: 480px) {
    .module-video-about .module_container--inner {
        max-width: 300px;
    }

    .module-video-about h1 {
        line-height: 1.74;
        background-size: 100% 151px;
    }

    .module-video-about h1 br {
        display: block;
    }

    .module-about-intro.module-about-intro {
        padding-top: 45px;
    }

    .module-video-about_play-button {
        bottom: -30px;
    }
}

@media only screen and (max-width: 375px) {
    .module-guides_intro-item--description h4 {
        font-size: 26px;
    }

    .module-join-team h3 {
        font-size: 24px !important;
    }

    .module-dream-slider .module_item-description {
        position: static;
        color: #5e5e5e;
    }

    .module-dream-slider .module_item-description p {
        line-height: 1.6;
    }
}

@media only screen and (max-width: 319px) {
    .module-dream-slider .module_item-title {
        font-size: 50px;
        font-size: 5rem;
    }

    .module-our-spaces .module_title {
        font-size: 41px;
        font-size: 4.1rem;
    }
}

@media (min-width: 768px) and (max-width: 790px) {
    .module-video-about h1 {
        margin-top: 30px;
    }
}

/*==================END ABOUT OVERVIEW================*/
/*=========================TEAM=======================*/
.page-team .layout {
    padding-top: 0;
}

/*.page-team .pane--header .module-logo a {
    background-image: url('../design/2020/LOCKUP_CLEARSPACE.svg');
  }
  */
.page-team .pane--header .layout_toggle button {
    color: #fff;
}

.page-team .module-help-center_link > span,
.page-team .module-help-center_link i {
    color: #fff;
    background: transparent;
    background: -webkit-linear-gradient(left, #fff, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff;
}

.page-team .pane--banner .pane_inner {
    max-width: none;
    padding: 0;
}

.module-team-intro .module_container--outer {
    width: 100%;
    max-width: 1830px;
    margin: 0 auto;
    padding-left: 5%;
    padding-right: 5%;
}

.module-team-intro .module_container--inner {
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
}

.module-team-intro_items-container {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    min-height: 1000px;
    padding-top: 180px;
    padding-bottom: 180px;
}

.module-team-intro_item--text {
    width: 40%;
    position: relative;
    z-index: 1;
}

.module-team-intro_item--image {
    width: 60%;
    position: relative;
    top: 30px;
    left: -10.7%;
}

.module-team-intro_item--image .high-resolution {
    display: none;
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
    .module-team-intro_item--image .low-resolution {
        display: none;
    }

    .module-team-intro_item--image .high-resolution {
        display: inline-block;
    }
}

.module-team-intro h1 {
    font-family: gdsherpa, Arial, sans-serif;
    line-height: 1.8;
    font-weight: 400;
    margin: 0;
}

@media only screen and (min-width: 320px) {
    .module-team-intro h1 {
        font-size: calc(16px + ((1vw - 3.2px) * 0.25));
        font-size: calc(1.6rem + ((1vw - 3.2px) * 0.25));
    }
}

@media only screen and (min-width: 1920px) {
    .module-team-intro h1 {
        font-size: 20px;
        font-size: 2rem;
    }
}

@media only screen and (max-width: 319px) {
    .module-team-intro h1 {
        font-size: 16px;
        font-size: 1.6rem;
    }
}

.module-team-intro h2 {
    font-size: 100px;
    font-size: 10rem;
    line-height: 1;
    margin-top: 30px;
    margin-bottom: 0;
}

@media only screen and (min-width: 320px) {
    .module-team-intro h2 {
        font-size: calc(45px + ((1vw - 3.2px) * 3.4375));
        font-size: calc(4.5rem + ((1vw - 3.2px) * 3.4375));
    }
}

@media only screen and (min-width: 1920px) {
    .module-team-intro h2 {
        font-size: 100px;
        font-size: 10rem;
    }
}

.module-team-intro_item-person-legend {
    line-height: 1.3;
    margin-top: 20px;
}

@media only screen and (min-width: 320px) {
    .module-team-intro_item-person-legend {
        font-size: calc(13px + ((1vw - 3.2px) * 0.0625));
        font-size: calc(1.3rem + ((1vw - 3.2px) * 0.0625));
    }
}

@media only screen and (min-width: 1920px) {
    .module-team-intro_item-person-legend {
        font-size: 14px;
        font-size: 1.4rem;
    }
}

@media only screen and (max-width: 319px) {
    .module-team-intro_item-person-legend {
        font-size: 13px;
        font-size: 1.3rem;
    }
}

@media only screen and (max-width: 1023px) {
    .module-team-intro_items-container {
        padding-top: 120px;
        padding-bottom: 120px;
        min-height: auto;
    }

    .module-team-intro_item.module-team-intro_item {
        width: 100%;
    }

    .module-team-intro_item--image {
        position: static;
        top: 0;
        left: 0;
        padding-top: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .module-team-intro_items-container {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .module-team-intro_item--image {
        padding-top: 50px;
    }
}

@media only screen and (max-width: 319px) {
    .module-team-intro h2 {
        font-size: 45px;
        font-size: 4.5rem;
    }
}

@media only screen and (min-width: 320px) {
    .module-page-intro h4 {
        font-size: calc(30px + ((1vw - 3.2px) * 1.25));
        font-size: calc(3rem + ((1vw - 3.2px) * 1.25));
    }
}

@media only screen and (min-width: 1920px) {
    .module-page-intro h4 {
        font-size: 50px;
        font-size: 5rem;
    }
}

@media only screen and (max-width: 319px) {
    .module-page-intro h4 {
        font-size: 30px;
        font-size: 3rem;
    }
}

/*=======================END TEAM=====================*/
/*=======================CONTACT======================*/
.page-contact .layout {
    padding-top: 0;
}

.module-marketing-opportunities.module-marketing-opportunities {
    padding-top: 150px;
    color: #2b2b2b;
}

.module-marketing-opportunities p {
    margin-bottom: 20px;
}

.module-marketing-opportunities .module_title {
    margin-bottom: 55px;
}

@media only screen and (min-width: 1025px) {
    .module-marketing-opportunities .module_container--inner {
        max-width: 1500px;
        margin: 0 auto;
    }
}

@media only screen and (min-width: 320px) {
    .module-marketing-opportunities a {
        font-size: calc(14px + ((1vw - 3.2px) * 0.25));
        font-size: calc(1.4rem + ((1vw - 3.2px) * 0.25));
    }
}

@media only screen and (min-width: 1920px) {
    .module-marketing-opportunities a {
        font-size: 18px;
        font-size: 1.8rem;
    }
}

@media only screen and (max-width: 319px) {
    .module-marketing-opportunities a {
        font-size: 14px;
        font-size: 1.4rem;
    }
}

@media only screen and (min-width: 768px) {
    .module-marketing-opportunities .grid--gutter-40 {
        margin-left: -120px;
    }

    .module-marketing-opportunities .grid--gutter-40 .grid_col {
        padding-left: 120px;
    }
}

.module-marketing-opportunities .grid--flex {
    justify-content: space-between;
}

.module-marketing-opportunities .grid_col {
    padding-top: 65px;
}

@media only screen and (max-width: 767px) {
    .module-marketing-opportunities.module-marketing-opportunities {
        padding-top: 45px;
    }

    .module-marketing-opportunities .grid_col {
        padding-top: 15px;
    }
}

@media only screen and (max-width: 480px) {
    .module-marketing-opportunities p {
        margin: 10px 0;
    }
}

/*=====================END CONTACT====================*/
/*==================NEWSROOM OVERVIEW=================*/
.page-newsroom-overview .module-help-center_link > span,
.page-newsroom-overview .module-help-center_link i {
    color: #fff;
    background: transparent;
    background: -webkit-linear-gradient(left, #fff, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff;
}

.module-news--featured {
    /*     background-image: linear-gradient(to right, #FCE9DB 50%, #5B003B 50%); */
    background-color: #09757a;
}

.module-news--featured .module_container--outer {
    width: 100%;
    max-width: 1830px;
    margin: 0 auto;
    padding-left: 5%;
    padding-right: 5%;
}

.module-news--featured .module_items-container {
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
}

.module-news--featured .module_item {
    border: none;
    padding-top: 180px;
    padding-bottom: 180px;
    align-items: center;
    min-height: 1000px;
}

.module-news--featured .module_headline-more {
    flex: 0 0 45%;
    max-width: 45%;
}

.module-news--featured .module_thumbnail {
    flex: 0 0 55%;
    max-width: 55%;
}

.module-news--featured .module_headline-more {
    padding-right: 40px;
}

.module-news--featured .module_headline {
    display: block;
    flex: none;
    order: initial;
    margin-bottom: 35px;
}

.module-news--featured .module_headline-link,
.module-news--featured .module_headline-text {
    font-size: 75px;
    font-size: 7.5rem;
    line-height: 1.14;
    font-weight: 500;
    color: #fce9db;
    margin: 0;
}

@media only screen and (min-width: 320px) {
    .module-news--featured .module_headline-link,
    .module-news--featured .module_headline-text {
        font-size: calc(32px + ((1vw - 3.2px) * 2.6875));
        font-size: calc(3.2rem + ((1vw - 3.2px) * 2.6875));
    }
}

@media only screen and (min-width: 1920px) {
    .module-news--featured .module_headline-link,
    .module-news--featured .module_headline-text {
        font-size: 75px;
        font-size: 7.5rem;
    }
}

.module-news--featured .module_thumbnail img {
    display: block;
}

.module-blog.module-blog {
    padding-top: 120px;
    padding-bottom: 70px;
}

.module-blog_item-legend {
    color: #2b2b2b;
    margin-top: 20px;
    padding-left: 15px;
    border-left: 2px solid #eab302;
    margin-top: 10px;
}

.module-blog_item--image img {
    width: 100%;
}

@media only screen and (min-width: 320px) {
    .module-blog_item-legend {
        font-size: calc(11px + ((1vw - 3.2px) * 0.0625));
        font-size: calc(1.1rem + ((1vw - 3.2px) * 0.0625));
    }
}

@media only screen and (min-width: 1920px) {
    .module-blog_item-legend {
        font-size: 12px;
        font-size: 1.2rem;
    }
}

@media only screen and (max-width: 319px) {
    .module-blog_item-legend {
        font-size: 11px;
        font-size: 1.1rem;
    }
}

.module-blog_item-legend > span {
    display: block;
}

.module-blog_item-legend-name {
    font-weight: 700;
}

.module-blog_item-legend > span + span {
    margin-top: 5px;
}

.module-blog_item--image .high-resolution {
    display: none;
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
    .module-blog_item--image .low-resolution {
        display: none;
    }

    .module-blog_item--image .high-resolution {
        display: inline-block;
    }
}

.module-blog_item--image {
    padding-right: 35px;
}

.module-blog_item--content.module-blog_item--content {
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: 150px;
}

.module-blog_item--content .module-blog_item-inner {
    max-width: 395px;
}

.module-blog .button {
    margin-top: 10px;
}

@media only screen and (max-width: 1280px) {
    .module-blog_item--image {
        padding-right: 0;
    }

    .module-blog_item--content.module-blog_item--content {
        padding-top: 20px;
        padding-bottom: 20px;
        padding-left: 30px;
    }
}

@media only screen and (max-width: 1023px) {
    /*     .page-newsroom-overview .module-help-center_link > span,
    .page-newsroom-overview .module-help-center_link i {
        color: #8d4eb5;
        background: transparent;
        background: -webkit-linear-gradient(left, #8d4eb5, #3c6bc7);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    } */
    .module-news--featured {
        background: none;
    }

    .module-news--featured .module_container--content {
        margin: 0 -25px;
        padding: 0 25px;
    }

    .module-news--featured .module_item {
        padding-top: 0;
        padding-bottom: 0;
        margin: 0 -25px;
        min-height: auto;
    }

    .module-news--featured .module_headline-more,
    .module-news--featured .module_thumbnail {
        flex: 0 0 100%;
        max-width: 100%;
        padding-top: 120px;
        padding-bottom: 120px;
        padding-left: 25px;
        padding-right: 25px;
    }

    .module-news--featured .module_headline-more {
        /*background-color: #5B003B;*/
    }

    .module-news--featured .module_thumbnail {
        /*background-color: #5B003B;*/
    }

    .module-news--featured .module_thumbnail {
        text-align: center;
    }

    .module-news--featured .module_thumbnail img {
        display: inline-block;
        margin-top: -170px;
    }

    .module-blog_item.module-blog_item {
        width: 100%;
        padding: 0;
    }

    .module-blog_item--content .module-blog_item-inner {
        max-width: none;
    }

    .module-blog .button {
        margin-top: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .module-news--featured .module_headline-more,
    .module-news--featured .module_thumbnail {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .module-news--featured .module_thumbnail img {
        margin-top: -150px;
    }

    .module-blog.module-blog {
        padding-top: 40px;
    }
}

@media only screen and (max-width: 319px) {
    .module-news--featured .module_headline-link,
    .module-news--featured .module_headline-text {
        font-size: 32px;
        font-size: 3.2rem;
    }
}

/*================END NEWSROOM OVERVIEW===============*/
/*=============ANALYST COVERAGE====================*/
@media only screen and (max-width: 375px) {
    .module-analyst-coverage .table td {
        padding-bottom: 10px;
        padding-top: 10px;
    }

    .module-analyst-coverage .table td[data-heading="Email"] {
        padding-bottom: 20px;
    }

    .table--responsive td[data-heading]:before {
        width: 100px;
    }

    .table--responsive td[data-heading] > span {
        width: 60%;
    }
}

/*===================MEDIA RESOURCES==================*/
.page-media-resources .layout {
    padding-top: 0;
}

.page-media-resources .module-intro {
    padding-bottom: 30px;
}

.module-downloads--team.module-downloads--team {
    padding-top: 115px;
}

.module-downloads--offices.module-downloads--offices {
    padding-top: 140px;
}

@media only screen and (max-width: 767px) {
    .module-downloads--team.module-downloads--team,
    .module-downloads--offices.module-downloads--offices {
        padding-top: 50px;
    }
}

.module-downloads--logos .module_item {
    padding: 0 0 0 40px;
    border: none;
}

.module-downloads--logos .module_item:first-child {
    border: none;
}

.module-downloads--logos .module_item:nth-child(1),
.module-downloads--logos .module_item:nth-child(2),
.module-downloads--logos .module_item:nth-child(3),
.module-downloads--logos .module_item:nth-child(4) {
    width: 50%;
}

.module-downloads--logos .module_item:nth-child(n + 3) {
    padding-top: 50px;
}

.module-downloads--logos .module_item:nth-child(n + 5) .module-downloads_thumbnail-link {
    padding: 15.5% 20px;
}

.module-downloads--logos .module_item-inner {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    height: 100%;
    border: 1px solid #afafaf;
}

.module-downloads--logos .module-downloads_thumbnail-link {
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 41.5% 20px;
}

.module-downloads--logos .module_item:nth-child(1) .module-downloads_thumbnail-link,
.module-downloads--logos .module_item:nth-child(2) .module-downloads_thumbnail-link,
.module-downloads--logos .module_item:nth-child(3) .module-downloads_thumbnail-link,
.module-downloads--logos .module_item:nth-child(4) .module-downloads_thumbnail-link {
    padding-top: 27.2%;
    padding-bottom: 27.2%;
}

.module-downloads--logos .module-downloads_footer {
    padding-top: 70px;
    color: #8c8c8c;
}

@media only screen and (max-width: 319px) {
    .module-downloads--logos .module-downloads_footer {
        font-size: 14px;
        font-size: 1.4rem;
    }
}

@media only screen and (min-width: 320px) {
    .module-downloads--logos .module-downloads_footer {
        font-size: calc(14px + ((1vw - 3.2px) * 0.25));
        font-size: calc(1.4rem + ((1vw - 3.2px) * 0.25));
    }
}

@media only screen and (min-width: 1024px) {
    .pane--content .module.module-downloads--logos {
        padding-top: 120px;
    }
}

@media only screen and (min-width: 1920px) {
    .module-downloads--logos .module-downloads_footer {
        font-size: 18px;
        font-size: 1.8rem;
    }
}

.module-downloads--photos .module_item {
    padding: 0 0 0 40px;
    border: none;
}

.module-downloads--photos .module_item:first-child {
    border: none;
}

.module-downloads--photos .module_item:nth-child(n + 5) {
    padding-top: 105px;
}

.module-downloads--photos .module-downloads_thumbnail {
    display: block;
}

.module-downloads--photos .module-downloads_thumbnail img {
    display: block;
    width: 100%;
}

.module-downloads--photos .module-downloads_title {
    line-height: 1.7;
    margin-top: 20px;
    color: #2b2b2b;
}

@media only screen and (min-width: 320px) {
    .module-downloads--photos .module-downloads_title {
        font-size: calc(16px + ((1vw - 3.2px) * 0.125));
        font-size: calc(1.6rem + ((1vw - 3.2px) * 0.125));
    }
}

@media only screen and (min-width: 1920px) {
    .module-downloads--photos .module-downloads_title {
        font-size: 18px;
        font-size: 1.8rem;
    }
}

@media only screen and (max-width: 319px) {
    .module-downloads--photos .module-downloads_title {
        font-size: 16px;
        font-size: 1.6rem;
    }
}

.module-downloads--photos .module-downloads_footer {
    padding-top: 70px;
}

.module-downloads--team .module-downloads_title-description > *:first-child {
    margin-top: 0;
}

.module-downloads--team .module-downloads_title-description > *:last-child {
    margin-bottom: 0;
}

.module-public-relations.module-public-relations {
    padding-top: 130px;
}

@media only screen and (max-width: 767px) {
    .module-public-relations.module-public-relations {
        padding-top: 30px;
    }
}

@media only screen and (min-width: 320px) {
    .module-public-relations {
        font-size: calc(14px + ((1vw - 3.2px) * 0.25));
        font-size: calc(1.4rem + ((1vw - 3.2px) * 0.25));
    }
}

@media only screen and (min-width: 1920px) {
    .module-public-relations {
        font-size: 18px;
        font-size: 1.8rem;
    }
}

@media only screen and (max-width: 319px) {
    .module-public-relations {
        font-size: 14px;
        font-size: 1.4rem;
    }
}

.module-public-relations .module_container--content {
    max-width: 1070px;
    margin: 0 auto;
}

.module-public-relations h5 {
    font-family: gdsherpa, Arial, sans-serif;
    font-weight: 700;
}

@media only screen and (min-width: 320px) {
    .module-public-relations h5 {
        font-size: calc(20px + ((1vw - 3.2px) * 0.3125));
        font-size: calc(2rem + ((1vw - 3.2px) * 0.3125));
    }
}

@media only screen and (min-width: 1920px) {
    .module-public-relations h5 {
        font-size: 25px;
        font-size: 2.5rem;
    }
}

@media only screen and (max-width: 319px) {
    .module-public-relations h5 {
        font-size: 20px;
        font-size: 2rem;
    }
}

@media only screen and (max-width: 1200px) {
    .module-downloads--photos .module_item:nth-child(n + 4) {
        padding-top: 105px;
    }
}

@media only screen and (max-width: 768px) {
    .module-downloads--logos .module_item:nth-child(1) .module-downloads_thumbnail-link,
    .module-downloads--logos .module_item:nth-child(2) .module-downloads_thumbnail-link {
        padding-top: 41.5%;
        padding-bottom: 41.5%;
    }

    .module-downloads--photos .module_item:nth-child(n + 3) {
        padding-top: 105px;
    }
}

@media only screen and (max-width: 767px) {
    .module-downloads--logos .module_item:nth-child(n + 3) {
        padding-top: 40px;
    }

    .module-downloads--logos .module-downloads_footer {
        padding-top: 40px;
    }

    .module-downloads--photos .module_item:nth-child(n + 3) {
        padding-top: 40px;
    }

    .module-downloads--logos .module_item:nth-child(1) img,
    .module-downloads--logos .module_item:nth-child(2) img {
        max-width: 225px;
    }

    .module-downloads--photos .module-downloads_footer {
        padding-top: 40px;
    }
}

@media only screen and (max-width: 480px) {
    .module-downloads--logos .module_item:nth-child(1),
    .module-downloads--logos .module_item:nth-child(2) {
        width: 100%;
    }

    .module-downloads--logos .module_item:nth-child(n + 1) {
        padding-top: 40px;
    }

    .module-downloads--photos .module_item:nth-child(n + 1) {
        padding-top: 40px;
    }
}

/*=================END MEDIA RESOURCES================*/
/*=================HISTORY & MILESTONES===============*/
.module-history .module_container--widget {
    position: relative;
}

.module-history .module_container--content.slick-slider {
    display: inline-block;
}

.module-history .module_item {
    padding: 20px 50px;
    border: none;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    -webkit-transition: opacity 700ms cubic-bezier(0.694, 0, 0.335, 1), -webkit-transform 700ms cubic-bezier(0.694, 0, 0.335, 1);
    transition: opacity 700ms cubic-bezier(0.694, 0, 0.335, 1), -webkit-transform 700ms cubic-bezier(0.694, 0, 0.335, 1);
    -o-transition: opacity 700ms cubic-bezier(0.694, 0, 0.335, 1), transform 700ms cubic-bezier(0.694, 0, 0.335, 1);
    transition: opacity 700ms cubic-bezier(0.694, 0, 0.335, 1), transform 700ms cubic-bezier(0.694, 0, 0.335, 1);
    transition: opacity 700ms cubic-bezier(0.694, 0, 0.335, 1), transform 700ms cubic-bezier(0.694, 0, 0.335, 1), -webkit-transform 700ms cubic-bezier(0.694, 0, 0.335, 1);
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
}

.module-history .module_item.js--fade-from-bottom {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.module-history .module_item:first-child {
    border: none;
}

.module-history .module_item + .module_item {
    margin-top: 135px;
}

.module-history_thumb {
    margin-bottom: 40px;
}

.module-history_title {
    color: #2b2b2b;
    margin-bottom: 30px;
}

.module-history_description h4 {
    margin-top: 55px;
    margin-bottom: 55px;
}

.module-history_description .color--15 {
    margin-top: 20px;
    margin-bottom: 20px;
}

.module-history_description img {
    margin-top: 60px;
    margin-bottom: 10px;
}

.module-history .module_item img {
    max-height: 150px;
    max-width: 250px;
}

.module-history_description > *:first-child {
    margin-top: 0;
}

.module-history_description > *:last-child {
    margin-bottom: 0;
}

.module-history_years-container {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.module-history_years {
    height: 260px;
    overflow: hidden;
}

.js--fixed-years.js--fixed-years_top .module-history_years {
    top: 0;
    position: fixed;
}

.js--fixed-years.js--fixed-years_bottom .module-history_years {
    bottom: 0;
    position: absolute;
}

.module-history_years-container.js--sticky .module-history_years {
    position: fixed;
    top: 0;
    background: #fff;
    z-index: 1;
}

.module-history_years-container.js--no-sticky .module-history_years {
    position: static;
}

.module-history_year {
    cursor: pointer;
    color: #e2e2e2;
    margin: 20px 0;
    display: none;
    transition: all 0.3s linear;
}

.module-history_year.js--active {
    color: #2b2b2b;
    display: block;
    cursor: default;
}

.module-history_year.js--active ~ .module-history_year,
.module-history_year:nth-last-child(-n + 6) {
    display: block;
}

.module-history_year.slick-current {
    color: #2b2b2b;
    cursor: default;
}

.module-history_year.js--active + .module-history_year + .module-history_year {
    opacity: 0.9;
}

.module-history_year.js--active + .module-history_year + .module-history_year + .module-history_year {
    opacity: 0.8;
}

.module-history_year.js--active + .module-history_year + .module-history_year + .module-history_year + .module-history_year {
    opacity: 0.7;
}

.module-history_year.js--active + .module-history_year + .module-history_year + .module-history_year + .module-history_year + .module-history_year {
    opacity: 0.6;
}

.module-back-to-top {
    position: fixed;
    bottom: 100px;
    right: 50px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    transition: all 0.5s ease-in-out;
}

.module-back-to-top.js--show {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.module-back-to-top button {
    display: inline-block;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-size: 14px;
    font-size: 1.4rem;
    border: 1px solid #afafaf;
    background-color: #fff;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

@media only screen and (max-width: 767px) {
    .module-history_years {
        height: 155px;
    }

    .module-history_year {
        margin: 10px 0;
    }

    .module-history .module_item {
        padding-left: 40px;
        padding-right: 40px;
    }

    .module-history .module_item + .module_item {
        margin-top: 70px;
    }

    .module-back-to-top {
        bottom: 60px;
        right: 25px;
    }
}

/*===============END HISTORY & MILESTONES=============*/
/*===================AWARDS & HONORS==================*/
.module-downloads--awards .module_header,
.module-downloads--awards .module-downloads_title-link:before {
    display: none;
}

.module-downloads--awards .module_container--content {
    margin-left: -40px;
}

.module-downloads--awards .module_item {
    width: 25%;
    border: none;
    box-sizing: border-box;
    display: inline-block;
    margin-right: -0.25em;
    min-height: 1px;
    vertical-align: top;
    padding: 0 0 0 40px;
}

.module-downloads--awards .module_item:nth-child(n + 6) {
    padding-top: 130px;
}

.module-downloads--awards .module_header + .module_item {
    border-top: none;
}

.module-downloads--awards .module-downloads_thumbnail {
    display: -webkit-flex;
    display: flex;
    border: 1px solid #afafaf;
    text-align: center;
    justify-content: center;
    align-items: center;
    height: 380px;
    padding: 20px;
}

.module-downloads--awards .module-downloads_thumbnail img {
    max-height: 300px;
    filter: grayscale(100%);
}

.module-downloads--awards .module-downloads_thumbnail-link {
    pointer-events: none;
    display: block;
    width: 100%;
}

.module-downloads--awards .module-downloads_title {
    margin-top: 25px;
}

.module-downloads--awards .module-downloads_title-link {
    font-family: gdsherpa, Arial, sans-serif;
    font-weight: 700;
    color: #2b2b2b;
    margin: 0;
}

@media only screen and (min-width: 320px) {
    .module-downloads--awards .module-downloads_title-link {
        font-size: calc(20px + ((1vw - 3.2px) * 0.3125));
        font-size: calc(2rem + ((1vw - 3.2px) * 0.3125));
    }
}

@media only screen and (min-width: 1920px) {
    .module-downloads--awards .module-downloads_title-link {
        font-size: 25px;
        font-size: 2.5rem;
    }
}

@media only screen and (max-width: 319px) {
    .module-downloads--awards .module-downloads_title-link {
        font-size: 20px;
        font-size: 2rem;
    }
}

.module-downloads--awards .module-downloads_title-link[href$="no-link"] {
    pointer-events: none;
}

@media only screen and (max-width: 1279px) {
    .module-downloads--awards .module_item {
        width: 33.3333333333%;
    }

    .module-downloads--awards .module_item:nth-child(n + 5) {
        padding-top: 130px;
    }
}

@media only screen and (max-width: 1023px) {
    .module-downloads--awards .module_item {
        width: 50%;
    }

    .module-downloads--awards .module_item:nth-child(n + 4) {
        padding-top: 130px;
    }
}

@media only screen and (max-width: 767px) {
    .module-downloads--awards .module_item {
        width: 100%;
    }

    .module-downloads--awards .module_item:nth-child(n + 3) {
        padding-top: 60px;
    }

    .module-downloads--awards .module-downloads_thumbnail {
        min-height: 250px;
        height: auto;
    }
}

/*=================END AWARDS & HONORS================*/
/*=====================IR OVERVIEW====================*/
.page-investor-overview .module-help-center_link > span,
.page-investor-overview .module-help-center_link i {
    color: #fff;
    background: transparent;
    background: -webkit-linear-gradient(left, #fff, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff;
}

.module-slider .module_container--inner {
    position: relative;
}

.module-slider .slick-track {
    display: -webkit-flex;
    display: flex;
}

.module-slider .slick-slider {
    padding: 0;
}

.module-slider .slick-slider .slick-slide {
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    padding: 0;
    border: none;
    height: auto;
}

.module-slider .module_item {
    /* background-image: linear-gradient(to right, #FFF1E1 50%, #BD8150 50%); */
    background-color: #860f01;
}

.module-slider .module_item-inner {
    width: 100%;
    margin: 0 auto;
    padding-top: 190px;
    padding-bottom: 190px;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    min-height: 1000px;
}

.module_slider-content,
.module_slider-image {
    flex: 0 0 50%;
    max-width: 50%;
}

.module_slider-content {
    padding-left: 7.2vw;
    padding-right: 7.2vw;
}

.module_slider-image {
    line-height: 1.4;
    padding-left: 5.5vw;
    padding-right: 5.5vw;
    max-width: 735px;
    margin-left: auto;
    margin-right: auto;
    text-align: right;
}

@media only screen and (min-width: 320px) {
    .module_slider-image {
        font-size: calc(11px + ((1vw - 3.2px) * 0.125));
        font-size: calc(1.1rem + ((1vw - 3.2px) * 0.125));
    }
}

@media only screen and (min-width: 1920px) {
    .module_slider-image {
        font-size: 13px;
        font-size: 1.3rem;
    }
}

@media only screen and (max-width: 319px) {
    .module_slider-image {
        font-size: 11px;
        font-size: 1.1rem;
    }
}

.module_slider-image-domain a {
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.9px;
}

@media only screen and (min-width: 320px) {
    .module_slider-image-domain a {
        font-size: calc(9px + ((1vw - 3.2px) * 0.0625));
        font-size: calc(0.9rem + ((1vw - 3.2px) * 0.0625));
    }
}

@media only screen and (min-width: 1920px) {
    .module_slider-image-domain a {
        font-size: 10px;
        font-size: 1rem;
    }
}

@media only screen and (max-width: 319px) {
    .module_slider-image-domain a {
        font-size: 9px;
        font-size: 0.9rem;
    }
}

.module_slider-image.module_slider-image img {
    display: block;
    width: 100%;
    max-width: 735px;
    margin-left: auto;
    margin-right: auto;
}

.module_slider-image.module_slider-image img.high-resolution {
    display: none;
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
    .module_slider-image.module_slider-image img.low-resolution {
        display: none;
    }

    .module_slider-image.module_slider-image img.high-resolution {
        display: block;
    }
}

.module_slider-image > span {
    display: block;
}

.module_slider-image-person-name {
    margin-top: 20px;
    font-weight: bold;
    text-align: center;
}

.module_slider-image-location,
.module_slider-image-domain {
    text-align: center;
}

.module-slider .module-slider_title h1 {
    font-size: 75px;
    font-size: 7.5rem;
    line-height: 1.14;
    margin: 0;
}

@media only screen and (min-width: 320px) {
    .module-slider .module-slider_title h1 {
        font-size: calc(32px + ((1vw - 3.2px) * 2.6875));
        font-size: calc(3.2rem + ((1vw - 3.2px) * 2.6875));
    }
}

@media only screen and (min-width: 1920px) {
    .module-slider .module-slider_title h1 {
        font-size: 75px;
        font-size: 7.5rem;
    }
}

.module-slider .module_more {
    margin-top: 25px;
}

.module-slider .module_loader {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.module-slider .color--13 {
    color: #003a15;
}

.module-slider .color--11 {
    color: #0b3354;
}

.module-slider .color--14 {
    color: #833a25;
}

.module-slider .color--23 {
    color: #004249;
}

.module-slider .color--24 {
    color: #6d3209;
}

.module-slider .module_container-slick-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 175px;
    width: 100%;
    text-align: right;
}

.module-slider .slick-dots {
    display: inline-block;
    width: 50%;
}

.module-overview.module-overview {
    padding-top: 150px;
}

.module-overview h2 {
    margin-bottom: 30px;
}

.module-overview .module_container--small {
    max-width: 660px;
}

.module-overview .module_container--small p {
    margin-bottom: 50px;
}

.page-investor-overview .module-news h2 {
    margin-top: 20px;
}

.page-investor-overview .module-news .module_container--inner {
    padding-top: 35px;
}

@media only screen and (max-width: 1840px) {
    .module_slider-content {
        padding-left: 5%;
        padding-right: 5%;
    }
}

@media only screen and (max-width: 1024px) {
    .page-investor-overview .module-news h2 {
        margin-top: 0;
    }

    .page-investor-overview .module-news .module_container--inner {
        padding-top: 0;
    }
}

@media only screen and (max-width: 1023px) {
    /* .page-investor-overview .module-help-center_link > span,
    .page-investor-overview .module-help-center_link i {
        color: #3c6bc7;
        background: transparent;
        background: -webkit-linear-gradient(left, #3c6bc7, #8d4eb5);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    } */
    .module-slider .slick-track {
        display: block;
    }

    .module-slider .module_item-inner {
        padding: 0;
        min-height: auto;
    }

    .module_slider-content,
    .module_slider-image {
        flex: 0 0 100%;
        max-width: 100%;
        padding-top: 120px;
        padding-bottom: 120px;
    }

    .module_slider-image {
        text-align: center;
    }

    .module_slider-image.module_slider-image img {
        display: inline-block;
        margin-top: -170px;
    }

    .module-slider .module_container-slick-dots {
        bottom: 50px;
    }

    .module-slider .slick-dots {
        width: 100%;
        padding-left: 0;
    }
}

@media only screen and (max-width: 767px) {
    .module_slider-content,
    .module_slider-image {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .module-overview.module-overview {
        padding-top: 70px;
    }
}

@media only screen and (max-width: 319px) {
    .module-slider .module-slider_title h1 {
        font-size: 32px;
        font-size: 3.2rem;
    }
}

/*===================END IR OVERVIEW==================*/
/*=====================FINANCIALS=====================*/
.module-downloads--ccfi .module_header {
    display: none;
}

.module-downloads--ccfi .module_item {
    padding: 0;
    border: none;
}

.module-downloads--ccfi .module_header + .module_item {
    border-top: none;
}

.module-downloads--ccfi .module-downloads_title-link {
    color: #8c8c8c;
}

.module-downloads--ccfi .module_links-text .module-downloads_title-link:before {
    display: none;
}

.mdoule-iac.mdoule-iac {
    padding-top: 135px !important;
    padding-bottom: 135px !important;
}

.mdoule-iac .color--17,
.mdoule-iac a.color--17 {
    color: #fadcd9;
}

.mdoule-iac .module_container--content {
    max-width: 900px;
}

@media only screen and (min-width: 1025px) {
    .module.module-ownership {
        padding-bottom: 145px;
    }
}

.module-ownership_item + .module-ownership_item {
    padding-top: 100px;
}

.module-ownership_item h5 {
    margin-bottom: 110px;
}

@media only screen and (max-width: 767px) {
    .module-ownership_item + .module-ownership_item {
        padding-top: 40px;
    }

    .module-ownership_item h5 {
        margin-bottom: 30px;
    }

    .mdoule-iac.mdoule-iac {
        padding-top: 70px !important;
        padding-bottom: 70px !important;
    }
}

/*===================END FINANCIALS===================*/
/*=====================GOVERNANCE=====================*/
@media only screen and (min-width: 320px) {
    .module-committee-custom {
        font-size: calc(16px + ((1vw - 3.2px) * 0.125));
        font-size: calc(1.6rem + ((1vw - 3.2px) * 0.125));
    }
}

@media only screen and (min-width: 1920px) {
    .module-committee-custom {
        font-size: 18px;
        font-size: 1.8rem;
    }
}

@media only screen and (max-width: 319px) {
    .module-committee-custom {
        font-size: 16px;
        font-size: 1.6rem;
    }
}

.module-committee-custom .module_container--inner {
    border-bottom: 1px solid #d8d8d8;
    padding-bottom: 140px;
}

.module-committee-custom_disclaimer {
    max-width: 360px;
    margin: 0 auto;
    padding-top: 90px;
}

@media only screen and (min-width: 320px) {
    .module-committee-custom_disclaimer {
        font-size: calc(11px + ((1vw - 3.2px) * 0.0625));
        font-size: calc(1.1rem + ((1vw - 3.2px) * 0.0625));
    }
}

@media only screen and (min-width: 1920px) {
    .module-committee-custom_disclaimer {
        font-size: 12px;
        font-size: 1.2rem;
    }
}

@media only screen and (max-width: 319px) {
    .module-committee-custom_disclaimer {
        font-size: 11px;
        font-size: 1.1rem;
    }
}

.module-committee-custom_item:nth-child(n + 4) {
    padding-top: 70px;
}

@media only screen and (max-width: 768px) {
    .module-committee-custom_item:nth-child(n + 2) {
        padding-top: 0;
    }
}

/*===================END GOVERNANCE===================*/
/*=====================RESOURCES======================*/
.page-resources .pane--left .pane_inner {
    max-width: 1480px;
}

.page-resources .pane--left .module {
    padding-top: 50px;
    padding-bottom: 50px;
}
/*
.page-resources .pane--content .pane_inner {
    width: 100%;
    max-width: 1175px;
    margin: 0 auto;
    padding-left: 5%;
    padding-right: 5%;
}*/

.page-resources .pane--content .module_container--outer {
    max-width: none;
    padding: 0;
}

.page-resources .module-ir-contact {
    max-width: 1430px;
    margin: 100px auto 0;
    border-top: 1px solid #d8d8d8;
}

.module-rss .rss-icons li {
    display: inline-block;
    vertical-align: top;
}

.module-rss .rss-icons li:not(:last-child) {
    margin-right: 45px;
}

.module-rss .module_q4-icon-links .module_link.module_link-rss:before {
    margin-right: 20px;
}

.module-rss .module-accordion {
    margin-top: 60px;
}

.page-resources .pane--content .module {
    font-size: 16px;
    font-size: 1.6rem;
}

.page-resources .module-subscribe.grid_col {
    padding-right: 10px;
}

.page-resources .pane--content .module-unsubscribe {
    text-align: right;
}

.page-resources .pane--content .module-unsubscribe .module_container--outer {
    display: inline-block;
    width: auto;
    text-align: left;
}

.page-resources .module-unsubscribe.grid_col {
    padding-left: 10px;
}

.page-resources .pane--content .module-subscribe h2,
.page-resources .pane--content .module-unsubscribe h2 {
    font-family: gdsherpa, Arial, sans-serif;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: left;
}

.page-resources .pane--content .module-subscribe .module-subscribe_form tr:nth-child(odd),
.page-resources .pane--content .module-unsubscribe_table td {
    padding-right: 0;
}

@media only screen and (min-width: 320px) {
    .page-resources .pane--content .module-subscribe h2,
    .page-resources .pane--content .module-unsubscribe h2 {
        font-size: calc(22px + ((1vw - 3.2px) * 0.1875));
        font-size: calc(2.2rem + ((1vw - 3.2px) * 0.1875));
    }
}

@media only screen and (min-width: 1920px) {
    .page-resources .pane--content .module-subscribe h2,
    .page-resources .pane--content .module-unsubscribe h2 {
        font-size: 25px;
        font-size: 2.5rem;
    }
}

@media only screen and (max-width: 319px) {
    .page-resources .pane--content .module-subscribe h2,
    .page-resources .pane--content .module-unsubscribe h2 {
        font-size: 22px;
        font-size: 2.2rem;
    }
}

.page-resources .pane--content .module-subscribe_form label,
.page-resources .pane--content .module-unsubscribe_table label {
    color: #111111;
}

.page-resources .pane--content .module-subscribe_form tr,
.page-resources .pane--content .module-unsubscribe_table {
    width: 100%;
}

.page-resources .pane--content .module-subscribe_form,
.page-resources .pane--content .module-unsubscribe_table {
    max-width: 340px;
}

.page-resources .pane--content .module-subscribe_table {
    margin-top: 20px;
}

.page-resources .pane--content .module-subscribe_mailing-list tr table td {
    padding-bottom: 20px;
}

.page-resources .pane--content .module-unsubscribe .module_actions {
    margin-top: 30px;
}

.page-resources .pane--content .module_input::-webkit-input-placeholder {
    color: transparent;
}

.page-resources .pane--content .module_input::-moz-placeholder {
    color: transparent;
}

.page-resources .pane--content .module_input::-ms-input-placeholder {
    color: transparent;
}

.page-resources .pane--content .module-subscribe .module_introduction,
.page-resources .pane--content .module-unsubscribe .module_introduction,
.page-resources .module-subscribe_list-header {
    display: none;
}

@media only screen and (max-width: 1023px) {
    .page-resources .pane--content .module.grid_col {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .page-resources .pane--content .module-unsubscribe {
        text-align: left;
    }

    .page-resources .pane--content .module-unsubscribe .module_container--outer {
        width: 100%;
    }

    .page-resources .module-ir-contact {
        margin-top: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .module-rss .rss-icons li {
        display: block;
    }

    .module-rss .rss-icons li:not(:last-child) {
        margin-right: 0;
    }

    .page-resources .pane--content .module {
        font-size: 14px;
        font-size: 1.4rem;
    }
}

@media only screen and (max-width: 480px) {
    .page-resources .pane--left .module {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

.pane--content .pane_inner .ContentPaneDiv > span:last-child .module {
    padding-bottom: 0;
}

/*===================END RESOURCES====================*/
/*=======================END INNER PAGES======================*/
/*-- CR 448 --*/
.nav--dropdown {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    font-size: 1.6rem;
    margin-left: 90px;
}

.nav--dropdown a {
    text-decoration: none;
}

.nav--dropdown a:hover {
    text-decoration: underline;
}

.nav--dropdown .level1 > li {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding: 20px 0;
    margin-right: 50px;
}

@media screen and (max-width: 1100px) {
    .nav--dropdown .level1 > li {
        margin-right: 45px;
    }
}

.nav--dropdown .level1 > li > a {
    color: #111;
}

.page-about-overview .nav--dropdown .level1 > li > a,
.page-newsroom-overview .nav--dropdown .level1 > li > a,
.page-investor-overview .nav--dropdown .level1 > li > a,
.page-team .nav--dropdown .level1 > li > a {
    color: #fff;
}

.nav--dropdown .level1 > li.has-children > a:after {
    content: "\e913";
    font-family: "q4-icons" !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: rotate(-90deg);
    display: inline-block;
    font-size: 10px;
    font-size: 1rem;
    margin-left: 10px;
}

.nav--dropdown .level2 {
    display: none;
    position: absolute;
    top: 100%;
    background-color: #f5f7f8;
    min-width: 170px;
    padding: 25px 20px 10px 20px;
    white-space: nowrap;
}

.page-about-overview .nav--dropdown .level2,
.page-newsroom-overview .nav--dropdown .level2,
.page-investor-overview .nav--dropdown .level2 {
    background-color: #fff;
}

.nav--dropdown .level1 > li:hover .level2 {
    display: block;
}

.nav--dropdown .level2 li {
    margin-bottom: 15px;
}

.nav--dropdown .level2 a {
    color: #111;
}

.nav--dropdown .level1 > li:hover > a:after {
    transform: rotate(90deg);
}

.nav--dropdown .level1 > li:hover > a {
    text-decoration: underline;
}

@media only screen and (max-width: 1023px) {
    .nav--dropdown {
        display: block;
        margin: 0;
    }
}

/*=======================CR-706=======================*/
.module-details_contact {
    border-top: 1px solid #d8d8d8;
    margin-top: 80px;
    padding-top: 65px;
}

@media only screen and (min-width: 320px) {
    .module-details_contact {
        font-size: calc(14px + ((1vw - 3.2px) * 0.25));
        font-size: calc(1.4rem + ((1vw - 3.2px) * 0.25));
    }
}

@media only screen and (min-width: 1920px) {
    .module-details_contact {
        font-size: 18px;
        font-size: 1.8rem;
    }
}

@media only screen and (max-width: 319px) {
    .module-details_contact {
        font-size: 14px;
        font-size: 1.4rem;
    }
}

.module-details_contact-title {
    font-family: Noe Display, Arial, sans-serif;
    font-weight: 500;
}

@media only screen and (min-width: 320px) {
    .module-details_contact-title.module-details_contact-title.module-details_contact-title {
        font-size: calc(30px + ((1vw - 3.2px) * 0.6875));
        font-size: calc(3rem + ((1vw - 3.2px) * 0.6875));
    }
}

@media only screen and (min-width: 1920px) {
    .module-details_contact-title.module-details_contact-title.module-details_contact-title {
        font-size: 41px;
        font-size: 4.1rem;
    }
}

@media only screen and (max-width: 319px) {
    .module-details_contact-title.module-details_contact-title.module-details_contact-title {
        font-size: 30px;
        font-size: 3rem;
    }
}

@media only screen and (min-width: 320px) {
    .module-details_contact-intro {
        font-size: calc(14px + ((1vw - 3.2px) * 0.375));
        font-size: calc(1.4rem + ((1vw - 3.2px) * 0.375));
    }
}

@media only screen and (min-width: 1920px) {
    .module-details_contact-intro {
        font-size: 20px;
        font-size: 2rem;
    }
}

@media only screen and (max-width: 319px) {
    .module-details_contact-intro {
        font-size: 14px;
        font-size: 1.4rem;
    }
}

.module-details_contact-list.module-details_contact-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

@media only screen and (min-width: 320px) {
    .module-details_contact-list {
        font-size: calc(14px + ((1vw - 3.2px) * 0.125));
        font-size: calc(1.4rem + ((1vw - 3.2px) * 0.125));
    }
}

@media only screen and (min-width: 1920px) {
    .module-details_contact-list {
        font-size: 16px;
        font-size: 1.6rem;
    }
}

@media only screen and (max-width: 319px) {
    .module-details_contact-list {
        font-size: 14px;
        font-size: 1.4rem;
    }
}

.module-details_contact-list li {
    display: inline-block;
    vertical-align: top;
}

.module-details_contact-list li:not(:last-child) {
    margin-right: 0.8vw;
}

.no-underline {
    text-decoration: none;
}

.module-details_contact-columns {
    padding-top: 30px;
}

.module-details_contact-column {
    padding-bottom: 30px;
}

.module-details_contact-column h4 {
    font-family: gdsherpa, Arial, sans-serif;
    font-weight: 700;
}

.module-details_contact-column ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.module-details_contact-column li + li {
    margin-top: 5px;
}

.module-details_contact-bottom h4 {
    font-family: gdsherpa, Arial, sans-serif;
    font-weight: 700;
}

@media only screen and (min-width: 320px) {
    .module-details_contact-bottom.module-details_contact-bottom.module-details_contact-bottom h4 {
        font-size: calc(20px + ((1vw - 3.2px) * 0.3125));
        font-size: calc(2rem + ((1vw - 3.2px) * 0.3125));
    }
}

@media only screen and (min-width: 1920px) {
    .module-details_contact-bottom.module-details_contact-bottom.module-details_contact-bottom h4 {
        font-size: 25px;
        font-size: 2.5rem;
    }
}

@media only screen and (max-width: 319px) {
    .module-details_contact-bottom.module-details_contact-bottom.module-details_contact-bottom h4 {
        font-size: 20px;
        font-size: 2rem;
    }
}

/*=====================END CR-706=====================*/
.page-resources .module.module-subscribe,
.pane--footer .module.module-subscribe {
    float: left;
}

@media screen and (max-width: 1023px) {
    .pane--footer .module.module-subscribe {
        float: none;
    }
}

/* Blog Featured */
.module-news-blog-featured.module .module_title {
    font-family: Noe Display, Arial, sans-serif;
    font-size: 41px;
    line-height: 46px;
}

.module-news-blog-featured .module_item {
    margin: 0;
    padding: 0;
    border: none;
}

.module-news-blog-featured .module_item-left .module_thumbnail {
    height: 100%;
}

@media all and (max-width: 768px) {
    .module-news-blog-featured .module_item-left .module_thumbnail {
        padding: 33% 0;
    }
}

/* 00454397 - changing background-color*/
.module-news-blog-featured .module_item-right-wrap {
    background-color: #09757a;
    padding: 60px 75px 65px;
    position: relative;
}

@media all and (max-width: 1024px) {
    .module-news-blog-featured .module_item-right-wrap {
        padding: 50px 40px;
    }
}

@media all and (max-width: 768px) {
    .module-news-blog-featured .module_item-right-wrap {
        padding: 25px 30px;
    }
}

.module-news-blog-featured .module_date-time {
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    margin-bottom: 10px;
    display: none;
}

.module-news-blog-featured .module_headline {
    margin-bottom: 20px;
    line-height: 1;
    max-width: 545px;
}

.module-news-blog-featured .module_body .module_thumbnail {
    display: none;
}

.module-news-blog-featured .module_headline-text {
    font-size: 41px;
    font-size: 4.1rem;
    line-height: 1.22;
    font-family: Noe Display, Arial, sans-serif;
    font-weight: 500;
}

.module-news-blog-featured .module_link-more {
    font-size: 18px;
    font-size: 1.8rem;
    text-decoration: none;
    font-weight: 400;
    line-height: 1.22;
    margin: 0;
    padding: 0;
}

/* News blog Archive */
.module-news-blog-archive .module_title {
    font-size: 41px;
    line-height: 46px;
    font-family: Noe Display;
}

.module-news-blog-archive .module_item-container {
    margin-bottom: 80px;
}

.module-news-blog-archive .module_item-container.js--hidden {
    display: none !important;
}

.module-news-blog-archive .module_item-container:not(.js--hidden) + .module_item-container.js--hidden {
    display: none !important;
}

@media all and (max-width: 768px) {
    .module-news-blog-archive .module_item-container {
        margin-bottom: 50px;
    }
}

.module-news-blog-archive .module_item {
    padding: 0;
    margin: 0;
    border: none;
}

.module-news-blog-archive .module_thumbnail {
    padding: 31% 0;
    margin-bottom: 40px;
}

.module-news-blog-archive .module_date-time {
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    margin-bottom: 10px;
    color: #8c8c8c;
}

.module-news-blog-archive .module_headline {
    margin-bottom: 20px;
    line-height: 1;
}

.module-news-blog-archive .module_headline-text {
    font-size: 25px;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 37px;
}

.module-news-blog-archive .module_link-more {
    font-size: 18px;
    line-height: 22px;
    text-decoration: none;
    font-weight: 400;
    margin: 0;
    padding: 0;
    color: #8c8c8c;
}

.module-news-blog_pager {
    text-align: center;
    margin-top: 10px;
    font-size: 0;
    line-height: 1;
}

.module-news-blog_pager .pager_list {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.module-news-blog_pager .pager_list-item {
    display: inline-block;
    vertical-align: middle;
}

.module-news-blog_pager .pager_button {
    border: 1px solid #afafaf;
    font-family: gdsherpa, Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 19px;
    text-align: center;
    background-color: #fff;
    padding: 14.5px 20px;
    width: 140px;
    display: inline-block;
    cursor: pointer;
}

.module-news-blog_pager .pager_button--prev {
    display: none;
}

.module-news-blog_pager .pager_button.js--disabled {
    display: none;
}

/* News details Blog */
.module-news-details--blog .module-details_title {
    font-size: 65px;
    line-height: 72px;
    font-weight: 500;
    font-family: Noe Display;
}

.module-news-details--blog .module_date-time {
    text-align: center;
    color: #2b2b2b;
    font-size: 18px;
    line-height: 31px;
    font-family: gdsherpa, Arial, sans-serif;
}

.module-news-details--blog .module-news-details_share-title,
.module-news-details--blog .module-news-details_share a {
    font-size: 18px;
}

.module-news-details--blog .module_body .module_subtitle h2 {
    font-family: Noe Display;
    font-size: 35px;
    font-size: 3.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: 55px;
    letter-spacing: 0px;
    text-align: left;
}

@media all and (max-width: 768px) {
    .module-news-details--blog.module-news-details .slick_items {
        padding-left: 40px;
        padding-right: 40px;
        margin: 0 -20px;
    }
}

.module-news-details--blog.module-news-details .module_thumbnail {
    margin: 60px 0;
    text-align: center;
}

.module-news-details--blog.module-news-details .module_thumbnail img {
    margin: 0 auto;
}

.module-news-details--blog.module-news-details .module_image-container {
    margin: 60px 0;
}

.module-news-details--blog.module-news-details .grid_col .module_image-container {
    margin: 0;
}

@media all and (max-width: 768px) {
    .module-news-details--blog.module-news-details .grid_col img {
        margin: 0 auto 10px;
    }
}

.module-news-details--blog.module-news-details img:not(.slick-slide) {
    float: none;
    display: block;
    margin: 0;
    padding: 0;
}

.module-news-details--blog .module_body p {
    font-size: 20px;
    font-size: 2rem;
    font-weight: 400;
    line-height: 31px;
    letter-spacing: 0;
    margin: 0 0 20px;
}

.module-news-details.module-news-details--blog .module_body h3 {
    font-family: Noe Display;
    font-size: 35px;
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 55px;
    letter-spacing: 0;
    margin-top: 60px;
}

.module-news-details.module-news-details--blog .module_body h4 {
    font-size: 25px;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 37px;
    margin: 50px 0 20px;
    font-family: gdsherpa, Arial, sans-serif;
}

.module-news-details.module-news-details--blog .module_body .quote {
    background-color: #fff1e1;
    border: none;
    padding: 54px 114px;
    font-style: normal;
    margin: 80px -182px;
}

@media all and (max-width: 1400px) {
    .module-news-details.module-news-details--blog .module_body .quote {
        padding: 50px 75px;
        margin: 50px -50px;
    }
}

@media all and (max-width: 1024px) {
    .module-news-details.module-news-details--blog .module_body .quote {
        padding: 40px 50px;
        margin: 50px 0;
    }
}

@media all and (max-width: 768px) {
    .module-news-details.module-news-details--blog .module_body .quote {
        padding: 20px 30px;
        margin: 20px 0;
    }
}

.module-news-details.module-news-details--blog .module_body .quote blockquote p {
    margin: 0 0 20px;
    padding: 0;
    font-size: 35px;
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1.57;
    font-family: Noe Display;
}

@media all and (max-width: 768px) {
    .module-news-details.module-news-details--blog .module_body .quote blockquote p {
        font-size: 25px;
        font-size: 2.5rem;
    }
}

.module-news-details.module-news-details--blog .module_body .quote blockquote p:before,
.module-news-details.module-news-details--blog .module_body .quote blockquote p:after {
    display: none;
}

.module-news-details.module-news-details--blog .module_body .quote figcaption {
    font-size: 20px;
    font-size: 2rem;
    font-weight: 400;
    line-height: 31px;
}

.module-news-details.module-news-details--blog .module_body .module_video-container {
    background-color: #5b003b;
    padding: 53px 161px;
    margin: 45px 0 60px;
}

@media all and (max-width: 1024px) {
    .module-news-details.module-news-details--blog .module_body .module_video-container {
        padding: 50px 70px;
        margin: 35px 0 40px;
    }
}

@media all and (max-width: 768px) {
    .module-news-details.module-news-details--blog .module_body .module_video-container {
        padding: 35px 30px 25px;
    }
}

.module-news-details.module-news-details--blog .module_link-video-container {
    margin-top: 30px;
    text-align: center;
}

@media all and (max-width: 768px) {
    .module-news-details.module-news-details--blog .module_link-video-container {
        margin-top: 20px;
    }
}

.module-news-details.module-news-details--blog .module_video-container .module_link-video {
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
}

.module-news-details.module-news-details--blog .module_video-container .module_link-video:before {
    content: "\ed85";
    font-family: "q4-icons" !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    vertical-align: middle;
    padding-right: 5px;
    font-size: 22px;
    margin-top: -5px;
}

.module-news-details--blog .module-news-details_footer {
    position: relative;
    padding-top: 25px;
    margin-top: 30px;
}

.module-news-details--blog .module-news-details_footer:before {
    content: "";
    position: absolute;
    top: 0;
    right: -210px;
    width: 100%;
    height: 1px;
    background-color: #d8d8d8;
}

@media all and (max-width: 1024px) {
    .module-news-details--blog .module-news-details_footer:before {
        right: 0;
    }
}

.module-news-details--blog .module_body .module_article {
    display: flex;
    margin-top: 50px;
}

@media all and (max-width: 768px) {
    .module-news-details--blog .module_body .module_article {
        display: block;
    }
}

.module-news-details--blog .module_body .module_article-avatar {
    width: 128px;
    max-width: 128px;
}

@media all and (max-width: 768px) {
    .module-news-details--blog .module_body .module_article-avatar {
        width: 100%;
        max-width: 100%;
        margin-bottom: 25px;
    }
}

.module-news-details--blog .module_body .module_article-avatar img {
    border-radius: 100%;
}

.module-news-details--blog .module_body .module_article-info {
    padding-left: 24px;
    width: calc(100% - 128px);
    max-width: calc(100% - 128px);
}

@media all and (max-width: 768px) {
    .module-news-details--blog .module_body .module_article-info {
        padding-left: 0;
        width: 100%;
        max-width: 100%;
    }
}

.module-news-details--blog .module_body .module_article-info h4 {
    margin: 0 0 5px;
    font-family: gdsherpa, Arial, sans-serif;
}

.module-news-details--blog .module_body .module_article-info .button {
    border: 1px solid #afafaf;
    font-family: gdsherpa, Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 19px;
    text-align: center;
    background: #fff;
    padding: 14px 11px 15px;
    display: inline-block;
    cursor: pointer;
    color: #2b2b2b;
    height: auto;
    margin: 0;
}

.table--ownership td:nth-last-child(2),
.table--ownership th:nth-last-child(2) {
    text-align: right;
}
.module_search-input {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.module_search-input input {
    padding: 22px 12px;
    width: calc(100% - 120px);
    max-width: 800px;
    border: 1px solid #aab7c2;
}
.module_search-input ::placeholder {
    color: #8c8c8c;
}
.module_search-input label {
    display: none;
}
.module_search-input span {
    background-color: #111;
    color: #fff;
    padding: 20px 40px;
    cursor: pointer;
}
.module_search-input span:hover {
    opacity: 0.85;
}
.module_search-input span.js--disabled {
    opacity: 0.7;
    pointer-events: none;
}
.pane--content .module-search-results {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}
.module-search-results .module-search-results_summary {
    margin: 0 0 20px 0;
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #d3d3d3;
}
.module-search-results .module-search-results_filter .grid_col {
    display: none;
}
.module-search-results .module-search-results_filter .form_field--search,
.module-search-results .module-search-results_filter .form_field--search input,
.module-search-results .module-search-results_item .module-search-results_link {
    display: block;
    width: 100%;
}
.module-search-results .module-search-results_item .module-search-results_link {
    line-height: 22px;
    margin-bottom: 5px;
}
.module-search-results .module-search-results_filter .form_field--search input {
    padding: 22px 12px;
    border: 1px solid #aab7c2;
}
.module-search-results .module-search-results_filter .form_field--search span,
.module-search-results .module-search-results_url {
    display: none;
}
.module-search-results .module-search-results_item {
    margin-bottom: 20px;
}
.module-search-results .module-search-results_description {
    font-size: 18px;
}

.module-slider .slick-slide .module_attachment {
    padding-top: 10px !important;
}

/* 00248126 */
.module-news-blog_pager .pager_button.js--active {
    background: #8080804a;
}
/* 00248126 */

/* 00426996 */
.module-financial-quarter .module_link {
    text-decoration: none;
}
/* 00426996 end */

/* 00445365 */
/* .module-slider .slick-dots button {
    background-color: rgba(255, 255, 255, 0.2);
}

.module-slider .slick-dots .slick-active button {
    background-color: white;
} */
/* 00445365 end*/

/*.evergreen .evergreen-container--outer, .pane--content div.evergreen-grid-container {
    max-width: 1830px;
}*/

.evergreen .evergreen-faq .button {
    display: none;
}

/*00601415*/
.color--10 .event_1{
    width: 60%;
    float: left;
}

.color--10 .event_2{
    width: 60%;
    float: left;
}

.color--10 .event_3{
    width: 60%;
    float: left;
}

.page-investor-overview .button{
  
    /* margin-bottom: 60px; */
    /* margin-left: 80px; */
    transform: translateY(22px);
}

/*00601415 END*/

.page-news-details .images_top .img_src{
 margin: initial;
}

.module-news-details.module-news-details img:not(.slick-slide) {
    margin: initial;
    display: inline-flex;
    width: 520px;
    
}

.module-news-details .images_top{
    display: flex;
    align-items: center;
    justify-content: center;
}

.module-news-details .img_src_2{
    transform: translateY(-110px);
}

.module-news-details .godaddy_logo_f{
    display: flex;
    justify-content: center;
}

/*00628740*/
.module-slider .module_item[data-source="slide7"] a.button{
        margin-left: 0;
    }
/*00628740*/
/*00652970*/
.PageInvestorRelationsEventsPresentations .pane--content .module_container--outer{
    max-width: 1220px;
}
/*00652970*/