﻿@charset "utf-8";

/* Fonts
–––––––––––––––––––––––––––––––––––––––––––––––––– */

@font-face {
    font-family: 'firasans-light';
    src: url('fonts/firasans/firasans-light-webfont.eot');
    src: url('fonts/firasans/firasans-light-webfont.eot?#iefix') format('embedded-opentype'), url('fonts/firasans/firasans-light-webfont.woff') format('woff'), url('fonts/firasans/firasans-light-webfont.ttf') format('truetype'), url('fonts/firasans/firasans-light-webfont.svg#fira_sanslight') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'firasans-light-italic';
    src: url('fonts/firasans/firasans-lightitalic-webfont.eot');
    src: url('fonts/firasans/firasans-lightitalic-webfont.eot?#iefix') format('embedded-opentype'), url('fonts/firasans/firasans-lightitalic-webfont.woff2') format('woff2'), url('fonts/firasans/firasans-lightitalic-webfont.woff') format('woff'), url('fonts/firasans/firasans-lightitalic-webfont.ttf') format('truetype'), url('fonts/firasans/firasans-lightitalic-webfont.svg#firasans_light_italic') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'firasans-regular';
    src: url('fonts/firasans/firasans-regular-webfont.eot');
    src: url('fonts/firasans/firasans-regular-webfont.eot?#iefix') format('embedded-opentype'), url('fonts/firasans/firasans-regular-webfont.woff') format('woff'), url('fonts/firasans/firasans-regular-webfont.ttf') format('truetype'), url('fonts/firasans/firasans-regular-webfont.svg#fira_sansregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'oswald-light';
    src: url('fonts/oswald/oswald-light-webfont.eot');
    src: url('fonts/oswald/oswald-light-webfont.eot?#iefix') format('embedded-opentype'), url('fonts/oswald/oswald-light-webfont.woff2') format('woff2'), url('fonts/oswald/oswald-light-webfont.woff') format('woff'), url('fonts/oswald/oswald-light-webfont.ttf') format('truetype'), url('fonts/oswald/oswald-light-webfont.svg#oswaldlight') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'oswald-book';
    src: url('fonts/oswald/oswald-regular-webfont.eot');
    src: url('fonts/oswald/oswald-regular-webfont.eot?#iefix') format('embedded-opentype'), url('fonts/oswald/oswald-regular-webfont.woff2') format('woff2'), url('fonts/oswald/oswald-regular-webfont.woff') format('woff'), url('fonts/oswald/oswald-regular-webfont.ttf') format('truetype'), url('fonts/oswald/oswald-regular-webfont.svg#oswaldbook') format('svg');
    font-weight: normal;
    font-style: normal;
}


/* GLOBAL
–––––––––––––––––––––––––––––––––––––––––––––––––– */

body {
    margin: 0px;
    padding: 0px;
    font-family: 'firasans-light';
    color: #505050;
    font-size: 16px;
}

body, html {
    height: 100%;
    width: 100%;
}

.container-norelative {
    max-width: 1001px;
    margin: 0 auto;
    padding: 0;
    height: 100%;
}

.container {
    position: relative;
    max-width: 1001px;
    margin: 0 auto;
    padding: 0;
    height: 100%;
}

    .container:after {
        content: "";
        display: table;
        clear: both;
    }

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

a, i.fa {
    color: inherit;
    text-decoration: none;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    outline: 0;
}

    a img {
        border: 0;
        -webkit-transition: all 0.25s ease;
        -moz-transition: all 0.25s ease;
        -o-transition: all 0.25s ease;
        transition: all 0.25s ease;
    }

p {
    line-height: 19px;
}

#wrapper {
    min-height: 100%;
    position: relative;
}

/* TYPEOGRAPHY
–––––––––––––––––––––––––––––––––––––––––––––––––– */

h1, h2, h3, h4, h5 {
    font-family: 'oswald-light';
    font-weight: normal;
    margin: 0 0 14px 0;
    text-transform: uppercase;
        line-height: 1;
}

h1 {
    font-size: 28px;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 20px;
}

