html {
    background: #272727;
}

body {
    background: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: normal;
    color: #666;
    -webkit-font-smoothing: antialiased;
    max-width: 1780px;
    margin: 0 auto;
    padding: 0;
    overflow-x: hidden;
}


/*------------------------------------------------------------------------------------------*/
/* Global Elements */
/*------------------------------------------------------------------------------------------*/

p {
    font-size: 14px !important;
    line-height: 30px;
}

ul, ul li {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    font-weight: 500;
    color: #213d71;
    text-decoration: none;
    outline: 0;
}

.divider {
    background: url(../../images/divider.png) no-repeat center top;
    height: 20px;
    clear: both;
    width: 30%;
    margin: 40px auto;
}

a:focus {
    outline: none;
}

select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #000;
}

button::-moz-focus-inner {
    border: 0;
}

/* Global Field Styles */

input, textarea, select {
    font-family: 'Poppins', sans-serif;
    padding: 12px 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;
}

    input:focus, textarea:focus {
        box-shadow: inset 0 -1px 1px rgba(0, 0, 0, .095);
    }

.text-center {
    text-align: center;
}

/*------------------------------------------------------------------------------------------*/
/* Fonts */
/*------------------------------------------------------------------------------------------*/

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: #000;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 19px;
}

.heading-a:after {
    content: '';
    background: #d9d9d9;
    height: 1px;
    width: 215px;
    display: inline-block;
    float: right;
    margin-top: 25px;
}

.heading-a1:after {
    content: '';
    height: 1px;
    width: 215px;
    display: inline-block;
    float: right;
    margin-top: 25px;
}

h2.heading-b, h1.heading-b {
    position: relative;
}

.heading-b:before {
    content: '';
    background: #d9d9d9;
    height: 1px;
    width: 315px;
    display: inline-block;
    margin-top: 28px;
    position: absolute;
    left: -355px;
}

/* Font Icons */

@font-face {
    font-family: 'ElegantIcons';
    src: url('../../fonts/ElegantIcons.eot');
    src: url('../../fonts/ElegantIcons.eot?#iefix') format('embedded-opentype'), url('../../fonts/ElegantIcons.woff') format('woff'), url('../../fonts/ElegantIcons.ttf') format('truetype'), url('../../fonts/ElegantIcons.svg#ElegantIcons') format('svg');
    font-weight: normal;
    font-style: normal;
}

/*------------------------------------------------------------------------------------------*/
/* Layout - Cols, Rows */
/*------------------------------------------------------------------------------------------*/

.row {
    max-width: 1170px;
    margin: 0 auto;
}

/* Targets all elements */

[class*='col-'] {
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 20px;
}

/* Clearfix */

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

/* Main Widths */

.col-1 {
    width: 100%;
}

.col-2 {
    width: 50%;
}

.col-3 {
    width: 33.33%;
}

.col-4 {
    width: 25%;
}

.col-5 {
    width: 20%;
}

.col-6 {
    width: 16.6666666667%;
}

.col-7 {
    width: 14.2857142857%;
}

.col-8 {
    width: 12.5%;
}

.col-9 {
    width: 11.1111111111%;
}

.col-10 {
    width: 10%;
}

.col-11 {
    width: 9.09090909091%;
}

.col-12 {
    width: 8.33%;
}

.col-2-3 {
    width: 66.66%;
}

.col-3-4 {
    width: 75%;
}

.col-9-10 {
    width: 90%;
}

section {
    padding: 70px 0;
}


/*------------------------------------------------------------------------------------------*/
/* Website Header */
/*------------------------------------------------------------------------------------------*/

#header-nav {
    height: 126px;
    font-size: 13px;
    padding-left: 20px;
    padding-right: 20px;
}

#logo {
    display: inline-block;
    margin-top: 20px;
}

#header-nav nav#nav-main {
    margin-top: 45px;
    float: right;
}

nav a {
    text-decoration: none;
    text-transform: uppercase;
    color: #666;
    display: inline-block;
    position: relative;
}

    nav a:hover {
        color: #2a4577;
    }

    nav a.nav-active {
        color: #2a4577;
    }

header nav#nav-main ul li {
    margin-right: 35px;
    display: inline-block;
}

    header nav#nav-main ul li:last-child {
        margin-right: 0;
    }

nav#nav-main a:before {
    content: '';
    position: absolute;
    border-width: 0 0 2px 0;
    border-style: solid;
    border-color: #2a4577;
    pointer-events: none;
    -webkit-transform: scale3d(0, 1, 1);
    transform: scale3d(0, 1, 1);
    -webkit-transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

nav#nav-main a:before {
    width: 100%;
    height: 80%;
    top: 10%;
}

nav#nav-main a:hover::before, nav#nav-main a.nav-active::before {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}

nav#nav-main a.login::before {
    border: none;
}

/* Nav Mobile */

