/* Global CSS */

/**
 * CONTENTS
 *
 * BASE
 * Media.................WP specific img aligns and iframe styling.
 * Typography............@fontfaces, base text and vertical rhythm setup.
 *
 * COMPONENTS
 * Margin/Padding........Utility Margin/Padding Classes
 * Clearfix..............Properly clear floats.
 *
 * Objects
 * Icons.................Icon Elements.
 * Buttons...............Button elements.
 * Tables................Table Styles.
 * Forms.................Form Elements.
 * Pagination............Pagination.
 *
 */

 :root {
     --section-margins: 45px;
 }

 @media (min-width: 1024px) {
     :root {
         --section-margins: 80px;
     }
 }


/*------------------------------------*\
    BASE
\*------------------------------------*/


/**
 * Media
 *
 * These selectors are hard cast because they are only used
 * by wordpress wyswyg when adding images to content
 */

.wp-caption.alignright,
.wp-caption.alignleft,
.wp-caption.aligncenter {
    display: table;
}

.wp-caption.alignright,
.wp-caption.alignleft,
.wp-caption.alignnone,
.wp-caption.aligncenter {
    margin: 0;
    width: auto !important;
    /* to overwrite inline widths */
}

img.alignright,
.wp-caption.alignright,
img.alignleft,
.wp-caption.alignleft {
    height: auto;
    max-width: 50%;
}

img.alignnone,
.wp-caption.alignnone img,
img.aligncenter,
.wp-caption.aligncenter img {
    height: auto;
    max-width: 100%;
}

img.alignnone,
.wp-caption.alignnone,
img.aligncenter,
.wp-caption.aligncenter {
    margin: 0 0 22px 0;
}

img.alignright,
.wp-caption.alignright {
    float: right;
    margin: 0 0 22px 30px;
}

img.alignleft,
.wp-caption.alignleft {
    float: left;
    margin: 0 30px 22px 0;
}

img.aligncenter,
.wp-caption.aligncenter img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption.aligncenter {
    margin-left: auto;
    margin-right: auto;
}

.wp-caption-text {
    caption-side: bottom;
    display: table-caption;
}

iframe,
img {
    max-width: 100%;
}

/* Fade-in for lazyloaded images */
.will-lazyload {
    opacity: 0;
    transition: opacity .25 linear;
}

.will-lazyload.lazyloaded {
    opacity: 1;
}



/**
  * Typography
  */