h4 {
    font-size: 18px;
    color: #747474;
}

/* GENERAL
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.text-shadow {
    text-shadow: 2px 2px 3px #000000;
}

.uppercase {
    text-transform: uppercase;
}

.capitalize {
    text-transform: capitalize;
}

.nowrap {
    white-space: nowrap;
}

.block {
    display: block;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.center {
    text-align: center;
}

.clear {
    clear: both;
}

.left {
    float: left;
}

.right {
    float: right;
}

.hide {
    /*position: absolute !important;
    top: -9999px !important;
    left: -9999px !important;*/
    display: none !important;
}

.hidden {
    opacity: 0;
}

.visible {
    opacity: 1;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

::selection {
    background: #ff9b00;
    text-shadow: none;
    color: #fff;
}

::-moz-selection {
    background: #ff9b00;
    text-shadow: none;
    color: #fff;
}

.grow {
    transition: all .2s ease-in-out;
}

    .grow:hover {
        transform: scale(1.05);
        cursor: pointer;
    }

.hr {
    display: block;
    max-width: 100%;
}

.w25 {
    width: 23.5%;
    margin-right: 2%;
    text-align: center;
    float: left;
    position: relative;
}

    .w25:last-child {
        margin-right: 0;
    }

.w33 {
    width: 33%;
}

.w50 {
    width: 50%;
}

.w75 {
    width: 75%;
}

/* Sweep To Top */
.hvr-sweep-to-top {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

    .hvr-sweep-to-top:before {
        content: "";
        position: absolute;
        z-index: -1;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
        -webkit-transform-origin: 50% 100%;
        transform-origin: 50% 100%;
        -webkit-transition-property: transform;
        transition-property: transform;
        -webkit-transition-duration: 0.3s;
        transition-duration: 0.3s;
        -webkit-transition-timing-function: ease-out;
        transition-timing-function: ease-out;
    }

header .hvr-sweep-to-top:before {
    background: #1f478c;
}

.hvr-sweep-to-top:hover, .hvr-sweep-to-top:focus, .hvr-sweep-to-top:active {
    color: white;
}

    .hvr-sweep-to-top:hover:before, .hvr-sweep-to-top:focus:before, .hvr-sweep-to-top:active:before {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }

/* ICONS
–––––––––––––––––––––––––––––––––––––––––––––––––– */

i.icon {
    color: #a1a1a1;
    display: inline-block;
    font-size: 20px;
    margin-right: 4px;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

    i.icon:hover {
    }

/* BUTTONS
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.btn {
    font: 18px 'oswald-light';
    color: #fff;
    border: 1px #fff solid;
    padding: 5px 25px;
    display: inline-block;
    text-transform: uppercase;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

    .btn:hover, .item:hover a.btn {
        background-color: #fff;
        color: #595959;
        cursor: pointer;
    }

/* FORM GLOBAL
–––––––––––––––––––––––––––––––––––––––––––––––––– */

input, textarea, select, select option {
    -webkit-appearance: none;
    -o-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    outline: none;
}

select::-ms-expand {
    display: none;
}

    .interior select, .interior input[type="text"], .interior textarea {
        font-family: 'firasans-light', sans-serif;
        font-weight: normal;
        font-size: 16px;
        border: 0;
        padding: 4px 15px;
        width: 100%;
        margin-bottom: 20px;
        color: #505050;
    }

textarea {
    height: 105px;
}

select.global {
    background-image: url(../images/form-arrow.png);
    background-repeat: no-repeat;
    background-position: 95% 50%;
    border-color: white;
    padding-right: 40px;
}

    select.global:hover {
        cursor: pointer;
    }

input[type="submit"] {
    border: 0;
    text-transform: uppercase;
    padding: 5px 30px;
    background-color: #1f478c;
    font: 18px 'oswald-light';
    color: #fff;
    width: 100%;
    transition: all .4s ease;
    -moz-transition: all .4s ease;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
}

    input[type="submit"]:hover {
        background-color: #ff9b00;
        cursor: pointer;
    }

::-webkit-input-placeholder {
    opacity: 1 !important;
    color: #505050;
}

:-moz-placeholder {
    opacity: 1 !important;
    color: #505050;
}

::-moz-placeholder {
    opacity: 1 !important;
    color: #505050;
}

:-ms-input-placeholder {
    opacity: 1 !important;
    color: #505050;
}

input:focus, select:focus, textarea:focus {
    outline: none !important;
}

/* BANNER
–––––––––––––––––––––––––––––––––––––––––––––––––– */
#banner {
    background-image: url('../images/banner.jpg');
    background-position: 50%;
    background-repeat: no-repeat;
    width: 100%;
    height: 142px;
    position: relative;
    -webkit-box-shadow: inset 0px 20px 20px -20px rgba(67,67,67,67.3);
    -moz-box-shadow: inset 0px 20px 20px -20px rgba(67,67,67,67.3);
    box-shadow: inset 0px 20px 20px -20px rgba(67,67,67,67.3);
}

    #banner h1 {
        font-size: 35px;
        color: #fff;
        position: absolute;
        bottom: 20px;
        font-family: 'oswald-book';
        text-shadow: 0 0 50px #000;
        margin: 0;
    }



/* INTERIOR PAGE CONTENT
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.interior {
    margin-top: 30px;
    margin-bottom: 40px;
}

    .interior .alignright {
        float: right;
        margin-left: 30px;
        margin-top: 0;
    }

    .interior h2 {
        color: #1f478c;
        font-family: 'oswald-book';
        font-size: 24px;
        border-bottom: 1px #b2b2b2 solid;
        padding-bottom: 10px;
    }

    .interior h4 {
        font-family: 'oswald-book';
        font-size: 20px;
        color: #1f478c;
    }

    .interior h5 {
        font-size: 18px;
        color: #fff;
        background-color: #1f478c;
        text-align: center;
        padding: 10px;
        -webkit-transition: all 0.25s ease;
        -moz-transition: all 0.25s ease;
        -o-transition: all 0.25s ease;
        transition: all 0.25s ease;
    }

        .interior h5:hover {
            background-color: #ff9b00;
        }

    .interior p {
        color: #505050;
        line-height: 24px;
        text-align: justify;
    }

    .interior ul {
        list-style-type: disc;
        list-style-position: outside;
        margin-bottom: 10px;
        overflow: hidden;
        padding-left: 20px;
    }

/* CAREERS
–––––––––––––––––––––––––––––––––––––––––––––––––– */

#careers h5 {
    font-size: 20px;
}

    #careers h5:hover {
        background-color: #1f478c;
    }

