@-webkit-keyframes drift {
    from {
        -webkit-transform: translateX(0%);
    }

    to {
        -webkit-transform: translateX(-4%);
    }
}

@-webkit-keyframes orbit {
    from {
        -webkit-transform: rotate(0deg) translateX(4px) rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg) translateX(4px) rotate(-360deg);
    }
}

@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes wave {
    from {
        -webkit-transform: scaleY(1);
    }

    to {
        -webkit-transform: scaleY(-1);
    }
}


.clockwise svg {
    animation-direction: normal;
    -ms-animation-direction: normal;
    -moz-animation-direction: normal;
    -o-animation-direction: normal;
    -webkit-animation-direction: normal;
    animation-iteration-count: infinite;
    -ms-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    animation-timing-function: linear;
    -ms-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
    -o-animation-timing-function: linear;
    -webkit-animation-timing-function: linear;
}

.clockwise.drift > svg {
    animation-direction: alternate;
    -ms-animation-direction: alternate;
    -moz-animation-direction: alternate;
    -o-animation-direction: alternate;
    -webkit-animation-direction: alternate;
    animation-duration: 4s;
    -ms-animation-duration: 4s;
    -moz-animation-duration: 4s;
    -o-animation-duration: 4s;
    -webkit-animation-duration: 4s;
    animation-name: drift;
    -ms-animation-name: drift;
    -moz-animation-name: drift;
    -o-animation-name: drift;
    -webkit-animation-name: drift;
    animation-timing-function: ease-in-out;
    -ms-animation-timing-function: ease-in-out;
    -moz-animation-timing-function: ease-in-out;
    -o-animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;
}

.clockwise.orbit > svg {
    animation-name: orbit;
    -ms-animation-name: orbit;
    -moz-animation-name: orbit;
    -o-animation-name: orbit;
    -webkit-animation-name: orbit;
    animation-duration: 4s;
    -ms-animation-duration: 4s;
    -moz-animation-duration: 4s;
    -o-animation-duration: 4s;
    -webkit-animation-duration: 4s;
}

.clockwise.rotate > svg {
    animation-name: rotate;
    -ms-animation-name: rotate;
    -moz-animation-name: rotate;
    -o-animation-name: rotate;
    -webkit-animation-name: rotate;
    animation-duration: 360s;
    -ms-animation-duration: 360s;
    -moz-animation-duration: 360s;
    -o-animation-duration: 360s;
    -webkit-animation-duration: 360s;
}

.anticlock svg {
    animation-direction: alternate-reverse;
    -ms-animation-direction: alternate-reverse;
    -moz-animation-direction: alternate-reverse;
    -o-animation-direction: alternate-reverse;
    -webkit-animation-direction: alternate-reverse;
    animation-iteration-count: infinite;
    -ms-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    animation-timing-function: linear;
    -ms-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
    -o-animation-timing-function: linear;
    -webkit-animation-timing-function: linear;
}

.anticlock.drift > svg {
    animation-direction: alternate-reverse;
    -ms-animation-direction: alternate-reverse;
    -moz-animation-direction: alternate-reverse;
    -o-animation-direction: alternate-reverse;
    -webkit-animation-direction: alternate-reverse;
    animation-duration: 12s;
    -ms-animation-duration: 12s;
    -moz-animation-duration: 12s;
    -o-animation-duration: 12s;
    -webkit-animation-duration: 12s;
    animation-name: drift;
    -ms-animation-name: drift;
    -moz-animation-name: drift;
    -o-animation-name: drift;
    -webkit-animation-name: drift;
    animation-timing-function: ease-in-out;
    -ms-animation-timing-function: ease-in-out;
    -moz-animation-timing-function: ease-in-out;
    -o-animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;
}

.anticlock.orbit > svg {
    animation-duration: 6s;
    -ms-animation-duration: 6s;
    -moz-animation-duration: 6s;
    -o-animation-duration: 6s;
    -webkit-animation-duration: 6s;
    animation-name: orbit;
    -ms-animation-name: orbit;
    -moz-animation-name: orbit;
    -o-animation-name: orbit;
    -webkit-animation-name: orbit;
}

.anticlock.rotate > svg {
    animation-duration: 360s;
    -ms-animation-duration: 360s;
    -moz-animation-duration: 360s;
    -o-animation-duration: 360s;
    -webkit-animation-duration: 360s;
    animation-name: rotate;
    -ms-animation-name: rotate;
    -moz-animation-name: rotate;
    -o-animation-name: rotate;
    -webkit-animation-name: rotate;
}

html, body {
    margin: 0;
    overflow: visible;
    padding: 0;
}

@media (min-width:768px) {
    .site-utility, .site-header, .sub-nav {
        position: relative;
        z-index: 200;
    }
}

.who-we-are {
    color: #4D4D4D;
    font-family: "Guardian Sans",Helvetica,Arial,sans-serif;
    letter-spacing: 0.04em;
    min-height: 100vh;
    position: relative;
}

    .who-we-are article, .who-we-are aside, .who-we-are details, .who-we-are figcaption, .who-we-are figure, .who-we-are footer, .who-we-are header, .who-we-are hgroup, .who-we-are main, .who-we-are menu, .who-we-are nav, .who-we-are section, .who-we-are summary {
        display: block;
    }

    .who-we-are audio, .who-we-are canvas, .who-we-are progress, .who-we-are video {
        display: inline-block;
        vertical-align: baseline;
    }

        .who-we-are audio:not([controls]) {
            display: none;
            height: 0;
        }

    .who-we-are [hidden], .who-we-are template {
        display: none;
    }

    .who-we-are a {
        background-color: transparent;
    }

        .who-we-are a:active, .who-we-are a:hover {
            outline: 0;
        }

    .who-we-are abbr[title] {
        border-bottom: 1px dotted;
    }

    .who-we-are b, .who-we-are strong {
        font-weight: bold;
    }

    .who-we-are dfn {
        font-style: italic;
    }

    .who-we-are mark {
        background: #ff0;
        color: #000;
    }

    .who-we-are small {
        font-size: 80%;
    }

    .who-we-are sub, .who-we-are sup {
        font-size: 75%;
        line-height: 0;
        position: relative;
        vertical-align: baseline;
    }

    .who-we-are sup {
        top: -0.5em;
    }

    .who-we-are sub {
        bottom: -0.25em;
    }

    .who-we-are img {
        border: 0;
    }

    .who-we-are svg:not(:root) {
        overflow: hidden;
    }

    .who-we-are figure {
        margin: 1em 40px;
    }

    .who-we-are hr {
        -moz-box-sizing: content-box;
        box-sizing: content-box;
        height: 0;
    }

    .who-we-are pre {
        overflow: auto;
    }

    .who-we-are code, .who-we-are kbd, .who-we-are pre, .who-we-are samp {
        font-family: monospace,monospace;
        font-size: 1em;
    }

    .who-we-are button, .who-we-are input, .who-we-are optgroup, .who-we-are select, .who-we-are textarea {
        color: inherit;
        font: inherit;
        margin: 0;
    }

    .who-we-are button {
        overflow: visible;
    }

    .who-we-are button, .who-we-are select {
        text-transform: none;
    }

    .who-we-are button, .who-we-are html input[type="button"], .who-we-are input[type="reset"], .who-we-are input[type="submit"] {
        -webkit-appearance: button;
        cursor: pointer;
    }

        .who-we-are button[disabled], .who-we-are html input[disabled] {
            cursor: default;
        }

        .who-we-are button::-moz-focus-inner, .who-we-are input::-moz-focus-inner {
            border: 0;
            padding: 0;
        }

    .who-we-are input {
        line-height: normal;
    }

        .who-we-are input[type="checkbox"], .who-we-are input[type="radio"] {
            padding: 0;
        }

        .who-we-are input[type="number"]::-webkit-inner-spin-button, .who-we-are input[type="number"]::-webkit-outer-spin-button {
            height: auto;
        }

        .who-we-are input[type="search"] {
            -webkit-appearance: textfield;
            -moz-box-sizing: content-box;
            -webkit-box-sizing: content-box;
            box-sizing: content-box;
        }

            .who-we-are input[type="search"]::-webkit-search-cancel-button, .who-we-are input[type="search"]::-webkit-search-decoration {
                -webkit-appearance: none;
            }

    .who-we-are fieldset {
        border: 1px solid #c0c0c0;
        margin: 0 2px;
        padding: 0.35em 0.625em 0.75em;
    }

    .who-we-are legend {
        border: 0;
        padding: 0;
    }

    .who-we-are textarea {
        overflow: auto;
    }

    .who-we-are optgroup {
        font-weight: bold;
    }

    .who-we-are table {
        border-collapse: collapse;
        border-spacing: 0;
    }

    .who-we-are td, .who-we-are th {
        padding: 0;
    }

@media print {
    .who-we-are *, .who-we-are *:before, .who-we-are *:after {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    .who-we-are a, .who-we-are a:visited {
        text-decoration: underline;
    }

        .who-we-are a[href]:after {
            content: " (" attr(href) ")";
        }

    .who-we-are abbr[title]:after {
        content: " (" attr(title) ")";
    }

    .who-we-are a[href^="#"]:after, .who-we-are a[href^="javascript:"]:after {
        content: "";
    }

    .who-we-are pre, .who-we-are blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    .who-we-are thead {
        display: table-header-group;
    }

    .who-we-are tr, .who-we-are img {
        page-break-inside: avoid;
    }

    .who-we-are img {
        max-width: 100% !important;
    }

    .who-we-are p, .who-we-are h2, .who-we-are h3 {
        orphans: 3;
        widows: 3;
    }

    .who-we-are h2, .who-we-are h3 {
        page-break-after: avoid;
    }

    .who-we-are select {
        background: #fff !important;
    }

    .who-we-are .navbar {
        display: none;
    }

    .who-we-are .btn > .caret, .who-we-are .dropup > .btn > .caret {
        border-top-color: #000 !important;
    }

    .who-we-are .label {
        border: 1px solid #000;
    }

    .who-we-are .table {
        border-collapse: collapse !important;
    }

        .who-we-are .table td, .who-we-are .table th {
            background-color: #fff !important;
        }

    .who-we-are .table-bordered th, .who-we-are .table-bordered td {
        border: 1px solid #ddd !important;
    }
}

.who-we-are html {
    font-size: 10px;
    -webkit-tap-highlight-color: transparent;
}

.who-we-are input, .who-we-are button, .who-we-are select, .who-we-are textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

.who-we-are a {
    color: #337ab7;
    text-decoration: none;
}

    .who-we-are a:hover, .who-we-are a:focus {
        color: #23527c;
        text-decoration: underline;
    }

    .who-we-are a:focus {
        outline: thin dotted;
        outline: 5px auto -webkit-focus-ring-color;
        outline-offset: -2px;
    }

.who-we-are figure {
    margin: 0;
}

.who-we-are img {
    vertical-align: middle;
}

.who-we-are .img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}

.who-we-are .img-rounded {
    border-radius: 6px;
}

.who-we-are .img-thumbnail {
    padding: 4px;
    line-height: 1.42857;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    display: inline-block;
    max-width: 100%;
    height: auto;
}

.who-we-are .img-circle {
    border-radius: 50%;
}

.who-we-are hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid #eee;
}

.who-we-are .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

.who-we-are .sr-only-focusable:active, .who-we-are .sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
}

.who-we-are [role="button"] {
    cursor: pointer;
}

.who-we-are h1, .who-we-are h2, .who-we-are h3, .who-we-are h4, .who-we-are h5, .who-we-are h6, .who-we-are .h1, .who-we-are .h2, .who-we-are .h3, .who-we-are .h4, .who-we-are .h5, .who-we-are .h6 {
    font-family: inherit;
    font-weight: 500;
    line-height: 1.1;
    color: inherit;
}

    .who-we-are h1 small, .who-we-are h1 .small, .who-we-are h2 small, .who-we-are h2 .small, .who-we-are h3 small, .who-we-are h3 .small, .who-we-are h4 small, .who-we-are h4 .small, .who-we-are h5 small, .who-we-are h5 .small, .who-we-are h6 small, .who-we-are h6 .small, .who-we-are .h1 small, .who-we-are .h1 .small, .who-we-are .h2 small, .who-we-are .h2 .small, .who-we-are .h3 small, .who-we-are .h3 .small, .who-we-are .h4 small, .who-we-are .h4 .small, .who-we-are .h5 small, .who-we-are .h5 .small, .who-we-are .h6 small, .who-we-are .h6 .small {
        font-weight: normal;
        line-height: 1;
        color: #777;
    }

.who-we-are h1, .who-we-are .h1, .who-we-are h2, .who-we-are .h2, .who-we-are h3, .who-we-are .h3 {
    margin-top: 20px;
    margin-bottom: 10px;
}

    .who-we-are h1 small, .who-we-are h1 .small, .who-we-are .h1 small, .who-we-are .h1 .small, .who-we-are h2 small, .who-we-are h2 .small, .who-we-are .h2 small, .who-we-are .h2 .small, .who-we-are h3 small, .who-we-are h3 .small, .who-we-are .h3 small, .who-we-are .h3 .small {
        font-size: 65%;
    }

.who-we-are h4, .who-we-are .h4, .who-we-are h5, .who-we-are .h5, .who-we-are h6, .who-we-are .h6 {
    margin-top: 10px;
    margin-bottom: 10px;
}

    .who-we-are h4 small, .who-we-are h4 .small, .who-we-are .h4 small, .who-we-are .h4 .small, .who-we-are h5 small, .who-we-are h5 .small, .who-we-are .h5 small, .who-we-are .h5 .small, .who-we-are h6 small, .who-we-are h6 .small, .who-we-are .h6 small, .who-we-are .h6 .small {
        font-size: 75%;
    }

.who-we-are h1, .who-we-are .h1 {
    font-size: 36px;
}

.who-we-are h2, .who-we-are .h2 {
    font-size: 30px;
}

.who-we-are h3, .who-we-are .h3 {
    font-size: 24px;
}

.who-we-are h4, .who-we-are .h4 {
    font-size: 18px;
}

.who-we-are h5, .who-we-are .h5 {
    font-size: 14px;
}

.who-we-are h6, .who-we-are .h6 {
    font-size: 12px;
}

.who-we-are p {
    margin: 0 0 10px;
}

.who-we-are .lead {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.4;
}

@media (min-width:768px) {
    .who-we-are .lead {
        font-size: 21px;
    }
}

.who-we-are small, .who-we-are .small {
    font-size: 85%;
}

.who-we-are mark, .who-we-are .mark {
    background-color: #fcf8e3;
    padding: .2em;
}

.who-we-are .text-left {
    text-align: left;
}

.who-we-are .text-right {
    text-align: right;
}

.who-we-are .text-center {
    text-align: center;
}

.who-we-are .text-justify {
    text-align: justify;
}

.who-we-are .text-nowrap {
    white-space: nowrap;
}

.who-we-are .text-lowercase {
    text-transform: lowercase;
}

.who-we-are .text-uppercase, .who-we-are .initialism {
    text-transform: uppercase;
}

.who-we-are .text-capitalize {
    text-transform: capitalize;
}

.who-we-are .text-muted {
    color: #777;
}

.who-we-are .text-primary {
    color: #337ab7;
}

.who-we-are a.text-primary:hover {
    color: #286090;
}

.who-we-are .text-success {
    color: #3c763d;
}

.who-we-are a.text-success:hover {
    color: #2b542c;
}

.who-we-are .text-info {
    color: #31708f;
}

.who-we-are a.text-info:hover {
    color: #245269;
}

.who-we-are .text-warning {
    color: #8a6d3b;
}

.who-we-are a.text-warning:hover {
    color: #66512c;
}

.who-we-are .text-danger {
    color: #a94442;
}

.who-we-are a.text-danger:hover {
    color: #843534;
}

.who-we-are .bg-primary {
    color: #fff;
}