nav#nav-mobile {
    position: relative;
    z-index: 99;
}

    nav#nav-mobile ul {
        display: none;
        list-style-type: none;
        padding-top: 10px;
        padding-bottom: 20px;
        text-align: center;
        background-color: #fff;
        box-shadow: 0 5px 3px rgba(0, 0, 0, 0.2);
    }

        nav#nav-mobile ul:after {
            display: none;
        }

    nav#nav-mobile li {
        margin: 0 20px;
        float: none;
        text-align: left;
        border-bottom: 1px solid #e1e1e1;
    }

        nav#nav-mobile li:last-child {
            border-bottom: none;
        }

.nav-solid nav#nav-mobile li {
    border-top: 1px solid #e1e1e1;
    border-bottom: none;
}

nav#nav-mobile a {
    display: block;
    padding: 12px 0;
    width: 100%;
    height: auto;
    line-height: normal;
    border-bottom: none !important;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

    nav#nav-mobile a:hover {
        background: #fafafa;
        opacity: 1;
    }


/* Trigger */

#nav-trigger {
    display: none;
    text-align: right;
    position: absolute;
    right: 15px;
    top: 25px;
}

    #nav-trigger span {
        display: inline-block;
        width: 38px;
        height: 71px;
        color: white;
        cursor: pointer;
        text-transform: uppercase;
        font-size: 22px;
        text-align: center;
        border-top-right-radius: 5px;
        border-top-left-radius: 5px;
        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
        color: #999;
    }

        #nav-trigger span:after {
            font-family: "fontAwesome";
            display: inline-block;
            width: 38px;
            height: 71px;
            line-height: 75px;
            text-align: center;
            content: "\f0c9";
            border-top-right-radius: 5px;
            border-top-left-radius: 5px;
        }

        #nav-trigger span.open:after {
            content: "\f00d";
        }


        #nav-trigger span:hover, .nav-solid #nav-trigger span.open:hover, .nav-solid #nav-trigger span:hover {
            opacity: 0.6;
        }

/*------------------------------------------------------------------------------------------*/
/* Buttons */
/*------------------------------------------------------------------------------------------*/

.button {
    padding: 8px 20px;
    text-decoration: none;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    transition: all .2s linear;
}

    .button.transparent.white, .button.solid.white:hover {
        background: none;
        border: 2px solid rgba(255, 255, 255, 1);
        color: #fff;
    }

        .button.transparent.white:hover, .button.solid.white {
            background: #fff;
            border: 2px solid rgba(255, 255, 255, 0);
            color: #2a4577;
        }

    .button.solid.blue, .submit {
        background: #2a4577;
        border: 2px solid rgba(42, 69, 119, 0);
        color: #fff;
    }

        .button.solid.blue:hover, .submit:hover {
            background: none;
            border: 2px solid rgba(42, 69, 119, 1);
            color: #2a4577;
        }

.login {
    padding: 7px 25px 5px 25px;
}

/*------------------------------------------------------------------------------------------*/
/* Pages */
/*------------------------------------------------------------------------------------------*/

/* -------------- Home Page -------------- */


/* Banner */

.lucror-start #banner {
    background: url(../../images/banner-home.jpg) no-repeat;
    background-size: cover;
    color: #fff;
    text-align: center;
    height: 777px;
    display: table;
    width: 100%;
}

#banner-content {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    text-transform: uppercase;
}

#banner h1 {
    font-size: 74px;
    font-weight: normal;
    color: #fff;
    line-height: 70px;
    margin-top: 0;
    margin-bottom: 80px;
}

#banner .subtitle {
    font-size: 17px;
    opacity: 0.8;
    margin-bottom: 5px;
    letter-spacing: 1.6px;
}

#banner .button {
    font-size: 18px;
    margin: 0 3px;
}

/* Introduction */

#introduction .col-1 {
    padding-top: 0;
    padding-bottom: 0;
}

#introduction .col-2-3 {
    padding-left: 0;
    padding-right: 0;
}

#introduction .col-2 {
    padding-top: 0;
}

#introduction .col-4 {
    position: relative;
}

#introduction img {
    position: absolute;
    left: -272px;
}

#introduction .headings{
    margin-left: 300px;
}

/* Coverage */

#coverage {
    background: #f8f8f8;
    border-top: 1px solid #e1e1e1;
}

/* Services */

#services {
    background: url(../../images/bg-services.jpg) no-repeat;
    background-size: cover;
    padding-bottom: 110px;
}

    #services, #services a {
        color: #fff;
    }

        #services a {
            display: block;
        }

        #services span {
            text-decoration: underline;
        }

        #services h2, #services h3 {
            color: #fff;
        }

        #services li {
            float: left;
            width: 50%;
            padding: 30px;
            border: 5px solid rgba(255, 255, 255, 0);
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            box-sizing: border-box;
            -webkit-transition: all 0.2s ease-out;
            -moz-transition: all 0.2s ease-out;
            -o-transition: all 0.2s ease-out;
            transition: all 0.2s ease-out;
        }

            #services li:hover {
                background: rgba(153, 184, 227, 0.3);
                border: 5px solid rgba(255, 255, 255, 0.2);
                box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
            }

        #services p {
            margin-bottom: 0;
        }

