html {

}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
}

.main-container.with-nav-background {
    padding-top: 95px;
}

h1 {
    font-family: 'CircularStd';
    font-size: 60px;
}

h2 {
    font-family: 'CircularStd';
    font-weight: bold;
    font-size: 55px;
}

h3 {
    font-family: 'CircularStd';
    font-size: 40px;
    letter-spacing: -1px;
    font-weight: bold;
}

h4 {
    font-family: 'SuperiorTitle';
    font-size: 45px;
    line-height: 1.2; /* 53px */
}

h5 {
    font-family: 'SuperiorTitle';
    font-size: 30px
}

h6 {
    font-family: 'SuperiorTitle';
    font-size: 25px;
    line-height: 1.2;
}

p {
    font-family: 'CircularStd';
    line-height: 1.6;
    margin-bottom: 6%;
    color: #474747;
}

a {
    color: #3c3c3b;
}

a:hover {
    text-decoration: none;
}

ul {
    font-family: 'CircularStd';
    font-weight: bold;
}

li {

}

input, textarea, select {
    font-family: 'CircularStd';
}

button {
    font-family: 'CircularStd';
    font-weight: bold;
}

.scroll-down-arrow {
    background: url('../img/arrow-down.png') top center no-repeat no-repeat;
    background-size: 100%;

    width: 20px;
    height: 20px;
    position: relative;
    top: -3px;
    opacity: 0.3;
    margin: 0 auto 3.2%;
}

/* -----------------------------

    Dark theme
    This is intended to transform the colours for the
    top of the page only

----------------------------- */

.dark-theme h1.slideshow__title {
    color: #222;
}

.dark-theme .header__logo {
    background: url('../img/logo-dark.png') top left no-repeat no-repeat;
    background-size: 100%;
}

/* -----------------------------

    Container & Wrapper

----------------------------- */

.main-container {
    max-width: 100%;
    margin: 0 auto;
    display: block;
}

.wrapper {
    padding: 4% 8% 20% 8%;
}

.wrapper__with-banner {
    padding: 4% 8% 0% 8%;
}

.row {
    margin-left: -1.6%;
    margin-right: -1.6%;
}

[class*="col-"] {
    padding-left: 1.6%;
    padding-right: 1.6%;
}


@media (min-width: 768px) {

    .wrapper {
        padding-bottom: 8%;
    }

    .wrapper__with-banner {
        padding-bottom: 0%;
    }

}

/* -----------------------------

    Header

----------------------------- */

.header {
    position: relative;
}

.header__logo-container {
    position: fixed;
    z-index: 1000;
    width: 100%;
    padding: 1.5% 2%;
    font-size: 20px;
    line-height: 20px;
    font-family: 'CircularStd';
    font-weight: 600;
}
.header__logo-container a{
    color: #fff;
}

.header__logo {
    background: url('../img/new-logo.png') top left no-repeat no-repeat;
    background-size: 100%;
    width: 43px;
    height: 43px;
    float: left;
    transition: .6s;
    -webkit-transition: .6s;
    -moz-transition: .6s;
    -o-transition: .6s;
    -ms-transition: .6s;
}

.header--dark .header__logo-container a {
    color: #000;
}
.header--dark .header__logo-container {
    background: rgba(255, 255, 255, 0.55);
}

.header__logo-container-dark-background {
    background-color: #3c3c3b;
}

#behind-header {
    height: 98px;
}

/* -----------------------------

    Hamburger

----------------------------- */

.c-hamburger {
    display: block;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    width: 25px;
    height: 35px;
    font-size: 0;
    text-indent: -9999px;
    appearance: none;
    box-shadow: none;
    border-radius: none;
    border: none;
    cursor: pointer;
    /*transition: background 0.3s;*/
}

.c-hamburger:focus {
    outline: none;
}

.c-hamburger span {
    display: block;
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: #fff;
}

.header--dark .c-hamburger span {
    background: #000;
}

.dark-theme .c-hamburger span {
    background: #000;
}

.c-hamburger span::before,
.c-hamburger span::after {
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: .6s;
    -webkit-transition: .6s;
    -moz-transition: .6s;
    -o-transition: .6s;
    -ms-transition: .6s;
    content: "";
}

.header--dark .c-hamburger span::before,
.dark-theme .c-hamburger span::before,
.header--dark .c-hamburger span::after,
.dark-theme .c-hamburger span::after {
    background-color: #000;
}

.c-hamburger span::before {
    top: -7px;
}

.c-hamburger span::after {
    bottom: -7px;
}

.c-hamburger--htx {
    background-color: transparent;
    margin: -11px 0 0 0;
}

.c-hamburger--htx span {
    transition: background 0 0;
}

.c-hamburger--htx span::before,
.c-hamburger--htx span::after {
    transition-duration: 0.3s, 0.3s;
    transition-delay: 0.3s, 0s;
}

.c-hamburger--htx span::before {
    transition-property: top, transform;
}

.c-hamburger--htx span::after {
    transition-property: bottom, transform;
}

/* active state, i.e. menu open */
.c-hamburger--htx.is-active {
    background-color: transparent;
}

.c-hamburger--htx.is-active span {
    background: none;
}

.c-hamburger--htx.is-active span::before {
    top: 0;
    transform: rotate(45deg);
}

.c-hamburger--htx.is-active span::after {
    bottom: 0;
    transform: rotate(-45deg);
}

.c-hamburger--htx.is-active span::before,
.c-hamburger--htx.is-active span::after {
    transition-delay: 0s, 0.3s;
}

