﻿@charset "UTF-8";
/**
 * Site dependencies
 */
/*
 * Mixins, helpers and functions
 * =================================
 * Most CSS3 vendor prefixed items have a mixin,
 * but we should not need them if autoprefixer is being used
 * See mixins/css3.scss for the full list
 */
/**
 * Convert pixels to ems
 * For a relational value of 12px write em(12) when the parent is 16px
 * If the parent is another value say 24px write em(12, 24)
 *
 * Usage:
 * font-size : em(12);
 * font-size : em(12, 24);
 */
/**
 * Convert pixels to rems
 * For a relational value of 12px write rem(12) when the parent is 16px
 * If the parent is another value say 24px write rem(12, 24)
 *
 * Usage:
 * font-size : rem(12);
 * font-size : rem(12, 24);
 */
/**
 * Strips the units from a value. e.g. 12px -> 12
 * Usage: strip-units(400px)
 */
/* ==========================================================================
   Sass Mixins
   * Vendor Prefixer
   * Responsive
   * CSS3
   * Utility Mixins
   * hiDpi
   * Forms
   ========================================================================== */
/* Vendor prefixer */
/* Responsive mixins */
/* ==========================================================================
   Responsive media query mixins
   * These are used so that we can define separate media-query content
     for <IE9 and browsers with support for media queries
   * These are directly related to the global $fix-mqs var defined in
     kickoff-old-ie.scss
   * kickoff-old-ie.scss ignores any content in media-queries with values less
     than the $fix-mqs var value
   ========================================================================== */
/**
 * This is needed because browsers do not calculate em-based
 * media queries correctly.
 *
 * See below for an explanation:
 * http://www.filamentgroup.com/lab/how-we-learned-to-leave-body-font-size-alone.html
 *
 */
/*
   Min-width media query:
   * Equivalent to: @media screen and (min-width: 20em) { ... }
   * Usage: @include respond-min(500) { ... };
   * Argument is a pixel value WITHOUT a unit of measurement
   ========================================================================== */
/*
   Max-width media query:
   * Equivalent to: @media screen and (max-width: 20em) { ... }
   * Usage: @include respond-max(500) { ... };
   * Argument is a pixel value WITHOUT a unit of measurement
   ========================================================================== */
/*
   Min-max-width media query:
   * Equivalent to: @media screen and (min-width: 10em) and (max-width: 20em) { ... }
   * Usage: @include respond-min-max(500, 600) { ... };
   * Arguments are pixel values WITHOUT a unit of measurement
   ========================================================================== */
/*
   Old IE specific mixin
   * Only use this content if we're dealing with old IE
   * Usage: @include oldie() { ... }
   ========================================================================== */
/* CSS3 */
/**
 * Linear Gradient
 * Usage: @include linear-gradient(#000, #BADA55, horizontal, true);
 */
/* ==========================================================================
   Radial Gradient
   Usage: @include radial-gradient(#000, #BADA55, true);
   ========================================================================== */
/**
 * vertical-center
 * Vertically center any element. Needs support for CSS tranforms.
 * Usage:
 * @include vertical-center;
 */
/**
 * Utility mixins
 * Clearfix, REM + fallbacks, @font-face, sizing shortcuts, other helpers
 */
/* ==========================================================================
   Utility Mixins
   ========================================================================== */
/* ==========================================================================
   Typography mixins
   ========================================================================== */
/* HiDPI */
/**
 * HiDPI mixin.
 * @include hidpi-min() { ... };
 * Default value set to 1.3 to target Google Nexus 7 (http://bjango.com/articles/min-device-pixel-ratio/)
 */
/**
 * Hidpi with a minimum width media query
 * @include hidpi-min($bp-mid, 1.5) { ... };
 */
/**
 * Hidpi with a max width media query
 * @include hidpi-max($bp-mid, 1.3) { ... };
 */
/* FORMS */
/**
 * Core variables
 * =================================
 * Edit your color palette and app vars before your begin
 */
/**
 * Colour palette (yeah we're British!)
 */
/**
 * Forms
 */
/**
 * Variables
 * =================================
 * Typography
 * Breakpoints
 * Paths
 * Grid setup
 * Colour palette
 * Components
 */
/**
 * Typography
 * =================================
 * Base sizes:
 * Set this in pixels (but do not add px),
 * the font-size mixin will convert to REMS
 */
/* Font stacks */
/**
 *  Breakpoints
 * =================================
 * There are no common breakpoints so these are just a suggestions
 * You'll need to define your own breakpoints to suit your design
 */
/**
 * Path vars
 */
/**
 * Layout setup
 * Settings here override & affect the output in scss/partials/components/grid.scss
 */
/**
 * Tables
 * Customizes the `.table` component with basic values, each used across all table variations.
 */
/**
 * App-specific variables
 * =================================
 * Add common vars below here
 */
/* CSS Reset  */
/**
 * Kickoff reset
 */
html {
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

@font-face {
    font-family: "ITCFranklinGothicLTW04-Book";
    src: url("/fonts/ITCFranklinGothicLTW04-Book.eot?#iefix");
    src: url("/fonts/ITCFranklinGothicLTW04-Book.eot?#iefix") format("eot"),url("/fonts/ITCFranklinGothicLTW04-Book.woff2") format("woff2"),url("/fonts/ITCFranklinGothicLTW04-Book.woff") format("woff"),url("/fonts/ITCFranklinGothicLTW04-Book.ttf") format("truetype");
}

@font-face {
    font-family: "ITCFranklinGothicLTW04-Demi";
    src: url("/fonts/ITCFranklinGothicLTW04-Demi.eot?#iefix");
    src: url("/fonts/ITCFranklinGothicLTW04-Demi.eot?#iefix") format("eot"),url("/fonts/ITCFranklinGothicLTW04-Demi.woff2") format("woff2"),url("/fonts/ITCFranklinGothicLTW04-Demi.woff") format("woff"),url("/fonts/ITCFranklinGothicLTW04-Demi.ttf") format("truetype");
}

/**
 * Normalize - CSS reset
 * http://github.com/necolas/normalize.css
 * Kickoff uses an amended version of this file.
 */
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary, main {
    display: block;
}

audio, canvas, video {
    display: inline-block;
}

    audio:not([controls]) {
        display: none;
        height: 0;
    }

[hidden],
template {
    display: none;
}

/* ============ */
/* === BASE === */
/* ============ */
body {
    margin: 0;
}

a {
    background: transparent;
}

    a:focus {
        outline: thin dotted;
    }

    a:hover, a:active {
        outline: 0;
    }

figure {
    margin: 0;
}

button,
input {
    line-height: normal;
}

    input[type="search"] {
        -webkit-appearance: textfield;
    }

        input[type="search"]::-webkit-search-decoration,
        input[type="search"]::-webkit-search-cancel-button {
            -webkit-appearance: none;
        }

    button::-moz-focus-inner,
    input::-moz-focus-inner {
        border: 0;
        padding: 0;
    }

textarea {
    overflow: auto;
    vertical-align: top;
}

/* Global typography styles */
/**
 * Typography
 * =================================
 * Base
 * Paragraphs
 * Headings
 * Links
 * Lists
 * Definition lists
 * Blockquotes
 * Misc
 * Utilities
 *
 * Body font size, leadings etc have been set in _variables.scss
 * Resources:
 * http://www.gridlover.net/
 * http://modularscale.com/
 * http://lamb.cc/typograph/
 *
 */
html {
    font-size: 20px;
    -webkit-text-size-adjust: 100%;
}

@media screen and (min-width: 47.9375em) {
    html {
        font-size: 22px;
    }
}

body {
    font-family: "ITCFranklinGothicLTW04-Book", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 22px;
    font-size: 1rem;
    line-height: 1.81818181;
    color: #666;
}

/**
 * Paragraphs
 */
p {
    font-family: "ITCFranklinGothicLTW04-Book", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 22px;
    font-size: 1rem;
    margin-top: 0;
    margin-bottom: 40px;
    letter-spacing: 0.01em;
}

/**
 * Headings
 */
h1, h2, h3, h4, h5, h6 {
    color: #000;
    margin: 0;
    font-family: inherit;
    font-weight: 400;
    line-height: 1.2;
    text-rendering: optimizelegibility;
}

    h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
        font-weight: normal;
    }

h1, .h1, .alpha {
    font-size: 56px;
    font-size: 2.5rem;
    margin-top: 0;
    letter-spacing: 0.01em;
}

    h1 small, .h1 small, .alpha small {
        font-size: 32px;
        font-size: 1.4545454545rem;
        line-height: 46px;
        line-height: 2.0909090909rem;
    }

h2, .h2, .beta {
    font-size: 46px;
    font-size: 2.0909090909rem;
    margin-top: 0;
    margin-bottom: 40px;
}

h3, .h3, .gamma {
    font-size: 34px;
    font-size: 1.5454545455rem;
    margin-top: 0;
    margin-bottom: 40px;
}

    h3 small, .h3 small, .gamma small {
        font-size: 24px;
        font-size: 1.0909090909rem;
        line-height: 44px;
        line-height: 2rem;
    }

h4, .h4, .delta,
h5, .h5, .epsilon,
h6, .h6, .zeta {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 18px;
    font-size: 0.8181818182rem;
}

h4, .h4, .delta {
    font-size: 22px;
    font-size: 1rem;
}

h6, .h6, .zeta {
    text-transform: uppercase;
}

* + h1, * + .h1, * + .alpha,
* + h2, * + .h2, * + .beta,
* + h3, * + .h3, * + .gamma,
* + h4, * + .h4, * + .delta {
    margin-top: 30px;
}

.carousel h1 {
    margin-top: 0;
}

.banner h1 {
    margin-top: 40px;
}

small {
    font-size: 80%;
}

/**
 * Links
 */
a, a:link {
    color: #e50654;
    text-decoration: none;
}

    a:visited {
        color: #e50654;
        text-decoration: none;
    }

    a:hover, a:focus {
        color: #000;
    }

    a:active {
        color: #000;
    }

/**
 * Lists
 */
ul {
    list-style-type: disc;
}

ol {
    list-style-type: decimal;
}

li strong {
    font-weight: 600;
}

li > p {
    font-weight:normal;
    color: #666;
}

li > p {
    font-weight:normal;
}

ul, ol {
    padding: 0;
    margin: 0 0 40px 0;
}

    ul ul,
    ul ol, ol ul,
    ol ol {
        margin-left: 80px;
    }

    ul ul, ol ul {
        list-style-type: circle;
    }

        ul ul ul, ol ul ul {
            list-style-type: square;
        }

    ul ol, ol ol {
        list-style-type: upper-roman;
    }

        ul ol ol, ol ol ol {
            list-style-type: lower-roman;
        }

    ul ul, ul ol, ol ul, ol ol {
        margin-bottom: 0;
    }

/**
 * Unstyled lists
 */
.unstyled, .tabs, .l-tabsContent,
nav ul, nav ol {
    margin: 0;
    padding: 0;
    list-style: none;
    list-style-image: none;
}

/**
 * Definition lists
 */
dl {
    margin-bottom: 40px;
}

dt {
    font-weight: bold;
}

dd {
    margin-left: 40px;
}

.dl-horizontal:after {
    content: "";
    display: table;
    clear: both;
}

.dl-horizontal dt {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    float: left;
    clear: left;
    width: 220px;
    text-align: right;
}

.dl-horizontal dd {
    margin-left: 240px;
}

/**
 * Miscellaneous
 */
hr {
    margin: 40px 0;
    border: 0;
    border-top: 2px solid #cccccc;
}

strong, b {
    font-weight: 400;
    color: #000;
}

em, i {
    font-style: italic;
}

abbr[title] {
    border-bottom: 1px dotted #ddd;
    cursor: help;
}

/**
 * Blockquotes
 */
blockquote {
    color: #e50654;
    margin: 80px 0;
    padding: 40px 0;
    position: relative;
    text-align: center;
}

    blockquote p {
        margin-bottom: 20px;
        font-size: 22px;
        font-size: 1rem;
        line-height: 34px;
        line-height: 1.5454545455rem;
        font-weight: 400;
    }

    blockquote cite {
        color: #000;
        font-size: 22px;
        font-size: 1rem;
        line-height: 40px;
        line-height: 1.8181818182rem;
        font-weight: 500;
        letter-spacing: 0.07em;
        text-transform: uppercase;
    }

    blockquote small {
        display: block;
        /*color: #b3b3b3;*/
        color: #000000;
    }

    /*blockquote small:before {
            content: '\2014 \00A0';
        }*/

    blockquote:before, blockquote:after {
        display: block;
        content: ' ';
        border-top: 2px solid #cccccc;
        position: absolute;
        left: 43%;
        width: 14%;
    }

    blockquote:before {
        top: 0;
    }

    blockquote:after {
        bottom: 0;
    }

    blockquote:first-child {
        margin-top: 40px;
    }

q:before, q:after {
    content: "";
}

address {
    display: block;
    margin-bottom: 40px;
    font-style: normal;
}

cite {
    font-style: normal;
}

dfn {
    font-style: italic;
}

mark {
    background: #f1c40f;
    padding: 2px 4px;
    border-radius: 3px;
}

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -.5em;
}

sub {
    bottom: -.25em;
}

samp {
    font-family: Menlo, Monaco, "Courier New", monospace;
}

/**
 * Utilities
 */
.text-centre,
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

::-moz-selection {
    color: #fff;
    background: #000;
    text-shadow: none;
}

::selection {
    color: #fff;
    background: #000;
    text-shadow: none;
}

.text-lead {
    color: #000;
    font-size: 31px;
    font-size: 1.4090909091rem;
    line-height: 50px;
    line-height: 2.2727272727rem;
    font-weight: 400;
    text-align: center;
    letter-spacing: 0.07em;
    padding: 0 0 10px 0;
}

.text-loose, .text-loose p {
    letter-spacing: 0.07em;
}

.text-caption {
    font-size: 18px;
    font-size: 0.8181818182rem;
    line-height: 26px;
    line-height: 1.1818181818rem;
}

.contact-list li {
    list-style: none;
}