/* Request a Trial */

#start-trial {
    background: url(../../images/bg-trial.jpg) no-repeat;
    background-size: cover;
    text-align: center;
    border-bottom: 1px solid #e1e1e1;
}

    #start-trial h3 {
        font-size: 26px;
        padding-top: 45px;
        color: #2a4577;
    }

    #start-trial img {
        margin-top: -90px;
        float: left;
    }

    #start-trial h3 {
        margin-top: 0;
    }

/* News */

.lucror-news .page-header, .lucror-privacy .page-header, .lucror-research .page-header {
    background: url(../../images/bg-news.jpg) no-repeat left top;
    background-size: cover;
}

    .lucror-news .page-header h1, .lucror-privacy .page-header h1, .lucror-research .page-header h1 {
        padding: 70px 0;
    }

#news h2 {
    display: inline-block;
    margin-top: 0;
    font-family: 'Playfair Display', serif;
}


.lucror-news h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: normal;
    margin-top: 0;
}

#news h4 {
    font-family: 'Poppins', sans-serif;
}

#view-news {
    float: right;
    margin-top: 25px;
}

    #view-news:after, .read-more:after {
        font-family: 'ElegantIcons';
        font-size: 20px;
        content: '\24';
        padding-left: 5px;
        padding-top: 2px;
        display: inline-block;
        position: relative;
        top: 4px;
    }

#news h4 {
    margin-top: 0;
    font-family: 'Poppins', sans-serif;
}

.post-date, .single-meta {
    font-size: 13px;
    color: #2a4577;
    margin: 0;
}

.single-meta {
    display: block;
    padding-bottom: 25px;
    padding-left: 25px;
}

.print {
    float: right;
    background: #f8f8f8;
    text-align: center;
    height: 30px;
    color: #999999;
    font-size: 17px;
    line-height: 34px;
    display: inline-block;
    border: 1px solid #e1e1e1;
    width: 30px;
    margin-top: -5px;
}

    .print:hover {
        background: none;
    }

#news .col-4 .read-more {
    font-size: 13px;
}

#news .col-4 {
    margin-bottom: 35px;
    position: relative;
    border: 5px solid #fff;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

    #news .col-4:hover {
        border-color: #f5f5f5;
        box-shadow: 0 0 6px #ccc;
        z-index: 99;
    }

.news-single .col-2-3 {
    padding-left: 0;
}

#news .col-4 a {
    display: block;
}

    #news .col-4 a p {
        color: #666;
    }

.lucror-privacy p, .lucror-privacy li {
    font-size: 13px !important;
    line-height: 24px;
}


/* Sidebar */

#sidebar {
    font-size: 14px;
}

    #sidebar h4 {
        text-transform: uppercase;
        font-weight: normal;
    }

    #sidebar.col-3 {
        padding-left: 30px;
    }


    #sidebar .heading-a:after {
        float: none;
        display: block;
        width: 30px;
        height: 2px;
    }

    #sidebar a {
        font-weight: normal;
    }

    #sidebar .post-date {
        display: block;
        font-size: 13px;
        color: #9d9d9d;
        font-weight: normal;
    }

    #sidebar li {
        padding-bottom: 15px;
    }


/* -------------- Coverage Universe -------------- */

#coverage-universe {
    background: url(../images/map/background-map.png) no-repeat center top#fff;
    background-size: 670px;
    border-top: 1px solid #e1e1e1;
    padding: 0;
}

    #coverage-universe .row {
        background: rgba(255,255,255,0.7);
        overflow: hidden;
    }

    #coverage-universe .col-2-3 {
        border-right: 1px solid #e1e1e1;
    }

    #coverage-universe img {
        /*max-width:100%;*/
        width: 350px;
        height: 175px;
    }

    #coverage-universe h2, #coverage-universe h3 {
        text-align: center;
        clear: both;
    }

    #coverage-universe li a {
        font-weight: normal;
    }

    .list-title, #coverage-universe li.list-title a {
        font-weight: bold;
        margin: 15px 0 5px 0;
    }

.list-title {
    color: #2A4577;
    width: 150px;
}

#coverage-container {
    position: relative;
}

#coverage-universe-desc {
    text-align: center;
    position: fixed;
    width: 390px;
    top: 190px;
}

#coverage-universe .divider {
    margin-bottom: 10px;
}

.lucror-coverage .tab-content li {
    font-size: 13px;
}

.lucror-coverage #coverage-universe .public-coverage {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* -------------- About Us -------------- */

.lucror-about .page-header {
    background: url(../images/bg-footer.jpg) no-repeat left top;
    background-size: cover;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 120px;
    text-align: left;
}

.page-header h1 {
    margin: 0;
    padding-top: 70px;
    color: #fff;
    font-size: 36px;
}

.page-header p {
    color: #fff;
}

.page-header .col-4 {
    position: relative;
}