.who-we-are .bg-primary {
    background-color: #337ab7;
}

.who-we-are a.bg-primary:hover {
    background-color: #286090;
}

.who-we-are .bg-success {
    background-color: #dff0d8;
}

.who-we-are a.bg-success:hover {
    background-color: #c1e2b3;
}

.who-we-are .bg-info {
    background-color: #d9edf7;
}

.who-we-are a.bg-info:hover {
    background-color: #afd9ee;
}

.who-we-are .bg-warning {
    background-color: #fcf8e3;
}

.who-we-are a.bg-warning:hover {
    background-color: #f7ecb5;
}

.who-we-are .bg-danger {
    background-color: #f2dede;
}

.who-we-are a.bg-danger:hover {
    background-color: #e4b9b9;
}

.who-we-are .page-header {
    padding-bottom: 9px;
    margin: 40px 0 20px;
    border-bottom: 1px solid #eee;
}

.who-we-are ul, .who-we-are ol {
    margin-top: 0;
    margin-bottom: 10px;
}

    .who-we-are ul ul, .who-we-are ul ol, .who-we-are ol ul, .who-we-are ol ol {
        margin-bottom: 0;
    }

.who-we-are .list-unstyled {
    padding-left: 0;
    list-style: none;
}

.who-we-are .list-inline {
    padding-left: 0;
    list-style: none;
    margin-left: -5px;
}

    .who-we-are .list-inline > li {
        display: inline-block;
        padding-left: 5px;
        padding-right: 5px;
    }

.who-we-are dl {
    margin-top: 0;
    margin-bottom: 20px;
}

.who-we-are dt, .who-we-are dd {
    line-height: 1.42857;
}

.who-we-are dt {
    font-weight: bold;
}

.who-we-are dd {
    margin-left: 0;
}

.who-we-are .dl-horizontal dd:before, .who-we-are .dl-horizontal dd:after {
    content: " ";
    display: table;
}

.who-we-are .dl-horizontal dd:after {
    clear: both;
}

@media (min-width:768px) {
    .who-we-are .dl-horizontal dt {
        float: left;
        width: 160px;
        clear: left;
        text-align: right;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .who-we-are .dl-horizontal dd {
        margin-left: 180px;
    }
}

.who-we-are abbr[title], .who-we-are abbr[data-original-title] {
    cursor: help;
    border-bottom: 1px dotted #777;
}

.who-we-are .initialism {
    font-size: 90%;
}

.who-we-are blockquote {
    padding: 10px 20px;
    margin: 0 0 20px;
    font-size: 17.5px;
    border-left: 5px solid #eee;
}

    .who-we-are blockquote p:last-child, .who-we-are blockquote ul:last-child, .who-we-are blockquote ol:last-child {
        margin-bottom: 0;
    }

    .who-we-are blockquote footer, .who-we-are blockquote small, .who-we-are blockquote .small {
        display: block;
        font-size: 80%;
        line-height: 1.42857;
        color: #777;
    }

        .who-we-are blockquote footer:before, .who-we-are blockquote small:before, .who-we-are blockquote .small:before {
            content: '\2014 \00A0';
        }

    .who-we-are .blockquote-reverse, .who-we-are blockquote.pull-right {
        padding-right: 15px;
        padding-left: 0;
        border-right: 5px solid #eee;
        border-left: 0;
        text-align: right;
    }

        .who-we-are .blockquote-reverse footer:before, .who-we-are .blockquote-reverse small:before, .who-we-are .blockquote-reverse .small:before, .who-we-are blockquote.pull-right footer:before, .who-we-are blockquote.pull-right small:before, .who-we-are blockquote.pull-right .small:before {
            content: '';
        }

        .who-we-are .blockquote-reverse footer:after, .who-we-are .blockquote-reverse small:after, .who-we-are .blockquote-reverse .small:after, .who-we-are blockquote.pull-right footer:after, .who-we-are blockquote.pull-right small:after, .who-we-are blockquote.pull-right .small:after {
            content: '\00A0 \2014';
        }

.who-we-are address {
    margin-bottom: 20px;
    font-style: normal;
    line-height: 1.42857;
}

.who-we-are code, .who-we-are kbd, .who-we-are pre, .who-we-are samp {
    font-family: Menlo,Monaco,Consolas,"Courier New",monospace;
}

.who-we-are code {
    padding: 2px 4px;
    font-size: 90%;
    color: #c7254e;
    background-color: #f9f2f4;
    border-radius: 4px;
}

.who-we-are kbd {
    padding: 2px 4px;
    font-size: 90%;
    color: #fff;
    background-color: #333;
    border-radius: 3px;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,0.25);
}

    .who-we-are kbd kbd {
        padding: 0;
        font-size: 100%;
        font-weight: bold;
        box-shadow: none;
    }

.who-we-are pre {
    display: block;
    padding: 9.5px;
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.42857;
    word-break: break-all;
    word-wrap: break-word;
    color: #333;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 4px;
}

    .who-we-are pre code {
        padding: 0;
        font-size: inherit;
        color: inherit;
        white-space: pre-wrap;
        background-color: transparent;
        border-radius: 0;
    }

.who-we-are .pre-scrollable {
    max-height: 340px;
    overflow-y: scroll;
}

.who-we-are .container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
}

    .who-we-are .container-fluid:before, .who-we-are .container-fluid:after {
        content: " ";
        display: table;
    }

    .who-we-are .container-fluid:after {
        clear: both;
    }

.who-we-are .row {
    margin-left: -15px;
    margin-right: -15px;
}

    .who-we-are .row:before, .who-we-are .row:after {
        content: " ";
        display: table;
    }

    .who-we-are .row:after {
        clear: both;
    }

.who-we-are .col-xs-1, .who-we-are .col-sm-1, .who-we-are .col-md-1, .who-we-are .col-lg-1, .who-we-are .col-xs-2, .who-we-are .col-sm-2, .who-we-are .col-md-2, .who-we-are .col-lg-2, .who-we-are .col-xs-3, .who-we-are .col-sm-3, .who-we-are .col-md-3, .who-we-are .col-lg-3, .who-we-are .col-xs-4, .who-we-are .col-sm-4, .who-we-are .col-md-4, .who-we-are .col-lg-4, .who-we-are .col-xs-5, .who-we-are .col-sm-5, .who-we-are .col-md-5, .who-we-are .col-lg-5, .who-we-are .col-xs-6, .who-we-are .col-sm-6, .who-we-are .col-md-6, .who-we-are .col-lg-6, .who-we-are .col-xs-7, .who-we-are .col-sm-7, .who-we-are .col-md-7, .who-we-are .col-lg-7, .who-we-are .col-xs-8, .who-we-are .col-sm-8, .who-we-are .col-md-8, .who-we-are .col-lg-8, .who-we-are .col-xs-9, .who-we-are .col-sm-9, .who-we-are .col-md-9, .who-we-are .col-lg-9, .who-we-are .col-xs-10, .who-we-are .col-sm-10, .who-we-are .col-md-10, .who-we-are .col-lg-10, .who-we-are .col-xs-11, .who-we-are .col-sm-11, .who-we-are .col-md-11, .who-we-are .col-lg-11, .who-we-are .col-xs-12, .who-we-are .col-sm-12, .who-we-are .col-md-12, .who-we-are .col-lg-12 {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
}

.who-we-are .col-xs-1, .who-we-are .col-xs-2, .who-we-are .col-xs-3, .who-we-are .col-xs-4, .who-we-are .col-xs-5, .who-we-are .col-xs-6, .who-we-are .col-xs-7, .who-we-are .col-xs-8, .who-we-are .col-xs-9, .who-we-are .col-xs-10, .who-we-are .col-xs-11, .who-we-are .col-xs-12 {
    float: left;
}

.who-we-are .col-xs-1 {
    width: 8.33333%;
}

.who-we-are .col-xs-2 {
    width: 16.66667%;
}

.who-we-are .col-xs-3 {
    width: 25%;
}

.who-we-are .col-xs-4 {
    width: 33.33333%;
}

.who-we-are .col-xs-5 {
    width: 41.66667%;
}

.who-we-are .col-xs-6 {
    width: 50%;
}

.who-we-are .col-xs-7 {
    width: 58.33333%;
}

.who-we-are .col-xs-8 {
    width: 66.66667%;
}

.who-we-are .col-xs-9 {
    width: 75%;
}

.who-we-are .col-xs-10 {
    width: 83.33333%;
}

.who-we-are .col-xs-11 {
    width: 91.66667%;
}

.who-we-are .col-xs-12 {
    width: 100%;
}

.who-we-are .col-xs-pull-0 {
    right: auto;
}

.who-we-are .col-xs-pull-1 {
    right: 8.33333%;
}

.who-we-are .col-xs-pull-2 {
    right: 16.66667%;
}

.who-we-are .col-xs-pull-3 {
    right: 25%;
}

.who-we-are .col-xs-pull-4 {
    right: 33.33333%;
}

.who-we-are .col-xs-pull-5 {
    right: 41.66667%;
}

.who-we-are .col-xs-pull-6 {
    right: 50%;
}

.who-we-are .col-xs-pull-7 {
    right: 58.33333%;
}

.who-we-are .col-xs-pull-8 {
    right: 66.66667%;
}

.who-we-are .col-xs-pull-9 {
    right: 75%;
}

.who-we-are .col-xs-pull-10 {
    right: 83.33333%;
}

.who-we-are .col-xs-pull-11 {
    right: 91.66667%;
}

.who-we-are .col-xs-pull-12 {
    right: 100%;
}

.who-we-are .col-xs-push-0 {
    left: auto;
}

.who-we-are .col-xs-push-1 {
    left: 8.33333%;
}

.who-we-are .col-xs-push-2 {
    left: 16.66667%;
}

.who-we-are .col-xs-push-3 {
    left: 25%;
}

.who-we-are .col-xs-push-4 {
    left: 33.33333%;
}

.who-we-are .col-xs-push-5 {
    left: 41.66667%;
}

.who-we-are .col-xs-push-6 {
    left: 50%;
}

.who-we-are .col-xs-push-7 {
    left: 58.33333%;
}

.who-we-are .col-xs-push-8 {
    left: 66.66667%;
}

.who-we-are .col-xs-push-9 {
    left: 75%;
}

.who-we-are .col-xs-push-10 {
    left: 83.33333%;
}

.who-we-are .col-xs-push-11 {
    left: 91.66667%;
}

.who-we-are .col-xs-push-12 {
    left: 100%;
}

.who-we-are .col-xs-offset-0 {
    margin-left: 0%;
}

.who-we-are .col-xs-offset-1 {
    margin-left: 8.33333%;
}

.who-we-are .col-xs-offset-2 {
    margin-left: 16.66667%;
}

.who-we-are .col-xs-offset-3 {
    margin-left: 25%;
}

.who-we-are .col-xs-offset-4 {
    margin-left: 33.33333%;
}

.who-we-are .col-xs-offset-5 {
    margin-left: 41.66667%;
}

.who-we-are .col-xs-offset-6 {
    margin-left: 50%;
}

.who-we-are .col-xs-offset-7 {
    margin-left: 58.33333%;
}

.who-we-are .col-xs-offset-8 {
    margin-left: 66.66667%;
}

.who-we-are .col-xs-offset-9 {
    margin-left: 75%;
}

.who-we-are .col-xs-offset-10 {
    margin-left: 83.33333%;
}

.who-we-are .col-xs-offset-11 {
    margin-left: 91.66667%;
}

.who-we-are .col-xs-offset-12 {
    margin-left: 100%;
}

@media (min-width:768px) {
    .who-we-are .col-sm-1, .who-we-are .col-sm-2, .who-we-are .col-sm-3, .who-we-are .col-sm-4, .who-we-are .col-sm-5, .who-we-are .col-sm-6, .who-we-are .col-sm-7, .who-we-are .col-sm-8, .who-we-are .col-sm-9, .who-we-are .col-sm-10, .who-we-are .col-sm-11, .who-we-are .col-sm-12 {
        float: left;
    }

    .who-we-are .col-sm-1 {
        width: 8.33333%;
    }

    .who-we-are .col-sm-2 {
        width: 16.66667%;
    }

    .who-we-are .col-sm-3 {
        width: 25%;
    }

    .who-we-are .col-sm-4 {
        width: 33.33333%;
    }

    .who-we-are .col-sm-5 {
        width: 41.66667%;
    }

    .who-we-are .col-sm-6 {
        width: 50%;
    }

    .who-we-are .col-sm-7 {
        width: 58.33333%;
    }

    .who-we-are .col-sm-8 {
        width: 66.66667%;
    }

    .who-we-are .col-sm-9 {
        width: 75%;
    }

    .who-we-are .col-sm-10 {
        width: 83.33333%;
    }

    .who-we-are .col-sm-11 {
        width: 91.66667%;
    }

    .who-we-are .col-sm-12 {
        width: 100%;
    }

    .who-we-are .col-sm-pull-0 {
        right: auto;
    }

    .who-we-are .col-sm-pull-1 {
        right: 8.33333%;
    }

    .who-we-are .col-sm-pull-2 {
        right: 16.66667%;
    }

    .who-we-are .col-sm-pull-3 {
        right: 25%;
    }

    .who-we-are .col-sm-pull-4 {
        right: 33.33333%;
    }

    .who-we-are .col-sm-pull-5 {
        right: 41.66667%;
    }

    .who-we-are .col-sm-pull-6 {
        right: 50%;
    }

    .who-we-are .col-sm-pull-7 {
        right: 58.33333%;
    }

    .who-we-are .col-sm-pull-8 {
        right: 66.66667%;
    }

    .who-we-are .col-sm-pull-9 {
        right: 75%;
    }

    .who-we-are .col-sm-pull-10 {
        right: 83.33333%;
    }

    .who-we-are .col-sm-pull-11 {
        right: 91.66667%;
    }

    .who-we-are .col-sm-pull-12 {
        right: 100%;
    }

    .who-we-are .col-sm-push-0 {
        left: auto;
    }

    .who-we-are .col-sm-push-1 {
        left: 8.33333%;
    }

    .who-we-are .col-sm-push-2 {
        left: 16.66667%;
    }

    .who-we-are .col-sm-push-3 {
        left: 25%;
    }

    .who-we-are .col-sm-push-4 {
        left: 33.33333%;
    }

    .who-we-are .col-sm-push-5 {
        left: 41.66667%;
    }

    .who-we-are .col-sm-push-6 {
        left: 50%;
    }

    .who-we-are .col-sm-push-7 {
        left: 58.33333%;
    }

    .who-we-are .col-sm-push-8 {
        left: 66.66667%;
    }

    .who-we-are .col-sm-push-9 {
        left: 75%;
    }

    .who-we-are .col-sm-push-10 {
        left: 83.33333%;
    }

    .who-we-are .col-sm-push-11 {
        left: 91.66667%;
    }

    .who-we-are .col-sm-push-12 {
        left: 100%;
    }

    .who-we-are .col-sm-offset-0 {
        margin-left: 0%;
    }

    .who-we-are .col-sm-offset-1 {
        margin-left: 8.33333%;
    }

    .who-we-are .col-sm-offset-2 {
        margin-left: 16.66667%;
    }

    .who-we-are .col-sm-offset-3 {
        margin-left: 25%;
    }

    .who-we-are .col-sm-offset-4 {
        margin-left: 33.33333%;
    }

    .who-we-are .col-sm-offset-5 {
        margin-left: 41.66667%;
    }

    .who-we-are .col-sm-offset-6 {
        margin-left: 50%;
    }

    .who-we-are .col-sm-offset-7 {
        margin-left: 58.33333%;
    }

    .who-we-are .col-sm-offset-8 {
        margin-left: 66.66667%;
    }

    .who-we-are .col-sm-offset-9 {
        margin-left: 75%;
    }

    .who-we-are .col-sm-offset-10 {
        margin-left: 83.33333%;
    }

    .who-we-are .col-sm-offset-11 {
        margin-left: 91.66667%;
    }

    .who-we-are .col-sm-offset-12 {
        margin-left: 100%;
    }
}