/* -----------------------------

    Top nav

----------------------------- */

.top-nav {
    text-align: center;
    z-index: 900;
    position: fixed;
    top: -500px;
    left: 0;
    right: 0;
    padding-top: 130px;
    float: none;
    clear: both;
    background: #3c3c3b;
    opacity: 0;
    transition: .6s;
    -webkit-transition: .6s;
    -moz-transition: .6s;
    -o-transition: .6s;
    -ms-transition: .6s;
}

.top-nav-wrapper--show .top-nav {
    opacity: 1;
    top: 0;
}

.behind-nav-overlay {
    visibility: hidden;
    background: rgba(0, 0, 0, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 850;
}

.top-nav-wrapper--show .behind-nav-overlay {
    visibility: visible;
}

.top-nav ul {
    clear: both;
    padding: 0 0 10px 0;
    margin-left: 0;
}

.top-nav ul li {
    float: none;
    border: none;
    padding-bottom: 8px;
}

.top-nav ul li a {
    color: #fff;
    line-height: 1.2;
    transition: .6s;
    -webkit-transition: .6s;
    -moz-transition: .6s;
    -o-transition: .6s;
    -ms-transition: .6s;
}

.top-nav ul li a:hover, .top-nav ul li a:active, .top-nav ul li.active a {
    color: #ffdc1c;
    border-bottom: 2px solid #ffdc1c;
}

.top-nav .top-nav--bottom-strip {
    margin-top: 40px;
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #ffdc1c;
}

.top-nav .top-nav--bottom-strip p {
    display: inline-block;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 0;
    text-decoration: underline;
}

.top-nav .top-nav--bottom-strip p a {
    color: #231f20;
    font-weight: bold;
}
#block-tile-works {
    width: 100%;
}

.worksPage .grid-item, .worksPage .grid-sizer {
    width: 10%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 10px;
    height: auto;
}
.worksPage .grid-item {
    float: left;
    height: auto;
    margin: 0 0 20px 0;
}
.worksPage .grid-item-video .video-tile {
    position: relative;
    width: 100%;
    height: 0px;
    padding-bottom: 61%;
}
.worksPage .grid-item-video .video-tile iframe {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    max-height: 317px;
}
.worksPage .grid-item-video {
    width: 20%;
    height: auto;
}
.skill ul {
    margin: 0 0 60px 0;
}
.skill ul li {
    font-family: 'CircularStd';
    font-weight: 400;
    font-size: 16px;
    margin: 0 0 15px 0;
    line-height: 23px;
}




/* -----------------------------

    Slideshow
----------------------------- */
.bg-main{
    height: 100vh;
    width: 100%;
    position: relative;
}
.bg-main:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(18, 95, 235, 0.4);
    display: block;
}
.bg-main.bg1 {
    background: url("../img/_BEG1545.jpg") no-repeat;
    background-size: cover;
    background-position: 50% 0%;

}
.bg-main.bg2 {
    background: url("../img/_BEG1540 1.jpg") no-repeat;
    background-size: cover;
    background-position: 50% 0%;

}
.bg-main.bg3 {
    background: url("../img/_BEG1530.jpg") no-repeat;
    background-size: cover;
    background-position: 50% 0%;

}
.bg-main.bg4 {
    background: url("../img/contact.jpg") no-repeat;
    background-size: cover;
    background-position: 50% 0%;

}
.bg-main.bg5 {
    background: url("../img/_BEG1527.jpg") no-repeat;
    background-size: cover;
    background-position: 50% 0%;

}
.bg-main h1 {
    text-align: center;
    line-height: 100vh;
    color: #fff;
    position: relative;
    z-index: 101;
}

/* -----------------------------

    Slideshow dark font

----------------------------- */

#our__thoughts {
    margin-top: 3%;
    margin-bottom: 3%;
}

#our__thoughts .carousel-indicators li,
#our__thoughts .carousel-indicators li.active {
    border: 2px solid #474747;
}

#our__thoughts .carousel-indicators .active {
    background-color: #474747;
}


/*.dark_slideshow__subtitle h5,*/
.our__thoughts-caption h3 {
    padding-bottom: 10px;
    display: inline-block;
}

.our__thoughts-caption {
    width: 40%;
    margin: 0 auto;
    color: #474747;
}

.our__thoughts-caption p {
    margin-top: 6%;
    margin-bottom: 0;
}

.carousel-control {
    width: 15%;
    background: transparent !important;
}

.carousel-control {
    text-shadow: none;
    opacity: 1;
    color: #474747;
}

.carousel-control:hover {
    color: #474747;
    opacity: 0.8;
}

.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-prev,
.carousel-control .icon-next {
    font-size: 20px;
}


@media (max-width: 991px) {

    .our__thoughts-caption {
        width: 80%;
    }

    .carousel-caption {
        padding: 30% 10% 24% 10%;
    }

    .carousel-caption h1 {
        font-size: 32px;
    }

    .carousel-caption a {
        padding: 10px 20px 10px 20px;
    }

    .carousel-indicators {
        bottom: 30px;
    }

    .carousel-control {
        display: none;
    }
}

/* -----------------------------

    Banner

----------------------------- */

.banner>.item {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    /*    min-height: 870px;*/
}

.banner-image {
    display: block;
}

.banner-caption {
    padding: 25% 0 25% 0;
    position: relative;
    width: 75%;
    left: 0px;
    right: 0px;
    text-shadow: none;
    bottom:20px;
    color: #fff;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.banner-caption h1 {
    font-weight: 600;
}