.lucror-about .page-header img, .lucror-contact .page-header img {
    position: absolute;
    left: -267px;
    padding-top: 70px;
}

/* Members */

.team-member h3 {
    margin-bottom: 5px;
}

.job {
    margin-top: 0;
    color: #2a4577;
}

    .job:after {
        content: "";
        background: #d9d9d9;
        height: 2px;
        width: 50px;
        margin: 10px 0;
        display: block;
    }

/* Tabs */

.lucror-about #tabs-container {
    margin-top: -142px;
    padding-bottom: 50px;
}

.tabs-menu {
    height: 30px;
    float: left;
    clear: both;
    text-align: center;
    margin-bottom: 70px;
}

    .tabs-menu li {
        height: 30px;
        display: inline-block;
    }

        .tabs-menu li.current {
            position: relative;
            z-index: 5;
        }

        .tabs-menu li a, #coverage-universe .tabs-menu li.current a {
            background: #455986;
            padding: 15px 0 12px 0;
            text-transform: uppercase;
            text-decoration: none;
            color: #fff;
            display: inline-block;
            width: 160px;
            font-size: 15px;
        }

    .tabs-menu .current a, #coverage-universe .tabs-menu li a {
        background: #fff;
        color: #213d71;
    }

.tab {
    float: left;
}

.tab-content {
    display: none;
}

.tab-content-universe {
    display: none;
}

#tab-1 {
    display: block;
}

/* -------------- Contact -------------- */


.lucror-contact .page-header {
    background: url(../../images/bg-contact.jpg) no-repeat left top #e6e6e6;
    color: #fff !important;
}

    .lucror-contact .page-header h1 {
        padding-bottom: 55px;
    }


.lucror-contact #email {
    background: url(../../images/icons/icon-mail.png) no-repeat left 50px;
    clear: both;
    padding-top: 50px;
    padding-left: 40px;
    padding-bottom: 90px;
}

#contact-info h4 {
    margin-top: 5px;
    margin-bottom: 5px;
}

#contact-info li {
    padding-bottom: 25px !important;
}

#map {
    width: 100%;
    height: 500px;
}

/* Contact Form */

#contact-form {
    background: #e6e6e6;
    padding: 70px 35px;
}

    #contact-form p {
        display: inline;
        width: 50%;
        margin: 0;
        padding: 5px;
        float: left;
        overflow: hidden;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

        #contact-form p input, #contact-form select, #contact-form textarea {
            width: 100%;
            border: none;
        }

    #contact-form textarea {
        height: 150px;
    }

.submit, .cancel {
    text-transform: uppercase;
    cursor: pointer;
    padding: 14px 26px;
    font-weight: 500;
}

p#contact-select, p#contact-text, p#contact-send {
    width: 100%;
}

.hint {
    font-size: 12px !important;
    color: #a7a7a7;
    float: right;
}

/* Sign Up Form */

#signup-form input, #signup-form textarea {
    width: 100%;
    border: 1px solid #e1e1e1;
}

.cancel {
    border: 2px solid #f1f1f1;
    background: #f1f1f1;
}


    .cancel:hover {
        background: none;
    }


/* -------------- Research -------------- */

#research-data {
    box-shadow: 0 0 6px #ccc;
    border: 5px solid #f5f5f5;
}

    #research-data div {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    #research-data h5 {
        margin-top: 0;
        font-size: 16px;
        color: #2a4577;
    }

    #research-data li {
        padding: 10px;
        overflow: hidden;
        border-bottom: 1px solid #e1e1e1;
    }

        #research-data li.even {
            background: #f8f8f8;
        }

.data-title {
    width: 30%;
    display: inline-block;
    padding: 20px 20px 0 10px;
}

.data-desc {
    width: 70%;
    display: inline-block;
    float: right;
    padding: 20px 0 20px 20px;
    font-size: 14px;
}

.lucror-research .col-3 {
    padding-left: 0;
    padding-right: 40px;
}


/* -------------- 404 and 505 -------------- */

#notfound h1 {
    color: #2a4577;
}

    #notfound h1:after {
        content: '';
        background: #d9d9d9;
        height: 3px;
        width: 35px;
        display: block;
        margin: 25px auto 0 auto;
    }

#notfound span {
    display: block;
    font-size: 55px;
    padding-bottom: 10px;
}

#notfound .button {
    margin-top: 20px;
    margin-bottom: 25px;
    display: inline-block;
    text-transform: uppercase;
}

#notfound {
    border-top: 1px solid #e1e1e1;
}


/*------------------------------------------------------------------------------------------*/
/* Footer */
/*------------------------------------------------------------------------------------------*/

#footer {
    background: url(../images/bg-footer.jpg) no-repeat left bottom #213d71;
    background-size: cover;
    padding: 90px 0 20px 0;
}

    #footer, #footer p, #footer li a {
        font-size: 13px;
        color: #fff;
        line-height: 24px;
        text-decoration: none;
    }

        #footer [class*='col-'] {
            padding: 40px 20px;
        }

            #footer [class*='col-']:before {
                content: "";
                display: block;
                background: #fff;
                height: 1px;
                width: 50px;
                margin-bottom: 25px;
            }