@media (min-width:992px) {
    .who-we-are .col-md-1, .who-we-are .col-md-2, .who-we-are .col-md-3, .who-we-are .col-md-4, .who-we-are .col-md-5, .who-we-are .col-md-6, .who-we-are .col-md-7, .who-we-are .col-md-8, .who-we-are .col-md-9, .who-we-are .col-md-10, .who-we-are .col-md-11, .who-we-are .col-md-12 {
        float: left;
    }

    .who-we-are .col-md-1 {
        width: 8.33333%;
    }

    .who-we-are .col-md-2 {
        width: 16.66667%;
    }

    .who-we-are .col-md-3 {
        width: 25%;
    }

    .who-we-are .col-md-4 {
        width: 33.33333%;
    }

    .who-we-are .col-md-5 {
        width: 41.66667%;
    }

    .who-we-are .col-md-6 {
        width: 50%;
    }

    .who-we-are .col-md-7 {
        width: 58.33333%;
    }

    .who-we-are .col-md-8 {
        width: 66.66667%;
    }

    .who-we-are .col-md-9 {
        width: 75%;
    }

    .who-we-are .col-md-10 {
        width: 83.33333%;
    }

    .who-we-are .col-md-11 {
        width: 91.66667%;
    }

    .who-we-are .col-md-12 {
        width: 100%;
    }

    .who-we-are .col-md-pull-0 {
        right: auto;
    }

    .who-we-are .col-md-pull-1 {
        right: 8.33333%;
    }

    .who-we-are .col-md-pull-2 {
        right: 16.66667%;
    }

    .who-we-are .col-md-pull-3 {
        right: 25%;
    }

    .who-we-are .col-md-pull-4 {
        right: 33.33333%;
    }

    .who-we-are .col-md-pull-5 {
        right: 41.66667%;
    }

    .who-we-are .col-md-pull-6 {
        right: 50%;
    }

    .who-we-are .col-md-pull-7 {
        right: 58.33333%;
    }

    .who-we-are .col-md-pull-8 {
        right: 66.66667%;
    }

    .who-we-are .col-md-pull-9 {
        right: 75%;
    }

    .who-we-are .col-md-pull-10 {
        right: 83.33333%;
    }

    .who-we-are .col-md-pull-11 {
        right: 91.66667%;
    }

    .who-we-are .col-md-pull-12 {
        right: 100%;
    }

    .who-we-are .col-md-push-0 {
        left: auto;
    }

    .who-we-are .col-md-push-1 {
        left: 8.33333%;
    }

    .who-we-are .col-md-push-2 {
        left: 16.66667%;
    }

    .who-we-are .col-md-push-3 {
        left: 25%;
    }

    .who-we-are .col-md-push-4 {
        left: 33.33333%;
    }

    .who-we-are .col-md-push-5 {
        left: 41.66667%;
    }

    .who-we-are .col-md-push-6 {
        left: 50%;
    }

    .who-we-are .col-md-push-7 {
        left: 58.33333%;
    }

    .who-we-are .col-md-push-8 {
        left: 66.66667%;
    }

    .who-we-are .col-md-push-9 {
        left: 75%;
    }

    .who-we-are .col-md-push-10 {
        left: 83.33333%;
    }

    .who-we-are .col-md-push-11 {
        left: 91.66667%;
    }

    .who-we-are .col-md-push-12 {
        left: 100%;
    }

    .who-we-are .col-md-offset-0 {
        margin-left: 0%;
    }

    .who-we-are .col-md-offset-1 {
        margin-left: 8.33333%;
    }

    .who-we-are .col-md-offset-2 {
        margin-left: 16.66667%;
    }

    .who-we-are .col-md-offset-3 {
        margin-left: 25%;
    }

    .who-we-are .col-md-offset-4 {
        margin-left: 33.33333%;
    }

    .who-we-are .col-md-offset-5 {
        margin-left: 41.66667%;
    }

    .who-we-are .col-md-offset-6 {
        margin-left: 50%;
    }

    .who-we-are .col-md-offset-7 {
        margin-left: 58.33333%;
    }

    .who-we-are .col-md-offset-8 {
        margin-left: 66.66667%;
    }

    .who-we-are .col-md-offset-9 {
        margin-left: 75%;
    }

    .who-we-are .col-md-offset-10 {
        margin-left: 83.33333%;
    }

    .who-we-are .col-md-offset-11 {
        margin-left: 91.66667%;
    }

    .who-we-are .col-md-offset-12 {
        margin-left: 100%;
    }
}

@media (min-width:1200px) {
    .who-we-are .col-lg-1, .who-we-are .col-lg-2, .who-we-are .col-lg-3, .who-we-are .col-lg-4, .who-we-are .col-lg-5, .who-we-are .col-lg-6, .who-we-are .col-lg-7, .who-we-are .col-lg-8, .who-we-are .col-lg-9, .who-we-are .col-lg-10, .who-we-are .col-lg-11, .who-we-are .col-lg-12 {
        float: left;
    }

    .who-we-are .col-lg-1 {
        width: 8.33333%;
    }

    .who-we-are .col-lg-2 {
        width: 16.66667%;
    }

    .who-we-are .col-lg-3 {
        width: 25%;
    }

    .who-we-are .col-lg-4 {
        width: 33.33333%;
    }

    .who-we-are .col-lg-5 {
        width: 41.66667%;
    }

    .who-we-are .col-lg-6 {
        width: 50%;
    }

    .who-we-are .col-lg-7 {
        width: 58.33333%;
    }

    .who-we-are .col-lg-8 {
        width: 66.66667%;
    }

    .who-we-are .col-lg-9 {
        width: 75%;
    }

    .who-we-are .col-lg-10 {
        width: 83.33333%;
    }

    .who-we-are .col-lg-11 {
        width: 91.66667%;
    }

    .who-we-are .col-lg-12 {
        width: 100%;
    }

    .who-we-are .col-lg-pull-0 {
        right: auto;
    }

    .who-we-are .col-lg-pull-1 {
        right: 8.33333%;
    }

    .who-we-are .col-lg-pull-2 {
        right: 16.66667%;
    }

    .who-we-are .col-lg-pull-3 {
        right: 25%;
    }

    .who-we-are .col-lg-pull-4 {
        right: 33.33333%;
    }

    .who-we-are .col-lg-pull-5 {
        right: 41.66667%;
    }

    .who-we-are .col-lg-pull-6 {
        right: 50%;
    }

    .who-we-are .col-lg-pull-7 {
        right: 58.33333%;
    }

    .who-we-are .col-lg-pull-8 {
        right: 66.66667%;
    }

    .who-we-are .col-lg-pull-9 {
        right: 75%;
    }

    .who-we-are .col-lg-pull-10 {
        right: 83.33333%;
    }

    .who-we-are .col-lg-pull-11 {
        right: 91.66667%;
    }

    .who-we-are .col-lg-pull-12 {
        right: 100%;
    }

    .who-we-are .col-lg-push-0 {
        left: auto;
    }

    .who-we-are .col-lg-push-1 {
        left: 8.33333%;
    }

    .who-we-are .col-lg-push-2 {
        left: 16.66667%;
    }

    .who-we-are .col-lg-push-3 {
        left: 25%;
    }

    .who-we-are .col-lg-push-4 {
        left: 33.33333%;
    }

    .who-we-are .col-lg-push-5 {
        left: 41.66667%;
    }

    .who-we-are .col-lg-push-6 {
        left: 50%;
    }

    .who-we-are .col-lg-push-7 {
        left: 58.33333%;
    }

    .who-we-are .col-lg-push-8 {
        left: 66.66667%;
    }

    .who-we-are .col-lg-push-9 {
        left: 75%;
    }

    .who-we-are .col-lg-push-10 {
        left: 83.33333%;
    }

    .who-we-are .col-lg-push-11 {
        left: 91.66667%;
    }

    .who-we-are .col-lg-push-12 {
        left: 100%;
    }

    .who-we-are .col-lg-offset-0 {
        margin-left: 0%;
    }

    .who-we-are .col-lg-offset-1 {
        margin-left: 8.33333%;
    }

    .who-we-are .col-lg-offset-2 {
        margin-left: 16.66667%;
    }

    .who-we-are .col-lg-offset-3 {
        margin-left: 25%;
    }

    .who-we-are .col-lg-offset-4 {
        margin-left: 33.33333%;
    }

    .who-we-are .col-lg-offset-5 {
        margin-left: 41.66667%;
    }

    .who-we-are .col-lg-offset-6 {
        margin-left: 50%;
    }

    .who-we-are .col-lg-offset-7 {
        margin-left: 58.33333%;
    }

    .who-we-are .col-lg-offset-8 {
        margin-left: 66.66667%;
    }

    .who-we-are .col-lg-offset-9 {
        margin-left: 75%;
    }

    .who-we-are .col-lg-offset-10 {
        margin-left: 83.33333%;
    }

    .who-we-are .col-lg-offset-11 {
        margin-left: 91.66667%;
    }

    .who-we-are .col-lg-offset-12 {
        margin-left: 100%;
    }
}

.who-we-are table {
    background-color: transparent;
}

.who-we-are caption {
    padding-top: 8px;
    padding-bottom: 8px;
    color: #777;
    text-align: left;
}

.who-we-are th {
    text-align: left;
}

.who-we-are .table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
}

    .who-we-are .table > thead > tr > th, .who-we-are .table > thead > tr > td, .who-we-are .table > tbody > tr > th, .who-we-are .table > tbody > tr > td, .who-we-are .table > tfoot > tr > th, .who-we-are .table > tfoot > tr > td {
        padding: 8px;
        line-height: 1.42857;
        vertical-align: top;
        border-top: 1px solid #ddd;
    }

    .who-we-are .table > thead > tr > th {
        vertical-align: bottom;
        border-bottom: 2px solid #ddd;
    }

    .who-we-are .table > caption + thead > tr:first-child > th, .who-we-are .table > caption + thead > tr:first-child > td, .who-we-are .table > colgroup + thead > tr:first-child > th, .who-we-are .table > colgroup + thead > tr:first-child > td, .who-we-are .table > thead:first-child > tr:first-child > th, .who-we-are .table > thead:first-child > tr:first-child > td {
        border-top: 0;
    }

    .who-we-are .table > tbody + tbody {
        border-top: 2px solid #ddd;
    }

    .who-we-are .table .table {
        background-color: #fff;
    }

.who-we-are .table-condensed > thead > tr > th, .who-we-are .table-condensed > thead > tr > td, .who-we-are .table-condensed > tbody > tr > th, .who-we-are .table-condensed > tbody > tr > td, .who-we-are .table-condensed > tfoot > tr > th, .who-we-are .table-condensed > tfoot > tr > td {
    padding: 5px;
}

.who-we-are .table-bordered {
    border: 1px solid #ddd;
}

    .who-we-are .table-bordered > thead > tr > th, .who-we-are .table-bordered > thead > tr > td, .who-we-are .table-bordered > tbody > tr > th, .who-we-are .table-bordered > tbody > tr > td, .who-we-are .table-bordered > tfoot > tr > th, .who-we-are .table-bordered > tfoot > tr > td {
        border: 1px solid #ddd;
    }

    .who-we-are .table-bordered > thead > tr > th, .who-we-are .table-bordered > thead > tr > td {
        border-bottom-width: 2px;
    }

.who-we-are .table-striped > tbody > tr:nth-of-type(odd) {
    background-color: #f9f9f9;
}

.who-we-are .table-hover > tbody > tr:hover {
    background-color: #f5f5f5;
}

.who-we-are table col[class*="col-"] {
    position: static;
    float: none;
    display: table-column;
}

.who-we-are table td[class*="col-"], .who-we-are table th[class*="col-"] {
    position: static;
    float: none;
    display: table-cell;
}

.who-we-are .table > thead > tr > td.active, .who-we-are .table > thead > tr > th.active, .who-we-are .table > thead > tr.active > td, .who-we-are .table > thead > tr.active > th, .who-we-are .table > tbody > tr > td.active, .who-we-are .table > tbody > tr > th.active, .who-we-are .table > tbody > tr.active > td, .who-we-are .table > tbody > tr.active > th, .who-we-are .table > tfoot > tr > td.active, .who-we-are .table > tfoot > tr > th.active, .who-we-are .table > tfoot > tr.active > td, .who-we-are .table > tfoot > tr.active > th {
    background-color: #f5f5f5;
}

.who-we-are .table-hover > tbody > tr > td.active:hover, .who-we-are .table-hover > tbody > tr > th.active:hover, .who-we-are .table-hover > tbody > tr.active:hover > td, .who-we-are .table-hover > tbody > tr:hover > .active, .who-we-are .table-hover > tbody > tr.active:hover > th {
    background-color: #e8e8e8;
}

.who-we-are .table > thead > tr > td.success, .who-we-are .table > thead > tr > th.success, .who-we-are .table > thead > tr.success > td, .who-we-are .table > thead > tr.success > th, .who-we-are .table > tbody > tr > td.success, .who-we-are .table > tbody > tr > th.success, .who-we-are .table > tbody > tr.success > td, .who-we-are .table > tbody > tr.success > th, .who-we-are .table > tfoot > tr > td.success, .who-we-are .table > tfoot > tr > th.success, .who-we-are .table > tfoot > tr.success > td, .who-we-are .table > tfoot > tr.success > th {
    background-color: #dff0d8;
}

.who-we-are .table-hover > tbody > tr > td.success:hover, .who-we-are .table-hover > tbody > tr > th.success:hover, .who-we-are .table-hover > tbody > tr.success:hover > td, .who-we-are .table-hover > tbody > tr:hover > .success, .who-we-are .table-hover > tbody > tr.success:hover > th {
    background-color: #d0e9c6;
}

.who-we-are .table > thead > tr > td.info, .who-we-are .table > thead > tr > th.info, .who-we-are .table > thead > tr.info > td, .who-we-are .table > thead > tr.info > th, .who-we-are .table > tbody > tr > td.info, .who-we-are .table > tbody > tr > th.info, .who-we-are .table > tbody > tr.info > td, .who-we-are .table > tbody > tr.info > th, .who-we-are .table > tfoot > tr > td.info, .who-we-are .table > tfoot > tr > th.info, .who-we-are .table > tfoot > tr.info > td, .who-we-are .table > tfoot > tr.info > th {
    background-color: #d9edf7;
}

.who-we-are .table-hover > tbody > tr > td.info:hover, .who-we-are .table-hover > tbody > tr > th.info:hover, .who-we-are .table-hover > tbody > tr.info:hover > td, .who-we-are .table-hover > tbody > tr:hover > .info, .who-we-are .table-hover > tbody > tr.info:hover > th {
    background-color: #c4e3f3;
}

.who-we-are .table > thead > tr > td.warning, .who-we-are .table > thead > tr > th.warning, .who-we-are .table > thead > tr.warning > td, .who-we-are .table > thead > tr.warning > th, .who-we-are .table > tbody > tr > td.warning, .who-we-are .table > tbody > tr > th.warning, .who-we-are .table > tbody > tr.warning > td, .who-we-are .table > tbody > tr.warning > th, .who-we-are .table > tfoot > tr > td.warning, .who-we-are .table > tfoot > tr > th.warning, .who-we-are .table > tfoot > tr.warning > td, .who-we-are .table > tfoot > tr.warning > th {
    background-color: #fcf8e3;
}

.who-we-are .table-hover > tbody > tr > td.warning:hover, .who-we-are .table-hover > tbody > tr > th.warning:hover, .who-we-are .table-hover > tbody > tr.warning:hover > td, .who-we-are .table-hover > tbody > tr:hover > .warning, .who-we-are .table-hover > tbody > tr.warning:hover > th {
    background-color: #faf2cc;
}

