*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.clearfix:before,
.clearfix:after {
    display: table;
    content: '';
}

.clearfix:after {
    clear: both;
}

body {
    background: #fff;
    color: #7b7b7b;
    font-weight: 400;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
    /* force scroll to appear */
}

body,
html,
#page {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.pageContent video {
    font-family: 'object-fit: cover; object-position: bottom;';
}

/* helper class when showing content */

.noscroll {
    overflow: hidden;
}

/* Main content */

.main {
    position: relative;
    z-index: 50;
    float: left;
}

/* Grid container */

.grid {
    position: relative;
}

/* Overlay */

.grid::after {
    content: '';
    background: rgba(202, 202, 202, 0.4);
    opacity: 0;
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: opacity 0.5s;
    -o-transition: opacity 0.5s;
    transition: opacity 0.5s;
}

.view-single .grid::after {
    opacity: 1;
}

/* Grid item */

.grid__item {
    padding: 0px;
    position: relative;
    color: inherit;
    background: #fff;
    cursor: pointer;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* Grid item "border" */

.grid__item::before {
    position: absolute;
    content: '';
    top: 0px;
    right: 55px;
    bottom: 0px;
    left: 55px;
}

.grid__item.big {
    width: 50%;
}

.grid__item img {
    width: 100%;
    height: auto;
}

/* grid item element and full content element styles */

.title {
    margin: 0;
    font-size: 1.875em;
    text-align: center;
}

.title--preview {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
}

.loader {
    height: 1px;
    width: 40%;
    margin: 1em auto;
    position: relative;
    background: rgba(0, 0, 0, 0.1);
    display: none;
}

.loader::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: #a4e7ad;
    left: 0;
    top: -1px;
    -webkit-transform: scale3d(0, 1, 1);
    transform: scale3d(0, 1, 1);
    -webkit-transform-origin: 0% 50%;
    -ms-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
}

.grid__item--loading .loader::before {
    -webkit-transition: -webkit-transform 1s;
    transition: -webkit-transform 1s;
    -o-transition: transform 1s;
    transition: transform 1s;
    transition: transform 1s, -webkit-transform 1s;
    -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    -o-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}

.category {
    margin: 0;
    position: relative;
    font-size: 0.95em;
    font-style: italic;
    text-align: center;
    display: block;
}

.title--preview,
.loader,
.category {
    -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
    -webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
    transition: opacity 0.2s, -webkit-transform 0.2s;
    -o-transition: transform 0.2s, opacity 0.2s;
    transition: transform 0.2s, opacity 0.2s;
    transition: transform 0.2s, opacity 0.2s, -webkit-transform 0.2s;
    -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
    -o-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
    transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}

/* closing (delays) */

.title--preview {
    -webkit-transition-delay: 0.15s;
    -o-transition-delay: 0.15s;
    transition-delay: 0.15s;
    position: absolute;
    font-size: 35px;
    line-height: 45px;
    color: #FFF;
    font-weight: 400;
}

.main-grid .title--preview {
    font-size: 50px;
    line-height: 61px;
    font-weight: 100;
    padding: 0 20px;
}