@media (max-width: 991px) {

    .banner-caption {
        width: 90%;
        padding: 30% 0 24% 0;
    }

    .banner-caption h1 {
        font-size: 32px;
    }
}

/* -----------------------------

    Intro

----------------------------- */

.intro {
    border-top: 0px;
    /*border-bottom: 1px solid #e5e5e5;
    margin-bottom: 4%*/
}

/*todo remove the two comments from above*/

.intro__content p {
    font-size: 18px;
    margin-bottom: 6%;
    color: #474747;
}

.intro__content p:last-of-type {
    margin-bottom: 0px;
}

.intro__content {
    position: relative;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
}

.intro__content-inner {
    position: relative;
    bottom: 0px;
    padding-top: 0%;
    padding-bottom: 0%;
    padding-right: 0%;
}

.intro__title {
    margin-bottom: 8%;
    line-height: 1.4;
    color: #474747;
}

.intro__title_form {
    color: #fff;
    margin-bottom: 8%;
}

.intro__img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    margin-bottom: 8%;
}

.intro__section {
    padding-top: 5%;
    padding-bottom: 5%;
    position: relative;
    min-height: 0px;
}

.intro__form {
    background-color: #231f20;
    padding: 10% 10% 9% 10%;
    position: relative;
}

.intro__section_left {
    border-right: 0px;
    padding-right: 0%;
    margin-right: 0%
}

.intro__input {
    border-radius: 0px;
    padding: 8px 14px;
    height: auto;
    font-size: 14px;
    color: #000;
    border: 3px solid #fff;
    box-shadow: none!important;
    -webkit-appearance: none;
}

.intro__input:focus {
    border-color: #fff;
}

.intro__input_hp {
    display: none;
}

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

.intro__submit {
    border-radius: 0px;
    border: none;
    background-color: #ffdc1d;
    padding: 8px 18px;
    font-size: 13px;
    position: relative;
    color: #231f20;
    font-weight: bold;
}

.intro__submit.disabled {
    background-color: #ffdc1d;
    color: #231f20;
    opacity: .2;
}

.intro__submit.disabled:hover {
    background-color: #ffdc1d;
    color: #231f20;
    opacity: .2;
}

.intro__submit:hover {
    background-color: #231f20;
    color: #ffdc1d;
}

.intro__group {
    margin-bottom: 6%;
}

.intro__group.has-error .intro__input {
    border: 3px solid #eb1c1c;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    -ms-transition: .3s;
}

.intro__group:last-of-type {
    margin-bottom: 0px;
}

.intro__select {
    border: 3px solid #fff;
    margin: 0px;
    border-radius: 0px;
    background-color: #fff;
    font-size: inherit;
    -webkit-appearance: button;
    -webkit-border-radius: 0px;
    -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
    -webkit-padding-end: 20px;
    -webkit-padding-start: 2px;
    -webkit-user-select: none;
    background-position: 97% center;
    background-repeat: no-repeat;
    font-size: inherit;
    overflow: hidden;
    padding: 8px 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    font-size: 14px;
    height: auto;
    color: #000;
    outline: none;
}

.intro__select:focus {
    border: 3px solid #fff!important;
}

.intro__group.has-error .intro__select {
    border: 3px solid #eb1c1c;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    -ms-transition: .3s;
}

.intro__successful {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background-color: #000;
    opacity: .9;
    z-index: 10;
}

.intro__successful-inner {
    padding: 15%;
    position: relative;
    display: table;
    height: 100%;
    width: 100%;
}

.intro__successful-body {
    display: table-cell;
    vertical-align: middle
}

.intro__successful-title {
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
}

.intro__successful-content {
    text-align: center;
    color: #fff;
}

.intro__submit-text {
    color: #fff;
    text-align: left;
    margin-bottom: 6%;
}

@media (min-width: 768px) {

    .intro__input {
        padding: 14px 20px;
        height: auto;
        font-size: 18px;
    }

    .intro__select {
        padding: 14px 20px;
        font-size: 1.5em;
    }

    .intro__submit {
        font-size: 18px;
        padding: 13px 28px;
    }

    .intro__section {
        min-height: inherit;
    }

}

@media (min-width: 992px) {

    .intro {
        border-top: 1px solid #e5e5e5;
        /*border-bottom: 1px solid #e5e5e5;
        margin-bottom: 4%*/
    }

    /*todo remove the two comments from above*/

    .intro__title_form {
        margin-bottom: 8%;
    }

    .intro__section {
        padding-top: 10%;
        padding-bottom: 10%;
    }

    .intro__section_left {
        border-right: 1px solid #e5e5e5;
        padding-right: 10%;
        margin-right: 2%
    }

/*    .intro__content {
        position: absolute;
        top: 0px;
        bottom: 0px;
        left: 0px;
        right: 0px;
    }

    .intro__content-inner {
        position: absolute;
        bottom: 0px;
        padding-top: 10%;
        padding-bottom: 10%;
        padding-right: 10%;
    }*/

}


/* -----------------------------

    Contact form

----------------------------- */

.screen-reader-response {
    display: none;
}

.wpcf7-validation-errors {
    color: #d00;
    font-weight: bold;
}

.wpcf7-mail-sent-ok {
    color: #4b0;
    font-weight: bold;
}

/*
    Fix fragment links scrolling us behind our fixed nav bar.
    See: https://css-tricks.com/hash-tag-links-padding/
 */
