/* ------------------------------------------------------------------------- *
 *  6.9 - Buttons
 * ------------------------------------------------------------------------- */
.btn,
input[type="submit"] {
    display: inline-block;
    padding: 9px 25px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 0;
    /*
    -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    */
    outline: 0;

    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.btn:active,
input[type="submit"]:active {
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn:hover,
.btn:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
    text-decoration: none;
}

/* Button Size */
.btn-small {
    padding: 6px 16px;
    font-size: 12px;
}

.horizontal-but .btn-medium,
.btn-medium {
    margin: 15px 10px 15px 0;
    padding: 8px 10px 8px 10px;
    font-size: 1em;
    font-weight: 500;
}

.subscribe-rounded-btn .horizontal-but .btn-medium,
.subscribe-rounded-btn .btn-medium {
    border-radius: 22px;
    background-color: #0bb0b4;
    border: none;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07);
    padding: 12px 17px 12px 17px;
    color: #fff;
    font-weight: 500;
    font-size: 24px;
    transition: 200ms;
    transition-timing-function: ease-in-out;
    -webkit-transition: 200ms;
    -webkit-transition-timing-function: ease-in-out;
}

.subscribe-rounded-btn .horizontal-but .btn-medium:hover,
.subscribe-rounded-btn .btn-medium:hover {
    background-color: #000000;
}

.subscribe-rounded-btn .horizontal-but .btn-medium i,
.subscribe-rounded-btn .btn-medium i {
    display: none;
}

.horizontal-but {
    margin-right: 10px;
    margin-top: 10px;
}

.centered-but {
    width: 100%;
    text-align: center;
}

.btn-medium:last-of-type {
    margin-right: 0;
}

.btn .fa.fa-chevron-right {
    font-size: 12px;
    margin-left: 10px;
}

.btn-large {
    padding: 10px 15px 10px 10px;
    font-size: 1.35em;
    font-weight: 500;
}

.btn-default,
input[type="submit"] {
    color: #180718;
    text-shadow: 0;
    border-color: #180718;
}

.btn-default:hover,
input[type="submit"]:hover,
.btn-default:focus,
input[type="submit"]:focus {
    background: #f7f7f7;

}

.btn-default:active,
input[type="submit"]:active {
    background: #efefef;
    border-color: #c0c0c0;
}

.btn-default:disabled,
.btn-default[disabled] {
    background-color: #e0e0e0;
    background-image: none;
}

.darksection .btn-default {
    color: #ffffff;
    border: 1px solid #fff;
}

.darksection .btn-default:hover,
.darksection .btn-default:active {
    color: #65c2c8;
    border-color: #65c2c8;
}

.darksection.topheader .btn-default {
    border: none;
    color: #12002b;
}

.bt-contact,
input.bt-contact[type="submit"] {
    background-color: transparent;
    border-color: #000000;
    border-width: 1px;
    margin-top: 15px;
    padding: 12px 45px;
    font-size: 16px;
    font-weight: 600;
}

.bt-contact:hover,
.bt-contact:focus {
    background: #3baeb4 !important;
    color: #ffffff;
}

.bt-contact:active {
    background-color: #3baeb4;
}

.bt-contact:disabled,
.bt-contact[disabled] {
    background-color: #efefef;
}

.btn-primary {
    background-color: #62173a;
    border-color: #62173a;
    color: #fff;
}

.btn-primary:hover,
.btn-primary:focus {
    background: #d9c8cf;
    border-color: #62173a;
    color: #62173a;
}

.btn-primary:active {
    background-color: #62173a;
    border-color: #62173a;
}

.btn-primary:disabled,
.btn-primary[disabled] {
    background-color: #2d6ca2;
    background-image: none;
}