.loader {
    -webkit-transition-delay: 0.1s;
    -o-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.grid__item .category {
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
}

/* opening */

.grid__item--animate .title--preview {
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
}

.grid__item--animate .loader {
    -webkit-transition-delay: 0.1s;
    -o-transition-delay: 0.1s;
    transition-delay: 0.1s;
    opacity: 0;
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
}

.grid__item--animate .category {
    -webkit-transition-delay: 0.15s;
    -o-transition-delay: 0.15s;
    transition-delay: 0.15s;
    opacity: 0;
    -webkit-transform: translate3d(0, -40px, 0);
    transform: translate3d(0, -40px, 0);
}

.meta {
    font-size: 0.765em;
    text-align: left;
}

.meta .fa {
    margin-right: 4px;
}

.meta:before,
.meta:after {
    display: table;
    content: '';
}

.meta:after {
    clear: both;
}

.meta__avatar {
    display: block;
    border-radius: 50%;
    margin: 2em auto;
}

.meta--preview .meta__avatar {
    -webkit-filter: grayscale(50%);
    filter: grayscale(50%);
}

.grid__item:hover .meta--preview .meta__avatar,
.grid__item:focus .meta--preview .meta__avatar {
    -webkit-filter: none;
    filter: none;
}

.meta__date,
.meta__reading-time {
    display: block;
    float: left;
    color: #aaa;
}

.meta__reading-time {
    text-align: right;
    float: right;
}

.meta__misc {
    display: block;
    clear: both;
    text-align: left;
    padding: 5px 0;
}

.meta__misc--seperator {
    padding: 20px 0 0;
    margin: 65px 0 0;
    border-top: 1px solid #f5f5f5;
}

.article-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.article-nav button {
    border: none;
    color: #81c483;
    background: none;
}

.article-nav button:hover {
    color: #333;
}

.meta--preview .meta__avatar,
.meta--preview .meta__date,
.meta--preview .meta__reading-time {
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, -webkit-transform 0.3s;
    -o-transition: transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    -o-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

.grid__item--loading .meta__avatar {
    -webkit-transition-delay: 0.1s;
    -o-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.grid__item--loading .meta__date {
    -webkit-transition-delay: 0.17s;
    -o-transition-delay: 0.17s;
    transition-delay: 0.17s;
}

.grid__item--loading .meta__reading-time {
    -webkit-transition-delay: 0.24s;
    -o-transition-delay: 0.24s;
    transition-delay: 0.24s;
}

.grid__item--loading .meta__avatar,
.grid__item--loading .meta__date,
.grid__item--loading .meta__reading-time {
    -webkit-transform: scale3d(0.5, 0.5, 1);
    transform: scale3d(0.5, 0.5, 1);
    opacity: 0;
}

/* Grid footer */

.page-meta {
    width: 100%;
    background: #fff;
    width: 100%;
    padding: 15px 15px 10px;
    text-align: center;
    font-size: 0.75em;
    font-weight: bold;
    cursor: default;
}

/* Placeholder element (dummy that gets animated when we click on an item) */

.placeholder {
    pointer-events: none;
    position: absolute;
    width: calc(100% + 5px);
    height: calc(100vh + 20px);
    z-index: 100;
    top: 0;
    left: 0;
    background: #fff;
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
}

.placeholder.opacity {
    opacity: 0;
}

.placeholder.placeholder--trans-in {
    opacity: .88;
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    -o-transition: transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
    -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    -o-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

.placeholder.placeholder--trans-out {
    -webkit-transition: -webkit-transform 0.5s, opacity .8s;
    -webkit-transition: opacity .8s, -webkit-transform 0.5s;
    transition: opacity .8s, -webkit-transform 0.5s;
    -o-transition: transform 0.5s, opacity .8s;
    transition: transform 0.5s, opacity .8s;
    transition: transform 0.5s, opacity .8s, -webkit-transform 0.5s;
}

/* main content */

.content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    /* Avoid second scroll bar in Chrome! */
    visibility: hidden;
    z-index: 400;
    overflow: hidden;
}

.content.content--show {
    height: 100vh;
    pointer-events: auto;
    visibility: visible;
}

/* scroll helper wrap */

.scroll-wrap {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}

/* single content item */

.content__item {
    position: absolute;
    top: 0;
    width: 100%;
    overflow: hidden;
    height: 0;
    opacity: 0;
    padding: 60px 60px 80px 60px;
    pointer-events: none;
    font-size: 0.85em;
}

.content__item p {
    max-width: 1200px;
    margin: 1em auto;
    text-align: justify;
}

.content__item p:first-of-type {
    font-size: 1.35em;
}

.content__item.content__item--show {
    height: auto;
    min-height: 100vh;
    opacity: 1;
    pointer-events: auto;
    -webkit-transition: opacity 0.6s;
    -o-transition: opacity 0.6s;
    transition: opacity 0.6s;
}

/* content elements */

.category--full {
    font-size: 1.25em;
    margin-bottom: 20px;
    color: #81c483;
}

.title--full {
    font-size: 3.25em;
}

.meta--full {
    font-size: 1em;
    margin: 0 auto 2em;
    max-width: 1200px;
}

.meta--full .meta__author {
    display: block;
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
}

.meta--full .meta__author::before {
    content: 'by ';
    font-weight: normal;
}

.meta--full .meta__category {
    font-style: italic;
    float: left;
    margin: 0 5px;
}

.meta--full .meta__category::before {
    content: "in ";
}

.meta--full .meta__avatar {
    margin: 1em auto;
}

.category--full,
.title--full,
.meta--full .meta__avatar,
.meta--full .meta__author,
.meta--full .meta__date,
.meta--full .meta__reading-time {}

.content__item p {
    opacity: 0;
}

.category--full,
.title--full {
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
}

.meta--full .meta__avatar,
.meta--full .meta__author,
.meta--full .meta__date,
.meta--full .meta__reading-time {
    -webkit-transform: scale3d(0.5, 0.5, 1);
    transform: scale3d(0.5, 0.5, 1);
}

.content__item--show .category--full,
.content__item--show .title--full,
.content__item--show .meta--full .meta__avatar,
.content__item--show .meta--full .meta__author,
.content__item--show .meta--full .meta__date,
.content__item--show .meta--full .meta__reading-time {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, -webkit-transform 0.3s;
    -o-transition: transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    -o-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

.content__item--show .category--full,
.content__item--show .title--full {
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.content__item--show .title--full {
    -webkit-transition-delay: 0.05s;
    -o-transition-delay: 0.05s;
    transition-delay: 0.05s;
}

.content__item--show .meta--full .meta__avatar {
    -webkit-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.content__item--show .meta--full .meta__date {
    -webkit-transition-delay: 0.27s;
    -o-transition-delay: 0.27s;
    transition-delay: 0.27s;
}

.content__item--show .meta--full .meta__reading-time {
    -webkit-transition-delay: 0.34s;
    -o-transition-delay: 0.34s;
    transition-delay: 0.34s;
}

.content__item--show.content__item p {
    opacity: 1;
    -webkit-transition: opacity 0.5s 0.25s;
    -o-transition: opacity 0.5s 0.25s;
    transition: opacity 0.5s 0.25s;
}

/* close button (for content and sidebar) */

.close-button {
    position: absolute;
    border: none;
    background: none;
    margin: 0;
    z-index: 100;
    top: 0;
    right: 0;
    font-size: 18px;
    color: #ddd;
    cursor: pointer;
    pointer-events: none;
    padding: 20px 30px;
    opacity: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.close-button:hover {
    color: #7b7b7b;
}

/* show class for content close button */

.close-button--show {
    opacity: 1;
    pointer-events: auto;
}

/* Viewport sizes based on column number and sidebar */

/* 1 column */

/* 2 columns */

/* 3 columns */

/* 4 columns */

/* 5 columns */

/* 6 columns */

.content__item {
    font-size: 1em;
}

.border {
    width: 10px;
    position: absolute;
    height: 100%;
    right: 0;
    background: #FFF;
}

.border-left {
    left: 0;
    right: auto;
}

.grid__item {
    width: 50%;
    float: left;
}

.pagewrap .grid-full {
    width: 69%;
}

.pagewrap .grid-full-right {
    width: 31%;
}

.grid__item.right {
    float: right;
}

.grid__item:after {
    position: absolute;
    bottom: 0px;
    left: 0px;
    height: 20px;
    width: 100%;
    background: #FFF;
    content: "";
}

.grid__item:before {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    top: 100%;
    content: '';
    opacity: .75;
    background-color: rgba(51, 51, 51, 0.9);
    -webkit-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    -webkit-transition-delay: 0.25s;
    -o-transition-delay: 0.25s;
    transition-delay: 0.25s;
}

.grid__item img {
    vertical-align: top;
    max-width: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.grid__item .title--preview {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
    opacity: 0;
    margin-bottom: 5px;
}

.grid__item.hover:before {
    top: 0px;
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
}

.grid__item.hover .title--preview {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.green:before {
    background: #8FA54F;
}

.maroon:before {
    background: #8E3047;
}

.grey:before {
    background: #9BA9BB;
}

.read-more-map {
    background: transparent;
    color: #c0a265;
    margin: 0 auto;
    border: 1px solid #c0a265;
    border-radius: 0;
    font-size: 12px !important;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0 8px;
    height: 28px;
    line-height: 28px;
    text-decoration: none !important;
    display: inline-block;
}

.read-more-map:hover {
    background: #c0a265;
    color: #fff;
}

.sectorhighlight {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    padding: 74px 0 0;
}

.sectorhighlight .desc h2 {
    font-family: "Effra";
    font-size: 30px;
    font-weight: 300;
    text-align: center;
    color: #221f20;
    line-height: 18px;
    padding-top: 25px;
    max-width: 572px;
    margin: 0 auto;
    line-height: 38px;
}

.sectorhighlight .desc p strong {
    font-family: "Effra";
    font-size: 30px;
    color: #221f20;
    line-height: 18px;
    display: inline-block;
    padding-bottom: 15px;
}

.sectorhighlight .desc p.text-align-center {
    font-size: 21px;
    font-family: "Effra";
    font-weight: 300;
    /* max-width: 250px;*/
    margin: 0 auto;
    line-height: 26px;
    padding-top: 50px;
    color: #221f20;
}

.sectorhighlight .desc .text-align-center strong {
    font-family: "Effra";
    font-weight: 900;
    color: #b06135;
    font-size: 40px;
}

.sectorhighlight .desc::before {
    background: url(images/pattern.jpg) no-repeat 0 0;
    content: "";
    display: block;
    width: 194px;
    height: 18px;
    margin: 0 auto;
    margin-top: 35px;
}

.sectorhighlight .desc::after {
    background: url(images/pattern.jpg) no-repeat 0 0;
    content: "";
    display: block;
    width: 194px;
    height: 18px;
    margin: 0 auto;
    margin-bottom: 40px;
    margin-top: 30px;
}

@media screen and (max-width: 767px) {
    header {
        /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0.65+0,0+100 */
        /* FF3.6-15 */
        /* Chrome10-25,Safari5.1-6 */
        background: -o-linear-gradient(top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.65)), to(rgba(0, 0, 0, 0)));
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
        /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a6000000', endColorstr='#00000000', GradientType=0);
        /* IE6-9 */
    }

    .sect-sub .s-content-bottom.s-content-wrap .s-content .text {
        padding: 0 15px !important;
    }

    .sect-1 .s-content-bottom {
        background: #85ab44 !important;
        border-color: #85ab44 !important;
    }

    .sect-2 .s-content-bottom {
        /*background: #2f3042!important;
        border-color:#2f3042!important;*/
    }

    .sect-3 .s-content-bottom {
        background: #36363b !important;
        border-color: #36363b !important;
    }

    .sect-3 .text>h4 {
        height: 80px;
        font-weight: 600 !important;
        font-size: 16px !important;
        line-height: 22px !important;
        /*color: #fff!important;*/
    }

    .sect-sub .sector .videos .fixed-head {
        -webkit-transform: none !important;
        -ms-transform: none !important;
        transform: none !important;
        margin-top: 0 !important;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .sect-sub:not(.str-sub) .TitleAbs .fixed-head {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
    }

    .sect-sub:not(.str-sub) .TitleAbs .video {
        /*margin-top:-40px;*/
    }

    .sector13,
    .sector13>.bg-heading {
        height: 100% !important;
    }

    .map-component {
        padding: 0;
        height: 100%;
    }

    .map-component>.container {
        display: block;
    }
}

.path-frontpage h1.page-header {
    display: none;
}