@font-face {
    font-family: 'd-dinregular';
    src: url('../fonts/d-din-webfont.woff2') format('woff2'),
         url('../fonts/d-din-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'd-dindin-bold';
    src: url('../fonts/d-din-bold-webfont.woff2') format('woff2'),
         url('../fonts/d-din-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'd-dindin-italic';
    src: url('../fonts/d-din-italic-webfont.woff2') format('woff2'),
         url('../fonts/d-din-italic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'proxima_novaextrabold';
    src: url('../fonts/proxima_nova_extrabold-webfont.woff2') format('woff2'),
         url('../fonts/proxima_nova_extrabold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/*
  - Please set up line-heights in ems
  - Set up typography styling based on styles found in .xd file under Assets > Character Styles
  */

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5 {
    font-family: 'd-dindin-bold';
    font-weight: normal;
    position: relative;
    margin: 0;
    padding: 0;
    color: #000000;
    -webkit-font-smoothing: antialiased;
}

h1, .h1 {
    font-size: 34px;
    line-height: 1.176em;
    padding-bottom: 23px;
    margin-bottom: 20px;
}

h1::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 51px;
    height: 3px;
    background: #0082CA;
}

.remove-border {
    margin-bottom: 0;
}

.remove-border::after,
.remove-border h1::after {
    display: none;
}

.remove-border h1 {
    margin-bottom: 0;
    padding-bottom: 20px;
}

h2, .h2 {
    margin-bottom: 20px;
    font-size: 28px;
    line-height: 1.142em;
}

h3, .h3 {
    margin-bottom: 20px;
    font-size: 26px;
    line-height: 1.230em;
}

h4, .h4 {
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 1.230em;
    line-height: 1.1em;
}

h5, .h5 {
    color: #0082CA;
    font-size: 14px;
    padding-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

.border {
    padding-bottom: 20px;
}

.border::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 51px;
    height: 3px;
    background: #0082CA;
}

.bg-white {
    background: #fff;
}

.bg-gray {
    background: #EEF1F5;
}

.bg-dark {
    background: #161616;
}

.text-color-dark :not(a) {
    color: #4D4D4D;
}

.text-color-dark *:not(a, h2, h3, h4) {
    color: #4D4D4D !important;
}

.text-color-light :not(a) {
    color: rgba(255, 255, 255, 0.7);
}

.text-color-light :is(h1, h2, h3, h4, h5, h6) {
    color: #fff;
}

.text-color-dark :is(h1, h2, h3, h4, h5, h6) {
    color: #000;
}

@media (min-width: 768px) {
    h1, .h1 {
        font-size: 40px;
        line-height: 1em;
    }

    h2, .h2,
    h3, .h3 {
        font-size: 34px;
    }

    h4, .h4 { 
        font-size: 25px;
    }

    h5, .h5 { 
        font-size: 18px;
    }
}

@media (min-width: 1200px) {
    h1, .h1 {
        font-size: 40px;
        line-height: 1.1em;
        padding-bottom: 30px;
        margin-bottom: 24px;
    }

    h2, .h2 {
        font-size: 40px;
    }
    
}

p, ul, ol {
    margin: 0;
    padding: 0 0 20px 0;
    font-size: 18px;
    line-height: 1.6em;
    list-style: none;
    -webkit-font-smoothing: antialiased;
}

.fl-rich-text ul,
.fl-module ul {
    font-size: 16px;
}

@media (min-width: 768px) {
    .fl-rich-text ul,
    .fl-module ul {
        font-size: 18px;
    }
}

td, th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px !important;
}

footer.fl-builder-content.fl-builder-content-718 .fl-row-bg-photo.fl-node-u7fsi1ylbgcq,
#cta-above-footer-new{
    display: none !important; 
}

.page-content ul,
.page-content ol {
    /* fix for bulleted lists not wrapping around images correctly in Wordpress */
    width: auto;
    overflow: hidden;
    padding-left: 15px;
}

.page-content ul {
    list-style-type: none;
}

.page-content ol {
    padding-left: 25px;
}

.page-content ol li {
    counter-increment: list;
    position: relative;
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
}

.page-content ol li:before {
    content: counter(list) ".";
    position: absolute;
    left: 0;
}

.page-content ul {
    padding-left: 12px;
}

.page-content ul li {
    position: relative;
    padding-left: 17px;
    margin-bottom: 8px;
    -webkit-font-smoothing: antialiased;
}

.page-content ul li:last-child {
    margin-bottom: 0;
}

.page-content ul li:before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #404040;
    left: 0;
    top: 12px;
}


a {
    word-break: break-word;
    color: #0082CA;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
}

a.underline:hover {
    text-decoration: none;
} 

a.underline:focus{
    text-decoration: none;
}

body .careersMenuItem a {
    word-break: inherit !important;
}

p:last-child {
    padding-bottom: 0;
}

/* Table */
.table-structure {
    padding: 0 0 18px;
    overflow-x: auto;
    margin-right: -22px;
    color: #2E3532;
    margin-top: 0;
    border-radius: 3px 3px 0 0;
}

.table-structure::-webkit-scrollbar-track
{
	border: none;
	background-color: #EEF1F5;
}

.table-structure::-webkit-scrollbar
{
	height: 13px;
	background-color: #F5F5F5;
}

.table-structure::-webkit-scrollbar-thumb
{
	background-color: rgba(0, 0, 0, 0.30);	
    border-radius: 6px;
    border: 3px solid #EEF1F5;
}

table {
    min-width: 600px;
    margin-bottom: 20px;
    width: 100%;
    overflow-x: hidden;
}

table thead {
    background-color: #0082CA;
    height: 52px;
}

table thead tr th {
    text-align: center;
    color: #fff;
    border: 1px solid #000;
    width: 164px;
}

table thead tr th:first-child {
    width: 50%;
}

table thead tr th label {
    line-height: 1.25em !important;
    padding: 10px;
    margin-bottom: 0;
}

table tbody .table-row .table-cell {
    border: 1px solid #000;
    height: 52px;
    font-size: 18px;
    color: #000;
    text-align: center;
    padding: 5px 16px;
}

table tbody .table-row .table-cell:first-child {
    font-weight: 700;
    text-align: left;
    max-width: 487px;
}

table tbody .table-row:nth-child(even) {
    background-color: #F2F5F7;
}

table tbody .table-row .highlight {
    background-color: #C9F1D2;
}

@media (max-width: 991px) {
    table tbody .table-row .table-cell {
        font-size: 12px;
        line-height: 16px;
    }
}
@media (min-width: 1200px) {
    a:hover {
        text-decoration: underline;
    }

}

/* Modal */
.modal-open header.fl-theme-builder-header-sticky {
    z-index: -9 !important;
}

.modal-backdrop {
    display: none;
}


.fx-modal::before {
    content: '';
    background: #000;
    opacity: 0.6;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.fx-modal .modal-header {
    border: none;
    padding-bottom: 0;
}

.modal-header .close {
    opacity: 0.5;
}

.modal-header button.close:hover {
    background: none;
    padding: 0;
    border: none;
    opacity: 0.8;
}

.modal-dialog {
    top: 50%;
    transform: translateY(-50%) !important;
}

.modal-body {
    padding: 10px 40px 40px;
}
.modal-body p {
    font-size: 16px;
}

.modal-body ol, 
.modal-body ul {
    font-size: 16px;
    padding-left: 20px;
}

.modal-body ol {
    list-style: decimal;
}

.modal-body ul {
    list-style: disc;
}

.modal-body form {
    margin: auto;
}

.modal-content { border-radius: 0;}

/*------------------------------------*\
    COMPONENTS
\*------------------------------------*/




/**
 * Utility Margin/Padding Classes
 *
 * TODO: Update the --margins variable in custom-properties.css to match prototypes margins 
 */

/* Used on outer-most section container so section margins collapse */
.section-margins {
    margin-top: var(--section-margins);
    margin-bottom: var(--section-margins);
}

/* Used only for sections with colored backgrounds */
.section-padding {
    padding-top: var(--section-margins);
    padding-bottom: var(--section-margins);
}

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

/**
* Clearfix
* Apply clearing without adding additional markup
*/

.clearfix::after {
    display: block;
    clear: both;
    content: "";
}




/*--------------------------------------------------------------*\
     OBJECTS
     Objects are independent generic stylibf classes or UI peices.
     All styles for objects should be self contained.
 
     e.g. an object shouldn't rely on trump helpers to apply padding etc.
 \*--------------------------------------------------------------*/


/**
 * Buttons
 */

.btn {
    font-size: 14px;
    line-height: 1em;
    font-family: 'd-dindin-bold';
    color: #fff;
    background: #0082CA;
    border-radius: 10px;
    border: 2px solid #0082CA;
    display: inline-block;
    padding: 11px 28px;
    letter-spacing: 0.04em;
    outline: none;
}

.uppercase {
    text-transform: uppercase;
}

.btn-secondary {
    background: transparent;
    color: #0082CA;
}

.btn-gray {
    background: #778898;
    border-color: #778898;
    color: #fff;
}

.btn:hover {
    text-decoration: none;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn+.btn {
    margin-top: 5px;
    /* Add margin-top when 2 buttons are next to each other */
}

.btn:hover {
    /* border-color: #004A73;
    background: #004A73; */
    background: #0090e0;
    border-color: #0090e0;
    color: #fff;;
}


.btn-secondary:hover {
    background: #0082CA;
    border-color: #0082CA;
    color: #fff;
}

@media (min-width: 600px) {

    .btn+.btn {
        margin-top: 0;
        margin-left: 5px;
    }

}


/**
 * Icons
 */

 @font-face {
    font-family: 'icomoon';
    src:  url('../icons/icomoon.eot?dxa4yp');
    src:  url('../icons/icomoon.eot?dxa4yp#iefix') format('embedded-opentype'),
      url('../icons/icomoon.ttf?dxa4yp') format('truetype'),
      url('../icons/icomoon.woff?dxa4yp') format('woff'),
      url('../icons/icomoon.svg?dxa4yp#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}
  
[class^="icon-"], [class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    speak: never;
    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;
}
  

.icon-z-circle-arrow:before {
content: "\e911";
}
.icon-menu:before {
content: "\e907";
}
.icon-down-arrow:before {
content: "\e900";
}
.icon-down-arrow-thin:before {
content: "\e901";
}
.icon-down-carret:before {
content: "\e902";
}
.icon-facebook:before {
content: "\e903";
}
.icon-globe:before {
content: "\e904";
}
.icon-left-arrow:before {
content: "\e905";
}
.icon-linkedin:before {
content: "\e906";
}
.icon-minus:before {
content: "\e908";
}
.icon-plus:before {
content: "\e909";
}
.icon-right-arrow:before {
content: "\e90a";
}
.icon-search:before {
content: "\e90b";
}
.icon-twitter:before {
content: "\e90c";
}
.icon-up-arrow:before {
content: "\e90d";
}
.icon-up-arrow-thin:before {
content: "\e90e";
}
.icon-up-carret:before {
content: "\e90f";
}
.icon-you-tube:before {
content: "\e910";
}

/**
 * Images
 */

 .img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}

.object-fit {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
}

.object-fit--contain {
    -o-object-fit: contain;
       object-fit: contain;
    width: 100%;
    height: 100%;
}

/* Slick Carousel */


.slider-has-preloader:not(.slick-initialized) > .fx-slide {
    opacity: 0;
}

.fx-slider .fx-slide {
    display: none;
}

.fx-slider .fx-slide:first-child {
    display: block;
}

.fx-slider.slick-initialized .fx-slide {
    display: block;
}

.slick-arrow {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 0;
    display: block;
    line-height: 0;
    outline: none;
    width: 25px;
    height: 25px;
    position: absolute !important;
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
}

.slick-arrow:focus, 
.slick-arrow:hover{
    background: transparent !important;
    border: none !important;
    outline: none !important;
}

.slick-arrow:focus::before{
    color: #0082CA;
}

.slick-prev.slick-arrow {
    left: 0;
}

.slick-next.slick-arrow {
    right: 0;
}

.slick-arrow::before {
    font-family: 'icomoon';
    font-weight: normal;
    font-size: 22px;
    color: #000;
    line-height: 1;
}

.slick-prev::before {
    content: '\e905';
}

.slick-next::before {
    content: '\e90a';
}
@media (min-width: 768px) {
    .slick-arrow {
        width: 50px;
        height: 50px;
    }
}
@media (min-width: 1200px) { 
    .slick-arrow::before {
        font-size: 27px;
    }
}


.slick-dots {
    position: absolute;
    bottom: -51px;
    width: 100%;
    left: 0;
    text-align: center;
}

.slick-dots li button {
    width: 15px;
    height: 15px;
    font-size: 0;
    background: transparent;
    border-radius: 0;
    border: 2px solid #0F93CF;
}

.slick-dots li {
    display: inline-block;
    cursor: pointer;
    padding: 0;
    margin: 0 10px;
}

.slick-dots li:before {
    display: none;
}

.slick-dots li.slick-active button {
    background: #1188C8;
}

@media (min-width: 768px) {
    .slick-dots {
        bottom: -56px;
    }
}


/**
 * Hiding
 */

 .hide,
 .hidden-xxs-up { display: none !important; }
 .hidden       { display: none !important; visibility: hidden !important; }
 .invisible    { visibility: hidden !important; }
 .text-hide    {
     font: 0/0 a;
     color: transparent;
     text-shadow: none;
     background-color: transparent;
     border: 0;
 }
 
 @media (max-width: 599px) {
     .hidden-xxs { display: none !important; }
 }
 
     @media (min-width: 600px) {
       .hidden-xs-up { display: none !important; }
     }
 
 @media (min-width: 600px) and (max-width: 767px) {
     .hidden-xs { display: none !important; }
 }
 
     @media (max-width: 767px) {
       .hidden-xs-down { display: none !important; }
     }
 
     @media (min-width: 768px) {
       .hidden-sm-up { display: none !important; }
     }
 
 @media (min-width: 768px) and (max-width: 1024px) {
     .hidden-sm { display: none !important; }
 }
 
     @media (max-width: 1024px) {
       .hidden-sm-down { display: none !important; }
     }
 
     @media (min-width: 1025px) {
       .hidden-md-up { display: none !important; }
     }
 
 @media (min-width: 1025px) and (max-width: 1199px) {
     .hidden-md { display: none !important; }
 }
 
     @media (max-width: 1199px) {
       .hidden-md-down { display: none !important; }
     }
 
 @media (min-width: 1200px) {
     .hidden-lg { display: none !important; }
 }

 /**
 * remove paddings
 */
.hard          { padding:       0!important; }
.hard-top      { padding-top:   0!important; }
.hard-right    { padding-right: 0!important; }
.hard-bottom   { padding-bottom:0!important; }
.hard-left     { padding-left:  0!important; }
.hard-ends     { padding-top:   0!important; padding-bottom:0!important; }
.hard-sides    { padding-right: 0!important; padding-left:  0!important; }