.who-we-are .table > thead > tr > td.danger, .who-we-are .table > thead > tr > th.danger, .who-we-are .table > thead > tr.danger > td, .who-we-are .table > thead > tr.danger > th, .who-we-are .table > tbody > tr > td.danger, .who-we-are .table > tbody > tr > th.danger, .who-we-are .table > tbody > tr.danger > td, .who-we-are .table > tbody > tr.danger > th, .who-we-are .table > tfoot > tr > td.danger, .who-we-are .table > tfoot > tr > th.danger, .who-we-are .table > tfoot > tr.danger > td, .who-we-are .table > tfoot > tr.danger > th {
    background-color: #f2dede;
}

.who-we-are .table-hover > tbody > tr > td.danger:hover, .who-we-are .table-hover > tbody > tr > th.danger:hover, .who-we-are .table-hover > tbody > tr.danger:hover > td, .who-we-are .table-hover > tbody > tr:hover > .danger, .who-we-are .table-hover > tbody > tr.danger:hover > th {
    background-color: #ebcccc;
}

.who-we-are .table-responsive {
    overflow-x: auto;
    min-height: 0.01%;
}

@media screen and (max-width:767px) {
    .who-we-are .table-responsive {
        width: 100%;
        margin-bottom: 15px;
        overflow-y: hidden;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        border: 1px solid #ddd;
    }

        .who-we-are .table-responsive > .table {
            margin-bottom: 0;
        }

            .who-we-are .table-responsive > .table > thead > tr > th, .who-we-are .table-responsive > .table > thead > tr > td, .who-we-are .table-responsive > .table > tbody > tr > th, .who-we-are .table-responsive > .table > tbody > tr > td, .who-we-are .table-responsive > .table > tfoot > tr > th, .who-we-are .table-responsive > .table > tfoot > tr > td {
                white-space: nowrap;
            }

        .who-we-are .table-responsive > .table-bordered {
            border: 0;
        }

            .who-we-are .table-responsive > .table-bordered > thead > tr > th:first-child, .who-we-are .table-responsive > .table-bordered > thead > tr > td:first-child, .who-we-are .table-responsive > .table-bordered > tbody > tr > th:first-child, .who-we-are .table-responsive > .table-bordered > tbody > tr > td:first-child, .who-we-are .table-responsive > .table-bordered > tfoot > tr > th:first-child, .who-we-are .table-responsive > .table-bordered > tfoot > tr > td:first-child {
                border-left: 0;
            }

            .who-we-are .table-responsive > .table-bordered > thead > tr > th:last-child, .who-we-are .table-responsive > .table-bordered > thead > tr > td:last-child, .who-we-are .table-responsive > .table-bordered > tbody > tr > th:last-child, .who-we-are .table-responsive > .table-bordered > tbody > tr > td:last-child, .who-we-are .table-responsive > .table-bordered > tfoot > tr > th:last-child, .who-we-are .table-responsive > .table-bordered > tfoot > tr > td:last-child {
                border-right: 0;
            }

            .who-we-are .table-responsive > .table-bordered > tbody > tr:last-child > th, .who-we-are .table-responsive > .table-bordered > tbody > tr:last-child > td, .who-we-are .table-responsive > .table-bordered > tfoot > tr:last-child > th, .who-we-are .table-responsive > .table-bordered > tfoot > tr:last-child > td {
                border-bottom: 0;
            }
}

.who-we-are .btn {
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .who-we-are .btn:focus, .who-we-are .btn.focus, .who-we-are .btn:active:focus, .who-we-are .btn:active.focus, .who-we-are .btn.active:focus, .who-we-are .btn.active.focus {
        outline: thin dotted;
        outline: 5px auto -webkit-focus-ring-color;
        outline-offset: -2px;
    }

    .who-we-are .btn:hover, .who-we-are .btn:focus, .who-we-are .btn.focus {
        color: #333;
        text-decoration: none;
    }

    .who-we-are .btn:active, .who-we-are .btn.active {
        outline: 0;
        background-image: none;
        -webkit-box-shadow: inset 0 3px 5px rgba(0,0,0,0.125);
        box-shadow: inset 0 3px 5px rgba(0,0,0,0.125);
    }

    .who-we-are .btn.disabled, .who-we-are .btn[disabled], fieldset[disabled] .who-we-are .btn {
        cursor: not-allowed;
        pointer-events: none;
        opacity: 0.65;
        filter: alpha(opacity=65);
        -webkit-box-shadow: none;
        box-shadow: none;
    }

.who-we-are .btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}

    .who-we-are .btn-default:hover, .who-we-are .btn-default:focus, .who-we-are .btn-default.focus, .who-we-are .btn-default:active, .who-we-are .btn-default.active, .open > .who-we-are .btn-default.dropdown-toggle {
        color: #333;
        background-color: #e6e6e6;
        border-color: #adadad;
    }

    .who-we-are .btn-default:active, .who-we-are .btn-default.active, .open > .who-we-are .btn-default.dropdown-toggle {
        background-image: none;
    }

    .who-we-are .btn-default.disabled, .who-we-are .btn-default.disabled:hover, .who-we-are .btn-default.disabled:focus, .who-we-are .btn-default.disabled.focus, .who-we-are .btn-default.disabled:active, .who-we-are .btn-default.disabled.active, .who-we-are .btn-default[disabled], .who-we-are .btn-default[disabled]:hover, .who-we-are .btn-default[disabled]:focus, .who-we-are .btn-default[disabled].focus, .who-we-are .btn-default[disabled]:active, .who-we-are .btn-default[disabled].active, fieldset[disabled] .who-we-are .btn-default, fieldset[disabled] .who-we-are .btn-default:hover, fieldset[disabled] .who-we-are .btn-default:focus, fieldset[disabled] .who-we-are .btn-default.focus, fieldset[disabled] .who-we-are .btn-default:active, fieldset[disabled] .who-we-are .btn-default.active {
        background-color: #fff;
        border-color: #ccc;
    }

    .who-we-are .btn-default .badge {
        color: #fff;
        background-color: #333;
    }

.who-we-are .btn-primary {
    color: #fff;
    background-color: #337ab7;
    border-color: #2e6da4;
}

    .who-we-are .btn-primary:hover, .who-we-are .btn-primary:focus, .who-we-are .btn-primary.focus, .who-we-are .btn-primary:active, .who-we-are .btn-primary.active, .open > .who-we-are .btn-primary.dropdown-toggle {
        color: #fff;
        background-color: #286090;
        border-color: #204d74;
    }

    .who-we-are .btn-primary:active, .who-we-are .btn-primary.active, .open > .who-we-are .btn-primary.dropdown-toggle {
        background-image: none;
    }

    .who-we-are .btn-primary.disabled, .who-we-are .btn-primary.disabled:hover, .who-we-are .btn-primary.disabled:focus, .who-we-are .btn-primary.disabled.focus, .who-we-are .btn-primary.disabled:active, .who-we-are .btn-primary.disabled.active, .who-we-are .btn-primary[disabled], .who-we-are .btn-primary[disabled]:hover, .who-we-are .btn-primary[disabled]:focus, .who-we-are .btn-primary[disabled].focus, .who-we-are .btn-primary[disabled]:active, .who-we-are .btn-primary[disabled].active, fieldset[disabled] .who-we-are .btn-primary, fieldset[disabled] .who-we-are .btn-primary:hover, fieldset[disabled] .who-we-are .btn-primary:focus, fieldset[disabled] .who-we-are .btn-primary.focus, fieldset[disabled] .who-we-are .btn-primary:active, fieldset[disabled] .who-we-are .btn-primary.active {
        background-color: #337ab7;
        border-color: #2e6da4;
    }

    .who-we-are .btn-primary .badge {
        color: #337ab7;
        background-color: #fff;
    }

.who-we-are .btn-success {
    color: #fff;
    background-color: #5cb85c;
    border-color: #4cae4c;
}

    .who-we-are .btn-success:hover, .who-we-are .btn-success:focus, .who-we-are .btn-success.focus, .who-we-are .btn-success:active, .who-we-are .btn-success.active, .open > .who-we-are .btn-success.dropdown-toggle {
        color: #fff;
        background-color: #449d44;
        border-color: #398439;
    }

    .who-we-are .btn-success:active, .who-we-are .btn-success.active, .open > .who-we-are .btn-success.dropdown-toggle {
        background-image: none;
    }

    .who-we-are .btn-success.disabled, .who-we-are .btn-success.disabled:hover, .who-we-are .btn-success.disabled:focus, .who-we-are .btn-success.disabled.focus, .who-we-are .btn-success.disabled:active, .who-we-are .btn-success.disabled.active, .who-we-are .btn-success[disabled], .who-we-are .btn-success[disabled]:hover, .who-we-are .btn-success[disabled]:focus, .who-we-are .btn-success[disabled].focus, .who-we-are .btn-success[disabled]:active, .who-we-are .btn-success[disabled].active, fieldset[disabled] .who-we-are .btn-success, fieldset[disabled] .who-we-are .btn-success:hover, fieldset[disabled] .who-we-are .btn-success:focus, fieldset[disabled] .who-we-are .btn-success.focus, fieldset[disabled] .who-we-are .btn-success:active, fieldset[disabled] .who-we-are .btn-success.active {
        background-color: #5cb85c;
        border-color: #4cae4c;
    }

    .who-we-are .btn-success .badge {
        color: #5cb85c;
        background-color: #fff;
    }

.who-we-are .btn-info {
    color: #fff;
    background-color: #5bc0de;
    border-color: #46b8da;
}

    .who-we-are .btn-info:hover, .who-we-are .btn-info:focus, .who-we-are .btn-info.focus, .who-we-are .btn-info:active, .who-we-are .btn-info.active, .open > .who-we-are .btn-info.dropdown-toggle {
        color: #fff;
        background-color: #31b0d5;
        border-color: #269abc;
    }

    .who-we-are .btn-info:active, .who-we-are .btn-info.active, .open > .who-we-are .btn-info.dropdown-toggle {
        background-image: none;
    }

    .who-we-are .btn-info.disabled, .who-we-are .btn-info.disabled:hover, .who-we-are .btn-info.disabled:focus, .who-we-are .btn-info.disabled.focus, .who-we-are .btn-info.disabled:active, .who-we-are .btn-info.disabled.active, .who-we-are .btn-info[disabled], .who-we-are .btn-info[disabled]:hover, .who-we-are .btn-info[disabled]:focus, .who-we-are .btn-info[disabled].focus, .who-we-are .btn-info[disabled]:active, .who-we-are .btn-info[disabled].active, fieldset[disabled] .who-we-are .btn-info, fieldset[disabled] .who-we-are .btn-info:hover, fieldset[disabled] .who-we-are .btn-info:focus, fieldset[disabled] .who-we-are .btn-info.focus, fieldset[disabled] .who-we-are .btn-info:active, fieldset[disabled] .who-we-are .btn-info.active {
        background-color: #5bc0de;
        border-color: #46b8da;
    }

    .who-we-are .btn-info .badge {
        color: #5bc0de;
        background-color: #fff;
    }

.who-we-are .btn-warning {
    color: #fff;
    background-color: #f0ad4e;
    border-color: #eea236;
}

    .who-we-are .btn-warning:hover, .who-we-are .btn-warning:focus, .who-we-are .btn-warning.focus, .who-we-are .btn-warning:active, .who-we-are .btn-warning.active, .open > .who-we-are .btn-warning.dropdown-toggle {
        color: #fff;
        background-color: #ec971f;
        border-color: #d58512;
    }

    .who-we-are .btn-warning:active, .who-we-are .btn-warning.active, .open > .who-we-are .btn-warning.dropdown-toggle {
        background-image: none;
    }

    .who-we-are .btn-warning.disabled, .who-we-are .btn-warning.disabled:hover, .who-we-are .btn-warning.disabled:focus, .who-we-are .btn-warning.disabled.focus, .who-we-are .btn-warning.disabled:active, .who-we-are .btn-warning.disabled.active, .who-we-are .btn-warning[disabled], .who-we-are .btn-warning[disabled]:hover, .who-we-are .btn-warning[disabled]:focus, .who-we-are .btn-warning[disabled].focus, .who-we-are .btn-warning[disabled]:active, .who-we-are .btn-warning[disabled].active, fieldset[disabled] .who-we-are .btn-warning, fieldset[disabled] .who-we-are .btn-warning:hover, fieldset[disabled] .who-we-are .btn-warning:focus, fieldset[disabled] .who-we-are .btn-warning.focus, fieldset[disabled] .who-we-are .btn-warning:active, fieldset[disabled] .who-we-are .btn-warning.active {
        background-color: #f0ad4e;
        border-color: #eea236;
    }

    .who-we-are .btn-warning .badge {
        color: #f0ad4e;
        background-color: #fff;
    }

.who-we-are .btn-danger {
    color: #fff;
    background-color: #d9534f;
    border-color: #d43f3a;
}

    .who-we-are .btn-danger:hover, .who-we-are .btn-danger:focus, .who-we-are .btn-danger.focus, .who-we-are .btn-danger:active, .who-we-are .btn-danger.active, .open > .who-we-are .btn-danger.dropdown-toggle {
        color: #fff;
        background-color: #c9302c;
        border-color: #ac2925;
    }

    .who-we-are .btn-danger:active, .who-we-are .btn-danger.active, .open > .who-we-are .btn-danger.dropdown-toggle {
        background-image: none;
    }

    .who-we-are .btn-danger.disabled, .who-we-are .btn-danger.disabled:hover, .who-we-are .btn-danger.disabled:focus, .who-we-are .btn-danger.disabled.focus, .who-we-are .btn-danger.disabled:active, .who-we-are .btn-danger.disabled.active, .who-we-are .btn-danger[disabled], .who-we-are .btn-danger[disabled]:hover, .who-we-are .btn-danger[disabled]:focus, .who-we-are .btn-danger[disabled].focus, .who-we-are .btn-danger[disabled]:active, .who-we-are .btn-danger[disabled].active, fieldset[disabled] .who-we-are .btn-danger, fieldset[disabled] .who-we-are .btn-danger:hover, fieldset[disabled] .who-we-are .btn-danger:focus, fieldset[disabled] .who-we-are .btn-danger.focus, fieldset[disabled] .who-we-are .btn-danger:active, fieldset[disabled] .who-we-are .btn-danger.active {
        background-color: #d9534f;
        border-color: #d43f3a;
    }

    .who-we-are .btn-danger .badge {
        color: #d9534f;
        background-color: #fff;
    }

.who-we-are .btn-link {
    color: #337ab7;
    font-weight: normal;
    border-radius: 0;
}

    .who-we-are .btn-link, .who-we-are .btn-link:active, .who-we-are .btn-link.active, .who-we-are .btn-link[disabled], fieldset[disabled] .who-we-are .btn-link {
        background-color: transparent;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

        .who-we-are .btn-link, .who-we-are .btn-link:hover, .who-we-are .btn-link:focus, .who-we-are .btn-link:active {
            border-color: transparent;
        }

            .who-we-are .btn-link:hover, .who-we-are .btn-link:focus {
                color: #23527c;
                text-decoration: underline;
                background-color: transparent;
            }

            .who-we-are .btn-link[disabled]:hover, .who-we-are .btn-link[disabled]:focus, fieldset[disabled] .who-we-are .btn-link:hover, fieldset[disabled] .who-we-are .btn-link:focus {
                color: #777;
                text-decoration: none;
            }

.who-we-are .btn-lg {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33333;
    border-radius: 6px;
}

.who-we-are .btn-sm {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}

.who-we-are .btn-xs {
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}

.who-we-are .btn-block {
    display: block;
    width: 100%;
}

    .who-we-are .btn-block + .btn-block {
        margin-top: 5px;
    }

.who-we-are input[type="submit"].btn-block, .who-we-are input[type="reset"].btn-block, .who-we-are input[type="button"].btn-block {
    width: 100%;
}

.who-we-are .fade {
    opacity: 0;
    -webkit-transition: opacity 0.15s linear;
    -o-transition: opacity 0.15s linear;
    transition: opacity 0.15s linear;
}

    .who-we-are .fade.in {
        opacity: 1;
    }

.who-we-are .collapse {
    display: none;
}

    .who-we-are .collapse.in {
        display: block;
    }

.who-we-are tr.collapse.in {
    display: table-row;
}

.who-we-are tbody.collapse.in {
    display: table-row-group;
}

.who-we-are .collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    -webkit-transition-property: height,visibility;
    transition-property: height,visibility;
    -webkit-transition-duration: 0.35s;
    transition-duration: 0.35s;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
}