.wpcf7:before {
    display: block;
    content: " ";
    margin-top: -285px;
    height: 285px;
    visibility: hidden;
}

.wpcf7-not-valid-tip {
    display: block;
    padding: 10px 0;
    color: #d00;
}

.wpcf7-not-valid {
    border-color: #D00 !important;
}

.contact-form__textarea {
    height: 270px !important;
}

.contact-form__input,
.contact-form__textarea,
.large-title-section select {
    border-radius: 0px;
    background: #e5e5e5;
    border: 2px solid #e5e5e5;
    color: #3c3c3b !important;
    padding: 16px;
    height: auto;
    font-size: 18px !important;
    box-shadow: none!important;
    font-weight: bold;
}

.contact-form__input:focus,
.contact-form__textarea:focus,
.contact-details select:focus {
    border: 2px solid #ffdc1e;
}

.large-title-section select {
    -webkit-appearance:none;
    -moz-appearance:none;
    -o-appearance:none;
    appearance:none;
    background : url('../img/select-arrow.png') no-repeat right;
    border-right: 30px solid transparent;
    background-size: 13px 8px;
    cursor : pointer;
}

.contact-form__submit {
    border-radius: 0;
    border: none;
    background-color: #ffdc1d;
    padding: 16px;
    font-size: 18px !important;
    position: relative;
    color: #474747;
    font-weight: bold;
    text-align: left;
}

.large-title-section__subsection {
    padding-top: 5%;
    padding-bottom: 5%;
}


@media (min-width: 768px) {

    .contact-form__input,
    .contact-form__textarea,
    .contact-details select {
        padding: 20px 25px;
        height: auto;
        font-size: 18px;
    }

    .contact-form__submit {
        padding: 20px 25px;
        height: auto;
        font-size: 18px;
    }

    /*.large-title-section__subsection {*/
        /*padding-top: 25%;*/
        /*padding-bottom: 25%;*/
    /*}*/

    /*.linebreak__subsection {*/
        /*margin-top: 20%;*/
        /*margin-bottom: 20%;*/
    /*}*/
}


/* -----------------------------

    Tagline

----------------------------- */

.tagline {
    padding: 15% 0 15% 0;
    border-top: 1px solid #e5e5e5;
    text-align: center;
}

.rr-tagline,
.rr-subtagline {
    color: #474747;
}

.rr-subtagline {
    opacity: 0.7;
    margin-top: 5%;
}
/* -----------------------------

    Main Quote

----------------------------- */

.testimonial {
    padding: 10% 0 10% 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    text-align: center;
    margin-bottom: 3.2%
}

.testimonial__quote {
    color: #474747;
}

.testimonial__divide {
    color: #474747;
    padding: 20px 0px 20px 0px;
}

.testimonial__details {
    color: #474747;
}

.testimonial__carousel .carousel-caption {
    padding: 20px 0px;
}

.testimonial__caption {
    transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
}

.carousel-caption__wrap {
    position: relative;
}

@media (min-width: 768px) {

    .testimonial {
        padding: 10% 16% 10% 16%;
    }

    .tagline {
        padding: 15% 16% 15% 16%;
    }

}

/* -----------------------------

    Primary Cards

----------------------------- */

.primary-cards {
    border-top: 1px solid #e5e5e5;
    padding-top: 6.4%;
    margin-bottom: 0.6%;
}

.primary-cards__item {
    background-color: #ccc;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
}
.primary-cards__item img {
    width: 100%;
}

.primary-cards__item__content-card {
    background-color: #ccc;
    margin-bottom: 6.4%;
    height: 350px;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


.primary-cards.content-header.content-header__guides {
    border-top: none;
    padding-top: 0;
}

/*todo delete all the stiles for primary-cards__wide - this is not used any more */

/*.primary-cards__wide {*/
    /*overflow: hidden;*/
    /*background-position: center;*/
    /*background-repeat: no-repeat;*/
    /*background-size: cover;*/
/*}*/

.primary-wide-card {
    padding-top: 6.4%;
    padding-bottom: 6.4%;
    border-top: 1px solid #e5e5e5;
}

.primary-wide-card p.wide-card__description {
    margin-top: 6.4%;
    margin-bottom: 0%;
}


@media (min-width: 992px) {

    .primary-cards {
        padding-top: 3.2%;
    }

    .primary-wide-card {
        padding-top: 3.2%;
        padding-bottom: 3.2%;
    }

    .primary-wide-card p.wide-card__description {
        margin-top: 3.2%;
    }
}

.primary-cards__col:nth-child(2) {
    float: none;
}

.primary-cards__title,
.primary-cards__title-wide {
    color: #fff;
    display: none;
    transition: .3s;
    -webkit-transition: opacity .3s;
    -moz-transition: opacity .3s;
    -o-transition: opacity .3s;
    -ms-transition: opacity .3s;
}

.primary-cards__overlay {
    position: absolute;
    top: 25px;
    left: 25px;
    right: 25px;
    bottom: 25px;
    background-color: rgba(255,255,255,0.9);
    padding: 10%;
    opacity: 1;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    -ms-transition: .3s;
}

.primary-cards__overlay-wide {
    position: absolute;
    top: 25px;
    left: 25px;
    right: 25px;
    bottom: 25px;
    background-color: rgba(255,255,255,0.9);
    padding: 10%;
    opacity: 1;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    -ms-transition: .3s;
}

.primary-cards__overlay.journal-page {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-color: rgba(60,60,59,0.5);
    /*background-color: rgba(71,71,71,0.5);*/
    padding: 10%;
    opacity: 1;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    -ms-transition: .3s;
}

/*todo make sure the title of the journal-page (in large card) is OVER an image before hovered over */

.primary-cards__journal__title a {
    font-family: 'SuperiorTitle';
    font-weight: normal;
    color: #fff;
    position: absolute;
    top: 25px;
    left: 25px;
    right: 25px;
    bottom: 25px;
    padding: 10%;
    opacity: 1;
}

p.primary-cards__journal-author {
    color: #fff;
    border-bottom: 1px solid #fff;
    display: inline-block;
}

.primary-cards__journal-author-picture {
    width: 35px;
    height: 35px;
    overflow: hidden;
    border-radius: 50%;
}

.primary-cards__journal-author-picture img {
    width: 100%;
    height: auto;
}

.primary-cards__project,
.primary-cards__project-wide {
    font-family: 'CircularStd';
    color: #6d6d6d;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.5;

}
.primary-cards__project span {
    margin: 0 0 20px 0;
    display: block;
    color: #1b64e7;
}

.primary-cards__category {
    font-family: 'CircularStd';
    color: rgba(255, 255, 255, 0.25);
    display: inline-block;
    font-size: inherit;
    font-size: 20px;
    text-transform: uppercase;
}

.primary-cards__category span {
    color: #676767;
    margin: 15px 0 0 0;
    display: inline-block;
    font-size: 18px;
}

.primary-cards__section a {
    color: #ffde00;
    display: inline-block;
}

.primary-cards__overlay-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 10%;
}