.text-tag {
    font-size: 14px;
    font-size: 0.6363636364rem;
    line-height: 35px;
    line-height: 1.5909090909rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

    .text-tag, .text-tag:link {
        text-decoration: underline;
    }

.text-section {
    color: #000;
    display: inline-block;
    font-size: 22px;
    font-size: 1rem;
    line-height: 55px;
    line-height: 2.5rem;
    font-weight: 500;
    letter-spacing: 0.07em;
    position: relative;
    text-transform: uppercase;
    margin-top: 3px;
    margin-bottom: -2px;
}

    .text-section:link:hover {
        color: #e50654;
    }

    .text-section:after {
        border-bottom: 2px solid #000;
        content: ' ';
        display: block;
        left: 50%;
        bottom: -11px;
        margin-left: -20px;
        position: absolute;
        width: 40px;
    }

.text-sectiontitle {
    color: #e50654;
    font-size: 1.49091rem;
    text-transform: capitalize;
}

.text-subheading {
    font-weight: 400;
    font-size: 31px;
    font-size: 1.4090909091rem;
    letter-spacing: 0.01em;
}

.text-smallheading {
    font-weight: 500;
    font-size: 22px;
    font-size: 1rem;
    line-height: 40px;
    line-height: 1.8181818182rem;
    letter-spacing: 0.01em;
    margin: 0 0 40px 0;
}

.text-info {
    font-size: 18px;
    font-size: 0.8181818182rem;
    line-height: 28px;
    line-height: 1.2727272727rem;
}

    .text-info dl, .text-info p, .text-info h6 {
        font-size: 18px;
        font-size: 0.8181818182rem;
        line-height: 28px;
        line-height: 1.2727272727rem;
        margin-top: 0;
        margin-bottom: 28px;
        text-transform: none;
    }

    .text-info dt {
        float: left;
        font-weight: 400;
        margin-right: 7px;
    }

    .text-info dd {
        margin: 0;
    }

    .text-info h3 {
        color: #000;
        margin: 45px 0 15px 0;
    }

    .text-info h6 {
        margin: 45px 0 0 0;
    }

.text-highlight {
    color: #e50654;
}

.text-style {
    color: #e50654;
}
/**
 * Tablet
 */
@media screen and (max-width: 70em) {
    h1, .h1, .alpha, h2, .h2, .beta {
        font-size: 1.2rem;
    }

        h1 small, .h1 small, .alpha small, h2 small, .h2 small, .beta small {
            font-size: 28px;
            font-size: 1.2727272727rem;
            line-height: 28px;
            line-height: 1.2727272727rem;
        }

    h3, .h3, .gamma {
        font-size: 23px;
        font-size: 1.0454545455rem;
    }

        h3 small, .h3 small, .gamma small {
            font-size: 18px;
            font-size: 0.8181818182rem;
            line-height: 27px;
            line-height: 1.2272727273rem;
        }

    h5, .h5, .epsilon,
    h6, .h6, .zeta {
        font-size: 15px;
        font-size: 0.6818181818rem;
    }

    p {
        font-size: 18px;
        font-size: 0.8181818182rem;
        margin-bottom: 30px;
    }

    blockquote {
        margin: 60px 0;
        padding: 30px 0;
    }

        blockquote p {
            margin-bottom: 10px;
            font-size: 18px;
            font-size: 0.8181818182rem;
            line-height: 29px;
            line-height: 1.3181818182rem;
        }

        blockquote cite {
            font-size: 18px;
            font-size: 0.8181818182rem;
            line-height: 33px;
            line-height: 1.5rem;
        }

        blockquote:first-child {
            margin-top: 30px;
        }

    .text-caption {
        font-size: 15px;
        font-size: 0.6818181818rem;
        line-height: 22px;
        line-height: 1rem;
    }

    .text-subheading {
        font-size: 25px;
        font-size: 1.1363636364rem;
        margin-bottom: 30px;
    }

    .text-lead {
        font-size: 25px;
        font-size: 1.1363636364rem;
        line-height: 40px;
        line-height: 1.8181818182rem;
    }

    .text-tag {
        font-size: 12px;
        font-size: 0.5454545455rem;
    }

    .text-section {
        line-height: 18px;
        line-height: 0.8181818182rem;
        margin-top: 5px;
    }

    .text-sectiontitle {
        margin-top: 20px;
    }

    .text-info {
        font-size: 16px;
        font-size: 0.7272727273rem;
        line-height: 25px;
        line-height: 1.1363636364rem;
        /*h3 {
            margin: 45px 0 15px 0;
        }

        h6 {
            margin: 45px 0 0 0;
        }*/
    }

        .text-info dl, .text-info p, .text-info h6 {
            font-size: 16px;
            font-size: 0.7272727273rem;
            line-height: 25px;
            line-height: 1.1363636364rem;
            margin-bottom: 25px;
        }

        .text-info dt {
            margin-right: 5px;
        }

        .text-info dd {
            margin: 0;
        }
        .btn.btn--primary.btn--medium.btnDownload {
            width: auto;
        }
        .text-tag {
            margin: 15px 0;
        }
}

/**
 * Mobile responsive
 */
@media screen and (max-width: 47.9375em) {
    html {
        font-size: 22px;
    }

    body {
        font-size: 13px;
        font-size: 0.5909090909rem;
    }
    /*h1, .h1, .alpha, h2, .h2, .beta {
        @include font-size(28);
    }*/
    h1 small, .h1 small, .alpha small {
        font-size: 28px;
        font-size: 1.2727272727rem;
        line-height: 28px;
        line-height: 1.2727272727rem;
    }

    h3, .h3, .gamma {
        font-size: 0.8rem;
    }

    h5, .h5, .epsilon,
    h6, .h6, .zeta {
        font-size: 13px;
        font-size: 0.5909090909rem;
    }

    p {
        font-size: 14px;
        font-size: 0.6363636364rem;
        margin-bottom: 20px;
    }

    blockquote {
        margin: 20px 0;
        padding: 20px 0;
    }

        blockquote p {
            margin-bottom: 10px;
            font-size: 15px;
            font-size: 0.6818181818rem;
            line-height: 22px;
            line-height: 1rem;
        }

        blockquote cite {
            font-size: 11px;
            font-size: 0.5rem;
            line-height: 20px;
            line-height: 0.9090909091rem;
        }

        blockquote:before, blockquote:after {
            border-top: 1px solid #cccccc;
        }

        blockquote:first-child {
            margin-top: 0;
        }

    .text-lead {
        font-size: 16px;
        font-size: 0.7272727273rem;
        line-height: 25px;
        line-height: 1.1363636364rem;
        padding: 0;
        margin-bottom: 36px;
    }

    .text-caption {
        font-size: 12px;
        font-size: 0.5454545455rem;
        line-height: 19px;
        line-height: 0.8636363636rem;
    }

    .text-subheading {
        font-size: 16px;
        font-size: 0.7272727273rem;
    }

    .text-smallheading {
        font-size: 13px;
        font-size: 0.5909090909rem;
        line-height: 20px;
        line-height: 0.9090909091rem;
        margin-bottom: 20px;
    }

    .text-info {
        font-size: 12px;
        font-size: 0.5454545455rem;
        line-height: 19px;
        line-height: 0.8636363636rem;
    }

        .text-info dl, .text-info p, .text-info h6 {
            font-size: 12px;
            font-size: 0.5454545455rem;
            line-height: 19px;
            line-height: 0.8636363636rem;
            margin-bottom: 19px;
        }

        .text-info dt {
            margin-right: 5px;
        }

        .text-info dd {
            margin: 0;
        }

        .text-info h3 {
            margin: 30px 0 10px 0;
        }

        .text-info h6 {
            margin: 25px 0 0 0;
        }
}

.text--pink {
    color: #e50654;
}

/*
 * TODO:
 */
/*@include respond-max(400px) {
    body {font-size: 15px;}
    h1, .h1, .alpha {font-size: 32px;}
    h3, .h3, .gamma {font-size: 23px;}
    .text-tag, .contentTile-copy-section {font-size: 14px !important;}
    .text-section {font-size: 13px !important;}
    .btn {font-size: 14px !important;}
}*/
/**
 * Components:
 * =================================
 * Buttons
 * Grid
 * Lists
 * Forms
 * Embedded content
 * Media Object
 * Block grids
 * Fluid video
 * Tabs
 * Tables
 * Code
 * Skip navigation
 * Scrollbars
 */
/**
 * Buttons
 * Based on csswizardry.com/beautons
 *
 * Base button styles:
 * 1. Allow us to better style box model properties.
 * 2. Line different sized buttons up a little nicer.
 * 3. Stop buttons wrapping and looking broken.
 * 4. Make buttons inherit font styles.
 * 5. Force all elements using beautons to appear clickable.
 * 6. Normalise box model styles.
 * 7. If the button’s text is 1em, and the button is (3 * font-size) tall, then
 *    there is 1em of space above and below that text. We therefore apply 1em
 *    of space to the left and right, as padding, to keep consistent spacing.
 * 8. Fixes odd inner spacing in IE7.
 * 9. Don’t allow buttons to have underlines; it kinda ruins the illusion.
 *10. Prevents from inheriting default anchor styles.
 */
.btn, .tabs a {
    display: inline-block;
    /* [1] */
    vertical-align: middle;
    /* [2] */
    white-space: nowrap;
    /* [3] */
    font-family: inherit;
    /* [4] */
    font-size: 14px;
    font-size: 0.6363636364rem;
    /* [4] */
    cursor: pointer;
    /* [5] */
    border: 2px solid #000;
    /* [6] */
    margin: 0;
    /* [6] */
    padding-top: 0;
    /* [6] */
    padding-bottom: 0;
    /* [6] */
    line-height: 49px;
    /* [7] */
    height: 50px;
    /* [7] */
    padding-right: 1.5em;
    /* [7] */
    padding-left: 1.5em;
    /* [7] */
    overflow: visible;
    /* [8] */
    text-align: center;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.07em;
    background-color: transparent;
    -webkit-transition: all 100ms ease-in-out;
    transition: all 100ms ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .btn, .tabs a, .btn:link, .tabs a:link, .btn:visited, .tabs a:visited {
        color: #000;
    }

        .btn:hover, .tabs a:hover {
            background-color: #000;
            color: #fff;
        }

        .btn, .tabs a, .btn:hover, .tabs a:hover, .btn:active, .tabs a:active, .btn:focus, .tabs a:focus, .btn:visited, .tabs a:visited {
            text-decoration: none;
        }

            .btn:active, .tabs a:active, .btn:focus, .tabs a:focus {
                outline: none;
            }

            .btn.disabled, .tabs a.disabled, .btn[disabled], .tabs a[disabled] {
                cursor: default;
                background-image: none;
                opacity: .65;
            }

.btn--primary {
    background-color: transparent;
    border: 2px solid #fff;
}

    .btn--primary, .btn--primary:link, .btn--primary:visited {
        color: #fff;
    }

        .btn--primary:hover {
            color: #000;
            background-color: #fff;
        }

.btn--secondary {
    background-color: transparent;
    border: 2px solid #999;
}

    .btn--secondary, .btn--secondary:link, .btn--secondary:visited {
        color: #999;
    }

        .btn--secondary:hover {
            color: #000;
            background-color: #999;
        }

.btn--solid {
    border: 0;
    background: #fff;
}

    .btn--solid:hover {
        background: #fff;
        color: #000;
    }

/*.btn--large {
	@include font-size($type-large);
	line-height: 3;
	height: 3em;
	padding-right: 2em;
	padding-left: 2em;
	border-radius: 6px;
}

// Small
.btn--small {
	@include font-size($type-small);
	line-height: 1.5;
	height: 1.5em;
	padding-right: .75em;
	padding-left: .75em;
	border-radius: 3px;
}

.btn--pill {
	padding-left: 1.5em;
	padding-right: 1.5em;
	border-radius: 100em;
}*/
.btn--small {
    width: 115px;
}

.btn--medium {
    width: 250px;
}

.btn--block {
    display: block;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}

    .btn--block + .btn--block {
        margin-top: 10px;
    }

input[type="submit"].btn--block,
input[type="reset"].btn--block,
input[type="button"].btn--block {
    width: 100%;
}

.btn--natural {
    vertical-align: baseline;
    font-size: inherit;
    line-height: inherit;
    height: auto;
    padding-right: .5em;
    padding-left: .5em;
}

/**
 * Close Button: for lightboxes etc
 */
.btnClose {
    position: absolute;
    right: 20px;
    top: 20px;
    height: 30px;
    width: 30px;
    padding: 0;
    background-image: url("sprites-2x.png");
    background-repeat: no-repeat;
    background-size: 400px 500px;
    border: 0;
    background-color: transparent;
    background-position: -225px -75px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-indent: -9999px;
}

    .btnClose:hover {
        background-color: transparent;
    }

.btnMore {
    background: #fff;
    color: #e50654;
    border: 3px solid #e50654;
    border-radius: 50%;
    height: 66px;
    width: 66px;
    font-size: 14px;
    font-size: 1.6363636364rem;
    text-transform: uppercase;
}

    .btnMore:hover, .btnMore.is-active, .slick-dots li.slick-active button.btnMore {
        background: #e50654;
        color: #fff;
    }

    .btnMore span:last-child {
        display: none;
    }

    .btnMore.is-active span:first-child, .slick-dots li.slick-active button.btnMore span:first-child {
        display: none;
    }

    .btnMore.is-active span:last-child, .slick-dots li.slick-active button.btnMore span:last-child {
        display: inline;
    }

    .btnMore:active, .btnMore:focus {
        outline: none;
    }

.btnSignUp:before {
    content: ' ';
    background-image: url("sprites-2x.png");
    background-repeat: no-repeat;
    background-size: 400px 500px;
    background-position: 0 -75px;
    display: inline-block;
    width: 20px;
    height: 16px;
    margin: 0 17px 2px 0;
    vertical-align: middle;
}

.btnSignUp:hover:before {
    content: '  ';
    background-position: -50px -75px;
}

.btnSignUp.btn--secondary:before {
    background-position: -25px -75px;
}

.btnSignUp.btn--secondary:hover:before {
    background-position: 0 -75px;
}

.btnSignUp--small {
    border-radius: 50%;
    padding: 0 12px;
    height: 50px;
    width: 50px;
}

    .btnSignUp--small:before {
        margin: 0 0 2px 0;
    }

.btnDownload:before {
    content: ' ';
    background-image: url("sprites-2x.png");
    background-repeat: no-repeat;
    background-size: 400px 500px;
    background-position: -175px -75px;
    display: inline-block;
    width: 15px;
    height: 20px;
    margin: 0 10px 2px 0;
    vertical-align: middle;
}

.btnDownload:hover:before {
    content: '  ';
    background-position: -200px -75px;
}

.btnDownload.btn--primary:before {
    background-position: -200px -75px;
}

.btnDownload.btn--primary:hover:before {
    content: '  ';
    background-position: -175px -75px;
}

.btnSearch {
    padding: 0 !important;
}

    .btnSearch:before {
        content: ' ';
        background-image: url("sprites-2x.png");
        background-repeat: no-repeat;
        background-size: 400px 500px;
        background-position: -275px -75px;
        display: inline-block;
        width: 20px;
        height: 17px;
        margin: 0 10px 2px 0;
        vertical-align: middle;
    }

    .btnSearch:hover:before {
        content: '  ';
        background-position: -300px -75px;
    }

.btnTop {
    width: 50px;
    padding: 0;
}

    .btnTop:before {
        content: ' ';
        background-image: url("sprites-2x.png");
        background-repeat: no-repeat;
        background-size: 400px 500px;
        background-position: -75px -75px;
        display: inline-block;
        width: 12px;
        height: 26px;
        vertical-align: middle;
    }

    .btnTop:hover:before {
        content: '  ';
        background-position: -100px -75px;
    }

.btnNext, .btnPrevious {
    border: 0;
    background-color: transparent;
    background-image: url("sprites-2x.png");
    background-repeat: no-repeat;
    background-size: 400px 500px;
    background-position: -325px -50px;
    display: block;
    text-indent: -9999px;
    width: 45px;
    height: 22px;
}

    .btnNext:hover, .btnPrevious:hover {
        background-color: transparent;
    }

.btnPrevious {
    background-position: -275px -50px;
}

.btnTag {
    color: #666;
    font-size: 18px;
    font-size: 0.8181818182rem;
    line-height: 40px;
    line-height: 1.8181818182rem;
    height: 40px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    padding: 0;
}

    .btnTag:hover {
        color: #666;
    }

    .btnTag:after {
        background-image: url("sprites-2x.png");
        background-repeat: no-repeat;
        background-size: 400px 500px;
        content: ' ';
        background-position: -150px -75px;
        display: inline-block;
        width: 12px;
        height: 12px;
        vertical-align: middle;
        margin-left: 10px;
    }

.btnClear {
    font-size: 14px;
    font-size: 0.6363636364rem;
    line-height: 40px;
    line-height: 1.8181818182rem;
    height: 40px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 0;
}

    .btnClear:after {
        background-image: url("sprites-2x.png");
        background-repeat: no-repeat;
        background-size: 400px 500px;
        content: ' ';
        background-position: -125px -75px;
        display: inline-block;
        width: 15px;
        height: 16px;
        vertical-align: middle;
        margin-left: 10px;
    }

.btnRefine.is-active:after, .slick-dots li.slick-active button.btnRefine:after {
    background-image: url("sprites-2x.png");
    background-repeat: no-repeat;
    background-size: 400px 500px;
    content: ' ';
    background-position: -125px -75px;
    display: block;
    position: absolute;
    top: 18px;
    right: 19px;
    width: 15px;
    height: 16px;
}

.btnSocial {
    display: block;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    text-align: center;
}

    .btnSocial:before {
        content: ' ';
        background-image: url("sprites-2x.png");
        background-repeat: no-repeat;
        background-size: 400px 500px;
        display: inline-block;
    }

.btnSocial--fb {
    background-color: #3664a2;
}

    .btnSocial--fb:hover {
        background-color: #1d3556;
    }

    .btnSocial--fb:before {
        background-position: 0 -125px;
        width: 12px;
        height: 21px;
        margin: 15px auto;
    }

.btnSocial--tw {
    background-color: #5aa9e0;
}

    .btnSocial--tw:hover {
        background-color: #2277b2;
    }

    .btnSocial--tw:before {
        background-position: -25px -125px;
        width: 28px;
        height: 21px;
        margin: 15px auto;
    }

.btnSocial--li {
    background-color: #007bb6;
    text-align: left;
}

    .btnSocial--li:hover {
        background-color: #003650;
    }

    .btnSocial--li:before {
        background-position: -75px -125px;
        width: 33px;
        height: 24px;
        margin: 13px 0 0 11px;
    }

.btnSocial--wa {
    background-color: #28b33e;
    text-align: left;
    display: none;
}

    .btnSocial--wa:hover {
        background-color: #156021;
    }

.btnSocial--gp {
    background-color: #da4835;
    text-align: left;
}

    .btnSocial--gp:hover {
        background-color: #8f281a;
    }

    .btnSocial--gp:before {
        background-position: -125px -125px;
        width: 26px;
        height: 26px;
        margin: 13px 0 0 14px;
    }

.btnSocial--em {
    background-color: #e50654;
    text-align: left;
}

    .btnSocial--em:hover {
        background-color: #820330;
    }

    .btnSocial--em:before {
        background-position: -175px -125px;
        width: 26px;
        height: 19px;
        margin: 16px 0 0 12px;
    }

.btnSocial--dark, .btnSocial--dark:hover {
    background: #333;
}

    .btnSocial--dark.btnSocial--fb:before {
        background-position: 0 -150px;
    }

    .btnSocial--dark.btnSocial--fb:hover:before {
        background-position: 0 -125px;
    }

    .btnSocial--dark.btnSocial--tw:before {
        background-position: -25px -150px;
    }

    .btnSocial--dark.btnSocial--tw:hover:before {
        background-position: -25px -125px;
    }

    .btnSocial--dark.btnSocial--li:before {
        background-position: -75px -150px;
    }

    .btnSocial--dark.btnSocial--li:hover:before {
        background-position: -75px -125px;
    }

    .btnSocial--dark.btnSocial--gp:before {
        background-position: -150px -150px;
    }

    .btnSocial--dark.btnSocial--gp:hover:before {
        background-position: -125px -125px;
    }

/**
 * Menu buttons
 */
.btnMenu {
    background-color: #fff;
    border: 0;
    display: block;
    padding: 0;
    height: 63px;
    width: 63px;
}

    .btnMenu:before {
        background-image: url("sprites-2x.png");
        background-repeat: no-repeat;
        background-size: 400px 500px;
        background-position: -175px 0;
        content: ' ';
        display: block;
        margin: 0 auto;
        width: 18px;
        height: 18px;
    }

    .btnMenu:active, .btnMenu:focus {
        outline: none;
    }

    .btnMenu:hover {
        background-color: #fff;
    }

.btnMenu--search:before {
    background-position: -250px 0;
    width: 27px;
    height: 27px;
    margin: 18px auto;
}

.btnMenu--country {
    color: #e50654;
    font-size: 14px;
    font-size: 0.6363636364rem;
}

    .btnMenu--country:before {
        background-position: -300px 0;
        width: 23px;
        height: 23px;
        margin-bottom: 4px;
        margin-top: 6px;
    }

.btnDownload {
    width: auto;
}

/**
 * Tablet
 */
@media screen and (max-width: 70em) {
    .btn, .tabs a {
        border-width: 1px;
        font-size: 12px;
        font-size: 0.5454545455rem;
        line-height: 37px;
        padding: 0 1em;
        height: 38px;
    }

    .btn--small {
        width: 86px;
    }

    .btn--medium {
        width: auto;
    }

    .btnSignUp--small {
        padding: 1px 0 0 2px;
        width: 38px;
    }

    .btnTop {
        width: 38px;
        padding: 0;
    }

    .btnMenu {
        width: 48px;
        height: 48px;
    }

    .btnMenu--search:before {
        background-position: -225px 0;
        width: 20px;
        height: 20px;
        margin: 14px auto;
    }

    .btnMenu--country:before {
        background-position: -325px 0;
        width: 18px;
        height: 18px;
        margin: 0 auto 1px;
    }

    .btnMenu--country span {
        font-size: 11px;
        font-size: 0.5rem;
    }

    .btnTag {
        font-size: 16px;
        font-size: 0.7272727273rem;
        line-height: 40px;
        line-height: 1.8181818182rem;
        height: 40px;
        padding: 0;
    }

        .btnTag:after {
            margin-left: 8px;
        }

    .btnSocial {
        height: 38px;
        width: 38px;
    }

    .btnSocial--fb:before {
        background-position: 0 -175px;
        width: 9px;
        height: 17px;
        margin: 11px 0 0 1px;
    }

    .btnSocial--tw:before {
        background-position: -25px -175px;
        width: 21px;
        height: 16px;
        margin: 12px 0 0 3px;
    }

    .btnSocial--li:before {
        background-position: -75px -175px;
        width: 26px;
        height: 18px;
        margin: 9px 0 0 8px;
    }

    .btnSocial--gp:before {
        background-position: -125px -175px;
        width: 19px;
        height: 20px;
        margin: 10px 0 0 12px;
    }

    .btnSocial--wa {
        display: block;
    }

        .btnSocial--wa:before {
            background-position: -200px -175px;
            width: 21px;
            height: 21px;
            margin: 8px 0 0 9px;
        }

    .btnSocial--em:before {
        margin: 10px 0 0 7px;
    }

    .btnSocial--dark.btnSocial--fb:before {
        background-position: 0 -200px;
    }

    .btnSocial--dark.btnSocial--fb:hover:before {
        background-position: 0 -175px;
    }

    .btnSocial--dark.btnSocial--tw:before {
        background-position: -25px -200px;
    }

    .btnSocial--dark.btnSocial--tw:hover:before {
        background-position: -25px -175px;
    }

    .btnSocial--dark.btnSocial--li:before {
        background-position: -75px -200px;
    }

    .btnSocial--dark.btnSocial--li:hover:before {
        background-position: -75px -175px;
    }

    .btnSocial--dark.btnSocial--gp:before {
        background-position: -125px -200px;
    }

    .btnSocial--dark.btnSocial--gp:hover:before {
        background-position: -125px -175px;
    }
}

/**
 * Mobile responsive
 */
@media screen and (max-width: 47.9375em) {
    .btnTop {
        display: none;
    }

    .btnMore {
        border: 1px solid #e50654;
        height: 54px;
        width: 54px;
        font-size: 11px;
        font-size: 1rem;
    }
}

/**
 * The Kickoff Grid
 * =================================
 * Default grid styles
 * Media queries
 * Centred columns
 */
/* Import Grid helpers and mixins */
/* ==========================================================================
   Kickoff Grid helpers
   ========================================================================== */
/*
   Grid columns width calcs
   ========================================================================== */
/**
 * Column width mixin
 * Usage:
 * @include column(2);
 */
/*
   Gutter calcs
   * Default: percent
   * Usage: gutterCalc() or gutterCalc(false)
   ========================================================================== */
/*
   Column padding (gutter)
   * Default: percent (can be pixels though)
   * Usage: paddingCalc() or paddingCalc(px)
   ========================================================================== */
/*
   Shunts, offset columns, column source order calculations
   ========================================================================== */
/**
 * Basic Usage:
 * =================================
	<div class="g-row">
		<div class="g-col g-span4"></div>
		<div class="g-col g-span8"></div>
	</div>
 */
.g-row {
    width: 100%;
    margin: 0 auto;
}

    .g-row:after {
        content: "";
        display: table;
        clear: both;
    }

    .g-row .g-row {
        min-width: 0;
    }

        .g-row .g-row .g-col {
            padding: 0;
        }

@media screen and (min-width: 47.9375em) {
    .g-col {
        float: left;
        min-height: 1px;
        position: relative;
        clear: none;
        box-sizing: border-box;
        margin-left: 1.497005988%;
    }

        .g-col:first-child {
            margin-left: 0;
        }

        .g-col + .g-col:last-child {
            float: right;
        }

        .g-col + .g-col.end {
            float: left;
        }
}

@media screen and (min-width: 47.9375em) {
    .g-span1 {
        width: 6.9610778443%;
    }

    .g-span2 {
        width: 15.4191616766%;
    }

    .g-span3 {
        width: 23.877245509%;
    }

    .g-span4 {
        width: 32.3353293413%;
    }

    .g-span5 {
        width: 40.7934131737%;
    }

    .g-span6 {
        width: 49.251497006%;
    }

    .g-span7 {
        width: 57.7095808383%;
    }

    .g-span8 {
        width: 66.1676646707%;
    }

    .g-span9 {
        width: 74.625748503%;
    }

    .g-span10 {
        width: 83.0838323353%;
    }

    .g-span11 {
        width: 91.5419161677%;
    }

    .g-span12 {
        width: 100%;
    }
    /**
	 * Offset columns
	 * http://tmwagency.github.io/kickoff/demos/grids.html#offset
	 */
    .g-row > .g-offset1 {
        margin-left: 9.9550898204%;
    }

        .g-row > .g-offset1:first-child {
            margin-left: 8.4580838323%;
        }

    .g-row > .g-offset2 {
        margin-left: 18.4131736527%;
    }

        .g-row > .g-offset2:first-child {
            margin-left: 16.9161676647%;
        }

    .g-row > .g-offset3 {
        margin-left: 26.871257485%;
    }

        .g-row > .g-offset3:first-child {
            margin-left: 25.374251497%;
        }

    .g-row > .g-offset4 {
        margin-left: 35.3293413174%;
    }

        .g-row > .g-offset4:first-child {
            margin-left: 33.8323353293%;
        }

    .g-row > .g-offset5 {
        margin-left: 43.7874251497%;
    }

        .g-row > .g-offset5:first-child {
            margin-left: 42.2904191617%;
        }

    .g-row > .g-offset6 {
        margin-left: 52.245508982%;
    }

        .g-row > .g-offset6:first-child {
            margin-left: 50.748502994%;
        }

    .g-row > .g-offset7 {
        margin-left: 60.7035928144%;
    }

        .g-row > .g-offset7:first-child {
            margin-left: 59.2065868263%;
        }

    .g-row > .g-offset8 {
        margin-left: 69.1616766467%;
    }

        .g-row > .g-offset8:first-child {
            margin-left: 67.6646706587%;
        }

    .g-row > .g-offset9 {
        margin-left: 77.619760479%;
    }

        .g-row > .g-offset9:first-child {
            margin-left: 76.122754491%;
        }

    .g-row > .g-offset10 {
        margin-left: 86.0778443114%;
    }

        .g-row > .g-offset10:first-child {
            margin-left: 84.5808383234%;
        }

    .g-row > .g-offset11 {
        margin-left: 94.5359281437%;
    }

        .g-row > .g-offset11:first-child {
            margin-left: 93.0389221557%;
        }
    /**
	 * Source ordering (push & pull)
	 * http://tmwagency.github.io/kickoff/demos/grids.html#source-ordering
	 */
}

/**
 * Centred columns
 */
.g-col.g-col--centered,
.g-col.g-col--centred {
    float: none;
    margin: 0 auto;
}

/*
	Centred lists

	<ul class="l-list--centred">
		<li></li>
	</ul>
	========================================================================== */
.l-list--centred, .l-list--centered {
    text-align: center;
}

    .l-list--centred li, .l-list--centered li {
        display: inline;
    }

/*
	Floated lists

	<ul class="l-list--floated">
		<li></li>
	</ul>
	========================================================================== */
.l-list--floated:after {
    content: "";
    display: table;
    clear: both;
}

.l-list--floated li {
    float: left;
    display: inline-block;
}

/**
 * Forms
 * =================================
 * Generic form styles
 * Form inputs and groups
 * Form field feedback states
 * Horizontal & vertical forms
 * Horizontal-specific styles
 */
/**
 * Generic form styles
 * =================================
 * Demo: http://tmwagency.github.io/kickoff/demos/forms.html#layout-example-labels-above
 * Code: https://gist.github.com/mrmartineau/6712577#file-labels-above-inputs-html
 * Usage:
  	<div class="form-controlGroup">
  		<label for="name" class="form-label">Name</label>
  		<div class="form-controlGroup-inputWrapper">
  			<input type="text" id="name" placeholder="Zander Martineau" class="form-input"/>
  		</div>
  	</div>
 */
.form {
    margin: 0 0 40px;
}

.form-fieldset {
    padding: 0;
    margin: 0;
    border: 0;
}

.form-legend {
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: 40px;
    font-size: 34px;
    font-size: 1.5454545455rem;
    line-height: 1.81818181;
    color: #000;
    border: 0;
    border-bottom: 1px solid #eee;
    white-space: normal;
}

    .form-legend small {
        font-size: 18px;
        font-size: 0.8181818182rem;
        color: #b3b3b3;
    }

/**
 * Form inputs and groups
 */
.form-controlGroup {
    margin-top: 20px;
    margin-bottom: 20px;
    list-style-type: none;
}

.form-legend + .form-controlGroup {
    margin-top: 40px;
    -webkit-margin-top-collapse: separate;
}

.form-label {
    display: block;
    color: #000;
    font-weight: 400;
    font-size: 18px;
    font-size: 0.8181818182rem;
    margin-bottom: 10px;
}

    .form-label small {
        font-weight: normal;
        color: #4d4d4d;
    }

.form-input {
    display: block;
    width: 100%;
    height: 50px;
    padding: 12px;
    font-size: 18px;
    font-size: 0.8181818182rem;
    font-family: "ITCFranklinGothicLTW04-Book", "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 1;
    color: #878787;
    font-weight: normal;
    vertical-align: baseline;
    background-color: #f5f4f4;
    border: 0;
    border-radius: 0;
    -webkit-transition: border 200ms ease-in-out;
    transition: border 200ms ease-in-out;
}

    .form-input:focus {
        border-color: #999999;
        outline: 0;
        outline: thin dotted \9;
    }

    .form-input[type="image"], .form-input[type="checkbox"], .form-input[type="radio"], .form-input[type="range"] {
        width: auto;
        height: auto;
        padding: 0;
        margin: 3px 0;
        line-height: normal;
        cursor: pointer;
        border-radius: 0;
        box-sizing: border-box;
    }

    .form-input[type="image"] {
        border: 0;
    }

    .form-input[type="file"] {
        width: auto;
        height: 28px;
        padding: initial;
        line-height: initial;
        border: initial;
        background-color: #f5f4f4;
        background-color: initial;
    }

    .form-input[type="hidden"] {
        display: none;
    }

    .form-input[type="color"] {
        width: 40px;
        height: 40px;
        overflow: hidden;
        padding: 2px;
    }

    .form-input[type="password"] {
        font-family: sans-serif;
    }

    .form-input[type="range"] {
        width: 100%;
    }

    .form-input > .radio:first-child,
    .form-input > .checkbox:first-child {
        padding-top: 5px;
    }

    .form-input[disabled], .form-input[readonly] {
        background-color: #ddd9d9;
        border-color: #cccccc;
        cursor: not-allowed;
    }

.form-input--textarea {
    height: auto;
    resize: vertical;
}

.form-input--textarea--uneditable {
    width: auto;
    height: auto;
}

.form-input--select {
    background-color: #f5f4f4;
}

    .form-input--select[multiple], .form-input--select[size] {
        height: auto;
    }

.form-input-file {
    display: inline-block;
    width: 100%;
    font-size: 22px;
    font-size: 1rem;
    margin: 0;
    vertical-align: middle;
    line-height: 1em;
}

    .form-input-file:focus {
        outline: none;
    }

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    width: auto;
    cursor: pointer;
    -webkit-appearance: button;
}

/**
 * Checkboxes:
 * =================================
	<label class="control">
		<input type="checkbox" value="check1">
		This is a checkbox
	</label>
	<label class="control control--inline">
		<input type="checkbox" value="check1">
		This is a checkbox
	</label>

 * Radios:
 * =================================
	<label class="control">
		<input type="radio" name="optionsRadios" id="optionsRadios1" value="option1" checked>
		This is a radio
	</label>
	<label class="control control--inline">
		<input type="radio" name="optionsRadios" id="optionsRadios1" value="option2" checked>
		This is a radio
	</label>
 */
.control {
    display: block;
}

    .control input[type="radio"],
    .control input[type="checkbox"] {
        vertical-align: middle;
        margin-right: .5em;
        margin-top: -.1em;
        display: inline;
        line-height: normal;
    }

.control--inline {
    display: inline-block;
    vertical-align: middle;
    margin-right: 1.5em;
}

/**
 * Search input
 */
.form-input--search {
    padding-left: 14px;
    padding-right: 14px;
    margin-bottom: 0;
    border-radius: 100px;
}

/**
 * Form actions
 */
.form-actions {
    padding: 40px 20px;
    margin-top: 40px;
    margin-bottom: 40px;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
}

    .form-actions .btn, .form-actions .tabs a, .tabs .form-actions a {
        margin-right: 10px;
    }

        .form-actions .btn:last-child, .form-actions .tabs a:last-child, .tabs .form-actions a:last-child {
            margin-right: 0;
        }

/**
 * Form field feedback states
 */
.form-controlGroup--warning .form-input {
    border: 2px solid #dab10d;
}

    .form-controlGroup--warning .form-input .form-input {
        border: 0;
    }

.form-controlGroup--warning .control-indicator {
    border: 2px solid #dab10d;
}

.form-controlGroup--error .form-input {
    border: 2px solid #e43725;
}

    .form-controlGroup--error .form-input .form-input {
        border: 0;
    }

.form-controlGroup--error .control-indicator {
    border: 2px solid #e43725;
}

.form-controlGroup--success .form-input {
    border: 2px solid #2ecc71;
}

    .form-controlGroup--success .form-input .form-input {
        border: 0;
    }

.form-controlGroup--success .control-indicator {
    border: 2px solid #2ecc71;
}

/**
 * Placeholder text
 * =================================
 * Gets special styles; can't be bundled together though for some reason
 */
:-ms-input-placeholder {
    color: #b3b3b3;
}

:-moz-placeholder {
    color: #b3b3b3;
}

::-webkit-input-placeholder {
    color: #b3b3b3;
}

@media screen and (min-width: 47.9375em) {
    /**
	 * Horizontal-specific styles
	 * =================================
	 * add .form--horizontal to the <form> element
	 * Demo: http://tmwagency.github.io/kickoff/demos/forms.html#layout-example-labels-inline
	 * Code: https://gist.github.com/mrmartineau/6712577#file-labels-inline-html
	 */
    .form--horizontal .form-controlGroup {
        margin-bottom: 40px;
    }

        .form--horizontal .form-controlGroup:after {
            content: "";
            display: table;
            clear: both;
        }

        .form--horizontal .form-controlGroup .form-input--fileWrapper {
            margin-left: 0;
        }

    .form--horizontal .form-label {
        float: left;
        width: 140px;
        padding-top: 5px;
        text-align: right;
    }

    .form--horizontal .form-controlGroup-inputWrapper {
        margin-left: 160px;
    }

        .form--horizontal .form-controlGroup-inputWrapper:first-child {
            padding-left: 160px;
        }

    .form--horizontal .form-helpBlock {
        margin-top: 20px;
        margin-bottom: 0;
    }

    .form--horizontal .form-actions {
        padding-left: 160px;
    }
}

/**
 * Tablet
 */
@media screen and (max-width: 70em) {
    .form-label {
        font-size: 16px;
        font-size: 0.7272727273rem;
        margin-bottom: 5px;
    }

    .form-input {
        font-size: 16px;
        font-size: 0.7272727273rem;
        line-height: 28px;
        line-height: 1.2727272727rem;
        height: 38px;
        padding: .5em;
    }
}

/**
 * Mobile responsive
 */
@media screen and (max-width: 47.9375em) {
    .form-label {
        font-size: 14px;
        font-size: 0.6363636364rem;
    }

    .form-input {
        font-size: 14px;
        font-size: 0.6363636364rem;
    }

        .form-input:focus {
            font-size: 16px;
            font-size: 0.7272727273rem;
        }
}

/**
 * Custom Checkboxes and radios - modified from WTF forms – http://wtfforms.com/
 *
 * --------------------------------
 *
 * Checkbox button example HTML
 *
 *	 <label class="control control--custom control--checkbox">
 *		<input type="checkbox" name="myCheckbox" />
 *		<span class="control-indicator"></span>
 *		My Checkbox Label Text
 *	</label>
 *
 * -------------------------------
 *
 * Radio button example HTML
 *
 *	<label class="control control--custom control--radio">
 *		<input type="radio" id="radio1" name="myRadioBtn" />
 *		<span class="control-indicator"></span>
 *		My Radio Button Label Text
 * 	</label>
 *
 * ================================= */
.control-indicator {
    position: absolute;
    top: .25em;
    left: 0;
    display: block;
    width: 19px;
    height: 19px;
    line-height: 1;
    color: #eee;
    text-align: center;
    background-color: #f5f4f4;
    background-size: 90%;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.control--custom {
    position: relative;
    display: block;
    padding-left: 2.1em;
    margin-left: 0;
    color: #666;
    cursor: pointer;
    /* Focus */
    /* Checked state */
    /* Active */
}

    .control--custom input {
        position: absolute;
        opacity: 0;
        z-index: -1;
        /* Put the input behind the label so it doesn't overlay text */
    }

        .control--custom input:checked ~ .control-indicator {
            color: #fff;
        }

        .control--custom input:active ~ .control-indicator {
            color: #fff;
        }

/* Checkbox modifiers */
.control--checkbox input:checked ~ .control-indicator {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJ4TWlkWU1pZCIgd2lkdGg9IjE4IiBoZWlnaHQ9IjE0IiB2aWV3Qm94PSIwIDAgMTggMTQiPgogIDxkZWZzPgogICAgPHN0eWxlPgoKICAgICAgLmNscy0yIHsKICAgICAgICBmaWxsOiAjZTUwNjU0OwogICAgICB9CiAgICA8L3N0eWxlPgogIDwvZGVmcz4KICA8cGF0aCBkPSJNMTguMTkyLDIuODM3IEMxOC4xOTIsMi44MzcgNy4xNjIsMTMuODY3IDcuMTYyLDEzLjg2NyBDNy4xNjIsMTMuODY3IC0wLjE5Miw2LjUxNCAtMC4xOTIsNi41MTQgQy0wLjE5Miw2LjUxNCAyLjYzNiwzLjY4NSAyLjYzNiwzLjY4NSBDMi42MzYsMy42ODUgNy4xNjIsOC4yMTEgNy4xNjIsOC4yMTEgQzcuMTYyLDguMjExIDE1LjM2NCwwLjAwOCAxNS4zNjQsMC4wMDggQzE1LjM2NCwwLjAwOCAxOC4xOTIsMi44MzcgMTguMTkyLDIuODM3IFoiIGlkPSJwYXRoLTEiIGNsYXNzPSJjbHMtMiIgZmlsbC1ydWxlPSJldmVub2RkIi8+Cjwvc3ZnPgo=);
}

.control--checkbox {
    font-size: 18px;
    font-size: 0.8181818182rem;
    line-height: 28px;
    line-height: 1.2727272727rem;
}

/* Radio modifiers */
.control--radio .control-indicator {
    border-radius: 50%;
}

.control--radio input:checked ~ .control-indicator {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNy4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgOCA4IiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA4IDgiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHBhdGggZmlsbD0iI0ZGRkZGRiIgZD0iTTQsMUMyLjMsMSwxLDIuMywxLDRzMS4zLDMsMywzczMtMS4zLDMtM1M1LjcsMSw0LDF6Ii8+DQo8L3N2Zz4NCg==);
}