#logo-footer {
    display: block;
    margin: 0 0 30px 20px;
}

#address {
    background: url(../images/icons/icon-map.png) no-repeat left top;
    margin-right: 50px;
    padding-left: 40px;
    float: left;
}

#phone {
    background: url(../images/icons/icon-phone.png) no-repeat left top;
    padding-left: 50px;
    float: left;
}

#partner a {
    padding-right: 35px;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    transition: all .2s linear;
}

    #partner a:hover {
        opacity: 0.7;
    }

    #partner a:last-of-type {
        padding-right: 0;
    }

#footer-menu li {
    float: left;
}

#footer-menu a {
    padding-right: 15px;
}

#footer p {
    margin: 0;
    float: right;
}

/* Scroll Up */

#scrollUp {
    bottom: 0;
    right: 10px;
    width: 70px;
    height: 80px;
    margin-bottom: -10px;
    padding: 0 5px 20px 5px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    -webkit-transition: margin-bottom 150ms linear;
    -moz-transition: margin-bottom 150ms linear;
    -o-transition: margin-bottom 150ms linear;
    transition: margin-bottom 150ms linear;
}

    #scrollUp:hover {
        margin-bottom: 0;
    }

    #scrollUp:before {
        background: rgba(0, 0, 0, 0.2);
        font-family: "fontawesome";
        font-size: 2.6em;
        font-style: normal;
        font-weight: normal;
        text-align: center;
        color: #fff;
        width: 56px;
        height: 56px;
        display: inline-block;
        line-height: 56px;
        content: "\f106";
        opacity: 1;
        border-radius: 5px;
    }



/*------------------------------------------------------------------------------------------*/
/* Lightbox */
/*------------------------------------------------------------------------------------------*/



/**
 * Featherlight – ultra slim jQuery lightbox
 * Version 1.3.3 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2015, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/
@media all {

    .screen-lightbox {
        display: none;
    }

        .screen-lightbox h3 {
            margin-bottom: 15px;
        }

            .screen-lightbox h3.heading-a:after {
                display: block;
                float: none;
                width: 50px;
                height: 3px;
                margin-top: 15px;
            }

    .screen-lightbox {
        background: #fff;
        padding: 20px;
        max-width: 800px;
        margin: 0 auto;
    }

        .screen-lightbox img {
            max-width: 100%;
        }

    .featherlight {
        display: none;
        /* dimensions: spanning the background from edge to edge */
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 2147483647; /* z-index needs to be >= elements on the site. */
        /* position: centering content */
        text-align: center;
        /* insures that the ::before pseudo element doesn't force wrap with fixed width content; */
        white-space: nowrap;
        /* styling */
        cursor: pointer;
        background: #333;
        /* IE8 "hack" for nested featherlights */
        background: rgba(0, 0, 0, 0);
    }

        /* support for nested featherlights. Does not work in IE8 (use JS to fix) */
        .featherlight:last-of-type {
            background: rgba(0, 0, 0, 0.8);
        }

        .featherlight:before {
            /* position: trick to center content vertically */
            content: '';
            display: inline-block;
            height: 100%;
            vertical-align: middle;
            margin-right: -0.25em;
        }

        .featherlight .featherlight-content {
            /* position: centering vertical and horizontal */
            text-align: left;
            vertical-align: middle;
            display: inline-block;
            /* dimensions: cut off images */
            position: relative;
            padding: 25px 0;
            border-bottom: 25px solid transparent;
            /* dimensions: handling small or empty content */
            min-width: 30%;
            /* dimensions: handling large content */
            margin-left: 5%;
            margin-right: 5%;
            max-height: 95%;
            /* styling */
            cursor: auto;
            /* reset white-space wrapping */
            white-space: normal;
        }

        /* contains the content */
        .featherlight .featherlight-inner {
            /* make sure its visible */
            display: block;
            position: relative;
            height: calc(100vh - 24px - 40px - 40px);
            overflow-y: auto;
            overflow-x: hidden;
        }

        .featherlight .featherlight-close-icon {
            /* position: centering vertical and horizontal */
            position: absolute;
            z-index: 9999;
            top: 25px;
            right: -35px;
            /* dimensions: 25px x 25px */
            line-height: 25px;
            width: 25px;
            /* styling */
            cursor: pointer;
            text-align: center;
            color: #fff;
            font-family: "fontawesome";
            font-size: 22px;
            opacity: 0.5;
            -webkit-transition: all 0.3s ease-out;
            -moz-transition: all 0.3s ease-out;
            -o-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out;
        }

            .featherlight .featherlight-close-icon:hover {
                opacity: 1;
            }


        .featherlight .featherlight-image {
            /* styling */
            max-height: 100%;
        }


    .featherlight-iframe .featherlight-content {
        /* removed the border for image croping since iframe is edge to edge */
        border-bottom: 0;
        padding: 0;
    }

    .featherlight iframe {
        /* styling */
        border: none;
    }
}