.who-we-are .embed-responsive {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden;
}

    .who-we-are .embed-responsive .embed-responsive-item, .who-we-are .embed-responsive iframe, .who-we-are .embed-responsive embed, .who-we-are .embed-responsive object, .who-we-are .embed-responsive video {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        height: 100%;
        width: 100%;
        border: 0;
    }

.who-we-are .embed-responsive-16by9 {
    padding-bottom: 56.25%;
}

.who-we-are .embed-responsive-4by3 {
    padding-bottom: 75%;
}

.who-we-are .close {
    float: right;
    font-size: 21px;
    font-weight: bold;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: 0.2;
    filter: alpha(opacity=20);
}

    .who-we-are .close:hover, .who-we-are .close:focus {
        color: #000;
        text-decoration: none;
        cursor: pointer;
        opacity: 0.5;
        filter: alpha(opacity=50);
    }

.who-we-are button.close {
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
}

.who-we-are .carousel {
    position: relative;
}

.who-we-are .carousel-inner {
    position: relative;
    overflow: hidden;
    width: 100%;
}

    .who-we-are .carousel-inner > .item {
        display: none;
        position: relative;
        -webkit-transition: 0.6s ease-in-out left;
        -o-transition: 0.6s ease-in-out left;
        transition: 0.6s ease-in-out left;
    }

        .who-we-are .carousel-inner > .item > img, .who-we-are .carousel-inner > .item > a > img {
            display: block;
            max-width: 100%;
            height: auto;
            line-height: 1;
        }

@media all and (transform-3d),(-webkit-transform-3d) {
    .who-we-are .carousel-inner > .item {
        -webkit-transition: -webkit-transform 0.6s ease-in-out;
        -moz-transition: -moz-transform 0.6s ease-in-out;
        -o-transition: -o-transform 0.6s ease-in-out;
        transition: transform 0.6s ease-in-out;
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000;
        -moz-perspective: 1000;
        perspective: 1000;
    }

        .who-we-are .carousel-inner > .item.next, .who-we-are .carousel-inner > .item.active.right {
            -webkit-transform: translate3d(100%,0,0);
            transform: translate3d(100%,0,0);
            left: 0;
        }

        .who-we-are .carousel-inner > .item.prev, .who-we-are .carousel-inner > .item.active.left {
            -webkit-transform: translate3d(-100%,0,0);
            transform: translate3d(-100%,0,0);
            left: 0;
        }

            .who-we-are .carousel-inner > .item.next.left, .who-we-are .carousel-inner > .item.prev.right, .who-we-are .carousel-inner > .item.active {
                -webkit-transform: translate3d(0,0,0);
                transform: translate3d(0,0,0);
                left: 0;
            }
}

.who-we-are .carousel-inner > .active, .who-we-are .carousel-inner > .next, .who-we-are .carousel-inner > .prev {
    display: block;
}

.who-we-are .carousel-inner > .active {
    left: 0;
}

.who-we-are .carousel-inner > .next, .who-we-are .carousel-inner > .prev {
    position: absolute;
    top: 0;
    width: 100%;
}

.who-we-are .carousel-inner > .next {
    left: 100%;
}

.who-we-are .carousel-inner > .prev {
    left: -100%;
}

    .who-we-are .carousel-inner > .next.left, .who-we-are .carousel-inner > .prev.right {
        left: 0;
    }

.who-we-are .carousel-inner > .active.left {
    left: -100%;
}

.who-we-are .carousel-inner > .active.right {
    left: 100%;
}

.who-we-are .carousel-control {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 15%;
    opacity: 0.5;
    filter: alpha(opacity=50);
    font-size: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0,0,0,0.6);
}

    .who-we-are .carousel-control.left {
        background-repeat: repeat-x;
    background-image: linear-gradient(to right,rgba(0,0,0,0.5) 0%,rgba(0,0,0,0.0001) 100%);
}

    .who-we-are .carousel-control.right {
        left: auto;
        right: 0;
        background-repeat: repeat-x;
    background-image: linear-gradient(to right,rgba(0,0,0,0.0001) 0%,rgba(0,0,0,0.5) 100%);
}

    .who-we-are .carousel-control:hover, .who-we-are .carousel-control:focus {
        outline: 0;
        color: #fff;
        text-decoration: none;
        opacity: 0.9;
        filter: alpha(opacity=90);
    }

    .who-we-are .carousel-control .icon-prev, .who-we-are .carousel-control .icon-next, .who-we-are .carousel-control .glyphicon-chevron-left, .who-we-are .carousel-control .glyphicon-chevron-right {
        position: absolute;
        top: 50%;
        z-index: 5;
        display: inline-block;
    }

    .who-we-are .carousel-control .icon-prev, .who-we-are .carousel-control .glyphicon-chevron-left {
        left: 50%;
        margin-left: -10px;
    }

    .who-we-are .carousel-control .icon-next, .who-we-are .carousel-control .glyphicon-chevron-right {
        right: 50%;
        margin-right: -10px;
    }

    .who-we-are .carousel-control .icon-prev, .who-we-are .carousel-control .icon-next {
        width: 20px;
        height: 20px;
        margin-top: -10px;
        line-height: 1;
        font-family: serif;
    }

        .who-we-are .carousel-control .icon-prev:before {
            content: '\2039';
        }

        .who-we-are .carousel-control .icon-next:before {
            content: '\203a';
        }

.who-we-are .carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    z-index: 15;
    width: 60%;
    margin-left: -30%;
    padding-left: 0;
    list-style: none;
    text-align: center;
}

    .who-we-are .carousel-indicators li {
        display: inline-block;
        width: 10px;
        height: 10px;
        margin: 1px;
        text-indent: -999px;
        border: 1px solid #fff;
        border-radius: 10px;
        cursor: pointer;
        background-color: #000 \9;
        background-color: transparent;
    }

    .who-we-are .carousel-indicators .active {
        margin: 0;
        width: 12px;
        height: 12px;
        background-color: #fff;
    }

.who-we-are .carousel-caption {
    position: absolute;
    left: 15%;
    right: 15%;
    bottom: 20px;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0,0,0,0.6);
}

    .who-we-are .carousel-caption .btn {
        text-shadow: none;
    }

@media screen and (min-width:768px) {
    .who-we-are .carousel-control .glyphicon-chevron-left, .who-we-are .carousel-control .glyphicon-chevron-right, .who-we-are .carousel-control .icon-prev, .who-we-are .carousel-control .icon-next {
        width: 30px;
        height: 30px;
        margin-top: -15px;
        font-size: 30px;
    }

    .who-we-are .carousel-control .glyphicon-chevron-left, .who-we-are .carousel-control .icon-prev {
        margin-left: -15px;
    }

    .who-we-are .carousel-control .glyphicon-chevron-right, .who-we-are .carousel-control .icon-next {
        margin-right: -15px;
    }

    .who-we-are .carousel-caption {
        left: 20%;
        right: 20%;
        padding-bottom: 30px;
    }

    .who-we-are .carousel-indicators {
        bottom: 20px;
    }
}

.who-we-are .clearfix:before, .who-we-are .clearfix:after {
    content: " ";
    display: table;
}

.who-we-are .clearfix:after {
    clear: both;
}