/**
 * Custom file input
 */
.form-input--fileWrapper--styled {
    position: relative;
    overflow: hidden;
}

    .form-input--fileWrapper--styled:before {
        content: 'Choose file...';
    }

    .form-input--fileWrapper--styled:after {
        content: 'Browse';
        cursor: pointer;
        display: inline-block;
        position: absolute;
        top: 0;
        right: -1px;
        bottom: 0;
        padding: .44em 1em 0;
        background-color: #d9d9d9;
    }

    .form-input--fileWrapper--styled .form-input-file {
        opacity: 0;
        position: absolute;
    }

/**
 * Custom select element
 * http://jsbin.com/juvixufu/165/edit
 */
.form-input--selectWrapper {
    position: relative;
    display: block;
    padding: 0;
}

    /* This is the native select, we're making everything the text invisible so we can see the button styles in the wrapper */
    .form-input--selectWrapper select {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
        margin: 0;
        background: none;
        border: 0;
        outline: none;
        /* Remove select styling */
        -moz-appearance: none;
        appearance: none;
        -webkit-appearance: none;
        /* Magic font size number to prevent iOS text zoom */
        padding: .7em;
        line-height: 1;
    }

/* This hides native dropdown button arrow in IE 10/11+ so it will have the custom appearance, IE 9 and earlier get a native select */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .form-input--selectWrapper select::-ms-expand {
        display: none;
    }
}

/* Custom arrow sits on top of the select - could be an image, SVG, icon font, etc. or the arrow could just baked into the bg image on the select */
.form-input--selectWrapper:after {
    background: transparent url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJ4TWlkWU1pZCIgd2lkdGg9IjIwIiBoZWlnaHQ9IjEwIiB2aWV3Qm94PSIwIDAgMjAgMTAiPgogIDxkZWZzPgogICAgPHN0eWxlPgoKICAgICAgLmNscy0yIHsKICAgICAgICBmaWxsOiAjMDAwMDAwOwogICAgICB9CiAgICA8L3N0eWxlPgogIDwvZGVmcz4KICA8cGF0aCBkPSJNMTAuMjE5LDkuODA0IEMxMC4yMTksOS44MDQgLTAuMDAyLDAuMDA5IC0wLjAwMiwwLjAwOSBDLTAuMDAyLDAuMDA5IDIwLjQzOSwwLjAwOSAyMC40MzksMC4wMDkgQzIwLjQzOSwwLjAwOSAxMC4yMTksOS44MDQgMTAuMjE5LDkuODA0IFoiIGlkPSJwYXRoLTEiIGNsYXNzPSJjbHMtMiIgZmlsbC1ydWxlPSJldmVub2RkIi8+Cjwvc3ZnPgo=) no-repeat 50% 55%;
    content: " ";
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50px;
    z-index: 2;
    /* These hacks make the select behind the arrow clickable in some browsers */
    pointer-events: none;
}

@media screen and (min-width: 0\0) and (min-resolution: 0.001dpcm) {
    .form-input--selectWrapper:after {
        background-image: none !important;
    }
}

.form-input--selectWrapper:hover:after {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJ4TWlkWU1pZCIgd2lkdGg9IjIwIiBoZWlnaHQ9IjEwIiB2aWV3Qm94PSIwIDAgMjAgMTAiPgogIDxkZWZzPgogICAgPHN0eWxlPgoKICAgICAgLmNscy0yIHsKICAgICAgICBmaWxsOiAjZTUwNjU0OwogICAgICB9CiAgICA8L3N0eWxlPgogIDwvZGVmcz4KICA8cGF0aCBkPSJNMTAuMjE5LDkuODA0IEMxMC4yMTksOS44MDQgLTAuMDAyLDAuMDA5IC0wLjAwMiwwLjAwOSBDLTAuMDAyLDAuMDA5IDIwLjQzOSwwLjAwOSAyMC40MzksMC4wMDkgQzIwLjQzOSwwLjAwOSAxMC4yMTksOS44MDQgMTAuMjE5LDkuODA0IFoiIGlkPSJwYXRoLTEiIGNsYXNzPSJjbHMtMiIgZmlsbC1ydWxlPSJldmVub2RkIi8+Cjwvc3ZnPgo=);
}

_:-ms-lang(x), .form-input--selectWrapper:hover:after {
    display: none;
}

_:-ms-fullscreen, :root .form-input--selectWrapper:hover:after {
    display: block;
}

/* This selector targets Firefox only with the trick of making the select 110% but clipped by the container at 100% to hide the arrow. We have to do this because getting rid of select appearance isn't supported consistently */
.form-input--selectWrapper,
x:-moz-any-link,
x:default {
    overflow: hidden;
    width: 100%;
}

    .form-input--selectWrapper select,
    x:-moz-any-link,
    x:default {
        width: 110%;
        max-width: 110%;
        min-width: 110%;
        /* A zero right padding is needed or the native arrow can show up. Downside is the text will run over the arrow */
        padding: .6em 0 .5em .8em;
        /* Window is a Firefox way of hiding the arrow, sometimes works */
        -moz-appearance: window;
        text-indent: .01px;
        text-overflow: "";
    }

    /* Focus style - TODO: Fix in FF */
    /* Removes the odd blue bg color behind the text in IE 10/11 and sets the text to match the focus style text */
    .form-input--selectWrapper:focus::-ms-value {
        background: transparent;
        color: #222;
    }

    /* Firefox focus has odd artifacts around the text, this kills that */
    .form-input--selectWrapper:-moz-focusring {
        color: transparent;
        text-shadow: 0 0 0 #000;
    }

option {
    font-weight: normal;
}

/**
 * Tablet
 */
@media screen and (max-width: 70em) {
    .form-input--selectWrapper select {
        padding: .5em;
    }

    .control-indicator {
        top: .15em;
    }

    .control--checkbox {
        font-size: 16px;
        font-size: 0.7272727273rem;
        line-height: 24px;
        line-height: 1.0909090909rem;
    }
}

/**
 * Tablet
 */
@media screen and (max-width: 70em) {
    .form-input--selectWrapper select {
        padding: .5em;
    }

    .control-indicator {
        top: .15em;
    }

    .control--checkbox {
        font-size: 16px;
        font-size: 0.7272727273rem;
        line-height: 24px;
        line-height: 1.0909090909rem;
    }
}

/*
	Embedded content
	========================================================================== */
img {
    font-style: italic;
    color: #c00;
    border: 0;
    -ms-interpolation-mode: bicubic;
}

    img.img--left {
        margin: 0 20px 0 0;
    }

    img.img--right {
        margin: 0 0 0 20px;
    }

svg:not(:root) {
    overflow: hidden;
}

img, object, embed, video {
    max-width: 100%;
}

/*
	Media Object

	* Place any image- and text-like content side-by-side, as per:
	* http://csswizardry.com/2013/05/the-flag-object/
	*
	* +---------+
  * |         | ~~~~ ~~~~~~~~~~~
  * |         | ~~~~~~~ ~~~~~ ~~
  * |         | ~~~~~~~~~~~~
  * +---------+
	*
	* Markup:
	<div class="media">
		<div class="media-img">
			<img src="http://placekitten.com/100/100">
		</div>
		<div class="media-body">
			<p>Lorem ipsum dolor sit amet.</p>
		</div>
	</div>
	========================================================================== */
.media {
    display: table;
    width: 100%;
}

@media screen and (min-width: 25em) {
    .media-img,
    .media-body {
        display: table-cell;
        vertical-align: middle;
    }

    .media--top .media-img, .media--top .media-body {
        vertical-align: top;
    }

    .media--bottom .media-img, .media--bottom .media-body {
        vertical-align: bottom;
    }

    .media-img :last-child,
    .media-body :last-child {
        margin-bottom: 0;
    }

    .media-body {
        width: 100%;
    }

    .media-img {
        padding-right: 10px;
    }

        .media-img > img {
            display: block;
            max-width: none;
        }

    .media--rev .media-img {
        padding-right: 0;
        padding-left: 10px;
    }
}

/*
   Fluid width video
   * 16:9 aspect ratio by default
   * Usage:
   * <div class="fluidVideo"><iframe src="..."/></div>
   ========================================================================== */
.fluidVideo {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
}

    .fluidVideo iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

/**
 * Block grids
 * These are suited for repeating blocks of content. See below for usage
 *
 * Usage:
 * <ul class="l-blockGrid l-blockGrid--3up">
 *     <li></li>
 * </ul>
 *
 * Mobile Usage:
 * <ul class="l-blockGrid l-blockGrid--4up l-blockGrid--2up--narrow">
 *     <li></li>
 * </ul>
 */
.l-blockGrid {
    display: block;
    list-style-type: none;
    margin: 0;
}

    .l-blockGrid:after {
        content: "";
        display: table;
        clear: both;
    }

    .l-blockGrid > li {
        display: block;
        height: auto;
    }

@media screen and (min-width: 25em) and (max-width: 47.9375em) {
    .l-blockGrid[class*="up--narrow"] > li {
        display: block;
        height: auto;
        float: left;
    }

    .l-blockGrid.l-blockGrid--1up--narrow > li {
        width: 100%;
        display: block;
        height: auto;
        float: left;
    }

    .l-blockGrid.l-blockGrid--2up--narrow > li {
        width: 50%;
        display: block;
        height: auto;
        float: left;
    }

    .l-blockGrid.l-blockGrid--3up--narrow > li {
        width: 33.3333333333%;
        display: block;
        height: auto;
        float: left;
    }

    .l-blockGrid.l-blockGrid--4up--narrow > li {
        width: 25%;
        display: block;
        height: auto;
        float: left;
    }

    .l-blockGrid.l-blockGrid--5up--narrow > li {
        width: 20%;
        display: block;
        height: auto;
        float: left;
    }

    .l-blockGrid.l-blockGrid--6up--narrow > li {
        width: 16.6666666667%;
        display: block;
        height: auto;
        float: left;
    }

    .l-blockGrid.l-blockGrid--7up--narrow > li {
        width: 14.2857142857%;
        display: block;
        height: auto;
        float: left;
    }

    .l-blockGrid.l-blockGrid--8up--narrow > li {
        width: 12.5%;
        display: block;
        height: auto;
        float: left;
    }

    .l-blockGrid.l-blockGrid--9up--narrow > li {
        width: 11.1111111111%;
        display: block;
        height: auto;
        float: left;
    }

    .l-blockGrid.l-blockGrid--10up--narrow > li {
        width: 10%;
        display: block;
        height: auto;
        float: left;
    }

    .l-blockGrid.l-blockGrid--11up--narrow > li {
        width: 9.0909090909%;
        display: block;
        height: auto;
        float: left;
    }

    .l-blockGrid.l-blockGrid--12up--narrow > li {
        width: 8.3333333333%;
        display: block;
        height: auto;
        float: left;
    }
}

@media screen and (min-width: 47.9375em) {
    .l-blockGrid > li {
        display: block;
        height: auto;
        float: left;
    }

    .l-blockGrid.l-blockGrid--1up > li {
        width: 100%;
    }

    .l-blockGrid.l-blockGrid--2up > li {
        width: 50%;
    }

    .l-blockGrid.l-blockGrid--3up > li {
        width: 32%;
    }

    .l-blockGrid.l-blockGrid--4up > li {
        width: 25%;
    }

    .l-blockGrid.l-blockGrid--5up > li {
        width: 20%;
    }

    .l-blockGrid.l-blockGrid--6up > li {
        width: 16.6666666667%;
    }

    .l-blockGrid.l-blockGrid--7up > li {
        width: 14.2857142857%;
    }

    .l-blockGrid.l-blockGrid--8up > li {
        width: 12.5%;
    }

    .l-blockGrid.l-blockGrid--9up > li {
        width: 11.1111111111%;
    }

    .l-blockGrid.l-blockGrid--10up > li {
        width: 10%;
    }

    .l-blockGrid.l-blockGrid--11up > li {
        width: 9.0909090909%;
    }

    .l-blockGrid.l-blockGrid--12up > li {
        width: 8.3333333333%;
    }
}

@media screen and (min-width: 125em) {
    .l-blockGrid.l-blockGrid--1up--huge > li {
        width: 100%;
    }

    .l-blockGrid.l-blockGrid--2up--huge > li {
        width: 50%;
    }

    .l-blockGrid.l-blockGrid--3up--huge > li {
        width: 33.3333333333%;
    }

    .l-blockGrid.l-blockGrid--4up--huge > li {
        width: 25%;
    }

    .l-blockGrid.l-blockGrid--5up--huge > li {
        width: 20%;
    }

    .l-blockGrid.l-blockGrid--6up--huge > li {
        width: 16.6666666667%;
    }

    .l-blockGrid.l-blockGrid--7up--huge > li {
        width: 14.2857142857%;
    }

    .l-blockGrid.l-blockGrid--8up--huge > li {
        width: 12.5%;
    }

    .l-blockGrid.l-blockGrid--9up--huge > li {
        width: 11.1111111111%;
    }

    .l-blockGrid.l-blockGrid--10up--huge > li {
        width: 10%;
    }

    .l-blockGrid.l-blockGrid--11up--huge > li {
        width: 9.0909090909%;
    }

    .l-blockGrid.l-blockGrid--12up--huge > li {
        width: 8.3333333333%;
    }
}

/**
 * Guttered block grid
 */
.l-blockGrid--guttered {
    margin-left: -20px;
}

    .l-blockGrid--guttered > li {
        padding-left: 20px;
    }

.l-blockGrid--guttered-small > li {
    padding-left: 2px;
}

@media screen and (min-width: 25em) and (max-width: 47.9375em) {
    .l-blockGrid--clear.l-blockGrid--1up--narrow > li:nth-of-type(1n+1) {
        clear: none;
    }

    .l-blockGrid--clear.l-blockGrid--1up--narrow > li:nth-of-type(1n+1) {
        clear: left;
    }

    .l-blockGrid--clear.l-blockGrid--2up--narrow > li:nth-of-type(1n+1) {
        clear: none;
    }

    .l-blockGrid--clear.l-blockGrid--2up--narrow > li:nth-of-type(2n+1) {
        clear: left;
    }

    .l-blockGrid--clear.l-blockGrid--3up--narrow > li:nth-of-type(1n+1) {
        clear: none;
    }

    .l-blockGrid--clear.l-blockGrid--3up--narrow > li:nth-of-type(3n+1) {
        clear: left;
    }

    .l-blockGrid--clear.l-blockGrid--4up--narrow > li:nth-of-type(1n+1) {
        clear: none;
    }

    .l-blockGrid--clear.l-blockGrid--4up--narrow > li:nth-of-type(4n+1) {
        clear: left;
    }

    .l-blockGrid--clear.l-blockGrid--5up--narrow > li:nth-of-type(1n+1) {
        clear: none;
    }

    .l-blockGrid--clear.l-blockGrid--5up--narrow > li:nth-of-type(5n+1) {
        clear: left;
    }

    .l-blockGrid--clear.l-blockGrid--6up--narrow > li:nth-of-type(1n+1) {
        clear: none;
    }

    .l-blockGrid--clear.l-blockGrid--6up--narrow > li:nth-of-type(6n+1) {
        clear: left;
    }

    .l-blockGrid--clear.l-blockGrid--7up--narrow > li:nth-of-type(1n+1) {
        clear: none;
    }

    .l-blockGrid--clear.l-blockGrid--7up--narrow > li:nth-of-type(7n+1) {
        clear: left;
    }

    .l-blockGrid--clear.l-blockGrid--8up--narrow > li:nth-of-type(1n+1) {
        clear: none;
    }

    .l-blockGrid--clear.l-blockGrid--8up--narrow > li:nth-of-type(8n+1) {
        clear: left;
    }

    .l-blockGrid--clear.l-blockGrid--9up--narrow > li:nth-of-type(1n+1) {
        clear: none;
    }

    .l-blockGrid--clear.l-blockGrid--9up--narrow > li:nth-of-type(9n+1) {
        clear: left;
    }

    .l-blockGrid--clear.l-blockGrid--10up--narrow > li:nth-of-type(1n+1) {
        clear: none;
    }

    .l-blockGrid--clear.l-blockGrid--10up--narrow > li:nth-of-type(10n+1) {
        clear: left;
    }

    .l-blockGrid--clear.l-blockGrid--11up--narrow > li:nth-of-type(1n+1) {
        clear: none;
    }

    .l-blockGrid--clear.l-blockGrid--11up--narrow > li:nth-of-type(11n+1) {
        clear: left;
    }

    .l-blockGrid--clear.l-blockGrid--12up--narrow > li:nth-of-type(1n+1) {
        clear: none;
    }

    .l-blockGrid--clear.l-blockGrid--12up--narrow > li:nth-of-type(12n+1) {
        clear: left;
    }
}