.job-listings {
    margin-top: 20px;
    position: relative;
    border-collapse: collapse;
    border-spacing: 0;    
}

    .job-listings thead, .ml-responsive-table dt  {
        color: #ff9b00;
        font: 18px 'oswald-book';
        text-transform: uppercase;
        padding-bottom: 13px;
        border-bottom: 1px #cccccc solid;
    }
    
    .ml-responsive-table dt {
        border-bottom: 0;
        padding-bottom: 0 !important;
    }

    .job-listings thead, .job-listings tbody {
        float: left;
        text-align: center;
        line-height: 20px;
    }

        .job-listings tbody td {
            padding-top: 10px;
            vertical-align: baseline;
        }

        .job-listings tbody tr:nth-child(even) td {
            background-color: #ebebeb;
        }

    .job-listings .col1 {
        width: 169px;
    }

    .job-listings .col2 {
        width: 365px;
        padding: 0 60px;
    }

    .job-listings tbody td.col2 {
        width: 365px;
        padding: 0 60px;
        text-align: justify !important;
    }

    .job-listings .col3 {
        width: 214px;
    }

    .job-listings .col4 {
        width: 252px;
    }

    .job-listings tbody td.col4 i.fa-angle-right {
        position: relative;
        left: 0;
    }

    .job-listings tbody td.col4 a {
        color: #1f478c;
        font-family: 'firasans-regular';
    }

        .job-listings tbody td.col4 a:hover i.fa-angle-right {
            left: 3px;
        }