.primary-cards__overlay-footer-wide {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 10%;
}

.primary-cards__subtitle {
    line-height: 1.3;
}

.primary-cards__footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15%;
}

.primary-cards__footer-wide {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 7%;
}

.primary-cards__link {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    z-index: 100;
}

@media (min-width: 992px) {

    .primary-cards__title,
    .primary-cards__title-wide {
        display: block;
    }

    .primary-cards__col:nth-child(2n) {
        float: right;
    }

    .primary-cards__overlay,
    .primary-cards__overlay-wide {
        opacity: 0;
    }

    .primary-cards__overlay-wide,
    .primary-cards__overlay-footer-wide {
        padding: 5%;
    }

    .primary-cards__item:hover .primary-cards__overlay,
    .primary-cards__item:hover .primary-cards__overlay-wide {
        opacity: 1;
    }

    .primary-cards__category a {
        border-bottom: 3px solid #ffde00;
    }

    .primary-cards__item:hover .primary-cards__title,
    .primary-cards__item:hover .primary-cards__title-wide {
        opacity: 0;
        transition: .3s;
        -webkit-transition: opacity .3s;
        -moz-transition: opacity .3s;
        -o-transition: opacity .3s;
        -ms-transition: opacity .3s;
    }
}

/* -----------------------------

    Primary Cards - pages content

----------------------------- */

.primary--cards__title-in-content {
    font-family: 'CircularStd';
    font-size: 25px;
    line-height: 1.2;
}

.content-header__subtitle {
    font-weight: 600;
}

.social-icons.staff-icons {
    padding-bottom: 6%;
}

.linebreak {
    margin-top: 6%;
    margin-bottom: 6%;
    background: #e5e5e5;
    height: 1px;
}

@media (min-width: 992px) {
    .linebreak {
        margin-top: 3.2%;
        margin-bottom: 3.2%;
    }
}
/* -----------------------------

    Pages with no cads at the top of a page

----------------------------- */

.no-cards {

}

.content-header {
    border-top: 1px solid #e5e5e5;
    padding-top: 6%;
    /*border-bottom: 1px solid #e5e5e5;*/
}

.content-header__title {
    font-family: 'CircularStd';
    padding-bottom: 6%;
}

.content-header__subtitle {
    padding-top: 6%;
}

.content-header__subtitle.subtitle-textarea {
    padding-top: 3%;
}

p.content-header__subtitle.subtitle-textarea {
    margin-bottom: 6%;
}

@media (min-width: 992px) {

    .content-header {
        padding-top: 3.2%;
    }

    .content-header__title {
        padding-bottom: 3.2%;
    }

    p.content-header__subtitle.subtitle-textarea {
        margin-bottom: 3%;
    }

    .content-header__subtitle.subtitle-textarea {
        padding-top: 3%;
    }
}


/* -----------------------------

    In-content navigation

----------------------------- */


.in-content-navigation h3 {
    font-weight: normal;
    font-family: 'SuperiorTitle';
    border-top: 1px solid #e5e5e5;
    padding-top: 6%;
    padding-bottom: 6%;
}

.in-content-navigation h3 a {
    color: #474747;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    font-size: 35px;
    cursor: pointer;
}

.in-content-navigation h3 a:hover,
.in-content-navigation h3 a.selected {
    color: #ffde00;
}

/*.grid:after {*/
    /*content: '';*/
    /*display: block;*/
    /*clear: both;*/
/*}*/


.element-item {
    /*position: relative;*/
    /*float: left;*/
    /*width: 100px;*/
    /*height: 100px;*/
    /*margin: 5px;*/
    /*padding: 10px;*/
    /*background: #888;*/
    /*color: #262524;*/
}

.element-item > * {
    /*margin: 0;*/
    /*padding: 0;*/
}


/* -----------------------------

    No top carousel content

----------------------------- */


.content-header__large-title {
    font-family: 'SuperiorTitle';
    margin-top: 6%;
    margin-bottom: 6%;
}