@media screen and (min-width: 47.9375em) {
    .l-blockGrid--clear.l-blockGrid--1up > li:nth-of-type(1n+1) {
        clear: none;
    }

    .l-blockGrid--clear.l-blockGrid--1up > li:nth-of-type(1n+1) {
        clear: left;
    }

    .l-blockGrid--clear.l-blockGrid--2up > li:nth-of-type(1n+1) {
        clear: none;
    }

    .l-blockGrid--clear.l-blockGrid--2up > li:nth-of-type(2n+1) {
        clear: left;
    }

    .l-blockGrid--clear.l-blockGrid--3up > li:nth-of-type(1n+1) {
        clear: none;
    }

    .l-blockGrid--clear.l-blockGrid--3up > li:nth-of-type(3n+1) {
        clear: left;
    }

    .l-blockGrid--clear.l-blockGrid--4up > li:nth-of-type(1n+1) {
        clear: none;
    }

    .l-blockGrid--clear.l-blockGrid--4up > li:nth-of-type(4n+1) {
        clear: left;
    }

    .l-blockGrid--clear.l-blockGrid--5up > li:nth-of-type(1n+1) {
        clear: none;
    }

    .l-blockGrid--clear.l-blockGrid--5up > li:nth-of-type(5n+1) {
        clear: left;
    }

    .l-blockGrid--clear.l-blockGrid--6up > li:nth-of-type(1n+1) {
        clear: none;
    }

    .l-blockGrid--clear.l-blockGrid--6up > li:nth-of-type(6n+1) {
        clear: left;
    }

    .l-blockGrid--clear.l-blockGrid--7up > li:nth-of-type(1n+1) {
        clear: none;
    }

    .l-blockGrid--clear.l-blockGrid--7up > li:nth-of-type(7n+1) {
        clear: left;
    }

    .l-blockGrid--clear.l-blockGrid--8up > li:nth-of-type(1n+1) {
        clear: none;
    }

    .l-blockGrid--clear.l-blockGrid--8up > li:nth-of-type(8n+1) {
        clear: left;
    }

    .l-blockGrid--clear.l-blockGrid--9up > li:nth-of-type(1n+1) {
        clear: none;
    }

    .l-blockGrid--clear.l-blockGrid--9up > li:nth-of-type(9n+1) {
        clear: left;
    }

    .l-blockGrid--clear.l-blockGrid--10up > li:nth-of-type(1n+1) {
        clear: none;
    }

    .l-blockGrid--clear.l-blockGrid--10up > li:nth-of-type(10n+1) {
        clear: left;
    }

    .l-blockGrid--clear.l-blockGrid--11up > li:nth-of-type(1n+1) {
        clear: none;
    }

    .l-blockGrid--clear.l-blockGrid--11up > li:nth-of-type(11n+1) {
        clear: left;
    }

    .l-blockGrid--clear.l-blockGrid--12up > li:nth-of-type(1n+1) {
        clear: none;
    }

    .l-blockGrid--clear.l-blockGrid--12up > li:nth-of-type(12n+1) {
        clear: left;
    }
}

@media screen and (min-width: 125em) {
    .l-blockGrid--clear.l-blockGrid--1up--huge > li:nth-of-type(1n+1) {
        clear: none;
    }

    .l-blockGrid--clear.l-blockGrid--1up--huge > li:nth-of-type(1n+1) {
        clear: left;
    }

    .l-blockGrid--clear.l-blockGrid--2up--huge > li:nth-of-type(1n+1) {
        clear: none;
    }

    .l-blockGrid--clear.l-blockGrid--2up--huge > li:nth-of-type(2n+1) {
        clear: left;
    }

    .l-blockGrid--clear.l-blockGrid--3up--huge > li:nth-of-type(1n+1) {
        clear: none;
    }

    .l-blockGrid--clear.l-blockGrid--3up--huge > li:nth-of-type(3n+1) {
        clear: left;
    }

    .l-blockGrid--clear.l-blockGrid--4up--huge > li:nth-of-type(1n+1) {
        clear: none;
    }

    .l-blockGrid--clear.l-blockGrid--4up--huge > li:nth-of-type(4n+1) {
        clear: left;
    }

    .l-blockGrid--clear.l-blockGrid--5up--huge > li:nth-of-type(1n+1) {
        clear: none;
    }

    .l-blockGrid--clear.l-blockGrid--5up--huge > li:nth-of-type(5n+1) {
        clear: left;
    }

    .l-blockGrid--clear.l-blockGrid--6up--huge > li:nth-of-type(1n+1) {
        clear: none;
    }

    .l-blockGrid--clear.l-blockGrid--6up--huge > li:nth-of-type(6n+1) {
        clear: left;
    }

    .l-blockGrid--clear.l-blockGrid--7up--huge > li:nth-of-type(1n+1) {
        clear: none;
    }

    .l-blockGrid--clear.l-blockGrid--7up--huge > li:nth-of-type(7n+1) {
        clear: left;
    }

    .l-blockGrid--clear.l-blockGrid--8up--huge > li:nth-of-type(1n+1) {
        clear: none;
    }

    .l-blockGrid--clear.l-blockGrid--8up--huge > li:nth-of-type(8n+1) {
        clear: left;
    }

    .l-blockGrid--clear.l-blockGrid--9up--huge > li:nth-of-type(1n+1) {
        clear: none;
    }

    .l-blockGrid--clear.l-blockGrid--9up--huge > li:nth-of-type(9n+1) {
        clear: left;
    }

    .l-blockGrid--clear.l-blockGrid--10up--huge > li:nth-of-type(1n+1) {
        clear: none;
    }

    .l-blockGrid--clear.l-blockGrid--10up--huge > li:nth-of-type(10n+1) {
        clear: left;
    }

    .l-blockGrid--clear.l-blockGrid--11up--huge > li:nth-of-type(1n+1) {
        clear: none;
    }

    .l-blockGrid--clear.l-blockGrid--11up--huge > li:nth-of-type(11n+1) {
        clear: left;
    }

    .l-blockGrid--clear.l-blockGrid--12up--huge > li:nth-of-type(1n+1) {
        clear: none;
    }

    .l-blockGrid--clear.l-blockGrid--12up--huge > li:nth-of-type(12n+1) {
        clear: left;
    }
}

/*
	Tabs

	* Usage:
	<ul class="tabs">
		<li><a href="#tabs-example-1" class="is-active">Tab 1</a></li>
		<li><a href="#tabs-example-2">Tab 2</a></li>
	</ul>

	<!-- Tabs Content -->
	<ul class="l-tabsContent">
		<li id="tabs-example-1" class="is-active">
			Tab 1 content
		</li>

		<li id="tabs-example-2">
			Tab 2 content
		</li>
	</ul>
	========================================================================== */
.tabs {
    margin-bottom: 40px;
    border-bottom: 2px solid #2ecc71;
}

    .tabs:after {
        content: "";
        display: table;
        clear: both;
    }

    .tabs.tabs--alignRight li {
        float: right;
    }

    .tabs.tabs--alignCentre, .tabs.tabs--alignCenter {
        text-align: center;
    }

        .tabs.tabs--alignCentre > li, .tabs.tabs--alignCenter > li {
            display: inline;
            float: none;
        }

    .tabs > li {
        float: left;
        margin: 0 5px;
    }

    .tabs a {
        background-color: #95a5a6;
        border-radius: 4px 4px 0 0;
        color: #fff;
    }

        .tabs a.is-active {
            background-color: #2ecc71;
        }

.l-tabsContent > li {
    display: none;
}

    .l-tabsContent > li.is-active {
        display: block;
    }

/**
 * Skip to main content link
 * <div class="skipToContent"><a href="#mainContent" class="btn btn--primary">Skip to main content</a></div>
 */
.skipToContent {
    position: relative;
    text-align: center;
    height: 0;
}

    .skipToContent a {
        position: relative;
        top: -100px;
        z-index: 100;
        background-color: #fff;
        -webkit-transition: all 100ms ease-in-out;
        transition: all 100ms ease-in-out;
    }

        .skipToContent a:focus {
            top: 5px;
        }

/**
 * Your app styles
 * =================================
 * Global styles
 * Example partial for masthead & footer
 * Icons - used in conjunction with grunticon
 */
/**
 * Global app/site styles
 */
body {
    background-color: #fff;
}

/**
 * Default layout container
 */
.l-container {
    padding-left: 50px;
    padding-right: 50px;
    width: 100%;
    max-width: 1436px;
    margin: 0 auto;
}

.lt-ie9 .l-container {
    min-width: 1000px;
}

.l-container--carousel-work {
    padding-left: calc(50px - 10px);
    padding-right: calc(50px - 10px);
    max-width: calc(1436px - 10px);
}

.lt-ie9 .l-container--carousel-work {
    min-width: calc(1000px - 10px);
}

.l-container--wide {
    max-width: 100%;
}

/**
 * Container on tablet
 */
@media screen and (max-width: 70em) {
    .l-container {
        padding-left: 30px;
        padding-right: 30px;
    }
}

/**
 * Container on mobile
 */
@media screen and (max-width: 47.9375em) {
    .l-container {
        padding-left: 25px;
        padding-right: 25px;
    }
}

/**
 * Grid fix
 */
@media screen and (min-width: 47.9375em) {
    .g-col + .g-col:last-child {
        float: left;
    }
}

/*.g-row {
    background-size: 8.458083832% 50px;
    background-image: linear-gradient(90deg, transparent, transparent 82.300884955%, rgba(200, 0, 0, .05) 82.300884955%, rgba(200, 0, 0, 0.05) 100%);
}*/
/**
 * Masthead: Site masthead
 */