.btn-success {
    background-image: -webkit-linear-gradient(top, #5cb85c 0%, #419641 100%);
    background-image: -o-linear-gradient(top, #5cb85c 0%, #419641 100%);
    background-image: linear-gradient(to bottom, #5cb85c 0%, #419641 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    background-repeat: repeat-x;
    border-color: #3e8f3e;
}

.btn-success:hover,
.btn-success:focus {
    background: #6bd06b;
    background: -moz-linear-gradient(top, #6bd06b 0%, #4daf4d 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #6bd06b), color-stop(100%, #4daf4d));
    background: -webkit-linear-gradient(top, #6bd06b 0%, #4daf4d 100%);
    background: -o-linear-gradient(top, #6bd06b 0%, #4daf4d 100%);
    background: -ms-linear-gradient(top, #6bd06b 0%, #4daf4d 100%);
    background: linear-gradient(to bottom, #6bd06b 0%, #4daf4d 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#6bd06b', endColorstr='#4daf4d', GradientType=0);

}

.btn-success:active {
    background: #419641;
    background: -moz-linear-gradient(top, #419641 0%, #5cb85c 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #419641), color-stop(100%, #5cb85c));
    background: -webkit-linear-gradient(top, #419641 0%, #5cb85c 100%);
    background: -o-linear-gradient(top, #419641 0%, #5cb85c 100%);
    background: -ms-linear-gradient(top, #419641 0%, #5cb85c 100%);
    background: linear-gradient(to bottom, #419641 0%, #5cb85c 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#419641', endColorstr='#5cb85c', GradientType=0);
    border-color: #3e8f3e;
}

.btn-success:disabled,
.btn-success[disabled] {
    background-color: #419641;
    background-image: none;
}

.btn-info {
    background-image: -webkit-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);
    background-image: -o-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);
    background-image: linear-gradient(to bottom, #5bc0de 0%, #2aabd2 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    background-repeat: repeat-x;
    border-color: #28a4c9;
}

.btn-info:hover,
.btn-info:focus {
    background: #6bd8ef;
    background: -moz-linear-gradient(top, #6bd8ef 0%, #32c5e6 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #6bd8ef), color-stop(100%, #32c5e6));
    background: -webkit-linear-gradient(top, #6bd8ef 0%, #32c5e6 100%);
    background: -o-linear-gradient(top, #6bd8ef 0%, #32c5e6 100%);
    background: -ms-linear-gradient(top, #6bd8ef 0%, #32c5e6 100%);
    background: linear-gradient(to bottom, #6bd8ef 0%, #32c5e6 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#6bd8ef', endColorstr='#32c5e6', GradientType=0);
}

.btn-info:active {
    background: #2aabd2;
    background: -moz-linear-gradient(top, #2aabd2 0%, #5bc0de 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #2aabd2), color-stop(100%, #5bc0de));
    background: -webkit-linear-gradient(top, #2aabd2 0%, #5bc0de 100%);
    background: -o-linear-gradient(top, #2aabd2 0%, #5bc0de 100%);
    background: -ms-linear-gradient(top, #2aabd2 0%, #5bc0de 100%);
    background: linear-gradient(to bottom, #2aabd2 0%, #5bc0de 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2aabd2', endColorstr='#5bc0de', GradientType=0);
    border-color: #28a4c9;
}

.btn-info:disabled,
.btn-info[disabled] {
    background-color: #2aabd2;
    background-image: none;
}

.btn-warning {
    background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);
    background-image: -o-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);
    background-image: linear-gradient(to bottom, #f0ad4e 0%, #eb9316 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    background-repeat: repeat-x;
    border-color: #e38d13;
}

.btn-warning:hover,
.btn-warning:focus {
    background: #f9c65a;
    background: -moz-linear-gradient(top, #f9c65a 0%, #f6ac1b 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f9c65a), color-stop(100%, #f6ac1b));
    background: -webkit-linear-gradient(top, #f9c65a 0%, #f6ac1b 100%);
    background: -o-linear-gradient(top, #f9c65a 0%, #f6ac1b 100%);
    background: -ms-linear-gradient(top, #f9c65a 0%, #f6ac1b 100%);
    background: linear-gradient(to bottom, #f9c65a 0%, #f6ac1b 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9c65a', endColorstr='#f6ac1b', GradientType=0);
}

.btn-warning:active {
    background: #eb9316;
    background: -moz-linear-gradient(top, #eb9316 0%, #f0ad4e 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #eb9316), color-stop(100%, #f0ad4e));
    background: -webkit-linear-gradient(top, #eb9316 0%, #f0ad4e 100%);
    background: -o-linear-gradient(top, #eb9316 0%, #f0ad4e 100%);
    background: -ms-linear-gradient(top, #eb9316 0%, #f0ad4e 100%);
    background: linear-gradient(to bottom, #eb9316 0%, #f0ad4e 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eb9316', endColorstr='#f0ad4e', GradientType=0);
    border-color: #e38d13;
}

.btn-warning:disabled,
.btn-warning[disabled] {
    background-color: #eb9316;
    background-image: none;
}

.btn-danger {
    background-image: -webkit-linear-gradient(top, #d9534f 0%, #c12e2a 100%);
    background-image: -o-linear-gradient(top, #d9534f 0%, #c12e2a 100%);
    background-image: linear-gradient(to bottom, #d9534f 0%, #c12e2a 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    background-repeat: repeat-x;
    border-color: #b92c28;
}

.btn-danger:hover,
.btn-danger:focus {
    background: #eb605b;
    background: -moz-linear-gradient(top, #eb605b 0%, #d93631 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #eb605b), color-stop(100%, #d93631));
    background: -webkit-linear-gradient(top, #eb605b 0%, #d93631 100%);
    background: -o-linear-gradient(top, #eb605b 0%, #d93631 100%);
    background: -ms-linear-gradient(top, #eb605b 0%, #d93631 100%);
    background: linear-gradient(to bottom, #eb605b 0%, #d93631 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eb605b', endColorstr='#d93631', GradientType=0);
}

.btn-danger:active {
    background: #c12e2a;
    background: -moz-linear-gradient(top, #c12e2a 0%, #d9534f 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #c12e2a), color-stop(100%, #d9534f));
    background: -webkit-linear-gradient(top, #c12e2a 0%, #d9534f 100%);
    background: -o-linear-gradient(top, #c12e2a 0%, #d9534f 100%);
    background: -ms-linear-gradient(top, #c12e2a 0%, #d9534f 100%);
    background: linear-gradient(to bottom, #c12e2a 0%, #d9534f 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c12e2a', endColorstr='#d9534f', GradientType=0);
    border-color: #b92c28;
}

.btn-danger:disabled,
.btn-danger[disabled] {
    background-color: #c12e2a;
    background-image: none;
}

.btn-icon {
    margin-right: 8px;
    color: #a29ca2;
}

.icon_pdf:before {
    display: inline-block;
    content: ' ';
    background: url('public/img/pdf-icon.svg') left top no-repeat;
    background-size: 20px 20px;
    height: 20px;
    width: 20px;
    margin: -3px -3px -3px 3px;
}

.pdf-download .icon_pdf {
    padding-right: 12px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    display: inline-block;
    height: 15px;
}

.btn-default.pdf-download {
    color: #231f20;
    border-color: transparent;
    padding-left: 34px;
    text-align: left;
}

.btn-default.pdf-download:hover {
    color: #389ea5;
    background-color: transparent;
}

.horizontal-but {
    display: inline-block;
}

.horizontal-right {
    display: inline-block;
    float: right;
}

nobottommargin a.btn-primary,
a.btn-success,
a.btn-info,
a.btn-warning,
a.btn-danger {
    color: #fff;
}

.wpb_text_column h2:last-child,
#content .wpb_text_column h2:last-child {
    margin-bottom: 0 !important;
}


.section.regionalblock.darksection.fullwidth .wpb_text_column :last-child,
#content .section.regionalblock .wpb_text_column :last-child,
.section.regionalblock .wpb_text_column :last-child {
    margin-bottom: 0 !important;
}


h2.nobottommargin,
.wpb_text_column h2.nobottommargin,
#content .wpb_text_column h2.nobottommargin {
    margin-bottom: -1.25em !important;
}

/* Button-custom */
.button.button-custom {
    display: block;
    text-align: left;
    position: absolute;
    bottom: 25px;
    left: 6.5%;
    z-index: 1;
}

.button.button-custom a {
    background-color: #009aa3;
    border: none;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07);
    padding: 12px 15px 12px 15px;
    color: #1d4a6b;
    font-weight: 600;
    font-size: 18px;
    transition: 200ms;
    transition-timing-function: ease-in-out;
    -webkit-transition: 200ms;
    -webkit-transition-timing-function: ease-in-out;
}

.button.button-custom a i {
    font-size: 14px;
    margin-left: 12px;
}

.button.button-custom.border-round a {
    border-radius: 22px;
}

figure.button-custom {
    width: 80%;
    margin-left: auto;
}

@media (max-width: 1200px) {
    figure.button-custom {
        width: 100%;
        margin-left: 0;
    }

    .button.button-custom a {
        font-size: 14px;
    }

    .button.button-custom i {
        font-size: 12px;
    }

    .button.button-custom {
        bottom: 10px;
    }

    .button.button-custom a {
        padding: 8px 17px 8px 17px;
    }
}

/* ------------------------------------------------------------------------- *
 *  2 - Grid System
 * ------------------------------------------------------------------------- */
.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
}

.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
    float: left;
}

.col-xs-12 {
    width: 100%;
}

.col-xs-11 {
    width: 91.66666667%;
}

.col-xs-10 {
    width: 83.33333333%;
}

.col-xs-9 {
    width: 75%;
}

.col-xs-8 {
    width: 66.66666667%;
}

.col-xs-7 {
    width: 58.33333333%;
}

.col-xs-6 {
    width: 50%;
}

.col-xs-5 {
    width: 41.66666667%;
}

.col-xs-4 {
    width: 33.33333333%;
}

.col-xs-3 {
    width: 25%;
}

.col-xs-2 {
    width: 16.66666667%;
}

.col-xs-1 {
    width: 8.33333333%;
}

.col-xs-pull-12 {
    right: 100%;
}

.col-xs-pull-11 {
    right: 91.66666667%;
}

.col-xs-pull-10 {
    right: 83.33333333%;
}

.col-xs-pull-9 {
    right: 75%;
}

.col-xs-pull-8 {
    right: 66.66666667%;
}

.col-xs-pull-7 {
    right: 58.33333333%;
}

.col-xs-pull-6 {
    right: 50%;
}

.col-xs-pull-5 {
    right: 41.66666667%;
}

.col-xs-pull-4 {
    right: 33.33333333%;
}

.col-xs-pull-3 {
    right: 25%;
}

.col-xs-pull-2 {
    right: 16.66666667%;
}

.col-xs-pull-1 {
    right: 8.33333333%;
}

.col-xs-pull-0 {
    right: auto;
}

.col-xs-push-12 {
    left: 100%;
}

.col-xs-push-11 {
    left: 91.66666667%;
}

.col-xs-push-10 {
    left: 83.33333333%;
}

.col-xs-push-9 {
    left: 75%;
}

.col-xs-push-8 {
    left: 66.66666667%;
}

.col-xs-push-7 {
    left: 58.33333333%;
}

.col-xs-push-6 {
    left: 50%;
}

.col-xs-push-5 {
    left: 41.66666667%;
}

.col-xs-push-4 {
    left: 33.33333333%;
}

.col-xs-push-3 {
    left: 25%;
}

.col-xs-push-2 {
    left: 16.66666667%;
}

.col-xs-push-1 {
    left: 8.33333333%;
}

.col-xs-push-0 {
    left: auto;
}

.col-xs-offset-12 {
    margin-left: 100%;
}

.col-xs-offset-11 {
    margin-left: 91.66666667%;
}

.col-xs-offset-10 {
    margin-left: 83.33333333%;
}

.col-xs-offset-9 {
    margin-left: 75%;
}

.col-xs-offset-8 {
    margin-left: 66.66666667%;
}

.col-xs-offset-7 {
    margin-left: 58.33333333%;
}

.col-xs-offset-6 {
    margin-left: 50%;
}

.col-xs-offset-5 {
    margin-left: 41.66666667%;
}

.col-xs-offset-4 {
    margin-left: 33.33333333%;
}

.col-xs-offset-3 {
    margin-left: 25%;
}

.col-xs-offset-2 {
    margin-left: 16.66666667%;
}

.col-xs-offset-1 {
    margin-left: 8.33333333%;
}

.col-xs-offset-0 {
    margin-left: 0%;
}

@media (min-width: 768px) {

    .col-sm-1,
    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12 {
        float: left;
    }

    .col-sm-12 {
        width: 100%;
    }

    .col-sm-11 {
        width: 91.66666667%;
    }

    .col-sm-10 {
        width: 83.33333333%;
    }

    .col-sm-9 {
        width: 75%;
    }

    .col-sm-8 {
        width: 66.66666667%;
    }

    .col-sm-7 {
        width: 58.33333333%;
    }

    .col-sm-6 {
        width: 50%;
    }

    .col-sm-5 {
        width: 41.66666667%;
    }

    .col-sm-4 {
        width: 33.33333333%;
    }

    .col-sm-3 {
        width: 25%;
    }

    .col-sm-2 {
        width: 16.66666667%;
    }

    .col-sm-1 {
        width: 8.33333333%;
    }

    .col-sm-pull-12 {
        right: 100%;
    }

    .col-sm-pull-11 {
        right: 91.66666667%;
    }

    .col-sm-pull-10 {
        right: 83.33333333%;
    }

    .col-sm-pull-9 {
        right: 75%;
    }

    .col-sm-pull-8 {
        right: 66.66666667%;
    }

    .col-sm-pull-7 {
        right: 58.33333333%;
    }

    .col-sm-pull-6 {
        right: 50%;
    }

    .col-sm-pull-5 {
        right: 41.66666667%;
    }

    .col-sm-pull-4 {
        right: 33.33333333%;
    }

    .col-sm-pull-3 {
        right: 25%;
    }

    .col-sm-pull-2 {
        right: 16.66666667%;
    }

    .col-sm-pull-1 {
        right: 8.33333333%;
    }

    .col-sm-pull-0 {
        right: auto;
    }

    .col-sm-push-12 {
        left: 100%;
    }

    .col-sm-push-11 {
        left: 91.66666667%;
    }

    .col-sm-push-10 {
        left: 83.33333333%;
    }

    .col-sm-push-9 {
        left: 75%;
    }

    .col-sm-push-8 {
        left: 66.66666667%;
    }

    .col-sm-push-7 {
        left: 58.33333333%;
    }

    .col-sm-push-6 {
        left: 50%;
    }

    .col-sm-push-5 {
        left: 41.66666667%;
    }

    .col-sm-push-4 {
        left: 33.33333333%;
    }

    .col-sm-push-3 {
        left: 25%;
    }

    .col-sm-push-2 {
        left: 16.66666667%;
    }

    .col-sm-push-1 {
        left: 8.33333333%;
    }

    .col-sm-push-0 {
        left: auto;
    }

    .col-sm-offset-12 {
        margin-left: 100%;
    }

    .col-sm-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-sm-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-sm-offset-9 {
        margin-left: 75%;
    }

    .col-sm-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-sm-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-sm-offset-6 {
        margin-left: 50%;
    }

    .col-sm-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-sm-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-sm-offset-3 {
        margin-left: 25%;
    }

    .col-sm-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-sm-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-sm-offset-0 {
        margin-left: 0%;
    }
}

@media (min-width: 992px) {

    .col-md-1,
    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9,
    .col-md-10,
    .col-md-11,
    .col-md-12 {
        float: left;
    }

    .col-md-12 {
        width: 100%;
    }

    .col-md-11 {
        width: 91.66666667%;
    }

    .col-md-10 {
        width: 83.33333333%;
    }

    .col-md-9 {
        width: 75%;
    }

    .col-md-8 {
        width: 66.66666667%;
    }

    .col-md-7 {
        width: 58.33333333%;
    }

    .col-md-6 {
        width: 50%;
    }

    .col-md-5 {
        width: 41.66666667%;
    }

    .col-md-4 {
        width: 33.33333333%;
    }

    .col-md-3 {
        width: 25%;
    }

    .col-md-2 {
        width: 16.66666667%;
    }

    .col-md-1 {
        width: 8.33333333%;
    }

    .col-md-pull-12 {
        right: 100%;
    }

    .col-md-pull-11 {
        right: 91.66666667%;
    }

    .col-md-pull-10 {
        right: 83.33333333%;
    }

    .col-md-pull-9 {
        right: 75%;
    }

    .col-md-pull-8 {
        right: 66.66666667%;
    }

    .col-md-pull-7 {
        right: 58.33333333%;
    }

    .col-md-pull-6 {
        right: 50%;
    }

    .col-md-pull-5 {
        right: 41.66666667%;
    }

    .col-md-pull-4 {
        right: 33.33333333%;
    }

    .col-md-pull-3 {
        right: 25%;
    }

    .col-md-pull-2 {
        right: 16.66666667%;
    }

    .col-md-pull-1 {
        right: 8.33333333%;
    }

    .col-md-pull-0 {
        right: auto;
    }

    .col-md-push-12 {
        left: 100%;
    }

    .col-md-push-11 {
        left: 91.66666667%;
    }

    .col-md-push-10 {
        left: 83.33333333%;
    }

    .col-md-push-9 {
        left: 75%;
    }

    .col-md-push-8 {
        left: 66.66666667%;
    }

    .col-md-push-7 {
        left: 58.33333333%;
    }

    .col-md-push-6 {
        left: 50%;
    }

    .col-md-push-5 {
        left: 41.66666667%;
    }

    .col-md-push-4 {
        left: 33.33333333%;
    }

    .col-md-push-3 {
        left: 25%;
    }

    .col-md-push-2 {
        left: 16.66666667%;
    }

    .col-md-push-1 {
        left: 8.33333333%;
    }

    .col-md-push-0 {
        left: auto;
    }

    .col-md-offset-12 {
        margin-left: 100%;
    }

    .col-md-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-md-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-md-offset-9 {
        margin-left: 75%;
    }

    .col-md-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-md-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-md-offset-6 {
        margin-left: 50%;
    }

    .col-md-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-md-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-md-offset-3 {
        margin-left: 25%;
    }

    .col-md-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-md-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-md-offset-0 {
        margin-left: 0%;
    }

    /*
  .home-partners .col-md-2 {
    width: 14.285%;
	}*/


}

@media (min-width: 1200px) {

    .col-lg-1,
    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-9,
    .col-lg-10,
    .col-lg-11,
    .col-lg-12 {
        float: left;
    }

    .col-lg-12 {
        width: 100%;
    }

    .col-lg-11 {
        width: 91.66666667%;
    }

    .col-lg-10 {
        width: 83.33333333%;
    }

    .col-lg-9 {
        width: 75%;
    }

    .col-lg-8 {
        width: 66.66666667%;
    }

    .col-lg-7 {
        width: 58.33333333%;
    }

    .col-lg-6 {
        width: 50%;
    }

    .col-lg-5 {
        width: 41.66666667%;
    }

    .col-lg-4 {
        width: 33.33333333%;
    }

    .col-lg-3 {
        width: 25%;
    }

    .col-lg-2 {
        width: 16.66666667%;
    }

    .col-lg-1 {
        width: 8.33333333%;
    }

    .col-lg-pull-12 {
        right: 100%;
    }

    .col-lg-pull-11 {
        right: 91.66666667%;
    }

    .col-lg-pull-10 {
        right: 83.33333333%;
    }

    .col-lg-pull-9 {
        right: 75%;
    }

    .col-lg-pull-8 {
        right: 66.66666667%;
    }

    .col-lg-pull-7 {
        right: 58.33333333%;
    }

    .col-lg-pull-6 {
        right: 50%;
    }

    .col-lg-pull-5 {
        right: 41.66666667%;
    }

    .col-lg-pull-4 {
        right: 33.33333333%;
    }

    .col-lg-pull-3 {
        right: 25%;
    }

    .col-lg-pull-2 {
        right: 16.66666667%;
    }

    .col-lg-pull-1 {
        right: 8.33333333%;
    }

    .col-lg-pull-0 {
        right: auto;
    }

    .col-lg-push-12 {
        left: 100%;
    }

    .col-lg-push-11 {
        left: 91.66666667%;
    }

    .col-lg-push-10 {
        left: 83.33333333%;
    }

    .col-lg-push-9 {
        left: 75%;
    }

    .col-lg-push-8 {
        left: 66.66666667%;
    }

    .col-lg-push-7 {
        left: 58.33333333%;
    }

    .col-lg-push-6 {
        left: 50%;
    }

    .col-lg-push-5 {
        left: 41.66666667%;
    }

    .col-lg-push-4 {
        left: 33.33333333%;
    }

    .col-lg-push-3 {
        left: 25%;
    }

    .col-lg-push-2 {
        left: 16.66666667%;
    }

    .col-lg-push-1 {
        left: 8.33333333%;
    }

    .col-lg-push-0 {
        left: auto;
    }

    .col-lg-offset-12 {
        margin-left: 100%;
    }

    .col-lg-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-lg-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-lg-offset-9 {
        margin-left: 75%;
    }

    .col-lg-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-lg-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-lg-offset-6 {
        margin-left: 50%;
    }

    .col-lg-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-lg-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-lg-offset-3 {
        margin-left: 25%;
    }

    .col-lg-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-lg-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-lg-offset-0 {
        margin-left: 0%;
    }
}

/* ------------------------------------------------------------------------- *
 *  6 - Main Content
 * ------------------------------------------------------------------------- */
#main {
    display: block;
    /*position: relative;*/
    /* padding-top: 75px;*/
    /*Removed 181108*/
}

.section {
    padding: 40px 60px;
}

.section-wrap {
    position: relative;
}

.no-sidebar #main {
    margin-left: auto;
}

.wrapper {
    margin: 0 auto;
    position: relative;
}

#content {
    /* background: #fff; */
    /* border: 1px solid #e5e5e5;*/
    position: relative;
    padding-left: 0;
    padding-right: 0;
}

.yarpp-related {
    padding: 0;
    /*22px 30px 30px;*/
    margin: 0 40px 40px 40px;
    /*-webkit-backface-visibility: hidden;*/
}

.section.cat-latest-post {
    padding: 10px 0 0 0;
    padding: 0;
    margin-bottom: 0;
}

.section.topheader {
    padding: 0;
    /*22px 30px 30px;*/
    margin: 0 0 40px 0;
    /*-webkit-backface-visibility: hidden;*/
    background: transparent;
    width: 100%;
    height: auto;
    max-height: 700px;
    overflow: hidden;
}

.section.topheader .row {
    margin-left: 0;
    margin-right: 0;
}

.section.callout {
    padding: 0;
    margin: -40px 0 -20px 0;
    background: transparent;
    height: auto;
}

.section.callout .row {
    margin-left: 0;
    margin-right: 0;
}

.callout p {
    margin: 0;
    font-size: 2em;
    line-height: 1.5em;
    margin-bottom: 0.5em !important;
}


.section.posttopheader {
    padding: 0;
    /*22px 30px 30px;*/
    margin: -20px 0 -175px 0;
    /*-webkit-backface-visibility: hidden;*/
    height: 215px;
    overflow: hidden;

    background-size: cover;
    background-position: center center;
    background-repeat: repeat;
}


.postheaderfull {
    height: inherit;
    padding: 10px 40px 20px 40px;

    z-index: 2;
}

.postheaderfull h1 {
    font-size: 3.5em;
    margin: 2em 0 0.85em 0;
    line-height: 1.125;
    color: #fff;
}

.postheaderfull h2 {
    font-size: 2em;
    line-height: 1.125;
    color: #fff;
}


.section.postnextheader {
    padding: 0;
    /*22px 30px 30px;*/
    margin: 0;
    /*-webkit-backface-visibility: hidden;*/
    height: 300px;
    /*overflow:hidden;*/

    background-size: cover;
    background-position: center center;
    background-repeat: repeat;
}

.postnextfull {
    height: inherit;
    padding: 10px 40px 20px 40px;
    z-index: 2;

    background: -moz-linear-gradient(top, rgba(24, 7, 24, 0.5) 0%, rgba(24, 7, 24, 0.95) 100%);
    background: -webkit-linear-gradient(top, rgba(24, 7, 24, 0.5) 0%, rgba(24, 7, 24, 0.95) 100%);
    background: linear-gradient(to bottom, rgba(24, 7, 24, 0.5) 0%, rgba(24, 7, 24, 0.95) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00180718", endColorstr="#f2180718", GradientType=0);

    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#180718+0,180718+66,e7e6e7+100&0.5+0,0.85+66,1+100 */
    background: -moz-linear-gradient(top, rgba(24, 7, 24, 0.5) 0%, rgba(24, 7, 24, 0.85) 66%, rgba(231, 230, 231, 1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(24, 7, 24, 0.5) 0%, rgba(24, 7, 24, 0.85) 66%, rgba(231, 230, 231, 1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(24, 7, 24, 0.5) 0%, rgba(24, 7, 24, 0.85) 66%, rgba(231, 230, 231, 1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80180718', endColorstr='#e7e6e7', GradientType=0);
    /* IE6-9 */

}

.postnextfull p {
    margin: 1.5em 0 0 0;
    font-size: 1.25em;
    font-style: italic;
    color: #fff;
}

.postnextfull h1 {
    font-size: 3.5em;
    margin: 0.75em 0 0 0;
    line-height: 1.125;
    color: #fff;
}

.postnextfull h2 {
    font-size: 2em;
    line-height: 1.125;
    margin: 0.75em 0;
    color: #fff;
}


.nopadding p {
    margin: 0;
}

.nopadding .alignnone,
.nopadding .alignNone {
    margin-top: 0;
}

.wpb_content_element {
    margin-bottom: 0 !important;
}

.wpb_content_element+.wpb_content_element {
    margin-top: 20px;
}


#content .section.404page {
    margin-top: 20px;
}

.article-content .container-404 p {
    max-width: none;
}

#content .section:last-of-type {
    border-bottom: 0;
    /* margin-bottom: 25px; */
}

.hide_border_bottom {
    border-bottom: none;
}


.larger-callout p {
    margin: 0;
    font-size: 2em;
    line-height: 1.5em;
    margin-bottom: 0.5em !important;
}


.home-content .vc_row section {
    border-bottom: 1px solid #e5e5e5;
}

.home-content .vc_row:last-child section {
    border-bottom: 0 !important;
}

.post-title a {
    color: #333;
    font-weight: normal;
}

.content a:hover,
.content a:active,
.content a:focus {
    text-decoration: underline;
}

.section-heading {
    font-weight: bold;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0 0 12px;
}

.section-heading strong,
.archive-heading strong {
    color: #12002b;
}

.thumb {
    position: relative;
    overflow: hidden;
    /*new*/
}

.post-video .thumb a:before,
.post-gallery .thumb a:before {
    content: '';
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 55%, rgba(0, 0, 0, 0.6) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0.6)), color-stop(55%, rgba(0, 0, 0, 0.2)), color-stop(100%, rgba(0, 0, 0, 0.6)));
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 55%, rgba(0, 0, 0, 0.6) 100%);
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 55%, rgba(0, 0, 0, 0.6) 100%);
    background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 55%, rgba(0, 0, 0, 0.6) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 55%, rgba(0, 0, 0, 0.6) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#99000000', GradientType=0);
    width: 100%;
    height: 100%;
    position: absolute;
}

.post-video .thumb a:after,
.post-gallery .thumb a:after {
    color: #fff;
    font-family: 'FontAwesome';
    font-size: 14px;
    line-height: normal;
    margin: auto;
    position: absolute;
    left: 5px;
    bottom: 5px;
    width: 1em;
    height: 1em;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.7);
    text-align: center;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.sub-menu .post-video .thumb a:after,
.sub-menu .post-gallery .thumb a:after {
    font-size: 32px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.sub-menu .post-video .thumb a:after {
    font-size: 34px;
}

.post-video .thumb a:after {
    content: "\f144";
}

.post-gallery .thumb a:after {
    content: "\f03e";
}

.jpreloader {
    position: relative;
}

.jpreloader span {
    display: block;
    bottom: 0px;
    width: 6px;
    height: 6px;
    background: #FCDCD9;
    position: absolute;
    -webkit-animation: jpreloader 1.5s infinite ease-in-out;
    -moz-animation: jpreloader 1.5s infinite ease-in-out;
    -o-animation: jpreloader 1.5s infinite ease-in-out;
    animation: jpreloader 1.5s infinite ease-in-out;
}

.jpreloader span:nth-child(2) {
    left: 11px;
    -webkit-animation-delay: .2s;
    -o-animation-delay: .2s;
    animation-delay: .2s;
}

.jpreloader span:nth-child(3) {
    left: 22px;
    -webkit-animation-delay: .4s;
    -o-animation-delay: .4s;
    animation-delay: .4s;
}

.jpreloader span:nth-child(4) {
    left: 33px;
    -webkit-animation-delay: .6s;
    -o-animation-delay: .6s;
    animation-delay: .6s;
}

.jpreloader span:nth-child(5) {
    left: 44px;
    -webkit-animation-delay: .8s;
    -o-animation-delay: .8s;
    animation-delay: .8s;
}

@-webkit-keyframes jpreloader {
    0% {
        height: 6px;
        transform: translateY(0px);
        background: #FCDCD9;
    }

    25% {
        height: 12px;
        transform: translateY(3px);
        background: #ef4135;
    }

    50% {
        height: 6px;
        transform: translateY(0px);
        background: #F4837B;
    }

    100% {
        height: 6px;
        transform: translateY(0px);
        background: #FCDCD9;
    }
}

@-moz-keyframes jpreloader {
    0% {
        height: 6px;
        transform: translateY(0px);
        background: #FCDCD9;
    }

    25% {
        height: 12px;
        transform: translateY(3px);
        background: #ef4135;
    }

    50% {
        height: 6px;
        transform: translateY(0px);
        background: #F4837B;
    }

    100% {
        height: 6px;
        transform: translateY(0px);
        background: #FCDCD9;
    }
}

@-o-keyframes jpreloader {
    0% {
        height: 6px;
        transform: translateY(0px);
        background: #FCDCD9;
    }

    25% {
        height: 12px;
        transform: translateY(3px);
        background: #ef4135;
    }

    50% {
        height: 6px;
        transform: translateY(0px);
        background: #F4837B;
    }

    100% {
        height: 6px;
        transform: translateY(0px);
        background: #FCDCD9;
    }
}

@keyframes jpreloader {
    0% {
        height: 6px;
        transform: translateY(0px);
        background: #FCDCD9;
    }

    25% {
        height: 12px;
        transform: translateY(3px);
        background: #ef4135;
    }

    50% {
        height: 6px;
        transform: translateY(0px);
        background: #F4837B;
    }

    100% {
        height: 6px;
        transform: translateY(0px);
        background: #FCDCD9;
    }
}

a[title*="Pin it!"] {
    z-index: 1 !important;
}




.section.resourcesection {
    /*-webkit-backface-visibility: hidden;*/
    background: #d9c8cf;
    height: auto;
    max-height: 700px;
    min-height: 250px;
    overflow: hidden;
}


.section.resourcesection .row {
    margin-left: 0;
    margin-right: 0;
}




/* dark section */

.section.darksection {
    background: #12002b;
    height: auto;
}

.section.darksection.fullwidth {
    padding-bottom: 40px;
    margin-bottom: 40px;
}



.section.darksection .row {
    margin-left: 0;
    margin-right: 0;
}

/* white section */

.section.whitesection {
    /*-webkit-backface-visibility: hidden;*/
    background: #fff;
    height: auto;
    padding: 1.5em;
    position: relative;
    z-index: 0;
}

.section.whitebox {
    background: #ffffff;
    height: auto;
    position: relative;
    z-index: 0;
}

.section.whitebox .paddedbox>.wpb_wrapper {
    padding: 20px 0 25px 0;
}

.section.whitebox .paddedbox .wpb_wrapper .wpb_wrapper,
.section.robin_egg_blue_box .paddedbox .wpb_wrapper .wpb_wrapper {
    padding: 0;
}

.section.robin_egg_blue_map_box {
    padding: 0;
    margin: 0 30px;
}

.section.robin_egg_blue_map_box [class*="col-"] {
    padding: 0;
}

.section.whitebox h2 {
    margin: 0;
}

/* Robin Blue section */
.section.robin_egg_blue_map_box,
.section.robin_egg_blue_box {
    background: #a5d1ce;
    height: auto;
    position: relative;
    z-index: 0;
}

/* Beige section */
.section.beigebox {
    background: #f4efdf;
    height: auto;
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
    z-index: 0;
}

.section.fullwidth.full-width-beige-right,
.section.full-width-beige-right {
    padding: 0;
    margin: 0;
}

.section.full-width-beige-right .container-fluid>.row .wpb_column:last-child {
    background-color: #f7f4de;
}


/* Section Regionblock*/
@media only screen and (min-width : 768px) {
    .section.regionalblock {
        padding: 0 100px 20px 100px;
    }
}

@media only screen and (min-width : 992px) {
    .section.regionalblock {
        padding: 0 110px 20px 110px;
    }
}

@media only screen and (min-width : 1400px) {
    .section.regionalblock {
        padding: 0 250px 20px 250px;
    }
}

/*2 column - new*/
div.whitebox .wpb_wrapper {
    background: #fff;
}

div.whitebox .paddedbox .wpb_wrapper {
    padding: 0.5em 15px 15px 0;
}

div.whitebox .paddedbox .wpb_wrapper p:last-child,
div.whitebox .paddedbox .wpb_text_column :last-child {
    margin-bottom: 1em !important;
}

/*  
#content .wpb_alert p:last-child, 
#content .wpb_text_column :last-child, 
#content .wpb_text_column p:last-child, 
.vc_message_box > p:last-child, 
.wpb_alert p:last-child, 
.wpb_text_column :last-child, 
.wpb_text_column p:last-child   
*/

div.whitebox .paddedbox .wpb_wrapper .wpb_wrapper {
    padding: 0;
}

div.whitebox .paddedbox .wpb_wrapper h2 {
    margin: 0;
}

div.whitebox .paddedbox .wpb_wrapper p {
    margin: 0.5em 0 0.5em 0;
}


div.whitebox .paddedinner .wpb_wrapper {
    padding: 20px 25px 25px 25px;
}

div.whitebox .paddedinner .wpb_wrapper .wpb_wrapper {
    padding: 0;
}

div.whitebox .paddedinner .wpb_wrapper h2 {
    margin: 0;
}

div.whitebox .paddedinner .wpb_wrapper p {
    margin: 0.5em 0 0.5em 0;
}






/*
.section.whitesection .row {
    margin-left: 0;
    margin-right: 0;
}
*/

/*
.section.darksection .row [class*="col-"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
}
*/



.calloutfull {
    padding: 0;
    margin: 0 -15px 0 -15px;
}

.calloutfull h2,
.calloutfull p {
    padding-left: 25px;
    color: #009aa3;
}

.calloutfull h2 {
    margin-top: 2.25em;
}



.calloutfull p {
    margin: 0;
    font-size: 1.5em;
    line-height: 1.5em;
    margin-bottom: 0.5em !important;
}



.calloutfull .btn {
    color: #009aa3;
    margin-top: 0.75em;
    margin-bottom: 40px;
    border-color: #009aa3;
}

.calloutimage {
    display: block;
    height: 100%;
    width: 35%;
    left: 65%;
    z-index: 0;
    position: absolute;
    overflow: hidden;
}

.calloutimage img {
    -webkit-clip-path: polygon(40% 100%, 100% 100%, 100% 0%, 0% 0%);
    clip-path: polygon(40% 100%, 100% 100%, 100% 0%, 0% 0%);
}

@media (max-width: 991px) {
    .calloutimage {
        display: none;
    }
}

.promofull {
    padding: 0;
    margin: 0 -15px 0 -15px;
    height: 400px;
}

@media (max-width: 768px) {

    .promofull {
        height: 230px;
    }

}

.promofull h1,
.promofull h2,
.promofull h3,
.promofull h4 {
    padding-left: 25px;
    color: #009aa3;
}

.promofull h1 {
    font-size: 4em;
    margin: 0.75em 0 0 0;
    line-height: 1.125;
    color: #fff;
}

.promofull h2 {
    font-size: 3.25em;
    margin: 0.7em 0 0.75em 0;
    line-height: 1.25;
}

.promofull h2.small,
h2.small {
    font-size: 1.85em;
    line-height: 1.25;
}

.promofull h3 {
    margin: 2em 0 0 0;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 1.125em;
    letter-spacing: 0.05em;
}

.promofull h4 a {
    color: #d9c8cf;
}

.promofull h4 a:hover {
    color: #fff;
}

.promofull .btn {
    color: #12002b;
    margin-bottom: 40px;
    border: none;
    background: #009aa3;
    font-size: 18px;
}

.promofull .left-but .btn {
    margin-left: 25px;
}

.promofull .btn .fa {
    color: #12002b;
    margin-left: 7px;
}

.splashimage {
    display: block;
    height: 100%;
    min-height: 350px;
    width: 50%;
    left: 50%;
    z-index: 0;
    background-size: contain, cover;
    background-position: left top, left center;
    background-repeat: no-repeat;
    position: absolute;
}

.promofull.featuredres h3 {
    color: #d9c8cf;
    margin: 1.5em 0 0 0;
}

.promofull.featuredres h1 {
    margin: 0.25em 0 0 0;
}

.promofull.featuredres h2 {
    color: #d9c8cf;
    font-size: 2em;
}

.promofull.featuredres h4 {
    color: #d9c8cf;
    margin: 1.33em 0 1.66em;
}

.promofull.topres,
.promofull.topres .splashimage {
    min-height: 250px;
}



.promofull.topres h2 {
    margin: 1.25em 0 0.75em 0;
    color: #12002b;
    font-size: 2em;
}

.promofull.topres h4 {
    color: #12002b;
    margin: 0.75em 0 2em;
}


/* oxblood #62173a*/
/* pink #d9c8cf*/

.promofull.topres .buttonarea {

    margin-left: 25px;

}

.promofull.topres .btn {

    color: #62173a;
    border: 2px solid #62173a;
    background: #d9c8cf;
    margin-bottom: 15px;
    font-size: 1em;
}

.promofull.topres a.btn:hover {
    color: #fff;
    background: #62173a;
}


.headerfull {
    margin: 0 -15px 0 -15px;
    padding: 0 15px 0 15px;
    z-index: 2;

    background: -moz-linear-gradient(top, rgba(24, 7, 24, 0) 0%, rgba(24, 7, 24, 0.95) 100%);
    background: -webkit-linear-gradient(top, rgba(24, 7, 24, 0) 0%, rgba(24, 7, 24, 0.95) 100%);
    background: linear-gradient(to bottom, rgba(24, 7, 24, 0) 0%, rgba(24, 7, 24, 0.95) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00180718", endColorstr="#f2180718", GradientType=0);

}

.headerfull.no-shadow {
    background: none;
}

.headerfull h1 {
    font-size: 5em;
    margin: 3.25em 0.125em 0.85em 0.125em;
    line-height: 1.125;

    color: #fff;
}

.headerimage {
    display: block;
    height: 100%;
    width: 100%;
    left: 0;
    z-index: -1;


    background-size: cover;
    background-position: center center;
    background-repeat: repeat;



    position: absolute;

}



@media (max-width: 849px) {

    .promofull h1 {
        font-size: 4em;
    }

    .promofull h2 {
        font-size: 1.75em;
    }

    .promofull .btn {
        margin-bottom: 15px;
        margin-top: 5px;
    }

}

@media (max-width: 768px) {

    .promofull h1 {
        font-size: 3.5em;
    }

    .promofull h2 {
        font-size: 1.5em;
    }

}

@media (max-width: 549px) {

    .promofull h1 {
        font-size: 2.5em;
    }

    .promofull h2 {
        font-size: 1.125em;
    }

}





.darksection {
    background: black;
}

.darksection .section-heading {
    color: #fff;
}

.darksection a {
    color: #ffffff;
    text-decoration: none !important;
}

.darksection a:hover,
.darksection a:active {
    color: #65c2c8;
}

.darksection .post-title a {
    color: #fff;
}

.darksection .post-excerpt {
    color: #ddd;
}

.nopaddingbottom {
    padding-bottom: 0 !important;
}

.nopaddingtop {
    padding-top: 0 !important;
}

.nomarginbottom {
    margin-bottom: 0 !important;
}

.no-margin-top-bottom {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
}

/* Press Heading */
.featured-press h2#press-title {
    padding: 12px 22px;
}

.press-page .press-content {
    background-color: #ffffff;
}

.press-page .headerfull h1 {
    font-size: 2.5em;
    margin: 6em 0.125em 0.4em 0;
    line-height: 1.2em;
    padding-left: 5%;
    color: #fff;
}

.press-page .headerfull .post-meta {
    color: #fff;
    font-weight: 300;
    font-size: 18px;
    margin-bottom: 20px;
    padding-left: 5%;
}

.press-page .headerfull {
    padding: 0 15px 120px 15px;
}

@media (max-width: 768px) {
    .press-page .headerfull h1 {
        padding-left: 0;
    }

    .press-page .headerfull .post-meta {
        padding-left: 0;
    }
}

/* Project Heading */
.posts-slider h2#project-title {
    padding: 12px 22px;
}

.project-page .projects-content {
    background-color: #ffffff;
}

/* Events  Heading */
.featured-event h2#event-title {
    padding: 12px 22px;
}

.events-page .events-content {
    background-color: #ffffff;
}

.events-page .headerfull h1 {
    font-size: 2.5em;
    margin: 6em 0.125em 0.4em 0;
    line-height: 1.2em;
    padding-left: 5%;
    color: #fff;
}

.events-page .headerfull .post-meta {
    color: #fff;
    font-weight: 300;
    font-size: 18px;
    margin-bottom: 20px;
    padding-left: 5%;
}

.events-page .headerfull {
    padding: 0 15px 120px 15px;
}

@media (max-width: 768px) {
    .events-page .headerfull h1 {
        padding-left: 0;
    }

    .events-page .headerfull .post-meta {
        padding-left: 0;
    }
}

/* Articles HEading */
.cat-latest-post h2.archive-heading {
    padding: 12px 22px;
}

body.blog .main-thumbnail-container {
    background: #f4efdf;
    padding: 22px 0 0 0;
}

.article-content .countries_list,
.article-content .events_details {
    font-size: 15px;
    font-weight: 300;
    text-transform: capitalize;
    margin: 12px 0;
}

.article-content .countries_list i,
.article-content .events_details i {
    opacity: 0.7;
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.article-content .events_details .event_item {
    margin-bottom: 4px;
}

.article-content .event_description {
    margin: 15px 0;
}

.article-content a.aticle-title,
.article-content a.aticle-title:visited {
    text-decoration: none !important;
    color: #ffffff;
}

.articles_meta_date {
    margin-bottom: 5px;
}

/* OWL Carousel : Globa Styling */
.owl-theme .owl-controls {
    margin-top: 10px;
    text-align: center;
}

.owl-controls .owl-page,
.owl-controls .owl-buttons div {
    z-index: 1
}

.owl-theme .owl-controls .owl-page {
    display: inline-block;
    zoom: 1;
    *display: inline;
    /*IE7 life-saver */
}

.owl-theme .owl-controls .owl-page span {
    display: block;
    width: 14px;
    height: 14px;
    margin: 0 5px;
    -webkit-box-shadow: inset 0 0 0 2px rgba(148, 148, 148, .5);
    box-shadow: inset 0 0 0 2px rgba(148, 148, 148, .5);
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;

    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
    -webkit-box-shadow: inset 0 0 0 14px rgba(148, 148, 148, .7);
    box-shadow: inset 0 0 0 14px rgba(148, 148, 148, .7);
}

/* Owl Carousel: Navigation */
.owl-carousel .owl-buttons div {
    width: 40px;
    height: 40px;
    color: #c0c0c0;
    background: #fff;
    border: 1px solid #e5e5e5;
    display: block;
    text-align: center;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    font: normal normal normal 14px/40px FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.owl-carousel .owl-buttons div:hover,
.owl-carousel .owl-buttons div:active {
    color: #7b7b7b;
}

.owl-carousel .owl-prev {
    left: 0;
    /*-22px*/
}

.owl-carousel .owl-next {
    right: 0;
    /*-22px*/
}

.owl-carousel .owl-prev:before {
    content: "\f053";
    margin-right: 2px;
}

.owl-carousel .owl-next:before {
    content: "\f054";
    margin-left: 2px;
}

.owl-carousel .owl-prev:after,
.owl-carousel .owl-next:after {
    content: '';
    position: absolute;
    top: 100%;
    width: 0;
    height: 0;
    border-style: solid;
}

.owl-carousel .owl-prev:after {
    border-color: transparent #c5c1c5 transparent transparent;
    border-width: 0 9px 9px 0;
    left: 0;
}

.owl-carousel .owl-next:after {
    border-color: transparent transparent transparent #c5c1c5;
    border-width: 0 0 9px 9px;
    right: 0;
}


.recent-publications {
    background: green;
}

.recent-pubs {
    display: block;
    position: absolute;

    bottom: 0;
    height: 100%;
    width: 95.5%;

    background: -moz-linear-gradient(top, rgba(24, 7, 24, 0) 0%, rgba(24, 7, 24, 0.95) 100%);
    background: -webkit-linear-gradient(top, rgba(24, 7, 24, 0) 0%, rgba(24, 7, 24, 0.95) 100%);
    background: linear-gradient(to bottom, rgba(24, 7, 24, 0) 0%, rgba(24, 7, 24, 0.95) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00180718', endColorstr='#f2180718', GradientType=0);



}

.recent-pubs h1 {
    font-size: 1.25em;
    color: #fff;
    position: absolute;
    bottom: 0;


    padding: 10px;
    width: 100%;

}

/* ------------------------------------------------------------------------- *
 *  6.1 - Home Featured Slider
 * ------------------------------------------------------------------------- */
.featured-post {
    overflow: visible;
    display: block;
}

.featured-slider {
    width: 100%;
}

.featured-post .owl-item img {
    width: 100%;
}

.featured-post .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 20px 0 70px;
    width: 100%;
    overflow: hidden;

    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 70%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(70%, rgba(0, 0, 0, 0.65)));
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 70%);
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 70%);
    background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 70%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 70%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#a6000000', GradientType=0);
}

.featured-post .caption-container {
    padding: 0 40px;
    margin: 0 auto;
}

.featured-post .caption .post-title {
    font-size: 2em;
    line-height: 1.3em;
    margin-top: 10px;
}

.featured-post .caption .post-title a {
    color: #fff;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.7);
}

.featured-post .caption .post-categories a {
    display: inline-block;
    font-size: 11px;
    padding: 5px 12px;
    background: rgba(239, 65, 53, 0.75);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: normal;
}

.featured-thumbnail-container {
    padding: 0 40px;
    margin: 0 auto;
}

.featured-slider-thumbnail {
    width: auto;
    margin: -50px 0 -30px;
    padding: 20px 10px 0;
    background: #fff;
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 1) 40%, rgba(255, 255, 255, 1) 50%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0.5)), color-stop(40%, rgba(255, 255, 255, 1)), color-stop(50%, rgba(255, 255, 255, 1)));
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 1) 40%, rgba(255, 255, 255, 1) 50%);
    background: -o-linear-gradient(top, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 1) 40%, rgba(255, 255, 255, 1) 50%);
    background: -ms-linear-gradient(top, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 1) 40%, rgba(255, 255, 255, 1) 50%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 1) 40%, rgba(255, 255, 255, 1) 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#99ffffff', endColorstr='#ffffff', GradientType=0);
}

.featured-slider-thumbnail .owl-item {
    padding: 0 10px 0;
}

.featured-slider-thumbnail .owl-item img {
    padding-bottom: 25px;
}

.featured-slider-thumbnail .owl-item.active img {
    border-bottom: 3px solid #ef4135;
}

.featured-slider .owl-wrapper-outer {
    background: #eee;
}

.featured-slider .owl-wrapper-outer:before,
.featured-slider-2 .owl-wrapper-outer:before,
.gallery-slider .owl-wrapper-outer:before {
    font-family: "FontAwesome", serif;
    content: "\f110";
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 30px;
    color: #000;
    margin-top: -15px;
    margin-left: -15px;
    opacity: 0.5;

    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
}

.gallery-slider .owl-wrapper-outer:before {
    color: #fff;
}


/* Featured Slider Style 2 */
.featured-slider-2 .caption {
    padding: 100px 0 70px;
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.29) 13%, rgba(255, 255, 255, 0.75) 34%, rgba(255, 255, 255, 0.77) 40%, rgba(255, 255, 255, 1) 97%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(13%, rgba(255, 255, 255, 0.29)), color-stop(34%, rgba(255, 255, 255, 0.75)), color-stop(40%, rgba(255, 255, 255, 0.77)), color-stop(97%, rgba(255, 255, 255, 1)));
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.29) 13%, rgba(255, 255, 255, 0.75) 34%, rgba(255, 255, 255, 0.77) 40%, rgba(255, 255, 255, 1) 97%);
    background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.29) 13%, rgba(255, 255, 255, 0.75) 34%, rgba(255, 255, 255, 0.77) 40%, rgba(255, 255, 255, 1) 97%);
    background: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.29) 13%, rgba(255, 255, 255, 0.75) 34%, rgba(255, 255, 255, 0.77) 40%, rgba(255, 255, 255, 1) 97%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.29) 13%, rgba(255, 255, 255, 0.75) 34%, rgba(255, 255, 255, 0.77) 40%, rgba(255, 255, 255, 1) 97%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=0);
}

.featured-slider-2 .caption .post-title {
    font-size: 1.6em;
    max-width: 70%;
}

.featured-slider-2 .caption .post-title a {
    color: #333;
    text-shadow: none;
    font-weight: bold;
}

.featured-thumbnail-container {
    padding: 0 30px
}

.featured-slider-2-thumbnail {
    margin: -30px 0 0;
    padding: 0;
}

.featured-item-detail {
    margin: 0 10px;
    padding-top: 15px;
    font-size: 13px;
    border-top: 2px solid #e5e5e5;
}

.featured-item-detail a {
    color: #333;
    font-weight: bold;
    display: block;
    max-height: 100px;
    text-overflow: ellipsis;
}

.active .featured-item-detail {
    border-top: 2px solid #333;
}


/* ------------------------------------------------------------------------- *
 *  6.1 - Main Slider
 * ------------------------------------------------------------------------- */
.main-post {
    overflow: visible;
    display: block;
    margin: 0 -15px;
    /*new*/
}

.main-slider {
    width: 100%;
}

.main-slider.owl-jowlgallery {
    padding: 0
}


.main-slide {
    padding: 0;
    margin: 0;
}

.main-slide .colourbox {
    min-height: 440px;
}

.main-slide h2,
.main-slide h3,
.main-slide h4 {
    color: #d9c8cf;
}


.main-slide.burgundy h3 {
    color: #d0bec5;
}

.main-slide.burgundy h2 {
    color: #dbced3;
    /*slightly lighter 75%*/
}


.main-slide.blue h2,
.main-slide.blue h3 {
    color: #afdfe4;
}

.slide-area {
    padding-left: 25px;
}

.main-slide h1 {
    font-size: 4em;
    margin: 0.357em 0 0 0;
    line-height: 1.1;
    color: #fff;
	font-weight:400 !important;
}

.main-slide .long-text h1 {
    font-size: 3.35em;
}

.main-slide h2 {
    font-size: 2.25em;
    margin: 0.7em 0 1.5em 0;
    /*0.7em 0 0.75em 0*/
    margin: 0.75em 0 0.75em 0;
    line-height: 1.1;
    color: #009aa3;
}

.main-slide h3 {
    margin: 2em 0 0 0;
    text-transform: uppercase;
   
    font-size: 1.125em;
    letter-spacing: 0.05em;
    color: #009aa3;
}

.main-slide h4 a {
    color: #d9c8cf;
}

.main-slide h4 a:hover {
    color: #fff;
}

.main-slide .reversed-content h1 {
    padding-top: 30px;
    padding-bottom: 16px;
}

.main-slide .reversed-content .post-meta,
.main-slide .reversed-content .excerpt {
    font-size: 16px;
}

.post-header .btn,
.main-slide .btn {
    color: #009aa3;
    margin-bottom: 35px;
    border: none;
    background: #f4efdf;
    font-size: 1.125em;
}

.post-header .btn .fa,
.main-slide .btn .fa {
    color: #009aa3;
    margin-left: 7px;
}


.main-post .owl-item img {
    width: 100%;
}

.main-post .caption {}

.main-post .caption-container {
    padding: 0 40px;
    margin: 0 auto;
}

.main-post .caption .post-title {}

.main-post .caption .post-title a {}

.main-post .caption .post-categories a {}

.main-thumbnail-container {
    padding: 0 25px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.main-slider-thumbnail {
    width: auto;
    margin: -45px 0 0 0;
    padding: 0;
    height: 35px;
}

.main-slider-thumbnail.owl-carousel .owl-wrapper {
    width: auto !important;
    padding: 0;
    margin: 0 0 0 -4px;
    display: flex !important;
    justify-content: center;
}

.main-slider-thumbnail.owl-carousel .owl-item {
    float: none;
    background: none !important;
    padding: 0 0 0 9px;
    margin: 0 0 0 9px;
    width: 85px !important;
}

.main-slider-thumbnail.owl-carousel .owl-item a.slidethumb {
    display: inline-block;
    width: 85px;
    height: 5px;
    padding: 0 9px 0 0;
    margin: 0 9px 0 0;
    background: #009aa3;
}

.main-slider-thumbnail.owl-carousel .owl-item.active a.slidethumb {
    background: #f4efdf;
}

.main-slider .owl-wrapper-outer {
    background: #12002b;
}

.main-slider .owl-wrapper-outer:before {
    font-family: "FontAwesome", serif;
    content: "\f110";
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 30px;
    color: #000;
    margin-top: -15px;
    margin-left: -15px;
    opacity: 0.5;

    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
}

.main-slider .owl-wrapper-outer:before {
    color: #fff;
}

/* Posts Slider */
.main-post.posts-slider .slide-area {
    margin-top: 120px;
}

.main-post.posts-slider .slide-area h1 a {
    color: #ffffff;
}

.main-post.posts-slider .slide-area h1 a:hover {
    color: #62173a;
}

.main-post.posts-slider .splashimage {
    display: block;
    height: 100%;
    min-height: 650px;
    width: 100%;
    left: 0;
    z-index: 0;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    position: absolute;
    right: 0;
}

.main-post.posts-slider .colourbox {
    background-color: transparent;
}

.main-post.posts-slider .splashimage::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: .7;
}

.main-post.posts-slider .main-slider-thumbnail.owl-carousel .owl-item a.slidethumb {
    background: #afd9d7;
}

.main-post.posts-slider .main-slider-thumbnail.owl-carousel .owl-item.active a.slidethumb {
    background: #389da4;
}

.main-post.posts-slider .main-slider-thumbnail {
    margin: 0;
}

/* ------------------------------------------------------------------------- *
 *  6.3 - Carousel Post
 * ------------------------------------------------------------------------- */
.carousel-post {
    display: block;
}

.carousel-post .latest-post-feed {
    margin: 0 10px;
    float: none;
}

.carousel-post .owl-buttons div {
    top: 30px;
    bottom: auto;
}

.carousel-post .owl-prev,
.postbox .owl-prev {
    left: 0;
    /*-52px*/
}

.carousel-post .owl-next,
.postbox .owl-next {
    right: 0;
    /*-52px*/
}

/* Postbox */
.postbox {
    display: block;
}

.postbox-feed {
    margin: 0 10px;
    position: relative;
    text-align: center;
    float: none;
}

.postbox-feed .content {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    padding: 25px 10px 10px;
    overflow: hidden;
    text-overflow: ellipsis;

    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.44) 50%, rgba(0, 0, 0, 0.75) 85%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(50%, rgba(0, 0, 0, 0.44)), color-stop(85%, rgba(0, 0, 0, 0.75)));
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.44) 50%, rgba(0, 0, 0, 0.75) 85%);
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.44) 50%, rgba(0, 0, 0, 0.75) 85%);
    background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.44) 50%, rgba(0, 0, 0, 0.75) 85%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.44) 50%, rgba(0, 0, 0, 0.75) 85%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#bf000000', GradientType=0);
}

.postbox-feed .post-title {
    font-size: 15px;
    line-height: 21px;
}

.postbox-feed .post-title a {
    color: #fff;
    text-shadow: 0 1px rgba(0, 0, 0, 0.3);
}

.postbox-feed .post-meta {
    color: #d7d7d7;
}


.imagebox {
    padding: 0;
    margin: 0;
    /* background: #009aa3; */
}

.backgroundimg.imagebox {
    min-height: 250px;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}

.imagebox.right_side_image {
    -webkit-clip-path: polygon(15% 100%, 100% 100%, 100% 0%, 0% 0%);
    clip-path: polygon(15% 100%, 100% 100%, 100% 0%, 0% 0%);
}

.imagebox.left_side_image {
    -webkit-clip-path: polygon(0% 100%, 85% 100%, 100% 0%, 0% 0%);
    clip-path: polygon(0% 100%, 85% 100%, 100% 0%, 0% 0%);
}

.faded-bw {
    -webkit-filter: grayscale(100%);
    /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
    opacity: 0.4;
    filter: alpha(opacity=40);
    /* For IE8 and earlier */
}

/* ------------------------------------------------------------------------- *
 *  6.4 - Latest Articles, Resources, Events
 * ------------------------------------------------------------------------- */

.three-articles {
    /* background-color: #389ea5; */
    background-color: #62173a;
    margin-bottom: 5px;
    /*margin-bottom: 25px;*/
    height: 100%;
}

.three-articles.card.press-release {
    background-color: #205674;
}

.three-articles.card.projects {
    background-color: #62173a;
}

.three-articles h1 {
    font-size: 1.5em;
    margin: 0.35em 0 0.5em 0;
    line-height: 1.25;
    color: #FFFFFF;
}

.three-articles h2 {
    font-size: 1.5em;
    margin: 0 0 0.5em 0;
    line-height: 1.25;
    color: #12002b;
}

.three-articles .article-content span.article-date,
.three-resources .resource-content span.resource-date {
    color: #009aa3;
}

.three-articles .article-content span.article-authors,
.three-resources .resource-content span.resource-type {
    color: #FFFFFF;
}

a.artitem {
    color: #62173a;
    font-weight: 600;
}

a.artitem:hover,
a.artitem:active,
a.artitem:focus {
    color: #389ea5;
}

@media (min-width: 992px) {

    .three-articles h1,
    .three-resources .resource-title-section {
        padding-bottom: 50px;
    }

    .three-articles .article-content span.article-authors,
    .three-resources .resource-content span.resource-type {
        position: absolute;
        bottom: 15px;
    }
	.three-resources .resource-content{
	min-height:15.5em !important;
}
}

@media (max-width: 992px) {

    .three-articles h1,
    .three-resources .resource-title-section {
        padding-bottom: 40px;
    }

    .three-articles .article-content span.article-authors,
    .three-resources .resource-content span.resource-type {
        position: absolute;
        bottom: 15px;
    }
}

.three-articles span.photo-credit-text {
    color: #fff;
}

.three-articles .article-content {
    padding: 0 1.25em 1.5em 1.5em;
    min-height: 15.5em;
    margin-top: -5px;
    line-height: 1.4em;
}

.no-thumbnail-wrapper.article-wedge {
    height: 0;
    overflow: hidden;
    padding-bottom: 100%;
    position: relative;
    z-index: 99;
    background: transparent url(public/img/article-angle.svg) right bottom no-repeat;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 100% 100%;
}


.no-thumbnail-wrapper.article-block {
    height: 0;
    overflow: hidden;
    padding-bottom: 100%;
    position: relative;
    z-index: 99;
    /*background: transparent url(public/img/article-wedge.svg) right top no-repeat;*/
    background: transparent;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 100% 100%;
}

.reversed-post .no-thumbnail-wrapper.article-block {
    /* background: transparent url(public/img/article-wedge-blue.svg) right top no-repeat;*/
    background: transparent;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 100% 100%;
}


.three-resources {
    background: #62173a;
    margin-bottom: 5px;
    /*margin-bottom: 25px;*/
    height: 100%;
}

.three-resources h1 {
    font-size: 1.5em;
    margin: 0.35em 0 0 0;
    line-height: 1.25;
    color: #fff;
}

.three-resources h2 {
    font-size: 1.5em;
    margin: 0 0 0.5em 0;
    line-height: 1.25;
    color: #fff;
}

.three-resources span {
    color: #d9c8cf;
}

.three-resources span.photo-credit-text {
    color: #fff;
}

.three-resources .resource-content {
    padding: 0 1.25em 1.5em 1.5em;
    min-height: 15.5em;
    /*11.25*/
    margin-top: -5px;
}

.three-resources .no-thumbnail-wrapper .no-thumbnail-inner {
    border-bottom: 1px solid #62173a;
    /*new - for home*/
}
.res-side{
		padding:25px 10px 35px;
	}
.articles_meta_date>img,
.events_details>img {
    width: 20px;
}

.articles_meta_date .post-date,
.events_details .post-date,
.events_details .post-time,
.article-content .post_writers {
    font-size: 15px;
    font-weight: 300;
}

.article-content .post_writers {
    margin-bottom: 8px;
}

.single-events .events_details .post-date,
.single-events .events_details .post-time {
    font-size: 18px;
}

.single-events .article-content .events_details {
    font-size: 22px;
}

img.lazyloaded.resource,
img.lazyloading.resource,
img.lazyloaded.article,
img.lazyloading.article {
    position: absolute;
    bottom: 0;
    /*added for wrong sized images*/
    -webkit-clip-path: polygon(0% 80%, 100% 100%, 100% 0%, 0% 0%);
    clip-path: polygon(0% 80%, 100% 100%, 100% 0%, 0% 0%);
}

.three-articles.card figure.article {
    /*added for wrong sized images*/
    -webkit-clip-path: polygon(0% 80%, 100% 100%, 100% 0%, 0% 0%);
    clip-path: polygon(0% 80%, 100% 100%, 100% 0%, 0% 0%);

}

.three-articles.card figure {
    height: 250px;
}

@media (max-width: 768px) {
    figure.lazyloaded.article {
        height: 200px;
    }
	.cat-latest-post .col-md-4.column {
    margin-bottom: 30px;
}
	.res-side{
		padding:25px 10px 35px;
	}
}

.thumbnail-wrapper.resource-wedge {
    height: 0;
    overflow: hidden;
    padding-bottom: 50%;
    position: relative;
    z-index: 99;
    background: transparent url(public/img/resource-angle.svg) right bottom no-repeat;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 100% 100%;
}

.no-thumbnail-wrapper.resource-wedge {
    height: 0;
    overflow: hidden;
    padding-bottom: 50%;
    position: relative;
    z-index: 99;
    background: #d9c8cf url(public/img/resource-angle.svg) right bottom no-repeat;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 100% 100%;
}


.three-pubs {
    background: #edb400;
    margin-bottom: 25px;
}

.three-pubs .pub-tag {
    color: #fff;
    border: rgba(255, 255, 255, 0.5) solid 1px;
    background: rgba(25, 8, 25, 0.25);
}

.three-pubs .resource-type {
    position: absolute;
    top: 0;
    margin: 10px;
}

.three-pubs span.download span {
    font-style: italic;
    font-size: 0.85em;
    color: rgba(0, 0, 0, 0.75);
    margin-right: 5px;
}

.three-pubs span.download {
    float: right;
}

.three-pubs header.pub-content {
    background: #edb400;
    padding: 0 15px 15px 15px;
    min-height: 8.25em;
}

.three-pubs .post-bottom {
    display: block;
    padding: 0 15px 15px 15px
}

.three-pubs h1 {
    font-size: 1.5em;
    margin: 0.5em 0 0.34em 0;
    line-height: 1.25;
    color: #fff;
}

.three-pubs h2 {
    font-size: 1.125em;
    margin: 0.34em 0 0 0;
    line-height: 1.25;
    color: #fff;
}


.latest-post-big {
    /*color: #333; */
    /*margin: 0 15px 0 15px;*/
    margin: 0;
    /*background: #fff;*/
    padding: 0;
    /*    -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
    background-size: cover;*/
}

.latest-post-big .thumb {
    /*  min-height: 300px;*/
}

.img-responsive {
    max-width: 100%;
    height: auto;
    display: block
}

.latest-post-big .pub-content {
    background: #edb400;
    background: rgba(237, 180, 0, 0.9);
    padding: 17px 17px 20px 17px;
    margin: 15px;
    position: absolute;
    bottom: 0;
}

.latest-post-big .pub-content h1,
.latest-post-big .pub-content h2 {
    margin: 0;
    color: #fff;
}

.latest-post-big .pub-content h1 {
    font-size: 2.25em;
    line-height: 1.25em;
}

.latest-post-big .pub-content h2 {
    color: #000;
    padding-top: 10px;
    font-size: 1.35em;
}

.latest-post-big .resource-content {
    padding: 15px 15px 15px 20px;
}

.latest-post-big .post-title {
    font-size: 22px;
    margin-bottom: 10px;
}

.latest-post-feed .post-title {
    font-size: 15px;
    line-height: 21px;
}

.featured-side {
    font-size: 11px;
}

.featured-side .post-date {
    font-size: 14px;
    font-size: 15px;
    line-height: 2em;
}

.featured-side .pub-tag {
    color: #fff;
    background: transparent;
    border: white 1px solid;
}

.featured-side p {
    margin: 0.25em 0 0 0;
}

.featured-side span.download {
    margin-top: 0.5em;
    display: inline-block;
    font-style: italic;
}

.featured-side a.download-link {
    font-size: 11px;
    font-style: normal;
}

.pub-side-content {

    padding: 40px 10px 0 10px;
    color: #fff;
    position: absolute;

    margin-bottom: 10px;

    z-index: 2;
    bottom: 0;
    width: 100%;


    background: -moz-linear-gradient(top, rgba(24, 7, 24, 0) 0%, rgba(24, 7, 24, 0.95) 100%);
    background: -webkit-linear-gradient(top, rgba(24, 7, 24, 0) 0%, rgba(24, 7, 24, 0.95) 100%);
    background: linear-gradient(to bottom, rgba(24, 7, 24, 0) 0%, rgba(24, 7, 24, 0.95) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00180718', endColorstr='#f2180718', GradientType=0);

}

.pub-side-content h1.post-title {
    margin: 0 0 0.25em 0;
    font-size: 1.3em;
    line-height: 1.3em;
    color: #fff;
}

.pub-side-content h2.post-subtitle {
    margin: 0 0 0.25em 0;
    font-size: 0.9em;
    line-height: 1.3em;
    color: #fff;
}

.pub-side-content span.download {
    font-size: 12px;
    font-style: italic;
    margin-right: 5px;

}


.pub-side-content a.download-link {
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: normal;
    margin: 0 5px 0 0;
}


.col-md-1.vc_column_container .post-excerpt,
.col-md-2.vc_column_container .post-excerpt,
.col-md-3.vc_column_container .post-excerpt,
.col-md-4.vc_column_container .post-excerpt,
.col-md-5.vc_column_container .post-excerpt {
    display: none;
}

/* Latest Post 1 */
.latest-post-1 .latest-post-big {
    min-height: 400px;
}

.latest-post-1 .latest-post-feed {
    min-height: 220px;
}

.latest-post-1 .latest-post-big .post-excerpt {
    font-size: 16px;
    line-height: 24px;
}

.latest-post-1 .col-md-3 article:last-child {
    padding-top: 10px;
}

/* Latest Post 2 */
.latest-post-2 .latest-post-feed {
    margin-top: 20px;
}

.latest-post-2 .latest-post-big .post-title {
    margin-top: 5px;
}

.latest-post-2 .latest-post-big .post-excerpt {
    font-size: 14px;
    line-height: 21px;
}

.latest-post-2 .latest-post-feed .thumb {
    float: left;
    width: 40%;
}

.latest-post-2 .latest-post-feed .content {
    margin-left: 43%;
}

/* Category Latest Post */
/*.cat-latest-post .latest-post-big .post-title { font-size: 24px; }*/
.cat-latest-post .post-excerpt {
    font-size: 16px;
    line-height: 24px;
}

.cat-latest-post .latest-post-feed.pub {
    margin-bottom: 25px;
    padding-bottom: 22px;
    background: #180718;
    position: relative;
}

.cat-latest-post.style2 .latest-post-big {
    margin-bottom: 30px;
}

/* Cards */
.three-articles.card {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.three-articles.card figure .thumbnail-wrapper {
    background-color: rgba(29, 33, 86, 0.5);
    -webkit-clip-path: polygon(0% 83%, 100% 102%, 100% 0%, 0% 0%);
    clip-path: polygon(0% 83%, 100% 102%, 100% 0%, 0% 0%);
    height: 100%;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.three-articles.card .card_title {
    position: absolute;
    z-index: 99;
    margin-top: 18%;
    display: flex;
    flex-flow: row wrap;
    align-content: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 32px;
    line-height: 36px;
    font-weight: 600;
}

.three-articles.card .card_title .title_icon,
.three-articles.card .card_title .title_text {
    display: flex;
    flex-flow: column;
    justify-content: end;
}

.three-articles.card .card_title .title_text {
    padding-left: 10px;
    flex: 0 0 auto;
    font-size: 24px;
}

.card .article-content a.btn {
    border-color: #ffffff;
    color: #fff;
    text-decoration: none;
    position: absolute;
    bottom: 15px;
}

.card .article-content {
    color: #ffffff;
    line-height: 1.4em;
    font-size: 1.125em;
}

.card .article-content h2,
.card .article-content h3,
.card .article-content h4,
.card .article-content h5,
.card .article-content h6 {
    font-weight: 600;
    color: #ffffff;
}

.card .article-content .btn .fa.fa-chevron-right {
    margin-left: 8px;
}

.card .article-content a.btn:hover,
.card .article-content a.btn:active {
    color: #009aa3;
    text-decoration: none;
}

.three-articles.card .article-content {
    padding: 0 1.25em 4.5em 1.5em;
}

a.article_wrap_link:hover .three-articles.card .thumbnail-wrapper {
    opacity: 0;
}

@media (max-width: 992px) {
    .three-articles.card .card_title .title_text {
        font-size: 18px;
    }
}

@media (max-width: 992px) {
    .three-articles.card .card_title .title_text {
        font-size: 16px;
    }
}