/* handling phones and small screens */
@media only screen and (max-width: 1024px) {
    .featherlight .featherlight-content {
        /* dimensions: maximize lightbox with for small screens */
        margin-left: 10px;
        margin-right: 10px;
        max-height: 98%;
        padding: 10px 10px 0;
        border-bottom: 10px solid transparent;
    }
}


/* Gallery Styling */
@media all {
    .featherlight-next,
    .featherlight-previous {
        font-family: "fontawesome";
        font-size: 22px;
        display: block;
        position: absolute;
        top: 25px;
        right: -70px;
        bottom: 0;
        left: 80%;
        cursor: pointer;
        /* preventing text selection */
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        /* IE9 hack, otherwise navigation doesn't appear */
        background: rgba(0,0,0,0);
        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
        text-align: right;
    }

    .featherlight-previous {
        left: -70px;
        right: 100%;
        text-align: left;
    }

        .featherlight-previous span {
            text-align: left !important;
        }

        .featherlight-next span,
        .featherlight-previous span {
            display: inline-block;
            opacity: 0.3;
            position: absolute;
            top: 50%;
            width: 100%;
            font-size: 80px;
            line-height: 80px;
            /* center vertically */
            margin-top: -40px;
            color: #fff;
            font-style: normal;
            font-weight: normal;
            -webkit-transition: all 0.3s ease-out;
            -moz-transition: all 0.3s ease-out;
            -o-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out;
        }

    .featherlight-next span {
        left: auto;
        right: 7%;
    }

    .featherlight-previous span {
        text-align: right;
        left: 7%;
    }


    .featherlight-next:hover span,
    .featherlight-previous:hover span {
        display: inline-block;
        opacity: 1;
    }

    /* Hide navigation while loading */
    .featherlight-loading .featherlight-previous, .featherlight-loading .featherlight-next {
        display: none;
    }
}

/* Always display arrows on touch devices */
@media only screen and (max-device-width: 1024px) {
    .featherlight-next:hover,
    .featherlight-previous:hover {
        background: none;
    }

    .featherlight-next span,
    .featherlight-previous span {
        display: block;
    }
}

/* handling phones and small screens */
@media only screen and (max-width: 1024px) {
    .featherlight-next,
    .featherlight-previous {
        top: 10px;
        right: 10px;
        left: 85%;
    }

    .featherlight-previous {
        left: 10px;
        right: 85%;
    }

        .featherlight-next span,
        .featherlight-previous span {
            margin-top: -30px;
            font-size: 40px;
        }
}





/* Video */

/* --------- 6.5 Video ---------- */

.video_container, .easyContainer {
    position: relative;
    padding-bottom: 56.25%; /* 16/9 ratio */
    margin: 0;
    padding-top: 0; /* IE6 workaround*/
    height: 0;
    overflow: hidden;
}

    .video_container iframe, .video_container object, .video_container embed {
        position: absolute;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 100% !important;
    }

.slvj-lightbox iframe, .slvj-lightbox object, .slvj-lightbox embed {
    width: 100% !important;
    height: 529px !important;
}

.videojs-background-wrap {
    overflow: hidden;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -998;
}


#slvj-window {
    width: 100%;
    min-height: 100%;
    z-index: 99999;
    background: rgba(0,0,0,0.8);
    position: fixed;
    top: 0;
    left: 0;
}

    #slvj-window,
    #slvj-window * {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

#slvj-background-close {
    width: 100%;
    min-height: 100%;
    z-index: 31;
    position: fixed;
    top: 0;
    left: 0;
}

#slvj-back-lightbox {
    max-width: 940px;
    max-height: 529px;
    z-index: 32;
    text-align: center;
    margin: 0 auto;
}

.slvj-lightbox {
    width: 100%;
    height: 100%;
    margin: 0;
    z-index: 53;
}

#slvj-close-icon:before {
    font-family: "fontawesome";
    color: #fff;
    content: '\f00d';
    font-size: 22px;
    opacity: 0.5;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    z-index: 99999;
    height: 22px;
    width: 22px;
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}

    #slvj-close-icon:before:hover {
        opacity: 1;
        cursor: pointer;
    }




/*------------------------------------------------------------------------------------------*/
/* Responsive Elements */
/*------------------------------------------------------------------------------------------*/


@media (min-width: 768px) {
    .hide-on-desktop {
        display: none !important;
    }
}