.content-header__large-title.large-incontent-title {
    margin-top: 0;
}

.content-header__large-title-narrow {
    border-top: 1px solid #e5e5e5;
    font-family: 'SuperiorTitle';
    padding-top: 6%;
    margin-bottom: 6%;
}

.project-subsection {
    padding-top: 20%;
    padding-bottom: 20%;
    border-top: 1px solid #e5e5e5;
}

.project-subsection p a {
    color: #3b3b3c;
    text-decoration: underline;
}

.large-title-section {
    margin-top: 3.2%;
    border-top: 1px solid #e5e5e5;
}

.large-title-section__contact-form {
    margin-bottom: 3.2%;
}

.contact-details__phone,
.contact-details__email,
.contact-details__social {
    font-size: 30px;
    margin-bottom: 0;
}

.contact-details__phone a,
.contact-details__email a {
    color: #ffde00;
    border-bottom: 2px solid #ffde00;
}

.recent-posts-title {
    font-family: 'SuperiorTitle';
    margin-bottom: 6%;
    font-weight: normal;
}

/* -----------------------------

    Single guide page

----------------------------- */

.content-header__large-guide {
    background-color: #ccc;
    margin-bottom: 6.4%;
    padding: 20%;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.content-header__guides-form {
    padding-top: 6.4%;
    padding-right: 6.4%;
    padding-left: 6.4%;
    padding-bottom: 6.4%;
    background-color: #3c3c3b;
    margin-bottom: 6.4%;
}

.content-header__guides-form h3 {
    margin-bottom: 6%;
    color: #fff;
}

.content-header__guides-form p {
    color: #fff;
}

.guide-form__input,
.guide-form__textarea {
    border-radius: 0px;
    background: #fff;
    border: 2px solid #fff;
    color: #474747 !important;
    padding: 16px;
    height: auto;
    font-size: 14px;
    box-shadow: none!important;
    font-weight: bold;
}

textarea.guide-form__textarea {
    height: 135px;
}

.guide-form__input:focus,
.guide-form__textarea:focus {
    border: 2px solid #ffdc1e;
}

.guide-form__submit {
    border-radius: 0;
    border: 2px solid #ffdc1e;
    background-color: #ffdc1d;
    padding: 16px;
    font-size: 14px;
    position: relative;
    color: #474747;
    font-weight: bold;
    text-align: left;
    margin-bottom: 20px;
}

.content-header__guides-form .form-group {
    margin-bottom: 20px;
}


@media (min-width: 992px) {

    .content-header__guides-form {
        margin-bottom: 3.2%;
    }

    .content-header__large-guide {
        margin-bottom: 3.2%;
    }

    .recent-posts-title {
        margin-bottom: 3.2%;
    }
}

@media (min-width: 768px) {
    .guide-form__submit {
        margin-bottom: inherit;
    }
}

/* -----------------------------

    Secondary Cards

----------------------------- */

.secondary-cards__item {
    padding: 12%;
    position: relative;
    margin-bottom: 6.4%;
    overflow: hidden;
}
.secondary-cards__item .text {
    font-size: 14px;
    color: #fff;
    border-bottom: 1px solid #fff;
    padding: 20px 0;
    margin: 0 0 60px 0;
}
.secondary-cards__item .link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    cursor: pointer;
}
.secondary-cards__item_twitter {
    background-color: #1b64e7;
}

.secondary-cards__item_form {
    background-color: #3c3c3b;
}

.secondary-cards__item_contact {
    background-color: #d5d5d5;
}

.secondary-cards__title {
    color: #fff;
    margin-bottom: 10%;
    position: relative;
    z-index: 10;
}

.secondary-cards__title_form {
    margin-bottom: 8%;
}

.secondary-cards__title_contact {
    color: #000;
    margin-bottom: 24%;
}

.secondary-cards__divider {
    margin-top: 10px;
    margin-bottom: 20px;
    border-color: #fff;
    position: relative;
    z-index: 10;
}

.secondary-cards__divider_contact {
    border-color: #000;
}

.secondary-cards__text {
    color: #000;
    font-size: 25px;
    font-weight: bold;
    position: relative;
    z-index: 10;
}

.secondary-cards__twitter-carousel {
    position: static;
}

.secondary-cards__twitter-indicators {
    top: 0px;
    right: 0px;
    left: auto;
    margin-left: 0px;
    width: 100%;
    height: 100%;
    padding: 17%;
    text-align: right;
    z-index: 0;
}

.secondary-cards__twitter-indicators li {
    width: 7px;
    height: 7px;
    border: 2px solid #fff;
    margin-right: 2px;
}

.secondary-cards__twitter-indicators li.active {
    width: 8px;
    height: 8px;
    border: 2px solid #fff;
    margin-right: 2px;
}

.secondary-cards__instagram-carousel {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    height: 100%;
    max-width: 100%;
}

.secondary-cards__instagram-carousel-inner {
    height: 100%;
}

.secondary-cards__instagram-indicators {
    top: 0px;
    right: 0px;
    left: auto;
    margin-left: 0px;
    width: 100%;
    height: 100%;
    padding: 12%;
    text-align: right;
    z-index: 10;
}

.secondary-cards__instagram-indicators li {
    width: 7px;
    height: 7px;
    border: 2px solid #fff;
    margin-right: 2px;
}

.secondary-cards__instagram-indicators li.active {
    width: 8px;
    height: 8px;
    border: 2px solid #fff;
    margin-right: 2px;
}