.header {
    height: 63px;
    width: 100%;
    position: relative;
    z-index: 1000;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

    .header .btnMenu {
        position: absolute;
        top: 0;
        z-index: 1002;
        display: none;
        -webkit-transition: -webkit-transform .25s ease-in-out;
        transition: transform .25s ease-in-out;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    .header .btnMenu--search {
        display: block;
        right: 64px;
    }

    .header .btnMenu--country {
        display: block;
        right: 0;
        font-size:11px;
    }

    .header.is-up .header-nav, .header.is-up .btnMenu {
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        transform: translateY(-100%);
    }

.header-logo {
    background-color: #e50654;
    display: block;
    width: 238px;
    height: 100%;
    position: relative;
    text-indent: -9999px;
    z-index: 1001;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

    .header-logo:after {
        background-image: url("sprites-2x.png");
        background-repeat: no-repeat;
        background-size: 400px 500px;
        content: ' ';
        display: block;
        position: absolute;
        left: 62px;
        top: 20px;
        width: 154px;
        height: 22px;
    }

/*Header nav*/
.header-nav {
    position: absolute;
    right: 128px;
    left: 128px;
    top: 0;
    text-align: center;
    -webkit-transition: -webkit-transform .25s ease-in-out;
    transition: transform .25s ease-in-out;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    z-index: 2;
}

.header-nav-links {
    background: #fff;
    min-width: 700px;
}

    .header-nav-links li {
        display: inline-block;
    }

    .header-nav-links a {
        color: #333;
        display: block;
        font-size: 14px;
        font-size: 0.6363636364rem;
        line-height: 43px;
        line-height: 1.9545454545rem;
        font-weight: 600;
        text-transform: uppercase;
        padding: 10px 20px;
    }

        .header-nav-links a.is-selected, .header-nav-links a:hover {
            color: #e50654;
        }

/*Header countries*/
.header-countries {
    display: none;
    position: absolute;
    top: 63px;
    width: 100%;
}

    .header-countries.is-active, .slick-dots li.slick-active button.header-countries {
        display: block;
    }

.header-countries-content {
    background: #fff;
    padding: 40px 0;
    margin-top: 1px;
}

    .header-countries-content li {
        font-size: 18px;
        font-size: 0.8181818182rem;
        line-height: 30px;
        line-height: 1.3636363636rem;
    }

    .header-countries-content a {
        color: #666;
    }

        .header-countries-content a.is-selected, .header-countries-content a:hover {
            color: #e50654;
        }

    .header-countries-content:before {
        background: #fff;
        content: ' ';
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        height: 1px;
        width: 63px;
    }

/*Header search*/
.header-search {
    display: none;
    position: absolute;
    left: 238px;
    right: 127px;
    top: 0;
    z-index: 3;
}

    .header-search.is-active, .slick-dots li.slick-active button.header-search {
        display: block;
    }

/*Hidden submit button for IE9*/
.header-search-submit {
    display: block;
    position: absolute;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent;
}

.header-search-form {
    background: #fff;
    padding: 10px;
}

    .header-search-form input {
        height: 43px;
        padding: 10px 20px;
        line-height: 23px;
        line-height: 1.0454545455rem;
    }

        .header-search-form input, .header-search-form input::-webkit-input-placeholder {
            color: #666;
        }

/**
 * Tablet
 */
@media screen and (max-width: 70em) {
    .header {
        height: 48px;
    }

        .header .btnMenu--search {
            right: 49px;
        }

        .header .btnMenu--country {
            right: 0;
        }

    .header-logo {
        width: 180px;
    }

        .header-logo:after {
            background-position: 0 -25px;
            width: 116px;
            height: 17px;
            left: 47px;
            top: 15px;
        }

    .header-countries {
        top: 48px;
    }

    .header-countries-content {
        padding: 30px 0;
    }

        .header-countries-content li {
            font-size: 15px;
            font-size: 0.6818181818rem;
            line-height: 25px;
            line-height: 1.1363636364rem;
        }

        .header-countries-content:before {
            width: 48px;
        }

    .header-nav {
        right: 98px;
        left: 98px;
    }

    .header-nav-links {
        min-width: 530px;
    }

        .header-nav-links a {
            padding: 10px;
            line-height: 28px;
            line-height: 1.2727272727rem;
            font-size: 11px;
            font-size: 0.5rem;
        }

    .header-search {
        left: 180px;
        right: 97px;
    }

    .header-search-form input {
        height: 28px;
        padding: 0px 10px;
        font-size: 14px;
        font-size: 0.6363636364rem;
        line-height: 18px;
        line-height: 0.8181818182rem;
    }
}

/**
 * Mobile
 */
@media screen and (max-width: 47.9375em) {
    .page.is-locked {
        position: absolute;
        top: 0;
        overflow: hidden;
        height: 49px;
        width: 100%;
    }

        .header .btnMenu {
            display: block;
            right: 0;
        }

        .header .btnMenu--search {
            right: 98px;
        }

        .header .btnMenu--country {
            right: 49px;
        }

        .header.is-up .btnMenu {
            -webkit-transform: none;
            -ms-transform: none;
            transform: none;
        }

    .header-logo {
        position: absolute;
        left: 0;
        right: 147px;
        margin-right: 0;
        width: auto;
    }

    .header-nav {
        left: 0;
        right: 0;
        top: 48px;
        display: none;
    }

        .header-nav li {
            display: block;
            border-bottom: 1px solid #e5e5e5;
        }

            .header-nav li a {
                font-size: 28px;
                font-size: 1.2727272727rem;
                line-height: 50px;
                line-height: 2.2727272727rem;
                font-weight: 500;
                padding: 0;
            }

        .header-nav.is-active, .slick-dots li.slick-active button.header-nav {
            display: block;
        }

        .header-nav:before {
            background: #fff;
            content: ' ';
            display: block;
            position: absolute;
            top: 0;
            right: 0;
            height: 1px;
            width: 48px;
        }

    .header-nav-links {
        margin-top: 1px;
        min-width: initial;
        padding: 70px 25px;
    }

    .header-countries-content {
        padding: 12px 0;
    }

        .header-countries-content li {
            font-size: 20px;
            font-size: 0.9090909091rem;
            line-height: 40px;
            line-height: 1.8181818182rem;
        }

        .header-countries-content:before {
            right: 49px;
        }

    .header-search {
        left: 0;
        right: 0;
        top: 48px;
    }

        .header-search:before {
            background: #fff;
            content: ' ';
            display: block;
            position: absolute;
            top: 0;
            right: 98px;
            height: 1px;
            width: 48px;
        }

    .header-search-form {
        margin-top: 1px;
    }
}

/**
 * Footer: Site footer
 */
.footer {
    background: #000;
    padding: 55px 0;
    position: relative;
}

    .footer small {
        font-size: 14px;
        font-size: 0.6363636364rem;
    }

    .footer .btn, .footer .tabs a, .tabs .footer a {
        margin-right: 20px;
    }

.footer-social {
    margin: 0;
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
}

    .footer-social li {
        display: inline-block;
        margin-right: 13px;
        vertical-align: middle;
    }

.footer-nav li {
    font-size: 18px;
    font-size: 0.8181818182rem;
    line-height: 40px;
    line-height: 1.8181818182rem;
    display: block;
    float: left;
    letter-spacing: 0.03em;
}

    .footer-nav li:after {
        content: '|';
        margin: 0 14px;
    }

    .footer-nav li:last-child:after {
        display: none;
    }

.footer-nav a {
    color: #666;
}

    .footer-nav a:hover, .footer-nav a.is-selected {
        color: #fff;
    }

.footer-copy {
    display: block;
    line-height: 40px;
    line-height: 1.8181818182rem;
}

/**
 * Tablet
 */
@media screen and (max-width: 70em) {
    .footer {
        padding: 29px 0;
    }

        .footer small {
            font-size: 12px;
            font-size: 0.5454545455rem;
        }

    .footer-nav li {
        font-size: 15px;
        font-size: 0.6818181818rem;
        line-height: 30px;
        line-height: 1.3636363636rem;
    }

    .footer-copy {
        line-height: 30px;
        line-height: 1.3636363636rem;
    }

    .footer-social li {
        margin-right: 10px;
    }
}

/**
 * Mobile responsive
 */
@media screen and (max-width: 47.9375em) {
    .footer .btn, .footer .tabs a, .tabs .footer a {
        margin-bottom: 10px;
    }

    .footer-nav li {
        float: none;
    }

        .footer-nav li:after {
            display: none;
        }

    .footer-social {
        display: block;
        margin-bottom: 30px;
    }
}

/*
   Icons
   ========================================================================== */
[class^="icon-"], [class*=" icon-"] {
    speak: none;
}

.icon-large {
    display: block;
    width: 120px;
    height: 120px;
}

.icon-small {
    display: inline-block;
    width: 25px;
    height: 25px;
    vertical-align: top;
}

/**
 * Hero: Area at the top of the page often contains a title
 */
.hero {
    background-color: #f5f4f4;
    text-align: center;
}
    .hero .text-section {
        margin-top: 0;
        margin-bottom: 32px;
    }

        .hero .text-section:after {
            bottom: -2px;
        }

    .hero a {
        color: #000;
    }

        .hero a:hover {
            color: #e50654;
        }

    .hero input {
        background-color: #fff;
    }

.hero-title {
    font-size: 2.1rem;
    margin: 0;
}

    .hero-title a {
        color: #fff;
    }

.hero-subtitle {
    margin: 10px 0 0 0;
    text-transform: none;
    letter-spacing: 0.07em;
}

/**
 * Think hero
 */
.hero--think {
    padding: 30px 0 70px 0;
}

/**
 * Hero with bg mutation
 */
.hero--bg {
    position: relative;
    overflow: hidden;
     max-height: 600px;
    line-height: 0;
}

    .hero--bg .l-container {
        position: absolute;
        top: 48px;
        left: 0;
        right: 0;
        bottom: 0;
    }

    .hero--bg .hero-title, .hero--bg .text-section, .hero--bg .text-tag {
        color: #fff;
        text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
    }

    .hero--bg a:hover {
        color: #e50654;
    }

    .hero--bg .text-section {
        line-height: 60px;
        line-height: 2.7272727273rem;
        margin-bottom: 22px;
    }

        .hero--bg .text-section:after {
            border-bottom-color: #fff;
        }

    .hero--bg .hero-title {
        line-height: 1.2;
        margin-bottom: 26px;
    }

    .hero--bg .btn--primary {
        margin: 0 5px 25px 5px;
    }

        .hero--bg .btn--primary:hover {
            color: #000;
        }

    .hero--bg .text-tag {
        display: inline-block;
        padding: 0 7px;
    }

.hero-img {
    display: block;
    width: 100%;
    height: 100%;
}

    .hero-img:after {
        background: rgba(0, 0, 0, 0.2);
        content: ' ';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .hero-img img {
        position: relative;
        width: 100%;
        height: auto;
    }

/**
 * Hero case study mutation
 */

    .hero--casestudy .text-section {
        margin-bottom: 2px;
    }

    .hero--casestudy .hero-title {
        margin-bottom: 19px;
    }

/**
 * Hero regional
 */
    .hero--regional .hero-title {
        font-size: 162px;
        font-size: 7.3636363636rem;
        line-height: 1;
        color: #fff;
    }

    .hero--regional .hero-subtitle {
        font-size: 32px;
        font-size: 1.4545454545rem;
        color: #fff;
    }

/**
 * Hero office mutation
 */
    .hero--office .text-section {
        margin-bottom: 10px;
    }

    .hero--office .hero-title {
        font-size: 160px;
        font-size: 7.2727272727rem;
        margin-bottom: 20px;
    }

    .hero--office .hero-greeting {
        color: #fff;
        display: block;
        font-size: 31px;
        font-size: 1.4090909091rem;
        line-height: 52px;
        line-height: 2.3636363636rem;
        letter-spacing: 0.01em;
    }

/**
 * Hero carousel mutation
 */
.carousel .hero {
    overflow: hidden;
}

    .carousel .hero .hero-img {
        background-attachment: scroll;
    }

/**
 * Content overlaps hero
 */
.hero--bg + .l-container {
    margin-top: -112px;
    padding-top: 40px;
    padding-bottom: 40px;
}

    .hero--bg + .l-container > .g-row:first-child {
        position: relative;
    }

        .hero--bg + .l-container > .g-row:first-child .g-col {
            margin-top: 20px;
        }

        .hero--bg + .l-container > .g-row:first-child:before {
            background: #fff;
            content: ' ';
            display: block;
            position: absolute;
            height: 112px;
            width: 86.0778443114%;
            margin-left: -43.0389221557%;
            left: 50%;
            top: 0;
        }

/**
 * Tablet responsive
 */
@media screen and (max-width: 70em) {
        .hero .text-section {
            line-height: 32px;
            line-height: 2.4545454545rem;
        }

    .hero--bg {
        min-height: inherit;
        height: auto;
    }

        .hero--bg .text-section {
            line-height: 1.4545454545rem;
        }

    .hero--bg {
        min-height: inherit;
        height: auto;
    }

    .carousel .hero {
        min-height: unset;
    }

        .carousel .hero .hero-title {
            margin-bottom: 15px;
            text-overflow: ellipsis;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            font-size: 1.9em;
        }

        .carousel .hero .btn--primary {
            margin-bottom: 10px;
        }

    .hero--office {
        height: 410px;
    }

        .hero--office .text-section {
            margin-bottom: 0;
        }

        .hero--office .hero-title {
            font-size: 130px;
            font-size: 5.9090909091rem;
            margin-bottom: -21px;
        }

        .hero--office .hero-greeting {
            font-size: 25px;
            font-size: 1.1363636364rem;
            line-height: 42px;
            line-height: 1.9090909091rem;
        }

    .hero--regional .hero-title {
        font-size: 81px;
        font-size: 3.6818181818rem;
    }

    .hero--bg + .l-container {
        margin-top: -87px;
    }

        .hero--bg + .l-container > .g-row:first-child .g-col {
            margin-top: 0;
        }

        .hero--bg + .l-container > .g-row:first-child:before {
            height: 87px;
        }

    .hero-subtitle {
        font-size: 14px;
        font-size: 0.6363636364rem;
    }
}

/**
 * Mobile responsive
 */
@media screen and (max-width: 47.9375em) {
 
  .hero-img {
        background-position: 50%;
        background-attachment: scroll;
    }   

        .hero--bg .hero-title {
            margin-bottom: 16px;
        }

        .hero--bg .btnDownload {
            display: none;
        }

    .hero--think {
        padding-bottom: 68px;
    }
    
    .hero--bg + .l-container {
        margin-top: 0;
        padding-top: 0;
    }

        .hero--bg + .l-container .g-row:first-child:before {
            display: none;
        }

    .hero--office {
        height: auto;
    }

        .hero--office .text-section {
            margin-bottom: 5px;
        }

        .hero--office .hero-title {
            font-size: 60px;
            font-size: 2.7272727273rem;
            line-height: 1.1;
            margin: 0;
        }

        .hero--office .hero-greeting {
            font-size: 18px;
            font-size: 0.8181818182rem;
            line-height: 30px;
            line-height: 1.3636363636rem;
        }

    .hero--regional .hero-title {
        font-size: 40px;
        font-size: 1.8181818182rem;
    }

    .hero--regional .hero-subtitle {
        font-size: 16px;
        font-size: 0.7272727273rem;
    }

    .hero-subtitle {
        margin-top: 5px;
    }
}

/**
 * Content tile
 */
.contentTile {
    position: relative;
    overflow: hidden;
}

.contentTile-img {
    display: block;
    padding-bottom: 56.25%;
    position: relative;
    overflow: hidden;
}

    .contentTile-img:before {
        content: ' ';
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        -webkit-transition: background-color 0.4s;
        transition: background-color 0.4s;
        z-index: 2;
    }

    .contentTile-img img, .contentTile-img picture {
        display: block;
    }

    .contentTile-img picture {
        position: absolute;
        width: 100%;
        height: 100%;
        -webkit-transition: -webkit-transform 0.4s;
        transition: transform 0.4s;
    }

        .contentTile-img picture:before {
            background: -webkit-linear-gradient(top, transparent 30%, rgba(0, 0, 0, 0.35) 60%, rgba(0, 0, 0, 0.55) 90%);
            background: linear-gradient(to bottom, transparent 30%, rgba(0, 0, 0, 0.35) 60%, rgba(0, 0, 0, 0.55) 90%);
            content: ' ';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .contentTile-img picture img {
            width: 100%;
            height: 100%;
        }

.contentTile-copy {
    color: #fff;
    position: absolute;
    left: 50px;
    right: 50px;
    bottom: 30px;
}

    .contentTile-copy .contentTile-copy-section, .contentTile-copy .contentTile-copy-title, .contentTile-copy .text-tag {
        position: relative;
        z-index: 3;
    }

        .contentTile-copy .contentTile-copy-section, .contentTile-copy .contentTile-copy-section *, .contentTile-copy .contentTile-copy-title, .contentTile-copy .contentTile-copy-title *, .contentTile-copy .text-tag, .contentTile-copy .text-tag * {
            color: #fff;
        }

            .contentTile-copy .contentTile-copy-section:hover, .contentTile-copy .contentTile-copy-title:hover, .contentTile-copy .text-tag:hover {
                opacity: 1 !important;
            }

    .contentTile-copy .text-tag {
        display: inline-block;
        padding: 10px 10px 0 0;
    }

.contentTile-copy-section {
    display: inline-block;
    font-size: 14px;
    font-size: 0.6363636364rem;
    line-height: 55px;
    line-height: 2.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.contentTile-copy-section--event {
    background: #e50654;
    margin-left: -50px;
    padding-left: 50px;
    padding-right: 15px;
    line-height: 40px;
    line-height: 1.8181818182rem;
    margin-bottom: 12px;
}

.contentTile-copy-title {
    display: block;
    padding-bottom: 10px;
}

    .contentTile-copy-title .gamma {
        margin: 0;
    }

.contentTile:hover .contentTile-img:before {
    background: rgba(0, 0, 0, 0.65);
}

.contentTile:hover .contentTile-img picture {
    -webkit-transform: scale(1.05, 1.05);
    -ms-transform: scale(1.05, 1.05);
    transform: scale(1.05, 1.05);
}

.contentTile:hover .text-tag, .contentTile:hover .contentTile-copy-section {
    opacity: 0.5;
}

.contentTile-copy:hover .contentTile-copy-title {
    opacity: 0.5;
}

/*
 * Extra details under tile
 */
.contentTile-details {
    margin: 23px 0 50px -30px;
}

    .contentTile-details ul li {
        list-style: none;
    }

/**
 * Animation
 */
.is-animated {
    -webkit-transition: -webkit-transform 0.5s, opacity 0.5s;
    transition: transform 0.5s, opacity 0.5s;
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

    .is-animated.is-invisible {
        visibility: visible;
        opacity: 0;
        -webkit-transform: translateY(55px);
        -ms-transform: translateY(55px);
        transform: translateY(55px);
    }

.contentTile--tweet {
    padding-bottom: 56.25%;
}

    .contentTile--tweet .contentTile-copy-section, .contentTile--tweet .contentTile-copy-title, .contentTile--tweet .text-tag {
        color: #000 !important;
    }

    .contentTile--tweet .contentTile-copy-title {
        font-size: 24px;
        font-size: 1.0909090909rem;
        margin: 0;
    }

        .contentTile--tweet .contentTile-copy-title:before {
            content: ' ';
            background-image: url("sprites-2x.png");
            background-repeat: no-repeat;
            background-size: 400px 500px;
            display: block;
            background-position: -225px -125px;
            height: 32px;
            width: 38px;
            margin-bottom: 23px;
        }

    .contentTile--tweet .text-tag {
        padding-top: 10px;
    }

    .contentTile--tweet:hover .text-tag, .contentTile--tweet:hover .contentTile-copy-title {
        opacity: 1;
    }

    .contentTile--tweet a {
        color: #000 !important;
    }

        .contentTile--tweet a:hover {
            color: #e50654 !important;
        }

.contentTitle--news time {
    display: block;
    font-weight: 500;
    font-size: 14px;
    font-size: 0.6363636364rem;
    line-height: 26px;
    line-height: 1.1818181818rem;
    text-transform: uppercase;
}

.contentTitle--news .contentTile-copy-title {
    padding-bottom: 0;
}

.contentTitle--cta {
    background: #494948;
}

    .contentTitle--cta:hover .contentTile-copy-title, .contentTitle--cta:hover .text-tag {
        opacity: 1;
    }

/**
 * Tablet responsive
 */
@media screen and (max-width: 70em) {
    .contentTile-copy {
        left: 30px;
        right: 30px;
        bottom: 15px;
    }

        .contentTile-copy .contentTile-copy-section {
            font-size: 12px;
            font-size: 0.5454545455rem;
            line-height: 40px;
        }

        .contentTile-copy .contentTile-copy-section--event {
            line-height: 35px;
            line-height: 1.5909090909rem;
            margin-bottom: 10px;
        }

        .contentTile-copy .contentTile-copy-title {
            padding-bottom: 5px;
        }

        .contentTile-copy .text-tag {
            padding-top: 0;
        }

    .contentTile--tweet .contentTile-copy-title {
        font-size: 15px;
        font-size: 0.6818181818rem;
    }

        .contentTile--tweet .contentTile-copy-title:before {
            background-position: -275px -125px;
            height: 20px;
            width: 24px;
            margin-bottom: 12px;
        }

    .contentTitle--news time {
        font-size: 12px;
        font-size: 0.5454545455rem;
        line-height: 24px;
        line-height: 1.0909090909rem;
    }

    .contentTile-details {
        margin: 20px 30px 30px 30px;
    }
}

/**
 * Mobile responsive
 */
@media screen and (max-width: 47.9375em) {
    .contentTile-copy {
        left: 25px;
        right: 25px;
        bottom: 10px;
    }

        .contentTile-copy .contentTile-copy-section--event {
            line-height: 30px;
            line-height: 1.3636363636rem;
        }

    .contentTile--tweet .contentTile-copy-title {
        font-size: 13px;
        font-size: 0.5909090909rem;
    }

    .contentTile--office {
        background: transparent !important;
    }

        .contentTile--office .contentTile-img {
            display: none;
        }

        .contentTile--office .contentTile-copy {
            position: relative;
            bottom: 0;
        }

            .contentTile--office .contentTile-copy .contentTile-copy-title {
                margin-top: 15px;
                padding-bottom: 0;
            }

                .contentTile--office .contentTile-copy .contentTile-copy-title * {
                    color: #e50654;
                }

    .contentTile-details {
        border-bottom: 1px solid #e5e5e5;
        margin: 5px 10px 0 10px;
        padding: 0 15px;
    }

    li:last-child .contentTile-details {
        border-bottom: 0;
        margin-bottom: 40px;
    }
}

/**
 * Paging: Component usually appears after article list
 */
@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.paging {
    -webkit-transition: padding-top 0.2s linear;
    transition: padding-top 0.2s linear;
}

    .paging .form-controlGroup {
        margin-top: 0;
    }

.paging--loading {
    position: relative;
    padding-top: 40px;
}

    .paging--loading:after {
        content: '';
        display: block;
        position: absolute;
        left: 50%;
        top: 20px;
        margin-left: -15px;
        width: 30px;
        height: 30px;
        border: 1px solid #000;
        border-radius: 50%;
        border-right-color: transparent;
        -webkit-animation: rotate 0.5s infinite linear;
        animation: rotate 0.5s infinite linear;
    }

.paging-title {
    color: #000;
    font-size: 26px;
    font-size: 1.1818181818rem;
    line-height: 40px;
    line-height: 1.8181818182rem;
}

.popup__redirect {
    position: fixed;
    z-index: 99999;
    top: 50%;
    left: 50%;
    display: none;
    width: 700px;
    min-height: 314px;
    padding: 40px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    background-color: #494948;
}

@media screen and (max-width: 47.9375em) {
    .popup__redirect {
        width: 100%;
    }
}

.popup__redirect .redirect__title {
    font-weight: 500;
    margin-bottom: 35px;
    text-transform: uppercase;
    color: white;
    font-size: 32px;
    font-size: 1.4545454545rem;
}

.popup__redirect .redirect__description {
    color: white;
    font-size: 18px;
    font-size: 0.8181818182rem;
}

.popup__redirect .btn__redirect {
    color: white;
    border-color: white;
}

.popup__redirect .btn__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    border: 0;
    background-image: url("btn-close.png");
    background-repeat: no-repeat;
    background-size: 100%;
}

/**
 * Secondary: Area at the bottom of the page often contains a CTA or secondary content
 */
.secondary {
    background: #f5f4f4;
    padding: 40px 0;
    text-align: center;
}

/**
 * Tablet
 */
@media screen and (max-width: 70em) {
    .secondary {
        padding: 30px 0 20px 0;
    }

        .secondary .text-sectiontitle:first-child {
            margin-top: 0;
        }
}

/**
 * Mobile responsive
 */
@media screen and (max-width: 47.9375em) {
    .secondary {
        padding-bottom: 0;
    }
}

/**
 * Filters
 */
.filters {
    padding-top: 4px;
    position: relative;
}

    .filters .btnRefine {
        display: block;
        position: absolute;
        top: -50px;
        left: 0;
        right: 0;
        margin: auto;
    }

    .filters .g-col + .g-col:last-child {
        float: left;
    }

.filter-tags {
    border-bottom: 1px solid #e5e5e5;
}

    .filter-tags .btnClear {
        float: right;
        margin: 20px 0;
    }

.filter-tags-selected:after {
    content: "";
    display: table;
    clear: both;
}

.filter-tags-selected .btnTag {
    margin-right: 20px;
    vertical-align: baseline;
}

    .filter-tags-selected .btnTag:first-child {
        margin-top: 20px;
    }

    .filter-tags-selected .btnTag:last-child {
        margin-bottom: 20px;
    }

.filter-mobileActions, .filter-total {
    display: none;
}

/*
 * Filters lists
 */
.filter-lists {
    max-height: 400px;
    overflow: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition: max-height 1s ease;
    transition: max-height 1s ease;
    will-change: max-height;
}

    .filter-lists.is-hidden {
        display: block !important;
        visibility: visible !important;
        max-height: 0;
    }

.filters-title {
    color: #000;
    font-size: 26px;
    font-size: 1.1818181818rem;
    line-height: 40px;
    line-height: 1.8181818182rem;
    padding-top: 30px;
    margin-bottom: 10px;
}

.filters-list {
    list-style: none;
    margin-bottom: 40px;
}

    .filters-list:after {
        content: "";
        display: table;
        clear: both;
    }

    .filters-list li {
        display: block;
        float: left;
        width: 100%;
    }

    .filters-list input {
        display: none;
    }

    .filters-list label {
        cursor: pointer;
        display: block;
        font-size: 18px;
        font-size: 0.8181818182rem;
        line-height: 20px;
        line-height: 0.9090909091rem;
        margin: 5px 0;
        font-weight: 400;
    }

        .filters-list label:hover {
            color: #e50654;
        }

    .filters-list input:checked + label {
        color: #e50654;
    }

/*
 * Filters people
 */
.filters--people {
    margin: 30px 0;
    padding: 0;
    text-align: center;
}

    .filters--people .filters-list {
        margin: 0;
    }

        .filters--people .filters-list li {
            display: inline-block;
            float: none;
            width: auto;
            margin: 0 15px;
            line-height: 50px;
            line-height: 2.2727272727rem;
            vertical-align: middle;
        }

        .filters--people .filters-list label {
            margin: 0;
            line-height: 50px;
            line-height: 2.2727272727rem;
        }

/**
 * Tablet
 */
@media screen and (max-width: 70em) {
    .filters {
        padding-top: 2px;
    }

    .filters-title {
        font-size: 22px;
        font-size: 1rem;
        line-height: 34px;
        line-height: 1.5454545455rem;
        padding: 20px 0 0 0;
    }

    .filters-list {
        margin-bottom: 30px;
    }

        .filters-list label {
            font-size: 15px;
            font-size: 0.6818181818rem;
            line-height: 17px;
            line-height: 0.7727272727rem;
        }

            .filters-list label:hover {
                color: inherit;
            }

    .filter-tags .btnClear {
        margin: 10px 0;
    }

    .filter-tags-selected .btnTag:first-child {
        margin-top: 10px;
    }

    .filter-tags-selected .btnTag:last-child {
        margin-bottom: 10px;
    }

    .filters--people .filters-list li {
        margin: 0 10px;
        line-height: 38px;
        line-height: 1.7272727273rem;
    }

    .filters--people .filters-list label {
        font-size: 14px;
        font-size: 0.6363636364rem;
        line-height: 38px;
        line-height: 1.7272727273rem;
    }
}

/**
 * Mobile responsive
 */
@media screen and (max-width: 47.9375em) {
    .filters .g-col + .g-col:last-child {
        float: none;
    }

    .filters.is-hidden {
        padding-bottom: 0;
    }

    .filter-total {
        display: inline;
    }

    .filter-tags {
        display: none;
    }

    .filter-mobileActions {
        border-bottom: 1px solid #e5e5e5;
        display: block;
        padding: 17px 0;
        margin-bottom: 12px;
    }

        .filter-mobileActions .btn, .filter-mobileActions .tabs a, .tabs .filter-mobileActions a {
            width: 48%;
        }

            .filter-mobileActions .btn:last-child, .filter-mobileActions .tabs a:last-child, .tabs .filter-mobileActions a:last-child {
                float: right;
            }

    .btnRefine.is-active:after, .slick-dots li.slick-active button.btnRefine:after {
        display: none;
    }

    .filter-lists {
        max-height: initial;
        padding-bottom: 20px;
    }

        .filter-lists.is-hidden {
            padding-bottom: 0;
        }

    .filters-list {
        display: none;
        margin-bottom: 20px;
    }

        .filters-list label {
            font-size: 20px;
            font-size: 0.9090909091rem;
            line-height: 30px;
            line-height: 1.3636363636rem;
        }

    .is-active + .filters-list, .slick-dots li.slick-active button + .filters-list {
        display: block;
    }

    .filters-title {
        font-size: 28px;
        font-size: 1.2727272727rem;
        line-height: 45px;
        line-height: 2.0454545455rem;
        padding: 0;
        margin: 0;
        position: relative;
        cursor: pointer;
    }

        .filters-title:after {
            background-image: url("sprites-2x.png");
            background-repeat: no-repeat;
            background-size: 400px 500px;
            background-position: -150px -50px;
            content: ' ';
            display: block;
            height: 12px;
            width: 8px;
            position: absolute;
            right: 0;
            top: 19px;
        }

        .filters-title.is-active:after, .slick-dots li.slick-active button.filters-title:after {
            background-position: -125px -50px;
        }
}

/**
 * Article thumbnail: Related content
 */
.contentThumbnail {
    margin-bottom: 80px;
    padding: 10px 0;
    text-align: left;
}

    .contentThumbnail .text-tag {
        margin-right: 10px;
    }

    .contentThumbnail .contentThumbnail-title a, .contentThumbnail .text-tag {
        color: #000;
    }

        .contentThumbnail .contentThumbnail-title a:hover, .contentThumbnail .text-tag:hover {
            color: #e50654;
        }

.contentThumbnail-title {
    font-size: 26px;
    font-size: 1.1818181818rem;
    margin: 0 0 8px 0;
}

    .contentThumbnail-title small {
        font-size: 18px;
        font-size: 0.8181818182rem;
        line-height: 32px;
        line-height: 1.4545454545rem;
    }

.contentThumbnail-img {
    display: block;
    padding-bottom: 56.25%;
    position: relative;
    margin-bottom: 16px;
}

    .contentThumbnail-img img {
        position: absolute;
        top: 0;
        left: 0;
    }

.contentThumbnail-section {
    font-size: 16px;
    font-size: 0.7272727273rem;
    line-height: 40px;
    line-height: 1.8181818182rem;
    font-weight: 500;
    text-transform: uppercase;
    display: block;
}

    .contentThumbnail-section, .contentThumbnail-section:link, .contentThumbnail-section:visited {
        color: #878787;
    }

        .contentThumbnail-section:hover {
            color: #e50654;
        }

.contentThumbnail-teaser {
    font-size: 18px;
    font-size: 0.8181818182rem;
    line-height: 24px;
    line-height: 1.0909090909rem;
}

    .contentThumbnail-teaser, .contentThumbnail-teaser:link, .contentThumbnail-teaser:visited {
        color: #666;
    }

        .contentThumbnail-teaser:hover {
            color: #e50654;
        }

.contentThumbnail-category {
    font-size: 18px;
    font-size: 0.8181818182rem;
    line-height: 24px;
    line-height: 1.0909090909rem;
    font-weight: 400;
    color: #000;
    margin-bottom: 8px;
}

.contentThumbnail-see-more {
    font-size: 14px;
    font-size: 0.6363636364rem;
    line-height: 40px;
    line-height: 1.8181818182rem;
    font-weight: 500;
    text-transform: uppercase;
    color: #e50654;
}

.contentThumbnail--guttered {
    padding: 12px 32px;
}

/**
 * Article thumbnail: large version used on home page
 */
.contentThumbnail--large {
    margin-bottom: 20px;
    display: block;
    text-align: center;
}

    .contentThumbnail--large .contentThumbnail-img {
        border-bottom: 1px solid #e5e5e5;
        display: block;
        padding: 0;
        margin: 0 0 20px 0;
    }

    .contentThumbnail--large .contentThumbnail-teaser {
        color: #666;
    }

    .contentThumbnail--large .contentThumbnail-title {
        font-size: 34px;
        font-size: 1.5454545455rem;
        line-height: 48px;
        line-height: 2.1818181818rem;
        font-weight: 400;
        margin: 0 0 15px 0;
    }

    .contentThumbnail--large .contentThumbnail-teaser {
        font-size: 18px;
        font-size: 0.8181818182rem;
        line-height: 24px;
        line-height: 1.0909090909rem;
    }

    .contentThumbnail--large:hover .contentThumbnail-title {
        color: #e50654;
    }

.contentThumbnail--email {
    margin-bottom: 0;
}

    .contentThumbnail--email .contentThumbnail-teaser {
        margin-bottom: 0 !important;
    }

/**
 * Tablet responsive
 */
@media screen and (max-width: 70em) {
    .contentThumbnail {
        padding: 5px 0;
    }

        .contentThumbnail .contentThumbnail-title {
            font-size: 20px;
            font-size: 0.9090909091rem;
            line-height: 26px;
            line-height: 1.1818181818rem;
            margin-bottom: 0;
        }

        .contentThumbnail .contentThumbnail-img {
            margin-bottom: 6px;
        }

        .contentThumbnail .contentThumbnail-section {
            font-size: 12px;
            font-size: 0.5454545455rem;
            line-height: 36px;
            line-height: 1.6363636364rem;
        }

    .contentThumbnail--large .contentThumbnail-img {
        margin-bottom: 12px;
    }

    .contentThumbnail--large .contentThumbnail-title {
        font-size: 23px;
        font-size: 1.0454545455rem;
        line-height: 32px;
        line-height: 1.4545454545rem;
        margin-bottom: 3px;
    }

    .contentThumbnail--large .contentThumbnail-teaser {
        font-size: 16px;
        font-size: 0.7272727273rem;
        line-height: 21px;
        line-height: 0.9545454545rem;
    }

    .contentThumbnail--large .contentThumbnail-category {
        font-size: 16px;
        font-size: 0.7272727273rem;
        line-height: 21px;
        line-height: 0.9545454545rem;
    }
}

/**
 * Mobile responsive
 */
@media screen and (max-width: 47.9375em) {
    .contentThumbnail {
        padding: 0;
        margin-bottom: 30px;
    }

    .contentThumbnail--large {
        padding: 5px 0;
        margin-bottom: 0;
    }

        .contentThumbnail--large .contentThumbnail-img {
            margin-left: auto;
            margin-right: auto;
        }

    .contentThumbnail-title small {
        font-size: 12px;
        font-size: 0.5454545455rem;
        line-height: 32px;
        line-height: 1.4545454545rem;
    }
}

/**
 * Share: obvs
 */
.share {
    float: left;
}

    .share .btnSocial {
        float: left;
        margin-right: 13px;
    }

.share-title {
    color: #000;
    display: block;
    font-size: 14px;
    font-size: 0.6363636364rem;
    line-height: 40px;
    line-height: 1.8181818182rem;
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.share--signup {
    margin: 0 46px 0 0;
    text-align: center;
}

/**
 * Tablet
 */
@media screen and (max-width: 70em) {
    .share {
        float: none;
    }

        .share .btnSocial {
            margin-right: 10px;
        }

    .share-title {
        font-size: 13px;
        font-size: 0.5909090909rem;
        line-height: 32px;
        line-height: 1.4545454545rem;
    }

    .share--signup {
        margin: 0 0 10px 0;
        text-align: left;
    }
}

/**
 * Mobile responsive
 */
@media screen and (max-width: 47.9375em) {
    .share-title {
        font-size: 12px;
        font-size: 0.5454545455rem;
        line-height: 30px;
        line-height: 1.3636363636rem;
    }

    .share .btnSocial {
        margin-right: 8px;
    }

        .share .btnSocial:last-child {
            margin-right: 0;
        }
}

/**
 * Carousel component styles
 */
.carousel {
    position: relative;
}

.carousel-controls {
    text-align: center;
}

.carousel-controls-page, .slick-dots li button {
    position: relative;
    width: 53px;
    height: 50px;
    margin: 13px 6px 0 6px;
    padding: 0;
    text-indent: -9999px;
    border: 0;
    background: transparent;
}

    .carousel-controls-page:after, .slick-dots li button:after {
        position: absolute;
        top: 50%;
        left: 0;
        display: block;
        width: 100%;
        height: 6px;
        content: ' ';
        background: #cccccc;
    }

    .carousel-controls-page.is-active, .slick-dots li button.is-active, .slick-dots li.slick-active button, .carousel-controls-page:hover, .slick-dots li button:hover {
        content: '  ';
        outline: 0;
        background: transparent;
    }

        .carousel-controls-page.is-active:after, .slick-dots li button.is-active:after, .slick-dots li.slick-active button:after, .carousel-controls-page:hover:after, .slick-dots li button:hover:after {
            content: '  ';
            background: #e50654;
        }

/*
 * Carousel articles mutation
 */
.carousel--articles .carousel-controls {
    position: absolute;
    bottom: 62px;
    width: 100%;
}

.carousel--articles .carousel-controls-page, .carousel--articles .slick-dots li button, .slick-dots li .carousel--articles button {
    width: 51px;
}

    .carousel--articles .carousel-controls-page:after, .carousel--articles .slick-dots li button:after, .slick-dots li .carousel--articles button:after {
        height: 5px;
        background: #fff;
    }

    .carousel--articles .carousel-controls-page.is-active:after, .carousel--articles .slick-dots li button.is-active:after, .slick-dots li .carousel--articles button.is-active:after, .carousel--articles .slick-dots li.slick-active button:after, .slick-dots li.slick-active .carousel--articles button:after, .carousel--articles .carousel-controls-page:hover:after, .carousel--articles .slick-dots li button:hover:after, .slick-dots li .carousel--articles button:hover:after {
        background: #e50654;
    }

/*
 * Swipe js lib styles
 */
.swipe {
    position: relative;
    overflow: hidden;
}

.swipe-wrap {
    position: relative;
    overflow: hidden;
}

    .swipe-wrap > div {
        position: relative;
        float: left;
        width: 100%;
    }

/**
 * Tablet responsive
 */
@media screen and (max-width: 70em) {
    .carousel-controls-page, .slick-dots li button {
        width: 38px;
        height: 44px;
        margin: 0 5px 0 5px;
    }

        .carousel-controls-page:after, .slick-dots li button:after {
            height: 4px;
        }

    .carousel--articles .carousel-controls {
        bottom: 20px;
    }

    .carousel--articles .carousel-controls-page, .carousel--articles .slick-dots li button, .slick-dots li .carousel--articles button {
        width: 38px;
    }

        .carousel--articles .carousel-controls-page:after, .carousel--articles .slick-dots li button:after, .slick-dots li .carousel--articles button:after {
            height: 4px;
        }
}

/* Slider */
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

    .slick-list:focus {
        outline: none;
    }

    .slick-list.dragging {
        cursor: pointer;
        cursor: hand;
    }

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}

    .slick-track:before, .slick-track:after {
        display: table;
        content: '';
    }

    .slick-track:after {
        clear: both;
    }

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

.slick-dots li {
    display: inline-block;
    list-style-type: none;
}

/* Arrows */
.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    z-index: 10;
    display: block;
    width: 50px;
    height: 50px;
    margin-top: -10px\9;
    /*lte IE 8*/
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
    background-size: 100%;
}

@media screen and (max-width: 25em) {
    .slick-prev,
    .slick-next {
        width: 37.5px;
        height: 37.5px;
    }
}

.slick-prev.slick-disabled,
.slick-next.slick-disabled {
    opacity: 0;
}

.slick-prev {
    left: -25px;
    background-image: url(btn-carousel-back.jpg);
}

@media screen and (max-width: 70em) {
    .slick-prev {
        left: 0;
    }
}

.slick-next {
    right: -25px;
    background-image: url(btn-carousel-next.jpg);
}

@media screen and (max-width: 70em) {
    .slick-next {
        right: 0;
    }
}

/**
    Testimonials
 */
.testimonials {
    border-top: 2px solid #cccccc;
    margin: 40px 0 10px 0;
}

    .testimonials blockquote {
        margin: 0 0 6px 0 !important;
    }

        .testimonials blockquote:before {
            display: none;
        }

        .testimonials blockquote p {
            font-size: 31px;
            font-size: 1.4090909091rem;
            line-height: 50px;
            line-height: 2.2727272727rem;
        }

    .testimonials cite {
        display: block;
        padding: 15px 0;
    }

    .testimonials li:last-child blockquote {
        margin: 0;
    }

        .testimonials li:last-child blockquote:after {
            display: none;
        }

    .testimonials li:last-child cite {
        padding-bottom: 0;
    }

.testimonial-job {
    color: #666;
    display: block;
    text-transform: none;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 28px;
    line-height: 1.2727272727rem;
}

/**
 * Tablet
 */
@media screen and (max-width: 70em) {
    .testimonials {
        margin-top: 20px;
    }

        .testimonials blockquote p {
            font-size: 25px;
            font-size: 1.1363636364rem;
            line-height: 40px;
            line-height: 1.8181818182rem;
        }
}

/**
 * Mobile responsive
 */
@media screen and (max-width: 47.9375em) {
    .testimonials {
        margin: 17px 0 10px 0;
    }

        .testimonials blockquote {
            margin: 0 0 2px 0 !important;
        }

            .testimonials blockquote p {
                font-size: 15px;
                font-size: 0.6818181818rem;
                line-height: 23px;
                line-height: 1.0454545455rem;
            }

        .testimonials cite {
            padding: 9px 0 2px 0;
        }

    .testimonial-job {
        line-height: 20px;
        line-height: 0.9090909091rem;
    }
}

/**
    Awards Credits
 */
.awardsCredits {
    border-top: 2px solid #cccccc;
    padding-top: 53px;
}

/**
 * Tablet
 */
@media screen and (max-width: 70em) {
    .awardsCredits {
        padding-top: 40px;
        font-size: 18px;
        font-size: 0.8181818182rem;
    }
}

/**
 * Mobile responsive
 */
@media screen and (max-width: 47.9375em) {
    .awardsCredits {
        font-size: 13px;
        font-size: 0.5909090909rem;
    }
}

/**
 * Intro:
 */
.intro {
    margin: 67px 0;
}

.intro, .intro p {
   letter-spacing: 0.07em;
}
.intro li{
    margin: 0 0 0 30px;
}

/**
 * Tablet
 */
@media screen and (max-width: 70em) {
    .intro {
        margin: 40px 0;
    }
}

/**
 * Issue thumbnail
 */
.issueThumbnail {
    background: #f5f4f4;
    margin-bottom: 60px;
}

    .issueThumbnail a {
        display: block;
    }

    .issueThumbnail:hover .issueThumbnail-img:after {
        background: rgba(0, 0, 0, 0.5);
    }

    .issueThumbnail:hover .issueThumbnail-title {
        color: #e50654;
    }

.issueThumbnail-img {
    display: block;
    position: relative;
}

    .issueThumbnail-img:after {
        content: ' ';
        display: block;
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
        -webkit-transition: background-color 0.4s;
        transition: background-color 0.4s;
        z-index: 2;
    }

    .issueThumbnail-img img {
        display: block;
    }

.issueThumbnail-copy {
    padding: 20px 20px 30px 20px;
}

.issueThumbnail-num {
    color: #666;
    display: block;
    font-size: 16px;
    font-size: 0.7272727273rem;
    line-height: 32px;
    line-height: 1.4545454545rem;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.03em;
}

.issueThumbnail-title {
    color: #000;
    font-size: 26px;
    font-size: 1.1818181818rem;
    line-height: 40px;
    line-height: 1.8181818182rem;
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.01em;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

/**
 * Tablet
 */
@media screen and (max-width: 70em) {
    .issueThumbnail {
        margin-bottom: 30px;
    }

    .issueThumbnail-copy {
        padding: 15px 15px 20px 15px;
    }

    .issueThumbnail-num {
        font-size: 12px;
        font-size: 0.5454545455rem;
        line-height: 24px;
        line-height: 1.0909090909rem;
    }

    .issueThumbnail-title {
        font-size: 20px;
        font-size: 0.9090909091rem;
        line-height: 26px;
        line-height: 1.1818181818rem;
    }
}

/**
 * Profile tile:
 */

.speaker-website {
    word-wrap: break-word;
}

.profileList {
    margin-bottom: 100px;
}

.profileList-item {
    position: relative;
    overflow: hidden;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

    .profileList-item:hover picture {
        -webkit-transform: scale(1.05, 1.05);
        -ms-transform: scale(1.05, 1.05);
        transform: scale(1.05, 1.05);
    }

.profileList-item-img {
    display: block;
    position: relative;
    -webkit-transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
}

    .profileList-item-img:before {
        background: -webkit-linear-gradient(top, transparent 0, rgba(0, 0, 0, 0.1) 30%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.6) 100%);
        background: linear-gradient(to bottom, transparent 0, rgba(0, 0, 0, 0.1) 30%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.6) 100%);
        content: ' ';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .profileList-item-img img {
        display: block;
    }

.profileList-item-copy {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
}

.profileList-item-name {
    color: #fff;
    font-size: 26px;
    font-size: 1.1818181818rem;
    line-height: 34px;
    line-height: 1.5454545455rem;
    letter-spacing: 0.01em;
    margin: 0;
}

.profileList-item-title {
    color: #fff;
    font-size: 18px;
    font-size: 0.8181818182rem;
    line-height: 28px;
    line-height: 1.2727272727rem;
    margin: 0;
}

.profileList-item-company {
    color: #fff;
    font-size: 18px;
    font-size: 0.8181818182rem;
    line-height: 20px;
    line-height: 0.9090909091rem;
    margin: 10px 0 0 0;
}

/**
 * Tablet
 */
@media screen and (max-width: 70em) {
    .profileList {
        margin-bottom: 60px;
    }

    .profileList-item-copy {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }

    .profileList-item-name {
        font-size: 20px;
        font-size: 0.9090909091rem;
        line-height: 24px;
        line-height: 1.0909090909rem;
    }

    .profileList-item-title {
        font-size: 14px;
        font-size: 0.6363636364rem;
        line-height: 20px;
        line-height: 0.9090909091rem;
    }

    .profileList-item-company {
        font-size: 14px;
        font-size: 0.6363636364rem;
        line-height: 18px;
        line-height: 0.8181818182rem;
        margin: 5px 0 0 0;
    }
}

/**
 * Mobile responsive
 */
@media screen and (max-width: 47.9375em) {
    .profileList {
        margin: 0 -25px 40px -25px;
    }

    .profileList-item {
        position: relative;
        overflow: hidden;
        border-right: 0;
        border-bottom: 1px solid #fff;
    }

        .profileList-item:hover picture {
            -webkit-transform: scale(1, 1);
            -ms-transform: scale(1, 1);
            transform: scale(1, 1);
        }

    .profileList-item-img {
        float: left;
        width: 78px;
    }

        .profileList-item-img:before {
            display: none;
        }

    .profileList-item-copy {
        border-top: 1px solid #e5e5e5;
        position: static;
        margin: 0 10px 0 88px;
        height: 78px;
        padding: 10px;
    }

    .profileList-item-name {
        color: #000;
        font-size: 17px;
        font-size: 0.7727272727rem;
        line-height: 27px;
        line-height: 1.2272727273rem;
        margin: 0;
    }

    .profileList-item-title, .profileList-item-company {
        color: #666;
        font-size: 12px;
        font-size: 0.5454545455rem;
        line-height: 14px;
        line-height: 0.6363636364rem;
        margin: 0;
    }
}

.map {
    height: 490px;
}

    .map img, .map object, .map embed, .map video {
        max-width: inherit;
    }

/**
 * Gallery
 */
.gallery {
    text-align: center;
}

.gallery-item a {
    display: block;
    width: 100%;
    padding-bottom: 56.25%;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    display: block;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.lightbox .l-container {
    position: absolute;
    z-index: 1001;
}

.lightbox .l-container {
    position: fixed;
    z-index: 1001;
    left: 0;
    right: 0;
    width: 100%;
}

.lightbox .btnNext, .lightbox .btnPrevious {
    position: fixed;
    top: 50%;
}

.lightbox .btnPrevious {
    left: 50px;
}

.lightbox .btnNext {
    right: 50px;
}

.lightbox .btnClose {
    position: fixed;
    z-index: 1002;
}

.lightbox-mask {
    background: rgba(0, 0, 0, 0.9);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.lightbox-media {
    display: block;
    margin: 0 auto;
    max-height: 540px;
    max-width: 960px;
    width: 100%
}

    .lightbox-media iframe {
        display: block;
    }

.lightbox-caption {
    color: #fff;
    margin: 20px 0 0 0;
    text-align: center;
}

.gallery-image-container {
    padding: 0 60px;
}

/**
 * Tablet
 */
@media screen and (max-width: 70em) {
    .lightbox .l-container {
        padding: 0 70px;
    }

    .lightbox .btnNext, .lightbox .btnPrevious {
        height: 22px;
    }

    .lightbox .btnPrevious {
        left: 10px;
    }

    .lightbox .btnNext {
        right: 10px;
    }

    .lightbox-media {
        max-width: 100%;
        width: 100%
    }

    .lightbox-caption {
        margin-top: 15px;
        font-size: 18px;
        font-size: 0.8181818182rem;
    }
}

/**
 * Mobile responsive
 */
@media screen and (max-width: 47.9375em) {
    #speaker.lightbox .btnPrevious {
        background-size: 628px 500px;
    }

    #speaker.lightbox .btnNext {
        background-size: 550px 500px;
    }

    #speaker .lightbox-mask,
    #gallery lightbox-mask {
        background: #fff;
    }

    .gallery ul {
        margin: 0 -25px 20px -25px;
    }

    .gallery-item {
        border-left: 1px solid #fff;
        border-bottom: 1px solid #fff;
        float: left;
        padding-left: 0 !important;
        width: 50%;
    }

        .gallery-item a {
            margin-bottom: 0;
        }

    .lightbox-caption {
        font-size: 14px;
        font-size: 0.6363636364rem;
    }

    .gallery-image-container {
        padding: 0px;
    }
}

.agenda {
    border-top: 1px solid #e5e5e5;
    padding: 35px 0 10px 0;
}

    .agenda .agenda-tab {
        background: #fff;
        border: 2px solid #cccccc;
        border-radius: 0;
        font-weight: 400;
        letter-spacing: 0.01em;
        display: inline-block;
        padding: 0 0 15px 0;
        -webkit-transition: none;
        transition: none;
        height: 146px;
        width: 120px;
    }

        .agenda .agenda-tab, .agenda .agenda-tab:link, .agenda .agenda-tab:visited {
            color: #cccccc;
        }

            .agenda .agenda-tab:hover, .agenda .agenda-tab.is-active, .agenda .slick-dots li.slick-active button.agenda-tab, .slick-dots li.slick-active .agenda button.agenda-tab {
                background: #fff;
                border-color: #e50654;
                color: #e50654;
            }

                .agenda .agenda-tab:hover .agenda-tab-day, .agenda .agenda-tab.is-active .agenda-tab-day, .agenda .slick-dots li.slick-active button.agenda-tab .agenda-tab-day, .slick-dots li.slick-active .agenda button.agenda-tab .agenda-tab-day {
                    background: #e50654;
                }

            .agenda .agenda-tab:active, .agenda .agenda-tab:focus {
                outline: none;
            }

    .agenda .tabs {
        border-bottom: 0;
    }

        .agenda .tabs > li {
            margin: 0 20px 0 0;
        }

.agenda-tab-day {
    background: #cccccc;
    color: #fff;
    display: block;
    font-size: 14px;
    line-height: 35px;
    font-weight: 500;
    margin: -2px 0 10px 0;
    letter-spacing: 0.07em;
}

.agenda-tab-date {
    display: block;
    font-size: 46px;
    line-height: 60px;
}

.agenda-tab-month {
    font-size: 18px;
    line-height: 24px;
    display: block;
    text-transform: none;
}

.agenda-item-time {
    font-size: 18px;
    width: 100%;
}

.agenda-item {
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 40px;
    display: flex;
}

.agenda-item-time {
    font-size: 18px;
    width: 100%;
}

.agenda-item:after {
    content: "";
    display: table;
    clear: both;
}

.agenda-item-time {
    color: #000;
    float: left;
    clear: left;
    font-weight: 400;
    width: 30%;
}

.agenda-item > div {
    padding-bottom: 40px;
    width: 100%;
}


/**
 * Tablet
 */
@media screen and (max-width: 70em) {
    .agenda .agenda-tab {
        height: 122px;
        width: 100px;
        padding-bottom: 10px;
    }

    .agenda .tabs {
        margin-bottom: 30px;
    }

        .agenda .tabs > li {
            margin-right: 10px;
        }

    .agenda-tab-day {
        font-size: 12px;
        font-size: 0.5454545455rem;
        line-height: 30px;
        line-height: 1.3636363636rem;
        margin-bottom: 5px;
    }

    .agenda-item > div {
        padding-bottom: 40px;
        width: 200%;
    }

    .agenda-item {
        margin-bottom: 30px;
    }

    .agenda-item-time {
        width: 100%;
    }

    .agenda-tab-date {
        font-size: 40px;
        font-size: 1.8181818182rem;
        line-height: 55px;
        line-height: 2.5rem;
    }

    .agenda-item-details {
        width: 100%;
    }

    .agenda-tab-month {
        font-size: 15px;
        font-size: 0.6818181818rem;
        line-height: 20px;
        line-height: 0.9090909091rem;
    }
}

/**
 * Speaker profile overlay.
 */
.speaker .g-row {
    position: relative;
}

    .speaker .g-row:before {
        background: #fff;
        content: ' ';
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        width: 66.1676646707%;
        left: 50%;
        margin-left: -33.0838323353%;
    }

.speaker .btnSocial {
    display: inline-block;
    margin: 10px 10px 10px 0;
    vertical-align: middle;
}

.speaker-header {
    text-align: center;
}

    .speaker-header .text-section {
        margin-top: 38px;
        letter-spacing: 0.01em;
    }

        .speaker-header .text-section:after {
            bottom: -2px;
        }

.speaker-name {
    font-size: 34px;
    font-size: 1.5454545455rem;
    margin: 30px 0 0 0;
}

.speaker-img {
    display: block;
    margin-bottom: 32px;
    max-height: 220px;
}

.speaker-bio {
    padding-bottom: 40px;
}

.speaker-title {
    color: #000;
    display: block;
    font-size: 18px;
    font-size: 0.8181818182rem;
    line-height: 24px;
    line-height: 1.0909090909rem;
    font-weight: 400;
    margin: 16px 0 53px 0;
    padding: 0 5px;
}

/**
 * Mobile responsive
 */
@media screen and (max-width: 47.9375em) {
    #speaker .btnClose {
        background-position: -146px -68px;
    }

    .speaker .g-row {
        background: #fff;
    }

        .speaker .g-row:before {
            display: none;
        }
}

/**
 * Some large pages have subsections with links..
 */
.sectionLinks {
    font-size: 14px;
    font-size: 0.6363636364rem;
    line-height: 32px;
    line-height: 1.4545454545rem;
    letter-spacing: 0.07em;
    text-align: center;
    text-transform: uppercase;
    margin: 40px 0;
    padding: 10px 0 30px 0;
}

    .sectionLinks a {
        color: #333;
        display: inline-block;
        font-weight: 600;
        letter-spacing: 0.01em;
    }

        .sectionLinks a:after {
            display: inline-block;
            content: ' ';
            border-right: 2px solid #333;
            height: 13px;
            margin: 0 20px 2px 25px;
            vertical-align: middle;
        }

        .sectionLinks a:hover {
            color: #e50654;
        }

        .sectionLinks a:last-child:after {
            display: none;
        }

.section {
    border-top: 1px solid #e5e5e5;
    margin-top: 40px;
    padding-top: 75px;
}

    .section .btnTop {
        clear: both;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

.section-shareTitle {
    margin: 80px 0 40px 0;
}

/**
 * Tablet responsive
 */
@media screen and (max-width: 70em) {
    .sectionLinks {
        font-size: 13px;
        font-size: 0.5909090909rem;
        line-height: 27px;
        line-height: 1.2272727273rem;
        margin: 30px 0;
        padding: 0 0 10px 0;
    }

    .section {
        margin-top: 20px;
        padding-top: 55px;
    }

        .section .share {
            float: left;
        }

    .section-shareTitle {
        margin: 40px 0 20px 0;
    }
}

/**
 * Mobile responsive
 */
@media screen and (max-width: 47.9375em) {
    .sectionLinks {
        font-size: 12px;
        font-size: 0.5454545455rem;
        line-height: 25px;
        line-height: 1.1363636364rem;
        margin-top: 22px;
        margin-bottom: 34px;
        padding: 0;
    }

        .sectionLinks a {
            white-space: nowrap;
        }

            .sectionLinks a:after {
                margin: 0 10px 2px 15px;
                border-right: 1px solid #333;
            }

    .section {
        margin-top: 10px;
        padding-top: 30px;
    }

        .section .text-subheading {
            margin-bottom: 20px;
        }

        .section:last-child {
            padding-bottom: 20px;
        }

    .section-shareTitle {
        margin: 30px 0 10px 0;
    }
}

.cookie {
    background: #000;
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 10px 0;
    z-index: 10;
}

    .cookie p {
        color: #fff;
        font-size: 16px;
        font-size: 0.7272727273rem;
        line-height: 1.5;
        margin-bottom: 0;
    }

    .cookie a:hover, .cookie a:focus {
        color: #fff;
    }

/**
 * Tablet responsive
 */
@media screen and (max-width: 70em) {
    .cookie p {
        font-size: 14px;
        font-size: 0.6363636364rem;
    }
}

/**
 * Mobile responsive
 */
@media screen and (max-width: 47.9375em) {
    .cookie p {
        font-size: 13px;
        font-size: 0.5909090909rem;
        width: 75%;
    }

    .cookie .btn, .cookie .tabs a, .tabs .cookie a {
        position: absolute;
        right: 20px;
        top: 10px;
    }
}

@media screen and (max-width: 25em) {
    .sponsor--image {
        max-width: 50%;
        padding: 5px;
    }
    .agenda-item-time {
        font-size: 14px;
        width: 100%;
    }
}

.country-selector {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 60%;
    height: 100%;
    margin: 0 auto;
    padding-top: 90px;
    box-sizing: border-box;
}

    .country-selector:after {
        content: "";
        display: table;
        clear: both;
    }

    .country-selector .country-selector__countries {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .country-selector .country-selector__region {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        -webkit-box-flex: initial;
        -ms-flex-positive: initial;
        flex-grow: initial;
    }

        .country-selector .country-selector__region .region__title {
            font-size: 1.2em;
            font-weight: bold;
            color: black;
        }

        .country-selector .country-selector__region .region__country {
            font-size: .8em;
            margin: 0;
            list-style: none outside none;
        }

            .country-selector .country-selector__region .region__country a {
                color: inherit;
            }

    .country-selector .country-selector--worldwide {
        width: 25%;
    }

        .country-selector .country-selector--worldwide .region__title {
            font-size: .8em;
        }

/**
 * Views
 * =================================
 */
/**
 * Home page:
 */
.home-bottom {
    padding-bottom: 40px;
    padding-top: 40px;
    text-align: center;
    /**
     * Tablet responsive
     */
}

@media screen and (max-width: 70em) {
    .home-bottom {
        padding-bottom: 30px;
        padding-top: 30px;
    }
}

/**
   * Regional header
   */
.regional__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media screen and (max-width: 47.9375em) {
    .regional__header .header-logo {
        position: static;
        margin-right: 1px;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }
}

.regional__header .header-nav {
    position: static;
    margin-right: 1px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

@media screen and (max-width: 47.9375em) {
    .regional__header .header-nav {
        position: absolute;
        -webkit-box-flex: 0;
        -ms-flex: 0;
        flex: 0;
    }
}

.regional__header .btnMenu {
    position: static;
}

.regional__header .btnMenu--country {
    position: static;
    width: 110px;
    /*text-transform: uppercase;*/
}

@media screen and (max-width: 47.9375em) {
    .regional__header .btnMenu--country {
        width: 48px;
        margin-right: 1px;
    }
}

.regional__header .btnMenu--country .btnMenu--country-large {
    display: inline;
}

@media screen and (max-width: 47.9375em) {
    .regional__header .btnMenu--country .btnMenu--country-large {
        display: none;
    }
}

.regional__header .btnMenu--country .btnMenu--country-small {
    display: none;
}

@media screen and (max-width: 47.9375em) {
    .regional__header .btnMenu--country .btnMenu--country-small {
        display: inline;
    }
}

.regional__header .header-countries {
    right: 0;
}

.regional__header .btnMenu--search,
.regional__header .header-search {
    display: none;
}

/**
  * Regional content
  * ================
  * Work
  * Contact
  * People
  * Regional section
  */
.regional {
    /*
     ** Other
     */
}

    .regional .carousel-slick:after {
        content: "";
        display: table;
        clear: both;
    }

    .regional .section__people {
        margin-bottom: 100px;
    }

@media screen and (max-width: 47.9375em) {
    .regional .section__people {
        margin-bottom: 50px;
    }
}

@media screen and (max-width: 47.9375em) {
    .regional .section__people:after {
        display: table;
        clear: both;
        content: '';
    }
}

@media screen and (max-width: 47.9375em) {
    .regional .section__people .l-container {
        padding: 0;
    }
}

.regional .section__people .people__person {
    float: left;
    /*width: 25%;*/
    width: 330px;
    text-align: left;
}

    .regional .section__people .people__person:not(:last-child) {
        margin-right: 1px;
    }

@media screen and (max-width: 47.9375em) {
    .regional .section__people .people__person:not(:last-child) {
        margin-right: 0;
    }
}

.regional .section__people .people__person:after {
    display: table;
    clear: both;
    content: ' ';
}

.regional .section__people .people__person .person__image {
    margin-bottom: 8px;
}

@media screen and (max-width: 47.9375em) {
    .regional .section__people .people__person .person__image {
        width: 100%;
    }
}

.regional .section__people .people__person .person__details {
    padding: 15px 30px;
    color: black;
}

    .regional .section__people .people__person .person__details .details__name {
        line-height: 1.4em;
        margin-bottom: 16px;
        font-size: 34px;
        font-size: 1.5454545455rem;
    }

@media screen and (max-width: 47.9375em) {
    .regional .section__people .people__person .person__details .details__name {
        margin-bottom: 0;
    }
}

.regional .section__people .people__person .person__details .details__function {
    line-height: 1.4em;
    margin-bottom: 0;
    font-size: 18px;
    font-size: 0.8181818182rem;
}

@media screen and (max-width: 47.9375em) {
    .regional .section__people .people__person .person__details .details__function {
        color: #666;
    }
}

.regional .section__people .people__person .person__description {
    line-height: 1.4em;
    padding: 0 30px;
    font-size: 18px;
    font-size: 0.8181818182rem;
}

    .regional .section__people .people__person .person__description .contentThumbnail-teaser:hover {
        color: inherit;
    }

.regional .section__work {
    margin-bottom: 100px;
    text-align: left;
}

@media screen and (max-width: 47.9375em) {
    .regional .section__work {
        margin-bottom: 50px;
    }
}

@media screen and (max-width: 47.9375em) {
    .regional .section__work:after {
        display: table;
        clear: both;
        content: '';
    }
}

@media screen and (max-width: 47.9375em) {
    .regional .section__work .l-container {
        padding: 0;
    }
}

.regional .section__work .work__group {
    width: 25%;
    float: left;
    text-align: left;
}

    .regional .section__work .work__group .group__image,
    .regional .section__work .work__group .group__details,
    .regional .section__work .work__group .group__description {
        padding-right: 10px;
        padding-left: 10px;
    }

    .regional .section__work .work__group:after {
        display: table;
        clear: both;
        content: ' ';
    }

    .regional .section__work .work__group .group__image {
        margin-bottom: 8px;
    }

@media screen and (max-width: 47.9375em) {
    .regional .section__work .work__group .group__image {
        width: 100%;
        padding-right: 0;
        padding-left: 0;
    }
}

.regional .section__work .work__group .group__details {
    padding-top: 15px;
    color: black;
}

@media screen and (max-width: 47.9375em) {
    .regional .section__work .work__group .group__details {
        padding-right: 25px;
        padding-left: 25px;
    }
}

.regional .section__work .work__group .group__details .details__category {
    line-height: 1.4em;
    margin: 0;
    margin-bottom: 2px;
    font-size: 18px;
    font-size: 0.8181818182rem;
}

.regional .section__work .work__group .group__details .details__title {
    line-height: 1.4em;
    margin: 0;
    font-size: 26px;
    font-size: 1.1818181818rem;
}

@media screen and (max-width: 47.9375em) {
    .regional .section__work .work__group .group__details .details__title {
        color: #666;
    }
}

.regional .section__work .work__group .group__description {
    line-height: 1.4em;
    font-size: 18px;
    font-size: 0.8181818182rem;
}

@media screen and (max-width: 47.9375em) {
    .regional .section__work .work__group .group__description {
        padding-right: 25px;
        padding-left: 25px;
    }
}

.regional .section__work .work__group .group__description .description__see-more {
    font-weight: 500;
    display: block;
    margin-top: 18px;
    color: #e50654;
    font-size: 14px;
    font-size: 0.6363636364rem;
}

.regional .section__contact {
    /* We don't need margin here*/
}

    .regional .section__contact .g-group:after {
        display: table;
        clear: both;
        content: ' ';
    }

    .regional .section__contact .g-col {
        margin: 0;
    }

    .regional .section__contact .g-span6 {
        width: 50%;
    }

@media screen and (max-width: 47.9375em) {
    .regional .section__contact .g-span6 {
        width: 100%;
    }
}

.regional .section__contact .contact__header {
    position: relative;
    height: 350px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

    .regional .section__contact .contact__header h1 {
        font-size: 35px;
        position: absolute;
        bottom: 42px;
        left: 48px;
        margin: 0;
        color: white;
    }

.regional .section__contact .contact__details {
    padding: 50px 50px 0;
    text-align: left;
}

    .regional .section__contact .contact__details .details__group:after {
        content: "";
        display: table;
        clear: both;
    }

    .regional .section__contact .contact__details h3 {
        margin-bottom: 12px;
    }

    .regional .section__contact .contact__details .contact__address,
    .regional .section__contact .contact__details .contact__business-contact,
    .regional .section__contact .contact__details .contact__reach {
        margin-bottom: 40px;
    }

@media screen and (max-width: 47.9375em) {
    .regional .section__contact .contact__details .contact__address,
    .regional .section__contact .contact__details .contact__business-contact,
    .regional .section__contact .contact__details .contact__reach {
        margin-bottom: 30px;
    }
}

.regional .section__contact .contact__details .contact__address p,
.regional .section__contact .contact__details .contact__business-contact p,
.regional .section__contact .contact__details .contact__reach p {
    margin-bottom: 0 !important;
}

.regional .section__contact .contact__details .contact__address p,
.regional .section__contact .contact__details .contact__business-contact p,
.regional .section__contact .contact__details .contact__hours p,
.regional .section__contact .contact__details .contact__reach p {
    font-size: 18px;
    font-size: 0.8181818182rem;
}

@media screen and (max-width: 47.9375em) {
    .regional .section__contact .contact__details .contact__address p,
    .regional .section__contact .contact__details .contact__business-contact p,
    .regional .section__contact .contact__details .contact__hours p,
    .regional .section__contact .contact__details .contact__reach p {
        line-height: 24px;
        margin-bottom: 30px;
    }
}

.regional .section__contact .contact__details .contact__finding-us,
.regional .section__contact .contact__details .contact__social {
    display: none;
}

.regional .section__contact .g-group:only-child .g-span6:only-child {
    width: 100%;
}

    .regional .section__contact .g-group:only-child .g-span6:only-child .contact__header {
        display: none;
    }

    .regional .section__contact .g-group:only-child .g-span6:only-child .contact__details,
    .regional .section__contact .single-contact .contact__details {
        max-width: 812px;
        margin: 0 auto;
        padding-top: 0;
    }

@media screen and (max-width: 47.9375em) {
    .regional .section__contact .g-group:only-child .g-span6:only-child .contact__details,
    .regional .section__contact .single-contact .contact__details {
        width: 100%;
    }
}

.regional .section__contact .g-group:only-child .g-span6:only-child .contact__details .contact__address,
.regional .section__contact .g-group:only-child .g-span6:only-child .contact__details .contact__business-contact,
.regional .section__contact .g-group:only-child .g-span6:only-child .contact__details .contact__hours,
.regional .section__contact .g-group:only-child .g-span6:only-child .contact__details .contact__reach,
.regional .section__contact .single-contact .contact__details .contact__address,
.regional .section__contact .single-contact .contact__details .contact__business-contact,
.regional .section__contact .single-contact .contact__details .contact__hours,
.regional .section__contact .single-contact .contact__details .contact__reach {
    float: left;
    width: 50%;
}

@media screen and (max-width: 47.9375em) {
    .regional .section__contact .g-group:only-child .g-span6:only-child .contact__details .contact__address,
    .regional .section__contact .g-group:only-child .g-span6:only-child .contact__details .contact__business-contact,
    .regional .section__contact .g-group:only-child .g-span6:only-child .contact__details .contact__hours,
    .regional .section__contact .g-group:only-child .g-span6:only-child .contact__details .contact__reach,
    .regional .section__contact .single-contact .contact__details .contact__address,
    .regional .section__contact .single-contact .contact__details .contact__business-contact,
    .regional .section__contact .single-contact .contact__details .contact__hours,
    .regional .section__contact .single-contact .contact__details .contact__reach {
        width: 100%;
    }
}

.regional .section__contact .g-group:only-child .g-span6:only-child .contact__details .contact__social,
.regional .section__contact .single-contact .contact__details .contact__social {
    display: block;
}

    .regional .section__contact .g-group:only-child .g-span6:only-child .contact__details .contact__social .text,
    .regional .section__contact .single-contact .contact__details .contact__social .text {
        margin-bottom: 0;
        color: #282828;
        font-size: 18px;
        font-size: 0.8181818182rem;
        line-height: 28px;
        line-height: 1.2727272727rem;
    }

    .regional .section__contact .g-group:only-child .g-span6:only-child .contact__details .contact__social .btnSocial,
    .regional .section__contact .single-contact .contact__details .contact__social .btnSocial {
        display: inline-block;
        vertical-align: middle;
    }

.regional .section__contact .g-group:only-child .g-span6:only-child .contact__details .contact__finding-us,
.regional .section__contact .single-contact .contact__details .contact__finding-us {
    display: block;
}

.regional .section__contact .g-group:only-child .g-span6:only-child .contact__details:after,
.regional .section__contact .single-contact .contact__details:after {
    display: table;
    clear: both;
    content: '';
}

@media screen and (max-width: 47.9375em) {
    .regional .home-bottom .btnTop {
        display: inline-block;
    }
}

.regional .regional__section:nth-child(odd) {
    background-color: #f5f4f4;
}

.regional .regional__section:nth-child(even) {
    background-color: #fff;
}

.regional .spacing {
    padding-top: 40px;
    padding-bottom: 40px;
    text-align: center;
    /**
          * Tablet responsive
          */
}

@media screen and (max-width: 70em) {
    .regional .spacing {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

.regional .spacing .text-sectiontitle {
    margin: 0;
}

.regional .spacing--last {
    padding: 40px 0 0;
}

@media screen and (max-width: 70em) {
    .regional .spacing--last {
        padding: 30px 0 0;
    }
}

.regional .contentThumbnail-teaser {
    font-weight: 400;
    margin-bottom: 30px;
}

.regional .hero--reset {
    min-height: inherit;
    padding: 0;
    background: inherit;
}

.regional .aboutList {
    text-align: center;
}

/**
 * Contact page:
 */
.contact .btnSocial {
    display: inline-block;
    margin: 10px 10px 10px 0;
    vertical-align: middle;
}

.contact-header {
    border-bottom: 1px solid #e5e5e5;
    margin-top: 50px;
    margin-bottom: 10px;
    padding-bottom: 13px;
}

.contact-header-website {
    float: left;
    margin-top: 12px;
}

.contact-header-time {
    margin: 0 !important;
    text-align: right;
}

    .contact-header-time small {
        font-size: 18px;
        font-size: 0.8181818182rem;
        margin-right: 15px;
    }

.contact-map {
    margin-top: 100px;
}

.contact-links a {
    color: #000;
    font-size: 14px;
    font-size: 0.6363636364rem;
    line-height: 34px;
    line-height: 1.5454545455rem;
    font-weight: 500;
    text-decoration: underline;
    text-transform: uppercase;
    margin-right: 10px;
}

    .contact-links a:hover {
        color: #e50654;
    }

/**
 * Tablet responsive
 */
@media screen and (max-width: 70em) {
    .contact-header {
        margin-top: 40px;
        margin-bottom: 0;
    }

    .contact-header-website {
        margin-top: 5px;
    }

    .contact-header-time {
        line-height: 33px;
        line-height: 1.5rem;
    }

    .contact-map {
        margin-top: 60px;
        height: 400px;
    }
}

/**
 * Mobile responsive
 */
@media screen and (max-width: 47.9375em) {
    .contact-map {
        margin-top: 20px;
        height: 180px;
    }

    .contact-header {
        margin-top: 18px;
        margin-bottom: 5px;
    }

    .contact-header-website {
        margin-top: 11px;
    }

    .contact-header-time {
        font-size: 24px;
        font-size: 1.0909090909rem;
    }

        .contact-header-time small {
            font-size: 12px;
            font-size: 0.5454545455rem;
            margin-right: 8px;
        }

    .contact-actionTitle {
        font-size: 13px;
        font-size: 0.5909090909rem;
    }

    .contact-links {
        margin-top: 10px;
    }

        .contact-links a {
            font-size: 12px;
            font-size: 0.5454545455rem;
            line-height: 30px;
            line-height: 1.3636363636rem;
        }
}

/**
 * Article page:
 */
.article {
    position: relative;
}

    .article:after {
        content: "";
        display: table;
        clear: both;
    }

    .article .text-tag {
        color: #000;
    }

        .article .text-tag:hover {
            color: #e50654;
        }

    .article .text-lead {
        padding: 0 1em;
    }

    .article .text-subheading {
        margin: 0 0 30px 0;
    }

    .article .sectionLinks {
        padding: 0;
    }

.article-info {
    font-size: 14px;
    font-size: 0.6363636364rem;
    line-height: 32px;
    line-height: 1.4545454545rem;
    letter-spacing: 0.07em;
    text-align: center;
    text-transform: uppercase;
    margin: 40px 0;
}

    .article-info dt, .article-info dd {
        display: inline-block;
        font-weight: 500;
    }

    .article-info dt {
        margin: 0 5px;
        text-transform: uppercase;
    }

    .article-info dd {
        color: #000;
        margin: 0 20px 0 0;
    }

    .article-info .is-hidden + dd {
        color: #666;
    }

        .article-info .is-hidden + dd:last-child {
            text-transform: none;
        }

/*
 * Article images
 */
.article-media {
    margin: 0 0 60px 0;
}

    .article-media img {
        display: block;
        margin: 0 auto;
    }

    .article-media .text-caption {
        margin-top: 24px;
        margin-bottom: 0;
        width: 50%;
    }

    .article-media.carousel {
        margin: 0 0 40px 0;
    }

.g-span12 > .article-media {
    padding: 40px 0;
    margin: 0 -50px 40px -50px;
}

    .g-span12 > .article-media .text-caption {
        display: none;
    }

/*
 * Article footer
 */
.article-footer {
    margin: 40px 0 80px 0;
}

    .article-footer .btnDownload {
        float: left;
        margin: 40px 46px 0 0;
    }

.article-footer-tags .text-tag {
    padding: 5px 15px 25px 0;
    display: inline-block;
}

/*
 * Article share
 */
.article-share {
    position: absolute;
    top: 112px;
    margin-left: 8.4580838323%;
}

    .article-share .share {
        float: none;
        margin: 5px 0 25px 0;
        text-align: left;
    }

        .article-share .share .btnSocial {
            float: none;
            margin: 0 0 13px 0;
        }

    .article-share .share-title {
        margin: 0 -30px;
        text-align: center;
    }

/*
 * Article nav
 */
.article-nav {
    display: block;
    width: 145px;
    position: fixed;
    top: 50%;
    margin-top: -31px;
    z-index: 1000;
}

    .article-nav:before {
        background-image: url("sprites-2x.png");
        background-repeat: no-repeat;
        background-size: 400px 500px;
        background-position: -175px -50px;
        content: ' ';
        display: block;
        float: left;
        width: 46px;
        height: 22px;
        margin: 20px 0;
    }

    .article-nav:hover {
        background: #F0EFEF;
        width: 370px;
    }

        .article-nav:hover .article-nav-type,
        .article-nav:hover .article-nav-title {
            display: block;
        }

.article-nav-type {
    color: #494949;
    display: none;
    font-size: 26px;
    font-size: 1.1818181818rem;
    line-height: 39px;
    line-height: 1.7727272727rem;
    padding: 10px 30px 22px 30px;
    position: relative;
}

    .article-nav-type:after {
        content: ' ';
        background: #494949;
        display: block;
        width: 20px;
        height: 2px;
        position: absolute;
        bottom: 0;
        right: 30px;
    }

.article-nav-title {
    color: #494949;
    display: none;
    padding: 0 30px;
    font-size: 18px;
    font-size: 0.8181818182rem;
    line-height: 24px;
    line-height: 1.0909090909rem;
    font-weight: 400;
    padding: 24px 30px 34px 56px;
    text-transform: none;
}

.article-nav--previous {
    left: -50px;
    padding-left: 50px;
    left: 0;
    text-align: right;
}

.article-nav--next {
    right: -50px;
    padding-right: 50px;
    right: 0;
    text-align: left;
}

    .article-nav--next:before {
        background-position: -225px -50px;
        float: right;
    }

    .article-nav--next .article-nav-title {
        padding: 24px 56px 34px 30px;
    }

    .article-nav--next .article-nav-type:after {
        left: 30px;
    }

/**
 * Tablet
 */
@media screen and (max-width: 70em) {
    .article-info {
        font-size: 13px;
        font-size: 0.5909090909rem;
        line-height: 27px;
        line-height: 1.2272727273rem;
        margin: 30px 0;
    }

        .article-info dt {
            margin: 0 3px;
        }

        .article-info dd {
            margin: 0 10px 0 0;
        }

    .article-media {
        margin: 0 0 40px 0;
    }

        .article-media .text-caption {
            margin-top: 18px;
        }

        .article-media.carousel {
            margin: 0 0 30px 0;
        }

    .g-span12 > .article-media {
        padding: 30px 0;
        margin: 0 -30px 30px --30px;
    }

    .article-share {
        top: 87px;
    }

    .article-footer {
        margin: 10px 0 40px 0;
    }

        .article-footer .btnDownload {
            float: none;
            margin: 30px 0 10px 0;
        }

    .article-footer-tags .text-tag {
        padding: 5px 10px 5px 0;
        display: inline-block;
    }

    .article-nav {
        display: block;
        width: 50%;
        position: relative;
        height: 55px;
        margin: 15px 0 30px;
    }

        .article-nav:hover {
            background: #fff;
            width: 50%;
        }

            .article-nav:hover .article-nav-title {
                display: none;
            }

        .article-nav:before {
            position: absolute;
            margin: 0;
            left: 0;
            top: 29px;
        }

    .article-nav--previous {
        padding-left: 0;
        text-align: left;
        float: left;
    }

    .article-nav--next {
        padding-right: 0;
        text-align: right;
        float: right;
    }

        .article-nav--next:before {
            background-position: -225px -50px;
            left: auto;
            right: 0;
        }

    .article-nav-type {
        color: #666;
        display: block;
        font-size: 20px;
        font-size: 0.9090909091rem;
        line-height: 20px;
        line-height: 0.9090909091rem;
        padding: 0;
    }

        .article-nav-type:after {
            display: none;
        }
}

/*@include respond-min-max($bp-single-col,$bp-wide) {
    .article {
        .g-span8.g-offset2 {
            margin-left: gridColumnWidthCalc(1, true) + gutterCalc(true);
            width: gridColumnWidthCalc(10, true); //+ (gutterCalc(true) * 1;
        }
    }

     .article-share {
        display: none;
    }
}*/
/**
 * Tablet
 */
@media screen and (max-width: 70em) {
    .article .text-subheading {
        margin: 0 0 20px 0;
    }
}

/**
 * Mobile responsive
 */
@media screen and (max-width: 47.9375em) {
    .article {
        margin-top: 0;
    }

        .article .g-row:first-child:before {
            display: none;
        }

        .article .text-lead {
            padding: 0;
        }

        .article .text-subheading {
            margin: 10px 0 20px 0;
        }

        .article .map {
            height: 180px;
            margin: 0 -25px 0;
        }

    .article-info {
        font-size: 12px;
        font-size: 0.5454545455rem;
        line-height: 1.0rem;
        margin-top: 25px;
        margin-bottom: 25px;
    }

        .article-info dt {
            margin: 0;
        }

        .article-info dd {
            margin: 0 5px;
        }

            .article-info dd:after {
                content: "";
                display: table;
                clear: right;
            }

        .article-info .is-hidden + dd:after {
            display: none;
        }

        .article-info a:after {
            margin: 0 10px 2px 15px;
        }

    .article-media {
        margin: 0 -25px 30px -25px;
    }

        .article-media .text-caption {
            margin-top: 15px;
            margin-left: 25px;
            width: 75%;
        }

        .article-media.carousel {
            margin: 0 -25px 20px -25px;
        }

    .g-span12 > .article-media {
        padding: 20px 0;
        margin: 0 -25px 20px -25px;
    }

    .article-share {
        display: none;
    }

    .article-footer {
        margin: 10px 0 20px 0;
    }

    .article-footer-tags .text-tag {
        padding: 5px 10px 5px 0;
    }
}

/**
 * Sign up page:
 */
.signUp .btn, .signUp .tabs a, .tabs .signUp a {
    display: block;
    margin: 70px auto 60px auto;
}

/**
 * Tablet
 */
@media screen and (max-width: 70em) {
    .signUp .btn, .signUp .tabs a, .tabs .signUp a {
        margin: 35px auto 30px auto;
    }
}

.regional__iframe {
    width: 100%;
    border: 0;
}

.btn__return {
    font-weight: 600;
    line-height: 14px;
    display: block;
    width: 100%;
    height: 65px;
    text-align: left;
    text-transform: uppercase;
    padding-left: 20px;
    color: white;
    background-color: #494948;
    font-size: 14px;
    font-size: 0.6363636364rem;
}

    .btn__return::before {
        font-size: 33px;
        line-height: 64px;
        display: inline-block;
        content: '\279D';
        vertical-align: middle;
        -webkit-transform: scale(-1, 1);
        -ms-transform: scale(-1, 1);
        transform: scale(-1, 1);
    }

    .btn__return:link, .btn__return:visited, .btn__return:hover, .btn__return:active {
        color: white;
    }

/**
 * profile page:
 */
.profile img {
    display: block;
}

.profile .btnSocial {
    display: inline-block;
    margin: 10px 10px 10px 0;
    vertical-align: middle;
}

.profile-links {
    position: absolute;
    bottom: -6px;
    left: 100%;
    width: 100%;
    margin-left: 65px;
}

/**
 * Mobile responsive
 */
@media screen and (max-width: 47.9375em) {
    .profile-links {
        margin: 20px 0 0 0;
        position: static;
    }

    .profile {
        margin-top: 0 !important;
    }

        .profile:after {
            content: "";
            display: table;
            clear: both;
        }

    .profile-img {
        margin: 0 -25px;
    }

        .profile-img img {
            margin-left: auto;
            margin-right: auto;
        }
}

.searchResults hr {
    border-top: 1px solid #b2b2b2;
    margin: 0;
}

.searchResult {
    border-bottom: 1px solid #cccccc;
    padding-top: 40px;
}

    .searchResult:hover .searchResult-title {
        color: #e50654;
    }

.searchResult-title {
    margin-bottom: 20px;
}

.searchResult-description {
    color: #666;
}

.twitter-typeahead {
    display: block !important;
    width: 100%;
}

.tt-input {
    color: #333;
}

.tt-hint {
    color: #666;
}

.tt-menu {
    background: #fff;
    right: 0;
    padding: 0px 12px;
    border: 1px solid #f5f4f4;
    margin: 0px -1px;
    text-align: left;
}

.tt-suggestion {
    color: #666;
    font-size: 18px;
    font-size: 0.8181818182rem;
    padding: 5px 0;
    border-bottom: 1px solid #f5f4f4;
}

    .tt-suggestion:hover, .tt-suggestion.tt-cursor {
        cursor: pointer;
        color: #e50654;
    }

    .tt-suggestion:last-child {
        border-bottom: 0;
    }

/**
 * Tablet
 */
@media screen and (max-width: 70em) {
    .searchResults {
        margin-bottom: 40px;
    }

        .searchResults .text-center {
            margin-bottom: 20px;
        }

    .searchResult {
        padding-top: 30px;
    }

    .searchResult-title {
        margin-bottom: 15px;
    }

    .hero .form-controlGroup {
        margin-bottom: 0;
    }

    .tt-suggestion {
        font-size: 16px;
        font-size: 0.7272727273rem;
    }
}

/**
 * Mobile responsive
 */
@media screen and (max-width: 47.9375em) {
    .searchResult {
        padding-top: 20px;
    }

    .searchResult-title {
        margin-bottom: 10px;
    }
}

/**
 * Sitemap
 */
.sitemap {
    margin-left: 0;
    list-style: none;
    margin-left: 0;
}

    .sitemap ul {
        margin-left: 40px;
    }

    .sitemap a {
        color: #000;
    }

        .sitemap a:hover {
            color: #e50654;
        }

    .sitemap > li > a {
        font-size: 34px;
        font-size: 1.5454545455rem;
    }

    .sitemap > li > ul {
        margin-left: 0;
        list-style: none;
    }

        .sitemap > li > ul > li {
            border-top: 1px solid #e5e5e5;
            padding-top: 20px;
            margin-top: 20px;
        }

/**
 * Tablet responsive
 */
@media screen and (max-width: 70em) {
    .sitemap {
        font-size: 18px;
        font-size: 0.8181818182rem;
    }

        .sitemap > li > a {
            font-size: 30px;
            font-size: 1.3636363636rem;
        }

        .sitemap > li > ul > li {
            padding-top: 18px;
            margin-top: 18px;
        }
}

/**
 * Mobile responsive
 */
@media screen and (max-width: 47.9375em) {
    .sitemap {
        font-size: 13px;
        font-size: 0.5909090909rem;
    }

        .sitemap ul {
            margin-left: 30px;
        }

        .sitemap > li > a {
            font-size: 20px;
            font-size: 0.9090909091rem;
        }

        .sitemap > li > ul > li {
            padding-top: 15px;
            margin-top: 15px;
        }
}

/**
 * About page
 */
@-webkit-keyframes opacity {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes opacity {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-webkit-keyframes opacityHalf {
    from {
        opacity: 0;
    }

    to {
        opacity: 0.5;
    }
}

@keyframes opacityHalf {
    from {
        opacity: 0;
    }

    to {
        opacity: 0.5;
    }
}

@-webkit-keyframes opacityTen {
    from {
        opacity: 0;
    }

    to {
        opacity: 0.1;
    }
}

@keyframes opacityTen {
    from {
        opacity: 0;
    }

    to {
        opacity: 0.1;
    }
}

.about-title {
    font-size: 14px;
    font-size: 0.6363636364rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    text-transform: uppercase;
}

.about-subtitle {
    color: #e50654;
    font-size: 34px;
    font-size: 1.5454545455rem;
    line-height: 1.45;
    margin: 0 0 25px 0;
    white-space: pre;
}

.about-grey {
    background: #f5f4f4;
}

.btnMore {
    margin-top: -5px;
    position: relative;
    z-index: 2;
}

.about-img {
    display: block;
    margin: 0 auto;
}

.about-intro {
    background-repeat: no-repeat;
    padding-top: 202px;
    padding-bottom: 242px;
    position: relative;
}

    .about-intro p {
        color: #e50654;
        letter-spacing: 0;
    }

    .about-intro .btnMore {
        display: block;
        margin-top: -13px;
    }

/*
 * Bubbles
 */
.about-bubble {
    background: url("bubble.svg") no-repeat;
    display: block;
    position: absolute;
    opacity: 0;
}

.about-bubble--13, .about-bubble--15, .about-bubble--17 {
    width: 101px;
    height: 106px;
    background-size: 101px auto;
}

.about-bubble--7, .about-bubble--8, .about-bubble--9, .about-bubble--10, .about-bubble--11, .about-bubble--12 {
    width: 74px;
    height: 77px;
    background-size: 74px auto;
}

.about-bubble--2, .about-bubble--3, .about-bubble--4, .about-bubble--5, .about-bubble--6 {
    width: 51px;
    height: 53px;
    background-size: 51px auto;
}

.about-bubble--1 {
    width: 381px;
    height: 398px;
    left: 50%;
    top: 9%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 0.05;
}

.about-bubble--2 {
    right: 1.6%;
    top: 226px;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    -webkit-animation: opacityTen 300ms 300ms forwards;
    animation: opacityTen 300ms 300ms forwards;
}

.about-bubble--3 {
    left: 36.5%;
    top: 101px;
    -webkit-animation: opacityTen 300ms 450ms forwards;
    animation: opacityTen 300ms 450ms forwards;
}

.about-bubble--4 {
    right: 37.1%;
    top: 42px;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    -webkit-animation: opacityTen 300ms 600ms forwards;
    animation: opacityTen 300ms 600ms forwards;
}

.about-bubble--5 {
    right: 33.5%;
    bottom: 268px;
    -webkit-animation: opacityTen 300ms 750ms forwards;
    animation: opacityTen 300ms 750ms forwards;
}

.about-bubble--6 {
    right: 31.3%;
    top: 112px;
    -webkit-animation: opacityTen 300ms 900ms forwards;
    animation: opacityTen 300ms 900ms forwards;
}

.about-bubble--7 {
    left: 30.6%;
    bottom: 181px;
    -webkit-animation: opacityTen 300ms 1050ms forwards;
    animation: opacityTen 300ms 1050ms forwards;
}

.about-bubble--8 {
    right: 29.6%;
    top: 33px;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    -webkit-animation: opacityTen 300ms 1200ms forwards;
    animation: opacityTen 300ms 1200ms forwards;
}

.about-bubble--9 {
    left: 19%;
    top: 104px;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    -webkit-animation: opacityTen 300ms 1350ms forwards;
    animation: opacityTen 300ms 1350ms forwards;
}

.about-bubble--10 {
    left: 17.8%;
    top: 60px;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    -webkit-animation: opacityHalf 300ms 1500ms forwards;
    animation: opacityHalf 300ms 1500ms forwards;
}

.about-bubble--11 {
    right: 13.1%;
    bottom: 284px;
    -webkit-animation: opacityHalf 300ms 1650ms forwards;
    animation: opacityHalf 300ms 1650ms forwards;
}

.about-bubble--12 {
    right: 36.1%;
    top: 70px;
    -webkit-animation: opacityHalf 300ms 1800ms forwards;
    animation: opacityHalf 300ms 1800ms forwards;
}

.about-bubble--13 {
    right: 17.3%;
    top: 29px;
    -webkit-animation: opacityHalf 300ms 1950ms forwards;
    animation: opacityHalf 300ms 1950ms forwards;
}

.about-bubble--14 {
    width: 197px;
    height: 206px;
    right: 7.2%;
    top: 0;
    background-size: 197px auto;
    -webkit-animation: opacity 300ms 2100ms forwards;
    animation: opacity 300ms 2100ms forwards;
}

.about-bubble--15 {
    right: 15.5%;
    bottom: 231px;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    -webkit-animation: opacity 300ms 2250ms forwards;
    animation: opacity 300ms 2250ms forwards;
}

.about-bubble--16 {
    width: 146px;
    height: 152px;
    left: 50%;
    bottom: 107px;
    -webkit-transform: translateX(-123%) rotateY(180deg);
    transform: translateX(-123%) rotateY(180deg);
    background-size: 146px auto;
    -webkit-animation: opacity 300ms 2400ms forwards;
    animation: opacity 300ms 2400ms forwards;
}

.about-bubble--17 {
    left: 12.65%;
    top: 65px;
    -webkit-transform: translateX(-47%);
    -ms-transform: translateX(-47%);
    transform: translateX(-47%);
    -webkit-animation: opacity 300ms 2550ms forwards;
    animation: opacity 300ms 2550ms forwards;
}

/*.about-bubble--fb {
    @extend %about-bubble--small;
    background: url('/assets/img/ui/bubble-fb.svg') no-repeat;
    right: 2%;
    top: 146px;
    animation: opacityTen 300ms 1350ms forwards;
}*/
.about-who {
    position: relative;
    padding-top: 145px;
    padding-bottom: 141px;
    margin-bottom: 126px;
}

    .about-who .l-container {
        position: relative;
    }

.about-what {
    position: relative;
    padding-top: 214px;
    padding-bottom: 262px;
}

.about-how {
    position: relative;
    margin-top: 196px;
    padding-top: 202px;
    padding-bottom: 120px;
}

.about-services {
    position: relative;
    padding-top: 205px;
    padding-bottom: 82px;
}

/*Lines*/
.about-line {
    display: block;
    position: absolute;
    -webkit-animation: opacity 500ms 2700ms forwards;
    animation: opacity 500ms 2700ms forwards;
    opacity: 0;
}

    .about-line:after, .about-line:before {
        content: ' ';
        display: block;
        position: absolute;
    }

.about-line--primaryPart1 {
    border-left: 7px solid #e50654;
    border-bottom: 7px solid #e50654;
    border-radius: 0 0 0 54px;
    top: 165px;
    bottom: 272px;
    left: 12.65%;
    right: calc(50% + 54px);
}

    .about-line--primaryPart1:after {
        right: -57px;
        bottom: -386px;
        height: 386px;
        width: 57px;
        border-right: 7px solid #e50654;
        border-top: 7px solid #e50654;
        border-radius: 0 54px 5px 0;
    }

.about-line--primaryPart2 {
    border-left: 7px solid #e50654;
    border-top: 7px solid #e50654;
    border-bottom: 7px solid #e50654;
    border-radius: 5px 0 0 54px;
    top: 100px;
    bottom: 170px;
    left: 7.3%;
    right: 50%;
}

    .about-line--primaryPart2:after {
        right: -3px;
        bottom: -303px;
        height: 303px;
        border-right: 7px solid #e50654;
        border-radius: 0 5px 0 0;
    }

.about-line--primaryPart3 {
    border-right: 7px solid #e50654;
    border-top: 7px solid #e50654;
    border-bottom: 7px solid #e50654;
    border-radius: 0 54px 5px 0;
    top: 128px;
    bottom: 292px;
    right: 10%;
    left: 50%;
}

    .about-line--primaryPart3:before {
        top: -135px;
        height: 135px;
        left: -4px;
        border-left: 7px solid #e50654;
        border-radius: 0 0 0 5px;
    }

.about-line--primaryPart4 {
    border-left: 7px solid #e50654;
    border-bottom: 7px solid #e50654;
    border-top: 7px solid #e50654;
    right: 50%;
    left: 29.1%;
    height: 109px;
    bottom: 190px;
}

    .about-line--primaryPart4:before {
        border: 7px solid #e50654;
        border-radius: 80px 0 80px 80px;
        bottom: -153px;
        left: -248px;
        height: 153px;
        width: 248px;
    }

    .about-line--primaryPart4:after {
        border-right: 7px solid #e50654;
        right: -3px;
        bottom: -197px;
        height: 197px;
        border-radius: 0 5px 0 0;
    }

.about-line--primaryPart5 {
    border-right: 7px solid #e50654;
    border-bottom: 7px solid #e50654;
    border-top: 7px solid #e50654;
    border-radius: 0 80px 0 0;
    left: 50%;
    top: -116px;
    right: 16.5%;
    height: 220px;
}

    .about-line--primaryPart5:before {
        border-left: 7px solid #e50654;
        left: -4px;
        top: -88px;
        height: 88px;
        border-radius: 0 0 0 5px;
    }

    .about-line--primaryPart5:after {
        border: 7px solid #e50654;
        border-radius: 0 80px 80px 80px;
        right: -82px;
        bottom: -63px;
        width: 82px;
        height: 63px;
    }

.about-line--primaryPart6 {
    border-bottom: 7px solid #e50654;
    border-top: 7px solid #e50654;
    border-left: 7px solid #e50654;
    left: 12.4%;
    right: 68.9%;
    top: 97px;
    bottom: 145px;
    border-radius: 80px 0 0 80px;
    margin-right: 73px;
}

    .about-line--primaryPart6:before {
        border-top: 7px solid #e50654;
        margin-right: -80px;
        top: -7px;
        left: 100%;
        right: -225%;
    }

    .about-line--primaryPart6:after {
        border-top: 7px solid #e50654;
        border-right: 7px solid #e50654;
        right: -80px;
        height: 152px;
        bottom: -152px;
        width: 80px;
        border-radius: 0 80px 0 0;
    }

.about-line--primaryPart7 {
    border-bottom: 7px solid #e50654;
    border-left: 7px solid #e50654;
    top: 0;
    bottom: 113px;
    left: 31.1%;
    right: 50%;
    border-radius: 0 0 0 5px;
}

    .about-line--primaryPart7:after {
        border-right: 7px solid #e50654;
        right: -3px;
        bottom: -120px;
        height: 120px;
        border-radius: 0 5px 0 0;
    }

.about-line--secondaryPart1 {
    border-left: 7px solid #fde8ef;
    height: 185px;
    bottom: 0;
    left: 33%;
}

/**
 * Tablet
 */
@media screen and (max-width: 70em) {
    .about-title {
        font-size: 13px;
        font-size: 0.5909090909rem;
        margin-bottom: 5px;
    }

    .about-subtitle {
        font-size: 28px;
        font-size: 1.2727272727rem;
        margin-bottom: 15px;
    }

    .about-intro {
        padding-top: 180px;
        padding-bottom: 200px;
    }

    .about-bubble--2 {
        right: 5%;
        top: 191px;
    }

    .about-bubble--3 {
        left: 26.5%;
        top: 87px;
    }

    .about-bubble--5 {
        right: 35%;
        bottom: 74px;
    }

    .about-bubble--7 {
        left: 19%;
        bottom: 113px;
    }

    .about-bubble--8 {
        right: 20%;
    }

    .about-bubble--9 {
        left: 22%;
        top: 7px;
    }

    .about-bubble--10 {
        top: 10px;
    }

    .about-bubble--11 {
        right: 9%;
        bottom: 212px;
    }

    .about-bubble--12 {
        right: 46%;
        top: 0px;
    }

    .about-bubble--13 {
        right: 7%;
        top: 10px;
    }

    .about-bubble--14 {
        display: none;
    }

    .about-bubble--15 {
        right: 10%;
        bottom: 131px;
    }

    .about-bubble--16 {
        bottom: 50px;
    }

    .about-line--secondaryPart1 {
        display: none;
    }

    .about-line--primaryPart1 {
        border-left-width: 5px;
        border-bottom-width: 5px;
        bottom: 231px;
    }

        .about-line--primaryPart1:after {
            bottom: -282px;
            height: 282px;
            border-right-width: 5px;
            border-top-width: 5px;
        }

    .about-line--primaryPart2 {
        border-left-width: 5px;
        border-top-width: 5px;
        border-bottom-width: 5px;
        top: 41px;
        bottom: 75px;
    }

        .about-line--primaryPart2:after {
            bottom: -160px;
            height: 160px;
            border-right-width: 5px;
        }

    .about-line--primaryPart3 {
        border-right-width: 5px;
        border-top-width: 5px;
        border-bottom-width: 5px;
        top: 90px;
        bottom: 249px;
    }

        .about-line--primaryPart3:before {
            top: -95px;
            height: 95px;
            left: -2px;
            border-left-width: 5px;
        }

    .about-line--primaryPart4 {
        border-left-width: 5px;
        border-bottom-width: 5px;
        border-top-width: 5px;
        left: 30.5%;
        bottom: 145px;
    }

        .about-line--primaryPart4:before {
            border-width: 5px;
            bottom: -100px;
            height: 100px;
            left: -150px;
            width: 150px;
        }

        .about-line--primaryPart4:after {
            border-right-width: 5px;
            right: -3px;
            bottom: -150px;
            height: 150px;
        }

    .about-line--primaryPart5 {
        border-right-width: 5px;
        border-bottom-width: 5px;
        border-top-width: 5px;
        top: -68px;
        height: 114px;
    }

        .about-line--primaryPart5:before {
            border-left-width: 5px;
            left: -2px;
            height: 56px;
            top: -56px;
        }

        .about-line--primaryPart5:after {
            border-width: 5px;
        }

    .about-line--primaryPart6 {
        border-bottom-width: 5px;
        border-top-width: 5px;
        border-left-width: 5px;
        top: 41px;
        bottom: 75px;
    }

        .about-line--primaryPart6:before {
            border-top-width: 5px;
            top: -5px;
        }

        .about-line--primaryPart6:after {
            border-top-width: 5px;
            border-right-width: 5px;
            right: -78px;
        }

    .about-line--primaryPart7 {
        border-bottom-width: 5px;
        border-top-width: 5px;
        border-left-width: 5px;
    }

        .about-line--primaryPart7:after {
            border-right-width: 5px;
        }

    .about-who {
        padding-top: 120px;
        padding-bottom: 40px;
        margin-bottom: 80px;
    }

    .about-what {
        padding-top: 160px;
        padding-bottom: 220px;
    }

    .about-how {
        margin-top: 120px;
        padding-top: 120px;
        padding-bottom: 40px;
    }

    .about-services {
        padding-top: 80px;
    }

    .about-img {
        max-width: 80%;
    }
}

/**
 * Mobile responsive
 */
@media screen and (max-width: 47.9375em) {
    .about-title {
        font-size: 12px;
        font-size: 0.5454545455rem;
    }

    .about-subtitle {
        font-size: 24px;
        font-size: 1.0909090909rem;
        white-space: normal;
        margin-bottom: 10px;
    }

    .about-line {
        display: none;
    }

    .about-who, .about-what, .about-how, .about-services {
        padding-top: 40px;
        padding-bottom: 40px;
        margin: 0;
    }

        .about-who .btnMore, .about-what .btnMore, .about-how .btnMore, .about-services .btnMore {
            position: static;
        }

    .about-intro {
        padding: 40px 0;
    }

    .about-bubble {
        display: none;
    }

    .about-img {
        max-width: 100%;
    }

    .about-who-video {
        margin-top: 20px;
    }

    .about-what-video {
        margin-bottom: 20px;
    }
}

/**
 * Helper/utility classes
 * =================================
 */
/**
 * Utilities
 * Non-semantic helper classes
 */
/**
 * Clearfix
 * http://www.cssmojo.com/latest_new_clearfix_so_far/
 * See mixins/_utility.scss for a mixin version of this
 */
.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

.ir {
    background-color: transparent;
    background-repeat: no-repeat;
    border: 0;
    direction: ltr;
    display: block;
    overflow: hidden;
    text-align: left;
    text-indent: -999em;
}

    .ir br {
        display: none;
    }

.is-hidden {
    display: none !important;
    visibility: hidden !important;
}

.is-shown {
    display: block;
}

.is-visuallyHidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

    .is-visuallyHidden.focusable:active, .is-visuallyHidden.focusable:focus {
        clip: auto;
        height: auto;
        margin: 0;
        overflow: visible;
        position: static;
        width: auto;
    }

.is-invisible {
    visibility: hidden;
}

.l-floatLeft {
    float: left;
}

.l-floatRight {
    float: right;
}

.l-clear {
    clear: both;
    float: none;
}

.l-mb0 {
    margin-bottom: 0 !important;
}

.l-mt0 {
    margin-top: 0 !important;
}

/**
 * Vertical Spacing
 */
.l-mb1 {
    margin-bottom: 40px;
}

.l-mt1 {
    margin-top: 40px;
}

.l-mb2 {
    margin-bottom: 80px;
}

.l-mt2 {
    margin-top: 80px;
}

.l-mb3 {
    margin-bottom: 120px;
}

.l-mt3 {
    margin-top: 120px;
}

.l-mb4 {
    margin-bottom: 160px;
}

.l-mt4 {
    margin-top: 160px;
}

.l-mb5 {
    margin-bottom: 200px;
}

.l-mt5 {
    margin-top: 200px;
}

.l-mb75per {
    margin-bottom: 30px;
}

.l-mt75per {
    margin-top: 30px;
}

.l-mb50per {
    margin-bottom: 20px;
}

.l-mt50per {
    margin-top: 20px;
}

.l-mb25per {
    margin-bottom: 10px;
}

.l-mt25per {
    margin-top: 10px;
}

/**
 * Responsive Utilities
 */
* {
    -webkit-tap-highlight-color: transparent !important;
}

/* A hack for HTML5 contenteditable attribute on mobile */
textarea[contenteditable] {
    -webkit-appearance: none;
}

.promote-layer {
    /*
  This may promote the layer to a composited
  layer.

  Replace with will-change when available

  #perfmatters
  */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.bor-bot {
    border-bottom: 1px solid #e5e5e5;
}

/**
 * Tablet responsive
 */
@media screen and (max-width: 70em) {
    .l-mb1 {
        margin-bottom: 20px;
    }

    .l-mt1 {
        margin-top: 20px;
    }

    .l-mb2 {
        margin-bottom: 40px;
    }

    .l-mt2 {
        margin-top: 40px;
    }

    .l-mb3 {
        margin-bottom: 60px;
    }

    .l-mt3 {
        margin-top: 60px;
    }

    .l-mb4 {
        margin-bottom: 80px;
    }

    .l-mt4 {
        margin-top: 80px;
    }

    .l-mb5 {
        margin-bottom: 100px;
    }

    .l-mt5 {
        margin-top: 100px;
    }

    .l-mt75per {
        margin-top: 15px;
    }

    .l-mb75per {
        margin-bottom: 15px;
    }

    .l-mt50per {
        margin-top: 10px;
    }

    .l-mt25per {
        margin-top: 5px;
    }
}

/**
 * Mobile responsive
 */
@media screen and (max-width: 47.9375em) {
    .is-hiddenNarrow {
        display: none !important;
        visibility: hidden !important;
    }
}

/**
 * Print styles
 */
/* ==========================================================================
   Print styles
   ========================================================================== */
@media print {
    * {
        box-shadow: none !important;
        text-shadow: none !important;
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }
    /*
	 * Don't show links for images, or javascript/internal links
	 */
    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }

    thead {
        display: table-header-group;
        /* h5bp.com/t */
    }

    tr,
    img, video, iframe {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    @page {
        margin: .5cm;
    }

    p, h2, h3 {
        orphans: 3;
        widows: 3;
    }

    h2, h3 {
        page-break-after: avoid;
    }

    .fluidVideo, .fluidVideo + .text-caption {
        display: none;
    }

    * {
        -webkit-print-color-adjust: exact;
    }

    .header {
        position: absolute;
    }

    .hero {
        padding: 50px 0;
    }

    .hero--article, .hero--casestudy, .hero--bg {
        min-height: 0 !important;
    }

    .hero-img {
        background-size: auto;
    }

    .article-info a {
        display: none;
    }

    .hero--bg + .l-container {
        margin-top: 0;
    }

        .hero--bg + .l-container > .g-row:first-child:before {
            display: none;
        }

    .article {
        margin-top: 0;
        padding-left: 30px;
        padding-right: 30px;
    }

        .article pre,
        .article blockquote {
            border: 0;
        }

    footer, nav, .secondary, .btn, .tabs a, .share, .article-nav, .btnMenu, .cookie {
        display: none !important;
    }

    .carousel .swipe-wrap {
        width: 100% !important;
    }

        .carousel .swipe-wrap > div {
            -webkit-transform: translate(0, 0) !important;
            width: 50% !important;
            margin-bottom: 20px;
            padding: 0 10px;
            position: static;
        }

    .carousel .carousel-controls {
        display: none !important;
    }
}

.newline {
    display: block;
    margin: 0 0 0 -9px;
}
/*# sourceMappingURL=kickoff.css.map */

.regional .section__contact .single-contact.g-span6 {
    width: 100%;
}
/**** Wordpress editor styles*****/
.content-editor-styles .alignleft {
    float: left;
    margin-bottom: -10px;
    padding-bottom: 7px;
    padding-right: 15px;
    padding-top: 10px;
}

.content-editor-styles .alignright {
    float: right;
    margin-bottom: -10px;
    padding: 10px 0;
}

.content-editor-styles .aligncenter {
    width: 100%;
    height: auto;
}

.content-editor-styles ul li {
    padding-left: 0 !important;
    margin-left: 30px;
}

.dialog {
    display: none;
}

.content-editor-styles ol {
    margin: 0 30px 0 30px;
    padding: 10px;
}

.AuthorTitle {
    color: #b3b3b3;
    font-size: 15px;
    margin: -25px 0 0;
}

.magazine-intro > p {
    margin-bottom: -30px;
    text-align: center;
}

.magazine-intro {
    position: relative;
    top: -70px;
    width: 80%;
}

#agenda {
    padding: 20px 0 0;
}

blockquote h6 {
    color: #666;
    text-transform: none;
}

blockquote h5 {
    text-transform: uppercase;
}

#signup-list-style p {
    margin-bottom: 0;
}