@media (max-width: 480px) {

    .row {
        padding: 15px 0;
    }

    .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col-2-3, .col-3-4, .col-9-10, .col-61, .col-38, .row, #services li {
        width: 100%;
    }

    section {
        padding: 10px 0;
    }

    img {
        max-width: 100%;
    }

    /* Logo */

    #logo img {
        max-width: 70%;
        margin-left: 20px;
    }

    /* Navigation */

    #header-nav {
        height: 90px;
        padding-left: 0;
        padding-right: 0;
    }

    #nav-main {
        display: none;
    }

    #nav-trigger {
        display: block;
    }

    nav#nav-mobile {
        display: block;
    }

        nav#nav-mobile li {
            display: block;
        }

    #header aside {
        display: none;
    }

    /* Headings */

    .heading-a::after {
        float: left;
    }

    #banner h1 {
        font-size: 54px;
    }

    .page-header .heading-a::after {
        display: none;
    }

    .lucror-news .page-header h1, .lucror-research .page-header h1 {
        padding: 50px 0 50px 20px
    }

    /* Buttons */

    #banner .button {
        margin: 15px;
        display: block;
    }

    /* Introduction & About Us */

    #introduction .col-4, .lucror-about .page-header .col-4 {
        display: none;
    }

    /* Trial */

    #start-trial {
        padding-bottom: 20px;
    }

        #start-trial img {
            margin-bottom: 10px;
        }

    /* Tabs */

    #tabs-container .tabs-menu li a {
        width: 93px;
        font-size: 13px;
    }

    .lucror-about #tabs-container {
        margin-top: -93px;
    }

    /* Research */

    #research-data h5 {
        font-size: 13px;
    }

    .lucror-research .col-3 {
        padding: 20px;
    }

    /* Coverage Universe */

    .lucror-coverage #coverage-container {
        position: absolute;
        top: 0;
    }

    .lucror-coverage #coverage-universe-desc {
        position: absolute;
        top: 190px;
    }

    .lucror-coverage #coverage-universe .col-2-3 {
        padding-top: 450px;
    }



    .lucror-coverage #coverage-universe .row .col-1 {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }




    /* Footer */

    #address {
        margin-bottom: 15px;
        padding-left: 52px;
    }

    #footer p {
        float: none;
        display: block;
        clear: both;
    }


    /* Hide Elements */

    a#scrollUp, .divider {
        display: none !important;
    }
}



/* Mobile to Tablet Portrait
===============================*/
@media (min-width: 480px) and (max-width: 767px) {

    .row {
        padding: 15px 0;
    }

    .col-1, .col-2, .col-5, .col-7, .col-9, .col-11, .col-2-3, .col-3-4, .col-61, .col-38, #coverage .col-3, .row {
        width: 100%;
    }

    .col-3, .col-4, .col-6, .col-8, .col-10, .col-12 {
        width: 50%;
    }

    section {
        padding: 10px 0;
    }

    img {
        max-width: 100%;
    }

    /* Logo */

    #logo img {
        max-width: 80%;
        margin-left: 20px;
    }

    /* Navigation */

    #header-nav {
        height: 90px;
        padding-left: 0;
        padding-right: 0;
    }

    #nav-main {
        display: none;
    }

    #nav-trigger {
        display: block;
    }

    nav#nav-mobile {
        display: block;
    }

        nav#nav-mobile li {
            display: block;
        }

    #header aside {
        display: none;
    }

    /* Headings */

    .heading-a::after {
        float: right;
    }

    #banner h1 {
        font-size: 54px;
    }

    #introduction .col-4, .lucror-about .page-header .col-4 {
        display: none;
    }

    .lucror-news .page-header h1, .lucror-research .page-header h1 {
        padding: 50px 0 50px 20px
    }


    /* Trial */

    #start-trial {
        padding-bottom: 20px;
        text-align: center;
    }

        #start-trial img {
            display: inline-block;
            float: none;
        }

        #start-trial h3 {
            clear: both;
        }

    /* Tabs */

    #tabs-container .tabs-menu li a {
        width: 120px;
    }

    .lucror-about #tabs-container {
        margin-top: -97px;
    }

    /* Research */

    .lucror-research .col-3 {
        width: 100%;
        padding: 20px;
    }

    /* Coverage Universe */

    .lucror-coverage #coverage-container {
        position: absolute;
        top: 0;
        width: 100%;
    }

    .lucror-coverage #coverage-universe-desc {
        position: absolute;
        top: 190px;
        width: 420px;
        left: 50%;
        margin-left: -250px;
    }

    .lucror-coverage #coverage-universe .col-2-3 {
        padding-top: 450px;
    }

    .lucror-coverage .asia-map {
        right: -264px !important;
    }

    .lucror-coverage .europe-map {
        right: 182px !important;
    }



    .lucror-coverage #coverage-universe .row .col-1 {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }





    /* Footer */

    #partner a {
        padding-right: 5px;
    }

    #address {
        margin-bottom: 15px;
        padding-left: 52px;
    }

    #footer p {
        float: none;
        display: block;
        clear: both;
    }

    /* Hide Elements */

    a#scrollUp {
        display: none !important;
    }
}