.read-more-show, .read-more-hide {
    color: #ff7100;
    margin-bottom: 10px;
    display: inline-block;
}

/* LEADERSHIP / NEWS
–––––––––––––––––––––––––––––––––––––––––––––––––– */

#leadership .leader, #news .article {
    border-bottom: 1px #cccccc solid;
    padding-bottom: 35px;
    margin-bottom: 35px;
}

#leadership .leader:last-child, #news .article:last-child {
    border-bottom: 0;
} 

#news .article {
    padding-bottom: 25px;
    height: 266px;
}

#leadership img, #news img {
    float: left;
    margin-right: 20px;
}

#leadership h4, #news h4 {
    margin-bottom: 0;
}

#leadership span, #news span {
    color: #ff9b00;
    display: block;
    font-family: 'firasans-regular';
}

#leadership ul {
    margin-top: 8px;
    margin-bottom: 0;
}

#news span {
    font-size: 14px;
    font-family: 'firasans-light-italic';
}

#news h5 {
    display: inline-block;
    padding: 7px 20px;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

#news .article {
    position: relative;
}

    #news .article .news-overlay {
        background: url('../images/news-overlay.png') no-repeat;
        width: 230px;
        height: 230px;
        position: absolute;
        left: 0;
        top: 0;
        opacity: 0;
        -webkit-transition: all 0.25s ease;
        -moz-transition: all 0.25s ease;
        -o-transition: all 0.25s ease;
        transition: all 0.25s ease;
        text-align: center;
    }

        #news .article .news-overlay i.fa-search {
            color: #fff;
            font-size: 0;
            vertical-align: middle;
            position: relative;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1;
        }

    #news .article a:hover .news-overlay {
        opacity: 1;
    }

    #news .article a:hover i.fa-search {
        font-size: 60px;
    }

#news-article h2 {
    font-size: 26px;
    border-bottom: 0;
    margin-bottom: 0;
}

#news-article span {
    font-size: 14px;
    font-family: 'firasans-light-italic';
    color: #ff9b00;
    display: block;
    border-bottom: 1px #b2b2b2 solid;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

#news-article .alignright {
    margin-left: 20px;
}

/* FIND US
–––––––––––––––––––––––––––––––––––––––––––––––––– */

#find-us #contact-info {
    width: 270px;
}

    #find-us #contact-info h4 {
        margin-bottom: 0;
    }

    #find-us #contact-info p {
        margin-bottom: 8px;
    }

    #find-us #contact-info h5 {
        display: inline-block;
    }

#find-us .office-location {
    overflow: hidden;
    border-bottom: 1px #cccccc solid;
    padding-bottom: 25px;
    margin-bottom: 40px;    
}

    #find-us .office-location:last-child {
        border-bottom: 0;
    } 

#find-us .general-info {
    padding-top: 0 !important;
}

    #find-us .general-info > p {
        margin-top: 5px;
    }

        #find-us .general-info > p span {
            font-family: 'firasans-regular';
        }

#find-us-map {
    float: left;
    width: 700px;
    height: 289px;
    overflow: hidden;
}

/* WORLDWIDE
–––––––––––––––––––––––––––––––––––––––––––––––––– */

#worldwide {
    background-image: url('../images/worldwide.jpg');
    background-position: center top 59px;
    background-repeat: no-repeat;
    min-height: 420px;
}


/* PREVIOUS / NEXT LINKS
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.prev-next-posts {
    display: block;
    text-align: center;
    clear: both;
}

    .prev-next-posts .page-numbers {
        font-size: 20px;
        font-family: 'oswald-book';
        color: #505050;
        margin: 3px;
    }

        .prev-next-posts .page-numbers li {
            display: inline-block;
        }

            .prev-next-posts .page-numbers li a:hover {
                color: #ff9b00;
            }

.nextBtn, nav .prevBtn,
.page-numbers.current {
    color: #505050;
    display: inline-block !important;
    font-size: 20px !important;
    font-family: 'oswald-book' !important;
    line-height: 22px !important;
}

.nextBtn, .prevBtn {
    border-radius: 50%;
    color: #1f478c;
}

    .nextBtn:hover, .prevBtn:hover {
        color: #ff9b00;
    }


/* PARTNERING
–––––––––––––––––––––––––––––––––––––––––––––––––– */