.secondary-cards__instagram-item {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
}

.secondary-cards__instagram-image {
    min-height: 100%;
}

.secondary-cards__title-container {
    width: 75%;
    display: inline-block;
}
.secondary-cards__title-container p {
    color: #fff;
    font-size: 20px;
}
.secondary-cards__title-container .autor {
    color: #fff;
    border-top: 1px solid #fff;
    padding: 20px 0 0 0;
    margin: 30px 0 0 0;
}

.secondary-cards__date {
    color: #fff;
}

.secondary-cards__tweet-text {
    color: #fff;
    line-height: 1.4;
}

.secondary-cards__tweet-text a {
    color: #fff;
    border-bottom: 1px solid #fff;
}

.secondary-cards__input {
    border-radius: 0px;
    border: none;
    padding: 8px 14px;
    height: auto;
    font-size: 14px;
    color: #000;
    border: 3px solid #fff;
    box-shadow: none!important;
    -webkit-appearance: none;
}

.secondary-cards__input_hp {
    display: none;
}

.secondary-cards__input:focus {
    border-color: #fff;
}

.secondary-cards__textarea {
    border-radius: 0px;
    border: none;
    padding: 8px 14px;
    height: auto;
    font-size: 18px;
    min-height: 80px;
    color: #000;
    border: 3px solid #fff;
    box-shadow: none!important;
    -webkit-appearance: none;
}

.secondary-cards__textarea:focus {
    border-color: #fff;
}

.secondary-cards__submit-container {
    background-color: #fff;
    width: 100%;
    position: relative;
    text-align: right;
    border: 3px solid #fff;
}

.secondary-cards__submit {
    border-radius: 0px;
    border: none;
    background-color: #ffdc1d;
    padding: 8px 18px;
    font-size: 13px;
    position: relative;
    color: #231f20;
    font-weight: bold;
}

.secondary-cards__group.has-error .secondary-cards__input, .secondary-cards__group.has-error .secondary-cards__textarea {
    border: 3px solid #eb1c1c;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    -ms-transition: .3s;
}

.secondary-cards__group.has-error .secondary-cards__textarea {
    border-bottom: 0px;
}

.secondary-cards__group.has-error .secondary-cards__submit-container {
    border: 3px solid #eb1c1c;
    transition: .3s;
    border-top: 0px;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    -ms-transition: .3s;
}

.secondary-cards__submit:hover {
    background-color: #3c3c3b;
    color: #ffdc1d;
}

.secondary-cards__group {
    margin-bottom: 6%;
}

.secondary-cards__address {
    color: #000;
    font-size: 25px;
    line-height: 1.3;
    margin-bottom: 18%;
    z-index: 10;
    position: relative;
}

.secondary-cards__address li {
    border-bottom: 2px solid #000;
    display: inline-block;
}

.secondary-cards__status {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background-color: #3c3c3b;
    opacity: .9;
    z-index: 10;
}

.secondary-cards__title.secondary-cards__title_spotify {
    margin-bottom: 20%;
    position: relative;
    z-index: 10;
}

.secondary-cards__divider_spotify {
    border-color: #fff;
}

.secondary-cards__spotify-record-subtitle {
    font-family: 'CircularStd';
    margin-bottom: 2%;
    color: #fff;
}

.secondary-cards__spotify-song-title {
    color: #fff;
}

.secondary-cards__spotify-record-artist {
    color: #fff;
}

.secondary-cards__spotify-follow {
    color: #fff;
    position: relative;
    z-index: 10;
    /*display: inline-block;
    border-bottom: 1px solid #fff;*/
}

.secondary-cards__spotify-follow a {
    color: #fff !important;
}

.secondary-cards__status-inner {
    padding: 15%;
    position: relative;
    display: table;
    height: 100%;
    width: 100%;
}

.secondary-cards__status-body {
    display: table-cell;
    vertical-align: middle
}

.secondary-cards__status-title {
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
}

.secondary-cards__status-content {
    text-align: center;
    color: #fff;
}

.secondary-cards__submit.disabled {
    background-color: #ffdc1d;
    color: #231f20;
    opacity: .2;
}

.secondary-cards__submit.disabled:hover {
    background-color: #ffdc1d;
    color: #231f20;
    opacity: .2;
}

::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.5) !important;
}

:-moz-placeholder { /* Firefox 18- */
    color: rgba(0, 0, 0, 0.5) !important;
}

::-moz-placeholder {  /* Firefox 19+ */
    color: rgba(0, 0, 0, 0.5) !important;
}

:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.5) !important;
}

.secondary-cards.top-line {
    padding-top: 6%;
    border-top: 1px solid #e5e5e5;
}

@media (min-width: 992px) {
    .secondary-cards.top-line {
        padding-top: 3.2%;
    }
}

@media (min-width: 768px) {

    .secondary-cards__item {
        padding: 12%;
        position: relative;
    }

    .secondary-cards__title {
        margin-bottom: 10%;
        position: relative;
        z-index: 10;
    }

    .secondary-cards__title_form {
        margin-bottom: 8%;
    }

    .secondary-cards__divider {
        margin-top: 5%;
        margin-bottom: 10%;
        border-color: #fff;
    }

    .secondary-cards__divider_contact {
        border-color: #000;
    }

    .secondary-cards__twitter-indicators li {
        margin-right: 6px;
    }

    .secondary-cards__twitter-indicators li.active {
        margin-right: 6px;
    }

    .secondary-cards__instagram-indicators li {
        margin-right: 6px;
    }

    .secondary-cards__instagram-indicators li.active {
        margin-right: 6px;
    }

    .secondary-cards__input {
        padding: 14px 20px;
        height: auto;
        font-size: 18px;
    }

    .secondary-cards__textarea {
        min-height: 60px;
    }

    .secondary-cards__submit {
        padding: 13px 28px;
        font-size: 18px;
    }

    .secondary-cards__group {
        margin-bottom: 6%;
    }

    .secondary-cards__address {
        margin-bottom: 15%;
    }

}