/* Landscape Tablet to Desktop
===============================*/
@media (min-width: 768px) and (max-width: 1024px) {


    /* Headings */

    .heading-a:after {
        float: left;
    }

    .lucror-about .heading-a:after {
        float: right;
    }

    /* Introduction */

    #introduction .col-3-4 .col-2 {
        width: 100%;
    }

    #introduction img, .lucror-about .page-header .col-4 img {
        left: -312px;
    }

    /* Coverage */

    #coverage .col-3, #coverage .col-2-3 {
        width: 100%;
    }

    #coverage img {
        max-width: 100%;
    }

    /* Trial */

    #start-trial img {
        max-width: 60%;
        margin-top: -50px;
    }

    /* News */

    #news .col-4 {
        width: 50%;
    }



    /* Lucror Coverage */

    .lucror-coverage #coverage-universe .col-2-3 {
        width: 50%;
    }

    .lucror-coverage #coverage-container {
        width: 50%;
    }

    .lucror-coverage #coverage-universe .tab .col-3 {
        width: 50%;
    }

    .lucror-coverage #coverage-universe-desc p {
        width: 90%;
    }

    /* Footer */

    #partner a {
        padding-right: 5px;
    }

    #address {
        margin-bottom: 15px;
        padding-left: 52px;
    }

    #footer p {
        float: none;
        display: block;
        clear: both;
    }
}


.has-error .form-control {
    border-color: #a94442;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
}

.asia-map {
    background-image: url(../../../images/map/hover-asia.png);
    background-repeat: no-repeat;
    width: 274px;
    height: 161px;
    position: absolute;
    right: -38px;
    top: 145px;
    opacity: 0;
    cursor: pointer;
}

    .asia-map:hover {
        opacity: 1;
    }

.europe-map {
    background-image: url(../../../images/map/hover-europe.png);
    background-repeat: no-repeat;
    width: 100%;
    height: 158px;
    position: absolute;
    right: -338px;
    top: 37px;
    opacity: 0;
    cursor: pointer;
}

    .europe-map:hover {
        opacity: 1;
    }

.latam-map {
    background-image: url(../../../images/map/hover-southamerica.png);
    background-repeat: no-repeat;
    width: 200px;
    height: 258px;
    position: absolute;
    left: 124px;
    top: 192px;
    opacity: 0;
    cursor: pointer;
}

    .latam-map:hover {
        opacity: 1;
    }

.lucror-coverage .europe-map {
    right: 168px;
    top: 8px;
    width: 63px;
    height: 100px;
    background-repeat: no-repeat;
    background-size: contain;
}

.lucror-coverage .asia-map {
    right: -249px;
    top: 53px;
    width: 100%;
    height: 75px;
    background-repeat: no-repeat;
    background-size: contain;
}

.lucror-coverage .latam-map {
    left: 249px;
    top: 53px;
    width: 100%;
    height: 75px;
    background-repeat: no-repeat;
    background-size: contain;
}


.lucror-coverage .active.europe-map {
    background-image: url(../../images/map/active-europe.png) !important;
    opacity: 1;
    cursor: default;
}

.lucror-coverage .active.asia-map {
    background-image: url(../../images/map/active-asia.png) !important;
    opacity: 1;
    cursor: default;
}

.lucror-coverage .active.latam-map {
    background-image: url(../../images/map/active-southamerica.png) !important;
    opacity: 1;
    cursor: default;
}


/*
    Print Icons
*/

.icon-print:hover, .icon-download:hover, .print-icon-wrapper a:hover, .action-items a.fa:hover {
    background: none;
    color: #2A4577 !important;
}

.icon-print, .icon-download, .print-icon-wrapper a, .prin-icon-wrapper a, .action-items a.fa {
    background: #2A4577;
    text-align: center;
    height: 30px;
    color: #fff !important;
    font-size: 17px !important;
    line-height: 34px;
    display: inline-block;
    border: 1px solid #2A4577;
    width: 30px;
    cursor: pointer;
}

/*T&C - after login*/
.lucror-privacy ol {
    padding-left: 25px;
}

/* -------------- Methodology -------------- */

#methodology-data {
    box-shadow: 0 0 6px #ccc;
    border: 5px solid #f5f5f5;
}

    #methodology-data div {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    #methodology-data h5 {
        margin-top: 0;
        font-size: 18px;
    }

    #methodology-data li {
        padding: 10px;
        overflow: hidden;
        border-bottom: 1px solid #e1e1e1;
    }

    #methodology-data .methodology-definitions li {
        overflow: visible !important;
        border: none;
        background: url('/Images/laraimages/arrow-web.png') no-repeat 0 18px transparent;
    }

    #methodology-data ul.methodology-definitions, #methodology-data ul.methodology-definitions li {
        padding-left: 20px;
    }

    #methodology-data li.even {
        background: #f8f8f8;
    }

.methodology-content {
    display: none;
}

    .methodology-content.active {
        display: block;
    }

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}


/* REquest Trial Form */

#trial-form {
    background: #e6e6e6;
    padding-left: 35px;
    padding-right: 35px;
}

.grecaptcha-badge {
    display: none !important;
    visibility: hidden !important;
}