#partnering #contact-form {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-content: center;
    position: relative;
}

#partnering select, #partnering input[type="text"], #partnering textarea {
    font-family: 'firasans-light', sans-serif;
    font-weight: normal;
    font-size: 16px;
    border: 0;
    padding: 4px 15px;
    width: 293px;
    margin-bottom: 20px;
    color: #505050;
}

#partnering textarea, #partnering span.additional-information {
    width: 100%;
}

#partnering input[type="submit"] {
    width: 293px;
    vertical-align: top;
    margin-right: 30px;
    margin-left: 20px;
}

#partnering .submit-form {
    padding-top: 25px;
    float: right;
}

/* CONTACT
–––––––––––––––––––––––––––––––––––––––––––––––––– */
#contact-info {
    float: left;
    width: 50%;
    margin-right: 30px;
    position: relative;
}

    #contact-info p {
        margin-bottom: 16px;
    }

    #contact-info i {
        color: #ff9b00;
        font-size: 28px;
        width: 28px;
        height: 28px;
        text-align: center;
        vertical-align: middle;
    }

        #contact-info i.fa-mobile {
            font-size: 38px;
            vertical-align: bottom;
        }

        #contact-info i.fa-envelope {
            font-size: 24px;
        }

        #contact-info i:hover {
            color: #1f478c;
        }

    #contact-info .follow-us, #contact-info .general-info {
        padding-top: 8px;
    }

        #contact-info .follow-us i {
            font-size: 24px;
            margin-right: 3px;
        }

        #contact-info .follow-us a {
            margin-right: 15px;
        }

            #contact-info .contact-item:hover i, #contact-info .follow-us a:hover i {
                color: #1f478c;
            }

.contact-item {
    margin-bottom: 20px;
}

    .contact-item p {
        display: inline;
        top: 3px;
        position: relative;
        margin-left: 5px;
    }

    .contact-item span {
        color: #1f478c;
        font-weight: bold;
    }

#contact-form {
    float: left;
    width: 47%;
    position: relative;
    background-color: #cacaca;
    padding: 30px;
}

/* WORDPRESS
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.ajax-loader {
    position: absolute;
}

.theme_3.wpcf7-form input.error, .theme_3.wpcf7-form textarea.error,
.theme_3.wpcf7-form input.error, .theme_3.wpcf7-form textarea.error {
    background-color: #fff;
    background-position: right 20px center !important;
}

.theme_3.wpcf7-form input.valid, .theme_3.wpcf7-form textarea.valid,
.theme_3.wpcf7-form input.valid, .theme_3.wpcf7-form textarea.valid {
    background-color: #fff;
    background-position: right 20px center !important;
}

.theme_3.wpcf7-form select.error {
    background-color: #fff;
    background-position: right 20px center !important;
}

.theme_3.wpcf7-form select.valid {
    background-color: #fff;
    background-position: right 20px center !important;
}

#contact-form .wpcf7-form-control.wpcf7-submit {
    width: 50% !important;
    float: right;
    padding: 12px 10px;
}

.g-recaptcha {
    transform:scale(0.65);
    -webkit-transform:scale(0.65);
    transform-origin:0 0;
    -webkit-transform-origin:0 0;
    position: absolute;
}

#partnering .g-recaptcha > div > div {
    width: inherit !important;
}

#partnering .g-recaptcha {
    transform-origin: -183% 0;
    -webkit-transform-origin: -183% 0;
}

.g-recaptcha > div > div {
    width: 300px !important;
}

div.wpcf7-mail-sent-ok {
    position: absolute;
    bottom: 50px;
    border: 0;
    color: red;
    right: 5px;
}

div.wpcf7-spam-blocked {
    position: absolute;
    bottom: 50px;
    border: 0;
    color: red;
    right: 5px;
}

#contact div.wpcf7-mail-sent-ok, #contact-form div.wpcf7-spam-blocked {
    bottom: -50px;
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 0;
}