/* -----------------------------

    Map

----------------------------- */

#map-canvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
}

.gmnoprint, .gm-style-cc, [title*="Google"] {
    display: none!important;
}

/* -----------------------------

    Footer

----------------------------- */


.footer p {
    font-size: 14px;
    margin-bottom: 15px;
}

.footer a {
    color: #000;
    border-bottom: 1px solid #000;
}

/*todo remove the .footer-divider code if not necessary - it;s from the single page css provided by RR */
/*.footer__divider {*/
    /*margin-top: 0px;*/
    /*margin-bottom: 15px;*/
    /*border-color: #e5e5e5;*/
/*}*/

/*.footer__divider_color {*/
    /*border-color: #fff;*/
/*}*/


.footer .social-icons {
    text-align: left;
    margin-bottom: 10px;
}

.footer .social-icons img {
    margin-left: 5px;
}

.footer .social-icons a {
    border-bottom: none;
}


@media (min-width: 992px) {

    .footer .social-icons {
        text-align: right;
        margin-bottom: 0;
    }
}
/* ------------------------------

Fixed bottom strip

-------------------------------- */

.fixed-bottom-strip {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #ffdc1c;
    padding-top: 15px;
    padding-bottom: 15px;
    text-align: center;
    z-index: 100;
}

.fixed-bottom-strip p {
    margin-bottom: 0;
    display: inline-block;
    border-bottom: 1px solid #3c3c3c;
    color: #3c3c3c;
}
.language {
    float: right;
    font-size: 15px;
    font-weight: 300;
    margin: 0 20px 0 0;
    text-decoration: underline;
}

.scroll {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 25px;
}

@media (min-width: 768px) {

    /*.footer__divider {*/
        /*margin-bottom: 40px;*/
    /*}*/

    /*.footer__divider_color {*/
        /*border-color: #e5e5e5;*/
    /*} */
    .footer p {
        font-size: 14px;
        margin-bottom: 20px;
    }

}

.wrapper-dropdown-1 {
    /* Size and position */
    position: relative; /* Enable absolute positioning for children and pseudo elements */
    width: 200px;
    padding: 10px;
    margin: 0 auto;

    /* Styles */
    background: #9bc7de;
    color: #fff;
    outline: none;
    cursor: pointer;

    /* Font settings */
    font-weight: bold;
}


.wrapper-dropdown-1:after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    right: 16px;
    top: 50%;
    margin-top: -6px;
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent #fff;
}

.wrapper-dropdown-1 .dropdown {
	/* Size & position */
    position: absolute;
    top: 100%;
    left: 0; /* Size */
    right: 0; /* Size */

    /* Styles */
    background: #fff;
    font-weight: normal; /* Overwrites previous font-weight: bold; */

    /* Hiding */
    opacity: 0;
    pointer-events: none;
}

.wrapper-dropdown-1 .dropdown li a {
    display: block;
    text-decoration: none;
    color: #9e9e9e;
    padding: 10px 20px;
}

/* Hover state */
.wrapper-dropdown-1 .dropdown li:hover a {
    background: #f3f8f8;
}

/* Active state */
.wrapper-dropdown-1.active .dropdown {
    opacity: 1;
    pointer-events: auto;
}

.wrapper-dropdown-1.active:after {
    border-color: #9bc7de transparent;
    border-width: 6px 6px 0 6px ;
    margin-top: -3px;
}

.wrapper-dropdown-1.active {
  background: #9bc7de;
  background: linear-gradient(to right, #9bc7de 0%, #9bc7de 78%, #ffffff 78%, #ffffff 100%);
}

*, *:after, *:before {
    box-sizing: border-box;
}
.clear {
    clear: both;
}
.edit_f {
    border-radius: 0px;
    background: #e5e5e5;
    border: 2px solid #e5e5e5;
    color: #727272;
    padding: 16px;
    height: auto;
    font-size: 18px !important;
    box-shadow: none!important;
    font-weight: bold;
    width: 100%;
    float: left;
    margin: 0 0 30px 0;
}
.textArea {
    border-radius: 0px;
    background: #e5e5e5;
    border: 2px solid #e5e5e5;
    color: #727272 !important;
    padding: 16px;
    height: auto;
    font-size: 18px !important;
    box-shadow: none!important;
    font-weight: bold;
    width: 100%;
    float: left;
    height: 237px;
    max-height: 237px;
    max-width: 100%;
    min-height: 237px;
}
form .button {
    border-radius: 0;
    border: none;
    background-color: #1b64e7;
    padding: 16px;
    font-size: 18px !important;
    position: relative;
    color: #ffffff;
    font-weight: bold;
    text-align: left;
    width: 100%;
    margin: 30px 0 150px 0;
    transition: .2s;
    -webkit-transition: .2s;
}
form .button:hover {
    background-color: #ffdc1d;
    color: #474747;
}
h3.title {
    margin: 50px 0 50px 0;
    font-family: 'SuperiorTitle';
    font-weight: normal;
    font-size: 49px;
}