.who-we-are .center-block {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.who-we-are .pull-right {
    float: right !important;
}

.who-we-are .pull-left {
    float: left !important;
}

.who-we-are .hide {
    display: none !important;
}

.who-we-are .show {
    display: block !important;
}

.who-we-are .invisible {
    visibility: hidden;
}

.who-we-are .text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.who-we-are .hidden {
    display: none !important;
}

.who-we-are .affix {
    position: fixed;
}

.who-we-are .visible-xs {
    display: none !important;
}

.who-we-are .visible-sm {
    display: none !important;
}

.who-we-are .visible-md {
    display: none !important;
}

.who-we-are .visible-lg {
    display: none !important;
}

.who-we-are .visible-xs-block, .who-we-are .visible-xs-inline, .who-we-are .visible-xs-inline-block, .who-we-are .visible-sm-block, .who-we-are .visible-sm-inline, .who-we-are .visible-sm-inline-block, .who-we-are .visible-md-block, .who-we-are .visible-md-inline, .who-we-are .visible-md-inline-block, .who-we-are .visible-lg-block, .who-we-are .visible-lg-inline, .who-we-are .visible-lg-inline-block {
    display: none !important;
}

@media (max-width:767px) {
    .who-we-are .visible-xs {
        display: block !important;
    }

    .who-we-are table.visible-xs {
        display: table;
    }

    .who-we-are tr.visible-xs {
        display: table-row !important;
    }

    .who-we-are th.visible-xs, .who-we-are td.visible-xs {
        display: table-cell !important;
    }
}

@media (max-width:767px) {
    .who-we-are .visible-xs-block {
        display: block !important;
    }
}

@media (max-width:767px) {
    .who-we-are .visible-xs-inline {
        display: inline !important;
    }
}

@media (max-width:767px) {
    .who-we-are .visible-xs-inline-block {
        display: inline-block !important;
    }
}

@media (min-width:768px) and (max-width:991px) {
    .who-we-are .visible-sm {
        display: block !important;
    }

    .who-we-are table.visible-sm {
        display: table;
    }

    .who-we-are tr.visible-sm {
        display: table-row !important;
    }

    .who-we-are th.visible-sm, .who-we-are td.visible-sm {
        display: table-cell !important;
    }
}

@media (min-width:768px) and (max-width:991px) {
    .who-we-are .visible-sm-block {
        display: block !important;
    }
}

@media (min-width:768px) and (max-width:991px) {
    .who-we-are .visible-sm-inline {
        display: inline !important;
    }
}

@media (min-width:768px) and (max-width:991px) {
    .who-we-are .visible-sm-inline-block {
        display: inline-block !important;
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .who-we-are .visible-md {
        display: block !important;
    }

    .who-we-are table.visible-md {
        display: table;
    }

    .who-we-are tr.visible-md {
        display: table-row !important;
    }

    .who-we-are th.visible-md, .who-we-are td.visible-md {
        display: table-cell !important;
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .who-we-are .visible-md-block {
        display: block !important;
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .who-we-are .visible-md-inline {
        display: inline !important;
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .who-we-are .visible-md-inline-block {
        display: inline-block !important;
    }
}

@media (min-width:1200px) {
    .who-we-are .visible-lg {
        display: block !important;
    }

    .who-we-are table.visible-lg {
        display: table;
    }

    .who-we-are tr.visible-lg {
        display: table-row !important;
    }

    .who-we-are th.visible-lg, .who-we-are td.visible-lg {
        display: table-cell !important;
    }
}

@media (min-width:1200px) {
    .who-we-are .visible-lg-block {
        display: block !important;
    }
}

@media (min-width:1200px) {
    .who-we-are .visible-lg-inline {
        display: inline !important;
    }
}

@media (min-width:1200px) {
    .who-we-are .visible-lg-inline-block {
        display: inline-block !important;
    }
}

@media (max-width:767px) {
    .who-we-are .hidden-xs {
        display: none !important;
    }
}

@media (min-width:768px) and (max-width:991px) {
    .who-we-are .hidden-sm {
        display: none !important;
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .who-we-are .hidden-md {
        display: none !important;
    }
}

@media (min-width:1200px) {
    .who-we-are .hidden-lg {
        display: none !important;
    }
}

.who-we-are .visible-print {
    display: none !important;
}

@media print {
    .who-we-are .visible-print {
        display: block !important;
    }

    .who-we-are table.visible-print {
        display: table;
    }

    .who-we-are tr.visible-print {
        display: table-row !important;
    }

    .who-we-are th.visible-print, .who-we-are td.visible-print {
        display: table-cell !important;
    }
}

.who-we-are .visible-print-block {
    display: none !important;
}

@media print {
    .who-we-are .visible-print-block {
        display: block !important;
    }
}

.who-we-are .visible-print-inline {
    display: none !important;
}

@media print {
    .who-we-are .visible-print-inline {
        display: inline !important;
    }
}

.who-we-are .visible-print-inline-block {
    display: none !important;
}

@media print {
    .who-we-are .visible-print-inline-block {
        display: inline-block !important;
    }
}

@media print {
    .who-we-are .hidden-print {
        display: none !important;
    }
}

.who-we-are .carousel.fade > .carousel-inner > .item {
    opacity: 0;
    transition-property: opacity;
    -webkit-transition-property: opacity;
}

.who-we-are .carousel.fade > .carousel-inner > .active {
    opacity: 1;
}

    .who-we-are .carousel.fade > .carousel-inner > .active.left, .who-we-are .carousel.fade > .carousel-inner > .active.right {
        left: 0;
        opacity: 0;
        z-index: 1;
    }

.who-we-are .carousel.fade > .carousel-inner > .next.left, .who-we-are .carousel.fade > .carousel-inner > .prev.right {
    opacity: 1;
}

.who-we-are .modal {
    bottom: 0;
    display: none;
    left: 0;
    height: auto;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    right: 0;
    top: 0;
    transition: all 0.35s ease-in-out;
    width: auto;
    z-index: 0;
}

    .who-we-are .modal .centered {
        width: 99%;
    }

        .who-we-are .modal .centered .modal-content {
            background-color: #FFFFFF;
            margin: 0px auto;
            max-width: 1282px;
            padding: 20px;
            position: relative;
            width: 70%;
        }

    .who-we-are .modal.enabled {
        display: block;
    }

    .who-we-are .modal.active {
        opacity: 1;
        pointer-events: all;
        z-index: 2000;
    }

    .who-we-are .modal .modal-backdrop {
        background-color: rgba(0,0,0,0.8);
        height: 100vh;
        width: 100%;
        z-index: 2001;
    }

    .who-we-are .modal .modal-close {
        background-color: #dd5102;
        border-radius: 15px;
        color: #FFFFFF;
        cursor: pointer;
        height: 30px;
        position: absolute;
        right: -15px;
        text-align: center;
        top: -15px;
        width: 30px;
        z-index: 2001;
    }

        .who-we-are .modal .modal-close .fa {
            color: #FFFFFF;
            line-height: 30px;
        }

    .who-we-are .modal .modal-content {
        position: relative;
        z-index: 2003;
    }

    .who-we-are .modal .modal-title {
        color: #FFFFFF;
        font-family: "Guardian Sans Light",Helvetica,Arial,sans-serif;
        font-size: 30px;
        margin: 0px 20px;
        position: absolute;
        top: -100px;
    }

        .who-we-are .modal .modal-title strong {
            font-family: "Guardian Sans Bold",Helvetica,Arial,sans-serif;
        }

.who-we-are .centered-vertical {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
}

    .who-we-are .centered-vertical.centered-horizontal {
        text-align: center;
    }

    .who-we-are .centered-vertical:before {
        content: '';
        display: inline-block;
        height: 100%;
        margin: 0px !important;
        padding: 0px !important;
        vertical-align: middle;
        width: 0px !important;
    }

    .who-we-are .centered-vertical .centered {
        display: inline-block;
        text-align: left;
        vertical-align: middle;
    }

.who-we-are .btn-purple {
    background-color: #dd5102;
    border: none;
    border-radius: 30px;
    color: #FFFFFF !important;
    font-family: "Guardian Sans",Helvetica,Arial,sans-serif;
    font-weight: 300;
    height: 45px;
    line-height: 26px;
    margin-bottom: 20px;
    padding: 10px 25px;
    text-align: center;
    position: relative;
}

    .who-we-are .btn-purple:hover {
        background-color: #ff9500;
        color: #FFFFFF;
    }

    .who-we-are .btn-purple .fa-play {
        background-color: #FFFFFF;
        border-radius: 17.5px;
        color: #000000;
        font-size: 15px;
        height: 35px;
        line-height: 35px;
        position: absolute;
        right: 5px;
        text-align: center;
        text-indent: 2px;
        top: 5px;
        width: 35px;
    }

.who-we-are .btn-black {
    background-color: #000000;
    border-radius: 0;
    color: #FFFFFF !important;
    height: 42px;
    line-height: 28px;
    outline: none !important;
    padding: 7px 20px;
    text-align: left;
}

    .who-we-are .btn-black .fa {
        background-color: #FFFFFF;
        border-radius: 50%;
        color: #000000;
        height: 20px;
        line-height: 20px;
        margin-left: 20px;
        text-align: center;
        transition: all 0.5s linear;
        width: 20px;
    }

    .who-we-are .btn-black:hover {
        color: #FFFFFF;
    }

        .who-we-are .btn-black:hover .fa {
            background-color: #ff9500;
        }

.who-we-are .indicator {
    display: none;
    right: 24px;
    position: fixed;
    top: 33%;
    z-index: 100;
}

    .who-we-are .indicator div {
        background-color: transparent;
        border: 1px solid #000000;
        border-radius: 5px;
        cursor: pointer;
        height: 10px;
        margin: 10px 5px;
        position: relative;
        transition: background-color 0.5s ease-in-out;
        width: 10px;
    }

        .who-we-are .indicator div.active {
            background-color: #000000;
        }

            .who-we-are .indicator div.active .line {
                width: 48px;
            }

        .who-we-are .indicator div .line {
            background-color: #000000;
            border: none;
            height: 2px;
            margin: 0;
            position: absolute;
            right: -48px;
            top: 3px;
            transition: width 0.5s linear;
            width: 0;
        }

.who-we-are a.more {
    color: #FFFFFF;
    font-size: 16px;
    line-height: 20px;
    margin-top: 20px;
    text-decoration: none;
}

    .who-we-are a.more .fa {
        background-color: #FFFFFF;
        border-radius: 50%;
        color: #2E3337;
        font-size: 16px;
        height: 18px;
        margin-left: 10px;
        text-align: center;
        text-indent: 1px;
        width: 18px;
    }

.who-we-are .section {
    background-color: #FFFFFF;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    width: 100%;
    padding-bottom: 40px;
    position: relative;
}

    .who-we-are .section .content {
        margin: 0px auto;
        max-width: 1282px;
        padding-left: 24px;
        padding-right: 24px;
        padding-top: 40px;
        overflow: visible;
    }

@media (orientation:landscape) and (max-width:991px) {
    .who-we-are .section .content {
        padding-top: 20px;
    }
}

@media (min-width:1024px) {
    .who-we-are .section .content {
        padding-left: 48px;
        padding-right: 48px;
    }
}

@media (min-width:1282px) {
    .who-we-are .section .content {
        padding-left: 0;
        padding-right: 0;
    }
}

.who-we-are .section h1 {
    font-family: "Guardian Sans Bold",Helvetica,Arial,sans-serif;
    font-weight: 700;
    margin-bottom: 30px;
}

    .who-we-are .section h1 > span {
        font-family: "Guardian Sans Light",Helvetica,Arial,sans-serif;
        font-weight: 100;
        font-size: 50px;
    }

.who-we-are .section p {
    font-size: 16px;
    line-height: 24px;
    max-width: 500px;
}

    .who-we-are .section p.intro {
        font-family: "Guardian Sans Light",Helvetica,Arial,sans-serif;
        font-size: 20px;
        font-weight: 100;
    }

    .who-we-are .section p.lead {
        font-family: "Guardian Sans Light",Helvetica,Arial,sans-serif;
        font-size: 24px;
        font-weight: 100;
        line-height: 30px;
    }

.who-we-are .section blockquote {
    border-left: none;
    font-family: "Guardian Sans Light",Helvetica,Arial,sans-serif;
    font-size: 15px;
    font-weight: 100;
    line-height: 25px;
    margin-top: 40px;
    padding: 0;
    position: relative;
    max-width: 400px;
}

    .who-we-are .section blockquote .quotes {
        font-family: serif;
        font-size: 60px;
        left: 0px;
        position: absolute;
        top: -20px;
    }

    .who-we-are .section blockquote cite {
        border-top: 2px solid #333333;
        display: block;
        font-size: 16px;
        font-style: normal;
        line-height: 20px;
        margin-top: 20px;
        padding-top: 20px;
    }

        .who-we-are .section blockquote cite strong {
            display: block;
            font-family: 'Guardian Sans Bold',Helvetica,Arial,sans-serif;
            font-size: 14px;
            font-weight: 700;
            padding-top: 3px;
        }

.who-we-are .section .down {
    background-color: #dd5102;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    bottom: 0px;
    color: #FFFFFF;
    cursor: pointer;
    display: none;
    font-size: 30px;
    height: 30px;
    left: 50%;
    line-height: 30px;
    margin-left: -30px;
    position: absolute;
    text-align: center;
    transition: all 0.25s linear;
    width: 60px;
}

    .who-we-are .section .down:hover {
        height: 35px;
    }

    .who-we-are .section .down .fa {
        display: block;
        line-height: 37.8px;
    }

@media (min-width:768px) {
    .who-we-are .section .down {
        display: block;
    }
}

.who-we-are .section.who {
    background-image: url(../images/whoweare/jacqueline-mobile.jpg);
}

@media (max-width:991px) {
    .who-we-are .section.who blockquote {
        max-width: 350px;
    }
}

@media (min-width:768px) {
    .who-we-are .section.who {
        background-image: url(../images/whoweare/Jacqueline.jpg);
        background-position: center top;
        padding-top: 139px;
        margin-top: -139px;
    }
}

.who-we-are .section.who .down {
    background-color: #dd5102;
    color: #FFFFFF;
}

.who-we-are .section.who .btn-purple {
    padding-right: 20px;
    text-align: left;
}

.who-we-are .section.who h1 {
    color: #000000;
}

.who-we-are .section.why {
    background-color: #dd5102;
    color: #FFFFFF;
    min-height: 70vh;
    padding-bottom: 0;
}

    .who-we-are .section.why .carousel {
        height: 100vh;
        width: 100%;
    }

@media (min-width:992px) {
    .who-we-are .section.why .carousel {
        min-height: 700px;
    }
}

.who-we-are .section.why .carousel .carousel-inner {
    height: 100%;
}

    .who-we-are .section.why .carousel .carousel-inner .item {
        background-position: center bottom;
        background-repeat: no-repeat;
        background-size: 100% auto;
        height: 100%;
        overflow-x: hidden;
        width: 100%;
    }

        .who-we-are .section.why .carousel .carousel-inner .item p {
            display: none;
        }

            .who-we-are .section.why .carousel .carousel-inner .item p.lead {
                display: block;
            }

@media (min-width:992px) {
    .who-we-are .section.why .carousel .carousel-inner .item p {
        display: block;
    }
}

.who-we-are .section.why .carousel .carousel-inner .item a.more {
    display: block;
}

.who-we-are .section.why .carousel .carousel-inner .item h1 {
    margin-bottom: 5px;
    margin-top: 0;
}

.who-we-are .section.why .carousel .carousel-inner .item h4 {
    font-family: "Guardian Sans Bold",Helvetica,Arial,sans-serif;
    font-size: 30px;
    margin-bottom: 20px;
}

.who-we-are .section.why .carousel .carousel-inner .item .content {
    height: 100%;
    margin-left: 10px;
    margin-right: 10px;
}

@media (max-width:991px) {
    .who-we-are .section.why .carousel .carousel-inner .item .content {
        padding-top: 24px;
    }
}

@media (min-width:992px) {
    .who-we-are .section.why .carousel .carousel-inner .item .content {
        margin-left: auto;
        margin-right: auto;
        padding-top: 100px;
        padding-left: 45px;
        padding-right: 45px;
    }
}

@media (max-width:991px) {
    .who-we-are .section.why .carousel .carousel-inner .item h1 {
        margin-bottom: 20px;
        margin-top: 0;
    }

    .who-we-are .section.why .carousel .carousel-inner .item p {
        max-width: 100%;
    }

        .who-we-are .section.why .carousel .carousel-inner .item p.lead {
            font-size: 16px !important;
            line-height: 20px;
        }
}

@media (max-width:991px) and (orientation:landscape) {
    .who-we-are .section.why .carousel .carousel-inner .item p.lead {
        max-width: 37%;
    }
}

.who-we-are .section.why .restart {
    cursor: pointer;
}

.who-we-are .section.why .scroll {
    background-color: #000000;
    color: #FFFFFF;
    cursor: pointer;
    direction: block;
    height: 60px;
    line-height: 50px;
    margin-top: -30px;
    position: absolute;
    text-align: center;
    top: 50%;
    transition: left 0.3s ease-in-out,right 0.3s ease-in-out;
    width: 100px;
    z-index: 20;
}

    .who-we-are .section.why .scroll .fa {
        font-size: 37.8px;
        line-height: 60px;
        padding: 0px 2px;
        margin: 0px 10px;
    }

    .who-we-are .section.why .scroll label {
        bottom: 0;
        cursor: pointer;
        height: 60px;
        line-height: 65px;
        position: absolute;
        top: 0;
    }

    .who-we-are .section.why .scroll.left {
        border-bottom-right-radius: 30px;
        border-top-right-radius: 30px;
        left: -70px;
        text-align: right;
    }

        .who-we-are .section.why .scroll.left label {
            left: 0px;
            right: 40px;
        }

@media (min-width:992px) {
    .who-we-are .section.why .scroll.left {
        left: -60px;
    }
}

.who-we-are .section.why .scroll.right {
    border-bottom-left-radius: 30px;
    border-top-left-radius: 30px;
    right: -70px;
    text-align: left;
}

    .who-we-are .section.why .scroll.right label {
        left: 40px;
        right: 0;
    }

@media (min-width:992px) {
    .who-we-are .section.why .scroll.right {
        right: -60px;
    }
}

@media (min-width:992px) {
    .who-we-are .section.why .scroll:hover.left {
        left: 0;
    }

    .who-we-are .section.why .scroll:hover.right {
        right: 0;
    }
}

.who-we-are .section.why .frame-1 {
    background-color: #dd5102;
    background-image: url(../themes/ch2m/assets/images/who-we-are/carousel/mobile/1.html);
    background-position: right bottom !important;
}

@media (orientation:landscape) {
    .who-we-are .section.why .frame-1 {
        background-image: url(../themes/ch2m/assets/images/who-we-are/carousel/landscape/1.html);
    }
}

@media (min-width:992px) {
    .who-we-are .section.why .frame-1 {
        background-image: url(../images/whoweare/1.gif);
    }

        .who-we-are .section.why .frame-1 .content {
            padding-top: 40px !important;
        }

            .who-we-are .section.why .frame-1 .content > .row {
                padding-top: 30px;
            }
}

.who-we-are .section.why .frame-1 .btn {
    display: none;
    position: absolute;
    bottom: 30.3vw;
    right: 19.4vw;
    z-index: 20;
}

.who-we-are .section.why .frame-1 .scroll.right {
    background-color: #FFFFFF;
    color: #dd5102;
}

.who-we-are .section.why .frame-1 h1 {
    background-image: url(../themes/ch2m/assets/images/who-we-are/carousel/wave-pattern.html);
    background-repeat: repeat-x;
    font-size: 40px !important;
    margin: -39px -100vw 0px !important;
    overflow: visible;
    padding: 39px 100vw;
}

.who-we-are .section.why .frame-2 {
    background-color: #EEEEF0;
    background-image: url(../themes/ch2m/assets/images/who-we-are/carousel/mobile/2.html);
    color: #4D4D4D;
}

@media (orientation:landscape) {
    .who-we-are .section.why .frame-2 {
        background-image: url(../themes/ch2m/assets/images/who-we-are/carousel/landscape/2.html);
    }
}

@media (max-width:767px) {
    .who-we-are .section.why .frame-2 {
        background-size: 100% auto !important;
    }
}

@media (min-width:992px) {
    .who-we-are .section.why .frame-2 {
        background-image: url(../themes/ch2m/assets/images/who-we-are/carousel/desktop/2.html);
    }
}

.who-we-are .section.why .frame-2 a.more {
    color: #4D4D4D;
}

    .who-we-are .section.why .frame-2 a.more .fa {
        background-color: #dd5102;
        color: #FFFFFF;
    }

.who-we-are .section.why .frame-2 .scroll.left {
    background-color: #dd5102;
    color: #FFFFFF;
}

.who-we-are .section.why .frame-2 .scroll.right {
    background-color: #2E3337;
    color: #FFFFFF;
}

.who-we-are .section.why .frame-2 p {
    max-width: 100%;
}

.who-we-are .section.why .frame-3 {
    background-color: #595B47;
    background-image: url(../themes/ch2m/assets/images/who-we-are/carousel/mobile/3.html);
    background-position: center bottom !important;
    background-size: cover !important;
}

@media (orientation:landscape) {
    .who-we-are .section.why .frame-3 {
        background-image: url(../themes/ch2m/assets/images/who-we-are/carousel/landscape/3.html);
    }
}

@media (min-width:992px) {
    .who-we-are .section.why .frame-3 {
        background-image: url(../themes/ch2m/assets/images/who-we-are/carousel/desktop/3.html);
    }
}

.who-we-are .section.why .frame-3 .scroll {
    background-color: #FFFFFF;
    color: #dd5102;
}

    .who-we-are .section.why .frame-3 .scroll.left {
        background-color: #E8E8E8;
    }

.who-we-are .section.why .frame-4 {
    background-color: #FFFFFF;
    background-image: url(../themes/ch2m/assets/images/who-we-are/carousel/mobile/4.html);
    background-position: center bottom !important;
    color: #4D4D4D;
}

    .who-we-are .section.why .frame-4 a.more {
        color: #4D4D4D;
    }

        .who-we-are .section.why .frame-4 a.more .fa {
            background-color: #dd5102;
            color: #FFFFFF;
        }

@media (orientation:landscape) {
    .who-we-are .section.why .frame-4 {
        background-image: url(../themes/ch2m/assets/images/who-we-are/carousel/landscape/4.html);
    }
}

@media (min-width:992px) {
    .who-we-are .section.why .frame-4 {
        background-image: url(../themes/ch2m/assets/images/who-we-are/carousel/desktop/4.html);
    }
}

.who-we-are .section.why .frame-4 .scroll.left {
    background-color: #2E3337;
    color: #FFFFFF;
}

.who-we-are .section.why .frame-4 .scroll.right {
    background-color: #ff9500;
}

.who-we-are .section.why .frame-5 {
    background-color: #ff9500;
    background-image: url(../themes/ch2m/assets/images/who-we-are/carousel/mobile/5.html);
}

@media (orientation:landscape) {
    .who-we-are .section.why .frame-5 {
        background-image: url(../themes/ch2m/assets/images/who-we-are/carousel/landscape/5.html);
    }
}

@media (min-width:992px) {
    .who-we-are .section.why .frame-5 {
        background-image: none;
    }
}

.who-we-are .section.why .frame-5 .centered {
    text-align: right;
    width: 97%;
}

.who-we-are .section.why .frame-5 svg {
    display: none;
    height: auto;
    margin: 0px 2.5vw 0px auto;
    max-width: 1350px;
    overflow: visible;
    width: 80%;
}

@media (min-width:992px) {
    .who-we-are .section.why .frame-5 svg {
        display: block;
        max-height: 900px;
    }
}

.who-we-are .section.why .frame-5 .content {
    position: relative;
}

    .who-we-are .section.why .frame-5 .content p {
        color: #FFFFFF;
        display: block !important;
        font-family: "Guardian Sans",Helvetica,Arial,sans-serif;
        max-width: 350px;
        position: relative;
        z-index: 9;
    }

        .who-we-are .section.why .frame-5 .content p strong {
            font-family: "Guardian Sans Bold",Helvetica,Arial,sans-serif;
        }

@media (min-width:992px) {
    .who-we-are .section.why .frame-5 .content p {
        bottom: 100px;
        position: absolute;
    }
}

.who-we-are .section.why .frame-5 .btn-black {
    display: inline-block;
    margin-top: 20px;
}

.who-we-are .section.why .scroll.left {
    background-color: #FFFFFF;
    color: #dd5102;
}

.who-we-are .section.why .down {
    background-color: #2E3337;
    color: #EE7800;
    transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -webkit-transform: translate3d(0,0,0);
    z-index: 11;
}

    .who-we-are .section.why .down:hover {
        height: 40px;
    }

.who-we-are .section.why #animatemeSlide1Cog, .who-we-are .section.why #animatemeSlide5Cog, .who-we-are .section.why #animatemeSlide5Cog2, .who-we-are .section.why #animatemeSlide5Eye {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-name: rotate;
    animation-name: rotate;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

.who-we-are .section.why #animatemeSlide5Eye {
    -webkit-animation-duration: 15s;
    animation-duration: 15s;
}

.who-we-are .section.what {
    background-color: #2E3337;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: contain;
    color: #FEFFF9;
    overflow: hidden;
    position: relative;
    transition: background-image 0.5s ease-in-out;
    min-height: 70vh;
}

    .who-we-are .section.what .row {
        margin-bottom: 30px;
        margin-top: 50px;
    }

        .who-we-are .section.what .row > div {
            padding-bottom: 40px;
            position: relative;
        }

@media (min-width:992px) {
    .who-we-are .section.what .row > div {
        padding-bottom: 0;
    }
}

.who-we-are .section.what .row > div a {
    color: inherit;
    text-decoration: none;
}

.who-we-are .section.what .row > div .fa {
    background-color: #FFFFFF;
    border-radius: 50%;
    color: #2E3337;
    font-size: 20px;
    height: 20px;
    margin-left: 20px;
    margin-top: -5px;
    opacity: 1;
    text-align: center;
    text-indent: 2px;
    top: 0px;
    transition: opacity 0.15s linear;
    vertical-align: middle;
    width: 20px;
}

.who-we-are .section.what .row > div .img {
    display: table;
    margin-bottom: 40px;
    opacity: 1;
    position: relative;
    transition: opacity 0.75s ease-in-out;
    width: auto;
}

    .who-we-are .section.what .row > div .img.fade-in {
        opacity: 0;
    }

    .who-we-are .section.what .row > div .img.delay-1 {
        transition-delay: 0.15s;
    }

    .who-we-are .section.what .row > div .img.delay-2 {
        transition-delay: 0.3s;
    }

    .who-we-are .section.what .row > div .img.delay-3 {
        transition-delay: 0.45s;
    }

    .who-we-are .section.what .row > div .img.delay-4 {
        transition-delay: 0.6s;
    }

    .who-we-are .section.what .row > div .img.delay-5 {
        transition-delay: 0.75s;
    }

    .who-we-are .section.what .row > div .img.delay-6 {
        transition-delay: 0.9s;
    }

    .who-we-are .section.what .row > div .img.delay-7 {
        transition-delay: 1.05s;
    }

    .who-we-are .section.what .row > div .img .circle {
        background-color: #EE7800;
        border-radius: 35px;
        display: inline-block;
        font-family: "Guardian Sans Light",Helvetica,Arial,sans-serif;
        font-size: 24px;
        height: 70px;
        left: 0;
        line-height: 73px;
        position: absolute;
        text-align: center;
        top: 70%;
        transition: all 0.15s ease-in-out;
        width: 70px;
    }

.who-we-are .section.what .row > div h3 {
    font-family: "Guardian Sans Light",Helvetica,Arial,sans-serif;
    font-size: 24px;
    font-weight: 100;
}

    .who-we-are .section.what .row > div h3, .who-we-are .section.what .row > div h3 + p {
        max-width: 350px;
    }

@media (min-width:992px) {
    .who-we-are .section.what .row > div .fa {
        opacity: 0;
    }

    .who-we-are .section.what .row > div:hover .fa {
        opacity: 1;
    }
}

.who-we-are .section.what .goals {
    display: none;
}

.who-we-are .section.what .down {
    background-color: #595D5E;
    color: #FFFFFF;
}

.who-we-are .section.history {
    background-color: #E8E8E8;
    min-height: 500px;
    overflow: hidden;
    padding-bottom: 50px;
    position: relative;
}

@media (min-width:992px) {
    .who-we-are .section.history {
        background-color: #FF9500;
        background-position: center center;
        background-repeat:no-repeat ;
        background-size: cover;
        min-height: 90vh;
        transition: background-image 0.5s;
    }

        .who-we-are .section.history.bg-1991 {
            background-image: url(../images/whoweare/bg/1946.jpg);
        }

        .who-we-are .section.history.bg-1996 {
            background-image: url(../images/whoweare/bg/1958.jpg);
        }

        .who-we-are .section.history.bg-2003 {
            background-image: url(../images/whoweare/bg/1965.jpg);
        }

        .who-we-are .section.history.bg-2005 {
            background-image: url(../images/whoweare/bg/1980.jpg);
        }

        .who-we-are .section.history.bg-2007 {
            background-image: url(../images/whoweare/bg/1991.jpg);
        }

        .who-we-are .section.history.bg-2009 {
            background-image: url(../images/whoweare/bg/1995.jpg);
        }

        .who-we-are .section.history.bg-2014 {
            background-image: url(../images/whoweare/bg/2005.jpg);
        }

        .who-we-are .section.history.bg-2015 {
            background-image: url(../images/whoweare/bg/1958.jpg);
        }
}

.who-we-are .section.history h1 {
    margin-bottom: 0;
    margin-top: 10px;
}

.who-we-are .section.history h2 {
    display: none;
    font-family: "Guardian Sans Light";
    font-weight: 100;
    margin-top: 5px;
}

@media (min-width:992px) {
    .who-we-are .section.history h2 {
        display: block;
    }
}

@media (min-width:992px) {
    .who-we-are .section.history .gubbins {
        color: #FFFFFF;
        margin-top: -170px;
        position: absolute;
        top: 50%;
    }
}

.who-we-are .section.history #accordion {
    margin: 20px -24px 0px;
    position: relative;
}

.who-we-are .section.history .vline {
    background-color: #FFFFFF;
    display: block;
    height: 500%;
    left: 34px;
    position: absolute;
    top: 5px;
    width: 2px;
}

@media (min-width:992px) {
    .who-we-are .section.history .vline {
        display: none;
    }
}

.who-we-are .section.history .panel {
    padding: 0px;
}

    .who-we-are .section.history .panel .panel-title {
        margin: 20px 0px 10px;
        position: relative;
    }

        .who-we-are .section.history .panel .panel-title h4 {
            margin: 0;
            position: relative;
        }

            .who-we-are .section.history .panel .panel-title h4 a {
                bottom: 0;
                color: #212121;
                display: block;
                left: 0;
                margin-left: 50px;
                right: 0;
                text-decoration: none;
                top: 0;
                width: 100%;
            }

            .who-we-are .section.history .panel .panel-title h4 span.milestone {
                display: block;
                font-family: "Guardian Sans Bold";
            }

            .who-we-are .section.history .panel .panel-title h4 span.title {
                display: block;
                font-family: "Guardian Sans Light";
                line-height: 24px;
                max-width: 70%;
            }

            .who-we-are .section.history .panel .panel-title h4 .fa {
                height: 20px;
                margin-top: -10px;
                position: absolute;
                right: 10px;
                top: 50%;
                text-align: center;
                transform: rotate(0deg);
                -moz-transform: rotate(0deg);
                -ms-transform: rotate(0deg);
                -webkit-transform: rotate(0deg);
                transition: all 0.5s;
                width: 20px;
            }

                .who-we-are .section.history .panel .panel-title h4 .fa.open {
                    transform: rotate(180deg);
                    -moz-transform: rotate(180deg);
                    -ms-transform: rotate(180deg);
                    -webkit-transform: rotate(180deg);
                }

        .who-we-are .section.history .panel .panel-title .dot {
            background-color: #000000;
            border-radius: 5px;
            height: 10px;
            left: 30px;
            position: absolute;
            top: 3px;
            width: 10px;
            z-index: 2;
        }

    .who-we-are .section.history .panel .panel-body {
        background-color: #FFFFFF;
        padding: 20px 30px;
    }

.who-we-are .section.history .line {
    background-image: url(../images/whoweare/timeline.png);
    background-position: left center;
    background-repeat: repeat-x;
    display: none;
    height: 90px;
    left: 0;
    margin-top: -43px;
    position: absolute;
    right: 0;
    top: 50%;
}

@media (min-width:992px) {
    .who-we-are .section.history .line {
        display: block;
    }
}

.who-we-are .section.history .timeline {
    font-size: 0;
    margin: 0px auto;
    max-width: 1282px;
    white-space: nowrap;
    width: 100%;
}

    .who-we-are .section.history .timeline .spacer {
        display: inline-block;
        height: 90px;
        position: relative;
        text-align: center;
        white-space: nowrap;
        width: 12.500%;
    }

        .who-we-are .section.history .timeline .spacer .milestone {
            background-color: #000000;
            border-radius: 45px;
            color: #FFFFFF;
            cursor: pointer;
            font-family: 'Guardian Sans Bold',sans-serif;
            font-size: 22px;
            font-weight: 700;
            height: 90px;
            line-height: 90px;
            margin-right: 20px;
            text-align: center;
            transition: all 0.25s linear;
            width: 90px;
            left: 50%;
            margin-left: -45px;
            position: absolute;
            top: 0px;
        }

            .who-we-are .section.history .timeline .spacer .milestone:hover {
                background-color: #ff9500;
                border-radius: 60px;
                height: 120px;
                margin-left: -60px;
                line-height: 120px;
                top: -15px;
                width: 120px;
            }

            .who-we-are .section.history .timeline .spacer .milestone.fade-in {
                opacity: 0;
            }

            .who-we-are .section.history .timeline .spacer .milestone.delay-1 {
                transition-delay: 0.15s;
            }

            .who-we-are .section.history .timeline .spacer .milestone.delay-2 {
                transition-delay: 0.3s;
            }

            .who-we-are .section.history .timeline .spacer .milestone.delay-3 {
                transition-delay: 0.45s;
            }

            .who-we-are .section.history .timeline .spacer .milestone.delay-4 {
                transition-delay: 0.6s;
            }

            .who-we-are .section.history .timeline .spacer .milestone.delay-5 {
                transition-delay: 0.75s;
            }

            .who-we-are .section.history .timeline .spacer .milestone.delay-6 {
                transition-delay: 0.9s;
            }

            .who-we-are .section.history .timeline .spacer .milestone.delay-7 {
                transition-delay: 1.05s;
            }

.who-we-are .section.history .modal .modal-content {
    padding: 0;
}

    .who-we-are .section.history .modal .modal-content p {
        max-width: initial;
    }

.who-we-are .section.history .modal .carousel .carousel-inner {
    height: 100%;
    overflow: auto;
    overflow-x: hidden;
    overflow-y: visible;
    position: relative;
}

    .who-we-are .section.history .modal .carousel .carousel-inner .item {
        min-height: 500px;
        padding: 40px;
    }

.who-we-are .section.history .modal .control {
    background-color: #FFFFFF;
    color: #dd5102;
    cursor: pointer;
    height: 50px;
    line-height: 25px;
    margin-top: -25px;
    overflow: hidden;
    position: absolute;
    top: 50%;
    transition: all 0.25s ease-out;
    white-space: nowrap;
    width: 24px;
}

    .who-we-are .section.history .modal .control.left {
        border-bottom-left-radius: 25px;
        border-top-left-radius: 25px;
        left: 0;
        margin-left: -24px;
        text-align: left;
    }

        .who-we-are .section.history .modal .control.left:hover {
            margin-left: -70px;
            width: 70px;
        }

    .who-we-are .section.history .modal .control.right {
        border-bottom-right-radius: 25px;
        border-top-right-radius: 25px;
        right: 0;
        margin-right: -24px;
        text-align: right;
    }

        .who-we-are .section.history .modal .control.right:hover {
            margin-right: -70px;
            width: 70px;
        }

        .who-we-are .section.history .modal .control.right .label {
            margin-left: -70px;
        }

    .who-we-are .section.history .modal .control .fa {
        font-size: 35px;
        line-height: 50px;
        text-align: center;
        vertical-align: middle;
        width: 25px;
    }

    .who-we-are .section.history .modal .control .label {
        display: inline-block;
        padding: 0px 3px;
        vertical-align: middle;
    }

.who-we-are .section.history .down {
    background-color: #FFFFFF;
    color: #ff9500;
}

.who-we-are .section.leadership {
    min-height: 70vh;
    overflow: hidden;
}

    .who-we-are .section.leadership div.control {
        cursor: pointer;
        display: block;
        height: 50px;
        font-size: 50px;
        margin-top: -25px;
        opacity: 1;
        position: absolute;
        top: 50vh;
    }

        .who-we-are .section.leadership div.control.left {
            left: 10px;
        }

        .who-we-are .section.leadership div.control.right {
            right: 10px;
        }

@media (min-width:1200px) {
    .who-we-are .section.leadership div.control {
        display: none;
    }
}

.who-we-are .section.leadership a.more {
    color: #dd5102;
}

    .who-we-are .section.leadership a.more .fa-angle-right {
        background-color: #dd5102;
        color: #FFFFFF;
    }

.who-we-are .section.leadership p.intro {
    margin-bottom: 40px;
}

.who-we-are .section.leadership .lineup {
    min-height: 60vh;
    overflow: hidden;
    width: 100%;
}

    .who-we-are .section.leadership .lineup .leaders {
        bottom: 0;
        font-size: 0;
        height: 100%;
        left: 0;
        position: relative;
        right: auto;
        top: 0;
        transition: left 0.5s ease-in-out;
        vertical-align: top;
        white-space: nowrap;
        width: 710%;
    }

        .who-we-are .section.leadership .lineup .leaders .leader {
            display: block;
            float: left;
            position: relative;
            white-space: normal;
            width: 14.2857%;
        }

            .who-we-are .section.leadership .lineup .leaders .leader .hitbox {
                cursor: pointer;
                display: none;
                height: 250px;
                left: 0;
                position: absolute;
                right: 0;
                top: 0;
                width: auto;
                z-index: 10;
            }

            .who-we-are .section.leadership .lineup .leaders .leader div.img {
                border-bottom: 2px solid #dd5102;
                display: inline-block;
                height: 250px;
                text-align: center;
                width: 100%;
            }

                .who-we-are .section.leadership .lineup .leaders .leader div.img img {
                    display: inline-block;
                    margin: 0px auto;
                    max-width: 99%;
                    transition: all 0.15s linear;
                    vertical-align: bottom;
                }

                .who-we-are .section.leadership .lineup .leaders .leader div.img:before {
                    content: '';
                    display: inline-block;
                    height: 100%;
                    width: 1px;
                }

            .who-we-are .section.leadership .lineup .leaders .leader h3, .who-we-are .section.leadership .lineup .leaders .leader h4 {
                margin-left: 10px;
                margin-right: 10px;
                opacity: 1;
                -webkit-transform: translateZ(0);
            }

            .who-we-are .section.leadership .lineup .leaders .leader h3 {
                border-bottom: 2px solid #dd5102;
                color: #4D4D4D !important;
                font-family: "Guardian Sans Bold",Helvetica,Arial,sans-serif;
                font-size: 18px;
                padding-bottom: 15px;
            }

                .who-we-are .section.leadership .lineup .leaders .leader h3 a {
                    color: #4D4D4D;
                    display: block;
                    width: 100%;
                }

                .who-we-are .section.leadership .lineup .leaders .leader h3 span.surname {
                    font-family: "Guardian Sans Light",Helvetica,Arial,sans-serif;
                }

@media (min-width:1200px) {
    .who-we-are .section.leadership .lineup .leaders .leader h3 .fa {
        margin-top: 10px;
    }
}

.who-we-are .section.leadership .lineup .leaders .leader h4 {
    font-family: "Guardian Sans Light",Helvetica,Arial,sans-serif;
    line-height: 1.4;
    margin-bottom: 30px;
    padding-top: 10px;
}

.who-we-are .section.leadership .lineup .leaders .leader .btn-purple {
    display: block;
    margin: 0px auto;
    width: 90%;
}

@media (min-width:768px) {
    .who-we-are .section.leadership .lineup .leaders {
        width: 234%;
    }
}

@media (min-width:1200px) {
    .who-we-are .section.leadership .lineup .leaders {
        left: 0 !important;
        width: 100%;
    }

        .who-we-are .section.leadership .lineup .leaders .leader .hitbox {
            display: block;
        }

        .who-we-are .section.leadership .lineup .leaders .leader div.img {
            cursor: pointer;
            position: relative;
        }

            .who-we-are .section.leadership .lineup .leaders .leader div.img img {
                bottom: 0;
                left: 0;
                max-width: initial;
                position: absolute;
            }
}

@media (min-width:1200px) and (min-width:1200px) {
    .who-we-are .section.leadership .lineup .leaders .leader div.img img {
        height: 222px !important;
        max-width: 284px !important;
    }
}

@media (min-width:1200px) {
    .who-we-are .section.leadership .lineup .leaders .leader div.img:before {
        display: none;
    }

    .who-we-are .section.leadership .lineup .leaders .leader[data-name="jacqueline"] img {
        z-index: 4;
    }

    .who-we-are .section.leadership .lineup .leaders .leader[data-name="lisa"] img {
        left: -10% !important;
        z-index: 3;
    }

    .who-we-are .section.leadership .lineup .leaders .leader[data-name="mark"] img {
        left: -33% !important;
        z-index: 2;
    }
}

@media (min-width:1200px) and (min-width:1200px) {
    .who-we-are .section.leadership .lineup .leaders .leader[data-name="mark"] img {
        height: 222px !important;
        max-width: 282px !important;
    }
}

@media (min-width:1200px) {
    .who-we-are .section.leadership .lineup .leaders .leader[data-name="neil"] img {
        left: -25% !important;
        z-index: 4;
    }
}

@media (min-width:1200px) and (min-width:1200px) {
    .who-we-are .section.leadership .lineup .leaders .leader[data-name="neil"] img {
        height: 222px !important;
        max-width: 284px !important;
        width: 284px !important;
    }
}

@media (min-width:1200px) {
    .who-we-are .section.leadership .lineup .leaders .leader[data-name="elisa"] img {
        left: 7% !important;
        z-index: 2;
    }
}

@media (min-width:1200px) and (min-width:1200px) {
    .who-we-are .section.leadership .lineup .leaders .leader[data-name="elisa"] img {
        height: 222px !important;
        max-width: 183px !important;
    }
}

@media (min-width:1200px) {
    .who-we-are .section.leadership .lineup .leaders .leader[data-name="britt"] img {
        left: auto !important;
        right: -7% !important;
    }
}

@media (min-width:1200px) and (min-width:1200px) {
    .who-we-are .section.leadership .lineup .leaders .leader[data-name="britt"] img {
        height: 222px !important;
        width: 196px !important;
    }
}

@media (min-width:1200px) {
    .who-we-are .section.leadership .lineup .leaders .leader h3, .who-we-are .section.leadership .lineup .leaders .leader h4, .who-we-are .section.leadership .lineup .leaders .leader .btn-purple {
        opacity: 0;
        transition: opacity 0.15s linear;
    }

    .who-we-are .section.leadership .lineup .leaders .leader h3 {
        margin-bottom: 10px;
    }

        .who-we-are .section.leadership .lineup .leaders .leader h3 span {
            display: block;
        }

    .who-we-are .section.leadership .lineup .leaders .leader.active h3, .who-we-are .section.leadership .lineup .leaders .leader.active h4, .who-we-are .section.leadership .lineup .leaders .leader.active .btn-purple {
        opacity: 1;
    }

    .who-we-are .section.leadership .lineup .leaders .leader.active img {
        filter: brightness(1);
        -moz-filter: brightness(1);
        -ms-filter: brightness(1);
        -o-filter: brightness(1);
        -webkit-filter: brightness(1);
    }

    .who-we-are .section.leadership .lineup .leaders.selected img {
        filter: brightness(0.6);
        -moz-filter: brightness(0.6);
        -ms-filter: brightness(0.6);
        -o-filter: brightness(0.6);
        -webkit-filter: brightness(0.6);
    }
}

.who-we-are .section.leadership .bio {
    display: none !important;
}

    .who-we-are .section.leadership .bio [data-name] {
        display: none;
    }

        .who-we-are .section.leadership .bio [data-name].active {
            display: block;
        }

.who-we-are .section.leadership h4 {
    font-family: "Guardian Sans Bold",Helvetica,Arial,sans-serif;
    font-size: 15px;
    font-weight: 700;
}

.who-we-are .section.leadership .down {
    background-color: #E8E8E8;
    color: #2E3337;
}

.who-we-are .section.foundation {
    background-color: #FFFFFF;
    overflow: hidden;
    padding-bottom: 0px;
}

    .who-we-are .section.foundation .btn-purple {
        margin-bottom: 0;
    }

    .who-we-are .section.foundation .down {
        background-color: #3b4b58;
        color: #FFFFFF;
    }

    .who-we-are .section.foundation .image-01 {
        background-image: url(../themes/ch2m/assets/images/who-we-are/foundation/1.html);
    }

    .who-we-are .section.foundation .image-03 {
        background-image: url(../themes/ch2m/assets/images/who-we-are/foundation/3.html);
    }

    .who-we-are .section.foundation .image-04 {
        background-image: url(../themes/ch2m/assets/images/who-we-are/foundation/4.html);
    }

    .who-we-are .section.foundation .image-05 {
        background-image: url(../themes/ch2m/assets/images/who-we-are/foundation/5.html);
    }

    .who-we-are .section.foundation .image-06 {
        background-image: url(../themes/ch2m/assets/images/who-we-are/foundation/6.html);
    }

    .who-we-are .section.foundation .image-07 {
        background-image: url(../themes/ch2m/assets/images/who-we-are/foundation/7.html);
    }

    .who-we-are .section.foundation .image-08 {
        background-image: url(../themes/ch2m/assets/images/who-we-are/foundation/8.html);
    }

    .who-we-are .section.foundation .image-09 {
        background-image: url(../themes/ch2m/assets/images/who-we-are/foundation/9.html);
    }

    .who-we-are .section.foundation .image-10 {
        background-image: url(../themes/ch2m/assets/images/who-we-are/foundation/10.html);
    }

    .who-we-are .section.foundation .image-12 {
        background-image: url(../themes/ch2m/assets/images/who-we-are/foundation/12.html);
    }

    .who-we-are .section.foundation h1 {
        margin-bottom: 10px;
        margin-top: 15px;
    }

    .who-we-are .section.foundation p {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 0;
        max-width: 500px;
    }

    .who-we-are .section.foundation .tiles {
        margin: -1px 0px;
        width: 100vw;
    }

        .who-we-are .section.foundation .tiles > div {
            background-color: #2E3337;
            background-position: center top;
            background-repeat: no-repeat;
            background-size: cover;
            border: 1px solid #FFFFFF;
            min-height: 56vw;
            overflow: hidden;
            padding: 10px 20px;
            width: 100%;
        }

            .who-we-are .section.foundation .tiles > div.intro {
                background-color: #E8E8E8;
                min-height: 33.4vh;
            }

            .who-we-are .section.foundation .tiles > div.quote {
                background-color: #000000;
                color: #FFFFFF;
                min-height: 33.4vh;
            }

                .who-we-are .section.foundation .tiles > div.quote .btn-purple {
                    margin-bottom: 20px;
                }

@media (min-width:992px) {
    .who-we-are .section.foundation .tiles > div.quote .btn-purple {
        margin-bottom: 0px;
    }
}

@media (min-width:992px) {
    .who-we-are .section.foundation .tiles > div {
        max-width: 600px;
        min-height: 33.4vh !important;
        width: 50vw;
    }
}

@media (min-width:1200px) {
    .who-we-are .section.foundation .tiles {
        left: 50%;
        margin-left: -1200px;
        position: relative;
        width: 2440px;
    }

        .who-we-are .section.foundation .tiles > div {
            width: 600px;
        }
}

.who-we-are .section.facts {
    background-color: #2E3337;
    background-image: url(../images/whoweare/panorama.jpg);
    color: #FFFFFF;
    overflow: hidden;
}

    .who-we-are .section.facts .wrap {
        position: relative;
    }

    .who-we-are .section.facts div.control {
        cursor: pointer;
        display: block;
        height: 50px;
        font-size: 50px;
        margin-top: -25px;
        opacity: 1;
        position: absolute;
        top: 50%;
    }

        .who-we-are .section.facts div.control.left {
            left: 10px;
        }

        .who-we-are .section.facts div.control.right {
            right: 10px;
        }

@media (min-width:768px) {
    .who-we-are .section.facts div.control {
        display: none;
    }

    .who-we-are .section.facts div[class^="col-sm-"]:nth-child(even) div.circle {
        margin-left: 5px;
        margin-right: auto;
    }

    .who-we-are .section.facts div[class^="col-sm-"]:nth-child(odd) div.circle {
        margin-left: auto;
        margin-right: 5px;
    }
}

@media (max-width:767px) {
    .who-we-are .section.facts .content {
        padding-left: 0;
        padding-right: 0;
    }

    .who-we-are .section.facts h1 {
        padding-left: 24px;
    }

    .who-we-are .section.facts .row {
        left: 0%;
        margin-left: 0;
        margin-right: 0;
        overflow: hidden;
        position: relative;
        transition: left 0.5s ease-in-out;
        white-space: nowrap;
        width: 400%;
    }

        .who-we-are .section.facts .row div[class^="col-sm-"] {
            display: inline-block;
            margin: 0px;
            padding: 0;
            width: 25%;
        }

        .who-we-are .section.facts .row:before {
            display: none;
        }
}

.who-we-are .section.facts .btn-purple {
    background-color: #FFFFFF;
    color: #dd5102 !important;
    font-family: "Guardian Sans";
    text-align: center;
}

.who-we-are .section.facts div.circle {
    background-color: #ff9500;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 30vw;
    color: #FFFFFF;
    display: block;
    height: 60vw;
    margin: 20px auto;
    position: relative;
    white-space: normal;
    width: 60vw;
}

@media (min-width:768px) {
    .who-we-are .section.facts div.circle {
        height: 20vw;
        max-height: 400px;
        max-width: 400px;
        width: 20vw;
    }
}

.who-we-are .section.facts div.circle .centered {
    font-size: 4vw;
    padding: 15px;
    text-align: center;
    width: 97%;
}

    .who-we-are .section.facts div.circle .centered .count {
        display: block;
        font-size: 8vw;
        text-align: center;
    }

@media (min-width:768px) {
    .who-we-are .section.facts div.circle .centered {
        font-size: 1.35vw;
    }

        .who-we-are .section.facts div.circle .centered .count {
            font-size: 4vw;
        }
}

.who-we-are .section.facts div.circle.more {
    background-color: #dd5102;
}

.who-we-are .section.facts div.circle .inner {
    border: 1px solid #E8E8E8;
    border-radius: 50%;
    height: 80%;
    margin: 10%;
    position: relative;
    width: 80%;
}

.who-we-are .section.facts .down {
    background-color: #FFFFFF;
    color: #2E3337;
}

.who-we-are .section.explore {
    min-height: 70vh;
}

    .who-we-are .section.explore .row {
        text-align: center;
    }

    .who-we-are .section.explore div.img {
        position: relative;
        width: auto;
    }

        .who-we-are .section.explore div.img h3 {
            bottom: 20px;
            color: #FFFFFF;
            font-family: "Guardian Sans Light",Helvetica,Arial,sans-serif;
            font-size: 32px;
            font-weight: 100;
            left: 0;
            margin: 0px auto;
            position: absolute;
            right: 0;
            text-align: center;
            text-transform: uppercase;
            z-index: 10;
        }

    .who-we-are .section.explore p {
        color: #2E3337;
        font-family: "Guardian Sans Light",Helvetica,Arial,sans-serif;
        font-size: 20px;
        font-weight: 100;
        line-height: 25px;
        text-align: center;
        margin: 40px auto 10px;
        width: 80%;
    }

.who-we-are .section.who h1 {
    padding-top: 40px;
    font-size: 58px;
}

@media (max-width:961px) {
    .who > .container {
        margin-left: 2%;
        margin-right: 2%;
    }
}

@media (max-width:767px) {
    .who > .container {
        margin-left: 6%;
        margin-right: 6%;
    }
}

@media (min-width:768px) {
    .who-we-are .section.explore p {
        height: 100px;
    }
}

.who-we-are .section.explore .btn-purple {
    margin: 0px auto 40px;
    text-align: center;
}

@media (min-width:768px) {
    .who-we-are .section.explore .btn-purple {
        margin-bottom: 20px;
    }
}

@media only screen and (min-width:705px) and (max-width:767px) {
    .who-we-are .section.what .row > div h3, .who-we-are .section.what .row > div h3 + p {
        max-width: 325px;
        position: absolute;
        left: 50%;
        bottom: 265px;
    }

    .who-we-are .section p {
        top: 125px;
    }
}

.section.what img {
    width: 100%;
}

@media only screen and (max-width:704px) {
    .who-we-are .section.what .row > div h3, .who-we-are .section.what .row > div h3 + p, .who-we-are .section.what .row > div .img {
        margin-left: auto;
        margin-right: auto;
    }
}

.who-we-are .section.leadership {
    min-height: 70px;
}

    .who-we-are .section.leadership .lineup {
        min-height: 60px;
    }

    .who-we-are .section.leadership div.control {
        top: 0;
        margin-right: 2%;
    }

.section.leadership .left > .fa-angle-left, .section.leadership .right > .fa-angle-right {
    position: absolute;
    top: 385px;
}

@media only screen and (min-width:415px) and (max-width:430px) {
    .section.leadership .btn-purple {
        position: absolute;
        top: 15%;
    }

    .section.leadership .intro {
        padding-top: 40px;
    }
}

@media only screen and (min-width:376px) and (max-width:414px) {
    .section.leadership .btn-purple {
        position: absolute;
        top: 15%;
    }

    .section.leadership .intro {
        padding-top: 40px;
    }

    .section.leadership .left > .fa-angle-left, .section.leadership .right > .fa-angle-right {
        top: 460px;
    }
}

@media only screen and (min-width:220px) and (max-width:375px) {
    .section.leadership .btn-purple {
        position: absolute;
        top: 14%;
    }

    .section.leadership .intro {
        padding-top: 40px;
    }

    .section.leadership .left > .fa-angle-left, .section.leadership .right > .fa-angle-right {
        top: 490px;
    }

    .who-we-are .section.leadership div.control {
        margin-right: 6%;
    }
}
