﻿/* css_au_main.css */

/* ========================================================================== */
/*
 * Default CSS file - GKN
 * Media:all
 *
 * Author: Lukasz Falkowski - Excite Communications (lukasz@excitecommunications.co.uk)
 *
 * TABLE OF CONTENTS
 * --------------------------------------------------------------------------
 * 1.	COMMON ELEMENTS
 * 1.0		FONTS & COMMON TYPOGRAPHY
 * 1.1		UTILITIES
 * 1.2		PAGE
 * 1.3		PAGE HEADER
 * 1.4		TOP NAVIGATION
 * 1.5		TOP SEARCH
 * 1.6		SHARES PANEL
 * 1.7		BANNERS
 * 1.8		PAGE MIDDLE
 * 1.9		PAGE FOOTER
 * 1.10		COMMON BLOCKS
 * 1.11		ARTICLES
 * 2.	PAGE SPECIFIC
 * 2.0		HOMEPAGE
 * 2.1		ABOUT
 * 2.2		DIVISIONS
 * 2.3		SUSTAINABILITY
 * 2.4		CAREERS
 * 2.5		NEWSROOM
 * 2.6		INVESTORS
 * 2.7		SEARCH RESULTS
 * 3.	ADDITIONAL MEDIA QUERIES
 * 4.	AD HOC STYLES
 * 4.0		LUKASZ
 * 4.1		MARSHALL
 * --------------------------------------------------------------------------
 *
 */
/* ========================================================================== */
body::before {
    content: 'desktop';
    display: none;
}

@media (max-width: 991px) {
    body::before {
        content: 'mobile';
    }
}

@media (min-width: 992px) {
    body::before {
        content: 'desktop';
    }
}

/* 	==========================================================================
	0. CONSTANTS
	========================================================================== */
/*
TODO: 
- implement in imports
*/
/* Some big panels backgrounds */
/* needs autoprefixer */
/* 	==========================================================================
	1. COMMON ELEMENTS
	========================================================================== */
/*  1.0 FONTS & COMMON TYPOGRAPHY
	-------------------------------------------------------------------------- */
/* FONTS */

@font-face {
    font-family: 'Roboto';
    src: url(../Roboto/Roboto-Thin.woff2) format('woff2');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url(../Roboto/Roboto-ThinItalic.woff2) format('woff2');
    font-weight: 100;
    font-style: italic;
}

@font-face {
    font-family: 'Roboto';
    src: url(../Roboto/Roboto-Light.woff2) format('woff2');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url(../Roboto/Roboto-LightItalic.woff2) format('woff2');
    font-weight: 100;
    font-style: italic;
}

@font-face {
    font-family: 'Roboto';
    src: url(../Roboto/Roboto-Regular.woff2) format('woff2');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url(../Roboto/Roboto-Italic.woff2) format('woff2');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Roboto';
    src: url(../Roboto/Roboto-Medium.woff2) format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url(../Roboto/Roboto-MediumItalic.woff2) format('woff2');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Roboto';
    src: url(../Roboto/Roboto-Bold.woff2) format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url(./Roboto-BoldItalic.woff2) format('woff2');
    font-weight: 500;
    font-style: italic;
}


@font-face {
    font-family: 'Roboto';
    src: url(../Roboto/Roboto-Black.woff2) format('woff2');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url(../Roboto/Roboto-BlackItalic.woff2) format('woff2');
    font-weight: 900;
    font-style: italic;
}


/* COMMON TYPOGRAPHY */
body {
    font-family: "Roboto", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-size: 18px;
    font-weight: 100;
}

.h2, .h3, .h4, h2, h3, h4, h5, h6 {
    font-weight: 300;
}

.ot-floating-button__open {
    display: none;
}






.ot-floating-button__front.custom-persistent-icon {
    display: none;
}




.ot-floating-button__back {
    display: none;
}

footer .legal .ot-sdk-show-settings {
    margin-right: 10px;
    color: #333;
    display: inline-block;
    background: transparent;
    border: none;
    padding: 4px 0;
    outline: none;
}

    footer .legal .ot-sdk-show-settings:hover {
        color: #369;
        text-decoration: underline;
    }

/*custom cookie pop*/
div#cookie-warning-message {
    color: white;
    background-color: rgba(0, 0, 0, 0.75);
    padding: 20px;
    margin-top: 20px;
    text-align: center;
    border: 1px solid rgb(204, 204, 204);
    top: 5rem;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
}


@media (max-width: 767px) {
    div#cookie-warning-message {
        width: 90%;
    }

        div#cookie-warning-message p {
            font-size: 15px;
        }

        div#cookie-warning-message button.ot-sdk-show-settings::after {
            font-size: 15px;
        }
}

div#cookie-warning-message button.ot-sdk-show-settings.en-version::after {
    content: "Targeting cookies";
    font-size: 18px;
    color: #fff;
    position: absolute;
    left: 5px;
    border-bottom: 1px solid #fbba00;
    top: -19px;
    display: inline-block;
}

div#cookie-warning-message button.ot-sdk-show-settings {
    position: relative;
    font-size: 0;
    display: inline-block;
    color: transparent;
    width: 9.5rem;
    background: transparent;
    border: none;
    color: inherit;
    outline: none;
    padding: 0;
}

    div#cookie-warning-message button.ot-sdk-show-settings::after {
        content: "Targeting-Cookies";
        font-size: 18px;
        color: #fff;
        position: absolute;
        left: 5px;
        border-bottom: 1px solid #fbba00;
        top: -19px;
        display: inline-block;
    }


bold,
strong {
    font-weight: 400;
}

a {
    color: #369;
}

    a:hover {
        text-decoration: none;
    }

section a {
	text-decoration: underline;
}

pre {
    tab-size: 20px;
}

.stripe-title {
    position: relative;
    padding: 52px 0 56px 0;
    background-color: #1a2d44;
}

section.transparent .stripe-title {
    background-color: rgba(26, 45, 68, 0.9);
}

.stripe-title::after {
    display: block;
    content: '';
    height: 4px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(to right, #fbba00 5%, #ffffff 62%, #1a2d44 97%);
}

.stripe-title h1,
.stripe-title h2 {
    padding: 0 30px;
    margin: 0;
    font-size: 46px;
    line-height: 46px;
    font-weight: 100;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
}

    .stripe-title h1.standard-case,
    .stripe-title h2.standard-case {
        text-transform: none;
    }

@media (max-width: 440px) {
    .stripe-title h1,
    .stripe-title h2 {
        padding: 0 20px;
        font-size: 34px;
        line-height: 38px;
    }
}

@media (max-width: 300px) {
    .stripe-title h1,
    .stripe-title h2 {
        font-size: 30px;
        line-height: 32px;
    }
}

.stripe-title .meta {
    text-align: center;
    margin: -10px 0 20px 0;
}

    .stripe-title .meta span {
        display: inline-block;
        margin: 0 10px;
        font-size: 16px;
        font-weight: 300;
        color: #fff;
        text-transform: uppercase;
    }

#middle > section > h2,
#middle > section > .trapezoid > h2,
#middle > section.transparent .wrapper.white > h2 {
    margin: 0 0 50px 0;
    text-align: center;
    font-size: 36px;
    font-weight: 100;
    color: #2b5689;
}

#middle > section > h3 {
    margin: 0 0 50px 0;
    text-align: center;
    font-size: 22px;
    font-weight: 300;
    text-transform: uppercase;
    color: #222;
}

#middle > section.light-blue > h2,
#middle > section.light-blue > h3,
#middle > section.blue > h2,
#middle > section.blue > h3,
#middle > section.darker-blue > h2,
#middle > section.darker-blue > h3,
#middle > section.navy > h2,
#middle > section.navy > h3 {
    color: #fff;
}

#middle > section > h2 {
    margin: 0 0 50px 0;
    text-align: center;
    font-size: 36px;
    font-weight: 300;
    color: #2b5689;
}

#middle > section .lead {
    font-size: 22px;
    font-weight: 100;
}

#middle > section > .lead,
.intro .lead {
    text-align: center;
}

    .intro .lead + .rt {
        margin-top: -30px;
        margin-bottom: 50px;
        text-align: center;
    }

h4 {
    font-weight: 400;
    font-size: 20px;
    margin: 10px 0 8px 0;
}

#middle > section.light-blue > .lead,
#middle > section.light-blue > p,
#middle > section.blue > .lead,
#middle > section.blue > p,
#middle > section.darker-blue > .lead,
#middle > section.darker-blue > p,
#middle > section.navy > .lead,
#middle > section.navy > p {
    color: #fff;
}

    #middle > section.light-blue > .lead > a,
    #middle > section.light-blue > .rt > a,
    #middle > section.light-blue > .lead > p > a,
    #middle > section.light-blue > .rt > p > a,
    #middle > section.light-blue > p > a,
    #middle > section.blue > .lead > a,
    #middle > section.blue > .rt > a,
    #middle > section.blue > .lead > p > a,
    #middle > section.blue > .rt > p > a,
    #middle > section.blue > p > a,
    #middle > section.darker-blue > .lead > a,
    #middle > section.darker-blue > .rt > a,
    #middle > section.darker-blue > .lead > p > a,
    #middle > section.darker-blue > .rt > p > a,
    #middle > section.darker-blue > p > a,
    #middle > section.navy > .lead > a,
    #middle > section.navy > .rt > a,
    #middle > section.navy > .lead > p > a,
    #middle > section.navy > .rt > p > a,
    #middle > section.navy > p > a {
        color: #fc3;
    }

.rt h3 {
    font-weight: 300;
    margin: 30px 0;
}

.tab-content > [class^='col-'] > h3,
.tab-content > [class*=' col-'] > h3 {
    font-weight: 300;
    margin: 30px 0;
}

/*  1.1 UTILITIES
	-------------------------------------------------------------------------- */
body.freeze {
    overflow: hidden;
}

.no-gutters.row,
.no-gutters.container,
.no-gutters.container-fluid {
    margin-left: 0;
    margin-right: 0;
}

.no-gutters.container,
.no-gutters.container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.no-gutters > [class^='col-'],
.no-gutters > [class*=' col-'] {
    padding-left: 0;
    padding-right: 0;
}

.mb-2 {
    margin-bottom: 2em;
}

/*  1.2 PAGE
	-------------------------------------------------------------------------- */
body.grey {
    background-color: #f3f3ee;
}

/*  1.3 PAGE HEADER
	-------------------------------------------------------------------------- */
#page header {
    width: 100%;
    font-size: 16px;
    z-index: 1011;
}

    #page header.sticky {
        position: fixed;
        top: 0;
        left: 0;
    }

#top {
    /*overflow:hidden;*/
    height: auto;
    background-color: #fff;
}

    #top::after {
        content: "";
        display: table;
        clear: both;
    }

@media (min-width: 1402px) {
    #top {
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }
}
/* logo */
#top .logo {
    position: relative;
    float: left;
    display: block;
    width: 154px;
    height: 72px;
    padding: 0;
    margin: 0;
    background-color: transparent;
    background-position: 0 0;
    background-repeat: no-repeat;
    text-align: center;
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
}

    #top .logo svg {
        margin-top: 20px;
        margin-bottom: 20px;
        width: 100%;
        max-width: 154px;
        height: auto;
    }

    #top .logo.aerospace {
        width: 278px;
        background-image: url("../img/gkn-aerospace-horizontal.svg");
    }

    #top .logo.driveline {
        width: 278px;
        background-image: url("../img/gkn-driveline-horizontal.svg");
    }

    #top .logo.pm {
        width: 359px;
        background-image: url("../img/gkn-pm-horizontal.svg");
    }

    #top .logo.epowertrain {
        width: 306px;
        background-image: url("../img/gkn-epowertrain-horizontal.svg");
    }

@media (min-width: 992px) and (max-width: 1430px) {
    #top .logo {
        margin-left: 30px;
    }
}

@media (max-width: 991px) {
    #top .logo {
        width: 100px;
        margin-left: 10px;
        z-index: 1;
    }

        #top .logo svg {
            width: 100%;
            height: auto;
        }

        #top .logo.aerospace {
            width: 153px;
            background-image: url("../img/gkn-aerospace-stacked.svg");
        }

        #top .logo.driveline {
            width: 153px;
            background-image: url("../img/gkn-driveline-stacked.svg");
        }

        #top .logo.pm {
            width: 200px;
            background-image: url("../img/gkn-pm-stacked.svg");
        }

        #top .logo.epowertrain {
            width: 153px;
            background-image: url("../img/gkn-epowertrain-stacked.svg");
        }

        #top .logo:hover {
            opacity: 0.8;
        }
}

@media (max-width: 400px) {
    #top .logo.aerospace {
        width: 100px;
        background-size: contain;
        background-position: 50% 50%;
    }

    #top .logo.driveline {
        width: 100px;
        background-size: contain;
        background-position: 50% 50%;
    }

    #top .logo.pm {
        width: 140px;
        background-size: contain;
        background-position: 50% 50%;
    }

    #top .logo.epowertrain {
        width: 100px;
        background-size: contain;
        background-position: 50% 50%;
    }
}
/* end of logo */
/* header links */
#top .links {
    float: right;
    padding-right: 20px;
}

    #top .links a {
        display: inline-block;
        padding: 24px 10px;
        color: #333;
    }

        #top .links a:hover {
            color: #369;
            text-decoration: underline;
        }

    #top .links .lang-switch {
        position: relative;
        display: inline-block;
    }

        #top .links .lang-switch .lang-trigger {
            background: transparent url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAMAAADXqc3KAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADBQTFRFzs/S////pKaqtLa55OXnnaCknJ+i8fHzq6yvv8DCsLG13N3e6+zt9vb3+fr8////OMPELAAAABB0Uk5T////////////////////AOAjXRkAAAEKSURBVHjaVFKLcsAgCAOEKqL4/387UOdtXHu9JjxCFNaNAaAK7L//cD7W5JN8SOcfYvTSJKIbcyF4BJOVgIlGRfRa9BIsPfFinQEzVDcxiWTHQSO8WxIK5eDTAHw0RqzNF1SChD8x6ERdTzNYob5tnWKOTE02M/qC0gP/3gQPPrTRBKJMP4k7DAfUwiC0Oz1JCKN2UtuTo1d/BGoua9COR6LO7GdMQN8IS6+qFPYqxMHUm9zY/TjzygKnyu1WyExVaZGFJaDo5SxP26go6ekVFsB2pEn4BKJCY9s+G1DuHiUNR1pt96Bqv7Ji6N7hHa3Dtmu/Usbfy1D1npby/1uyFlY2G+/2rB8BBgB9zxAExV5PQAAAAABJRU5ErkJggg==") no-repeat 10px 50%;
            padding-left: 30px;
            padding: 7px 20px 7px 42px;
            border: solid 1px #ccc;
        }

        #top .links .lang-switch .lang-drop {
            position: absolute;
            top: 62px;
            z-index: 10000;
            min-width: 220px;
            list-style: none;
            padding: 25px;
            background-color: #fff;
            -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
            -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
            box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
            display: none;
        }

            #top .links .lang-switch .lang-drop.visible {
                display: block;
            }

            #top .links .lang-switch .lang-drop::before {
                position: absolute;
                top: -7px;
                left: 60px;
                display: block;
                content: '';
                width: 15px;
                height: 15px;
                background-color: #fff;
                margin-left: -7px;
                transform: rotate(45deg);
                -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
                -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
                box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
            }

            #top .links .lang-switch .lang-drop::after {
                position: absolute;
                top: 0;
                left: 60px;
                display: block;
                content: '';
                width: 30px;
                height: 20px;
                margin-left: -15px;
                background-color: #fff;
            }

            #top .links .lang-switch .lang-drop li {
                padding: 0;
            }

            #top .links .lang-switch .lang-drop a {
                display: block;
                padding: 10px 0;
            }

/* end of header links */
#top .buttons {
    float: right;
    height: 72px;
}

    /* search toggle button */
    #top .buttons .search-btn,
    .filters.news .keyword-filter input {
        background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAYAAACpSkzOAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAlRJREFUeNq0lk9IVFEUxu+YmYaWYDIZmqsIQ0MtF9IfpPyDZpmauG4jtEmSoGhVLYXICjfBgGYRpNZOozKSKIoIgqTMMrE2kaQholYkfge+gdPlPmfGN33wY869b9775px377kTCHXdNB5KBg3gMMgHWSAdTIF34BG4Bb6YKJTomAuAFnABBB3XN5MD4CLoAWfB91iMUsENUG/NfwbvwW+wBRSBJN5/HFSBo+BVNEbrwROwi+MFcA2EwJh13wY+WDLJo/kwqAWPXUYJqlzdyuQDKARnHCaiWWYu37nKuRRwF2xbyUjSP8b4LSj1MLAlpWwF7RxvZAUCLqMkvnjRImgEMyY2neMqFO0D1S6jCpDNcQf4aGLXX2a2xPEJl1GdGofM6iV76znjCr6zf4z2MJZMPhl/GuDnOlBgG21Ve8WvxlWc61oMop9xMJpV8Vrb6BvjYByMMlT8wzb6ylhqusankX4vE7bRkPo1e32YBNjtDas0ZhvdU+M2H0aNqv3cdu2jN+Apx0dA0ypMMsEVxn9Ap1evO8W+JeoCZTGYSH+7zw4e7i7jXkavVdnkuHgATqrrXioBL0Gxmqtmhk4jw3QvqT0gpRhhD5PVlMb5HNAM+sALsN16Zj4b7KaVTtjTXC2XmVkeSxFJ/SxhOcc7wUNwEEwbj9JcBzv4rn5FMJBFdIhnWR1P6LAKaZbu9edENMnDUBZJJU/eHF6bYvOVh4yqe+ZpOgj2c66Y3ytPjPCLpf/dIdFIm4U3/27Qm2DirzmaPVON9vz/MAo/vIqZ1ciBuCzAAJWDczRxot/SAAAAAElFTkSuQmCC");
    }

    #top .buttons .search-btn {
        float: left;
        display: block;
        width: 110px;
        height: 72px;
        overflow: hidden;
        text-indent: 200px;
        line-height: 72px;
        background-color: #f3f3ee;
        background-repeat: no-repeat;
        background-position: center center;
    }

    /* end of search toggle button */
    /* shares toggle button */
    #top .buttons .shares-btn {
        float: left;
        display: block;
        width: auto;
        min-width: 190px;
        height: 72px;
        padding: 0 25px 0 25px;
        color: #fff;
        background-color: #1a2d44;
        transition: background-color 0.1s linear;
    }

        #top .buttons .shares-btn:hover {
            background-color: #204066;
        }

        #top .buttons .shares-btn .price {
            display: block;
            padding: 7px 0 9px 0;
            font-size: 26px;
            line-height: 26px;
            white-space: nowrap;
        }

            #top .buttons .shares-btn .price::before {
                display: inline-block;
                content: '';
                width: 12px;
                height: 26px;
                padding-right: 5px;
            }

            #top .buttons .shares-btn .price.up::before {
                background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAGCAYAAAD37n+BAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADdJREFUeNpi/P//PwMWUA+lGzFkQBrQcP1/BKhHl8eluAGKMTThUgwTw9CETzFWTYQUY2gCCDAAL7XKN6LgkdAAAAAASUVORK5CYII=") no-repeat 0 11px;
            }

    #top .buttons .shares-btnn .price.down::before {
        background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAGCAYAAAD37n+BAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAEVJREFUeNqUjkEKACAIBK2P6883LQ+mEiTMIZwhBwD6mamwYpU8PHGHyX5QGGfE3xHxHe9rwqKLLjkHOSpyF8SoyMYSYAD026VdSYS4fwAAAABJRU5ErkJggg==") no-repeat 0 17px;
    }

    #top .buttons .shares-btn .info {
        display: block;
        font-size: 13px;
        line-height: 13px;
        white-space: nowrap;
    }

    #top .buttons .shares-btn .info-short {
        display: none;
    }

/* end of shares toggle button */
/* navigation toggle button */
.navbar-toggler {
    position: relative;
    width: 60px;
    height: 72px;
    padding: 0 0 0 17px;
    border: 0;
    margin: 0;
}

    .navbar-toggler:focus {
        outline: none;
    }

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -1px;
}

    .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
        width: 30px;
        height: 2px;
        background-color: #2b5689;
        border-radius: 2px;
        position: absolute;
        transition-property: -webkit-transform;
        transition-property: transform;
        transition-property: transform, -webkit-transform;
        transition-duration: 0.15s;
        transition-timing-function: ease;
    }

        .hamburger-inner::before, .hamburger-inner::after {
            content: "";
            display: block;
        }

        .hamburger-inner::before {
            top: -8px;
        }

        .hamburger-inner::after {
            bottom: -8px;
        }

.navbar-toggler.collapsed {
    transition-duration: 0.1s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

    .navbar-toggler.collapsed::before {
        transition: top 0.1s 0.14s ease, opacity 0.1s ease;
    }

    .navbar-toggler.collapsed::after {
        transition: bottom 0.1s 0.14s ease, -webkit-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
        transition: bottom 0.1s 0.14s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
        transition: bottom 0.1s 0.14s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

.navbar-toggler:not(.collapsed) .hamburger-inner {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition-delay: 0.14s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

    .navbar-toggler:not(.collapsed) .hamburger-inner::before {
        top: 0;
        opacity: 0;
        transition: top 0.1s ease, opacity 0.1s 0.14s ease;
    }

    .navbar-toggler:not(.collapsed) .hamburger-inner::after {
        bottom: 0;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        transition: bottom 0.1s ease, -webkit-transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
        transition: bottom 0.1s ease, transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
        transition: bottom 0.1s ease, transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
    }

/* end of navigation toggle button */
@media (max-width: 991px) {
    #top {
        height: 72px;
    }

        #top .buttons {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
        }


            #top .buttons .shares-btn,
            #top .buttons .search-btn,
            .navbar-toggler {
                float: none;
                position: absolute;
                top: 0;
            }

            #top .buttons .shares-btn {
                left: 0;
                min-width: initial;
                padding: 0 10px;
                background-color: transparent;
            }

                #top .buttons .shares-btn .price {
                    padding: 14px 0 0px 0;
                    font-size: 16px;
                    font-weight: bold;
                    color: #1a2d44;
                }

                    #top .buttons .shares-btn .price::before {
                        display: none;
                    }

                #top .buttons .shares-btn .info {
                    display: none;
                }

                #top .buttons .shares-btn .info-short {
                    display: block;
                    font-size: 10px;
                    line-height: 14px;
                    color: #1a2d44;
                    white-space: nowrap;
                }

                #top .buttons .shares-btn:hover .price,
                #top .buttons .shares-btn:hover .info-short {
                    color: #fff;
                }

            #top .buttons .search-btn {
                right: 60px;
                width: 90px;
                background-color: transparent;
            }

    .navbar-toggler {
        right: 0;
    }

    #top .links {
        display: none;
    }
}

@media (max-width: 440px) {
    #top .buttons .search-btn {
        width: 30px;
    }
}
/*  1.4 TOP NAVIGATION
	-------------------------------------------------------------------------- */
header .navbar {
    padding: 0;
    border-radius: 0;
}

@media (min-width: 992px) {
    header .navbar-nav,
    header .navbar-nav ul {
        padding: 0;
        margin: 0;
        list-style: none;
    }

        header .navbar-nav li {
            position: static;
        }

            header .navbar-nav li a {
                display: block;
                position: relative;
            }

    /* first level horizontal */
    header .navbar-nav {
        position: relative;
        background-color: #1a2d44;
        text-align: center;
    }

        header .navbar-nav > li {
            display: inline-block;
        }

            header .navbar-nav > li > a {
                padding: 13px;
                color: #fff;
                text-transform: uppercase;
                transition: color 0.2s;
            }

                header .navbar-nav > li.hover > a,
                header .navbar-nav > li > a:hover,
                header .navbar-nav > li.active:not(.blurred) > a,
                header .navbar-nav > li.keep-open > a {
                    color: #7ab7ff;
                    text-decoration: underline;
                }

                header .navbar-nav > li > a::after {
                    position: absolute;
                    bottom: 0;
                    left: 50%;
                    margin-left: -10px;
                    content: '';
                    width: 0;
                    height: 0;
                    border-style: solid;
                    border-width: 0 10px 0 10px;
                    border-color: transparent transparent #fff transparent;
                    opacity: 0;
                    transition: border-bottom-width 0.2s, opacity 0.2s;
                }

                header .navbar-nav > li.hover > a::after,
                header .navbar-nav > li.active > a::after,
                header .navbar-nav > li.keep-open > a::after,
                header .navbar-nav > li > a:hover::after {
                    border-bottom-width: 10px;
                    opacity: 1;
                }

            header .navbar-nav > li.active.blurred > a::after,
            header .navbar-nav > li.blurred > a::after {
                border-bottom-width: 0;
                opacity: 0;
            }

            /* end first level */
            header .navbar-nav > li > .wrapper {
                position: absolute;
                left: 0;
                right: 0;
                top: 100%;
                padding: 30px 0 40px 0;
                background: #fff;
                z-index: 1000;
                -webkit-box-shadow: 0 3px 3px 0px rgba(0, 0, 0, 0.2);
                -moz-box-shadow: 0 3px 3px 0px rgba(0, 0, 0, 0.2);
                box-shadow: 0 3px 3px 0px rgba(0, 0, 0, 0.2);
                max-height: calc(100vh - 72px);
                overflow-y: auto;
            }

                header .navbar-nav > li > .wrapper .lmt {
                    max-width: 1140px;
                    margin: 0 auto;
                    display: flex;
                    flex-direction: row;
                    flex-wrap: nowrap;
                    align-items: flex-start;
                }

                header .navbar-nav > li > .wrapper .navcol {
                    flex: 1 1 auto;
                }

                    header .navbar-nav > li > .wrapper .navcol > ul > li > a {
                        color: #335688;
                        font-weight: 400;
                        font-size: 18px;
                    }

                    header .navbar-nav > li > .wrapper .navcol a {
                        text-align: left;
                    }

                    header .navbar-nav > li > .wrapper .navcol > ul {
                        padding-bottom: 20px;
                    }

            /* levels 2, 3, 4, 5 - vertical */
            header .navbar-nav > li li {
                display: block;
                position: static;
                /*padding: 0 15px;*/
            }

            header .navbar-nav > li ul a {
                padding: 10px 0 10px 0;
                /*border-bottom: 1px solid transparent;*/
                font-size: 16px;
                line-height: 24px;
                color: #222;
                transition: color 0.2s, border-bottom 0.2s;
            }

            header .navbar-nav > li ul li.hover:not(.blurred) > a,
            header .navbar-nav > li ul li.active:not(.blurred) > a {
                color: #369;
                /*border-bottom: 1px solid $colorGknLightBlue;*/
            }

            header .navbar-nav > li ul a:hover {
                color: #369;
                /*border-bottom: 1px solid $colorGknLightBlue;*/
                text-decoration: underline;
            }

            /* end levels 2, 3, 4, 5 */
            header .navbar-nav > li > .wrapper > ul {
                position: relative;
                max-width: 1140px;
                margin-left: auto;
                margin-right: auto;
                text-align: left;
            }

                header .navbar-nav > li > .wrapper > ul > li {
                    width: 25%;
                }

                    header .navbar-nav > li > .wrapper > ul > li ul {
                        position: absolute;
                        top: 0;
                    }

                    header .navbar-nav > li > .wrapper > ul > li > ul {
                        left: 25%;
                        width: 25%;
                    }

                        header .navbar-nav > li > .wrapper > ul > li > ul > li > ul {
                            left: 100%;
                            width: 100%;
                        }

                            header .navbar-nav > li > .wrapper > ul > li > ul > li > ul > li > ul {
                                left: 100%;
                                width: 100%;
                            }

        header .navbar-nav .titlebar {
            max-width: 1140px;
            padding: 0 15px 30px;
            margin: 0 auto;
            text-align: left;
        }

    .titlebar a span.de--flag {
        display: block;
        background-image: url(/Static/image/gkn-sprachwechsel-de.png);
        width: 49px;
        height: 49px;
    }

    .titlebar a span.en--flag {
        display: block;
        background-image: url(/Static/image/gkn-sprachwechsel-en.png);
        width: 49px;
        height: 49px;
    }

    header .navbar-nav .titlebar a {
        display: inline-block;
        font-size: 18px;
        line-height: 25px;
        font-weight: normal;
        text-transform: none;
        color: #333;
        transition: color 0.2s;
        margin-left: -14px;
        padding-left: 0;
        /*background: transparent url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAMAAADXqc3KAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADBQTFRFzs/S////pKaqtLa55OXnnaCknJ+i8fHzq6yvv8DCsLG13N3e6+zt9vb3+fr8////OMPELAAAABB0Uk5T////////////////////AOAjXRkAAAEKSURBVHjaVFKLcsAgCAOEKqL4/387UOdtXHu9JjxCFNaNAaAK7L//cD7W5JN8SOcfYvTSJKIbcyF4BJOVgIlGRfRa9BIsPfFinQEzVDcxiWTHQSO8WxIK5eDTAHw0RqzNF1SChD8x6ERdTzNYob5tnWKOTE02M/qC0gP/3gQPPrTRBKJMP4k7DAfUwiC0Oz1JCKN2UtuTo1d/BGoua9COR6LO7GdMQN8IS6+qFPYqxMHUm9zY/TjzygKnyu1WyExVaZGFJaDo5SxP26go6ekVFsB2pEn4BKJCY9s+G1DuHiUNR1pt96Bqv7Ji6N7hHa3Dtmu/Usbfy1D1npby/1uyFlY2G+/2rB8BBgB9zxAExV5PQAAAAABJRU5ErkJggg==") no-repeat 10px 50%;*/
    }

        header .navbar-nav .titlebar a:hover {
            color: #369;
        }

    header .navbar-nav .titlebar .navclose {
        display: block;
        float: right;
        width: 25px;
        height: 25px;
        border: 0;
        margin: 0;
        background: transparent url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABcAAAAXCAMAAADX9CSSAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAHtQTFRFM1aIl6nCqbjNwMvborPJN1qLN1mKNlmKQWKQv8ravMjZj6O+kaW/7/L2k6bAvcnZxM7dNliKrbzQe5Oz+fr7Pl+Onq/H6+/0u8fXu8fYnK7Gt8TWm63FvMjYl6rDN1qKWXWeztfjmavEoLHIlajBvsnZ19/obYeq////CfeTUQAAACl0Uk5T/////////////////////////////////////////////////////wBS9CCHAAAAoElEQVR42mzRVxKDMAxF0RecEEjvvVftf4XBcpGw4x885w6MBoG29O9gtu5keBwTTA9pKHBbgbJQAF0CpYHZejs4ZtfBs3MJgb2HEDm4C8LRbfgKi5MpFStvPqLGheLlXAKEn7Trx4DIm+axjwGBT3w5hwDPD//+wAc4vsRBpiUHML/Uf35zgOVJay+1DVgAo2SP9RUHfKphtndT3X8CDAD13Tzkj3zyQwAAAABJRU5ErkJggg==") no-repeat 50% 50%;
    }

        header .navbar-nav .titlebar .navclose:hover {
            opacity: 0.7;
        }

    header .navbar-nav figure {
        width: 33%;
        position: absolute;
        right: 0;
        top: 0;
        padding-right: 15px;
        opacity: 1;
        transition: opacity 0.2s;
    }

        header .navbar-nav figure::after {
            display: none;
        }

        header .navbar-nav figure.faded {
            opacity: 0;
        }

    header .navbar-nav figcaption {
        background-color: transparent;
        padding: 20px 0 0 0;
        color: #333;
        font-size: 16px;
    }

    header .navbar-nav > li:not(.closed):hover > .wrapper,
    header .navbar-nav > li.active > .wrapper {
        display: block;
    }

    header .navbar-nav > li.active.blurred:hover > .wrapper {
        display: block;
    }

    header .navbar-nav > li.keep-open > .wrapper {
        display: block !important;
    }

    header .navbar-nav > li > .wrapper,
    header .navbar-nav > li.active.blurred > .wrapper {
        display: none;
    }

    header .navbar-nav > li.active:not(.hover) > .wrapper {
        display: none;
    }

        header .navbar-nav > li.active:not(.hover) > .wrapper ul {
            /*
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s;
    */
        }

    header .navbar-nav ul,
    header .navbar-nav li.active.blurred > ul {
        /*
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s;
    */
    }

    header .navbar-nav > li.hover > .wrapper > ul,
    header .navbar-nav > li.active > .wrapper > ul,
    header .navbar-nav li.hover > ul,
    header .navbar-nav li.active > ul {
        visibility: visible;
        opacity: 1;
        transition: opacity 0.3s;
        transition-delay: 0.1s;
    }

    header .navbar-nav > li.keep-open.active > ul,
    header .navbar-nav > li.keep-open .active:not(.blurred) > ul,
    header .navbar-nav > li.active.keep-open:not(.hover) > .wrapper .active:not(.blurred) > ul,
    header .navbar-nav > li.active.keep-open:not(.hover) > .wrapper > ul,
    header .navbar-nav > li.keep-open > .wrapper > ul {
        visibility: visible;
        opacity: 1;
        transition: opacity 0.3s;
        transition-delay: 0.1s;
    }
}

@media (min-width: 992px) and (max-width: 1024px) {
    header .navbar-nav > li > a {
        padding: 13px 10px;
    }
}

@media (max-width: 991px) {
    header nav .nav.navbar-nav .titlebar {
        display: none;
    }

    header nav ul {
        list-style: none;
        padding: 0;
    }

    header nav .nav.navbar-nav {
        background-color: #2b5689;
        max-height: calc(100vh - 72px);
        overflow-x: hidden;
        overflow-y: auto;
    }

        header nav .nav.navbar-nav > li {
            display: block;
        }

            header nav .nav.navbar-nav > li > ul,
            header nav .nav.navbar-nav > li > .wrapper > ul {
                background-color: #224166;
                min-height: 0 !important;
            }

                header nav .nav.navbar-nav > li > ul > li > ul,
                header nav .nav.navbar-nav > li > .wrapper > ul > li > ul {
                    background-color: #1a2d44;
                }

                    header nav .nav.navbar-nav > li > ul > li > ul > li > ul,
                    header nav .nav.navbar-nav > li > .wrapper > ul > li > ul > li > ul {
                        background-color: #122439;
                    }

                        header nav .nav.navbar-nav > li > ul > li > ul > li > ul > li > ul,
                        header nav .nav.navbar-nav > li > .wrapper > ul > li > ul > li > ul > li > ul {
                            background-color: #061323;
                        }

            header nav .nav.navbar-nav > li > .wrapper > ul {
                display: none;
            }

            header nav .nav.navbar-nav > li > .wrapper {
                display: none;
            }

            header nav .nav.navbar-nav > li.open > .wrapper {
                display: block;
            }



            header nav .nav.navbar-nav > li > .wrapper .navcol .dropdown > ul {
                display: none;
            }

            header nav .nav.navbar-nav > li > .wrapper .navcol .dropdown.open > ul {
                display: block;
            }

            header nav .nav.navbar-nav > li > .wrapper .navcol > ul > li > a {
                padding: 10px 15px 10px 25px;
            }

            header nav .nav.navbar-nav > li > .wrapper .navcol > ul > li > ul > li > a {
                padding: 10px 15px 10px 35px;
            }



            header nav .nav.navbar-nav > li.active > .wrapper > ul,
            header nav .nav.navbar-nav > li.open > .wrapper > ul {
                display: block;
            }

            header nav .nav.navbar-nav > li > ul > li > ul,
            header nav .nav.navbar-nav > li > .wrapper > ul > li > ul {
                display: none;
            }

            header nav .nav.navbar-nav > li > ul > li.active > ul,
            header nav .nav.navbar-nav > li > .wrapper > ul > li.active > ul,
            header nav .nav.navbar-nav > li > ul > li.open > ul,
            header nav .nav.navbar-nav > li > .wrapper > ul > li.open > ul {
                display: block;
            }

            header nav .nav.navbar-nav > li > ul > li > ul > li > ul,
            header nav .nav.navbar-nav > li > .wrapper > ul > li > ul > li > ul {
                display: none;
            }

            header nav .nav.navbar-nav > li > ul > li > ul > li.active > ul,
            header nav .nav.navbar-nav > li > .wrapper > ul > li > ul > li.active > ul,
            header nav .nav.navbar-nav > li > ul > li > ul > li.open > ul,
            header nav .nav.navbar-nav > li > .wrapper > ul > li > ul > li.open > ul {
                display: block;
            }

            header nav .nav.navbar-nav > li > ul > li > ul > li > ul > li > ul,
            header nav .nav.navbar-nav > li > .wrapper > ul > li > ul > li > ul > li > ul {
                background-color: #061323;
            }

        header nav .nav.navbar-nav a {
            display: block;
            padding: 10px 15px;
            color: #fff;
            border-bottom: 1px solid #224166;
        }

            header nav .nav.navbar-nav a:hover,
            header nav .nav.navbar-nav .active > a {
                color: #7ab7ff;
            }

        header nav .nav.navbar-nav .dropdown > a {
            padding-right: 44px;
        }

        header nav .nav.navbar-nav > li > a {
            /*border-bottom: 1px solid #224166;*/
        }

        header nav .nav.navbar-nav > li > .wrapper > ul > li > a {
            /*border-bottom: 1px solid #1a2d44;*/
            padding-left: 15px;
        }

        header nav .nav.navbar-nav > li > ul > li > ul > li > a,
        header nav .nav.navbar-nav > li > .wrapper > ul > li > ul > li > a {
            /*border-bottom: 1px solid #122439;*/
            padding-left: 20px;
        }

        header nav .nav.navbar-nav > li > ul > li > ul > li > ul > li > a,
        header nav .nav.navbar-nav > li > .wrapper > ul > li > ul > li > ul > li > a {
            /*border-bottom: 1px solid #1a2d44;*/
            padding-left: 25px;
        }

        header nav .nav.navbar-nav > li > ul > li > ul > li > ul > li > ul > li > a,
        header nav .nav.navbar-nav > li > .wrapper > ul > li > ul > li > ul > li > ul > li > a {
            /*border-bottom: 1px solid #1a2d44;*/
            padding-left: 30px;
        }

        header nav .nav.navbar-nav .dropdown > .trigger {
            display: block;
            position: absolute;
            right: 0;
            top: 0;
            width: 44px;
            height: 44px;
            cursor: pointer;
            z-index: 999999;
        }

            header nav .nav.navbar-nav .dropdown > .trigger::before {
                content: '+';
                width: 44px;
                height: 44px;
                color: #fff;
                position: absolute;
                top: 22px;
                left: 22px;
                margin-top: -22px;
                margin-left: -22px;
                line-height: 40px;
                text-align: center;
                font-size: 36px;
                font-weight: 200;
            }

        header nav .nav.navbar-nav .dropdown.open > .trigger::before,
        header nav .nav.navbar-nav .dropdown.active > .trigger::before {
            transform: rotate(45deg);
        }

        header nav .nav.navbar-nav .dropdown > .trigger:hover::before {
            color: #fc3;
        }

        header nav .nav.navbar-nav figure {
            display: none;
        }
}

#navBackTrigger {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: transparent;
    z-index: 1010;
}

#crumbnav {
    padding: 0 15px;
    background-color: #fff;
}

    #crumbnav::after {
        content: '';
        display: table;
        clear: both;
    }

    #crumbnav > ul {
        display: block;
        max-width: 1140px;
        list-style: none;
        padding: 0;
        margin: 0 auto;
    }

        #crumbnav > ul > li {
            float: left;
            position: relative;
            padding-right: 10px;
        }

            #crumbnav > ul > li:first-child {
                display: none;
            }

            #crumbnav > ul > li::before {
                display: block;
                content: '';
                position: absolute;
                width: 7px;
                height: 11px;
                background: transparent url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAALCAYAAACzkJeoAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAK9JREFUeNpiuHHjhg0Q7wRi/v///zMgYyYGBoZiIHYD4r03b94UYkACIMlIIN4GxMZQBaJwSXV19R9AOhCINwCxARAfACqQAEkygswGAaAAK5BaAsRhIC4Qu8IloQrYgNRtIJYD4n1MSBIgnYuhEreAOIEFScdKIA4A4utA7Ax0y3MWoAQHkLMWiL2A+BLILqDEK5hXVkAlzgKxE0wCBEDG9gIxJ8iVQImPyIEAEGAAFRlIgyV7wfQAAAAASUVORK5CYII=) no-repeat 0 0;
                right: 0;
                top: 50%;
                margin-top: -6px;
                transition: transform 0.2s, right 0.2s;
            }

            #crumbnav > ul > li:last-child::before {
                display: none;
            }

            #crumbnav > ul > li.dd:hover::before {
                transform: rotate(90deg);
                right: 3px;
            }

            #crumbnav > ul > li::after {
                position: absolute;
                bottom: 0;
                left: 50%;
                margin-left: -10px;
                content: '';
                width: 0;
                height: 0;
                border-style: solid;
                border-width: 0 10px 0 10px;
                border-color: transparent transparent #29456c transparent;
                opacity: 0;
                transition: border-bottom-width 0.2s, opacity 0.2s;
            }

            #crumbnav > ul > li:hover::after,
            #crumbnav > ul > li:last-child:not(.blurred)::after {
                border-bottom-width: 10px;
                opacity: 1;
            }

            #crumbnav > ul > li:hover::after,
            #crumbnav > ul > li:last-child:not(.blurred)::after {
                border-bottom-width: 10px;
                opacity: 1;
            }

            #crumbnav > ul > li > a,
            #crumbnav > ul > li > span {
                display: block;
                font-size: 16px;
                line-height: 20px;
                padding: 15px 10px;
                color: #333;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
                max-width: 140px;
                text-decoration: none;
            }

            #crumbnav > ul > li:nth-child(1) > a,
            #crumbnav > ul > li:nth-child(1) > span,
            #crumbnav > ul > li:nth-child(2) > a,
            #crumbnav > ul > li:nth-child(2) > span,
            #crumbnav > ul > li:nth-child(3) > a,
            #crumbnav > ul > li:nth-child(3) > span,
            #crumbnav > ul > li:last-child > a,
            #crumbnav > ul > li:last-child > span {
                max-width: 100%;
            }

            #crumbnav > ul > li > a:hover {
                color: #2b5689;
                text-decoration: underline;
            }

            #crumbnav > ul > li > ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 220px;
                list-style: none;
                padding: 20px;
                margin: 0;
                background-color: #29456c;
                z-index: 9998;
                -webkit-box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.3);
                -moz-box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.3);
                box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.3);
            }

            #crumbnav > ul > li:hover > ul {
                display: block;
            }

            #crumbnav > ul > li > ul a {
                display: block;
                color: #fff;
                padding: 10px 0;
                font-size: 16px;
            }

                #crumbnav > ul > li > ul a:hover {
                    color: #96bff2;
                    text-decoration: underline;
                }

@media (max-width: 991px) {
    #crumbnav {
        display: none;
    }
}

nav.separated {
    background-color: #fff;
    padding: 0;
    border-radius: 0;
    background: #fff url("data:image/gif;base64,R0lGODlhZAABAIAAAN3d3QAAACH5BAAAAAAALAAAAABkAAEAAAIIhI+py+0PYysAOw==") repeat-x 0 100%;
}

    nav.separated ul {
        position: relative;
        text-align: center;
        z-index: 1;
    }

    nav.separated li {
        display: inline-block;
    }

    nav.separated a {
        display: block;
        padding: 13px;
        color: #222;
    }

        nav.separated a:hover {
            color: #369;
        }

    nav.separated .active > a {
        color: #369;
        background: url("data:image/gif;base64,R0lGODlhLAEFAIAAAP/MMwAAACH5BAAAAAAALAAAAAAsAQUAAAImhI+py+0Po5y02ouz3rz7D4biSJbmiabqyrbuC8fyTNf2jef6VAAAOw==") repeat-x 0 100%;
    }

@media (min-width: 1030px) {
    nav.separated {
        margin-left: 10px;
        margin-right: 10px;
    }
}
/*  1.5 TOP SEARCH
	-------------------------------------------------------------------------- */
#topsearch {
    background-color: #f3f3ee;
}

    #topsearch .input-group,
    .newsroom-search .input-group {
        padding: 64px 0;
    }

.intro .newsroom-search .input-group {
    padding: 64px 256px;
}

#topsearch input,
#page .newsroom-search input {
    height: auto;
    padding: 23px 20px;
    outline: none;
    border-radius: 0;
}

    #topsearch input:focus,
    .newsroom-search input:focus {
        border-color: #abb3b9;
    }

#topsearch button,
#page .newsroom-search button {
    width: 110px;
    height: 73px;
    border: 0;
    border-radius: 0;
    background: #2b5689 url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAYAAACpSkzOAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAghJREFUeNq01ssrRFEcB/A7I+P9fkVh4bEQC002SJIsSHkkOwsLForyT4hsbC0oJQtTForFkBp2SKgxeRaRmhTKa6Tx/dVv6ue4987j8qtPc2buufd77p17zr22YDCoGVQi9EAnVEMhZIIfvLABi3CtRVIUpLDBMNwHw9cnzEG+znF+sClnlAoL0K2M5xJOIABFUAsOsf0OumA3kjNKhj0x2leYhEqdEabDAHiV/i1GZyQv17LYyWcQoHLAjNjvESrMggZF5yPIiiBEmhT7e3jgv4JoVDfc6c1oRGHEgVuEtesFdYgOEzGEhFTBFx9nVS9oVgSVWwgi23ycd0iS2+y48Rr4BjyDc81arfFnAtTIDRRUIuaK1boQ7VI1KDTxHv8g6Fm049Wge24X/EFQjmg/qEE33KZrGmcxSP4vV2rQphhNo4UQG6/2Gl+lUzVoRXwftxDUCxXcXjJaVD1iLvXFMH/y4Jb3D0CZ0VrnhA/u+ALNUYRkwL4Y6JTZokpGRGca1SjYw4TU8Uov65jP0DCITCs70fNmDGogDeKhGPrBJdY2tQ4h1yyIDPHli6ZcyupNdQDZZkGkFOZ5cTQrj3gk0BN6S9lO/12m3juDWvTW0wZOKObf/Lz4usGn9E+GdWgSv+1Ba7igWCqVw+Tkd2sWnz9G6OVlhy/fE9T/VxBJgTVooO/fAgwAhw82a9ZI7DEAAAAASUVORK5CYII=") no-repeat center center;
    /* menuColor */
    outline: none;
    text-indent: 120px;
    overflow: hidden;
}

    #topsearch button:hover,
    .newsroom-search button:hover {
        background-color: #1a2d44;
    }

#topsearch .form-control:focus,
.newsroom-search .form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

@media (max-width: 440px) {
    #topsearch button,
    #page .newsroom-search button {
        width: 73px;
    }

    #topsearch input,
    #page .newsroom-search input {
        padding: 23px 15px;
    }
}

@media (max-width: 320px) {
    #topsearch button,
    #page .newsroom-search button {
        width: 60px;
    }

    #topsearch input,
    #page .newsroom-search input {
        padding: 23px 5px;
    }
}
/*  1.6 SHARES PANEL
	-------------------------------------------------------------------------- */
#shares-panel {
    position: fixed;
    top: 0;
    left: 0;
    visibility: hidden;
    width: 100vw;
    height: 100vh;
    z-index: 1011;
    transition: visibility 0.4s linear;
    overflow: hidden;
}

    #shares-panel.visible {
        visibility: visible;
        width: 100vw;
        height: 100vh;
    }

    #shares-panel .backdrop {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1001;
        background-color: rgba(0, 6, 13, 0.7);
        opacity: 0;
        transition: opacity 0.2s linear;
    }

    #shares-panel.visible .backdrop {
        opacity: 1;
        transition: opacity 0.2s linear;
    }

    #shares-panel .panel {
        position: absolute;
        top: 0;
        right: -600px;
        border-top: 0;
        margin: 0;
        width: 100%;
        max-width: 600px;
        height: 100vh;
        background-color: #1a2d44;
        z-index: 1002;
        color: #fff;
        transition: right 0.2s ease-in;
        overflow: hidden;
    }

    #shares-panel.visible .panel {
        right: 0;
        transition: right 0.2s ease-out;
        -webkit-box-shadow: -10px 0px 20px 0px rgba(0, 0, 0, 0.15);
        -moz-box-shadow: -10px 0px 20px 0px rgba(0, 0, 0, 0.15);
        box-shadow: -10px 0px 20px 0px rgba(0, 0, 0, 0.15);
    }

    #shares-panel .close {
        position: absolute;
        top: 20px;
        right: 52px;
        width: 30px;
        height: 30px;
        opacity: 1;
        background: transparent url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAO5JREFUeNqslUESgjAMRYPr9l4OR/JS6kZdQ0c8kPuaju2YCU0Tipn5Cwp5fELaDDHGEwAcUSPqDfvCoW6oByD4Er8xoTwKOuUzI8W1LAQCdx3QlDNnRmI5eqMXTp2Gkiu9dTbCq1AO5nCt5qvPp/elhKA4p06rz7TcSDVXoS1wAfCyOKmmW8Dc+TNLhVrABb7EXyyWjjkYtumAiuQ65rV2GNyWmr6I82lPKWp96lkr+q3g1t+39DloTqVEvkPVDcKdeqXPRecSdMshVHXe49RUut7jUjtbPB1NYedoogbPQx6mYx6o/xim96SPAAMAcQNRhIX+K/EAAAAASUVORK5CYII=") no-repeat center center;
    }

        #shares-panel .close:hover {
            opacity: 0.5;
        }

        #shares-panel .close span {
            display: none;
        }

    #shares-panel .wrapper {
        position: absolute;
        top: 60px;
        left: 55px;
        bottom: 55px;
        right: 20px;
        overflow-y: auto;
        overflow-x: hidden;
        padding-right: 20px;
    }

@media (max-width: 400px) {
    #shares-panel .wrapper {
        right: 25px;
        left: 25px;
    }

    #shares-panel .close {
        right: 21px;
    }
}

#shares-panel .date {
    padding: 15px;
    margin-bottom: 10px;
    color: #8d98a4;
    background-color: #2b5689;
}

#shares-panel .price {
    margin-bottom: 20px;
    line-height: 50px;
}

    #shares-panel .price .per-share {
        font-size: 38px;
    }

        #shares-panel .price .per-share:before {
            display: inline-block;
            content: '';
            width: 17px;
            height: 50px;
            margin-right: 2px;
        }

    #shares-panel .price.up .per-share:before {
        background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAAJCAYAAADU6McMAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAMJJREFUeNpijK5dyoAHyADxbCBOBeInuBQx4TFAFIh3ALEHlBYl1RB+IN4OxNpQvjaUz0+sIVxAvAWIjaFe8ITSxlBxLkKGsAHxOiC2AeLXSF7xgPJB4uuh6rAawgzEy4HYHYg/Ql1wFSp3FcoHibsB8QqoehRDGIF4HhAHAfE3IPYF4rNorgTxfaDygVD1jMiGTAbiOCD+BTXoMI4APwI14BdUPUgfAwsQtwFxNhD/BeJIIN7JgB/sgqpbBdX3CSDAAPknKGF/m0n9AAAAAElFTkSuQmCC") no-repeat 0 23px;
    }

    #shares-panel .price.down .per-share:before {
        background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAAJCAYAAADU6McMAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAANVJREFUeNqE0T0KwkAQBeBhIxY2Vulyg5S22mqENFqIYmfvAQzY6gm8QECEFEmh4E9ta5lTWKWxECS+hSeEkLgDX8Lszj7y05iv9xsRWcEHJhCLucYQgQVbhUsAOy4cYGAI6HPO4rlAcWMJITT5JL2agC4knAt5Tn4hOSwY0IIjdEoBuj9xP+F8XgwRfpMZXKENZ3C557LX6zeYcl7KIbre/Gh3sOECHu8210eck7oQXS/w4QEOn8Bh73NfTCG6MhhCyj5ln1UNqz+/8ll4FY99ZX0FGABhKSxh+8haWgAAAABJRU5ErkJggg==") no-repeat 0 22px;
    }

    #shares-panel .price .percent {
        font-size: 30px;
        color: #5b7da5;
    }

#shares-panel .chart {
    margin: 0 -10px 10px -10px;
}

#shares-panel .legal {
    color: #8d98a4;
    margin-bottom: 40px;
}

    #shares-panel .legal p:last-child {
        margin-bottom: 0;
    }

#shares-panel .links {
    max-width: 248px;
}

    #shares-panel .links a {
        display: block;
        padding: 10px 15px 10px 20px;
        color: #fff;
        background: #2b5689 url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAKCAYAAACXDi8zAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAGVJREFUeNpi+P//fxQQzwJiRiBmgGEQsew/BMxAlgQRrEC8Dio5AVkChNmAeAtUsgtZAoTZgXgnVLKRiQEB/kMxCDBiM6oHZhQLEK+FCk5EtnwpNueyAM3bBsTfgDgTyQ4GgAADANhHpUXZO7QYAAAAAElFTkSuQmCC") no-repeat right 10px center;
        /* menuColor */
    }

        #shares-panel .links a:hover {
            color: #fc3;
            background-color: #369;
        }

        #shares-panel .links a + a {
            margin-top: 1px;
        }

/*  1.7 BANNERS
	-------------------------------------------------------------------------- */
.large-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 0;
    overflow: hidden;
}

.hero {
    position: relative;
    overflow: hidden;
    text-align: center;
}

.large-bg img {
    display: block;
    position: relative;
    margin-left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

section.transparent .intro {
    padding: 0 110px;
    background-color: #fff;
    overflow: hidden;
    height: auto;
}

    section.transparent .intro .lead {
        font-size: 22px;
        font-weight: 100;
        margin: 50px 0;
    }

@media (max-width: 767px) {
    section.transparent .intro {
        padding: 0 30px;
    }

        section.transparent .intro .lead {
            margin: 30px 0;
        }
}

@media (max-width: 440px) {
    section.transparent .intro {
        padding: 0 20px;
    }

        section.transparent .intro .lead {
            font-size: 20px;
            margin: 20px 0;
        }
}

@media (max-width: 320px) {
    section.transparent .intro {
        padding: 0 10px;
    }
}
/* intro video screen */
.intro a.video-image {
    width: 620px;
    margin: 50px auto;
}

@media (max-width: 991px) {
    .intro a.video-image {
        width: 100%;
    }
}
/* end intro video screen */
/*  1.8 PAGE MIDDLE
	-------------------------------------------------------------------------- */
#middle {
    position: relative;
}

@media (min-width: 1402px) {
    #middle > section > .container-fluid {
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }

    #middle > section.transparent + section:not(.transparent):not(.white):not(.light-blue):not(.blue):not(.darker-blue):not(.navy):not(.yellow):not(.darker-yellow):not(.light-grey) {
        /* TODO: optimally it would only affect section that's first child is .container-fluid - might need js intervention if it turns out to be problematic. */
        /* TODO: See on homepage if it's not worth limiting all  #middle > section (also ones with colour bg) to 1400px */
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }
}
/*  1.9 PAGE FOOTER
	-------------------------------------------------------------------------- */
footer {
    position: relative;
    padding: 55px 0 50px 0;
    font-size: 16px;
    color: #fff;
    /* background-color: #fff; */
    overflow-x: hidden;
}

    footer::before {
        display: block;
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        bottom: 0;
        background: url("../img/world-map-footer.png") no-repeat right center;
    }

@media (min-width: 992px) {
    footer::before {
        width: calc(50% + 1036px);
    }
}

@media (min-width: 1200px) {
    footer::before {
        width: calc(50% + 1136px);
    }
}

footer > .wrapper {
    position: relative;
    width: 100%;
    overflow-x: hidden;
    min-height: 380px;
    padding: 60px 0 50px 0;
}

    footer > .wrapper::after {
        display: block;
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 100%;
        /* background: url("../img/footer-arrow-bg.png") no-repeat right center, url("../img/footer-blue-bg.png") repeat-y right top; */
        background-color: #162333;
    }

@media (min-width: 992px) {
    footer > .wrapper::after {
        width: calc(50% + 470px);
    }
}

@media (min-width: 1200px) {
    footer > .wrapper::after {
        width: calc(50% + 570px);
    }
}

footer > .wrapper::before {
    position: absolute;
    top: 50%;
    display: block;
    content: '';
    width: 36px;
    height: 44px;
    margin-top: -22px;
    /* background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAsCAYAAAANUxr1AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAddJREFUeNrMmNsuA1EUhqeThji8Am6cUynv4HiFlmdwgcQhztyo44uUaIsbtEp4BWfBFcEDGOGOfzVrJ5NGpaeZvf7kSzNJp/my/+7OXvU0BZY3DcMIAcvQmNvYUurVBNN0DQYNATH5tQrsgCRolCCk0g4uwAaolCBEKQEz4AYMSBBSqQYRcAwaJAipdIBLsA4qJAipGmd5NwYlCNlrjIIEqJcgpNIJrsBasWs0C7iXapzjGgMShOw1xkAc1EkQUukC12AVlEsQUjXOgzvQL0HIXuMuOAK1EoRUuvkRtALKJAipGhe4xj4JQio1YA8c/lejm0IqPbwbQ3/VqEOIUgoWucZeCUL2GvfBQXMwlKrRg0P+jyEj32DIFCLzwTsx7BUgswUmMQa904VOITolDINz3V9qGkingD9dRscKbVM94C3TG7wu1jMCznQ/Oiwe1duykXF6hWg0nwCvudzkhBA9DkbBqe4DmsUjeGu+MsVcoQjvnpdCP6hQoXuu50T3GGTxTOYvpky+KxTlep6d2Jq5CD3wj1tS958NnzxrtTgtk80K0Ww17lQ9uQg98u5JuH0USK/si09uPh0y6StEM9OYm/VkEnrieuISDtdUmQ/nWREylF8BBgCAGVwErY3VAAAAAABJRU5ErkJggg==") no-repeat right center; */
    z-index: 2;
}

@media (max-width: 991px) {
    footer > .wrapper::before {
        display: none;
    }
}

@media (min-width: 992px) {
    footer > .wrapper::before {
        left: calc(50% + 470px);
    }
}

@media (min-width: 1200px) {
    footer > .wrapper::before {
        left: calc(50% + 570px);
    }
}

footer > .wrapper .container {
    position: relative;
    z-index: 1;
}

footer > .wrapper a {
    color: #fff;
}

/* social media links */
.social-media {
    margin: 0 -10px -10px 0;
    font-size: 0;
}

    .social-media a {
        display: inline-block;
        width: 50px;
        height: 50px;
        margin: 0 10px 10px 0;
        overflow: hidden;
        text-indent: 60px;
        line-height: 50px;
        background-color: #369;
        background-repeat: no-repeat;
        background-position: 50% 50%;
        transition: background-color 0.6s ease;
    }

@media (max-width: 340px) {
    .social-media a {
        width: 40px;
        height: 40px;
    }
}

.social-media .linkedin {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAVtJREFUeNrsl7FKA0EQhhMTNEIQLCyUNKklnSjY2CkW+gZaxN7KlzgsfQDFWl9ACxUsLMRCLCysBEFRCEYQBPH8DiyOYxePheju3T/wFTeTg/vYmexuNY7jShFiqFKQkIhEJCIRiUhEIhIpmMgKXMALnMDsf4pUHU+/03AFw6lcD9rwGtKKLGUkkhiH+dBa69GSfw5N5BDOM7k9uAxtRpKowzJMwS2chTjs3kXd8b0J6BryUY76CGzAIrSg/9OS+3DjbJKsiAOd2By/1Vtwbal9wpbj9wxsZ3+z5A+gY6nVYBvWfDqifFnycznejQx7lJdnrV1YhXXLTEzCwl8Nu2vswGbq+QjuoJn53Qwc+7wiUeb5CU4t/4pet9aDIXdvyDVCvI/0dbGSSAlFmkURqam1yi7ierFKWmfMkO/lrKdj1LABfsB7KW+ImhGJSEQiEpGIRCQikcHFtwADAD6w4Dvvo0vtAAAAAElFTkSuQmCC");
}

.social-media .facebook {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAS5JREFUeNpi/P//P8NwAEwMwwSMemTUI6MeGSEeYRkk7hAAYhMglgBiLqjYTyD+BsVvgPgSEH/HaQKoHhkgzATEkUB8FIj//CcMbPCZN1AxIgzEy4HYdSgnLX4gPgzEmkM9s8+jticGwiP2QBw0HIrfzOFQ/IICzYMIddeB+AIQf0YTfzFYPKIIzej4QCoQzxnsSUuagPxhcj1Bb4/wEpA/O1zaWj9GG42jHhn1CO0AIw2Gg44AsRYWcVYg5iGQ2XH1N0D9ETV6V4h8QCxIhj4OKMYGbg+XpPVguHjk3miMjHqENuDuQPRH1gDxcSzicgT6I6A+yCkcco8I2krH4R9vAsM97ZSYP9pEGfXIqEdGPTLqkVGPjHpk1COjHhn1yKhHRj0y6pFRj0AAQIABANnxYyMXYlXrAAAAAElFTkSuQmCC");
}

.social-media .twitter {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAl1JREFUeNrs2E1IFkEcx/FH8QlFwRK9SRlEpondSqIXLbwUJVL3wksKHjzpwUt67OQlgi51C+qQlkKX8JB6CooskdIILAKpyBRfUFu/AyMs+qj7n9lZ4WEGPofneXaf3d/OMP+ZzQmCIJUNLTeVJc0H8UF8EB/EB/FBfJBsCpK3D9csRxOO689fMICZDMemsRrpX9WiUaBSeHxYGvewEmxvq+jDAX1sOXrRHvX/JTeSi29oMwiRh1fB3u2t9h9fUeQiSI2+2Do6hEE6A1n7gSrUoTbuIFe3XOwB8iMOqd/CIKpXZvE6NNxiC3IpwwU/on6P8xoCszaK4qj3J5l+P2B9y3cnMYx+nN3hvKMGM5uaxRox56KO/MLgDr+p6XQU47iL8yjUvy0aBBmWnpcj3LNX4B0ORjh2Dd+xjBPCIHfw0FVlP4M63MLfiMW2wiCEarMuK3sBnugnvea4+k9LT5AMrQL9pIoch1jAIenDkgytJdxPYC02YtLj0tVvD947DvI8iWW86pXLep53NayeJrUf+YdutOBzzEEeRZwRrevIZlPD61TMIVQBPIafSe4QOzIsV2xbj2kImx5R7bauvukYQozhgs3DsdmzP8ZpvLQskGoZc9O6hy22rmFlGDJYqqs9R3Uc92D7FkWd34w3uCI8d0oPp4kk36IUh4ZhGapwETdw2OC6z9CKP7FNFRG7rhDdmA/s2idcj2k4G291lVJ0YVxw80t4gWv6TUzKBZvpV+01zqEWR1ASqvyqOk/qTdiY4S4xsTri3/36ID6ID+KD+CA+iA/ig+zeNgQYAC6lfmy0H6mqAAAAAElFTkSuQmCC");
}

.social-media .weibo {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAr5JREFUeNrsmUloFEEUhtMxTExUiMYgg4KnuOAScMMIirgjKt4UlCQQUBFDToK4XxSDJwWJ6EkRcvGiiKABURQEdRQ3gghB1IMQAkFxGRnSfgUvUJZdM3amp1uHevDRPbV1/V1V71X1eL7vV5SDVVaUiTkhTogT4oQ4IU6IE1JOQqoSem49tMIgPIMXRbeoNo0JcMD/3fqgFbzRtukltPtVI7ITZsJqmCHpV6ENvv4vI2KyAT7I6PTCmLBtlLJzVXnymqAbtmrTKQ39IqYjaSHT4Sy8g2GZ+40B5Q5r6+M+TJH0Zqk3ANVJCKmBE5D1/7QzltFqEaHKMpCSvF5J2xymD1HEEbVgH8FBSAXkVwek5eAyLIQMLIB2ybsh1yVxBsRl8BDm5inzEWZBh3T+AdyBFvgG+6Xcdrm+leu0uLzWYhjyC9tgnrx5stivwFFpdwJch01xxJEGeA7pIkd0PdxOcoty0SLipwjsgwGog6mwCCYHlO+PLMSOYkptDJgiT2CHeC9bvZVw06jXBXVReM6wFTzp9Ih9hz1QGaKNfRIrRkzFjC1xC1mudSAH64z8pXBKYsqKPO10GSOTtQTOkgk5oj38ZIHOKTtmaadeXoRup+MU0q09WH+DzRb3qt50raUt0y33FCMkbEDMavfvtfs5eQLucEC68mCTjLTXcR51M9r9fO3+rrhe087Dj4D0TuO3KnMpTvebkp2tsmtG3lp4KnNflTluOVesCdhcdsbttRSrtI5cgLF/WU+56F3isnU7l0Qc0YPbJ+nIG2iHBktZlb4bXhoCcuIFvSiEFHNmnwiHYC/UyKJ+JU5gCMZDI8wOWIv3ZNf7OKodShQfH9LyIWEbNFn2b754pVvQYziNf0aIbuPkbKLcay18ls2jOmN8KeVnGc/9GeqEOCFOiBPihDghTogT4oQUsl8CDAAlWvq4QoCZbwAAAABJRU5ErkJggg==");
}

.social-media .email {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAjRJREFUeNrs2c1LFHEcx3HXghQ0KDykKGKl4EWQTh582JMKHrLo2CGNBK9dlMSLRIH4D4iIJyUSREHsAaOsiE6ayB6CjCDU9OIS4tPq9B78hcu44zzszOwo3y+8LjO/nd983O/8dmaMaJqWdR4qO+uclASRIBJEgkgQCSJBJIi/VYJ8RM5qkHqMoRZX0XKWguSgHfOYwSgW8RlLTg50MYPt04mHKMAmGpHAB/zCT0dH1J9HAlSPl9jXjmsVVWjBltrW4/TYQZx8Dtoxr52sH7iO+9hL2l4ZpiAleIYNLXUt4Boe4zBpe8zNfH4EqEvRPsaawxU8T7GvL5NB9PZpM2kfY00hD8Mm+6szEaTYon2MNYJ8TJrsX3Z7Lm4D1NpoH2MNqHaaO2VMfxBB9PZ5YLN9kku/kLtQiG8WY2uCCNKALw5DJNTSe1O1zWn1GxG3QZzcorxHDaJ4Y2P8Lu5hAZ9QZjF+Qv99dn2vkMaFrq8uL3CQ4q8bR1SJ2/z2ouksPF4sveUYxI46oT+4hbtJ26xqHRcyHeS/IjxFBR6p68NuDaU7v5d3vyt4gksoxxYu2/zseBifEHvxGqXoxprF+DjehTFIHd5iFsu4gQ58Nxk/hb20Z/XhpvGjof9j6rYkG3fw1bC/1Yt5/Q6ir1rNJg9Y0/iL3LAH2UaTjZXOk3n9evmwg1a8srHSeVJ+vHzYxm21cgVWER/+GVrm+A1ISIPIK1MJIkEkiASRIBJEgkiQo/onwABCw7x43LyqWwAAAABJRU5ErkJggg==");
}

.social-media .instagram {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAAXNSR0IArs4c6QAAAwNJREFUaAXtmT1vE0EQhmOspKB1gZAlKrq0CCKFBkVCskSZiooaqhT+CW5xEdJT5RdQIRCKSElLBRVRhKhRUkCCeV6ygyZ3e+e7sIdi2JFe7dzsfOzMfvhuvbSUKVcgVyBXIFcgVyBXYKl30RrMZrMhtg/BA3ATXAN90IZOUf4CPoIXYLfX6x3Sdk8ksAIm4BikJvmU75VOMyHAALwFXZNiDNok03hp4VhVeg3uugDH8M/BG/AZaKm0IS3F6+AeeASuAqN9mA2W2jcTJGlJRFPuaZ8H7Y0kJF9APj1Nkjg3J3geAr8nFPCK9adq8dkHPhnF1KGShnA2BkZHMElmAj8jcBAw0mjlGyiG0ThNFmfO98wr7U4qx/hSEkYH5hfBjglp90xe1zZdHn4GtLFrieCrYAreg68B4iVbrTU+6/QxfOwGpjUqBD8BRutVqigsg21wasqRVr6kI93S0pJv5OvA6KQqXmu5eQztWswBfRrYq4Ju3aN0lyt8rXnDmE5R1nRpFe1iz08RbrgOvXY8AXcCxEtmJF3Z/D3y1YEvzQgy7Qm/nHZ59j9uvwYrGVCfkWxKewZZ6xlpVA2LGtpYItrERh9gSklYIPUB6RhNrc9aOlonkmpp3bdB0E55rdCrS5RCnx+8t43aNBGmSuSGC/bO8VWs1/G2Vfpz5akSmRuoa4VUiXxyA73l+CrW63jbKv258lSJvHSRttistZsd3S2n722duAPWjpfQxk6tix6/+pW/PMevaseA9NrhSUfsY3A7QLw/dnmcbcfqjrz18RvzU5IpoqPSjMiA/oV4RfGfsP1Spgj4ffhOo2+KZ+AHqCL1SWcUbGJ6PoaPHdNtLqPah25GNudZovtHr/HYb7p46a6HcNrJh1VVQYjX+sOqytc5OY7HrkJH8Ok+ds5F6v5Td8jgF//yQUUjkYmbFbG67Ug2M/IVfNL8psbXQf/fBV2YlQG10nVm16QYra5MC1tt/iMBLuUlduOlVUyRhBb7b4ViQvk5VyBXIFcgVyBX4F+owE9SBMHQeY7auAAAAABJRU5ErkJggg==");
}

.social-media .youtube {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAAXNSR0IArs4c6QAAAchJREFUaAXtmLtKA0EUhrMSUATFxsZCZRErK9/B91CLBOyUCPENLO0sLGwtfANfwz4StLGwCYIXdP0OZFMsu8wJe2aDegZ+NjszOf9lZi9Jq+XNE/AEPAFPwBPwBDwBT8AT8AQqEsiyLAVXYAA+gFWTWgMgtdMKeptuCDpgBGI34ejYqC5UkcKx1ZfUV5tJCnpLTyFYZ+AeLJVOiNc5ovROkiTDEMVcaMJ4/Ixj0yaEWjiFO9i0RvaCleJNUHFrt9YbOueVWl+Z9w2sVvCdrbUQ4tauiNaE8N2ATXAOxFTdpuLWGplGTEaCL0D2dgougKxo1BbDyEQwZp7BMR1b4BJ8TgaNP0Q1kmvFzBM44nwbXIOvfMzq2IiRXCxmHsAh57sgy/stjo0a4cHaBvsIvwWqO6bWZFs7sc48xMud5wD0wUadWlXfjWoEA4sQy/vSKVirEmHRH8NIgoFlxMnFfQJWLYSGaqj2KcKmebLLi57clVZC5Mpx0yf7o5JUpsmriZUJqafi1t617qTijJqKW7u1/sbvER5iQ1ajN4MV6Y25bam56Lugqd/sXVv1hWoY+f3/ohQ8+akn4Al4Ap6AJ+AJeAKewD9J4AdAa2B0KXVHewAAAABJRU5ErkJggg==");
}

.social-media a:hover {
    background-color: #1a2d44;
    transition: background-color 0.2s ease;
}

/* end social media links */
/* navs */
@media (max-width: 767px) {
    footer .wrapper nav {
        padding-top: 40px;
    }
}

footer nav h6 {
    font-weight: bold;
}

footer nav a {
    display: block;
    padding: 4px 0;
}

    footer nav a:hover {
        color: #fc3;
        text-decoration: underline;
    }

footer nav.legal {
    padding: 40px 0 0 0;
    /*background: url("../img/engineering-footer.png") no-repeat right bottom 5px;*/
}

    footer nav.legal.aerospace {
        padding: 40px 0 0 0;
        background: url("../img/making-footer.png") no-repeat right bottom 5px;
    }

@media (min-width: 992px) and (max-width: 1199px) {
    footer nav.legal {
        background-size: 260px auto;
    }
}

@media (max-width: 991px) {
    footer nav.legal {
        margin-right: -10px;
        padding: 40px 0 30px 0;
        text-align: center;
        background-position: center bottom;
    }
}

@media (max-width: 440px) {
    footer nav.legal {
        background-size: 80%;
    }
}

footer nav.legal a {
    display: inline-block;
    margin-right: 10px;
    color: #333;
    display: inline-block;
}

    footer nav.legal a:hover {
        color: #369;
    }

footer .excite {
    margin: 10px 0;
    color: #333;
}

    footer .excite p {
        margin: 0;
    }

@media (max-width: 991px) {
    footer .excite {
        margin: 20px 0;
        text-align: center;
    }
}

.excite a {
	color: #333;
	text-decoration: underline;
}
.excite a:hover {
	text-decoration: none;
}

/* end navs */
/*  1.10 COMMON BLOCKS
	-------------------------------------------------------------------------- */
/* sections */
#middle > section {
    position: relative;
    padding: 50px 0 37px 0;
    background-color: #fff;
    z-index: 2;
}

@media (min-width: 1030px) {
    #middle > section {
        margin-left: 10px;
        margin-right: 10px;
    }
}

#middle > section.no-pad-top {
    padding-top: 0;
}

#middle > section.no-pad-bottom {
    padding-bottom: 0;
}

#middle > section.no-pad {
    padding-top: 0;
    padding-bottom: 0;
}

#middle > section.transparent {
    background-color: transparent;
}

#middle > section.light-blue {
    background-color: #369;
}

#middle > section.blue {
    background-color: #2b5689;
    color: #fff;
}

#middle > section.darker-blue {
    background-color: #204066;
    color: #fff;
}

#middle > section.navy {
    background-color: #1a2d44;
    color: #fff;
}

    #middle > section.blue .tabbed-content,
    #middle > section.darker-blue .tabbed-content,
    #middle > section.navy .tabbed-content {
        color: #333;
    }

#middle > section.yellow {
    background-color: #fc3;
}

#middle > section.darker-yellow {
    background-color: #fbba00;
}

#middle > section.light-grey {
    background-color: #f3f3ee;
}

#middle > section.green {
    background-color: #95C11F;
}

#middle > section.yellow {
    background-color: #fbba00;
}

#middle > section:not(.no-pad):not(.no-pad-bottom):not(.transparent):not(.light-blue):not(.blue):not(.darker-blue):not(.navy):not(.yellow):not(.darker-yellow):not(.light-grey) + section:not(.no-pad):not(.no-pad-top):not(.transparent):not(.light-blue):not(.blue):not(.darker-blue):not(.navy):not(.yellow):not(.darker-yellow):not(.light-grey):not(.yellowstrip-top) {
    border-top: 1px solid #f3f3ee;
}

/* section backgrounds */
#middle > section.bg-left-top,
#middle > section.bg-left-center,
#middle > section.bg-left-bottom,
#middle > section.bg-right-top,
#middle > section.bg-right-center,
#middle > section.bg-right-bottom {
    background-repeat: no-repeat;
}

#middle > section.bg-left-top {
    background-position: left top;
    background-position: calc(50% - 800px) top;
}

#middle > section.bg-left-center {
    background-position: left center;
    background-position: calc(50% - 800px) center;
}

#middle > section.bg-left-bottom {
    background-position: left bottom;
    background-position: calc(50% - 800px) bottom;
}

#middle > section.bg-right-top {
    background-position: right top;
    background-position: calc(50% + 800px) top;
}

#middle > section.bg-right-center {
    background-position: right center;
    background-position: calc(50% + 800px) center;
}

#middle > section.bg-right-bottom {
    background-position: right bottom;
    background-position: calc(50% + 800px) bottom;
}

/* end section backgrounds */
#middle > section > h2,
#middle > section > h3,
#middle > section > .lead,
#middle > section > .trapezoid > h2 {
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 544px) {
    #middle > section > h2,
    #middle > section > h3,
    #middle > section > .lead,
    #middle > section > .trapezoid > h2 {
        max-width: 576px;
    }
}

@media (min-width: 768px) {
    #middle > section > h2,
    #middle > section > h3,
    #middle > section > .lead,
    #middle > section > .trapezoid > h2 {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    #middle > section > h2,
    #middle > section > h3,
    #middle > section > .lead,
    #middle > section > .trapezoid > h2 {
        max-width: 940px;
    }
}

@media (min-width: 1200px) {
    #middle > section > h2,
    #middle > section > h3,
    #middle > section > .lead,
    #middle > section > .trapezoid > h2 {
        max-width: 1140px;
    }
}
/* trapezoid titles */
#middle > section > .trapezoid {
    position: relative;
    overflow: hidden;
    margin-top: -50px;
    padding-bottom: 200px;
}

    #middle > section > .trapezoid::before {
        box-sizing: content-box;
        display: block;
        content: '';
        border-top: 180px solid red;
        border-left: 270px solid transparent;
        border-right: 270px solid transparent;
        height: 0;
        width: 290px;
        position: absolute;
        bottom: 200px;
        margin-left: -415px;
        left: 50%;
        z-index: 1;
    }

    #middle > section > .trapezoid.dark-yellow::before {
        border-top-color: #fbba00;
    }

    #middle > section > .trapezoid.blue::before {
        border-top-color: #2b5689;
    }

    #middle > section > .trapezoid.navy::before {
        border-top-color: #1a2d44;
    }

    #middle > section > .trapezoid > h2 {
        color: #fff;
        position: relative;
        z-index: 2;
        padding-bottom: 78px;
        padding-top: 20px;
        margin: 0 auto 0 auto;
    }

    #middle > section > .trapezoid > img {
        width: 238px;
        height: 238px;
        background-color: #fff;
        border-radius: 300px;
        border: 20px solid #fff;
        display: block;
        z-index: 3;
        position: absolute;
        left: 50%;
        margin-left: -119px;
        bottom: 15px;
    }

#middle > section.light-grey > .trapezoid > img {
    background-color: #f3f3ee;
    border-color: #f3f3ee;
}

#middle > section.navy > .trapezoid > img {
    background-color: #1a2d44;
    border-color: #1a2d44;
}

/* end sections */
.wrapper.white {
    background-color: #fff;
}

    .wrapper.white::after {
        content: "";
        display: table;
        clear: both;
    }

    .wrapper.white.p-1 {
        padding: 30px;
    }

.mt-1, .my-1 {
    margin-top: 30px;
}

.mb-1, .my-1 {
    margin-bottom: 30px;
}

.mx-auto {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Standard table */
article table,
table.stylized {
    width: 100%;
    border-bottom: 1px solid #f3f3ee;
    margin: 0 0 30px 0;
    font-weight: 300;
}

    article table.equal-columns,
    table.equal-columns {
        table-layout: fixed;
    }

    article table tr,
    table.stylized tr {
        background-color: #fff;
    }

    article table tbody tr:nth-child(even),
    table.stylized tbody tr:nth-child(even) {
        background: #f3f3ee;
    }

    article table thead tr,
    table.stylized thead tr {
        background: transparent;
    }

    article table th,
    table.stylized th {
        padding: 25px 20px;
        font-weight: 300;
        color: #fff;
        text-align: left;
        vertical-align: top;
        background-color: #1a2d44;
    }

        article table th[scope="colgroup"],
        table.stylized th[scope="colgroup"] {
            text-align: center;
        }

    article table thead td,
    table.stylized thead td {
        background: transparent;
        color: #333;
    }

    article table thead tr th:last-of-type:not([scope="colgroup"]),
    table.stylized thead tr th:last-of-type:not([scope="colgroup"]) {
        /*text-align:right;*/
    }

    article table thead tr th:only-child:not([scope="colgroup"]),
    table.stylized thead tr th:only-child:not([scope="colgroup"]) {
        text-align: center;
    }

    article table tr th[scope="row"],
    table.stylized tr th[scope="row"] {
        padding: 15px 20px;
        background-color: #204066;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-align: right;
    }

    article table.compact tbody tr th,
    table.stylized.compact tbody tr th,
    article table.compact tr th[scope="row"],
    table.stylized.compact tr th[scope="row"] {
        padding: 10px 20px;
    }

    article table td,
    table.stylized td {
        padding: 15px 20px;
        color: #333;
        text-align: left;
        vertical-align: top;
    }

    article table.compact td,
    table.stylized.compact td {
        padding: 10px 20px;
    }

    article table tr td:last-of-type,
    table.stylized tr td:last-of-type {
        /*text-align:right;*/
    }

    article table th.text-left,
    article table td.text-left,
    table.stylized th.text-left,
    table.stylized td.text-left {
        text-align: left !important;
    }

    article table th.text-center,
    article table td.text-center,
    table.stylized th.text-center,
    table.stylized td.text-center {
        text-align: center !important;
    }

    article table th.text-right,
    article table td.text-right,
    table.stylized th.text-right,
    table.stylized td.text-right {
        text-align: right !important;
    }

/* end Standard table */
/* card */
.card {
    border: 0;
    border-radius: 0;
    text-decoration: none;
}

    /* end card */
    /* card type-1 */
    .card.type-1 {
        display: block;
        margin-bottom: 20px;
    }

        .card.type-1 .header {
            position: relative;
            background-color: #1a2d44;
        }

            .card.type-1 .header > img {
                display: block;
                width: 100%;
                height: auto;
            }

        .card.type-1 .meta {
            position: absolute;
            right: 0;
            bottom: 0;
            left: 0;
            z-index: 1;
            font-size: 0;
        }

            .card.type-1 .meta span {
                display: inline-block;
                padding: 5px 15px;
                font-size: 13px;
                text-transform: uppercase;
            }

            .card.type-1 .meta .date-time {
                color: #fff;
                background-color: #2b5689;
            }

            .card.type-1 .meta .cat {
                color: #333;
                background-color: #fff;
            }

            .card.type-1 .meta .yellow-cat {
                background-color: #fc3;
            }

        .card.type-1 .main {
            background-color: #1a2d44;
        }

        .card.type-1 .cnt {
            padding: 15px 20px;
            font-size: 18px;
            color: #fff;
        }

            .card.type-1 .cnt p {
                margin: 0;
            }

        .card.type-1:hover .header > img {
            opacity: 0.9;
        }

        /* end card type-1 */
        /* card type-1 variant-b */
        .card.type-1.variant-b .meta {
            position: relative;
        }

    /* end card type-1 variant-b */
    /* card type-2 */
    .card.type-2 {
        position: relative;
        display: block;
        margin-bottom: 20px;
        background-color: #1a2d44;
    }

        .card.type-2 > img {
            display: block;
            width: 100%;
            height: auto;
            border-bottom-style: solid;
            border-bottom-color: transparent;
            border-bottom-width: 100px;
        }

        .card.type-2 .meta {
            position: absolute;
            right: 0;
            top: 0;
            left: 0;
            z-index: 1;
            font-size: 0;
        }

            .card.type-2 .meta span {
                display: inline-block;
                padding: 5px 15px;
                font-size: 13px;
                text-transform: uppercase;
            }

            .card.type-2 .meta .cat {
                color: #222;
                background-color: #fc3;
            }

        .card.type-2 .main {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: #fff;
            transition: background-color 0.4s linear;
            z-index: 2;
        }

        .card.type-2:hover .main {
            background-color: #1a2d44;
            transition: background-color 0.1s linear;
        }

        .card.type-2 .cnt {
            padding: 0 20px;
            font-size: 16px;
            color: #fff;
        }

            .card.type-2 .cnt .equalize {
                font-size: 18px;
                height: 10px;
            }

        .card.type-2:hover .cnt .equalize {
            /*min-height:0 !important;
  height:auto;*/
        }

        .card.type-2 .cnt .title {
            padding-top: 15px;
            padding-bottom: 15px;
            font-size: 22px;
            color: #333;
        }

        .card.type-2:hover .cnt .title {
            color: #fff;
        }

        .card.type-2 .cnt .body {
            overflow: hidden;
            max-height: 0;
            transition: max-height 0.3s ease-out;
        }

            .card.type-2 .cnt .body span.more {
                display: block;
                margin-top: 30px;
                padding-bottom: 15px;
            }

                .card.type-2 .cnt .body span.more::after {
                    display: inline-block;
                    content: '';
                    height: 16px;
                    width: 10px;
                    margin-left: 5px;
                }

        .card.type-2 .cnt p {
            margin: 0;
        }

        .card.type-2::before {
            opacity: 0;
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #1a2d44;
            transition: opacity 0.2s linear;
        }

        .card.type-2:hover::before {
            opacity: 0.5;
        }

        .card.type-2:hover .cnt .body {
            max-height: 600px;
            transition: max-height 0.3s ease-in;
        }

/* end card type-2 */
/* card type-2 variant-b */
@media (min-width: 992px) {
    .card.expanded {
        width: calc(50vw - 53px);
        max-width: 653px;
    }

    div[class^='col']:nth-child(odd) > .card.expanded,
    div[class*=' col']:nth-child(odd) > .card.expanded {
        float: right;
    }
}

.card.type-2.variant-b .main {
    background-color: #1a2d44;
}

.row.no-gutters div[class^='col']:nth-child(even) > .card.type-2.variant-b .main,
.row.no-gutters div[class*=' col']:nth-child(even) > .card.type-2.variant-b .main {
    background-color: #2b5689;
}

.carousel-type-2 div[class^='col']:nth-child(even) > .card.type-2.variant-b .main,
.carousel-type-2 div[class*=' col']:nth-child(even) > .card.type-2.variant-b .main {
    background-color: #1a2d44;
}

.card.type-2.variant-b .main::before {
    display: block;
    content: '';
    position: absolute;
    top: -9px;
    left: 50%;
    width: 0;
    height: 0;
    border-width: 0 8px 9px 8px;
    border-style: solid;
    border-color: transparent transparent #1a2d44 transparent;
    margin-left: -8px;
}

.row.no-gutters div[class^='col']:nth-child(even) > .card.type-2.variant-b .main::before,
.row.no-gutters div[class*=' col']:nth-child(even) > .card.type-2.variant-b .main::before {
    border-bottom-color: #2b5689;
}

.card.type-2.variant-b .cnt .title {
    color: #fff;
}

.card.type-2.variant-b:hover .cnt .title {
    color: #fff;
}

/* end card type-2 variant-b */
/* card type-2 variant-c */
.card.type-2.variant-c .main {
    background-color: #1a2d44;
    text-align: center;
}

    .card.type-2.variant-c .main::before {
        display: block;
        content: '';
        position: absolute;
        top: -9px;
        left: 50%;
        width: 0;
        height: 0;
        border-width: 0 8px 9px 8px;
        border-style: solid;
        border-color: transparent transparent #1a2d44 transparent;
        margin-left: -8px;
    }

.card.type-2.variant-c .cnt .title {
    font-size: 18px;
    line-height: 26px;
    color: #fff;
}

.card.type-2.variant-c:hover .cnt .title {
    color: #fff;
}

/* end card type-2 variant-c */
/* card type-2 variant-d */
.card.type-2.variant-d {
    margin-bottom: 0;
}

    .card.type-2.variant-d .main {
        background-color: #29456c;
        text-align: center;
    }

        .card.type-2.variant-d .main::before {
            display: block;
            content: '';
            position: absolute;
            top: -9px;
            left: 50%;
            width: 0;
            height: 0;
            border-width: 0 8px 9px 8px;
            border-style: solid;
            border-color: transparent transparent #29456c transparent;
            margin-left: -8px;
        }

    .card.type-2.variant-d .cnt .title {
        font-size: 18px;
        line-height: 26px;
        color: #fff;
    }

    .card.type-2.variant-d:hover .cnt .title {
        color: #fff;
    }

/* end card type-2 variant-d */
/* card type-2 variant-e */
.card.type-2.variant-e .main {
    background-color: #1a2d44;
}

.card.type-2.variant-e .cnt .title {
    text-align: center;
    color: #fff;
}

/* end card type-2 variant-e */
/* card type-3 */
.card.type-3 {
    color: #333;
    margin-bottom: 30px;
}

a.card.type-3 {
    display: block;
    text-decoration: none;
    color: #333;
}

.card.type-3 .image {
    position: relative;
}

    .card.type-3 .image img {
        display: block;
        width: 100%;
        height: auto;
    }

    .card.type-3 .image.icon {
        position: relative;
        height: 60px;
    }

        .card.type-3 .image.icon img {
            display: block;
            width: initial;
            max-width: 100%;
            height: auto;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

.card.type-3 .main {
    padding: 30px;
}

.card.type-3.variant-b .main .cnt {
    text-align: center;
}

.card.type-3 .main .cnt .title {
    font-size: 20px;
    color: #2b5689;
    padding-bottom: 20px;
    font-weight: 400;
}

.card.type-3 .main .cnt .body {
    font-size: 18px;
    color: #222;
}

/* end card type-3*/
/* card type-4 */
.card.type-4 {
    color: #333;
    margin-bottom: 30px;
}

a.card.type-4 {
    display: block;
    text-decoration: none;
    color: #333;
}

.card.type-4:not(.variant-c) .title {
    background-color: #1a2d44;
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
}

.card.type-4.variant-b .title {
    background-color: #fc3;
    color: #222;
    font-size: 13px;
}

.card.type-4 .title span {
    display: block;
    text-align: center;
    text-transform: uppercase;
    padding: 10px;
}

.card.type-4.variant-b .title span {
    text-align: left;
    padding: 10px;
}

.card.type-4 .image {
    position: relative;
}

    .card.type-4 .image img {
        position: relative;
        display: block;
        width: 100%;
        height: auto;
    }

    .card.type-4 .image span {
        display: inline-block;
        position: absolute;
        bottom: 0;
        left: 0;
        color: #fff;
        text-transform: uppercase;
        background-color: #2b5689;
        padding: 10px;
        font-size: 14px;
    }

.card.type-4 .main {
    padding: 10px;
    border: 1px solid #f3f3ee;
    border-top: 0;
}

.card.type-4.variant-b .main .body .position {
    min-height: 190px;
    font-size: 24px;
    color: #2b5689;
}

.card.type-4.variant-b .main .body .location {
    min-height: 60px;
    padding: 2px 0 0 30px;
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAdCAYAAACqhkzFAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAdlJREFUeNqslU0oRFEUx9+8xmZsfSwkUyzYoCwkixE7SlEWFkixsSGlkB1SmhJlSdmNHZGFSLYzUjNESsnCx8JXjQxmxvgfnavXc++dNzNO/Zo395zzf/fj3PNckUjEkFge6AQdoAaU8PgNCIItsAni9kS3RKwVLAOvxFfJ9IJrMMzCv2Zanl1gCmwrxOxWBjbAPOf+meEMmDQytzGQELlihk1gwsjexkGLVdBvnXYW5mKNnyU3gDpNcBKEQAzUA48irhY00gzbNGKXoJpf2swHsa+JbyVBnyagG5xZ/j+ALvCsiPeRYKnCSXV2JBknsT1FjpcEixXOuGbmCcV4galxloMqybhHlIjEUiR4rymFgOUeC7E1UKTIuaWyoe5QoQigE77gk33jmRVqtiJMgjvcWVSWD9odFvguLXkdvBq5G2kETH7w/4PgAngRd3kOnOQgdgpmrc3hE/Twb6ZG9doHPuwNNgymsxCknGNZxxZLD2YgFuIcQyWY5O9FzIHYOy81oRM0uJCddG9q+ef2QVMRvAQONGKHYFHmUAmmQD+ISnxR9n1lIij64YhkfBRcqZLMNPu0yt9pYXTvV3QJpoPNHwSP4AkM8HYoze1AkPrlEL/8Ll3wtwADAEehXVRLjPNBAAAAAElFTkSuQmCC") no-repeat 0 0;
}

.card.type-4.variant-b .main .body span.more {
    color: #2b5689;
}

.card.type-4.variant-c a.image {
    display: block;
    background-color: #1a2d44;
}

    .card.type-4.variant-c a.image:hover img {
        opacity: 0.9;
    }

.card.type-4.variant-c .image .meta {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    font-size: 0;
}

    .card.type-4.variant-c .image .meta span {
        display: inline-block;
        position: relative;
        bottom: auto;
        left: auto;
        color: #fff;
        text-transform: uppercase;
        background-color: #2b5689;
        padding: 5px 15px;
        font-size: 14px;
    }

.card.type-4.variant-c .main .body .title,
.card.type-4.variant-c .main .body .author {
    display: block;
}

.card.type-4.variant-c .main .body .title {
    color: #333;
}

    .card.type-4.variant-c .main .body .title:hover {
        color: #369;
    }

    .card.type-4.variant-c .main .body .title + .author {
        margin-top: 30px;
    }

.card.type-4.variant-c .main .body .author span {
    display: inline-block;
    vertical-align: middle;
}

.card.type-4.variant-c .main .body .author .photo {
    overflow: hidden;
    border-radius: 50%;
    width: 54px;
    height: 54px;
}

    .card.type-4.variant-c .main .body .author .photo img {
        width: 100%;
        height: auto;
    }

    .card.type-4.variant-c .main .body .author .photo + .by {
        margin-left: 10px;
    }

.card.type-4.variant-c .main .body .author .by {
    color: #333;
}

/* end card type-4 */
/* end card type-5 */
.card.type-5 {
    position: relative;
    display: block;
    margin-bottom: 20px;
    background-color: #1a2d44;
    border: 1px solid #e6e4e4;
}

    .card.type-5 > img {
        display: block;
        width: 100%;
        height: auto;
        border-bottom-style: solid;
        border-bottom-color: transparent;
        border-bottom-width: 100px;
    }

    .card.type-5 .main {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: #fff;
        transition: background-color 0.4s linear;
        z-index: 2;
    }

    .card.type-5:hover .main {
        background-color: #fff;
        transition: background-color 0.1s linear;
    }

    .card.type-5 .cnt {
        padding: 0;
        font-size: 16px;
        color: #fff;
    }

        .card.type-5 .cnt .equalize {
            font-size: 18px;
            height: 10px;
        }

    .card.type-5:hover .cnt .equalize {
        /*min-height:0 !important;
  height:auto;*/
    }

    .card.type-5 .cnt .title {
        padding-top: 15px;
        padding-bottom: 15px;
        font-size: 22px;
        color: #fff;
        background-color: #1d2d44;
        text-align: center;
    }

        .card.type-5 .cnt .title .company {
            display: block;
            text-align: center;
        }

    .card.type-5:hover .cnt .title {
        color: #fff;
    }

    .card.type-5 .cnt .body {
        padding: 0 20px;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.3s ease-out;
        color: #333;
        background-color: #fff;
    }

    .card.type-5 .cnt p {
        margin: 10px 0;
    }

        .card.type-5 .cnt p:last-child {
            margin-bottom: 20px;
        }

    .card.type-5::before {
        opacity: 0;
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #1a2d44;
        transition: opacity 0.2s linear;
    }

    .card.type-5:hover::before {
        opacity: 0.5;
    }

    .card.type-5:hover .cnt .body {
        max-height: 600px;
        transition: max-height 0.3s ease-in;
    }

.color-graded > div:nth-of-type(2) .card.type-5::before,
.color-graded > div:nth-of-type(2) .card.type-5 .cnt .title {
    background: #29456c;
}

.color-graded > div:nth-of-type(3) .card.type-5::before,
.color-graded > div:nth-of-type(3) .card.type-5 .cnt .title {
    background: #335688;
}

/* end card type-5 */
/* card type-6 */
.card.type-6 {
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
}

    .card.type-6 .title {
        position: relative;
        background-color: rgba(255, 204, 51, 0.9);
        z-index: 3;
    }

    .card.type-6 .trigger {
        display: none;
        position: absolute;
        bottom: -30px;
        left: calc(50% - 30px);
        background: 0;
        border: solid;
        padding: 0;
        width: 0;
        height: 0;
        border-width: 30px 30px 0 30px;
        border-color: rgba(255, 204, 51, 0.9) transparent transparent transparent;
        font-size: 0;
        line-height: 0;
    }

        .card.type-6 .trigger::before, .card.type-6 .trigger::after {
            position: absolute;
            content: '';
            width: 14px;
            height: 2px;
            background: #fff;
            top: -20px;
            left: -7px;
        }

        .card.type-6 .trigger::after {
            transform: rotate(90deg);
        }

    .card.type-6.hover .trigger, .card.type-6:hover .trigger {
        border-color: transparent transparent transparent transparent;
    }

        .card.type-6.hover .trigger::before, .card.type-6:hover .trigger::before {
            transform: rotate(45deg);
        }

        .card.type-6.hover .trigger::after, .card.type-6:hover .trigger::after {
            transform: rotate(135deg);
        }

    .card.type-6 .titles {
        padding: 16px 10px 17px 10px;
    }

    .card.type-6 .t-prim,
    .card.type-6 .t-sec {
        margin: 0;
        color: #222;
        text-align: center;
        text-transform: uppercase;
    }

    .card.type-6 .t-prim {
        font-size: 18px;
        line-height: 22px;
    }

    .card.type-6 .t-sec {
        font-size: 14px;
        line-height: 16px;
    }

    .card.type-6 .t-prim + .t-sec {
        margin-top: 4px;
    }

    .card.type-6 .main {
        position: relative;
        z-index: 2;
        background-color: rgba(255, 204, 51, 0.9);
        overflow: hidden;
    }

        .card.type-6 .main .equalize {
            max-height: 0;
            transition: max-height 0.4s ease-in-out;
        }

        .card.type-6 .main .cnt {
            overflow: hidden;
            padding: 0 10%;
        }

            .card.type-6 .main .cnt li > a {
                color: #222;
                text-transform: uppercase;
                background: transparent url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='12'><path fill='#222' d='M0 12l8.986-6L0 0h5.017L14 6l-8.983 6H0z'/></svg>") no-repeat 0 50%;
            }

                .card.type-6 .main .cnt li > a:hover {
                    color: #358;
                }

    .card.type-6 > img {
        position: absolute;
        left: -10000%;
        right: -10000%;
        top: -10000%;
        bottom: -10000%;
        margin: auto;
        min-width: 1000%;
        min-height: 1000%;
        -webkit-transform: scale(0.1);
        -ms-transform: scale(0.1);
        transform: scale(0.1);
        z-index: 1;
    }

    .card.type-6:hover .main .equalize {
        max-height: 700px;
    }

    .card.type-6.variant-a .cnt ul {
        list-style: none;
        padding: 0;
        margin: 20px 0;
    }

    .card.type-6.variant-a .cnt li a {
        display: block;
        padding: 5px 0 5px 25px;
    }

/* end card type-6 */
/* figure expanded */
figure {
    position: relative;
    margin-top: 4px;
}

    figure > img {
        width: 100%;
        height: auto;
    }

    figure::after {
        display: block;
        content: '';
        position: absolute;
        top: 4px;
        bottom: 4px;
        width: 5px;
        background-color: #fbba00;
    }

@media (min-width: 992px) {
    figure.expanded {
        width: calc(50vw - 53px);
        max-width: 653px;
    }

        figure.expanded.left {
            float: right;
        }
}

figure.left {
    margin-left: 5px;
}

    figure.left::after {
        left: -5px;
    }

figure.right {
    margin-right: 5px;
}

    figure.right::after {
        right: -5px;
    }

figure figcaption {
    padding: 10px 30px;
    font-size: 16px;
    color: #fff;
    background-color: #1a2d44;
}

figure .number {
    position: absolute;
    top: 0;
    width: 80px;
    text-align: center;
    font-size: 33px;
    line-height: 100px;
    color: #333;
    background-color: #fbba00;
}

figure.left .number {
    left: -80px;
}

figure.right .number {
    right: -80px;
}

@media (max-width: 499px) {
    figure .number {
        width: 50px;
        font-size: 28px;
        line-height: 90px;
    }

    figure.left .number {
        left: -5px;
    }

    figure.right .number {
        right: -5px;
    }
}

@media (min-width: 500px) and (max-width: 799px) {
    figure .number {
        width: 80px;
        font-size: 33px;
        line-height: 100px;
    }

    figure.left .number {
        left: -5px;
    }

    figure.right .number {
        right: -5px;
    }
}

@media (min-width: 768px) and (max-width: 799px) {
    figure .number {
        width: 50px;
        font-size: 28px;
        line-height: 90px;
    }

    figure.left .number {
        left: -5px;
    }

    figure.right .number {
        right: -5px;
    }
}

@media (min-width: 800px) and (max-width: 991px) {
    figure .number {
        width: 50px;
        font-size: 28px;
        line-height: 90px;
    }

    figure.left .number {
        left: -50px;
    }

    figure.right .number {
        right: -50px;
    }
}

@media (min-width: 992px) and (max-width: 1019px) {
    figure .number {
        width: 50px;
        font-size: 28px;
        line-height: 90px;
    }

    figure.left .number {
        left: -5px;
    }

    figure.right .number {
        right: -5px;
    }
}

@media (min-width: 1020px) and (max-width: 1080px) {
    figure .number {
        width: 50px;
        font-size: 28px;
        line-height: 90px;
    }

    figure.left .number {
        left: -50px;
    }

    figure.right .number {
        right: -50px;
    }
}

@media (min-width: 1200px) and (max-width: 1297px) {
    figure .number {
        width: 80px;
        font-size: 33px;
        line-height: 100px;
    }

    figure.left .number {
        left: -5px;
    }

    figure.right .number {
        right: -5px;
    }
}
/* end figure expanded */
/* figure bordered */
figure.bordered {
    border: 1px solid #ddd;
}

    figure.bordered::after {
        display: none;
    }

figure .meta {
    position: absolute;
    right: 0;
    top: 0;
    left: 0;
    z-index: 1;
    font-size: 0;
}

    figure .meta span {
        display: inline-block;
        padding: 5px 15px;
        font-size: 13px;
        text-transform: uppercase;
    }

    figure .meta .cat {
        color: #222;
        background-color: #fc3;
    }

/* end figure bordered */
/* figure nobar */
figure.nobar::after {
    display: none;
}

/* end figure nobar */
/* Tabs */
.tabs {
    display: table;
    table-layout: fixed;
    width: 100%;
    padding: 0;
    margin: 0;
}

    .tabs a {
        position: relative;
        display: table-cell;
        vertical-align: top;
        font-size: 16px;
        line-height: 22px;
        color: #fff;
        text-align: center;
        text-decoration: none;
    }

        .tabs a.active {
            color: #222;
        }

        .tabs a::before {
            display: block;
            content: '';
            position: absolute;
            top: 6px;
            left: 0;
            right: 3px;
            bottom: 3px;
            background-color: #1a2d44;
        }

        .tabs a:last-child::before {
            right: 0;
        }

        .tabs a.active::before {
            top: 0;
            bottom: 0;
            background-color: #fff;
        }

        .tabs a span {
            display: block;
            position: relative;
            padding: 29px 10px;
        }

@media (max-width: 767px) {
    .tabs a span {
        font-size: 14px;
        line-height: 18px;
    }
}

.tabs.pills {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    text-align: center;
}

    .tabs.pills a {
        position: relative;
        display: inline-block;
        vertical-align: top;
        font-size: 16px;
        line-height: 22px;
        color: #333;
        text-align: center;
        text-decoration: none;
    }

        .tabs.pills a.active {
            color: #fff;
            background-color: #2b5689;
        }

        .tabs.pills a::before {
            display: none;
        }

        .tabs.pills a span {
            padding: 10px 20px;
        }

.tabbed-content {
    background-color: #fff;
    padding: 50px 0 37px 0;
}

.tab-content {
    display: none;
}

    .tab-content.active {
        display: block;
    }

@media (max-width: 619px) {
    .tabs {
        display: block;
    }

        .tabs a {
            display: block;
            border: 0;
            margin-bottom: 3px;
        }

            .tabs a::before,
            .tabs a.active::before {
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
            }

            .tabs a span {
                padding: 17px 10px;
                border: 0;
            }
}
/* end Tabs */
/* buttons */
.btn {
    border-radius: 0;
    font-weight: 300;
    text-decoration: none;
}

.btn-lg {
    font-size: 16px;
}

.btn-secondary {
    border-color: #2b5689;
    color: #2b5689;
    background-color: transparent;
    transition: background-color 0.15s linear;
}

    .btn-secondary:hover,
    .btn-secondary:focus {
        color: #fff;
        background-color: #2b5689;
        border-color: #2b5689;
    }

    .btn-secondary:active,
    .btn-secondary:active:focus {
        color: #fff;
        background-color: #204066;
        border-color: #204066;
    }

    .btn-secondary.white {
        border-color: #fff;
        color: #fff;
        background-color: transparent;
    }

        .btn-secondary.white:hover,
        .btn-secondary.white:focus {
            color: #2b5689;
            background-color: #fff;
            border-color: #fff;
        }

        .btn-secondary.white:active,
        .btn-secondary.white:active:focus {
            color: #204066;
            background-color: #fff;
            border-color: #fff;
        }

.btn.yellow {
    background-color: #fc3;
    color: #222;
    transition: background-color 0.2s linear;
}

    .btn.yellow:hover,
    .btn.yellow:focus {
        background-color: #fbba00;
        text-decoration: underline;
    }

/* end buttons */
/* video screen */
a.video-image:not(.card) {
    display: block;
    position: relative;
    background-color: #1a2d44;
}

    a.video-image:not(.card) img {
        display: block;
        max-width: 100%;
        height: auto;
        opacity: 1;
        transition: opacity 0.2s linear;
    }

    a.video-image:not(.card):hover img {
        opacity: 0.8;
    }

    a.video-image:not(.card)::after,
    a.video-image .playico {
        display: block;
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100px;
        height: 100px;
        background: #1a2d44 url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABcAAAAdCAYAAABBsffGAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAPlJREFUeNq0lqEKwlAUhq9j5gUFg6BgsZgNew6xmJwgNptJn8XkkkmLzbSgICaDjyAoiihimv+BXZjMoO7+H3ywceHnDs7OOSoMQwdOYA4qk6ooXDjABitcM4UFVrhwhC1WuGYGi6xw4QzbMMMI1yxgiRUuXGHv26/4NVyzhBVWuHCHfWgxwjUBrH4Kt1R6XLiFA2i/nRi4eZwVrJm8eZw63MAhzEpJOXi4KPOMLULoE45g1zYcvIYe3MmLqZs/ompxdbBKlM5/BLAD94mTFKV4Y/2hlN5C64rSz8uMSeQxJtGcMUNPrOlP2Vtk42oyNi4f5k3vii8BBgAiNrMzczzmQAAAAABJRU5ErkJggg==") no-repeat 50% 50%;
        transition: background-color 0.2s linear;
        z-index: 1;
    }

    a.video-image:not(.card):hover::after,
    a.video-image:hover .playico {
        background-color: #2b5689;
    }

@media screen and (max-width: 991px) {
    a.video-image:not(.card)::after {
        width: 60px;
        height: 60px;
    }
}
/* end video screen */
/* Video modal */
.video-modal .modal-content {
    padding: 40px;
    border: none;
    border-radius: 0;
}

    .video-modal .modal-content .close {
        position: absolute;
        top: 0;
        right: 0;
        width: 40px;
        height: 40px;
        font-size: 50px;
        font-weight: 300;
        line-height: 40px;
        text-shadow: none;
        opacity: .3;
        overflow: hidden;
    }

.videoWrapper {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
}

    .videoWrapper iframe,
    .videoWrapper embed,
    .videoWrapper object,
    .videoWrapper video {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

    .videoWrapper.ratio-21by9 {
        padding-bottom: 42.857143%;
    }

    .videoWrapper.ratio-16by9 {
        padding-bottom: 56.25%;
    }

    .videoWrapper.ratio-4by3 {
        padding-bottom: 75%;
    }

    .videoWrapper.ratio-1by1 {
        padding-bottom: 100%;
    }

/* end Video modal */
/* forms */
input,
select,
textarea {
    border-radius: 0 !important;
}

/* end forms */
/* social media share this */
.share-this-txt {
    display: inline-block;
    margin: 0 10px;
    font-size: 14px;
    line-height: 50px;
    text-transform: uppercase;
    color: #333;
    text-align: right;
    vertical-align: middle;
}

.social-media.share {
    display: inline-block;
    margin: 0 10px;
    vertical-align: middle;
}

    .social-media.share a {
        transition: background-color 0.6s ease;
    }

        .social-media.share a:hover {
            transition: background-color 0.2s ease;
        }

        .social-media.share a.linkedin {
            background-color: #0077b5;
        }

            .social-media.share a.linkedin:hover {
                background-color: #004569;
            }

        .social-media.share a.facebook {
            background-color: #3b5998;
        }

            .social-media.share a.facebook:hover {
                background-color: #263961;
            }

        .social-media.share a.twitter {
            background-color: #1da1f2;
        }

            .social-media.share a.twitter:hover {
                background-color: #0b76b8;
            }

        .social-media.share a.weibo {
            background-color: #ff0220;
        }

            .social-media.share a.weibo:hover {
                background-color: #b50015;
            }

        .social-media.share a.email {
            background-color: #a4a4a8;
        }

            .social-media.share a.email:hover {
                background-color: #7d7d83;
            }

/* end social media share this */
/* pagination */
.pagination {
    text-align: center;
}

    .pagination a {
        display: inline-block;
        width: 37px;
        padding: 5px 0;
        line-height: 27px;
        color: #222;
        background-color: #f3f3ee;
    }

        .pagination a:hover,
        .pagination a.active {
            color: #fff;
            background-color: #2b5689;
        }

/* end pagination */
/* pull quote */
aside.pullquote {
    position: relative;
    padding-left: 20px;
    margin: 15px 0;
    font-size: 26px;
    line-height: 42px;
    font-weight: 100;
}

    aside.pullquote::after {
        display: block;
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 5px;
        background-color: #fbba00;
    }

    aside.pullquote .source {
        text-align: right;
        font-size: 16px;
    }

/* pull quote */
/* GKN carousel */
.gkncarousel h3 {
    font-weight: 400;
}

.gkncarousel.type-1 {
    padding-bottom: 50px;
    margin-bottom: 40px;
    position: relative;
}

    .gkncarousel.type-1 .indicators {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 10px;
        text-align: center;
        z-index: 2;
    }

        .gkncarousel.type-1 .indicators a,
	.gkncarousel.type-1 .indicators span {
            display: inline-block;
            width: 24px;
            height: 24px;
            margin: 4px;
            text-indent: 30px;
            overflow: hidden;
            background-color: #f3f3ee;
        }

#middle > section.light-grey .gkncarousel.type-1 .indicators a,
#middle > section.light-grey .gkncarousel.type-1 .indicators span {
    background-color: #ddd;
}

.gkncarousel.type-1 .indicators a:hover {
    opacity: 0.8;
}

.gkncarousel.type-1 .indicators a.active,
.gkncarousel.type-1 .indicators span.active {
    background-color: #1a2d44;
}

.gkncarousel.type-1 a.prev,
.gkncarousel.type-1 a.next {
    display: block;
    position: absolute;
    top: 50%;
    width: 70px;
    height: 70px;
    overflow: hidden;
    margin-top: -100px;
    text-indent: 100px;
    background-color: #1a2d44;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    z-index: 3;
    transition: background-color 0.2s ease;
}

.gkncarousel.type-1 a.prev {
    left: 0;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAUCAYAAAC58NwRAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAMZJREFUeNpi+P//PwMBzA7E64DYAcQnpJgNiLf8h4AvQGyDTzELEK/9jwp24FLMDMQr0RSfAWJ+XIoXoim+CMTC2PzACMRz0RRfAWJRmBp0xdPQFN8EYglkQ5E19KMpvgPEMuhOhjG60BQ/AGJ5bAECIhrRFD8GYmVcwc3EwMDAyEAKgOrsxuIkOVxOguEJpHgaFqzTSQlWXBF3FVfEISeNxcQmDXyJ7yyuxAfDrNCMgwx2EpOBtkIVfyWUgZCz6HpYFgUIMAB7B/TGXN9C8gAAAABJRU5ErkJggg==");
}

.gkncarousel.type-1 a.next {
    right: 0;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAUCAYAAAC58NwRAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAL9JREFUeNpi+P//PwMQOwDxOiBmh/JxYhBhA8Rf/kPAFiBmI6Rhx39UsBaIWfBp4AfiM2iaVgIxMy4NICwMxBfRNC3EpgmZIwrEV9A0zQViRlwaQFgCiG+iaZqGrAmbx2SA+A6apn58GkBYHogfoGnqwqcBhJWB+DGapkYmBtIAIy7T5bA4qZsUT08gJVin4wpWUMRdJTbisCWNxbiSBijxnSUl8e1EUwzKSKyEMtBXqOKtxGQgWBZdT0wWBQgwACpJ9MZJGIHkAAAAAElFTkSuQmCC");
}

    .gkncarousel.type-1 a.prev:hover,
    .gkncarousel.type-1 a.next:hover {
        background-color: #2b5689;
    }

@media (max-width: 630px) {
    .gkncarousel.type-1 a.prev,
    .gkncarousel.type-1 a.next {
        display: none;
    }
}

@media (min-width: 631px) and (max-width: 819px) {
    .gkncarousel.type-1 a.prev {
        width: 40px;
        left: -40px;
    }

    .gkncarousel.type-1 a.next {
        width: 40px;
        right: -40px;
    }
}

@media (min-width: 820px) and (max-width: 991px) {
    .gkncarousel.type-1 a.prev {
        width: 50px;
        left: -50px;
    }

    .gkncarousel.type-1 a.next {
        width: 50px;
        right: -50px;
    }
}

@media (min-width: 992px) and (max-width: 1029px) {
    .gkncarousel.type-1 a.prev {
        width: 30px;
        left: -30px;
    }

    .gkncarousel.type-1 a.next {
        width: 30px;
        right: -30px;
    }
}

@media (min-width: 1030px) {
    .gkncarousel.type-1 a.prev {
        width: 50px;
        left: -50px;
    }

    .gkncarousel.type-1 a.next {
        width: 50px;
        right: -50px;
    }
}

@media (min-width: 1100px) {
    .gkncarousel.type-1 a.prev {
        width: 70px;
        left: -80px;
    }

    .gkncarousel.type-1 a.next {
        width: 70px;
        right: -80px;
    }
}

@media (min-width: 1201px) {
    .gkncarousel.type-1 a.prev {
        width: 50px;
        left: -40px;
    }

    .gkncarousel.type-1 a.next {
        width: 50px;
        right: -40px;
    }
}

@media (min-width: 1250px) {
    .gkncarousel.type-1 a.prev {
        width: 50px;
        left: -50px;
    }

    .gkncarousel.type-1 a.next {
        width: 50px;
        right: -50px;
    }
}

@media (min-width: 1330px) {
    .gkncarousel.type-1 a.prev {
        width: 70px;
        left: -70px;
    }

    .gkncarousel.type-1 a.next {
        width: 70px;
        right: -70px;
    }
}

@media (min-width: 1430px) {
    .gkncarousel.type-1 a.prev {
        left: -140px;
    }

    .gkncarousel.type-1 a.next {
        right: -140px;
    }
}

.gkncarousel.type-1 .card.type-2.variant-b .cnt .title .name {
    display: block;
    font-size: 22px;
    color: #96bff2;
}

.gkncarousel.type-1 .card.type-2.variant-b .cnt .title .position {
    display: block;
    font-size: 18px;
    color: #fff;
}

.bubble-quotes-wrapper {
    position: relative;
    font-size: 0;
}

    .bubble-quotes-wrapper .bubble-quote {
        display: inline-block;
        width: 50%;
        padding: 0 15px 20px 15px;
        margin: 0;
        font-size: 18px;
        font-weight: 300;
        vertical-align: top;
    }

@media (max-width: 550px) {
    .bubble-quotes-wrapper .bubble-quote {
        width: 100%;
    }
}

.bubble-quotes-wrapper .bubble-quote .quote {
    position: relative;
    padding: 18px 20px;
    border: 1px solid #e6e4e4;
    border-top: 5px solid #fc3;
    margin-bottom: 30px;
}

    .bubble-quotes-wrapper .bubble-quote .quote::before {
        content: '';
        position: absolute;
        bottom: -30px;
        left: -1px;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 30px 30px 0 0;
        border-color: #e6e4e4 transparent transparent transparent;
    }

    .bubble-quotes-wrapper .bubble-quote .quote::after {
        content: '';
        position: absolute;
        bottom: -28px;
        left: 0;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 30px 30px 0 0;
        border-color: #fff transparent transparent transparent;
    }

.large-img-quote {
    position: relative;
    width: 100%;
}

    .large-img-quote .quote {
        display: table;
        table-layout: fixed;
        position: relative;
        width: 100%;
    }

        .large-img-quote .quote .image {
            display: table-cell;
            position: relative;
            width: 50%;
            overflow: hidden;
            padding-top: 32.05%;
            vertical-align: top;
        }

            .large-img-quote .quote .image img {
                position: absolute;
                left: -10000%;
                right: -10000%;
                top: -10000%;
                bottom: -10000%;
                margin: auto auto;
                min-width: 1000%;
                min-height: 1000%;
                -webkit-transform: scale(0.1);
                -ms-transform: scale(0.1);
                transform: scale(0.1);
            }

        .large-img-quote .quote .copy {
            display: table-cell;
            position: relative;
            width: 50%;
            vertical-align: top;
            background-color: #fff;
            padding: 30px;
        }

            .large-img-quote .quote .copy::after {
                content: '';
                position: absolute;
                bottom: -28px;
                left: 0;
                width: 0;
                height: 0;
                border-style: solid;
                border-width: 30px 30px 0 0;
                border-color: #fff transparent transparent transparent;
            }

    .large-img-quote .author {
        margin: 28px 0 20px 0;
    }

.gkncarousel.type-2 .slides,
.gkncarousel.type-1 .slides {
    position: relative;
    width: 100%;
    height: auto;
}

    .gkncarousel.type-2 .slides .cntnr,
    .gkncarousel.type-1 .slides .cntnr {
        position: relative;
        width: 100%;
        height: auto;
        overflow: hidden;
    }

        .gkncarousel.type-2 .slides .cntnr .item,
        .gkncarousel.type-1 .slides .cntnr .item {
            position: relative;
            display: none;
            /*transition:.6s ease-in-out left;*/
        }

            .gkncarousel.type-2 .slides .cntnr .item.active,
            .gkncarousel.type-1 .slides .cntnr .item.active {
                display: block;
            }

            .gkncarousel.type-2 .slides .cntnr .item.ex,
            .gkncarousel.type-1 .slides .cntnr .item.ex {
                display: block;
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
            }

    .gkncarousel.type-1 .slides.from-right .cntnr .item {
        animation-name: carouselFromRightIn;
        animation-duration: 0.3s;
        animation-timing-function: ease-out;
        animation-delay: 0s;
        animation-iteration-count: 1;
        animation-direction: normal;
        animation-fill-mode: none;
        animation-play-state: running;
    }

    .gkncarousel.type-1 .slides.from-left .cntnr .item {
        animation-name: carouselFromLeftIn;
        animation-duration: 0.3s;
        animation-timing-function: ease-out;
        animation-delay: 0s;
        animation-iteration-count: 1;
        animation-direction: normal;
        animation-fill-mode: none;
        animation-play-state: running;
    }

    .gkncarousel.type-1 .slides.from-right .cntnr .item.ex {
        animation-name: carouselFromRightOut;
        animation-duration: 0.3s;
        animation-timing-function: ease-out;
        animation-delay: 0s;
        animation-iteration-count: 1;
        animation-direction: normal;
        animation-fill-mode: both;
        -webkit-animation-fill-mode: both;
        animation-play-state: running;
    }

    .gkncarousel.type-1 .slides.from-left .cntnr .item.ex {
        animation-name: carouselFromLeftOut;
        animation-duration: 0.3s;
        animation-timing-function: ease-out;
        animation-delay: 0s;
        animation-iteration-count: 1;
        animation-direction: normal;
        animation-fill-mode: both;
        -webkit-animation-fill-mode: both;
        animation-play-state: running;
    }

@keyframes carouselFromRightIn {
    0% {
        /*opacity: 0;
    transform: scale(0.9) rotateX(-60deg);
    transform-origin: 50% 0;*/
        transform: translateX(100%);
    }

    100% {
        /*opacity: 1;
    transform: scale(1);*/
        transform: translateX(0);
    }
}

@keyframes carouselFromLeftIn {
    0% {
        /*opacity: 0;
    transform: scale(0.9) rotateX(-60deg);
    transform-origin: 50% 0;*/
        transform: translateX(-100%);
    }

    100% {
        /*opacity: 1;
    transform: scale(1);*/
        transform: translateX(0);
    }
}

@keyframes carouselFromRightOut {
    0% {
        transform: translateX(0);
        display: block;
        position: absolute !important;
    }

    100% {
        transform: translateX(-100%);
        /*display:none!important;
    position:absolute!important;*/
    }
}

@keyframes carouselFromLeftOut {
    0% {
        transform: translateX(0);
        display: block;
        position: absolute !important;
    }

    100% {
        transform: translateX(100%);
        /*display:none!important;
    position:absolute!important;*/
    }
}

.sacarouselitem {
    position: relative;
}

    .gkncarousel.type-2 .slides .cntnr .item img,
    .sacarouselitem > img {
        display: block;
        width: 100%;
        height: auto;
    }

    .gkncarousel.type-2 .slides .cntnr .item .cnt,
    .sacarouselitem .cnt {
        position: absolute;
        top: 40px;
        left: 0;
        bottom: 40px;
        width: 50%;
        padding-right: 15px;
        border: 35px solid transparent;
        border-width: 35px 20px 35px 35px;
        background-color: rgba(255, 255, 255, 0.8);
        overflow-y: auto;
        overflow-x: hidden;
    }

        .gkncarousel.type-2 .slides .cntnr .item .cnt h3,
        .sacarouselitem .cnt h3 {
            margin-bottom: 20px;
            font-size: 32px;
            color: #2b5689;
        }

        .gkncarousel.type-2 .slides .cntnr .item .cnt p,
        .sacarouselitem .cnt p {
            font-size: 18px;
            color: #333;
        }

.gkncarousel.type-2 .bar {
    position: relative;
    width: 100%;
    font-size: 16px;
    color: #fff;
    background-color: #204066;
}

    .gkncarousel.type-2 .bar .nav {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
    }

        .gkncarousel.type-2 .bar .nav a {
            display: block;
            width: 70px;
            height: 80px;
            float: left;
            background-color: #1a2d44;
            text-indent: 80px;
            overflow: hidden;
            background-repeat: no-repeat;
            background-position: center center;
            transition: background-color 0.1s linear;
        }

            .gkncarousel.type-2 .bar .nav a.prev {
                border-right: 1px solid #2b5689;
                background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAAVCAYAAACdbmSKAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAO1JREFUeNqMlE0LAUEYx611V6Ilr8kH8DV8HLk4KDk4OEg5OEjJYT+Lg5RIibwlX8P4j3qy/q2Zfeq3zczub2d65plxlFKxCJEAHnjqTjyC4AIfLEHlM6JnMuCChfrGBeRNggNm6jdWIGkSJiRsQOqTgz/SiIQdyMj7MGFAwgF4wW9Y6JFwAgX+cbDTIeEKimHLl0aLhAeo/susftTBi6SGaf+k0QyZqWaTNG0S76BskzRdEs+27Al9Eo8gZ5M0QxL3toqQ2huTuAVpkyTilMS1qcqD4pzLyibJQfTBDZT0mBPxjtBHPit3xFuAAQAAYBCriCae7QAAAABJRU5ErkJggg==");
            }

            .gkncarousel.type-2 .bar .nav a.next {
                background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAAVCAYAAACdbmSKAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAOBJREFUeNqE1M0KAVEYxvEZcwFKJI2v5ALchsuRjYWShYWFlIWFlCzmWiykRErkKxvuAcfzljKezHlP/Waaxb9zmt4Z1xjjfJYPd3g4yop97kWYQQCeFjnYyYej+a4peHKCKHKJw9z8rjG4tkgkYEnhMCoMP6RgTWFfi0QathR2tUhkYU9hW4tEDk4UNrVIlOBKYV2LRJWiF1RsQfnPTjXbTgW4UNDQ3t6Bgpbt7WVgR0FHm4gNBT3bRCRhRcHANnsy5QsKRtqU89hMbEH4eHk4Q6B9gMKlf8QNntrX/hZgAMOjEqtAHeWpAAAAAElFTkSuQmCC");
                border-right: 1px solid #1a2d44;
            }

            .gkncarousel.type-2 .bar .nav a:hover {
                background-color: #204066;
            }

    .gkncarousel.type-2 .bar .tabs {
        display: table;
        width: 100%;
        table-layout: fixed;
        border-left: 140px solid transparent;
    }

        .gkncarousel.type-2 .bar .tabs a {
            display: table-cell;
            padding: 0 10px;
            height: 80px;
            color: #fff;
            text-decoration: none;
            vertical-align: middle;
            background-color: #204066;
            transition: background-color 0.1s linear;
            overflow: hidden;
            line-height: 18px;
            font-size: 15px;
        }

            .gkncarousel.type-2 .bar .tabs a + a {
                border-left: 1px solid #1a2d44;
            }

            .gkncarousel.type-2 .bar .tabs a.active,
            .gkncarousel.type-2 .bar .tabs a:hover {
                background-color: #2b5689;
            }

            .gkncarousel.type-2 .bar .tabs a::before {
                display: none;
            }

@media (max-width: 991px) {
    .gkncarousel.type-2 .slides .cntnr .item .cnt,
    .sacarouselitem .cnt {
        width: 90%;
        padding: 15px;
    }

        .gkncarousel.type-2 .slides .cntnr .item .cnt .btn,
        .sacarouselitem .cnt .btn {
            white-space: normal;
        }

    .gkncarousel.type-2 .bar .tabs a:not(.active) {
        display: none;
    }

    .gkncarousel.type-2 .bar .tabs a + a {
        border-left: none;
    }

    .gkncarousel.type-2 .bar .tabs a {
        padding-left: 20px;
        text-align: left;
    }
}

@media (max-width: 767px) {
    .gkncarousel.type-2 .slides .cntnr .item .cnt {
        border-width: 10px 20px 10px 35px;
        width: 80%;
    }

        .gkncarousel.type-2 .slides .cntnr .item .cnt h3 {
            font-size: 24px;
        }

        .gkncarousel.type-2 .slides .cntnr .item .cnt p {
            font-size: 14px;
        }

    .gkncarousel.type-2 .bar .tabs {
        border-left: 100px solid transparent;
    }

    .gkncarousel.type-2 .bar .nav a {
        width: 50px;
    }
}

@media (max-width: 512px) {
    .gkncarousel.type-2 .slides .cntnr .item .cnt {
        width: 100%;
        height: 100%;
        top: 0;
    }
}

.gkncarousel.type-1.nnp a.prev,
.gkncarousel.type-1.nnp a.next {
    display: none;
}

/* end GKN carousel */
/* List witch chevrons */
.chevrons > ul,
ul.chevrons {
    list-style: none;
    padding-left: 0;
}

    .chevrons > ul > li,
    ul.chevrons > li {
        padding: 5px 0 5px 30px;
        background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAASCAYAAABb0P4QAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAShJREFUeNqUlDFOAkEYhYdtKFcOsN5goSBaA3IJxQJbLA3eQjtqIAHNXgGDUKuVegHBA0hJNbxJnslk+Bf+fcmXLWby8mb2/VOyH/UrY8wAnJh9LUAXrIxSJRi67ykYgaawZwN64EljGPHrErRBH2yDPTGYgmdQ0Sb0VQUTkAr71+AGzI8l9PUJzsEjsMFaAmbgAZS1CX1dgCGNQn2BawY4mNCXO1oNZMKau5I3cOf7HEvoq8N6xcLaK+u1LmL4X68xaAhrf65ekSkue6g1RRKqJkqTsMJSTwUzNwT3HIqV5qe0OJJSbb75o1S1KbO8L4KZZenPQrO8hCmPJ43eL+9KNXoRS/qeY5ZxzueaxyHhXbVynq9bpla9h5esg/Q0LXnEH223dgIMALO4TWG11vAbAAAAAElFTkSuQmCC") no-repeat left top 9px;
    }

/* end List witch chevrons */
/* .well */
.well {
    padding: 20px;
    background-color: #f3f3ee;
}

/* end .well */
/* Alternate blocks */
.row.alternate .copy {
    padding: 30px 5%;
    text-align: center;
    font-size: 18px;
    font-weight: 100;
}

.row.alternate.type-2 .copy {
    background-color: #fff;
    text-align: left;
}

    .row.alternate.type-2 .copy p {
        color: #333;
    }

.row.alternate .copy h3 {
    color: #2b5689;
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 15px;
}

.row.alternate .copy a.btn {
    margin-top: 15px;
}

@media (min-width: 768px) {
    .row.alternate.no-gutters {
        display: table;
        table-layout: fixed;
        position: relative;
        width: 100%;
    }

    .row.alternate .photo {
        overflow: hidden;
        padding-top: 32.05%;
        vertical-align: top;
    }

        .row.alternate .photo img {
            position: absolute;
            left: -10000%;
            right: -10000%;
            top: -10000%;
            bottom: -10000%;
            margin: auto auto;
            min-width: 1000%;
            min-height: 1000%;
            -webkit-transform: scale(0.1);
            -ms-transform: scale(0.1);
            transform: scale(0.1);
        }

    .row.alternate .copy {
        font-size: 22px;
        vertical-align: middle;
    }

    .row.alternate.type-2 .copy {
        font-size: 18px;
    }

    .row.alternate .copy h3 {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .row.alternate.type-2 .copy h3 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .row.alternate .copy a.btn {
        margin-top: 30px;
    }

    .row.alternate .photo,
    .row.alternate .copy {
        display: table-cell;
        float: initial;
    }

    .row.alternate.no-gutters:nth-child(odd) > .photo {
        left: 50%;
    }

    .row.alternate.no-gutters:nth-child(odd) > .copy {
        right: 50%;
    }

    .row.alternate.type-2.no-gutters:nth-child(odd) > .photo {
        left: auto;
    }

    .row.alternate.type-2.no-gutters:nth-child(odd) > .copy {
        right: auto;
    }

    .row.alternate.type-2.no-gutters:nth-child(even) > .photo {
        left: 50%;
    }

    .row.alternate.type-2.no-gutters:nth-child(even) > .copy {
        right: 50%;
    }
}

@media (max-width: 767px) {
    .row.alternate .photo img {
        display: block;
        width: 100%;
        height: auto;
    }
}

.row.alternate .photo::after {
    position: absolute;
    top: 50%;
    right: 0;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 26px 26px 26px 0;
    border-color: transparent #fff transparent transparent;
    margin-top: -26px;
}

.row.alternate .photo .meta {
    position: absolute;
    right: 0;
    top: 0;
    left: 0;
    z-index: 1;
    font-size: 0;
}

    .row.alternate .photo .meta span {
        display: inline-block;
        padding: 5px 15px;
        font-size: 13px;
        text-transform: uppercase;
    }

    .row.alternate .photo .meta .cat {
        color: #222;
        background-color: #fc3;
    }

.row.alternate.no-gutters:nth-child(odd) .photo::after {
    position: absolute;
    top: 50%;
    left: 0;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 26px 0 26px 26px;
    border-color: transparent transparent transparent #fff;
    margin-top: -26px;
}

.row.alternate.type-2.no-gutters:nth-child(odd) .photo::after {
    position: absolute;
    top: 50%;
    right: 0;
    left: auto;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 26px 26px 26px 0;
    border-color: transparent #fff transparent transparent;
    margin-top: -26px;
}

.row.alternate.type-2.no-gutters:nth-child(even) .photo::after {
    position: absolute;
    top: 50%;
    left: 0;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 26px 0 26px 26px;
    border-color: transparent transparent transparent #fff;
    margin-top: -26px;
}

/* end Alternate blocks */
/* circle extra link */
a.circle-extra {
    display: block;
    margin-bottom: 20px;
}

    a.circle-extra .ico {
        position: relative;
        display: block;
        width: 100%;
        max-width: 120px;
        margin: 0 auto 20px auto;
    }

        a.circle-extra .ico i {
            position: relative;
            display: block;
            width: 100%;
            padding-bottom: 100%;
            border-radius: 999px;
            background-color: #369;
            transition: background-color 0.3s linear;
        }

        a.circle-extra .ico img {
            display: block;
            margin: 0 auto;
            max-width: 100%;
            height: auto;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

    a.circle-extra .txt {
        display: block;
        font-size: 20px;
        line-height: 28px;
        color: #333;
        text-align: center;
    }

    a.circle-extra:hover .ico i {
        background-color: #204066;
    }

    a.circle-extra:hover .txt {
        color: #222;
        transition: color 0.3s linear;
    }

/* end circle extra link */
/* Accordion */
ul.accordion {
    list-style: none;
    padding: 0;
    border-top: 1px solid #e6e4e4;
    margin: 0;
}

section.blue > .container > .row > .col-sm-12 > ul.accordion,
section > .container > .row > .col-sm-12 > ul.accordion.openfiles {
    border-top: none;
    background-color: #fff;
}

    section.blue > .container > .row > .col-sm-12 > ul.accordion > li .copy,
    ul.accordion.brandfiles > li .copy,
    section > .container > .row > .col-sm-12 > ul.accordion.openfiles > li .copy {
        background-color: #f3f3ee;
    }

ul.accordion > li .copy .file-blocks {
    position: relative;
    padding: 45px 60px;
}

@media (max-width: 520px) {
    ul.accordion > li .copy .file-blocks {
        padding: 45px 0;
    }
}

ul.accordion > li .copy .file-blocks .item .info::after {
    border-left-color: #f3f3ee;
}

ul.accordion > li {
    border-bottom: 1px solid #e6e4e4;
}

    ul.accordion > li > .title {
        position: relative;
        font-weight: 400;
        cursor: pointer;
        padding: 15px 30px 15px 0;
        transition: color 0.3s linear;
    }

        ul.accordion > li > .title:hover {
            color: #2b5689;
        }

        ul.accordion > li > .title::after {
            display: block;
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            width: 30px;
            background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAUCAYAAAC58NwRAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAMxJREFUeNpi+P//PwMQ2APxBiDmAPHxYRCwAuLPQAzibQViNkIadkAVw/A6IGbFp4EfiM+gaVoJxMxYNUB1CQPxBTRNi7BpQrZKFIivoGmaC8SMWDVANUkA8U00TdOQNWHzlAwQ30HT1I9TA1STHBA/QNPUgVMDVJMyED9G09TIxIAb/McuSryTuvB5+jaa4gm4glUciG+gKZ6BNVhJijggEMKSNBZjTRrQxHcaTfEqnIkPCLajKV6PL0+AgDUQf4Eq3kYwA5GaRQECDADzmKEDhlcdTAAAAABJRU5ErkJggg==") no-repeat right center;
            opacity: 0.15;
            transition: opacity 0.3s linear;
        }

        ul.accordion > li > .title:hover::after {
            opacity: 0.5;
        }

    ul.accordion > li.expanded > .title::after {
        transform: rotate(90deg);
        top: 5px;
        height: 30px;
        width: 30px;
    }

section.blue > .container > .row > .col-sm-12 > ul.accordion > li > .title,
section > .container > .row > .col-sm-12 > ul.accordion.openfiles > li > .title,
ul.accordion.brandfiles > li > .title {
    color: #222;
    padding: 20px 40px 20px 20px;
}

section.blue > .container > .row > .col-sm-12 > ul.accordion > li.expanded > .title,
ul.accordion.brandfiles > li.expanded > .title,
section > .container > .row > .col-sm-12 > ul.accordion.openfiles > li > .title {
    color: #fff;
    background-color: #1a2d44;
}

    section > .container > .row > .col-sm-12 > ul.accordion.openfiles > li > .title::after {
        display: none;
    }

section.blue > .container > .row > .col-sm-12 > ul.accordion > li > .title::after {
    right: 20px;
}

section.blue > .container > .row > .col-sm-12 > ul.accordion > li.expanded > .title::after,
ul.accordion.brandfiles > li.expanded > .title::after,
section.blue > .container > .row > .col-sm-12 > ul.accordion > li.expanded > .title::after {
    top: 10px;
    right: 15px;
    opacity: 1;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAUCAYAAAC58NwRAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAM9JREFUeNpi+v//PwMQ2wPxBiDmgPJxYhBhBcSf/0PAViBmI6Rhx39UsA6IWfFp4AfiM2iaVgIxMy4NICwMxBfQNC3CpgmZIwrEV9A0zQViRlwaQFgCiG+iaZqGrAmbx2SA+A6apn58GkBYDogfoGnqAMmxMGAHj4DYGYgPALEMVKwciH8yMeAG/7GLEu+kLnyevo2meAIuT4sD8Q00xTNwBStJESeEJWksxpU0QInvNJriVfgS33Y0xevx5QkQYQ3EX6CKtxGTgUjKogABBgDGStDT069OAgAAAABJRU5ErkJggg==");
}

ul.accordion > li .copy {
    height: auto;
    /* max-height: 1500px; */
    overflow: hidden;
}

section.blue > .container > .row > .col-sm-12 > ul.accordion > li .copy::before {
    display: block;
    content: '';
    width: 100%;
    height: 15px;
}

ul.accordion > li .copy::after {
    display: block;
    content: '';
    width: 100%;
    height: 15px;
}

section.blue > .container > .row > .col-sm-12 > ul.accordion > li > .copy {
    color: #333;
    padding: 0 20px;
}

ul.accordion > li.collapsed .copy,
ul.accordion.longcopy > li.collapsed .copy {
    max-height: 0;
}

ul.accordion > li.animateIn .copy {
    transition: max-height 0.6s;
    animation: accordionIn 0.45s normal ease-in-out both 1;
}

ul.accordion.longcopy > li.animateIn .copy {
    transition: max-height 0.6s;
    animation: accordionLongIn 0.45s normal ease-in-out both 1;
}

ul.accordion > li.animateOut .copy {
    transition: max-height 0.6s;
    animation: accordionOut 0.45s alternate ease-in-out both 1;
}

ul.accordion.longcopy > li.animateOut .copy {
    transition: max-height 0.6s;
    animation: accordionLongOut 0.45s alternate ease-in-out both 1;
}

@media (min-width: 768px) {
    ul.accordion > li .copy {
        /*max-height: 800px;*/
    }

    ul.accordion.longcopy > li .copy {
        /*max-height: 3000px;*/
    }

    ul.accordion > li.animateIn .copy {
        transition: max-height 0.3s;
    }

    ul.accordion > li.animateOut .copy {
        transition: max-height 0.3s;
    }
}

@media (max-width: 767px) {
    ul.accordion.longcopy > li .copy {
        /*max-height: 5000px;*/
    }
}

@media (max-width: 450px) {
    ul.accordion.longcopy > li .copy {
        /*max-height: 10000px;*/
    }
}

@keyframes accordionIn {
    0% {
        opacity: 0;
        transform: scale(0.9) rotateX(-60deg);
        transform-origin: 50% 0;
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes accordionOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(0.9) rotateX(-60deg);
    }
}

@keyframes accordionLongIn {
    0% {
        opacity: 0;
        transform: scale(0.99) rotateX(-60deg);
        transform-origin: 50% 0;
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes accordionLongOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(0.99) rotateX(-60deg);
    }
}
/* end Accordion */
/* panels */
.panel {
    height: auto;
    padding-bottom: 20px;
    margin: 10px 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    border-top: 5px solid #fc3;
    overflow: hidden;
}

    .panel .label {
        margin: 20px 0 0 0;
        font-size: 16px;
        font-weight: 300;
        text-transform: uppercase;
    }

    .panel .number {
        margin: 0 0 20px 0;
        font-size: 28px;
        line-height: 50px;
        font-weight: 500;
        color: #1a2d44;
    }

        .panel .number:last-child {
            margin-bottom: 0;
        }

    .panel.gradient {
        margin: 0 0 30px 0;
        background-color: transparent;
        background: linear-gradient(to bottom, #ffffff 0%, #f3f3ee 100%);
    }

    .panel.top-grey {
        border-top-color: #9d9d9d;
    }

    .panel.top-yellow {
        border-top-color: #fc3;
    }

    .panel.top-blue {
        border-top-color: #2b5689;
    }

    .panel.top-navy {
        border-top-color: #1a2d44;
    }

    .panel.top-lighter-blue {
        border-top-color: #4085c6;
    }

    .panel.no-top {
        border-top: 0;
    }

/* end panels */
/* Glossary */
.glossary {
    margin-bottom: 30px;
}

    .glossary .nav {
        text-align: center;
    }

        .glossary .nav a {
            display: inline-block;
            padding: 5px;
            min-width: 30px;
            text-align: center;
            text-transform: uppercase;
            color: #333;
        }

            .glossary .nav a:hover,
            .glossary .nav a.active {
                color: #fff;
                background-color: #2b5689;
            }

    .glossary dl {
        padding: 30px 0;
        border-bottom: 1px solid #e6e4e4;
        margin: 0;
    }

    .glossary dt {
        font-size: 22px;
        color: #2b5689;
    }

/* end Glossary */
/* Parallax section */
section.parallax {
    position: relative;
    height: 300px;
    padding: 0 !important;
    border: 0 !important;
    overflow: hidden;
}

    section.parallax > img.bg {
        position: absolute;
        width: 100%;
        height: auto;
        top: 0;
        z-index: 1;
    }

/* end Parallax section */
/* SINTER BLOCKS */
#middle > section.fullwidth {
    max-width: 100% !important;
}

@media (min-width: 1402px) {
    #middle > section.fullwidth > .container-fluid {
        max-width: 100%;
        padding: 0;
    }
}
/* video banner */
.vidbnr.ratio-21by9 .embed-responsive,
.vidbnr.ratio-21by9 .vidoverlay .imgbg::before {
    padding-bottom: 42.857143%;
}

.vidbnr.ratio-16by9 .embed-responsive,
.vidbnr.ratio-16by9 .vidoverlay .imgbg::before {
    padding-bottom: 56.25%;
}

.vidbnr.ratio-4by3 .embed-responsive,
.vidbnr.ratio-4by3 .vidoverlay .imgbg::before {
    padding-bottom: 75%;
}

.vidbnr.ratio-1by1 .embed-responsive,
.vidbnr.ratio-1by1 .vidoverlay .imgbg::before {
    padding-bottom: 100%;
}

.vidbnr {
    position: relative;
}

    .vidbnr .vidbg {
        width: 100%;
        max-width: 1280px;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        margin: 0 auto;
        z-index: 3;
    }

    .vidbnr.fullscreen .vidbg,
    .vidbnr.fullcontainer .vidbg {
        max-width: 100%;
    }

#vidmodfullwin {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #000;
    z-index: 9999;
}

    #vidmodfullwin.hidden {
        display: none;
    }

    #vidmodfullwin .embed-responsive {
        width: 100%;
        height: 100%;
    }

    #vidmodfullwin button.closebtn {
        position: absolute;
        top: 0;
        right: 0;
        border: 0;
        width: 100px;
        height: 100px;
        background-color: #1d2d44;
        z-index: 2;
    }

        #vidmodfullwin button.closebtn:hover {
            background-color: #369;
        }

        #vidmodfullwin button.closebtn::before,
        #vidmodfullwin button.closebtn::after {
            position: absolute;
            top: 50%;
            left: 50%;
            content: '';
            display: block;
            width: 3px;
            height: 30px;
            margin-top: -15px;
            margin-left: -1px;
            background-color: #fff;
        }

        #vidmodfullwin button.closebtn::before {
            transform: rotate(45deg);
        }

        #vidmodfullwin button.closebtn::after {
            transform: rotate(-45deg);
        }

.vidbnr .vidoverlay {
    position: relative;
    z-index: 3;
}

    .vidbnr .vidoverlay .imgbg {
        position: relative;
        width: 100%;
        background-position: 50% 50%;
        background-size: cover;
        background-repeat: no-repeat;
    }

        .vidbnr .vidoverlay .imgbg::before {
            content: '';
            display: block;
        }

        .vidbnr .vidoverlay .imgbg video {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            width: 100%;
            height: auto;
        }

    .vidbnr .vidoverlay .wrapper.white {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        transform: translate(-50%, -50%);
        background-color: #fff;
        background-color: rgba(255, 255, 255, 0.9);
        border: 50px solid transparent;
        padding: 40px 80px;
        max-width: 880px;
        background-clip: padding-box;
        text-align: center;
    }

        .vidbnr .vidoverlay .wrapper.white .header h3 {
            margin-bottom: 20px;
            font-size: 36px;
            font-weight: 300;
            color: #2b5689;
            text-transform: uppercase;
        }

        .vidbnr .vidoverlay .wrapper.white .intro .lead {
            font-size: 22px;
        }

        .vidbnr .vidoverlay .wrapper.white .rt:not(.lead) {
            font-size: 18px;
            margin-top: 20px;
            margin-bottom: 20px;
        }

    .vidbnr .vidoverlay.hidden {
        /*visibility:hidden;*/
        z-index: 2;
    }

        .vidbnr .vidoverlay.hidden .imgbg::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.6);
        }

.vidbnr button.playbtn,
.vidbnr button.closebtn {
    position: absolute;
    border: 0;
    width: 100px;
    height: 100px;
    background-color: #1d2d44;
    z-index: 2;
}

    .vidbnr button.playbtn:hover,
    .vidbnr button.closebtn:hover {
        background-color: #369;
    }

.vidbnr button.playbtn {
    top: 50%;
    right: -50px;
    margin-top: -50px;
}

.vidbnr button.closebtn {
    top: 0;
    right: 0;
}

.vidbnr button.playbtn::before {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -13px;
    margin-left: -13px;
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 13px 0 13px 26px;
    border-color: transparent transparent transparent #fff;
}

.vidbnr button.closebtn::before,
.vidbnr button.closebtn::after {
    position: absolute;
    top: 50%;
    left: 50%;
    content: '';
    display: block;
    width: 3px;
    height: 30px;
    margin-top: -15px;
    margin-left: -1px;
    background-color: #fff;
}

.vidbnr button.closebtn::before {
    transform: rotate(45deg);
}

.vidbnr button.closebtn::after {
    transform: rotate(-45deg);
}

@media (max-width: 767px) {
    .vidbnr .vidoverlay .wrapper.white {
        border: 40px solid transparent;
        padding: 30px 50px;
    }

        .vidbnr .vidoverlay .wrapper.white .header h3 {
            margin-bottom: 20px;
            font-size: 34px;
        }

    #middle > section .vidbnr .vidoverlay .wrapper.white .intro .lead {
        font-size: 20px;
    }

    .vidbnr button.playbtn,
    .vidbnr button.closebtn {
        width: 80px;
        height: 80px;
    }

    .vidbnr button.playbtn {
        right: -40px;
        margin-top: -40px;
    }

        .vidbnr button.playbtn::before {
            margin-top: -10px;
            margin-left: -10px;
            border-width: 10px 0 10px 20px;
        }
}

@media (max-width: 543px) {
    .vidbnr .vidoverlay .wrapper.white {
        border: 30px solid transparent;
        padding: 30px 40px;
    }

        .vidbnr .vidoverlay .wrapper.white .header h3 {
            margin-bottom: 10px;
            font-size: 28px;
        }

    #middle > section .vidbnr .vidoverlay .wrapper.white .intro .lead {
        font-size: 19px;
    }

    .vidbnr button.playbtn,
    .vidbnr button.closebtn {
        width: 60px;
        height: 60px;
    }

    .vidbnr button.playbtn {
        right: -30px;
        margin-top: -30px;
    }

        .vidbnr button.playbtn::before {
            margin-top: -8px;
            margin-left: -8px;
            border-width: 8px 0 8px 16px;
        }
}

@media (max-width: 449px) {
    .vidbnr .vidoverlay .wrapper.white {
        border: 0;
        padding: 20px 20px 70px 20px;
    }

        .vidbnr .vidoverlay .wrapper.white .header h3 {
            margin-bottom: 5px;
            font-size: 24px;
        }

    #middle > section .vidbnr .vidoverlay .wrapper.white .intro .lead {
        font-size: 18px;
    }

    .vidbnr button.playbtn {
        right: auto;
        top: auto;
        bottom: 20px;
        left: 50%;
        margin-top: 0;
        margin-left: -30px;
    }
}

@media (max-width: 400px) {
    .vidbnr .vidoverlay .wrapper.white {
        padding: 20px 20px 55px 20px;
    }

    .vidbnr button.playbtn,
    .vidbnr button.closebtn {
        width: 45px;
        height: 45px;
    }

    .vidbnr button.playbtn {
        margin-left: -23px;
    }

        .vidbnr button.playbtn::before {
            margin-top: -8px;
            margin-left: -8px;
            border-width: 8px 0 8px 16px;
        }

    .vidbnr .vidoverlay .wrapper.white .header h3 {
        margin-bottom: 3px;
        font-size: 22px;
    }

    #middle > section .vidbnr .vidoverlay .wrapper.white .intro .lead {
        font-size: 17px;
        line-height: 1.4;
    }
}

@media (max-width: 370px) {
    .vidbnr .vidoverlay .wrapper.white .header h3 {
        margin-bottom: 3px;
        font-size: 20px;
    }

    #middle > section .vidbnr .vidoverlay .wrapper.white .intro .lead {
        font-size: 16px;
    }
}

@media (max-width: 340px) {
    .vidbnr .vidoverlay .wrapper.white {
        padding: 20px 20px 80px 20px;
    }

    #middle > section .vidbnr .vidoverlay .wrapper.white .intro .lead {
        display: none;
    }
}
/* end video banner */
.sacarouselitem .cnt a {
    margin-right: 20px;
}

    .sacarouselitem .cnt a:last-child {
        margin-right: 0;
    }

    .sacarouselitem .cnt a.download {
        display: inline-block;
        padding: 10px 0 10px 22px;
        background: transparent url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAQCAYAAAAmlE46AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAJVJREFUeNpi1A7rZMABtkBpH2ySTAxkglGN9NCoBMTxWNTFQeXggAWJzQXE+4FYDojlkcRrgbgJiB8BsSYQfwMJMqKlHGcg3gDEPED8AyrGAcSfgTgQiPficipIwgmIX0M1cEDZzsiacAXOaSC2BeKHQPwAiG2gYgy4/IgMbgKxNZT9FJsCkEYXAiGviUvjbnLiESDAACuGFxin3KEgAAAAAElFTkSuQmCC") no-repeat 0 50%;
    }

@media (min-width: 1202px) {
    section.fullwidth > .container-fluid .gkncarousel.type-2 .slides .cntnr .item .cnt,
    .sacarouselitem .cnt {
        position: absolute;
        top: 50%;
        left: 0;
        bottom: initial;
        transform: translateY(-50%);
        width: 36%;
    }
}

@media (max-width: 1201px) {
    .sacarouselitem {
        position: relative;
        overflow: hidden;
    }

        .sacarouselitem .cnt {
            position: relative;
            margin-top: 40px;
            margin-bottom: 40px;
            width: 50%;
            height: auto;
            padding: 35px;
            border: 35px solid transparent;
            border-width: 0;
            background-color: rgba(255, 255, 255, 0.8);
            overflow-y: visible;
            overflow-x: visible;
            top: 0;
            bottom: 0;
        }

        .sacarouselitem img {
            position: absolute;
            left: -10000%;
            right: -10000%;
            top: -10000%;
            bottom: -10000%;
            margin: auto auto;
            min-width: 1000%;
            min-height: 1000%;
            -webkit-transform: scale(0.1);
            -ms-transform: scale(0.1);
            transform: scale(0.1);
            width: auto;
        }
}

@media (max-width: 991px) {
    .gkncarousel.type-2 .slides .cntnr .item .cnt {
        width: 90%;
        padding: 15px;
    }

    .sacarouselitem .cnt {
        width: 90%;
        padding: 15px;
    }
}

@media (max-width: 767px) {
    .gkncarousel.type-2 .slides .cntnr .item .cnt {
        width: 100%;
        height: 100%;
        top: 0;
    }
}

@media (max-width: 512px) {
    .gkncarousel.type-2 .slides .cntnr .item .cnt {
        width: 100%;
        height: 100%;
        top: 0;
    }
}
/* btnexpander */
.btnexpander .expbtn {
    display: block;
    border: 0;
    width: 100%;
    min-height: 110px;
    padding: 0;
    margin-bottom: 30px;
    background-color: #28558b;
    color: #fff;
    text-align: center;
}

    .btnexpander .expbtn:hover {
        background-color: #23456c;
    }

.btnexpander .expitem.active .expbtn {
    background-color: #fff;
    color: #23456c;
}

.btnexpander .details {
    display: none;
}

.expmodal {
    display: block;
    clear: both;
    color: #222;
    height: auto;
    max-height: 0px;
    overflow: hidden;
    transition: max-height 1s ease;
}

    .expmodal.opened {
        max-height: 1000px;
        transition: max-height 1s ease;
    }

    .expmodal .wrapper {
        padding: 30px;
        margin: 0 15px 20px 15px;
        background-color: #fff;
        min-height: 200px;
    }

    .expmodal h3 {
        margin: 0 0 30px 0;
        font-size: 36px;
        font-weight: 300;
        color: #2b5689;
    }

    .expmodal .expnavbtns {
        position: absolute;
        top: 0;
        right: 0;
    }

        .expmodal .expnavbtns button {
            display: inline-block;
            position: relative;
            width: 40px;
            height: 40px;
            padding: 0;
            border: 0;
            background-color: #fff;
        }

            .expmodal .expnavbtns button.prev,
            .expmodal .expnavbtns button.next,
            .expmodal .expnavbtns button.clos {
                font: 0/0 a;
                color: transparent;
                text-shadow: none;
            }

                .expmodal .expnavbtns button.prev::before,
                .expmodal .expnavbtns button.prev::after,
                .expmodal .expnavbtns button.next::before,
                .expmodal .expnavbtns button.next::after,
                .expmodal .expnavbtns button.clos::before,
                .expmodal .expnavbtns button.clos::after {
                    position: absolute;
                    display: block;
                    content: '';
                    background-color: #ddd;
                    height: 17px;
                    width: 3px;
                }

                .expmodal .expnavbtns button.prev:hover::before,
                .expmodal .expnavbtns button.prev:hover::after,
                .expmodal .expnavbtns button.next:hover::before,
                .expmodal .expnavbtns button.next:hover::after,
                .expmodal .expnavbtns button.clos:hover::before,
                .expmodal .expnavbtns button.clos:hover::after {
                    background-color: #999;
                }

                .expmodal .expnavbtns button.prev::before {
                    transform: rotate(45deg);
                    bottom: 17px;
                    right: 40%;
                }

                .expmodal .expnavbtns button.prev::after {
                    transform: rotate(-45deg);
                    top: 17px;
                    right: 40%;
                }

            .expmodal .expnavbtns button.next {
                border-right: 1px solid #ddd;
            }

                .expmodal .expnavbtns button.next::before {
                    transform: rotate(-45deg);
                    bottom: 17px;
                    left: 40%;
                }

                .expmodal .expnavbtns button.next::after {
                    transform: rotate(45deg);
                    top: 17px;
                    left: 40%;
                }

            .expmodal .expnavbtns button.clos {
                margin-left: 10px;
            }

                .expmodal .expnavbtns button.clos::before,
                .expmodal .expnavbtns button.clos::after {
                    height: 30px;
                    top: 50%;
                    left: 50%;
                    margin-top: -15px;
                    margin-left: -1px;
                }

                .expmodal .expnavbtns button.clos::before {
                    transform: rotate(45deg);
                }

                .expmodal .expnavbtns button.clos::after {
                    transform: rotate(-45deg);
                }

    .expmodal .expmid .img img {
        width: 100%;
        height: auto;
    }

    .expmodal .expmid {
        padding-bottom: 20px;
    }

    .expmodal .expfooter a {
        margin: 5px 10px 5px 0;
    }

        .expmodal .expfooter a.download {
            display: inline-block;
            padding: 10px 0 10px 22px;
            background: transparent url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAQCAYAAAAmlE46AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAJVJREFUeNpi1A7rZMABtkBpH2ySTAxkglGN9NCoBMTxWNTFQeXggAWJzQXE+4FYDojlkcRrgbgJiB8BsSYQfwMJMqKlHGcg3gDEPED8AyrGAcSfgTgQiPficipIwgmIX0M1cEDZzsiacAXOaSC2BeKHQPwAiG2gYgy4/IgMbgKxNZT9FJsCkEYXAiGviUvjbnLiESDAACuGFxin3KEgAAAAAElFTkSuQmCC") no-repeat 0 50%;
        }

/* breakpoints indicators for js */
.btnexpander::before {
    content: 'one';
    display: none;
}

@media (min-width: 768px) {
    .btnexpander::before {
        content: 'two';
    }
}

@media (min-width: 992px) {
    .btnexpander::before {
        content: 'three';
    }
}
/* end btnexpander */
/*
.valComWidget {
	position: relative;
	.circle > div {}
}
*/
.circle-widget-1 {
    position: relative;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 600px) {
    .circle-widget-1 {
        overflow: hidden;
        padding-top: 5px;
        padding-bottom: 5px;
        margin-left: -15px;
        margin-right: -15px;
    }
}

.circle-widget-1 .head-arch img {
    display: block;
    max-width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

.circle-widget-1 .wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 600px) {
    .circle-widget-1 .wrapper {
        margin-left: -20%;
        margin-right: -20%;
    }
}

.circle-widget-1 .cc-cnt {
    position: absolute;
    width: 32%;
    text-align: center;
    z-index: 3;
}

@media (min-width: 601px) and (max-width: 767px) {
    .circle-widget-1 .cc-cnt {
        width: 40%;
    }
}

@media (max-width: 600px) {
    .circle-widget-1 .cc-cnt {
        width: 40%;
    }
}

.circle-widget-1 .cc-cnt .title {
    margin-bottom: 13px;
    font-size: 26px;
    line-height: 30px;
    letter-spacing: -0.2px;
    text-transform: uppercase;
    color: #1A2D44;
}

@media (min-width: 768px) and (max-width: 991px) {
    .circle-widget-1 .cc-cnt .title {
        font-size: 22px;
        line-height: 25px;
    }
}

@media (min-width: 601px) and (max-width: 767px) {
    .circle-widget-1 .cc-cnt .title {
        font-size: 22px;
        line-height: 25px;
    }
}

@media (max-width: 430px) {
    .circle-widget-1 .cc-cnt .title {
        font-size: 22px;
        line-height: 25px;
    }
}

.circle-widget-1 .cc-cnt .copy {
    margin-bottom: 13px;
    font-size: 17px;
    line-height: 27px;
    color: #222;
}

@media (min-width: 768px) and (max-width: 991px) {
    .circle-widget-1 .cc-cnt .copy {
        font-size: 16px;
        line-height: 25px;
    }
}

@media (min-width: 601px) and (max-width: 767px) {
    .circle-widget-1 .cc-cnt .copy {
        font-size: 16px;
        line-height: 25px;
    }
}

@media (max-width: 430px) {
    .circle-widget-1 .cc-cnt .copy {
        font-size: 16px;
        line-height: 25px;
    }
}

.circle-widget-1 .cc-cnt .copy p {
    margin: 0;
}

@media (max-width: 399px) {
    .circle-widget-1 .cc-cnt .link .btn-lg {
        font-size: 14px;
        padding: .5rem .8rem;
    }
}

.circle-widget-1 .midcircle {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    padding: 20%;
}

@media (min-width: 601px) and (max-width: 767px) {
    .circle-widget-1 .midcircle {
        padding: 15%;
    }
}

@media (max-width: 600px) {
    .circle-widget-1 .midcircle {
        padding: 12%;
    }
}

.circle-widget-1 .midcircle svg {
    display: block;
    width: 100%;
    height: auto;
}

.circle-widget-1 .midcircle .ccbtn .ccbtnbg {
    fill: #dadada;
    transition: fill 0.5s;
    cursor: pointer;
}

.circle-widget-1 .midcircle .ccbtn:hover .ccbtnbg {
    fill: #efefef;
}

.circle-widget-1 .midcircle .ccbtn .ccbtnstroke {
    stroke-dasharray: 460;
    stroke-dashoffset: 460;
}

.circle-widget-1 .midcircle .ccbtn.fromleft .ccbtnstroke {
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 0.5s;
}

.circle-widget-1 .midcircle .ccbtn.fromright .ccbtnstroke {
    stroke-dashoffset: 920;
    transition: stroke-dashoffset 0.5s;
}

.circle-widget-1 .midcircle .ccbtn.backleft .ccbtnstroke {
    stroke-dashoffset: 460;
    transition: stroke-dashoffset 0.5s;
}

.circle-widget-1 .midcircle .ccbtn.backright .ccbtnstroke {
    stroke-dashoffset: -460;
    transition: stroke-dashoffset 0.5s;
}

.circle-widget-1 .midcircle .ccbtn .textpath {
    fill: #1d2d44;
    transition: fill 0.5s;
}

.circle-widget-1 .midcircle .ccbtn.active .textpath {
    fill: #fff;
}

.circle-widget-1 .cc-photos {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.5);
    overflow: hidden;
    z-index: 1;
}

    .circle-widget-1 .cc-photos img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
    }

        .circle-widget-1 .cc-photos img:not(.active) {
            display: none;
        }

.circle-widget-1 .cc-cnt > div:not(.active) {
    display: none;
}

.circle-widget-2 {
    position: relative;
    padding: 70px 70px;
    width: 100%;
    max-width: 910px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .circle-widget-2 {
        padding: 75px 60px;
    }
}

@media (max-width: 767px) {
    .circle-widget-2 {
        padding: 0;
    }

        .circle-widget-2::before {
            display: none !important;
        }
}

.circle-widget-2 svg.circle {
    position: relative;
    display: block;
    width: 100%;
    height: 100;
}

@media (max-width: 767px) {
    .circle-widget-2 svg.circle {
        display: none;
    }
}

.circle-widget-2 .cc-btns {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
}

@media (max-width: 767px) {
    .circle-widget-2 .cc-btns {
        position: relative;
        padding-bottom: 50px;
    }

        .circle-widget-2 .cc-btns::after {
            display: block;
            content: '';
            height: 0;
            clear: both;
        }
}

.circle-widget-2 .cc-btns .button {
    position: absolute;
    width: 140px;
    height: 140px;
    display: flex;
    justify-content: center;
    cursor: pointer;
}

    .circle-widget-2 .cc-btns .button:nth-of-type(1) {
        top: 0;
        left: calc(50% - 70px);
    }

    .circle-widget-2 .cc-btns .button:nth-of-type(2) {
        top: calc(31% - 110px);
        right: 0;
    }

    .circle-widget-2 .cc-btns .button:nth-of-type(3) {
        top: calc(68% - 110px);
        right: 0;
    }

    .circle-widget-2 .cc-btns .button:nth-of-type(4) {
        bottom: 0;
        left: calc(50% - 70px);
    }

    .circle-widget-2 .cc-btns .button:nth-of-type(5) {
        top: calc(68% - 110px);
        left: 0;
    }

    .circle-widget-2 .cc-btns .button:nth-of-type(6) {
        top: calc(31% - 110px);
        left: 0;
    }

@media (min-width: 768px) and (max-width: 991px) {
    .circle-widget-2 .cc-btns .button {
        width: 150px;
        height: 150px;
    }

        .circle-widget-2 .cc-btns .button:nth-of-type(1) {
            top: 0;
            left: calc(50% - 75px);
        }

        .circle-widget-2 .cc-btns .button:nth-of-type(2) {
            top: calc(31% - 75px);
            right: -12px;
        }

        .circle-widget-2 .cc-btns .button:nth-of-type(3) {
            top: calc(68% - 75px);
            right: -12px;
        }

        .circle-widget-2 .cc-btns .button:nth-of-type(4) {
            bottom: 0;
            left: calc(50% - 75px);
        }

        .circle-widget-2 .cc-btns .button:nth-of-type(5) {
            top: calc(68% - 75px);
            left: -12px;
        }

        .circle-widget-2 .cc-btns .button:nth-of-type(6) {
            top: calc(31% - 75px);
            left: -12px;
        }
}

@media (max-width: 767px) {
    .circle-widget-2 .cc-btns .button {
        position: relative;
        width: 33%;
        height: auto !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        float: left;
        padding: 15px;
        margin-bottom: 20px;
    }
}

@media (max-width: 349px) {
    .circle-widget-2 .cc-btns .button {
        width: 50%;
    }
}

.circle-widget-2 .cc-btns .button:hover .icon, .circle-widget-2 .cc-btns .button.active .icon {
    border-color: #facc39;
}

.circle-widget-2 .cc-btns .button:hover .label, .circle-widget-2 .cc-btns .button.active .label {
    background-color: #facc39;
}

.circle-widget-2 .cc-btns .icon {
    position: relative;
    width: 100%;
    height: 100%;
    border: 3px solid #fff;
    border-radius: 50%;
    background-color: #fff;
    overflow: hidden;
}

    .circle-widget-2 .cc-btns .icon img {
        display: block;
        max-width: 100%;
        height: auto;
        margin: auto;
    }

.circle-widget-2 .cc-btns .label {
    display: block;
    position: absolute;
    top: calc(100% - 12px);
    padding: 6px 12px;
    color: #1d2d44;
    text-transform: uppercase;
    background-color: #fff;
    white-space: nowrap;
}

@media (min-width: 768px) and (max-width: 991px) {
    .circle-widget-2 .cc-btns .label {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .circle-widget-2 .cc-btns .label {
        font-size: 14px;
        top: calc(100% - 22px);
    }
}

@media (max-width: 520px) {
    .circle-widget-2 .cc-btns .label {
        font-size: 12px;
    }
}

@media (max-width: 349px) {
    .circle-widget-2 .cc-btns .label {
        font-size: 14px;
    }
}

.circle-widget-2 .cc-cnt {
    position: absolute;
    left: 180px;
    right: 180px;
    top: 190px;
    bottom: 190px;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (min-width: 768px) and (max-width: 991px) {
    .circle-widget-2 .cc-cnt {
        left: 160px;
        right: 160px;
        top: 190px;
        bottom: 158px;
    }
}

@media (max-width: 767px) {
    .circle-widget-2 .cc-cnt {
        position: relative;
        display: block;
        left: initial;
        right: initial;
        top: initial;
        bottom: initial;
    }
}

.circle-widget-2 .cc-cnt > div:not(.active) {
    display: none;
}

.circle-widget-2 .cc-cnt .title {
    font-size: 36px;
    font-weight: 400;
    line-height: 39px;
    text-align: center;
    margin-bottom: 30px;
}

.circle-widget-2 .cc-cnt .link {
    text-align: center;
}

/* powder met 2.0 */
.powdermet-20,
.powdermet-20 .wrap {
    position: relative;
}

    .powdermet-20 img.mainbg {
        position: relative;
        width: 100%;
        height: auto;
    }

    .powdermet-20 .cntbtns {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

        .powdermet-20 .cntbtns .item {
            position: absolute;
            width: 12.613%;
            height: 26.317%;
        }

            .powdermet-20 .cntbtns .item:nth-child(1) {
                top: 10%;
                left: 12%;
            }

            .powdermet-20 .cntbtns .item:nth-child(2) {
                top: 10%;
                left: 44.1%;
            }

            .powdermet-20 .cntbtns .item:nth-child(3) {
                top: 9%;
                left: 76%;
            }

            .powdermet-20 .cntbtns .item:nth-child(4) {
                top: 63.6%;
                left: 28.2%;
            }

            .powdermet-20 .cntbtns .item:nth-child(5) {
                top: 63.6%;
                left: 59.8%;
            }

            .powdermet-20 .cntbtns .item .crcle {
                width: 100%;
                height: 100%;
                border-radius: 200px;
                background-image: url(../img/powdermet-20-btns.png);
                background-repeat: no-repeat;
                background-position-y: top;
                overflow: hidden;
                cursor: pointer;
            }

@media (max-width: 1199px) {
    .powdermet-20 .cntbtns .item .crcle {
        background-size: 500%;
    }
}

.powdermet-20 .cntbtns .item:nth-child(1) .crcle {
    background-position-x: 0%;
}

.powdermet-20 .cntbtns .item:nth-child(2) .crcle {
    background-position-x: 25%;
}

.powdermet-20 .cntbtns .item:nth-child(3) .crcle {
    background-position-x: 50%;
}

.powdermet-20 .cntbtns .item:nth-child(4) .crcle {
    background-position-x: 75%;
}

.powdermet-20 .cntbtns .item:nth-child(5) .crcle {
    background-position-x: 100%;
}

.powdermet-20 .cntbtns .item:hover .crcle,
.powdermet-20 .cntbtns .item.active .crcle {
    background-position-y: bottom;
}

.powdermet-20 .cntbtns .item .label {
    position: absolute;
    padding: 5px 20px;
    border-radius: 100px;
    font-size: 20px;
    white-space: nowrap;
    color: #fff;
    background-color: #1A2D44;
    z-index: 1;
}

.powdermet-20 .cntbtns .item:nth-child(1) .label {
    top: -22%;
    right: 60%;
}

.powdermet-20 .cntbtns .item:nth-child(2) .label {
    top: -22%;
    right: 60%;
}

.powdermet-20 .cntbtns .item:nth-child(3) .label {
    top: -22%;
    right: 60%;
}

.powdermet-20 .cntbtns .item:nth-child(4) .label {
    top: -22%;
    right: 60%;
}

.powdermet-20 .cntbtns .item:nth-child(5) .label {
    top: -22%;
    left: 60%;
}

@media (max-width: 991px) {
    .powdermet-20 .cntbtns .item .label {
        padding: 5px 20px;
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .powdermet-20 .cntbtns .item .label {
        visibility: hidden;
    }

    .powdermet-20 .cntbtns .item:hover .label,
    .powdermet-20 .cntbtns .item.active .label {
        visibility: visible;
    }

    .powdermet-20 .cntbtns .item:nth-child(1) .label {
        top: -22%;
        right: auto;
        left: 72%;
    }

    .powdermet-20 .cntbtns .item:nth-child(2) .label {
        top: -22%;
        right: 60%;
    }

    .powdermet-20 .cntbtns .item:nth-child(3) .label {
        top: -22%;
        right: 60%;
    }

    .powdermet-20 .cntbtns .item:nth-child(4) .label {
        top: -22%;
        right: 60%;
    }

    .powdermet-20 .cntbtns .item:nth-child(5) .label {
        top: -22%;
        left: auto;
        right: 60%;
    }
}

.powdermet-20 .cntbtns .item:hover .label,
.powdermet-20 .cntbtns .item.active .label {
    background-color: #2B5689;
}

.powdermet-20 .cntbtns .item .mod {
    position: absolute;
    display: none;
    padding: 20px;
    width: 400px;
    font-size: 18px;
    color: #fff;
    background-color: rgba(26, 45, 68, 0.9);
    z-index: 2;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.powdermet-20 .cntbtns .item:nth-child(1) .mod {
    top: 110%;
    left: 50%;
}

.powdermet-20 .cntbtns .item:nth-child(2) .mod {
    top: 110%;
    left: 50%;
}

.powdermet-20 .cntbtns .item:nth-child(3) .mod {
    top: 110%;
    left: 50%;
}

.powdermet-20 .cntbtns .item:nth-child(4) .mod {
    bottom: 128%;
    left: 50%;
}

.powdermet-20 .cntbtns .item:nth-child(5) .mod {
    bottom: 128%;
    left: 50%;
}

.powdermet-20 .cntbtns .item:hover .mod,
.powdermet-20 .cntbtns .item.active .mod {
    display: block;
}

.powdermet-20 .cntbtns .item:nth-child(1) .mod:after,
.powdermet-20 .cntbtns .item:nth-child(2) .mod:after,
.powdermet-20 .cntbtns .item:nth-child(3) .mod:after,
.powdermet-20 .cntbtns .item:nth-child(4) .mod:after,
.powdermet-20 .cntbtns .item:nth-child(5) .mod:after {
    display: block;
    content: '';
    position: absolute;
    left: 50%;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent;
    margin-left: -17px;
}

.powdermet-20 .cntbtns .item:nth-child(1) .mod:after,
.powdermet-20 .cntbtns .item:nth-child(2) .mod:after,
.powdermet-20 .cntbtns .item:nth-child(3) .mod:after {
    top: -17px;
    border-width: 0 17.5px 17px 17.5px;
    border-bottom-color: rgba(26, 45, 68, 0.9);
}

.powdermet-20 .cntbtns .item:nth-child(4) .mod:after,
.powdermet-20 .cntbtns .item:nth-child(5) .mod:after {
    bottom: -17px;
    border-width: 17px 17.5px 0 17.5px;
    border-top-color: rgba(26, 45, 68, 0.9);
}

@media (max-width: 870px) {
    .powdermet-20 .cntbtns .item .mod {
        width: 300px;
        font-size: 16px;
    }
}

@media (max-width: 639px) {
    .powdermet-20 .cntbtns .item .mod {
        width: 260px;
    }

    .powdermet-20 .cntbtns .item:nth-child(1) .mod {
        transform: translateX(0);
        left: -100%;
    }

    .powdermet-20 .cntbtns .item:nth-child(3) .mod {
        transform: translateX(0);
        left: auto;
        right: -100%;
    }

    .powdermet-20 .cntbtns .item:nth-child(1) .mod:after {
        left: 40%;
    }

    .powdermet-20 .cntbtns .item:nth-child(3) .mod:after {
        margin-left: 0;
        margin-right: -17px;
        left: auto;
        right: 38%;
    }
}

@media (max-width: 339px) {
    .powdermet-20 .cntbtns .item:nth-child(4) .mod {
        left: 105%;
    }
}

.powdermet-20 a.btn.btn-lg {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 1;
}

@media (max-width: 991px) {
    .powdermet-20 {
        padding-bottom: 80px;
    }

        .powdermet-20 a.btn.btn-lg {
            bottom: 16px;
            right: 0;
        }
}
/* end powder met 2.0 */
/* end SINTER BLOCKS */
/*  1.11 ARTICLES
	-------------------------------------------------------------------------- */
article {
    text-align: left;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 30px;
}

    article > img,
    article > p > img,
    article > .lead > img,
    article > .lead > p > img {
        display: block;
        max-width: 100%;
        height: auto;
        margin: 2rem auto;
    }

    article .lead {
        font-size: 22px;
        line-height: 36px;
        font-weight: 300;
        margin-bottom: 30px;
    }

        article .lead p:last-child {
            margin-bottom: 0;
        }

    article :last-child {
        margin-bottom: 0;
    }

    article h2 {
        margin: 25px 0 20px 0;
        font-size: 22px;
        font-weight: 400;
        color: #2b5689;
    }

/*  1.12 AUTOMOTIVE "IDEAS IN MOTION HERO"
	-------------------------------------------------------------------------- */
.iim-slide {
    margin-top: -50px;
    position: relative;
    overflow: hidden;
    background-color: #1a2d44;
}

    .iim-slide > img {
        position: relative;
        width: 100%;
        height: auto;
        z-index: 1;
        animation-name: iimimgzoom;
        animation-duration: 3s;
        animation-timing-function: ease-out;
        animation-fill-mode: both;
        animation-delay: 0;
    }

    .iim-slide > .cnt {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 2;
    }

        .iim-slide > .cnt > .wrpr {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

            .iim-slide > .cnt > .wrpr > .title {
                font-size: 46px;
                line-height: 46px;
                font-weight: 100;
                text-align: center;
                text-transform: uppercase;
                animation-name: iimsliderev;
                animation-duration: 0.6s;
                animation-timing-function: ease-out;
                animation-fill-mode: both;
                animation-delay: 2s;
            }

            .iim-slide > .cnt > .wrpr > .standard-case {
                text-transform: none;
            }

@media (max-width: 760px) {
    .iim-slide {
        margin-left: -100px;
        margin-right: -100px;
    }

        .iim-slide > .cnt > .wrpr {
            padding-left: 120px;
            padding-right: 120px;
        }

            .iim-slide > .cnt > .wrpr > .title {
                font-size: 30px;
                line-height: 34px;
            }

            .iim-slide > .cnt > .wrpr > .cnt h3 {
                font-size: 24px;
                line-height: 28px;
            }
}

@media (max-width: 440px) {
    .iim-slide {
        margin-left: -200px;
        margin-right: -200px;
    }

        .iim-slide > .cnt > .wrpr {
            padding-left: 220px;
            padding-right: 220px;
        }

            .iim-slide > .cnt > .wrpr > .title {
                font-size: 28px;
                line-height: 30px;
            }

            .iim-slide > .cnt > .wrpr > .cnt {
                margin-top: 10px !important;
            }

                .iim-slide > .cnt > .wrpr > .cnt h3 {
                    font-size: 22px;
                    line-height: 24px;
                    margin-bottom: 0;
                }
}

@media (max-width: 300px) {
    .iim-slide {
        margin-left: -300px;
        margin-right: -300px;
    }

        .iim-slide > .cnt > .wrpr {
            padding-left: 320px;
            padding-right: 320px;
        }

            .iim-slide > .cnt > .wrpr > .title {
                font-size: 24px;
                line-height: 28px;
            }

            .iim-slide > .cnt > .wrpr > .cnt {
                margin-top: 10px !important;
            }

                .iim-slide > .cnt > .wrpr > .cnt h3 {
                    font-size: 20px;
                    line-height: 22px;
                    margin-bottom: 0;
                }
}

.iim-slide > .cnt > .wrpr > .iim {
    margin-top: 20px;
    font-size: 31px;
    font-style: italic;
    animation-name: iimslide;
    animation-duration: 0.8s;
    animation-timing-function: ease-out;
    animation-fill-mode: both;
    animation-delay: 1s;
}

.iim-slide .iim span {
    animation-name: charappear;
    animation-duration: .3s;
    animation-timing-function: ease-out;
    animation-fill-mode: both;
}

    .iim-slide .iim span > svg {
        margin-left: 10px;
    }

    .iim-slide .iim span:nth-child(1) {
        animation-delay: 1s;
    }

    .iim-slide .iim span:nth-child(2) {
        animation-delay: 1.06s;
    }

    .iim-slide .iim span:nth-child(3) {
        animation-delay: 1.12s;
    }

    .iim-slide .iim span:nth-child(4) {
        animation-delay: 1.18s;
    }

    .iim-slide .iim span:nth-child(5) {
        animation-delay: 1.24s;
    }

    .iim-slide .iim span:nth-child(6) {
        animation-delay: 1.30s;
    }

    .iim-slide .iim span:nth-child(7) {
        animation-delay: 1.36s;
    }

    .iim-slide .iim span:nth-child(8) {
        animation-delay: 1.42s;
    }

    .iim-slide .iim span:nth-child(9) {
        animation-delay: 1.48s;
    }

    .iim-slide .iim span:nth-child(10) {
        animation-delay: 1.54s;
    }

    .iim-slide .iim span:nth-child(11) {
        animation-delay: 1.6s;
    }

    .iim-slide .iim span:nth-child(12) {
        animation-delay: 1.66s;
    }

    .iim-slide .iim span:nth-child(13) {
        animation-delay: 1.72s;
    }

    .iim-slide .iim span:nth-child(14) {
        animation-delay: 1.78s;
    }

.iim-slide > .cnt > .wrpr > .cnt {
    text-align: center;
    margin-top: 20px;
    animation-name: iimslide2;
    animation-duration: 0.6s;
    animation-timing-function: ease-out;
    animation-fill-mode: both;
    animation-delay: 2.5s;
}

@keyframes iimslide {
    0% {
        transform: translateX(50%);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes iimslide2 {
    0% {
        transform: translateX(20%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes iimsliderev {
    0% {
        transform: translateX(-20%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes charappear {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes iimimgzoom {
    0% {
        transform: scale(1.2);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.gkncarousel.type-1.nnp {
    margin-top: -50px;
    margin-bottom: 0;
    padding-bottom: 36px;
}

    .gkncarousel.type-1.nnp .indicators {
        bottom: 0;
    }

.gkncarousel.nnp .iim-slide {
    margin-top: 0;
}

/* 	==========================================================================
	2. PAGE SPECIFIC
	========================================================================== */
/*  2.0 HOMEPAGE
	-------------------------------------------------------------------------- */
/* Homepage Banners */
#home-hero h1,
#divisions-hero h1 {
    padding: 52px 30px 56px 30px;
    margin: 0;
    font-size: 46px;
    line-height: 46px;
    font-weight: 100;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    background-color: #1a2d44;
}

    #home-hero h1::after,
    #divisions-hero h1::after {
        display: block;
        content: '';
        height: 4px;
        width: 100%;
        position: absolute;
        bottom: 0;
        left: 0;
        background: linear-gradient(to right, #fbba00 5%, #ffffff 62%, #1a2d44 97%);
    }

#home-hero .items,
#divisions-hero .items {
    position: relative;
    overflow: hidden;
}

#home-hero .item,
#divisions-hero .item {
    position: relative;
    display: none;
}

    #home-hero .item.active,
    #divisions-hero .item.active {
        display: block;
    }

    #home-hero .item .image img,
    #divisions-hero .item .image img {
        display: block;
        position: relative;
        margin-left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    #home-hero .item .copy,
    #divisions-hero .item .copy {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        text-align: center;
        z-index: 1;
    }

        #home-hero .item .copy > .container,
        #home-hero .item .copy > .container > .row,
        #home-hero .item .copy > .container > .row > div,
        #divisions-hero .item .copy > .container,
        #divisions-hero .item .copy > .container > .row,
        #divisions-hero .item .copy > .container > .row > div {
            height: 100%;
        }

    #home-hero .item .wrapper.white,
    #divisions-hero .item .wrapper.white {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        transform: translate(-50%, -50%);
        background-color: #fff;
        background-color: rgba(255, 255, 255, 0.9);
        padding: 40px;
    }

    #home-hero .item .header h3,
    #divisions-hero .item .header h3 {
        nargin-bottom: 20px;
        font-size: 36px;
        font-weight: 300;
        color: #2b5689;
        text-transform: uppercase;
    }

    #home-hero .item .intro .lead,
    #divisions-hero .item .intro .lead {
        font-size: 22px;
    }

    #home-hero .item .rt:not(.lead),
    #divisions-hero .item .rt:not(.lead) {
        font-size: 18px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

#home-hero .shortcuts,
#divisions-hero .shortcuts {
    display: table;
    table-layout: fixed;
    width: 100%;
}

    #home-hero .shortcuts a,
    #divisions-hero .shortcuts a {
        display: table-cell;
        position: relative;
        height: 60px;
        vertical-align: middle;
        color: #222;
        background-color: #f3f3ee;
    }

        #home-hero .shortcuts a:hover,
        #home-hero .shortcuts a:active,
        #home-hero .shortcuts a:focus,
        #divisions-hero .shortcuts a:hover,
        #divisions-hero .shortcuts a:active,
        #divisions-hero .shortcuts a:focus {
            text-decoration: none;
        }

        #home-hero .shortcuts a span,
        #divisions-hero .shortcuts a span {
            display: block;
            padding: 0 44px;
            text-align: center;
            max-height: 60px;
            line-height: 20px;
            font-size: 16px;
        }

        #home-hero .shortcuts a:first-of-type span,
        #divisions-hero .shortcuts a:first-of-type span {
            padding-left: 0;
        }

        #home-hero .shortcuts a:last-of-type span,
        #divisions-hero .shortcuts a:last-of-type span {
            padding-right: 0;
        }

        #home-hero .shortcuts a::before,
        #home-hero .shortcuts a::after,
        #home-hero .shortcuts a span::before,
        #home-hero .shortcuts a span::after,
        #divisions-hero .shortcuts a::before,
        #divisions-hero .shortcuts a::after,
        #divisions-hero .shortcuts a span::before,
        #divisions-hero .shortcuts a span::after {
            position: absolute;
            top: 0;
            display: block;
            content: '';
            width: 0;
            height: 0;
            overflow: hidden;
            border-style: solid;
        }

        #home-hero .shortcuts a::before,
        #divisions-hero .shortcuts a::before {
            left: -45px;
            border-width: 60px 88px 0px 0;
            border-color: transparent #fff transparent transparent;
            z-index: 1;
        }

        #home-hero .shortcuts a::after,
        #divisions-hero .shortcuts a::after {
            right: -45px;
            border-width: 0px 0 60px 88px;
            border-color: transparent transparent transparent #fff;
            z-index: 1;
        }

        #home-hero .shortcuts a span::before,
        #divisions-hero .shortcuts a span::before {
            left: -43px;
            border-width: 60px 88px 0px 0;
            border-color: transparent #f3f3ee transparent transparent;
            z-index: 2;
        }

        #home-hero .shortcuts a span::after,
        #divisions-hero .shortcuts a span::after {
            right: -43px;
            border-width: 0px 0 60px 88px;
            border-color: transparent transparent transparent #f3f3ee;
            z-index: 2;
        }

        #home-hero .shortcuts a:first-of-type::before,
        #home-hero .shortcuts a:last-of-type::after,
        #home-hero .shortcuts a:first-of-type span::before,
        #home-hero .shortcuts a:last-of-type span::after,
        #divisions-hero .shortcuts a:first-of-type::before,
        #divisions-hero .shortcuts a:last-of-type::after,
        #divisions-hero .shortcuts a:first-of-type span::before,
        #divisions-hero .shortcuts a:last-of-type span::after {
            display: none;
        }

        #home-hero .shortcuts a:hover,
        #home-hero .shortcuts a.active,
        #divisions-hero .shortcuts a:hover,
        #divisions-hero .shortcuts a.active {
            background-color: #fc3;
        }

            #home-hero .shortcuts a:hover span::before,
            #home-hero .shortcuts a.active span::before,
            #divisions-hero .shortcuts a:hover span::before,
            #divisions-hero .shortcuts a.active span::before {
                border-color: transparent #fc3 transparent transparent;
            }

            #home-hero .shortcuts a:hover span::after,
            #home-hero .shortcuts a.active span::after,
            #divisions-hero .shortcuts a:hover span::after,
            #divisions-hero .shortcuts a.active span::after {
                border-color: transparent transparent transparent #fc3;
            }

@media (max-width: 767px) {
    #home-hero .shortcuts,
    #divisions-hero .shortcuts {
        table-layout: auto;
    }

        #home-hero .shortcuts a,
        #divisions-hero .shortcuts a {
            border-right: 1px solid #fff;
        }

            #home-hero .shortcuts a:last-of-type,
            #divisions-hero .shortcuts a:last-of-type {
                border-right: 0;
            }

            #home-hero .shortcuts a span,
            #divisions-hero .shortcuts a span {
                max-height: initial;
                padding: 0 20px;
            }

                #home-hero .shortcuts a::before,
                #divisions-hero .shortcuts a::before,
                #home-hero .shortcuts a::after,
                #divisions-hero .shortcuts a::after,
                #home-hero .shortcuts a span::before,
                #divisions-hero .shortcuts a span::before,
                #home-hero .shortcuts a span::after,
                #divisions-hero .shortcuts a span::after {
                    display: none;
                }
}

@media (max-width: 550px) {
    #home-hero .shortcuts,
    #divisions-hero .shortcuts {
        display: block;
    }

        #home-hero .shortcuts a,
        #divisions-hero .shortcuts a {
            display: block;
            height: auto;
        }

            #home-hero .shortcuts a span,
            #divisions-hero .shortcuts a span {
                text-align: left;
                padding: 20px;
            }

            #home-hero .shortcuts a:first-of-type span,
            #divisions-hero .shortcuts a:first-of-type span {
                padding-left: 20px;
            }
}
/* end Homepage Banners */
/* Key facts Home */
.key-facts-home {
    position: relative;
    background: url("../img/key-facts-bg-home.jpg") no-repeat top center;
    background-size: cover;
    padding: 110px 0 40px 0 !important;
    min-height: 630px;
}

@media (min-width: 544px) {
    .key-facts-home {
        padding: 120px 0 40px 0 !important;
        min-height: 630px;
    }
}

.key-facts-home .title {
    position: absolute;
    top: 0;
    left: 0;
    height: 70px;
    max-width: 490px;
    padding: 14px 40px 10px 40px;
    font-size: 26px;
    font-weight: 100;
    color: #fff;
    white-space: nowrap;
    background-color: #2b5689;
    mix-blend-mode: multiply;
}

    .key-facts-home .title::after {
        position: absolute;
        top: 0;
        right: -100px;
        display: block;
        content: '';
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0px 0 70px 100px;
        border-color: transparent transparent transparent #2b5689;
    }

@media (max-width: 600px) {
    .key-facts-home .title {
        padding: 14px 5px 10px 15px;
    }
}

@media (max-width: 550px) {
    .key-facts-home .title {
        padding: 14px 5px 10px 15px;
        font-size: 22px;
        line-height: 39px;
    }
}

@media (max-width: 500px) {
    .key-facts-home .title {
        padding: 14px 5px 10px 15px;
        font-size: 18px;
        line-height: 39px;
    }
}

@media (max-width: 450px) {
    .key-facts-home .title {
        padding: 14px 10px 10px 10px;
        max-width: initial;
        width: 100%;
        text-align: center;
    }

        .key-facts-home .title::after {
            display: none;
        }
}

.key-facts-home .logo {
    position: absolute;
    bottom: 30px;
    right: 30px;
}

.key-facts-home .panel {
    height: auto;
    margin: 10px 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    border-top: 5px solid #fc3;
    overflow: hidden;
}

    .key-facts-home .panel .label {
        margin: 20px 0;
        font-size: 16px;
        font-weight: 100;
        text-transform: uppercase;
    }

    .key-facts-home .panel .number {
        margin: 20px 0 30px 0;
        font-size: 28px;
        line-height: 50px;
        font-weight: 500;
        color: #1a2d44;
    }

/* end Key facts Home panel */
/*  2.1 ABOUT
	-------------------------------------------------------------------------- */
/* Widget on About page */
.gkn-at-glance {
    background-color: #fff;
}

    .gkn-at-glance h2 {
        padding-top: 30px;
        margin: 0 0 50px 0;
        text-align: center;
        font-size: 36px;
        font-weight: 300;
        color: #2b5689;
    }

    .gkn-at-glance .widget {
        position: relative;
        border: 4px solid #f3f3ee;
        max-width: 600px;
        margin: 100px auto;
    }

        .gkn-at-glance .widget .circle {
            position: absolute;
            display: block;
            text-align: center;
            width: 200px;
            text-decoration: none;
            color: #333;
        }

            .gkn-at-glance .widget .circle .icon {
                width: 128px;
                margin: 0 auto;
            }

                .gkn-at-glance .widget .circle .icon img {
                    display: block;
                    max-width: 100%;
                    height: auto;
                    border: 4px solid #f3f3ee;
                    border-radius: 120px;
                    background-color: #fff;
                }

            .gkn-at-glance .widget .circle:hover .icon img,
            .gkn-at-glance .widget .circle.active .icon img {
                border-color: #1a2d44;
            }

            .gkn-at-glance .widget .circle .label {
                position: relative;
                display: inline-block;
                top: -10px;
                padding: 4px 10px;
                font-size: 12px;
                text-transform: uppercase;
                font-weight: 400;
                background-color: #f3f3ee;
            }

            .gkn-at-glance .widget .circle:hover .label,
            .gkn-at-glance .widget .circle.active .label {
                color: #fff;
                background-color: #1a2d44;
            }

            .gkn-at-glance .widget .circle.group {
                top: -66px;
                left: 50%;
                margin: 0 0 0 -100px;
            }

            .gkn-at-glance .widget .circle.driveline {
                top: 80px;
                right: -2px;
                margin: 0 -100px 0 0;
            }

            .gkn-at-glance .widget .circle.landsys {
                top: 300px;
                right: -2px;
                margin: 0 -100px 0 0;
            }

            .gkn-at-glance .widget .circle.aerospace {
                top: 80px;
                left: -2px;
                margin: 0 0 0 -100px;
            }

            .gkn-at-glance .widget .circle.powdermet {
                top: 300px;
                left: -2px;
                margin: 0 0 0 -100px;
            }

        .gkn-at-glance .widget .mid {
            position: relative;
            margin: 130px 150px 40px 150px;
            text-align: center;
        }

            .gkn-at-glance .widget .mid h3 {
                margin-bottom: 20px;
                font-size: 30px;
                font-weight: 400;
                color: #1a2d44;
            }

            .gkn-at-glance .widget .mid .copy {
                font-size: 18px;
            }

            .gkn-at-glance .widget .mid .stats {
                font-size: 0;
                margin-bottom: 40px;
            }

                .gkn-at-glance .widget .mid .stats .item {
                    display: inline-block;
                    width: 50%;
                }

                .gkn-at-glance .widget .mid .stats .number {
                    display: block;
                    font-size: 30px;
                    font-weight: 400;
                    color: #1a2d44;
                }

                .gkn-at-glance .widget .mid .stats .label {
                    display: block;
                    font-size: 16px;
                    text-transform: uppercase;
                }

            .gkn-at-glance .widget .mid a.btn {
                white-space: normal;
            }

@media (max-width: 991px) {
    .gkn-at-glance .widget {
        margin-left: 100px;
        margin-right: 100px;
    }

        .gkn-at-glance .widget .mid {
            margin: 130px 100px 40px 100px;
        }

            .gkn-at-glance .widget .mid a.btn {
                max-width: 100%;
                white-space: normal;
            }
}

@media (max-width: 767px) {
    .gkn-at-glance .widget {
        margin-left: 100px;
        margin-right: 100px;
    }

        .gkn-at-glance .widget .mid {
            margin: 420px 30px 30px 30px;
        }

        .gkn-at-glance .widget .circle.aerospace {
            top: 80px;
            left: 0;
            margin: 0;
        }

        .gkn-at-glance .widget .circle.driveline {
            top: 80px;
            left: auto;
            right: 0;
            margin: 0;
        }

        .gkn-at-glance .widget .circle.powdermet {
            top: 235px;
            left: 0;
            margin: 0;
        }

        .gkn-at-glance .widget .circle.landsys {
            top: 235px;
            left: auto;
            right: 0;
            margin: 0;
        }

        .gkn-at-glance .widget .circle .label {
            max-width: 126px;
        }
}

@media (max-width: 600px) {
    .gkn-at-glance .widget {
        margin-left: 30px;
        margin-right: 30px;
    }
}

@media (max-width: 450px) {
    .gkn-at-glance .widget .circle {
        width: 100px;
    }

        .gkn-at-glance .widget .circle .icon {
            width: 80px;
        }

        .gkn-at-glance .widget .circle.group {
            top: -44px;
            margin: 0 0 0 -50px;
        }

        .gkn-at-glance .widget .circle.aerospace {
            top: 70px;
            left: 5%;
            margin: 0;
        }

        .gkn-at-glance .widget .circle.driveline {
            top: 70px;
            left: auto;
            right: 5%;
            margin: 0;
        }

        .gkn-at-glance .widget .circle.powdermet {
            top: 200px;
            left: 5%;
            margin: 0;
        }

        .gkn-at-glance .widget .circle.landsys {
            top: 200px;
            left: auto;
            right: 5%;
            margin: 0;
        }

        .gkn-at-glance .widget .circle .label {
            max-width: 126px;
        }

    .gkn-at-glance .widget .mid {
        margin-top: 365px;
    }

        .gkn-at-glance .widget .mid .stats .item {
            width: 100%;
        }

            .gkn-at-glance .widget .mid .stats .item + .item {
                margin-top: 10px;
            }
}

@media (max-width: 350px) {
    .gkn-at-glance .widget {
        margin-left: 10px;
        margin-right: 10px;
    }
}
/* end Widget on About page */
section.global-footprint {
    background: url("../img/global-network.png") no-repeat top right;
}

/* GKN at glance page top */
.at-glance-landing {
    background-color: #fff;
    padding-bottom: 50px;
}

    .at-glance-landing h2 {
        padding: 40px 0;
        margin: 0;
        text-align: center;
        font-size: 36px;
        font-weight: 300;
        color: #fff;
        background-color: #2b5689;
    }

    .at-glance-landing h3 {
        margin: 30px 0;
        font-size: 22px;
        font-weight: 400;
        text-align: center;
        text-transform: uppercase;
    }

    .at-glance-landing .chart-title {
        margin-top: 30px;
        padding: 0 20px;
        text-transform: uppercase;
    }

    .at-glance-landing .chart-wrapper {
        padding: 30px 0;
    }

    .at-glance-landing .chart-legend {
        display: table;
        width: 100%;
        border-collapse: collapse;
        font-size: 16px;
    }

        .at-glance-landing .chart-legend .item {
            display: table-row;
            border-bottom: 1px solid #ddd;
        }

            .at-glance-landing .chart-legend .item .colour,
            .at-glance-landing .chart-legend .item .label,
            .at-glance-landing .chart-legend .item .value {
                display: table-cell;
                padding: 10px;
            }

            .at-glance-landing .chart-legend .item .colour {
                width: 16px;
            }

                .at-glance-landing .chart-legend .item .colour i {
                    display: block;
                    width: 16px;
                    height: 16px;
                    border-radius: 16px;
                    overflow: hidden;
                }

            .at-glance-landing .chart-legend .item .value {
                font-weight: 400;
                color: #1a2d44;
            }

/* end GKN at glance page top */
/* GKN at glance page - divisions tabs */
.tabbed-content {
    background-position: right 20px;
    background-repeat: no-repeat;
}

.sales-stats-light,
.sales-stats-dark {
    padding: 40px 60px;
    margin-bottom: 30px;
}

.sales-stats-light {
    color: #333;
    background-color: rgba(243, 243, 238, 0.9);
}

.sales-stats-dark {
    color: #fff;
    background-color: rgba(26, 45, 68, 0.9);
}

    .sales-stats-light h4,
    .sales-stats-dark h4 {
        padding: 0 10px;
        margin: 0 0 20px 0;
        font-size: 16px;
        text-transform: uppercase;
    }

    .sales-stats-light .item,
    .sales-stats-dark .item {
        display: table;
        width: 100%;
    }

.sales-stats-light .item {
    border-bottom: 1px solid #ddd;
}

    .sales-stats-light .item:first-child {
        border-top: 1px solid #ddd;
    }

.sales-stats-dark .item {
    border-bottom: 1px solid rgba(221, 221, 221, 0.2);
}

    .sales-stats-dark .item:first-child {
        border-top: 1px solid rgba(221, 221, 221, 0.2);
    }

    .sales-stats-light .item .label,
    .sales-stats-dark .item .label {
        display: table-cell;
        padding: 5px 10px;
    }

    .sales-stats-light .item .value,
    .sales-stats-dark .item .value {
        display: table-cell;
        padding: 5px 10px;
        font-weight: 400;
        text-align: right;
    }

/* end GKN at glance page - divisions tabs */
/* Key facts Europe */
.key-facts-europe {
    position: relative;
    background: url("../img/key-facts-bg-europe.jpg") no-repeat top center;
    background-size: cover;
    padding: 110px 0 !important;
}

@media (min-width: 544px) {
    .key-facts-europe {
        padding: 260px 0 80px 0 !important;
        min-height: 570px;
    }
}

.key-facts-europe .title {
    position: absolute;
    top: 0;
    left: 0;
    height: 70px;
    max-width: 415px;
    padding: 14px 40px 10px 40px;
    font-size: 26px;
    font-weight: 100;
    color: #fff;
    white-space: nowrap;
    background-color: #2b5689;
    mix-blend-mode: multiply;
}

    .key-facts-europe .title::after {
        position: absolute;
        top: 0;
        right: -100px;
        display: block;
        content: '';
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0px 0 70px 100px;
        border-color: transparent transparent transparent #2b5689;
    }

@media (max-width: 400px) {
    .key-facts-europe .title {
        padding: 14px 5px 10px 15px;
    }
}

@media (max-width: 350px) {
    .key-facts-europe .title {
        padding: 14px 5px 10px 15px;
        font-size: 22px;
    }
}

.key-facts-europe .logo {
    position: absolute;
    bottom: 30px;
    right: 30px;
}

.key-facts-europe .panel {
    height: auto;
    margin: 10px 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    border-top: 5px solid #fc3;
    overflow: hidden;
}

    .key-facts-europe .panel .label {
        margin: 20px 0;
        font-size: 16px;
        font-weight: 300;
        text-transform: uppercase;
    }

    .key-facts-europe .panel .number {
        margin: 20px 0 30px 0;
        font-size: 28px;
        line-height: 50px;
        font-weight: 500;
        color: #1a2d44;
    }

/* end Key facts Europe panel */
.big-download-panel {
    display: table;
    width: 100%;
    max-width: 780px;
    margin: 30px auto;
    border: 1px solid #ddd;
    color: #333;
}

    .big-download-panel .file-ico,
    .big-download-panel .main,
    .big-download-panel .download-ico {
        display: table-cell;
        vertical-align: middle;
    }

    .big-download-panel .file-ico {
        width: 130px;
        text-align: center;
    }

    .big-download-panel .main {
        padding: 30px 30px;
    }

        .big-download-panel .main .t {
            padding: 0;
            margin: 0 0 15px 0;
            font-size: 22px;
            color: #2b5689;
            font-weight: 400;
        }

            .big-download-panel .main .t::after {
                display: none;
            }

            .big-download-panel .main .t small {
                color: #333;
            }

    .big-download-panel .download-ico {
        width: 100px;
        border-left: 1px solid #ddd;
        text-align: center;
    }

@media (max-width: 500px) {
    .big-download-panel .file-ico {
        display: none;
    }

    .big-download-panel .download-ico {
        width: 60px;
    }
}

@media (max-width: 400px) {
    .big-download-panel .download-ico {
        display: none;
    }
}
/* person */
.person-thumbnail {
    display: block;
    margin-bottom: 30px;
}

    .person-thumbnail > img {
        display: block;
        max-width: 100%;
        height: auto;
    }

    .person-thumbnail .meta {
        margin-top: 10px;
    }

    .person-thumbnail .name {
        display: block;
        font-size: 18px;
        color: #2b5689;
    }

    .person-thumbnail .position {
        display: block;
        font-size: 16px;
        color: #333;
    }

.profile-photo {
    margin-bottom: 30px;
}

/* end person */
/* history */
.history-index {
    background-color: #fff;
}

    .history-index .wrapper {
        margin-top: 20px;
        display: table;
        width: 100%;
        border-collapse: collapse;
    }

    .history-index a {
        display: table-row;
        border-bottom: 1px solid #f3f3ee;
    }

        .history-index a span {
            display: table-cell;
            padding: 10px;
            text-align: left;
        }

            .history-index a span.date {
                font-weight: 600;
                color: #204066;
            }

            .history-index a span.title {
                font-weight: 400;
                color: #369;
            }

.year-badge {
    display: block;
    width: 80px;
    height: 80px;
    padding: 0;
    border-radius: 100px;
    margin: -30px auto 20px auto;
    overflow: hidden;
    font-size: 22px;
    line-height: 80px;
    text-align: center;
    color: #fff;
    background-color: #1a2d44;
}

.history-block {
    margin: 30px 0;
}

    .history-block .title {
        padding: 15px;
        color: #fff;
        font-size: 26px;
        text-transform: uppercase;
        text-align: center;
        background-color: #1a2d44;
    }

    .history-block .main {
        background-color: #fff;
        margin-left: 0;
        margin-right: 0;
    }

        .history-block .main > .col-sm-5 {
            padding-left: 0;
        }

        .history-block .main > .col-sm-7 {
            padding-right: 0;
        }

        .history-block .main .copy,
        .history-block .main .rt {
            padding: 20px 40px 0 0px;
        }

    .history-block .panels .panel {
        border: 0;
        margin: 20px 0;
        background-color: #fff;
    }

        .history-block .panels .panel .body {
            padding: 20px;
            text-align: center;
        }

        .history-block .panels .panel .date {
            padding: 20px;
            color: #204066;
            font-size: 22px;
        }

            .history-block .panels .panel .date + .copy {
                margin-top: 20px;
            }

/* end history */
/* Business model page */
#middle > section.bizmod-s-1 {
    background: #fff url(../img/business-model-bg-1.png) no-repeat center bottom -542px;
    max-width: 100% !important;
}

#middle > section.blue.bizmod-s-2 {
    background: #fff url(../img/business-model-bg-2-1.png) no-repeat center bottom -32px;
}

section.bizmod-s-2 .tabbed-content {
    padding-bottom: 0;
    background: #f3f3ee url(../img/business-model-bg-2-2.png) no-repeat center bottom -32px;
}

section.bizmod-s-3 {
    background: url(../img/business-model-bg-3.png) no-repeat 50% 50%;
}

    section.bizmod-s-3 .container,
    section.bizmod-s-32 .container {
        position: relative;
    }

        section.bizmod-s-3 .container::before,
        section.bizmod-s-32 .container::before {
            content: '';
            position: absolute;
            top: 120px;
            left: 0;
            right: 0;
            bottom: 160px;
            border: 5px solid #fff;
            display: block;
        }

#middle > section.bizmod-s-4 {
    background: url(../img/business-model-bg-4-2.png) no-repeat center top -173px;
}

@media (min-width: 544px) {
    #middle > section.bizmod-s-4 {
        padding-top: 0;
    }

        #middle > section.bizmod-s-4 h2 {
            width: 100%;
            max-width: 100%;
            padding: 125px 20px 50px 20px;
            margin: 0;
            font-size: 36px;
            line-height: 42px;
            color: #222;
            background: url(../img/business-model-bg-4-1.png) no-repeat center top;
        }
}

@media (max-width: 543px) {
    #middle > section.blue.bizmod-s-2 {
        background-image: none;
        background-color: #2b5689;
    }

    section.bizmod-s-3 {
        background-image: none;
    }

        section.bizmod-s-3 .container::before {
            display: none;
        }
}
/* end Business model page */
/*  2.2 DIVISIONS
	-------------------------------------------------------------------------- */
.wrapper.white {
    background-color: #fff;
}

.carousel-title,
.carousel-title.blue {
    padding: 38px 30px;
    margin: 0;
    font-size: 36px;
    line-height: 36px;
    font-weight: 300;
    color: #fff;
    text-align: center;
    background-color: #2b5689;
}

.bg-t-c {
    background-position: top center;
    background-repeat: no-repeat;
}

/* ------------------------------  
	AEROSPACE SPECIFIC
------------------------------ */
/* ------------------------------  
	DRIVELINE SPECIFIC
------------------------------ */
/* Key facts panel */
.key-facts-driveline {
    position: relative;
    height: 570px;
    background: url("../img/key-facts-bg-driveline.jpg") no-repeat top center;
    background-size: cover;
    padding: 175px 0 0 0 !important;
}

    .key-facts-driveline.kf-aerospace1 {
        background: url("../img/key-facts-bg-aerospace1.jpg") no-repeat top center;
    }

    .key-facts-driveline.kf-aerospace2 {
        background: url("../img/key-facts-bg-aerospace2.jpg") no-repeat top center;
    }

    .key-facts-driveline.kf-shanghai {
        background: url("../img/key-facts-bg-shanghai.jpg") no-repeat top center;
    }

@media (min-width: 544px) {
    .key-facts {
        padding: 200px 0 !important;
    }
}

.key-facts-driveline .title {
    position: absolute;
    top: 0;
    left: 0;
    height: 70px;
    max-width: 415px;
    padding: 14px 40px 10px 40px;
    font-size: 26px;
    font-weight: 100;
    color: #fff;
    white-space: nowrap;
    background-color: #2b5689;
    mix-blend-mode: multiply;
}

    .key-facts-driveline .title::after {
        position: absolute;
        top: 0;
        right: -100px;
        display: block;
        content: '';
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0px 0 70px 100px;
        border-color: transparent transparent transparent #2b5689;
    }

@media (max-width: 400px) {
    .key-facts-driveline .title {
        padding: 14px 5px 10px 15px;
    }
}

@media (max-width: 350px) {
    .key-facts-driveline .title {
        padding: 14px 5px 10px 15px;
        font-size: 22px;
    }
}

.key-facts-driveline .logo {
    position: absolute;
    bottom: 30px;
    right: 30px;
}

.key-facts-driveline .panel {
    height: auto;
    margin: 10px 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    border-top: 5px solid #fc3;
    overflow: hidden;
}

    .key-facts-driveline .panel .label {
        margin: 20px 0;
        font-size: 16px;
        font-weight: 300;
        text-transform: uppercase;
    }

    .key-facts-driveline .panel .number {
        margin: 20px 0 30px 0;
        font-size: 28px;
        line-height: 50px;
        font-weight: 500;
        color: #1a2d44;
    }

/* end Key facts panel */
/* files block & section */
section.files {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
}

.file-blocks {
    display: table;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 1px;
}

    .file-blocks .item {
        display: table-row;
    }

        .file-blocks .item .ico1 {
            display: table-cell;
            width: 160px;
            padding: 20px 0;
            text-align: center;
            vertical-align: middle;
            background-color: #fff;
        }

        .file-blocks .item .info {
            position: relative;
            display: table-cell;
            vertical-align: middle;
            background-color: #fff;
            padding-right: 120px;
        }

        .file-blocks .item:hover .ico1,
        .file-blocks .item:hover .info {
            background-color: rgba(255, 255, 255, 0.7);
        }

        .file-blocks .item .info .title {
            display: block;
            margin: 10px 0;
            font-weight: 300;
            font-size: 20px;
            color: #2b5689;
            pointer-events: all;
        }

            .file-blocks .item .info .title small {
                font-size: 16px;
                color: #333;
            }

.brandfiles .file-blocks .item .info .title small {
    float: right;
}

.file-blocks .item .info .description {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

.file-blocks .item .info button.ttip {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    padding: 0;
    border: 0;
    margin: 0 10px;
    background-color: transparent;
    vertical-align: middle;
}

@media (max-width: 991px) {
    .file-blocks .item .info button.ttip {
        display: none;
    }

    .brandfiles .file-blocks .item .info .title small {
        float: none;
    }
}

.file-blocks .item .info button.ttip .trigger {
    display: block;
    width: 20px;
    height: 20px;
    font: 0/0 a;
    color: transparent;
    background: transparent url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAABGdBTUEAALGPC/xhBQAAAjNJREFUOBGlVU1IVFEYPfeOhs6kT2dlKWiO9ENWkEqEBorOItzY0N8qN0MRrRKMluOuGlftjPaBQdo2E0ZBxfAxmSYOOhk2ZG0iNAvKebf7vfG9mTfdeVTezfu+c853uL/fY1CMpqbrxZ9+rvUIJnoY0CwEDpKMMXwUwBwTbLRq36FRXX/0K79c6p2j5lTwgjBEVBYGnIwzk4VJxll/an5sJJfxWEkkEuGrX4ruGwIPJea3cJevX878ilZV7+u7eW08FovJOQC24a5Zv4uBkpIurfHlde/m53djJDCXTMs0DPFMWbELDkb6UKGVIXx7QCnjnIVo+ZwOgPZMqcoB/ZUa4guJHMQZkgd5seoTwUsCYthJ/1/GwC5zuhpu5Y3HGvBk6B4SM8/R0dbiJgV5FclNbDaPRyENdXfiRu9FVGrl2O/zYvv7D4UqC5EXty5tFs5GK2vrOH/1FkpLS/B1cwv6/FKWVETkxRW4DS0sreDM6Ub4K8oxPjmLdNqwuUIBp+dUiCQ82H7WpF/EZtxkJkdeXO7fnJuyo7UFOztpTEzrbjKTIy9OD72Qku7e4UAtFpdXsfVt24wLaQknL05dQ55OUiU8fiTTH3zeEgw/juJoQ51KZmLkQV6ejQ3d0A4EPtBDz1d7OEd38ByS71MYGBzC1KvX+RI7l08vnIg/fSuNM6PmZNcD2Wn+uTlQNWeIpt68vGPGGTsgHGq7S4SV/+2XaqjW0tsztIC9Ntg/DMl4L7+A3xY9zLvJWr84AAAAAElFTkSuQmCC") no-repeat 50% 50%;
    overflow: hidden;
    opacity: 1;
}

.file-blocks .item .info button.ttip:hover .trigger {
    opacity: 0.5;
}

.file-blocks .item .info button.ttip:focus {
    outline: none;
}

.file-blocks .item .info button.ttip .cnt {
    visibility: hidden;
    display: block;
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80vw;
    max-width: 400px;
    padding: 20px;
    background-color: #fff;
    z-index: 1;
    font-size: 15px;
    text-align: left;
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
}

.file-blocks .item .info button.ttip.active .cnt {
    visibility: visible;
}

.file-blocks .item .info button.ttip .cnt::before,
.file-blocks .item .info button.ttip .cnt::after {
    content: '';
    position: absolute;
    left: 50%;
    width: 0;
    height: 0;
    border-style: solid;
}

.file-blocks .item .info button.ttip .cnt::before {
    bottom: -10px;
    margin-left: -11px;
    border-width: 10px 11px 0 11px;
    border-color: #ccc transparent transparent transparent;
}

.file-blocks .item .info button.ttip .cnt::after {
    bottom: -9px;
    margin-left: -10px;
    border-width: 9px 10px 0 10px;
    border-color: #fff transparent transparent transparent;
}

/* tooltip below trigger */
.file-blocks .item .info button.ttip.below .cnt {
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
}

.file-blocks .item .info button.ttip.below .cnt {
    bottom: auto;
    top: 40px;
}

    .file-blocks .item .info button.ttip.below .cnt::before {
        bottom: auto;
        top: -10px;
        border-width: 0 11px 10px 11px;
        border-color: transparent transparent #ccc transparent;
    }

    .file-blocks .item .info button.ttip.below .cnt::after {
        bottom: auto;
        top: -9px;
        border-width: 0 10px 9px 10px;
        border-color: transparent transparent #fff transparent;
    }

/* tooltip to the right of trigger */
.file-blocks .item .info button.ttip.right .cnt,
.file-blocks .item .info button.ttip.left .cnt {
    bottom: auto;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
}

    .file-blocks .item .info button.ttip.right .cnt::before,
    .file-blocks .item .info button.ttip.right .cnt::after {
        bottom: auto;
        top: 50%;
        margin-left: 0;
        margin-top: -10px;
        border-width: 10px 10px 10px 0;
    }

    .file-blocks .item .info button.ttip.right .cnt::before {
        left: -10px;
        border-color: transparent #ccc transparent transparent;
    }

    .file-blocks .item .info button.ttip.right .cnt::after {
        left: -9px;
        border-color: transparent #fff transparent transparent;
    }

/* tooltip to the left of trigger */
.file-blocks .item .info button.ttip.left .cnt {
    left: auto;
    right: 40px;
}

    .file-blocks .item .info button.ttip.left .cnt::before,
    .file-blocks .item .info button.ttip.left .cnt::after {
        bottom: auto;
        top: 50%;
        margin-left: 0;
        margin-top: -10px;
        border-width: 10px 0 10px 10px;
    }

    .file-blocks .item .info button.ttip.left .cnt::before {
        left: auto;
        right: -10px;
        border-color: transparent transparent transparent #ccc;
    }

    .file-blocks .item .info button.ttip.left .cnt::after {
        left: auto;
        right: -9px;
        border-color: transparent transparent transparent #fff;
    }

.file-blocks .item .info::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border-left: 1px solid #d3d1d2;
    width: 100px;
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAuCAYAAABap1twAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAXdJREFUeNpivHzxIgOVwH80PiM1DGViGORg1IGjDhx14KgDRx046sBRB446cNSBow4cdeCoA0cdOOrAQeBAZiCeAMSToGxyAUjvRKhZRJnDQoQabiBeAsQBUL4CEEcB8RcSHccDxMuA2BfKlwfiGCD+SmkIrkRyHAPUgsNALE2C46SgenyRxEBmLqdGFBcB8UM0MQMgPgGlCQGQmpNY1D4A4hJqOPAWEFsD8TU0cRloqPjg0esNVSODJn4FiG2gZlMlkzwFYltoSKCnqw1AnINFD0hsI1QNMjgOxPZQMwkCRhKH30AZZi0Qu5OZi7cDcSihjEFJOQgy2A+IV5DhuGXQjPGVFE3kFNS/gDgaiKeRoGcKEMdC9dKlJvkHxNlA3ESE2nogzoXqoXtVB7I8D4flpHiCpnXxZCzRR04yILuqIzYDvAfiNQyQwfQgIN5FDYOp5UBYEeICjdqT1DKUmg6EFcKj7cFBBVgYMGeIRkNw1IH0BAABBgA+SkIIT/s1+AAAAABJRU5ErkJggg==") no-repeat 50% 50%;
}

@media (max-width: 767px) {
    .file-blocks .item .ico1 {
        width: 90px;
        padding: 20px;
    }

        .file-blocks .item .ico1 img {
            max-width: 100%;
            height: auto;
        }

    .file-blocks .item .info {
        padding-right: 20px;
    }

        .file-blocks .item .info::after {
            display: none;
        }
}

@media (max-width: 400px) {
    .file-blocks .item .ico1 {
        width: 70px;
        padding: 15px;
        vertical-align: top;
    }
}

@media (max-width: 320px) {
    .file-blocks .item {
        position: relative;
        display: block;
    }

        .file-blocks .item .ico1 {
            display: block;
            position: absolute;
            top: 0;
            left: 0;
            width: 50px;
            padding: 15px 15px 0 15px;
            vertical-align: top;
            background: transparent;
            z-index: 1;
        }

        .file-blocks .item .info .title,
        .file-blocks .item .info .description {
            padding-left: 50px;
        }
}
/* end files block & section */
/* ------------------------------  
	POWDER METALLURGY SPECIFIC
------------------------------ */
/* Key facts Home */
.key-facts-pm {
    position: relative;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    padding: 110px 0 40px 0 !important;
    min-height: 630px;
}

@media (min-width: 544px) {
    .key-facts-pm {
        padding: 120px 0 40px 0 !important;
        min-height: 630px;
    }
}

.key-facts-pm .title {
    position: absolute;
    top: 0;
    left: 0;
    height: 70px;
    max-width: 600px;
    padding: 14px 40px 10px 40px;
    font-size: 26px;
    font-weight: 100;
    color: #fff;
    white-space: nowrap;
    background-color: #2b5689;
    mix-blend-mode: multiply;
}

.key-facts.key-facts-pm .title {
    max-width: 600px;
}

.key-facts-pm .title::after {
    position: absolute;
    top: 0;
    right: -100px;
    display: block;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0px 0 70px 100px;
    border-color: transparent transparent transparent #2b5689;
}

@media (max-width: 600px) {
    .key-facts-pm .title {
        padding: 14px 5px 10px 15px;
    }
}

@media (max-width: 550px) {
    .key-facts-pm .title {
        padding: 14px 5px 10px 15px;
        font-size: 22px;
        line-height: 39px;
    }
}

@media (max-width: 500px) {
    .key-facts-pm .title {
        padding: 14px 5px 10px 15px;
        font-size: 18px;
        line-height: 39px;
    }
}

@media (max-width: 450px) {
    .key-facts-pm .title {
        padding: 14px 10px 10px 10px;
        max-width: initial;
        width: 100%;
        text-align: center;
    }

        .key-facts-pm .title::after {
            display: none;
        }
}

.key-facts-pm .logo {
    position: absolute;
    bottom: 30px;
    right: 30px;
}

.key-facts-pm .panel {
    height: auto;
    margin: 10px 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    border-top: 5px solid #fc3;
    overflow: visible;
}

.key-facts.key-facts-pm .panel {
    overflow: visible;
}

.key-facts-pm .panel .label {
    margin: 20px 0;
    font-size: 16px;
    font-weight: 300;
    text-transform: uppercase;
}

.key-facts-pm .panel .number {
    margin: 20px 0 30px 0;
    font-size: 28px;
    line-height: 50px;
    font-weight: 500;
    color: #1a2d44;
}

.key-facts-pm .panel .icon-circle {
    overflow: hidden;
    width: 40px;
    height: 40px;
    border-radius: 100px;
    margin: -20px auto;
    background-color: #fbd14c;
}

/* end Key facts Home panel */
/*  2.3 SUSTAINABILITY
	-------------------------------------------------------------------------- */
.sustainability-overview {
    padding: 40px 0;
    background-color: #fff;
}

    .sustainability-overview img {
        display: block;
        max-width: 100%;
        height: auto;
        margin: 0 auto;
    }

@media (min-width: 544px) and (max-width: 767px) {
    .sustainability-overview {
        padding: 40px 30px;
    }
}

@media (max-width: 543px) {
    .sustainability-overview {
        padding: 40px 30px;
    }
}

figure.with-circle-ico.left::after,
figure.with-circle-ico.right::after {
    display: none;
}

figure.with-circle-ico .icon {
    position: absolute;
    top: -60px;
    width: 190px;
    height: 190px;
    border-radius: 100px;
    overflow: hidden;
    background-color: #fbba00;
}

    figure.with-circle-ico .icon img {
        display: block;
        max-width: 100%;
        margin: 0 auto;
        position: relative;
        top: 50%;
        transform: translateY(-50%);
    }

figure.with-circle-ico.left .icon {
    left: -130px;
    right: auto;
}

figure.with-circle-ico.right .icon {
    right: -130px;
    left: auto;
}

@media (min-width: 1221px) and (max-width: 1400px) {
    figure.with-circle-ico.left .icon {
        left: -40px;
    }

    figure.with-circle-ico.right .icon {
        right: -40px;
    }
}

@media (min-width: 1200px) and (max-width: 1220px) {
    figure.with-circle-ico .icon {
        top: -45px;
        width: 120px;
        height: 120px;
    }

    figure.with-circle-ico.left .icon {
        left: -25px;
    }

    figure.with-circle-ico.right .icon {
        right: -25px;
    }
}

@media (min-width: 1120px) and (max-width: 1199px) {
    figure.with-circle-ico .icon {
        top: -45px;
        width: 120px;
        height: 120px;
    }

    figure.with-circle-ico.left .icon {
        left: -40px;
    }

    figure.with-circle-ico.right .icon {
        right: -40px;
    }
}

@media (min-width: 992px) and (max-width: 1119px) {
    figure.with-circle-ico .icon {
        top: -45px;
        width: 120px;
        height: 120px;
    }

    figure.with-circle-ico.left .icon {
        left: -40px;
    }

    figure.with-circle-ico.right .icon {
        right: -40px;
    }
}

@media (min-width: 768px) and (max-width: 960px) {
    figure.with-circle-ico .icon {
        top: -45px;
        width: 120px;
        height: 120px;
    }

    figure.with-circle-ico.left .icon {
        left: -30px;
    }

    figure.with-circle-ico.right .icon {
        right: -30px;
    }
}

@media (min-width: 620px) and (max-width: 767px) {
    figure.with-circle-ico .icon {
        top: -30px;
        width: 120px;
        height: 120px;
    }

    figure.with-circle-ico.left .icon {
        left: -30px;
    }

    figure.with-circle-ico.right .icon {
        right: -30px;
    }
}

@media (min-width: 400px) and (max-width: 619px) {
    figure.with-circle-ico .icon {
        top: -20px;
        width: 100px;
        height: 100px;
    }

    figure.with-circle-ico.left .icon {
        left: -15px;
    }

    figure.with-circle-ico.right .icon {
        right: -15px;
    }
}

@media (max-width: 399px) {
    figure.with-circle-ico .icon {
        top: -20px;
        width: 70px;
        height: 70px;
    }

    figure.with-circle-ico.left .icon {
        left: -15px;
    }

    figure.with-circle-ico.right .icon {
        right: -15px;
    }
}
/*  2.4 CAREERS
	-------------------------------------------------------------------------- */
/* Key facts panel */
.key-facts {
    position: relative;
    background: url("../img/key-facts-bg.jpg") no-repeat top center;
    background-size: cover;
    padding: 110px 0 !important;
}

@media (min-width: 544px) {
    .key-facts {
        padding: 200px 0 !important;
    }
}

.key-facts .title {
    position: absolute;
    top: 0;
    left: 0;
    height: 70px;
    max-width: 415px;
    padding: 14px 40px 10px 40px;
    font-size: 26px;
    font-weight: 100;
    color: #fff;
    white-space: nowrap;
    background-color: #2b5689;
    mix-blend-mode: multiply;
}

    .key-facts .title::after {
        position: absolute;
        top: 0;
        right: -100px;
        display: block;
        content: '';
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0px 0 70px 100px;
        border-color: transparent transparent transparent #2b5689;
    }

@media (max-width: 400px) {
    .key-facts .title {
        padding: 14px 5px 10px 15px;
    }
}

@media (max-width: 350px) {
    .key-facts .title {
        padding: 14px 5px 10px 15px;
        font-size: 22px;
    }
}

.key-facts .logo {
    position: absolute;
    bottom: 30px;
    right: 30px;
}

.key-facts .panel {
    height: auto;
    margin: 10px 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    border-top: 5px solid #fc3;
    overflow: hidden;
}

    .key-facts .panel .label {
        margin: 20px 0;
        font-size: 16px;
        font-weight: 300;
        text-transform: uppercase;
    }

    .key-facts .panel .number {
        margin: 20px 0 30px 0;
        font-size: 28px;
        line-height: 50px;
        font-weight: 500;
        color: #1a2d44;
    }

/* end Key facts panel */
/* Formula Student bottom fixed banner */
#fs-parts-bnr {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 30px 0;
    color: #fff;
    background-color: #204066;
    z-index: 10;
}

    #fs-parts-bnr h4 {
        margin: 0 0 30px 0;
    }

/* end Formula Student bottom fixed banner */
/*  2.5 NEWSROOM
	-------------------------------------------------------------------------- */
/* news room search */
.newsroom-search {
    background-color: #fff;
}

/* end news room search */
/* events table */
.events-table {
    display: table;
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 37px;
}

    .events-table .event {
        display: table-row;
        border-bottom: 1px solid #e6e4e4;
    }

    .events-table.non-striped .event {
        border-bottom-color: transparent;
    }

    .events-table.large .event {
        border-top: 1px solid #f3f3ee;
        border-bottom: 1px solid #f3f3ee;
    }

    .events-table.non-striped .event {
        border-top-color: transparent;
        border-bottom-color: #f3f3ee;
    }

    .events-table.large.non-striped .event {
        border-top-color: transparent;
        border-bottom-color: #f3f3ee;
    }

    .events-table.large .event:nth-child(odd) {
        background-color: #f3f3ee;
        border-top: 1px solid #fff;
        border-bottom: 1px solid #fff;
    }

    .events-table.large.non-striped .event:nth-child(odd) {
        background-color: transparent;
        border-top-color: transparent;
        border-bottom-color: #f3f3ee;
    }

.light-grey .events-table .event:nth-child(even) {
    background-color: #fff;
}

.light-grey .events-table.non-striped .event:nth-child(even) {
    background-color: transparent;
}

.events-table .event .date-time,
.events-table .event .name,
.events-table .event .location,
.events-table .event .cat,
.events-table .event .meta,
.events-table .event > .link {
    display: table-cell;
    vertical-align: top;
    font-size: 18px;
    padding: 10px;
}

.events-table.large .event .date-time,
.events-table.large .event .location,
.events-table.large .event .cat,
.events-table.large .event .meta,
.events-table.large .event > .link {
    font-size: 16px;
    padding: 30px 10px;
}

.events-table.large .event .cat {
    text-align: right;
}

.events-table .event > .link {
    color: #999;
}

.events-table.large .event .name {
    padding: 30px 10px;
}

.events-table .event .name b {
    font-weight: 400;
    color: #1a2d44;
}

.events-table .event .name a {
    display: block;
    color: #2b5689;
    font-size: 16px;
}

.events-table .event > .link a {
    display: block;
    color: #2b5689;
}

    .events-table .event .name a:hover,
    .events-table .event > .link a:hover {
        color: #1a2d44;
    }

    .events-table .event > .link a.download {
        padding-left: 20px;
        background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAQCAYAAAAmlE46AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAJVJREFUeNpi1A7rZMABtkBpH2ySTAxkglGN9NCoBMTxWNTFQeXggAWJzQXE+4FYDojlkcRrgbgJiB8BsSYQfwMJMqKlHGcg3gDEPED8AyrGAcSfgTgQiPficipIwgmIX0M1cEDZzsiacAXOaSC2BeKHQPwAiG2gYgy4/IgMbgKxNZT9FJsCkEYXAiGviUvjbnLiESDAACuGFxin3KEgAAAAAElFTkSuQmCC") no-repeat 0 50%;
    }

    .events-table .event > .link a.view {
        padding-left: 20px;
        background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAALCAYAAAB24g05AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAUhJREFUeNp0kjFIQmEQx30JYTkUUdBQkhI0aISIY9DW0CZpS4sQuNYiDY0N2RIIQdEkQiD01nCwraWCBAnHHDIjIqgtA3v+Du7Bx9OEH3f3f/+7733nsxzH8Q37xbaO44RlmIMPaDxV8nden+UdQOMC4QzWVfqGCc0fIMeguusf8TTnCS3owSJGCyYlUk9DEx7xnQ68AeIJYRcSNIhpirwNY+pdQW+gy5Ve4Jp6w4pmCn6KLFxABLGFSU78k5PJbfKUDplFe0cbJe/CoVxhX5t3pFmNcX0r27jhD2xKgu9Xhx7IgCIE4IaGgJqbGlPG6fKsagy8hLK5gzJhG+Y5oU2dJL83GtLoV+iykzfZD3XMJwNc2Mc5OHBkaDNGvqfPa6427DtYI5QgBK/Q0b8wDF+6K/vfD0mHBAmrsATjusBnuKX50/T2BRgAKUqhB1RktEIAAAAASUVORK5CYII=") no-repeat 0 50%;
    }

.events-table .event .date-time {
    color: #222;
}

.events-table .event .name {
    color: #2b5689;
}

.events-table .event .location {
    color: #222;
}

@media (max-width: 490px) {
    .events-table {
        display: block;
    }

        .events-table .event {
            display: block;
            padding: 10px;
        }

            .events-table .event .date-time,
            .events-table .event .name,
            .events-table .event .location,
            .events-table .event .cat,
            .events-table .event .meta,
            .events-table .event .link,
            .events-table.large .event .date-time,
            .events-table.large .event .name,
            .events-table.large .event .location,
            .events-table.large .event .cat,
            .events-table.large .event .meta,
            .events-table.large .event .link {
                display: block;
                padding: 0;
            }

                .events-table .event .name a,
                .events-table .event .date-time,
                .events-table .event .location,
                .events-table .event .cat,
                .events-table .event .meta,
                .events-table .event .link {
                    font-size: 16px;
                }

        .events-table.large .event .cat {
            text-align: left;
        }
}

.events-table .event > div.w5p {
    width: 5%;
}

.events-table .event > div.w10p {
    width: 10%;
}

.events-table .event > div.w15p {
    width: 15%;
}

.events-table .event > div.w20p {
    width: 20%;
}

.events-table .event > div.w25p {
    width: 25%;
}

.events-table .event > div.w30p {
    width: 30%;
}

.events-table .event > div.w35p {
    width: 35%;
}

.events-table .event > div.w40p {
    width: 40%;
}

.events-table .event > div.w45p {
    width: 45%;
}

.events-table .event > div.w50p {
    width: 50%;
}

.events-table .event > div.w55p {
    width: 55%;
}

.events-table .event > div.w60p {
    width: 60%;
}

.events-table .event > div.w65p {
    width: 65%;
}

.events-table .event > div.w70p {
    width: 70%;
}

.events-table .event > div.w75p {
    width: 75%;
}

.events-table .event > div.w80p {
    width: 80%;
}

.events-table .event > div.w85p {
    width: 85%;
}

.events-table .event > div.w90p {
    width: 90%;
}

.events-table .event > div.w95p {
    width: 95%;
}

.events-table .event > div.w100p {
    width: 100%;
}

.events-table .event.collapse {
    display: none;
}

    .events-table .event.collapse.in {
        display: table-row;
    }

@media (max-width: 490px) {
    .events-table .event.collapse.in {
        display: block;
    }
}
/* end events table */
/* subscribe banner */
.subscribe-bnr {
    display: table;
    width: 100%;
}

    .subscribe-bnr .image {
        display: table-cell;
        width: 50%;
        vertical-align: middle;
    }

        .subscribe-bnr .image img {
            display: block;
            max-width: 100%;
            height: auto;
            margin-left: auto;
        }

    .subscribe-bnr .cnt {
        display: table-cell;
        width: 50%;
        vertical-align: top;
        padding: 25px;
        background-color: #f3f3ee;
    }

        .subscribe-bnr .cnt .title {
            font-size: 22px;
            font-weight: 400;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .subscribe-bnr .cnt .copy {
            font-size: 18px;
        }

@media (max-width: 991px) {
    .subscribe-bnr .image {
        display: none;
    }

    .subscribe-bnr .cnt {
        width: 100%;
    }
}
/* end subscribe banner */
/* media library banner */
.media-lib-bnr {
    overflow: hidden;
    height: auto;
    position: relative;
}

    .media-lib-bnr .image {
        position: absolute;
        right: 0;
        width: 50%;
        top: 0;
        bottom: 0;
        background-repeat: no-repeat;
        background-position: 50% 0;
        background-size: cover;
    }

    .media-lib-bnr .cnt {
        position: relative;
        padding: 25px 30px 30px 30px;
        top: 0;
        left: 0;
        width: 50%;
        background-color: #1a2d44;
        color: #fff;
    }

        .media-lib-bnr .cnt .title {
            font-size: 22px;
            margin-bottom: 20px;
        }

        .media-lib-bnr .cnt .copy {
            font-size: 18px;
            margin-bottom: 20px;
        }

        .media-lib-bnr .cnt .links {
            margin-left: -10px;
            margin-right: -10px;
        }

            .media-lib-bnr .cnt .links .btn {
                margin: 5px 10px;
            }

@media (max-width: 991px) {
    .media-lib-bnr .image {
        width: 40%;
    }

    .media-lib-bnr .cnt {
        width: 60%;
    }
}

@media (max-width: 576px) {
    .media-lib-bnr .image {
        width: 30%;
    }

    .media-lib-bnr .cnt {
        width: 70%;
    }
}

@media (max-width: 490px) {
    .media-lib-bnr .image {
        position: relative;
        width: 100%;
        padding-bottom: 58%;
    }

    .media-lib-bnr .cnt {
        width: 100%;
    }
}
/* end media library banner */
/* call to action banner */
.cta-bnr {
    overflow: hidden;
    height: auto;
    position: relative;
}

    .cta-bnr .image {
        position: absolute;
        left: 0;
        width: 50%;
        top: 0;
        bottom: 0;
        background-repeat: no-repeat;
        background-position: right top;
        background-size: cover;
    }

    .cta-bnr .cnt {
        position: relative;
        top: 0;
        left: 50%;
        width: 50%;
        background-color: #1a2d44;
        color: #fff;
    }

    .cta-bnr.blue .cnt {
        background-color: #2b5689;
    }

    .cta-bnr .cnt .wrap {
        padding: 45px 30px 50px 30px;
    }

    .cta-bnr .cnt .title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .cta-bnr .cnt .copy {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .cta-bnr .cnt .links {
        margin-left: -10px;
        margin-right: -10px;
    }

        .cta-bnr .cnt .links .btn {
            margin: 5px 10px;
        }

@media (max-width: 991px) {
    .cta-bnr .image {
        width: 40%;
    }

    .cta-bnr .cnt {
        width: 60%;
        left: 40%;
    }
}

@media (max-width: 576px) {
    .cta-bnr .image {
        position: relative;
        width: 100%;
        padding-bottom: 62.5%;
    }

    .cta-bnr .cnt {
        width: 100%;
        left: 0;
    }
}
/* end call to action banner */
/* news releases filters */
.filters {
    font-size: 16px;
}

    .filters.insights {
        padding: 20px 0;
        background-color: #fff;
    }

    .filters.light-grey {
        padding: 20px 0;
        margin: 30px 0;
        background-color: #f3f3ee;
    }

        .filters.light-grey select,
        .filters.insights select,
        .filters.news select {
            padding-top: 5px;
            padding-bottom: 5px;
            font-size: 16px;
            height: 54px !important;
        }

        .filters.light-grey .form-group,
        .filters.insights .form-group,
        .filters.news .form-group {
            margin: 9px 10px;
        }

    .filters.news .category-filter label {
        width: 120px;
        text-align: right;
    }

    .filters.news .year-filter label {
        width: 140px;
        text-align: right;
        padding-right: 10px;
    }

    .filters.news .keyword-filter label {
        width: 120px;
        text-align: right;
    }

    .filters.news .keyword-filter input {
        width: 300px;
        padding: 14px 24px 14px 40px;
        background-repeat: no-repeat;
        background-position: left 10px center;
    }

    .filters.light-grey .submit button,
    .filters.insights .submit button,
    .filters.news .submit button {
        padding: 16px 30px;
        width: 125px;
    }

/* end news releases filters */
/* awards */
.award {
    margin-bottom: 30px;
}

    .award .image img {
        display: block;
        width: 100%;
        height: auto;
        margin: 0 auto;
    }

    .award .title {
        font-size: 22px;
        text-align: center;
    }

.award2 {
    margin-bottom: 30px;
}

    .award2.openmodal {
        cursor: pointer;
    }

    .award2 .image {
        position: relative;
        overflow: hidden;
        border: 1px solid #ddd;
        border-bottom: 0;
    }

        .award2 .image::before {
            display: block;
            content: '';
            padding-bottom: 62.45%;
        }

        .award2 .image img {
            display: block;
            width: 100%;
            height: auto;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

    .award2 .title {
        main-height: 101px;
        font-size: 18px;
        text-align: center;
        color: #fff;
        background-color: #1a2d44;
    }

    .award2:hover .title {
        background-color: #2b5689;
    }

    .award2 .title > span {
        display: block;
        padding: 10px;
    }

@media (max-width: 400px) {
    .award2 .title {
        font-size: 16px;
    }
}

.award2 .modaldata {
    display: none;
}

.award-modal .title {
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: bold;
}

.award-modal .logo {
    position: relative;
    overflow: hidden;
    border: 1px solid #ddd;
}

    .award-modal .logo::before {
        display: block;
        content: '';
        padding-bottom: 62.45%;
    }

    .award-modal .logo img {
        display: block;
        width: 100%;
        height: auto;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

.award-modal .further {
    margin-top: 20px;
}

.award-modal .modal-content {
    border-radius: 0;
}

.award-modal .modal-header {
    background-color: #2b5689;
}

.award-modal .modal-header {
    padding: 0;
}

    .award-modal .modal-header button.close {
        width: 70px;
        height: 70px;
        position: relative;
        opacity: 1;
    }

        .award-modal .modal-header button.close:before,
        .award-modal .modal-header button.close:after {
            position: absolute;
            display: block;
            content: '';
            width: 2px;
            height: 30px;
            left: 34px;
            top: 20px;
            background-color: #fff;
        }

        .award-modal .modal-header button.close:before {
            transform: rotate(45deg);
        }

        .award-modal .modal-header button.close:after {
            transform: rotate(-45deg);
        }

.award-modal .modal-body {
    padding: 40px;
}

/* end awards */
/*  2.6 INVESTORS
	-------------------------------------------------------------------------- */
/* Finance tables */
table.fin-data-1 thead tr:nth-of-type(2) th {
    background-color: #204066;
}

    table.fin-data-1 thead tr:nth-of-type(1) th:nth-of-type(1),
    table.fin-data-1 thead tr:nth-of-type(2) th:nth-of-type(3) {
        border-right: 1px solid rgba(255, 255, 255, 0.2);
    }

    table.fin-data-1 thead tr:nth-of-type(2) th:last-of-type,
    table.fin-data-1 tbody tr td:last-of-type {
        text-align: left;
    }

    table.fin-data-1 thead tr:nth-of-type(2) th:nth-of-type(1),
    table.fin-data-1 tbody tr td:nth-of-type(1) {
        font-weight: 400;
    }

    table.fin-data-1 thead tr:nth-of-type(2) th:nth-of-type(1) {
        border-right: 1px solid rgba(255, 255, 255, 0.05);
    }

table.fin-data-1 tbody tr td:nth-of-type(1) {
    color: #222;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

table.fin-data-1 tbody tr td:nth-of-type(3) {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

table.fin-data-1 tbody tr td:empty {
    background-color: #989898;
}

/* end Finance tables */
.investment-overview {
    padding: 40px 0;
    background-color: #fff;
}

    .investment-overview h3 {
        font-size: 22px;
        font-weight: 400;
        text-transform: uppercase;
        margin: 0 0 20px 0;
    }

.card.type-1.variant-b .main {
    min-height: 200px;
}

/* share price box */
.share-price-box {
    padding: 27px 20px 27px 30px;
    text-align: left;
    background-color: #1a2d44;
}

    .share-price-box .title {
        font-size: 16px;
        color: #fff;
        text-transform: uppercase;
    }

    .share-price-box .cnt .value {
        position: relative;
        display: block;
        padding: 7px 0;
        font-size: 32px;
        font-weight: 100;
        color: #fff;
    }

        .share-price-box .cnt .value::before,
        .share-price-box a.more::before {
            position: absolute;
            top: 5px;
            right: 0;
            content: '';
            display: block;
            width: 40px;
            height: 40px;
            overflow: hidden;
            background-color: #2b5689;
            border-radius: 40px;
        }

        .share-price-box a.more::after,
        .share-price-box .cnt .value::after {
            position: absolute;
            top: 21px;
            right: 15px;
            content: '';
            display: block;
            width: 0;
            height: 0;
            overflow: hidden;
            border-width: 4px 0 4px 7px;
            border-style: solid;
            border-color: transparent transparent transparent #fff;
        }

    .share-price-box .cnt .date-time {
        position: relative;
        display: block;
        padding-top: 19px;
        padding-bottom: 3px;
        font-size: 16px;
        color: #fff;
    }

        .share-price-box .cnt .date-time::before {
            position: absolute;
            top: 0;
            left: 0;
            content: '';
            display: block;
            width: 60px;
            height: 1px;
            overflow: hidden;
            background-color: rgba(255, 255, 255, 0.15);
        }

    .share-price-box a.more {
        display: block;
        position: relative;
        padding: 20px 20px 20px 30px;
        margin: 20px -20px -27px -30px;
        color: #fff;
        background-color: #2b5689;
    }

        .share-price-box a.more::before {
            top: 13px;
            right: 20px;
            background-color: #1a2d44;
        }

        .share-price-box a.more::after {
            top: 29px;
            right: 35px;
        }

@media (min-width: 544px) and (max-width: 767px) {
    .investment-overview {
        padding: 40px 30px;
    }

    .share-price-box .title {
        font-size: 14px;
    }

    .share-price-box .cnt .value {
        font-size: 30px;
    }

    .share-price-box .cnt .date-time {
        font-size: 14px;
    }

    .share-price-box a.more {
        font-size: 14px;
    }
}

@media (max-width: 543px) {
    .share-price-box {
        margin-top: 30px;
    }

    .investment-overview {
        padding: 40px 30px;
    }
}
/* end share price box */
/* Annual report feat */
#middle > section.annual-report-feat {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #23456c;
}

    #middle > section.annual-report-feat h2 {
        color: #fff;
    }

.annual-report-feat img.report,
.annual-report-feat img.graphic-1,
.annual-report-feat img.graphic-2,
.annual-report-feat img.graphic-3 {
    position: absolute;
}

.annual-report-feat img.report {
    z-index: 4;
    right: 0;
    top: 110px;
}

.annual-report-feat img.graphic-1 {
    z-index: 1;
    bottom: 0;
    left: -140px;
}

.annual-report-feat img.graphic-2 {
    z-index: 2;
    right: 640px;
    top: 400px;
}

.annual-report-feat img.graphic-3 {
    z-index: 3;
    right: 20px;
    top: 160px;
}

.annual-report-feat .copy {
    position: relative;
    z-index: 5;
    margin-top: 50px;
}

    .annual-report-feat .copy a.btn {
        max-width: 35%;
        min-width: 245px;
        white-space: normal;
    }

    .annual-report-feat .copy .download-link {
        position: relative;
        display: block;
        margin-bottom: 100px;
        color: #fff;
        text-decoration: none;
    }

        .annual-report-feat .copy .download-link .icon,
        .download-link.navy .icon {
            display: block;
            position: absolute;
            top: 0;
            left: 0;
            width: 40px;
            height: 55px;
            background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAZCAYAAAAxFw7TAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAH5JREFUeNrslcEKwCAIhnP03MteeYxdtx0KJPynhx08KEhE9aH9pXScV3HYPUayNm7lZ0tgAhMYCtiGI+PXd22hAhiLeVdgTVSfbgFpOYxgajkjUA/ZSHlGzt47ZCVVE2apjKAQ5nk2K/QThkTRoEik4hUlzk+pokXGjPARYABXUhpP9jKrcAAAAABJRU5ErkJggg==") no-repeat 0 50%;
        }

.download-link.navy .icon {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAZCAYAAAAxFw7TAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAItJREFUeNpi1A7rZCAC/IfSjOgSV1aWofCZGKgMRg0cNXDUwEFlYD0U4wINQFyHTYIFh2ENSPxGLIbVI5U+jYQMZETTjMswrMUZEw7vNOIwtB7N5Q3EhmEDFq8yEDKMUCzjMhSnYcQkG3RD8RqGK1KwGYorksgykCiDaJZTWJCqSLKATngXbV0IEGAA1m0XSplkOlQAAAAASUVORK5CYII=");
}

.annual-report-feat .copy .download-link .title,
.download-link.navy .title {
    display: block;
    margin: 0 0 5px 40px;
    font-size: 20px;
}

.annual-report-feat .copy .download-link:hover .title {
    color: #fc3;
}

.download-link.navy:hover .title {
    color: #1a2d44;
}

.annual-report-feat .copy .download-link .meta,
.download-link.navy .meta {
    display: block;
    margin: 0 0 0 40px;
    font-size: 14px;
}

.annual-report-feat.ar-2016 .copy .download-link {
    margin-bottom: 20px;
}

.download-link.navy {
    position: relative;
    display: block;
    margin-bottom: 20px;
    color: #2b5689;
    text-decoration: none;
}

@media (max-width: 1199px) {
    .annual-report-feat img.report {
        right: -210px;
    }

    .annual-report-feat img.graphic-1 {
        left: -210px;
    }

    .annual-report-feat img.graphic-2 {
        right: 420px;
    }

    .annual-report-feat img.graphic-3 {
        right: -75px;
    }
}

@media (min-width: 1401px) {
    .annual-report-feat img.graphic-1 {
        left: -50px;
    }
}

@media (min-width: 1601px) {
    .annual-report-feat img.report {
        left: 740px;
    }

    .annual-report-feat img.graphic-1 {
        left: 0px;
    }

    .annual-report-feat img.graphic-2 {
        left: 735px;
    }

    .annual-report-feat img.graphic-3 {
        left: 1390px;
    }
}

@media (min-width: 1700px) {
    .annual-report-feat img.graphic-3 {
        right: 100px;
        left: auto;
    }
}

@media (max-width: 767px) {
    .annual-report-feat img.report {
        left: 40%;
    }
}

@media (max-width: 900px) {
    .annual-report-feat img.graphic-2 {
        left: 600px;
    }
}
/* end Annual report feat */
/* Annual report feat */
#middle > section.annual-general-meeting-feat {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #23456c;
}

    #middle > section.annual-general-meeting-feat h2 {
        color: #fff;
    }

.annual-general-meeting-feat img.report {
    position: absolute;
    z-index: 4;
    right: 0;
    bottom: -100px;
    max-width: 100%;
    height: auto;
}

.annual-general-meeting-feat .copy {
    position: relative;
    z-index: 5;
}

    .annual-general-meeting-feat .copy .download-link {
        position: relative;
        display: block;
        margin-bottom: 30px;
        color: #fff;
        text-decoration: none;
    }

        .annual-general-meeting-feat .copy .download-link .icon {
            display: block;
            position: absolute;
            top: 0;
            left: 0;
            width: 40px;
            height: 55px;
            background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAZCAYAAAAxFw7TAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAH5JREFUeNrslcEKwCAIhnP03MteeYxdtx0KJPynhx08KEhE9aH9pXScV3HYPUayNm7lZ0tgAhMYCtiGI+PXd22hAhiLeVdgTVSfbgFpOYxgajkjUA/ZSHlGzt47ZCVVE2apjKAQ5nk2K/QThkTRoEik4hUlzk+pokXGjPARYABXUhpP9jKrcAAAAABJRU5ErkJggg==") no-repeat 0 50%;
        }

        .annual-general-meeting-feat .copy .download-link .title {
            display: block;
            margin: 0 0 5px 40px;
            font-size: 20px;
        }

        .annual-general-meeting-feat .copy .download-link:hover .title {
            color: #fc3;
        }

        .annual-general-meeting-feat .copy .download-link .meta {
            display: block;
            margin: 0 0 0 40px;
            font-size: 14px;
        }

@media (max-width: 1199px) {
    .annual-general-meeting-feat img.report {
        max-width: 563px;
        bottom: -80px;
    }
}

@media (max-width: 960px) {
    .annual-general-meeting-feat img.report {
        max-width: 400px;
        bottom: -80px;
    }
}

@media (max-width: 590px) {
    .annual-general-meeting-feat img.report {
        max-width: 300px;
        bottom: -80px;
    }

    .annual-general-meeting-feat .copy .download-link {
        margin-bottom: 20px;
    }

        .annual-general-meeting-feat .copy .download-link .icon {
            height: 42px;
        }

        .annual-general-meeting-feat .copy .download-link .title {
            margin: 0 0 5px 40px;
            font-size: 18px;
            line-height: 22px;
        }

        .annual-general-meeting-feat .copy .download-link .meta {
            margin: 0 0 0 40px;
            font-size: 14px;
        }
}
/* end Annual report feat */
/* Panels over map 1 */
.panels-map-1 {
    background: url("../img/world-1.svg") no-repeat 50% 50%;
    background-size: contain;
    padding: 50px 0;
}

    .panels-map-1 .col-sm-4.col-md-3:nth-child(2) {
        margin-right: 285px;
    }

@media (min-width: 768px) {
    .panels-map-1 .col-sm-4.col-md-3:nth-child(1),
    .panels-map-1 .col-sm-4.col-md-3:nth-child(2) {
        margin-bottom: 70px;
    }
}

@media (max-width: 767px) {
    .panels-map-1 .col-sm-4.col-md-3:nth-child(2) {
        margin-right: 0;
    }
}
/* end Panels over map 1 */
/* saw blade list */
ul.saw-blade {
    list-style: none;
    padding: 0;
    margin: 0 45px 0 0;
}

    ul.saw-blade li {
        position: relative;
        min-height: 90px;
        background-color: #fff;
    }

        ul.saw-blade li::after {
            position: absolute;
            right: -45px;
            top: 0;
            content: '';
            overflow: hidden;
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 45px 0 45px 45px;
            border-color: transparent transparent transparent #fff;
        }

        ul.saw-blade li a {
            display: block;
        }

    ul.saw-blade .icon {
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 105px;
    }

        ul.saw-blade .icon img {
            display: block;
            margin: 0 auto;
            max-width: 100%;
            height: auto;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

    ul.saw-blade .title {
        position: relative;
        padding: 21px 10px 0 110px;
        font-size: 18px;
        line-height: 20px;
    }

    ul.saw-blade li:last-child {
        background-color: #fc3;
    }

        ul.saw-blade li:last-child::after {
            border-left-color: #fc3;
        }

/* end saw blade list */
.io-strategy h3 {
    margin: 30px 0;
    font-weight: 400;
    font-size: 30px;
    line-height: 34px;
    text-align: center;
    text-transform: uppercase;
    color: #1a2d44;
}

.panel-chart {
    margin-bottom: 30px;
}

    .panel-chart .panel.gradient {
        border-top: 0;
        margin-bottom: 0;
    }

/* contact-wide */
.contact-wide {
    border: 1px solid #f3f3ee;
    display: table;
    width: 100%;
}

    .contact-wide .image,
    .contact-wide .details {
        display: table-cell;
        padding: 30px;
        vertical-align: middle;
    }

    .contact-wide .image {
        width: 300px;
    }

        .contact-wide .image img {
            display: block;
            margin: 0 0 0 auto;
            width: 100%;
            max-width: 160px;
            height: auto;
            border-radius: 200px;
        }

    .contact-wide .details .name {
        font-size: 22px;
        color: #2b5689;
        margin-bottom: 20px;
    }

    .contact-wide .details .position {
        margin-bottom: 20px;
    }

    .contact-wide .details .contact .email,
    .contact-wide .details .contact .tel {
        display: inline-block;
        margin-bottom: 20px;
    }

    .contact-wide .details .contact .email {
        margin-right: 30px;
    }

    .contact-wide .details .contact .blue-box {
        background-color: rgb(43, 86, 137);
        color: #fff;
        padding: 0.3rem 0.9rem;
        display: inline-block;
        text-transform: uppercase;
        font-size: 0.95rem;
    }

@media (max-width: 767px) {
    .contact-wide .image {
        width: 200px;
    }
}

@media (max-width: 543px) {
    .contact-wide {
        display: block;
    }

        .contact-wide .image,
        .contact-wide .details {
            display: block;
            padding: 30px;
            vertical-align: middle;
        }

        .contact-wide .image {
            width: 100%;
            margin: 0 auto;
        }

            .contact-wide .image img {
                margin: 0 auto;
                width: 100%;
                max-width: 160px;
            }

        .contact-wide .details {
            padding-top: 0;
        }
}
/* contact-wide */
/* KPI Panel */
.kpi-panel {
    border: 1px solid #ddd;
    margin-bottom: 30px;
}

    .kpi-panel .header {
        display: table;
        width: 100%;
        border-bottom: 1px solid #ddd;
        font-size: 30px;
        line-height: 30px;
        font-weight: 100;
        color: #2b5689;
        background-color: #f3f3ee;
    }

        .kpi-panel .header span {
            display: table-cell;
            vertical-align: middle;
        }

            .kpi-panel .header span.title {
                padding: 30px;
            }

            .kpi-panel .header span.icon {
                width: 30px;
                padding: 5px;
            }

                .kpi-panel .header span.icon:last-child {
                    padding-right: 30px;
                }

                .kpi-panel .header span.icon img {
                    display: block;
                    margin: 0 0 0 auto;
                }

@media (min-width: 1200px) {
    .kpi-panel .header span.icon {
        padding: 5px 10px;
    }
}

@media (max-width: 543px) {
    .kpi-panel .header {
        display: block;
    }

        .kpi-panel .header span.title {
            display: block;
        }

        .kpi-panel .header span.icon {
            /*display:inline-block;*/
            display: none;
        }

    /*
  .kpi-panel .header span.icon img {
  	margin:0 auto;
  }
  */
}

.kpi-panel .body {
    padding: 30px;
}

.kpi-panel .footer {
    padding: 20px 30px;
    border-top: 1px solid #ddd;
    font-size: 14px;
    background-color: #f3f3ee;
    font-weight: 400;
}

/* KPI Panel */
/* Strategic Objectives icons & texts */
.objectives-icons {
    display: table;
    width: 100%;
    table-layout: fixed;
}

    .objectives-icons .icon-txt {
        display: table-cell;
        vertical-align: top;
        padding: 20px;
    }

        .objectives-icons .icon-txt .icon {
            text-align: center;
        }

        .objectives-icons .icon-txt .copy {
            text-align: center;
            font-size: 16px;
        }

        .objectives-icons .icon-txt .icon + .copy {
            padding-top: 20px;
        }

        .objectives-icons .icon-txt h4 {
            padding-bottom: 20px;
        }

@media (max-width: 767px) {
    .objectives-icons .icon-txt {
        padding: 20px 10px;
    }
}

@media (max-width: 543px) {
    .objectives-icons {
        display: block;
        text-align: center;
        font-size: 0;
    }

        .objectives-icons .icon-txt {
            display: inline-block;
            vertical-align: top;
            width: 50%;
        }
}

@media (max-width: 400px) {
    .objectives-icons .icon-txt .copy {
        font-size: 14px;
    }
}
/* end Strategic Objectives icons & texts */
/* Investor relations link box */
.ir-link-box {
    border: 1px solid #e6e4e4;
    box-shadow: 7px 7px 0px 0px rgba(0, 0, 0, 0.05);
}

    .ir-link-box .copy {
        margin: 60px auto;
        width: 80%;
        text-align: center;
    }

        .ir-link-box .copy h3 {
            font-weight: 300;
        }

        .ir-link-box .copy p {
            margin: 30px 0;
        }

            .ir-link-box .copy p:last-child {
                margin-bottom: 0;
            }

/* end Investor relations link box */
/*  2.7 SEARCH RESULTS
	-------------------------------------------------------------------------- */
/*  2.8 IMAGE LIBRARY
	-------------------------------------------------------------------------- */
.card.medialib {
    margin-bottom: 60px;
}

    .card.medialib .title {
        margin-bottom: 15px;
    }

    .card.medialib .image {
        margin-bottom: 15px;
    }

        .card.medialib .image img {
            display: block;
            width: 100%;
            height: auto;
        }

.card.imglib {
    border: 1px solid #ddd;
    margin-bottom: 30px;
}

    .card.imglib a.image {
        position: relative;
        display: block;
        overflow: hidden;
        width: 100%;
        height: 0;
        padding-bottom: 62.5%;
    }

        .card.imglib a.image img {
            min-height: 1000%;
            min-width: 1000%;
            position: absolute;
            top: -10000%;
            right: -10000%;
            bottom: -10000%;
            left: -10000%;
            margin: auto;
            transform: scale(0.101);
        }

        .card.imglib a.image::after {
            position: absolute;
            top: 5px;
            right: 5px;
            display: block;
            content: '';
            width: 50px;
            height: 50px;
            background: transparent url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAMAAAAp4XiDAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAAZQTFRF+Pj4////Z44hfQAAAAJ0Uk5T/wDltzBKAAAAVklEQVR42uyUQQoAIAgEt/9/uqh8wCwJBs59SG1VaprfGJdcJTSjNmqIKfsF2r6YcrsAijXddGM5+Xl0ElzKiM9GAcFVndjCqMvYJ2dpy96gpnnLFGAAIsIAb6Dh7ksAAAAASUVORK5CYII=") no-repeat 0 0;
        }

    .card.imglib .info .wrapper {
        padding: 15px;
    }

    .card.imglib .downloads {
        display: flex;
        flex-flow: row nowrap;
    }

        .card.imglib .downloads a {
            display: block;
            flex: 1 1 auto;
            border-top: 1px solid #ddd;
            border-right: 1px solid #ddd;
            text-align: center;
            padding: 10px;
            font-size: 14px;
        }

            .card.imglib .downloads a span {
                display: inline-block;
                margin: 0 auto;
            }

                .card.imglib .downloads a span + span {
                    margin-top: 5px;
                }

            .card.imglib .downloads a .details {
                color: #373a3c;
            }

            .card.imglib .downloads a .down {
                padding-left: 20px;
                background: transparent url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAQCAYAAAAmlE46AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAJVJREFUeNpi1A7rZMABtkBpH2ySTAxkglGN9NCoBMTxWNTFQeXggAWJzQXE+4FYDojlkcRrgbgJiB8BsSYQfwMJMqKlHGcg3gDEPED8AyrGAcSfgTgQiPficipIwgmIX0M1cEDZzsiacAXOaSC2BeKHQPwAiG2gYgy4/IgMbgKxNZT9FJsCkEYXAiGviUvjbnLiESDAACuGFxin3KEgAAAAAElFTkSuQmCC") no-repeat 0 50%;
            }

            .card.imglib .downloads a:hover {
                background-color: #f8f8f8;
            }

            .card.imglib .downloads a:last-child {
                border-right: 0;
            }

.imglib-modal .modal-content {
    border-radius: 0;
}

.imglib-modal .modal-header {
    background-color: #2b5689;
    padding: 0;
}

    .imglib-modal .modal-header button.close {
        width: 70px;
        height: 70px;
        position: relative;
        opacity: 1;
    }

        .imglib-modal .modal-header button.close::before, .imglib-modal .modal-header button.close::after {
            position: absolute;
            display: block;
            content: '';
            width: 2px;
            height: 30px;
            left: 34px;
            top: 20px;
            background-color: #fff;
        }

        .imglib-modal .modal-header button.close::before {
            transform: rotate(45deg);
        }

        .imglib-modal .modal-header button.close::after {
            transform: rotate(-45deg);
        }

.imglib-modal .modal-body {
    padding: 0;
}

    .imglib-modal .modal-body .image img {
        display: block;
        width: 100%;
        height: auto;
    }

    .imglib-modal .modal-body .copy {
        position: relative;
        margin: 0;
        padding: 20px 40px;
    }

        .imglib-modal .modal-body .copy::before {
            position: absolute;
            display: block;
            content: '';
            width: 0;
            height: 0;
            top: -18px;
            left: 50%;
            margin-left: -19px;
            border-style: solid;
            border-width: 0 19px 18px;
            border-color: transparent transparent #fff;
        }

/* 	==========================================================================
	3. ADDITIONAL MEDIA QUERIES
	========================================================================== */
@media (max-width: 360px) {
    .col-ts-12 {
        float: none;
        width: 100%;
    }
}
/* 	==========================================================================
	4. AD HOC STYLES
	========================================================================== */
/*  4.0 LUKASZ
	-------------------------------------------------------------------------- */
/* Careers map app */
.map-careers-app {
    position: relative;
    overflow: hidden;
}

    .map-careers-app .mapmod {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        z-index: 3;
        display: none;
    }

        .map-careers-app .mapmod .bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.4);
            z-index: 4;
        }

        .map-careers-app .mapmod .resetalert {
            position: relative;
            z-index: 5;
            text-align: center;
            width: 440px;
            margin: 230px auto 0 auto;
            display: none;
        }

            .map-careers-app .mapmod .resetalert p {
                font-size: 24px;
                line-height: 30px;
                font-weight: bold;
                color: #fff;
                margin: 0;
                text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.7);
            }

            .map-careers-app .mapmod .resetalert a.resetbtn {
                display: inline-block;
                padding: 12px 20px 12px 20px;
                border-radius: 4px;
                margin-top: 15px;
                background: #3784d0;
                font-size: 11px;
                line-height: 14px;
                font-weight: bold;
                text-transform: uppercase;
                text-decoration: none;
                color: #fff;
                vertical-align: middle;
                -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.6);
                -moz-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.6);
                box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.6);
            }

        .map-careers-app .mapmod .modbody .closebar {
            height: 70px;
            padding: 0;
            text-align: right;
            background-color: #2b5689;
            opacity: 1;
        }

            .map-careers-app .mapmod .modbody .closebar .close {
                width: 70px;
                height: 70px;
                border: 0;
                background: transparent url("data:image/gif;base64,R0lGODlhRgBGAKIHANji6jJmlP///zFkk9rk7CRcjTRnlP///yH5BAEAAAcALAAAAABGAEYAAAO1eLrc/jDKSau9OOvNu/9gKI5kaZ5oqq5s675wLM90bd94ru987/9AV2GgGRRuBQAhgAkQAMeaU7C0TAFEm4FAZU6mVdzVCwEbdttumRtGs8kLMHxnZsiD9cM9eEgv93x6bG+BDGlqhXEAAgIAc3xgXI6JcmOBeZZAeQqZPYCKjY83n3aSojSkDZ02qQ6tMAOEFWBZNElts09RNUNFu4nAwcLDxMXGx8jJysvMzc7P0NHS09R8CQA7") no-repeat 50% 50%;
                overflow: hidden;
                text-indent: 200px;
                opacity: 1;
            }

                .map-careers-app .mapmod .modbody .closebar .close:hover {
                    opacity: 0.8;
                }

        .map-careers-app .mapmod .modbody {
            position: relative;
            width: 775px;
            min-height: 320px;
            margin: 0 auto;
            top: 50%;
            transform: translateY(-50%);
            background-color: #fff;
            z-index: 5;
            -webkit-box-shadow: 0px 3px 14px 0px rgba(0, 0, 0, 0.4);
            -moz-box-shadow: 0px 3px 14px 0px rgba(0, 0, 0, 0.4);
            box-shadow: 0px 3px 14px 0px rgba(0, 0, 0, 0.4);
        }

            .map-careers-app .mapmod .modbody .cntwrap {
                padding: 20px 5%;
            }

                .map-careers-app .mapmod .modbody .cntwrap .header {
                    margin: 0 0 15px 0;
                    font-size: 20px;
                    font-weight: 300;
                    color: #2b5689;
                }

                .map-careers-app .mapmod .modbody .cntwrap .single {
                    font-size: 14px;
                    color: #333;
                }

                    .map-careers-app .mapmod .modbody .cntwrap .single .description {
                        max-height: 238px;
                        overflow-x: hidden;
                        overflow-y: auto;
                    }

                .map-careers-app .mapmod .modbody .cntwrap .description,
                .map-careers-app .mapmod .modbody .cntwrap .description * {
                    padding: 0 !important;
                    border: 0 !important;
                    margin: 0 !important;
                    font-family: "Roboto", sans-serif !important;
                    font-size: 16px !important;
                    color: #1a2d44 !important;
                    font-variant: normal !important;
                }

                .map-careers-app .mapmod .modbody .cntwrap .multiple {
                    font-size: 16px;
                    color: #1a2d44;
                }

                    .map-careers-app .mapmod .modbody .cntwrap .multiple .acrdn {
                        max-height: 238px;
                        overflow-x: hidden;
                        overflow-y: auto;
                    }

                        .map-careers-app .mapmod .modbody .cntwrap .multiple .acrdn .atitle {
                            padding-top: 5px;
                            border-top: 1px solid #eee;
                            margin-top: 5px;
                            font-weight: 400 !important;
                            cursor: pointer;
                            color: #336699 !important;
                        }

                            .map-careers-app .mapmod .modbody .cntwrap .multiple .acrdn .atitle:hover,
                            .map-careers-app .mapmod .modbody .cntwrap .multiple .acrdn .atitle.active {
                                color: #333 !important;
                            }

                            .map-careers-app .mapmod .modbody .cntwrap .multiple .acrdn .atitle:first-child {
                                border-top: 0;
                                margin-top: 0;
                            }

                        .map-careers-app .mapmod .modbody .cntwrap .multiple .acrdn .acnt {
                            display: none;
                        }

                        .map-careers-app .mapmod .modbody .cntwrap .multiple .acrdn .atitle.active + .acnt {
                            display: block;
                        }

                            .map-careers-app .mapmod .modbody .cntwrap .multiple .acrdn .atitle.active + .acnt .description {
                                padding-top: 10px !important;
                            }

                        .map-careers-app .mapmod .modbody .cntwrap .multiple .acrdn .acnt .link {
                            margin-bottom: 10px;
                        }

                        .map-careers-app .mapmod .modbody .cntwrap .multiple .acrdn .acnt:last-child .link {
                            margin-bottom: 0;
                        }

                .map-careers-app .mapmod .modbody .cntwrap a.more {
                    display: inline-block;
                    padding: 12px 15px 12px 23px;
                    border-radius: 4px;
                    margin-top: 15px;
                    background: #3784d0 url("data:image/gif;base64,R0lGODlhEQAMAIABAP///////yH5BAEAAAEALAAAAAARAAwAAAIYjI8AyK3bYngy0souPnr3+kmhpWzGSDIFADs=") no-repeat 0 50%;
                    font-size: 11px;
                    line-height: 14px;
                    font-weight: bold;
                    text-transform: uppercase;
                    text-decoration: none;
                    color: #fff;
                    vertical-align: middle;
                }

            .map-careers-app .mapmod .modbody .graphic {
                position: absolute;
                right: 0;
                top: 0;
                bottom: 0;
                width: 370px;
            }

    .map-careers-app .filters-wrap {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        padding: 18px 10px;
        background-color: #ffffff;
        z-index: 2;
        text-align: center;
    }

        .map-careers-app .filters-wrap .search-btn {
            display: inline-block;
            padding: 15px 30px;
            border: 1px solid #ffcc33;
            margin-top: 10px;
            margin-right: 10px;
            font-size: 16px;
            text-transform: uppercase;
            text-decoration: none;
            color: #222;
            background-color: #ffcc33;
        }

            .map-careers-app .filters-wrap .search-btn:hover {
                background-color: #ffcc33;
            }

        .map-careers-app .filters-wrap .reset-btn {
            display: inline-block;
            padding: 15px 30px;
            border: 1px solid #dddddd;
            margin-top: 10px;
            margin-right: 10px;
            font-size: 16px;
            text-transform: uppercase;
            text-decoration: none;
            color: #222;
            background-color: transparent;
        }

            .map-careers-app .filters-wrap .reset-btn:hover {
                background-color: #dddddd;
            }

        .map-careers-app .filters-wrap .link-btn {
            display: inline-block;
            padding: 15px 30px;
            border: 1px solid #2b5689;
            margin-top: 10px;
            font-size: 16px;
            text-transform: uppercase;
            text-decoration: none;
            color: #fff;
            background-color: #2b5689;
        }

            .map-careers-app .filters-wrap .link-btn:hover {
                background-color: #1a2d44;
            }

        .map-careers-app .filters-wrap select {
            width: 210px;
            box-sizing: border-box;
            padding: 15px 10px;
            border-color: #dddddd;
            margin-top: 10px;
            margin-right: 10px;
            font-size: 16px;
            line-height: 16px;
            color: #666;
        }

.map-container {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 820px;
}

#careersgmap {
    width: 100%;
    height: 820px;
}

@media (max-width: 525px) {
    .map-careers-app .filters-wrap select {
        width: 100%;
        padding: 7px 10px;
        margin-right: 0;
    }
}
/* end Careers map app */
/* Locations map app */
.map-locations-app {
    position: relative;
    overflow: hidden;
}

    .map-locations-app .filters-wrap {
        width: 100%;
        padding: 18px 10px;
        background-color: #ffffff;
        z-index: 2;
        text-align: center;
    }

    .map-locations-app .filters-wrap-2 {
        padding-bottom: 0;
    }

    .map-locations-app .filters-wrap-3 {
        padding-bottom: 36px;
    }

    .map-locations-app .filters-wrap .search-btn {
        display: inline-block;
        padding: 15px 30px;
        border: 1px solid #ffcc33;
        margin-top: 10px;
        margin-right: 10px;
        font-size: 16px;
        text-transform: uppercase;
        text-decoration: none;
        color: #222;
        background-color: #ffcc33;
    }

        .map-locations-app .filters-wrap .search-btn:hover {
            background-color: #ffcc33;
        }

    .map-locations-app .filters-wrap .reset-btn {
        display: inline-block;
        padding: 15px 30px;
        border: 1px solid #dddddd;
        margin-top: 10px;
        font-size: 16px;
        text-transform: uppercase;
        text-decoration: none;
        color: #222;
        background-color: transparent;
    }

        .map-locations-app .filters-wrap .reset-btn:hover {
            background-color: #dddddd;
        }

    .map-locations-app .filters-wrap select {
        width: 210px;
        box-sizing: border-box;
        padding: 15px 10px;
        border-color: #dddddd;
        margin-top: 10px;
        margin-right: 10px;
        font-size: 16px;
        line-height: 16px;
        color: #666;
    }

    .map-locations-app .filters-wrap .mediatextsearch {
        width: 310px;
        box-sizing: border-box;
        padding: 15px 10px;
        border-color: #dddddd;
        margin-top: 0;
        margin-right: 10px;
        font-size: 16px;
        line-height: 16px;
        color: #666;
    }

@media (max-width: 525px) {
    .map-locations-app .filters-wrap select {
        width: 100%;
        padding: 7px 10px;
        margin-right: 0;
    }
}

.map-locations-app .map-container {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 770px;
}

#locationsgmap {
    width: 100%;
    height: 810px;
}

.continent-marker,
.country-marker {
    max-width: 150px;
    padding: 5px 15px;
    font-size: 14px;
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
    color: #fff;
    background-color: #1a2d44;
    cursor: pointer;
    text-align: center;
    font-weight: 100;
}

.continent-marker {
    max-width: initial;
    font-size: 16px;
}

    .continent-marker::after,
    .country-marker::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 10px 10px 0 10px;
        border-color: #1a2d44 transparent transparent transparent;
        margin-left: -10px;
    }

    .continent-marker:hover,
    .country-marker:hover {
        background-color: #2b5689;
    }

        .continent-marker:hover::after,
        .country-marker:hover::after {
            border-color: #2b5689 transparent transparent transparent;
        }

.map-locations-app .mapmod {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    display: none;
}

    .map-locations-app .mapmod .bg {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.4);
        z-index: 4;
    }

    .map-locations-app .mapmod .resetalert {
        position: relative;
        z-index: 5;
        text-align: center;
        width: 440px;
        margin: 230px auto 0 auto;
        display: none;
    }

        .map-locations-app .mapmod .resetalert p {
            font-size: 24px;
            line-height: 30px;
            font-weight: bold;
            color: #fff;
            margin: 0;
            text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.7);
        }

        .map-locations-app .mapmod .resetalert .resetbtn {
            display: inline-block;
            padding: 15px 30px;
            border: none;
            margin-top: 10px;
            font-size: 16px;
            text-transform: uppercase;
            text-decoration: none;
            color: #222;
            background-color: #fc3;
        }

            .map-locations-app .mapmod .resetalert .resetbtn:hover {
                background-color: #fbba00;
            }

    .map-locations-app .mapmod .modbody .closebar {
        height: 70px;
        padding: 0;
        text-align: right;
        background-color: #2b5689;
        opacity: 1;
    }

        .map-locations-app .mapmod .modbody .closebar .close {
            width: 70px;
            height: 70px;
            border: 0;
            background: transparent url("data:image/gif;base64,R0lGODlhRgBGAKIHANji6jJmlP///zFkk9rk7CRcjTRnlP///yH5BAEAAAcALAAAAABGAEYAAAO1eLrc/jDKSau9OOvNu/9gKI5kaZ5oqq5s675wLM90bd94ru987/9AV2GgGRRuBQAhgAkQAMeaU7C0TAFEm4FAZU6mVdzVCwEbdttumRtGs8kLMHxnZsiD9cM9eEgv93x6bG+BDGlqhXEAAgIAc3xgXI6JcmOBeZZAeQqZPYCKjY83n3aSojSkDZ02qQ6tMAOEFWBZNElts09RNUNFu4nAwcLDxMXGx8jJysvMzc7P0NHS09R8CQA7") no-repeat 50% 50%;
            overflow: hidden;
            text-indent: 200px;
            opacity: 1;
        }

            .map-locations-app .mapmod .modbody .closebar .close:hover {
                opacity: 0.8;
            }

    .map-locations-app .mapmod .modbody {
        position: relative;
        width: 775px;
        min-height: 320px;
        margin: 0 auto;
        top: 50%;
        transform: translateY(-50%);
        background-color: #fff;
        z-index: 5;
        -webkit-box-shadow: 0px 3px 14px 0px rgba(0, 0, 0, 0.4);
        -moz-box-shadow: 0px 3px 14px 0px rgba(0, 0, 0, 0.4);
        box-shadow: 0px 3px 14px 0px rgba(0, 0, 0, 0.4);
    }

        .map-locations-app .mapmod .modbody .cntwrap {
            position: relative;
            display: table;
            table-layout: fixed;
            width: 100%;
            padding: 0;
        }

            .map-locations-app .mapmod .modbody .cntwrap .description,
            .map-locations-app .mapmod .modbody .cntwrap .image,
            .map-locations-app .mapmod .modbody .cntwrap .details {
                display: table-cell;
                vertical-align: top;
                padding: 20px;
                width: 50%;
                font-size: 16px;
            }

            .map-locations-app .mapmod .modbody .cntwrap .description {
                color: #333;
                padding-left: 50px;
            }

                .map-locations-app .mapmod .modbody .cntwrap .description .header {
                    margin: 0 0 15px 0;
                    font-size: 20px;
                    font-weight: 300;
                    color: #2b5689;
                }

                .map-locations-app .mapmod .modbody .cntwrap .description .address {
                    font-size: 16px;
                    color: #333;
                }

                .map-locations-app .mapmod .modbody .cntwrap .description .tels span {
                    display: block;
                }

                .map-locations-app .mapmod .modbody .cntwrap .description .faxs span {
                    display: block;
                }

                    .map-locations-app .mapmod .modbody .cntwrap .description .faxs span:first-child {
                        margin-top: 10px;
                    }

                .map-locations-app .mapmod .modbody .cntwrap .description .emails a {
                    display: block;
                    word-break: break-word;
                }

                    .map-locations-app .mapmod .modbody .cntwrap .description .emails a:first-child {
                        margin-top: 10px;
                    }

                .map-locations-app .mapmod .modbody .cntwrap .description .link {
                    position: absolute;
                    bottom: 22px;
                    left: 50px;
                }

            .map-locations-app .mapmod .modbody .cntwrap .image img {
                display: block;
                width: 100%;
                height: auto;
            }

            .map-locations-app .mapmod .modbody .cntwrap .manager {
                display: table;
                width: 100%;
                margin-top: 16px;
            }

                .map-locations-app .mapmod .modbody .cntwrap .manager .minfo {
                    display: table-cell;
                    vertical-align: top;
                }

                    .map-locations-app .mapmod .modbody .cntwrap .manager .minfo .mposition {
                        font-weight: bold;
                        margin-bottom: 5px;
                    }

                    .map-locations-app .mapmod .modbody .cntwrap .manager .minfo .mname {
                        margin-bottom: 5px;
                    }

                    .map-locations-app .mapmod .modbody .cntwrap .manager .minfo .memail a {
                        word-break: break-word;
                    }

                .map-locations-app .mapmod .modbody .cntwrap .manager .mphoto {
                    display: table-cell;
                    width: 74px;
                    vertical-align: top;
                    padding-top: 3px;
                }

                    .map-locations-app .mapmod .modbody .cntwrap .manager .mphoto img {
                        display: block;
                        width: 54px;
                        height: auto;
                        border-radius: 50%;
                    }

                .map-locations-app .mapmod .modbody .cntwrap .image.hidden,
                .map-locations-app .mapmod .modbody .cntwrap .details.hidden,
                .map-locations-app .mapmod .modbody .cntwrap .manager.hidden,
                .map-locations-app .mapmod .modbody .cntwrap .mphoto.hidden {
                    display: none;
                }

/* end Locations map app */
.lead > img,
.lead > p > img,
.rt > img,
.rt > p > img,
section > .container > .row > div > p > img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

/* fix for images being to close to surrounding text on landing pages in mobile resolutions */
@media (max-width: 767px) {
    .col-lg-6 > img.img-fluid {
        margin-bottom: 30px;
    }
}
/* Return to top */
#return-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(26, 45, 68, 0.7);
    width: 50px;
    height: 50px;
    display: block;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 11;
}

    #return-to-top::after {
        display: block;
        content: '';
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 10px 12px 10px;
        border-color: transparent transparent #fff transparent;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
        top: 16px;
        margin: 0 auto;
        position: relative;
    }

    #return-to-top:hover {
        background: #2b5689;
    }

        #return-to-top:hover::after {
            color: #fff;
            top: 12px;
        }

/* Fokker modal */
.fokker-modal .modal-content {
    border-radius: 0;
}

.fokker-modal .modal-header {
    background-color: #2b5689;
}

.fokker-modal .modal-header {
    padding: 0;
}

    .fokker-modal .modal-header button.close {
        width: 70px;
        height: 70px;
        position: relative;
        opacity: 1;
    }

        .fokker-modal .modal-header button.close:before,
        .fokker-modal .modal-header button.close:after {
            position: absolute;
            display: block;
            content: '';
            width: 2px;
            height: 30px;
            left: 34px;
            top: 20px;
            background-color: #fff;
        }

        .fokker-modal .modal-header button.close:before {
            transform: rotate(45deg);
        }

        .fokker-modal .modal-header button.close:after {
            transform: rotate(-45deg);
        }

.fokker-modal .modal-body {
    padding: 40px;
}

/* Formula E locations map */
.f-e-map {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
}

#fe-map {
    text-align: center;
    margin: 40px 0 20px 0;
}

    #fe-map .map-holder {
        display: inline-block;
        position: relative;
        margin: 0 auto;
        text-align: left;
    }

    #fe-map #bgmap {
        display: block;
        max-width: 100%;
        height: auto;
    }

    #fe-map .map-points {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
    }

        #fe-map .map-points button {
            position: absolute;
            display: block;
            box-sizing: border-box;
            padding: 3px 10px 3px 20px;
            border: 0;
            background: #1a2d44;
            font-size: 15px;
            color: #fff;
            text-transform: uppercase;
            opacity: 1;
            transform: translate(0, -50%);
        }

            #fe-map .map-points button::after {
                position: absolute;
                top: 50%;
                left: 0;
                content: '';
                display: block;
                box-sizing: border-box;
                width: 38px;
                height: 38px;
                border: 10px solid #1a2d44;
                border-radius: 60px;
                margin-top: -19px;
                margin-left: -19px;
                margin-right: -19px;
                background-color: #2b5689;
                transition: background-color 0.3s;
            }

            #fe-map .map-points button:hover::after {
                background-color: #fc3;
            }

            #fe-map .map-points button.left {
                padding: 3px 20px 3px 10px;
                transform: translate(-100%, -50%);
            }

                #fe-map .map-points button.left::after {
                    left: auto;
                    right: 0;
                }

    #fe-map .mod-wrapper {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        text-align: left;
        pointer-events: none;
    }

        #fe-map .mod-wrapper .mapmod {
            display: none;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            max-width: 775px;
            padding: 20px;
            background-color: #fff;
            -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
            -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
            box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
            pointer-events: all;
        }

            #fe-map .mod-wrapper .mapmod.active {
                display: block;
            }

            #fe-map .mod-wrapper .mapmod .btns {
                text-align: right;
                margin-bottom: 20px;
            }

            #fe-map .mod-wrapper .mapmod button.close {
                display: inline-block;
                border: 0;
                width: 30px;
                height: 30px;
                border: 0;
                background: #fff url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAMAAAAM7l6QAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADBQTFRF////K1aJxdDft8bXoLPKMluN/f3+fJe2iqK+hZ67/v7//v7+T3Od4Ofu/P39ytXhGW+OawAAAIRJREFUeNrE0dsOgCAIAFAIw7Ks///bZhdNAd9aPAFHNxgAnwcNosWc0wHH1tn74lPr7HGMYHnS6n3lQitX9OWqZjf0dlMvtzU5dhR4RXS2+t7vc6rZ8mvmxfBnI93LvmHW7lt60pNSroJyX3rVob0vknlf2IUmX7cndyQXdRH+jUOAAQANlANds5B11gAAAABJRU5ErkJggg==") no-repeat 0 0;
                font: 0/0 a;
                color: transparent;
                overflow: hidden;
                opacity: 1;
                float: none;
                text-shadow: none;
                transition: opacity 0.3s;
            }

                #fe-map .mod-wrapper .mapmod button.close:hover {
                    opacity: 0.7;
                }

            #fe-map .mod-wrapper .mapmod .cnt {
                color: #373A3C;
                font-size: 16px;
            }

                #fe-map .mod-wrapper .mapmod .cnt .title {
                    margin-bottom: 10px;
                    font-size: 26px;
                    font-weight: 300;
                    color: #24558D;
                }

            #fe-map .mod-wrapper .mapmod .photo img {
                display: block;
                width: 100%;
                height: auto;
            }

/* end Formula E locations map */
/* Formula E car hotspots */
#f-e-hotspots {
    text-align: center;
    margin: 40px 0 20px 0;
}

    #f-e-hotspots .holder {
        display: inline-block;
        position: relative;
        margin: 0 auto;
        text-align: left;
    }

    #f-e-hotspots #bgmap {
        display: block;
        max-width: 100%;
        height: auto;
    }

    #f-e-hotspots #bgmap {
        animation-name: formulaEAnim;
        animation-duration: 0.3s;
        animation-timing-function: ease-out;
        animation-delay: 0s;
        animation-iteration-count: 1;
        animation-direction: normal;
        animation-fill-mode: both;
        animation-play-state: running;
    }

@keyframes formulaEAnim {
    0% {
        filter: blur(10px);
        opacity: 0;
        transform: translate(100%, -50%) scale(0);
    }

    100% {
        filter: blur(0);
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
}

#f-e-hotspots .spots {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

    #f-e-hotspots .spots div {
        position: absolute;
        display: block;
        box-sizing: border-box;
        width: 0;
        height: 0;
        padding: 0;
        border: 0;
        background: transparent;
        /*transform: translate(0, -50%);*/
        overflow: visible;
        cursor: pointer;
    }

        #f-e-hotspots .spots div::after {
            position: absolute;
            top: 0;
            left: 0;
            content: '';
            display: block;
            box-sizing: content-box;
            width: 20px;
            height: 20px;
            border: 6px solid #fff;
            border-radius: 60px;
            margin: -16px;
            background-color: #ffc824;
            transition: border 0.5s, background-color 0.5s, top 0.5s, left 0.5s, width 0.5s, height 0.5s;
        }

        #f-e-hotspots .spots div span {
            position: absolute;
            top: -15px;
            left: 36px;
            display: inline-block;
            height: 30px;
            padding: 0 12px;
            white-space: nowrap;
            background-color: #ffca24;
            font-size: 16px;
            line-height: 30px;
            color: #333;
            background-clip: padding-box;
            transition: border-width 0.5s;
        }

        #f-e-hotspots .spots div.left span {
            left: auto;
            right: 0;
            border-right: 36px solid transparent;
            border-left: 0;
        }

        #f-e-hotspots .spots div.right span {
            left: 0;
            right: auto;
            border-right: 0;
            border-left: 36px solid transparent;
        }

        #f-e-hotspots .spots div:hover::after {
            border: 6px solid #ffc824;
            background-color: transparent;
        }

        #f-e-hotspots .spots div span::before {
            display: block;
            content: '';
            position: absolute;
            left: -15px;
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 15px 15px 15px 0;
            border-color: transparent #ffc824 transparent transparent;
        }

        #f-e-hotspots .spots div.left span::before {
            left: auto;
            right: -15px;
            border-width: 15px 0 15px 15px;
            border-color: transparent transparent transparent #ffc824;
        }

        #f-e-hotspots .spots div::after {
            animation-name: spotAppear;
            animation-duration: 0.25s;
            animation-timing-function: ease-out;
            animation-delay: 0s;
            animation-iteration-count: 1;
            animation-direction: normal;
            animation-fill-mode: backwards;
            animation-play-state: running;
        }

        #f-e-hotspots .spots div:nth-of-type(1)::after {
            animation-delay: 0.5s;
        }

        #f-e-hotspots .spots div:nth-of-type(2)::after {
            animation-delay: 0.6s;
        }

        #f-e-hotspots .spots div:nth-of-type(3)::after {
            animation-delay: 0.7s;
        }

        #f-e-hotspots .spots div:nth-of-type(4)::after {
            animation-delay: 0.8s;
        }

        #f-e-hotspots .spots div:nth-of-type(5)::after {
            animation-delay: 0.9s;
        }

        #f-e-hotspots .spots div:nth-of-type(6)::after {
            animation-delay: 1s;
        }

@keyframes spotAppear {
    0% {
        transform: scale(0);
        border-width: 0;
        top: 6px;
        left: 6px;
    }

    40% {
        transform: scale(1);
        border-width: 0;
        top: 6px;
        left: 6px;
    }

    100% {
        border-width: 6px;
        top: 0;
        left: 0;
        transform: scale(1);
    }
}

#f-e-hotspots .spots div span {
    animation-name: spotRightAppear;
    animation-duration: 0.4s;
    animation-timing-function: ease-out;
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: backwards;
    animation-play-state: running;
    transform-origin: -36px 50%;
    transition: opacity 0.5s;
}

#f-e-hotspots .spots div.left span {
    transform-origin: 100% 50%;
}

#f-e-hotspots .spots div:nth-of-type(1) span {
    animation-delay: 1.2s;
}

#f-e-hotspots .spots div:nth-of-type(2) span {
    animation-delay: 1.3s;
}

#f-e-hotspots .spots div:nth-of-type(3) span {
    animation-delay: 1.4s;
}

#f-e-hotspots .spots div:nth-of-type(4) span {
    animation-delay: 1.5s;
}

#f-e-hotspots .spots div:nth-of-type(5) span {
    animation-delay: 1.6s;
}

#f-e-hotspots .spots div:nth-of-type(6) span {
    animation-delay: 1.7s;
}

@keyframes spotRightAppear {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-180deg);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

#f-e-hotspots .spots div.blurred::after {
    top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border: 1px solid #ffc824;
}

#f-e-hotspots .spots div.blurred span {
    opacity: 0;
}

#f-e-hotspots .mod-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    text-align: left;
    pointer-events: none;
}

    #f-e-hotspots .mod-wrapper .mapmod {
        display: none;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        max-width: 775px;
        padding: 20px;
        background-color: #fff;
        -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
        -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
        pointer-events: all;
    }

        #f-e-hotspots .mod-wrapper .mapmod.active {
            display: block;
        }

        #f-e-hotspots .mod-wrapper .mapmod .btns {
            text-align: right;
            margin-bottom: 5px;
        }

        #f-e-hotspots .mod-wrapper .mapmod button.close {
            display: inline-block;
            border: 0;
            width: 30px;
            height: 30px;
            border: 0;
            background: #fff url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAMAAAAM7l6QAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADBQTFRF////K1aJxdDft8bXoLPKMluN/f3+fJe2iqK+hZ67/v7//v7+T3Od4Ofu/P39ytXhGW+OawAAAIRJREFUeNrE0dsOgCAIAFAIw7Ks///bZhdNAd9aPAFHNxgAnwcNosWc0wHH1tn74lPr7HGMYHnS6n3lQitX9OWqZjf0dlMvtzU5dhR4RXS2+t7vc6rZ8mvmxfBnI93LvmHW7lt60pNSroJyX3rVob0vknlf2IUmX7cndyQXdRH+jUOAAQANlANds5B11gAAAABJRU5ErkJggg==") no-repeat 0 0;
            font: 0/0 a;
            color: transparent;
            overflow: hidden;
            opacity: 1;
            float: none;
            text-shadow: none;
            transition: opacity 0.3s;
        }

            #f-e-hotspots .mod-wrapper .mapmod button.close:hover {
                opacity: 0.7;
            }

        #f-e-hotspots .mod-wrapper .mapmod .cnt {
            color: #373A3C;
            font-size: 16px;
        }

            #f-e-hotspots .mod-wrapper .mapmod .cnt .title {
                margin-bottom: 10px;
                font-size: 26px;
                font-weight: 300;
                color: #24558D;
            }

        #f-e-hotspots .mod-wrapper .mapmod .photo img {
            display: block;
            width: 100%;
            height: auto;
        }

/* end Formula E car hotspots */
/* FULL PAGE COVER */
#middle > section.pagecover,
section.pagecover {
    z-index: 9999;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
}

    #middle > section.pagecover .cover-cnt,
    section.pagecover .cover-cnt {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 0;
        right: 0;
        width: 100%;
    }

    #middle > section.pagecover article.scrollable,
    section.pagecover article.scrollable {
        padding-right: 20px;
        max-height: calc(100vh - 200px);
        overflow: auto;
    }

        #middle > section.pagecover article.scrollable h2,
        section.pagecover article.scrollable h2 {
            font-size: 1.5rem;
        }

        #middle > section.pagecover article.scrollable h3,
        section.pagecover article.scrollable h3 {
            font-size: 1.3rem;
        }

/* end FULL PAGE COVER */
/*  4.1 MARSHALL
	-------------------------------------------------------------------------- */

.yellow-tag {
    background-color: #fc3;
    display: inline-block;
    padding: 0.2rem 0.7rem;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.white-tag {
    background-color: #fff;
    display: inline-block;
    padding: 0.2rem 0.7rem;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.cat .yellow-cat {
    background-color: #fc3;
}

.paggroup {
    display: none !important;
}

    .paggroup.visible {
        display: table-row !important;
    }

.Form__MainBody {
    width: 60%;
    max-width: 700px;
}

.Form__Element {
    display: block;
    margin: 5px 0 5px 0;
    padding: 10px 0px;
    height: auto;
    overflow: hidden;
}

div.FormSelection select {
    float: left;
    display: block;
    width: 65%;
    border-top: solid 1px #999;
    border-right: solid 1px #444;
    border-bottom: solid 1px #444;
    border-left: solid 1px #999;
    border-radius: 10px;
    padding: 5px;
}

.Form__Element .Form__Element__Caption {
    float: left;
    display: block;
    width: 35%;
}

.Form__Element__ValidationError {
    color: red;
    font-style: italic;
}

div.FormTextbox .FormTextbox__Input {
    float: left;
    display: block;
    width: 65%;
    border-top: solid 1px #999;
    border-right: solid 1px #444;
    border-bottom: solid 1px #444;
    border-left: solid 1px #999;
    border-radius: 10px;
    padding: 5px;
}

div.FormChoice label {
    float: right;
    display: block;
    width: 65%;
}

button.FormSubmitButton {
    background-color: #fc3;
    color: #222;
    transition: background-color 0.2s;
    font-size: 16px;
    padding: .75rem 1.5rem;
    display: inline-block;
    font-weight: 300;
    line-height: 1.25;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    border: 0;
    margin-left: 35%;
}

#skiptocontent {
    height: 1px;
    width: 1px;
    position: absolute;
    overflow: hidden;
    top: -10px;
}

.sitemap .level3 {
    padding-left: 40px;
}

.sitemap .level4 {
    padding-left: 80px;
}

.sitemap .level5 {
    padding-left: 120px;
}

.whitepanel {
    background-color: #fff;
    padding: 30px;
    min-height: 430px;
    margin-bottom: 10px;
}

ul.medialinks {
    list-style-type: none;
    padding: 0;
    margin: 0;
    height: auto;
    overflow: hidden;
    width: 100%;
}

    ul.medialinks li {
        padding: 0;
        margin: 0 0 8px 0;
        height: 50px;
        overflow: hidden;
    }

        ul.medialinks li a.smicon {
            display: block;
            float: left;
            width: 50px;
            height: 50px;
            margin: 0 1px 3px 0;
            overflow: hidden;
            text-indent: 60px;
            line-height: 50px;
            background-color: #369;
            background-repeat: no-repeat;
            background-position: 50% 50%;
            color: #369;
        }

        ul.medialinks li a.smtext {
            display: block;
            float: left;
            width: 80%;
            height: 50px;
            margin: 0 1px 3px 0;
            overflow: hidden;
            text-align: center;
            line-height: 50px;
            background-color: #369;
            background-repeat: no-repeat;
            background-position: 50% 50%;
            color: #fff;
        }

@media (max-width: 380px) {
    ul.medialinks li a.smtext {
        width: 75%;
        font-size: 0.8em;
    }
}

ul.medialinks li a.linkedin {
    background-color: #0077b5;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAVtJREFUeNrsl7FKA0EQhhMTNEIQLCyUNKklnSjY2CkW+gZaxN7KlzgsfQDFWl9ACxUsLMRCLCysBEFRCEYQBPH8DiyOYxePheju3T/wFTeTg/vYmexuNY7jShFiqFKQkIhEJCIRiUhEIhIpmMgKXMALnMDsf4pUHU+/03AFw6lcD9rwGtKKLGUkkhiH+dBa69GSfw5N5BDOM7k9uAxtRpKowzJMwS2chTjs3kXd8b0J6BryUY76CGzAIrSg/9OS+3DjbJKsiAOd2By/1Vtwbal9wpbj9wxsZ3+z5A+gY6nVYBvWfDqifFnycznejQx7lJdnrV1YhXXLTEzCwl8Nu2vswGbq+QjuoJn53Qwc+7wiUeb5CU4t/4pet9aDIXdvyDVCvI/0dbGSSAlFmkURqam1yi7ierFKWmfMkO/lrKdj1LABfsB7KW+ImhGJSEQiEpGIRCQikcHFtwADAD6w4Dvvo0vtAAAAAElFTkSuQmCC");
}

ul.medialinks li a.linkedintext {
    background-color: #0077b5;
}

ul.medialinks li a.facebook {
    background-color: #3b5998;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAS5JREFUeNpi/P//P8NwAEwMwwSMemTUI6MeGSEeYRkk7hAAYhMglgBiLqjYTyD+BsVvgPgSEH/HaQKoHhkgzATEkUB8FIj//CcMbPCZN1AxIgzEy4HYdSgnLX4gPgzEmkM9s8+jticGwiP2QBw0HIrfzOFQ/IICzYMIddeB+AIQf0YTfzFYPKIIzej4QCoQzxnsSUuagPxhcj1Bb4/wEpA/O1zaWj9GG42jHhn1CO0AIw2Gg44AsRYWcVYg5iGQ2XH1N0D9ETV6V4h8QCxIhj4OKMYGbg+XpPVguHjk3miMjHqENuDuQPRH1gDxcSzicgT6I6A+yCkcco8I2krH4R9vAsM97ZSYP9pEGfXIqEdGPTLqkVGPjHpk1COjHhn1yKhHRj0y6pFRj0AAQIABANnxYyMXYlXrAAAAAElFTkSuQmCC");
}

ul.medialinks li a.facebooktext {
    background-color: #3b5998;
}

ul.medialinks li a.twitter {
    background-color: #1da1f2;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAl1JREFUeNrs2E1IFkEcx/FH8QlFwRK9SRlEpondSqIXLbwUJVL3wksKHjzpwUt67OQlgi51C+qQlkKX8JB6CooskdIILAKpyBRfUFu/AyMs+qj7n9lZ4WEGPofneXaf3d/OMP+ZzQmCIJUNLTeVJc0H8UF8EB/EB/FBfJBsCpK3D9csRxOO689fMICZDMemsRrpX9WiUaBSeHxYGvewEmxvq+jDAX1sOXrRHvX/JTeSi29oMwiRh1fB3u2t9h9fUeQiSI2+2Do6hEE6A1n7gSrUoTbuIFe3XOwB8iMOqd/CIKpXZvE6NNxiC3IpwwU/on6P8xoCszaK4qj3J5l+P2B9y3cnMYx+nN3hvKMGM5uaxRox56KO/MLgDr+p6XQU47iL8yjUvy0aBBmWnpcj3LNX4B0ORjh2Dd+xjBPCIHfw0FVlP4M63MLfiMW2wiCEarMuK3sBnugnvea4+k9LT5AMrQL9pIoch1jAIenDkgytJdxPYC02YtLj0tVvD947DvI8iWW86pXLep53NayeJrUf+YdutOBzzEEeRZwRrevIZlPD61TMIVQBPIafSe4QOzIsV2xbj2kImx5R7bauvukYQozhgs3DsdmzP8ZpvLQskGoZc9O6hy22rmFlGDJYqqs9R3Uc92D7FkWd34w3uCI8d0oPp4kk36IUh4ZhGapwETdw2OC6z9CKP7FNFRG7rhDdmA/s2idcj2k4G291lVJ0YVxw80t4gWv6TUzKBZvpV+01zqEWR1ASqvyqOk/qTdiY4S4xsTri3/36ID6ID+KD+CA+iA/ig+zeNgQYAC6lfmy0H6mqAAAAAElFTkSuQmCC");
}

ul.medialinks li a.twittertext {
    background-color: #1da1f2;
}

ul.medialinks li a.weibo {
    background-color: #ff0220;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAr5JREFUeNrsmUloFEEUhtMxTExUiMYgg4KnuOAScMMIirgjKt4UlCQQUBFDToK4XxSDJwWJ6EkRcvGiiKABURQEdRQ3gghB1IMQAkFxGRnSfgUvUJZdM3amp1uHevDRPbV1/V1V71X1eL7vV5SDVVaUiTkhTogT4oQ4IU6IE1JOQqoSem49tMIgPIMXRbeoNo0JcMD/3fqgFbzRtukltPtVI7ITZsJqmCHpV6ENvv4vI2KyAT7I6PTCmLBtlLJzVXnymqAbtmrTKQ39IqYjaSHT4Sy8g2GZ+40B5Q5r6+M+TJH0Zqk3ANVJCKmBE5D1/7QzltFqEaHKMpCSvF5J2xymD1HEEbVgH8FBSAXkVwek5eAyLIQMLIB2ybsh1yVxBsRl8BDm5inzEWZBh3T+AdyBFvgG+6Xcdrm+leu0uLzWYhjyC9tgnrx5stivwFFpdwJch01xxJEGeA7pIkd0PdxOcoty0SLipwjsgwGog6mwCCYHlO+PLMSOYkptDJgiT2CHeC9bvZVw06jXBXVReM6wFTzp9Ih9hz1QGaKNfRIrRkzFjC1xC1mudSAH64z8pXBKYsqKPO10GSOTtQTOkgk5oj38ZIHOKTtmaadeXoRup+MU0q09WH+DzRb3qt50raUt0y33FCMkbEDMavfvtfs5eQLucEC68mCTjLTXcR51M9r9fO3+rrhe087Dj4D0TuO3KnMpTvebkp2tsmtG3lp4KnNflTluOVesCdhcdsbttRSrtI5cgLF/WU+56F3isnU7l0Qc0YPbJ+nIG2iHBktZlb4bXhoCcuIFvSiEFHNmnwiHYC/UyKJ+JU5gCMZDI8wOWIv3ZNf7OKodShQfH9LyIWEbNFn2b754pVvQYziNf0aIbuPkbKLcay18ls2jOmN8KeVnGc/9GeqEOCFOiBPihDghTogT4oQUsl8CDAAlWvq4QoCZbwAAAABJRU5ErkJggg==");
}

ul.medialinks li a.weibotext {
    background-color: #ff0220;
}

ul.medialinks li a.instagram {
    background-color: #ff0220;
    background-image: url("data:image/false;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAApBJREFUeNrsmc9LVFEUxx2dDHRMzIWbtEIKi1yEjotIEszStL1mtZjW+Q/4D+heNDdCNcwPcJGgBi1q00ybCbG0wKAhCHJVC1Osha/vgSMcLs707nv36UPugQ+cO+/cH995d847707EcZyK42CVFcfErBArxAqxQqwQK8QKgUV99L0O7oHLIOZzHVvgE0iBnKcRqNbSpBZknOAsDWp01xXRLBojYBHcCXinLIG79D27XpimkFGQFO0imAM/fS78NEiA88pcqaC21huxBdZAzMPWLAWNtS7Gf63TXzdrXRX+BPjt8040gjSYArtgssRcxrNWvfA3XYi+DVq4/Q28AisiZgQMsz+vjFkfZNaSdrNETBzky2SlHOjk2ItgA7wDp0CfiNvTWZtpISNg10WKpZjhA/p7FhI1mDK7wVNwQnz2BeTZvwYusH8SPAPfwVsjsxu6I1VKxtkGD5S+lOofgh0R95H7+r4jpmqtPi5V9o2eCc/V74zvQkJ8dgX0hqlo7Bf+KsiWic2AD6I9ECYh54TvZs/LwvBsmITsaY5ZqWy50AgpCr/HReF5Q7S/hknIkvAvgUdlYulam2gvhyn9Ump9L679AY+V1Er+GPgr4grc13f6Nflk71SeEWQ/wAuwADaVaxTbYerJbrpEGQJbLkoUihk0WaKYPnygt8cu8LJMDP0m4srv6kgPH0rZZ34Vpre9W+I5sV/GF/+T0Q5FyC/QwH6zi5Q8qzn+GWWuwNJvQfjj/K5tyhp5zIPmMn5HnnCBSNbKZ1FJQ4cP90GTMleg51pZJ3jL6K7Li5BqMMPp0bTRmNM8R6AHdNLa+eCA3kPqDB2Z0onKmpcBIvbvaSvECrFCrBArxAqxQsJn/wQYACVf2Rk1NFN9AAAAAElFTkSuQmCC");
}

ul.medialinks li a.instagramtext {
    background-color: #ff0220;
}

/*CIRCLE WIDGET FIXES*/
.circle-widget-1 .midcircle {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    padding: 15%;
}

    .circle-widget-1 .midcircle::before {
        display: block;
        position: relative;
        content: '';
        z-index: 1;
    }

@media (max-width: 600px) {
    .circle-widget-1 .midcircle::before {
        width: 100vw;
        height: 100vw;
    }
}

@media (min-width: 601px) and (max-width: 767px) {
    .circle-widget-1 .midcircle {
        width: 546px !important;
        height: 546px !important;
    }

        .circle-widget-1 .midcircle::before {
            width: 382px;
            height: 382px;
        }
}

@media (min-width: 768px) and (max-width: 991px) {
    .circle-widget-1 .midcircle {
        width: 690px !important;
        height: 690px !important;
    }

        .circle-widget-1 .midcircle::before {
            width: 414px;
            height: 414px;
        }
}

@media (min-width: 992px) {
    .circle-widget-1 .midcircle {
        width: 700px !important;
        height: 700px !important;
    }

        .circle-widget-1 .midcircle::before {
            width: 546px;
            height: 546px;
        }
}

.circle-widget-1 .midcircle svg {
    position: absolute;
    display: block;
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    z-index: 1;
}

@media (min-width: 601px) and (max-width: 767px) {
    .circle-widget-1 .midcircle {
        padding: 15%;
    }

        .circle-widget-1 .midcircle svg {
            width: 70%;
            height: 70%;
            top: 15%;
            left: 15%;
        }
}

@media (max-width: 600px) {
    .circle-widget-1 .midcircle {
        padding: 12%;
    }

        .circle-widget-1 .midcircle svg {
            width: 76%;
            height: 76%;
            top: 12%;
            left: 12%;
        }
}

.circle-widget-1 .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.circle-widget-1 .cc-cnt {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.circle-widget-2 .cc-btns .label {
    left: 50%;
    transform: translateX(-50%);
}

.circle-widget-2::before {
    display: block;
    content: '';
    position: relative;
    width: 100%;
    height: 528px;
    border: 3px solid #fff;
}

.circle-widget-2 svg.circle {
    display: none;
}

_:-ms-lang(x), .circle-widget-1 .midcircle .ccbtn.active .ccbtnbg {
    fill: #1d2d44;
}

_:-ms-lang(x), .circle-widget-1 .midcircle .ccbtn path.ccbtnstroke {
    visibility: hidden;
}

.contactsticky {
    display: none;
}

.contactel {
    display: none;
}

.events-table .event button.ttip {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    padding: 0;
    border: 0;
    margin: 0 10px;
    background-color: transparent;
    vertical-align: middle;
}

@media (max-width: 991px) {
    .events-table .event button.ttip {
        display: none;
    }
}

.events-table .event button.ttip .trigger {
    display: block;
    width: 20px;
    height: 20px;
    font: 0/0 a;
    color: transparent;
    background: transparent url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAABGdBTUEAALGPC/xhBQAAAjNJREFUOBGlVU1IVFEYPfeOhs6kT2dlKWiO9ENWkEqEBorOItzY0N8qN0MRrRKMluOuGlftjPaBQdo2E0ZBxfAxmSYOOhk2ZG0iNAvKebf7vfG9mTfdeVTezfu+c853uL/fY1CMpqbrxZ9+rvUIJnoY0CwEDpKMMXwUwBwTbLRq36FRXX/0K79c6p2j5lTwgjBEVBYGnIwzk4VJxll/an5sJJfxWEkkEuGrX4ruGwIPJea3cJevX878ilZV7+u7eW08FovJOQC24a5Zv4uBkpIurfHlde/m53djJDCXTMs0DPFMWbELDkb6UKGVIXx7QCnjnIVo+ZwOgPZMqcoB/ZUa4guJHMQZkgd5seoTwUsCYthJ/1/GwC5zuhpu5Y3HGvBk6B4SM8/R0dbiJgV5FclNbDaPRyENdXfiRu9FVGrl2O/zYvv7D4UqC5EXty5tFs5GK2vrOH/1FkpLS/B1cwv6/FKWVETkxRW4DS0sreDM6Ub4K8oxPjmLdNqwuUIBp+dUiCQ82H7WpF/EZtxkJkdeXO7fnJuyo7UFOztpTEzrbjKTIy9OD72Qku7e4UAtFpdXsfVt24wLaQknL05dQ55OUiU8fiTTH3zeEgw/juJoQ51KZmLkQV6ejQ3d0A4EPtBDz1d7OEd38ByS71MYGBzC1KvX+RI7l08vnIg/fSuNM6PmZNcD2Wn+uTlQNWeIpt68vGPGGTsgHGq7S4SV/+2XaqjW0tsztIC9Ntg/DMl4L7+A3xY9zLvJWr84AAAAAElFTkSuQmCC") no-repeat 50% 50%;
    overflow: hidden;
    opacity: 1;
}

.events-table .event button.ttip:hover .trigger {
    opacity: 0.5;
}

.events-table .event button.ttip:focus {
    outline: none;
}

.events-table .event button.ttip .cnt {
    visibility: hidden;
    display: block;
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80vw;
    max-width: 580px;
    padding: 20px;
    background-color: #fff;
    z-index: 1;
    font-size: 15px;
    text-align: left;
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
}

.events-table .event button.ttip.active .cnt {
    visibility: visible;
}

.events-table .event button.ttip .cnt::before,
.events-table .event button.ttip .cnt::after {
    content: '';
    position: absolute;
    left: 50%;
    width: 0;
    height: 0;
    border-style: solid;
}

.events-table .event button.ttip .cnt::before {
    bottom: -10px;
    margin-left: -11px;
    border-width: 10px 11px 0 11px;
    border-color: #ccc transparent transparent transparent;
}

.events-table .event button.ttip .cnt::after {
    bottom: -9px;
    margin-left: -10px;
    border-width: 9px 10px 0 10px;
    border-color: #fff transparent transparent transparent;
}

/* tooltip below trigger */
.events-table .event button.ttip.below .cnt {
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
}

.events-table .event button.ttip.below .cnt {
    bottom: auto;
    top: 40px;
}

    .events-table .event button.ttip.below .cnt::before {
        bottom: auto;
        top: -10px;
        border-width: 0 11px 10px 11px;
        border-color: transparent transparent #ccc transparent;
    }

    .events-table .event button.ttip.below .cnt::after {
        bottom: auto;
        top: -9px;
        border-width: 0 10px 9px 10px;
        border-color: transparent transparent #fff transparent;
    }

/* tooltip to the right of trigger */
.events-table .event button.ttip.right .cnt,
.events-table .event button.ttip.left .cnt {
    bottom: auto;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
}

    .events-table .event button.ttip.right .cnt::before,
    .events-table .event button.ttip.right .cnt::after {
        bottom: auto;
        top: 50%;
        margin-left: 0;
        margin-top: -10px;
        border-width: 10px 10px 10px 0;
    }

    .events-table .event button.ttip.right .cnt::before {
        left: -10px;
        border-color: transparent #ccc transparent transparent;
    }

    .events-table .event button.ttip.right .cnt::after {
        left: -9px;
        border-color: transparent #fff transparent transparent;
    }

/* tooltip to the left of trigger */
.events-table .event button.ttip.left .cnt {
    left: auto;
    right: 40px;
}

    .events-table .event button.ttip.left .cnt::before,
    .events-table .event button.ttip.left .cnt::after {
        bottom: auto;
        top: 50%;
        margin-left: 0;
        margin-top: -10px;
        border-width: 10px 0 10px 10px;
    }

    .events-table .event button.ttip.left .cnt::before {
        left: auto;
        right: -10px;
        border-color: transparent transparent transparent #ccc;
    }

    .events-table .event button.ttip.left .cnt::after {
        left: auto;
        right: -9px;
        border-color: transparent transparent transparent #fff;
    }

.container a.openmodal img,
.container figure a.image img {
    width: 100%;
}

.container figure a.image::after {
    position: absolute;
    top: 5px;
    right: 5px;
    display: block;
    content: '';
    width: 25px;
    height: 25px;
    background: transparent url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAMAAAAp4XiDAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAAZQTFRF+Pj4////Z44hfQAAAAJ0Uk5T/wDltzBKAAAAVklEQVR42uyUQQoAIAgEt/9/uqh8wCwJBs59SG1VaprfGJdcJTSjNmqIKfsF2r6YcrsAijXddGM5+Xl0ElzKiM9GAcFVndjCqMvYJ2dpy96gpnnLFGAAIsIAb6Dh7ksAAAAASUVORK5CYII=") no-repeat 0 0;
    background-size: 100%;
}

.container a.openmodal::after {
    position: absolute;
    top: 5px;
    right: 20px;
    display: block;
    content: '';
    width: 25px;
    height: 25px;
    background: transparent url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAMAAAAp4XiDAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAAZQTFRF+Pj4////Z44hfQAAAAJ0Uk5T/wDltzBKAAAAVklEQVR42uyUQQoAIAgEt/9/uqh8wCwJBs59SG1VaprfGJdcJTSjNmqIKfsF2r6YcrsAijXddGM5+Xl0ElzKiM9GAcFVndjCqMvYJ2dpy96gpnnLFGAAIsIAb6Dh7ksAAAAASUVORK5CYII=") no-repeat 0 0;
    background-size: 100%;
}

/*# sourceMappingURL=css_au_main.css.map */


/* css_au.css */


#top .logo {
    width: 150px;
    background-image: url("../img/gkn-au-stacked.svg");
}

#top .buttons a.mobilelang {
    display: none;
}

@media (max-width: 991px) {
      #top .logo {
        width: 150px;
        background-image: url("../img/gkn-au-stacked.svg");
    }

    #top .buttons a.mobilelang {
        display: block;
        float: none;
        position: absolute;
        top: 25px;
        left: 180px;
        padding-left: 42px;
        background: transparent url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAMAAADXqc3KAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADBQTFRFzs/S////pKaqtLa55OXnnaCknJ+i8fHzq6yvv8DCsLG13N3e6+zt9vb3+fr8////OMPELAAAABB0Uk5T////////////////////AOAjXRkAAAEKSURBVHjaVFKLcsAgCAOEKqL4/387UOdtXHu9JjxCFNaNAaAK7L//cD7W5JN8SOcfYvTSJKIbcyF4BJOVgIlGRfRa9BIsPfFinQEzVDcxiWTHQSO8WxIK5eDTAHw0RqzNF1SChD8x6ERdTzNYob5tnWKOTE02M/qC0gP/3gQPPrTRBKJMP4k7DAfUwiC0Oz1JCKN2UtuTo1d/BGoua9COR6LO7GdMQN8IS6+qFPYqxMHUm9zY/TjzygKnyu1WyExVaZGFJaDo5SxP26go6ekVFsB2pEn4BKJCY9s+G1DuHiUNR1pt96Bqv7Ji6N7hHa3Dtmu/Usbfy1D1npby/1uyFlY2G+/2rB8BBgB9zxAExV5PQAAAAABJRU5ErkJggg==") no-repeat 10px 50%;
    }
}

@media (max-width: 400px) {

    #top .logo {
        width: 100px;
        background-size: contain;
        background-position: 50% 50%;
    }

    #top .buttons a.mobilelang {
        display: block;
        float: none;
        position: absolute;
        top: 20px;
        left: 110px;
        padding-top: 5px;
        padding-bottom: 5px;
        padding-left: 38px;
        font-size: 14px;
        background: transparent url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAMAAADXqc3KAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADBQTFRFzs/S////pKaqtLa55OXnnaCknJ+i8fHzq6yvv8DCsLG13N3e6+zt9vb3+fr8////OMPELAAAABB0Uk5T////////////////////AOAjXRkAAAEKSURBVHjaVFKLcsAgCAOEKqL4/387UOdtXHu9JjxCFNaNAaAK7L//cD7W5JN8SOcfYvTSJKIbcyF4BJOVgIlGRfRa9BIsPfFinQEzVDcxiWTHQSO8WxIK5eDTAHw0RqzNF1SChD8x6ERdTzNYob5tnWKOTE02M/qC0gP/3gQPPrTRBKJMP4k7DAfUwiC0Oz1JCKN2UtuTo1d/BGoua9COR6LO7GdMQN8IS6+qFPYqxMHUm9zY/TjzygKnyu1WyExVaZGFJaDo5SxP26go6ekVFsB2pEn4BKJCY9s+G1DuHiUNR1pt96Bqv7Ji6N7hHa3Dtmu/Usbfy1D1npby/1uyFlY2G+/2rB8BBgB9zxAExV5PQAAAAABJRU5ErkJggg==") no-repeat 10px 50%;
    }
}



/* whitepaper-promo.css */


.w-p-hero.promo {
    min-height: 200px;
    background-size: cover;
    background-position: 50% 50%;
    color: #fff;
    background-color: #060a13;
    padding: 50px 0 70px 0 !important;
}

    .w-p-hero.promo.taller {
        padding: 80px 0 100px 0 !important;
    }

    .w-p-hero.promo .mh {
        border-top: 1px dotted rgba(255,255,255,0.5);
        border-bottom: none;
    }

        .w-p-hero.promo .mh span {
            display: inline-block;
            padding: 10px 0;
        }

        .w-p-hero.promo .mh .readtime {
            display: none;
        }

        .w-p-hero.promo .mh .cat {
            text-transform: uppercase;
            font-size: 16px;
            font-weight: 400;
            letter-spacing: 5px;
            line-height: 19px;
            margin-right: 50px;
        }

    .w-p-hero.promo h2 {
        padding: 0 0 5px 0;
        font-weight: 600;
        font-size: 38px !important;
        line-height: 48px !important;
        text-transform: uppercase;
    }

    .w-p-hero.promo .lead {
        padding: 7px 0 0 0;
        font-size: 22px !important;
        font-weight: 300 !important;
        line-height: 37px !important;
        border-top: 1px dotted rgba(255,255,255,0.5);
        border-bottom: none;
    }

    .w-p-hero.promo .byblock {
        display: none;
    }

@media (max-width: 767px) {
    .w-p-hero.promo h2 {
        font-size: 32px !important;
        line-height: 36px !important;
    }

    .w-p-hero.promo .lead {
        font-size: 21px !important;
        line-height: 33px !important;
        margin-top: 0 !important;
    }
}

table.dltable {
}

    table.dltable img {
        height: 100%;
        max-height: 100px;
        width: auto;
        max-width: 400px;
    }

    table.dltable a.download {
        text-decoration: underline;
    }

        table.dltable a.download:hover {
            text-decoration: underline;
            color: #1a2d44;
        }


.off-screen {
  left: -100vw;
  position: absolute;
}

a.skip-link {
  background: #1a2d44;
  color: #fff;
  left: 0;
  padding: 0.75em;
  position: fixed;
  opacity: 0;
  top: 0;
  transform: translateY(-10em);
  border-radius: 0;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  display: block;
  text-decoration: none;
}

a.skip-link:focus {
  display: block;
  opacity: 1;
  transform: translateY(0em);
  z-index: 9999;
}