/*
This is to make the image from the front-page shorter
so the user can see that is possible to scroll down
*/
@media (min-width: 1025px) {
    .home .header-image {
        height: 92vh;
    }
}

.site-header {
    z-index: 100;
    top: 0 !important;
}

.header-jubileum {
    z-index: 100;
}


/* This is to change the color if the arrow */
.home .site-content .content-area .site-main .arrow a[href="#section-1"] {
    color: #085b7b;
}

.home .site-content .content-area .site-main .arrow a[href="#section-1"] i {
    transition: all 200ms ease-in-out;
}

.home .site-content .content-area .site-main .arrow a[href="#section-1"] i:hover {
    transform: scale(1.125);
}

@media (min-width: 768px) {
    /*.half-section-event.image {*/
        /*background-size: cover;*/
        /*background-repeat: no-repeat;*/
        /*background-position: center;*/
        /*min-height: 350px;*/
    /*}*/
    /*.half-section-event.image img{*/
        /*opacity: 0;*/
    /*}*/
}
@media (max-width: 768px) {
    /*.half-section-event.image {*/
        /*background-image:none!important;*/
        /*height: auto!important;*/
    /*}*/
}
@media (max-width: 769px) {
    /*.half-section-event {*/
        /*float: left;*/
    /*}*/
}
.home .site-content .content-area .site-main .arrow.first {
    top: -70px;
    position: relative;
    text-align: center;
    font-size: 4rem;
}
@media (min-width: 768px) {
    .home .site-content .content-area .site-main .arrow.first {
        top: -70px;
    }
}
@media (min-width: 992px) {
    .desktop-right {
        float: right;
    }
}
/* This is to animate the arrow in the front-page */
.home .site-content .content-area .site-main .arrow.first {
    -webkit-animation: bounce 2s infinite;
    animation: bounce 2s infinite;
}

@-webkit-keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

/* End of animation styles */

/*Styles for the search in the header*/
.header-search form {
    position: absolute;
    right: 0;
    width: 150px;
    overflow: hidden;
    -webkit-transition: width 0.5s;
    transition: width 0.5s;
}

.header-search.collapsed form {
    width: 0px;
    -webkit-transition: width 0.5s;
    transition: width 0.5s;
}

.header-search form .fa {
    display: none;
}

.header-search form input.search-submit {
    display: none;
}

.header-search form .search-icon-custom {
    display: block;
    width: 22px;
    height: 22px;
    position: absolute;
    right: 3px;
    margin-top: 1px;
    color: #FFF;
    font-size: 21px;
    z-index: 20;
    cursor: pointer;
}

.header-search form input.search-field {
    height: 30px;
    margin-top: -2px;
    background-color: transparent;
    color: #FFF;
    font-size: 1.5rem;
    border: 1px solid #fff;
    border-radius: 0;
    -webkit-appearance: none;
}

.header-search form input.search-field:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
    border-color: #50bec9;
}

.header-search form input.search-field::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #FFF;
    font-size: 1.5rem;
    font-weight: 300;
}

.header-search form input.search-field::-moz-placeholder { /* Firefox 19+ */
    color: #FFF;
    font-size: 1.5rem;
    font-weight: 300;
}

.header-search form input.search-field:-ms-input-placeholder { /* IE 10+ */
    color: #FFF;
    font-size: 1.5rem;
    font-weight: 300;
}

.header-search form input.search-field:-moz-placeholder { /* Firefox 18- */
    color: #FFF;
    font-size: 1.5rem;
    font-weight: 300;
}

.header-search form label {
    float: right;
    width: 150px;
    height: 30px;
    margin-top: 3px;
}

#open-header-search.expanded {
    width: 160px;
    -webkit-transition: width 0.5s;
    transition: width 0.5s;
}

#open-header-search {
    -webkit-transition: width 0.5s;
    transition: width 0.5s;
}

/* EVENTS frontpage */
.news-container .single-event{
     width: 33%;
     float: left;
     padding: 10px;
 }
.news-container .single-event .inner-event{
     background-color: #EBEBEB;
     padding: 20px;
 }
.news-container .single-event .inner-event .image-box{
     margin-bottom: 20px;
 }
.news-container .single-event .inner-event h3{
     text-transform: uppercase;
 }
.news-button.events{
     text-align: center;
     margin-top: 30px;
 }

/* Industries main box */
.services, .industries {
    max-width: 100%;
}

/* Box2 shortcode */
span.box.box2 {
    padding: 0px 3px 0px;
    margin-left: 2px;
    margin-right: 2px;
    font-weight: 400;
    text-decoration: none;
}

/* blue-links shortcodes */
span.blue-link-shortcode a {
    color: #50bec9;
}

span.blue-link-shortcode a:hover {
    /*color: #085b7b;*/
    text-decoration: underline;
}

/* Employees grid and hovers */
.expert-image {
    position: relative;
}

.expert-image:hover .expert-image-hover {
    display: block;
}

.expert-image-hover {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(80, 190, 201, 0.7);
    color: #FFF;
    text-align: center;
    padding: 10px;
    display: none;
}

.expert-image-hover .text {
    width: 100% !important;
    position: absolute;
    bottom: 0;
    margin-left: -10px;
    padding-left: 15px;
    padding-right: 15px;
}

.expert-image-hover .text p {
    width: 100% !important;
}

@media (min-width: 1025px) {
    .page-template-template-experts #content p:first-of-type {
        width: 100% !important;
    }
}

.industry-experts .expert, .experts .expert {
    padding-bottom: 0 !important;
}
/* Shortcode bigText */
span.big_text_sc {
    font-size: 60px;
    line-height: 54px;
    font-family: serif;
    font-weight: bold;
    padding-top: 10px;
    padding-bottom: 10px;
}
/* Article Template */

.article-headline {
    font-family: "Publico Headline Web", "Georgia", serif;
    font-size: 66px;
    padding-top: 40px;
    padding-bottom: 20px;
    overflow-wrap: break-word;
}

.expert-sidebar-headline {
    font-size: 20px;
    font-weight: bold;
    font-family: "Publico Headline Web", "Georgia", serif;
    color: #fefefe;
    background-color: black;
    width: 100%;
    padding-left: 8px;
    padding-top: 4px;
    padding-bottom: 2px;
    margin-bottom: 0px;
}

.job-title-article {
    font-family: "Publico Headline Web", "Georgia", serif;
    font-size: 24px;
    font-weight: 800;
}

.subject-box {
    margin-top: 35px
}

@media screen and (max-width: 450px){
    .subject-box {
        margin-left: 20px
    }
}
.subject-box .bottom-frame:before {
    content: " ";
    height: 10px;
    width: 50px;
    position: absolute;
    background-color: inherit;
    bottom: -10px;
    left: 0;}
.subject-box .bottom-frame:after {
    content: " ";
    height: calc(50px + 10px);
    width: 10px;
    position: absolute;
    background-color: inherit;
    bottom: -10px;
    left: 0px;
}
.wrap_touch{
    position: absolute;
    bottom: 0;
    right: 0;
}
.get-in-touch{
    float: right;
    /*width: 77%;*/
    background-color: #00b9eb;
    padding: 6px 9px 6px 5px;
    text-align: right;
}


@media screen and (max-width: 450px){
    .wrap_touch{
        position: relative;
    }

    .get-in-touch{
        float: left;
        text-align: left;
    }
}
.get-in-touch-h2{
    font-family: "Publico Headline Web", "Georgia", serif;
    font-size: 20px;
    font-weight: 800;
    color: #FFF;
    margin-bottom: 2px;
}

.get_in_touch_text{
    font-family: "Publico Headline Web", "Georgia", serif;
    font-size: 14px;
    font-weight: 600;
    color: #fefefe;
    line-height: 18px;
    margin-bottom: 0px;
}


.subject {
    font-family: "Publico Headline Web", "Georgia", serif;
    font-size: 20px;
    font-weight: 600;
    float: left;
    margin-left: 6px;
}

.expert-image-article {
    margin-bottom: 10px;
    width: 100%;
}

.short-description-article {
    font-family: "Metric Web", "Arial", sans-serif;
    font-size: 20px;
    font-weight: 800;
    line-height: normal;
}

.expert-article {
    -webkit-column-count: 2; /* Chrome, Safari, Opera */ /* Firefox */
    column-count: 2;
    text-align: justify;
    line-height: 1.2em;
    -webkit-column-gap: 50px; /* Chrome, Safari, Opera */
    -moz-column-gap: 50px; /* Firefox */
    position: relative;
    -webkit-column-gap: 70px;
            column-gap: 70px;
    padding-left: 20px;
}

.expert-sidebar {
    background-color: #fefefe;
    padding-left: 0px;
    padding-right: 40px;
}
.single_expert{
    margin-bottom: 30px;
}
@media screen and (max-width: 450px){
    .expert-article {
        -webkit-column-count: 1;
                column-count: 1;
        padding-left: 0px;
    }
    .expert-sidebar {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* Jubilaeum Template */
.custom_text_anniversary{
    padding-top: 30px;
    padding-bottom: 30px;
}
.custom_text_anniversary h1 {
    font-size: 3em;
    font-family: Publico Headline Web, Georgia;
}
@media screen and (max-width: 450px){
    .custom_text_anniversary h1 {
        font-size: 30px;
    }
}
.jub_header_section {
    width: auto;
    height: 100vh;
    background-size: cover;

    position: relative;

}

.video {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    /*-webkit-transform: translate(-50%, -50%);*/
            /*transform: translate(-50%, -50%);*/
}
@media screen and (max-width: 768px) {

    .anniversary_template_page{
        background-image: url("assets/img/video_bg.png");
        background-size: contain;
    }

    .video {
        display: none;
    }
}

.header-text {
    color: #fefefe;
    margin-top: -140px;
}

@media screen and (max-width: 450px) {
    .header-text {
        color: #fefefe;
        margin-top: -100px;
    }
}

.h1-header {
    font-size: 4em;
    font-family: Publico Headline Web, Georgia;
}

@media screen and (max-width: 450px) {
    .h1-header {
        font-size: 30px;
        margin-top: 110px;
        padding-bottom: 20px;
    }
}

.h3-header {
    font-size: 3em;
    margin-top: -20px;
    font-family: Publico Headline Web, Georgia;
}

@media screen and (max-width: 450px) {
    .h3-header {
        font-size: 20px;
    }
}

.h4-header {
    font-size: 2em;
    font-family: Publico Headline Web, Georgia;
}

@media screen and (max-width: 450px) {
    .h4-header {
        font-size: 20px;
    }
}

.img-jub-badge {
    float: left;
    margin-left: 50px;
    margin-top: 150px;
    height: 200px;
    width: 200px;
    /*-ms-transform: rotate(-20deg); /* IE 9 */
    /*-webkit-transform: rotate(-20deg); /* Safari */
    /*transform: rotate(-20deg);*/
    background-image: url("assets/img/PV-sticker.svg");
    background-size: cover;
    border-radius: 100px;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    position: absolute;
    z-index: 10;
}

@media screen and (max-width: 450px) {
    .img-jub-badge {
        float: left;
        margin-left: 20px;
        margin-top: 40px;
        height: 50px;
        width: 50px;
        /*-ms-transform: rotate(-20deg); /* IE 9 */
        /*-webkit-transform: rotate(-20deg); /* Safari */
        /*transform: rotate(-20deg);*/
        background-image: url("assets/img/PV-sticker.svg");
        background-size: cover;
        border-radius: 100px;
        overflow: hidden;
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        position: absolute;
    }
}

.img-jub-badge-head { /* IE 9 */
    -webkit-transform: rotate(-20deg); /* Safari */
    transform: rotate(-20deg);
}

.img-jub-badge-test {
    float: left;
    height: 15%;
    width: 15%;
    margin-left: 40px;
    margin-top: 180px; /* IE 9 */
    -webkit-transform: rotate(-20deg); /* Safari */
    transform: rotate(-20deg);
}

@media screen and (max-width: 450px) {
    .img-jub-badge-test {
        float: left;
        height: 200px;
        width: 200px;
        margin-left: 80px;
        margin-top: 80px; /* IE 9 */
        -webkit-transform: rotate(-20deg); /* Safari */
        transform: rotate(-20deg);
    }
}

.img-jub-badge .badge-text {
    visibility: hidden;
}

.img-jub-badge .badge-text-jp {
    visibility: hidden;
}

.img-jub-badge:hover {
    background-image: url("/wp-content/uploads/2016/12/mouseover-sticker-backside.svg");
    background-size: cover;
    border: none;
    height: 200px;
    width: 200px;
}

.img-jub-badge:hover .badge-text {
    visibility: visible;
}

.img-jub-badge:hover .badge-text-jp {
    visibility: visible;
}

.badge-text {
    color: #fefefe;
    font-size: 25px;
    font-weight: 600;
    padding: 40px;
    line-height: 25px;
    letter-spacing: 1.5px;
    text-shadow: 1px 1px black;

}

.badge-text-jp {
    color: #fefefe;
    font-size: 20px;
    font-weight: 400;
    padding: 40px;
    line-height: 25px;
    letter-spacing: 1.5px;
    text-shadow: 1px 1px black;

}

.img-jub-badge:before {
    content: "";
    position: absolute;
    top: 150%;
    left: 150%;
    height: 220%;
    width: 100px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(50%, rgba(255, 255, 255, 1)), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#00ffffff', GradientType=1);
    -webkit-animation: 4.5s myani linear infinite;
    animation: 4.5s myani linear infinite;
}

@-webkit-keyframes myani {
    0% {
        top: 150%;
        left: 150%;
    }
    100% {
        top: -150%;
        left: -150%;
    }
}

@keyframes myani {
    0% {
        top: 150%;
        left: 150%;
    }
    100% {
        top: -150%;
        left: -150%;
    }
}

.badge-jub-header {
    float: left;
    padding: 40px;
    margin-top: 400px;
}

.top-line {
    height: 100px;
    width: 100%;
    background-color: #fefefe;
}

/*countdown_section*/
.jub_countdown_section {
    background-color: black;

}

.jub_countdown_wrapper:before,
.jub_countdown_wrapper:after {
    display: block;
    content: " ";
    height: 0px;
    visibility: hidden;
}

.jub_countdown_wrapper:after {
    clear: both;
}

.jub_countdown_wrapper {
    margin: 0 auto;
    text-align: center;
    padding: 20px;
}

.headline {
    font-family: "Publico Headline Web", "Georgia", serif;
    font-size: 20px;
    color: black;
}

.countdown {
    text-align: center;

}

.jub_count_headline {
    font-family: "Metric Web", "Arial", sans-serif;
    color: #fefefe;
    text-transform: uppercase;
    padding-top: 5px;
}

.countdown_days {
    float: left;
    padding-left: 30%;
}

.countdown_hours {
    float: left;
    padding-left: 6%;
}

.countdown_minutes {
    float: left;
    padding-left: 6%;
}

.countdown_seconds {
    float: left;
    padding-left: 6%;
}

.days {
    weight: bold;
    color: #fefefe;
    font-size: 60px;
}

.hours {
    font-size: 60px;
    color: #fefefe;
}

.minutes {
    font-size: 60px;
    color: #fefefe;
}

.seconds {
    font-size: 60px;
    color: #fefefe;
}

.countdown_text {
    font-family: "Metric Web", "Arial", sans-serif;
    color: #fefefe;
    font-size: 22px;
    font-weight: 500;
}

/*event Section*/

.jub_event_section {
    background-color: #fefefe;
    width: 75%;
    margin: auto!important;
    position: relative;
}
.jub_event_section article{
    display: flex;
    width: 100%;
    margin-bottom: 50px;
}
.jub_event_section article.desktop-right{
    flex-direction: row-reverse;
}
.jub_event_section .image-block{
    width: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.jub_event_section .text-block{
    width: 50%;
    text-align: center;
    line-height: 25px;
    letter-spacing: 0.5px;
    padding: 35px;
    background: #eaeaea;
}
@media screen and (max-width: 450px) {
    .jub_event_section {
        width: 100%;
        overflow: hidden;
    }
    .jub_event_section article.desktop-right,
    .jub_event_section article{
        flex-direction: column;
    }

    .jub_event_section .text-block{
        width: 100%;
    }
    .jub_event_section .image-block{
        min-height: 250px;
        width: 100%;
    }
}
.img-jub {
    max-width: 100%;
    height: auto;
}

.jub_event_img {
    max-width: 100%;

}

.jub_event_image_text {
    text-align: center;
    line-height: 25px;
    letter-spacing: 0.5px;
    padding: 50px;
    background: #fefefe;
    max-width: 650px;
    margin: auto;
}

.jub_event_headline {
    font-family: "Publico Headline Web, Georgia", serif;
    color: black;
    text-transform: uppercase;
}

.jub_event_text {
    font-family: "Metric Web", "Arial", sans-serif;
    color: black;
    font-size: 22px;
     max-width: 650px;
    margin: auto;
}

.nopadding {
    padding: 0 !important;
    margin: 0 !important;
}

/*video_section*/
.jub_video_section {
    background-color: #fefefe;
}

.vid-back {
    background-color: #7c2529;
}

.jub_video_2 iframe {
    width: 100%;
    height: 468px;

}

.jub_video iframe {
    width: 100%;
    height: 468px;
}

.video {
    width: 100%;
    height: auto;
}

.jub_end_section {
    background-color: black;
}

/*social and newsletter section*/

.hashtag_box {
    text-align: center;

}

.jub_social {

    Padding: 40px;
    color: #fefefe;
    font-family: "Metric Web", "Arial", sans-serif;

    text-align: center;
}

.jub_newsletter {
    margin-top: 50px;
    padding: 10px 20px;
    color: #fefefe;
    font-family: "Metric Web", "Arial", sans-serif;
    text-align: center;

}

.jub_newsletter_headline {
    color: #fefefe;
    font-family: "Metric Web", "Arial", sans-serif;
    font-size: 20px;
    line-height: 30px;
    padding-bottom: 40px;
}

.newsletter_jub {
    font-family: "Metric Web", "Arial", sans-serif;
}

.input_jub {
    border: solid;
    border-color: #fefefe;
    background: transparent;
    color: dimgrey;
}

.mc-field-group {

    background: transparent;
    color: dimgrey;
}

.social-icons {
    height: 125px;
    width: 125px;
    padding: 10px;
}

.googleplus {

}

.linkedin {

}

.hashtag_box {
    text-align: center;
    margin-bottom: 100px;
}

.hashtag {
    color: #fefefe;
    font-family: "Metric Web", "Arial", sans-serif;
}

.main-header {
    background: #fff;
    width: 100%;
    height: 110px;
}

.arrow-down {
    width: 170px;
    position: absolute;
    -webkit-animation: bounce 2s infinite;
            animation: bounce 2s infinite;
    bottom: 10px;
    left: 0;
    right: 0;
    margin: auto auto;

}

.arrow-down p {
    color: white;
    font-weight: 500;

}

.fa-angle-down {
    font-size: 40px;
}

.arrow-down i {
    size: 20px;
}

.arrow-down-white {
    color: white;
    font-weight: bold;

}

/*@keyfrase bounce*/
@-webkit-keyframes mymove {
    0%, 20%, 53%, 80%, 100% {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    40%, 43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }

    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }

    0%, 20%, 53%, 80%, 100% {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    40%, 43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }

    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }
}
@keyframes mymove {
    0%, 20%, 53%, 80%, 100% {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    40%, 43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }

    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }

    0%, 20%, 53%, 80%, 100% {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    40%, 43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }

    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }
}
@-webkit-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

/*************************************************************************************************/
/********************************  NEW ANNIVERSARY  **********************************************/
/*************************************************************************************************/
.footer_anniversary{
    background-color: #000;
}
.news-slider{
    height: 75vh;
}
.news-slider .carousel-inner,
.news-slider .carousel-inner .item,
.news-slider .carousel-inner .item .image_box,
.news-slider .carousel-inner .item .text_box{
    height: 100%;
}
.news-slider .carousel-inner .item .image_box{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.news-slider .carousel-inner .item .text_box{
    padding: 15vh 90px 50px 30px;
}
.news-slider .carousel-inner .item .text_box .inner_text{
    padding: 20px;
}
.news-slider .carousel-inner .item .text_box .category{
    color: #085b7b;
    margin-bottom: 15px;
}
.news-slider .carousel-inner .item .text_box .excerpt{
    line-height: 1.2em;
    color: #868484;
    font-weight: 200;
    margin-bottom: 50px;
}
.news-slider .carousel-inner .item .text_box .readmore,
.top_section_slider .carousel-inner .item .text_box .readmore {
    /*display: block;*/
    background-color: #085b7b;
    padding: 13px 15px;
    color: #FFF;
}
.news-slider .carousel-inner .item .text_box .readmore {
  float: left;
}

.news-slider .carousel-control.right,
.news-slider .carousel-control.left{
    background: none;
    opacity: 1;
}
.news-slider .carousel-control span.glyphicon{
    color: #696767;
}
.news-slider .carousel-indicators .active {
    background-color: #696767;
}
.news-slider .carousel-indicators li{
    border-color: #696767;
}
@media screen and (max-width: 1180px) {
    .news-slider .carousel-inner .item .text_box {
        padding: 10vh 90px 50px 30px;
    }
}
@media screen and (max-width: 768px) {
    .news-slider .carousel-inner .item .image_box{
        position: absolute;
        width: 100%;
    }
    .news-slider .carousel-inner .item .text_box{
        padding: 20vh 40px 40px;
    }
    .news-slider .carousel-inner .item .text_box .inner_text{
       background-color: rgba(255, 255, 255, 0.8);
    }
}

@media screen and (max-width: 450px) {
    .news-slider .carousel-inner .item .text_box {
        padding: 5vh 40px 30px;
    }
}

/*
 * TITLE BREAKER
 */

.title_breaker{
    padding-top: 60px;
    padding-bottom: 50px;
}
.title_breaker h1{
    font-size: 2.2rem;
}
.title_breaker.black{
    background-color: #000;
    color: #FFF;
}
/*
 * 2_images_section
 */

#feature .quote blockquote p, #feature.two_images_section .image blockquote p{
    padding: 1em;
    background: rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 768px) {
    #feature .quote blockquote, #feature.two_images_section .image blockquote {
        position: absolute;
        bottom: 0px;
        max-width: 70vw;
    }
}

.top_section_slider .carousel-inner .item .text_box{
    padding: 30vh 30px 50px 30px;
    position: relative;
    z-index: 2;
}

.front-page-top-slider__background-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    display: block;
    z-index: 1;
    overflow: hidden;
}

.front-page-top-slider__background {
    width: 100%;
    height: 100%;
    display: flex;
}

.front-page-top-slider__background::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.4);
}

.front-page-top-slider__background img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.top_section_slider .single_slide{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}
.top_section_slider .carousel-inner .item .text_box{
    margin:auto;
    float: none;
    text-align: center;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
/*leave this as uncommented, maybe they want it back */
/*.top_section_slider .carousel-inner .item .text_box .title,
.top_section_slider .carousel-inner .item .text_box .excerpt {
    text-shadow: 0 0 2px #000000;
}*/

.top_section_slider .carousel-inner .item .title h1{
    color: #FFF;
    font-size: 3em;
}
@media screen and (max-width: 500px) {
    .top_section_slider .carousel-inner .item .title h1 {
        font-size: 18px;
    }

    .top_section_slider .carousel-inner .item .text_box .excerpt {
        margin-bottom: 0!important;
    }

    .top_section_slider .carousel-inner .item .excerpt p {
        font-size: 16px
    }

    .top_section_slider .carousel-inner .item .text_box .readmore {
        font-size: 14px;
        padding: 10px 12px;
    }

    .top_section_slider .carousel-indicators {
        position: absolute;
        bottom: -1%;
        left: 50%;
        z-index: 15;
        width: inherit;
        list-style: none;
        transform: translateX(-50%);
        padding: 0;
        margin: auto;
    }

    .top_section_slider .carousel-indicators li {
        width: 7px;
        height: 7px;
    }

    .top_section_slider .carousel-indicators .active {
        width: 8px;
        height: 8px;
    }
}

@media screen and (min-width: 501px) and (max-width: 1025px) {
    .top_section_slider .carousel-inner .item .title h1 {
        font-size: 3rem;
    }
    .top_section_slider .carousel-inner .item .excerpt p {
        width: 80%;
        margin: auto;
    }
    .single_slide .text_box {
        width: 100%;
    }
    .single_slide .text_box .inner_text {
        width: 90%;
    }
}

.top_section_slider .carousel-inner .item .text_box .excerpt{
    color: #FFF;
    font-size: 23px;
    line-height: 27px;
    font-weight: 300;
    margin-bottom: 40px;
}

@media screen and (max-width: 500px) {
    .top_section_slider .carousel-inner .item .text_box .excerpt{
        font-size: 18px;
        line-height: 2rem;
        padding: 0 20px;
    }
}

.top_section_slider .carousel-inner .item .text_box .blue_breaker{
    display: block;
    width: 250px;
    height: 3px;
    margin: auto;
    background-color: #50bec9;
}
.top_section_slider .carousel-inner .item .text_box .readmore{
    /*width: 100px; /* default 160 */
    margin: auto;
    margin-top: 40px;

    /* if he change his mind, else clean up
    border-radius: 60px;
    text-transform: uppercase;
    font-size: 14px;*/
}

.gform_wrapper ul li.gfield {

    margin-top: 28px !important;
}


.gfield_label {

    display: block;
    margin: 10px 0 !important;
}


#gf_4.gform_anchor {

    display: none;
}

/*for IE10*/
#gf_4.medium .gfield_select {


}


.filter-container .select-style .experts-filter::-ms-expand {

    display: none;
}



.filter-container .select-style select {
    margin: 0;
    padding: 17px 10px 10px;
    text-transform: uppercase;
    font-weight: bold;
    width: 130%;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: transparent;
    background-image: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.box #gform_wrapper_4 ul li.gfield {

    margin-top: 40px !important;
}

.box #gform_wrapper_4 ul li.gfield {

    margin-top: 40px !important;
}

@media screen and (max-width: 450px) {

    .img-jub-badge {
        margin-left: 20px;
        margin-top: 90px;
        height: 50px;
        width: 50px;
    }

    .img-jub-badge:hover {
        height: 50px;
        width: 50px;
    }
}


@media screen and (max-width: 500px) {

    .gform_footer.top_label {

        max-width: 100% !important;
    }

}

.gform_button.button {

    text-align: center;
}


@media screen and (max-width: 500px) {

    .jub_event_section .jub_event_img img {

        max-width: 100%;
        height: auto;
    }

}

.headline-inside-anniversary-iframe {
    position: absolute;
    color: #FFFF;
    z-index:  1;
    /*top:  50%;*/
    /*left:  50%;*/
    /*transform: translate(-50%);*/
    font-size: 4rem;
    /*margin-top: 20%;*/
    width: 100%;
}


.anniversary-iframe-outer-container {
    overflow: hidden;
    position:  relative;
    display:  flex;
    flex-direction:  row;
    transform: translateY(-32px);
}

.anniversary-iframe-inner-container {
position:  static;
top:  0;
left:  0;
width:  100%;
overflow:  hidden;
}

.anniversary-iframe-wrapper {
    width: 100vw;
    height: calc(100vw / 16*9);
}

@media screen and (max-width: 782px) {
    .anniversary-iframe-outer-container {
        transform: translateY(-46px);
    }
}

@media (max-width: 644px) {
    .anniversary-iframe-outer-container, .anniversary-iframe-inner-container {
        height: calc(100vw / 16*9)!important;
    }
    /*.headline-inside-anniversary-iframe {*/
        /*transform: translate(-50%, -50%);*/
    /*}*/


    .anniversary-video-arrow {
        margin-top: 3%!important;
    }

    .anniversary-video-p {
        margin-bottom: 0;
        font-size: 11px
    }
    .anniversary-video-i {
        font-size: 20px;
    }
}

.two_images_section {
	width: 75%;
	position: relative;
	margin: auto;
}

#feature.two-images .quote {
    display:  flex;
    flex-direction:  column;
    justify-content:  center;
    align-items:  center;
}

.top_section_slider, .top_section_slider .carousel-inner,
.top_section_slider .carousel-inner .item,
.top_section_slider .carousel-inner .item .image_box,
.top_section_slider .carousel-inner .item .text_box {
    /*height: calc(200vw / 16*9);*/
    height: 100vh;
    max-height: 100vh;

}
@media (min-width: 467px)
{
    .top_section_slider .carousel-inner .item .text_box .excerpt{
        padding: 0px 50px;
    }
}

@media (min-width: 580px) {
    .top_section_slider, .top_section_slider .carousel-inner,
    .top_section_slider .carousel-inner .item,
    .top_section_slider .carousel-inner .item .image_box,
    .top_section_slider .carousel-inner .item .text_box{
        height: calc(160vw / 16*9);
    }
}

@media (min-width: 768px) {
    .top_section_slider, .top_section_slider .carousel-inner,
    .top_section_slider .carousel-inner .item,
    .top_section_slider .carousel-inner .item .image_box,
    .top_section_slider .carousel-inner .item .text_box{
        height: calc(120vw / 16*9);
    }
}

@media (min-width: 1350px ) {
    .carousel-indicators {
        bottom: 15px;
    }
}

#feature .quote blockquote {
    width:  auto;
    position:  relative;
    padding: 0;
}

@media (max-width: 1280px) {
    #feature .quote blockquote p {
        font-size: 22px
    }
}

@media (max-width: 780px) {
    #feature .quote blockquote p {
        font-size: 18px
    }
}

.anniversary-video-arrow {
    display:  flex !important;
    flex-direction:  row !important;
    justify-content:  center !important;


    -webkit-flex-direction: row !important;
    -webkit-justify-content: center !important;
    animation: bounce 2s infinite;
    margin-top: 1.5%;
}

.anniversary-video-i {
    cursor: pointer;
    font-size: 50px !important;
}

.title_breaker .container.text-center {
	font-size: 2.2rem;
}

@media (min-width: 640px) {
    .anniversary-video-arrow {
        /*margin-top: -5%;*/
    }
}

@media (min-width: 650px) and (max-width: 1024px) {
    body:not(.home) .site-content blockquote {
        background-position: 50% -3% !important;
        padding: 50px 50px;
        background-size: 7.5%!important;
    }
}

.title_breaker {
    font-family:  "Publico Headline Web", "Georgia", serif;
    font-weight: 800;
}
.html5-video-player.playing-mode{
    cursor: auto;
}

@media screen and (orientation:landscape)
and (min-device-width: 415px)
and (max-device-width: 736px) {
    #video-hero{
        transform: translateY(-150px);
    }
    .anniversary-video-arrow{
        margin-top: -18%;
    }
}

.big-title-section {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.3);
}


.big-title-section.quote-section {
    height: auto;
    min-height: 408px;
}
@media (min-width: 768px) {
    .big-title-section.quote-section {
        min-height: 381.75px;
    }
}
@media (min-width: 1200px) {
    .big-title-section.quote-section {
        min-height: 632px;
    }
}
.big-title-section {
    height: 450px;
    position: relative;
    max-width: 100%;
    overflow: hidden;
}
@media (min-width: 768px) {
    .big-title-section {
        height: 561px;
    }
}
@media (min-width: 1200px) {
    .big-title-section {
        height: 75vh;
    }
}
.big-title-section .full-screen-button {
    display: none;
    position: absolute;
    float: right;
    right: 20px;
    bottom: 20px;
    cursor: pointer;
    transition: 0.5s;
    width: 30px;
    height: 30px;
    z-index: 1;
}
@media (min-width: 768px) {
    .big-title-section .full-screen-button {
        right: 65px;
    }
}
@media (min-width: 992px) {
    .big-title-section .full-screen-button {
        right: 20px;
        bottom: 40px;
    }
}
@media (max-width: 576px) {
    .big-title-section .full-screen-button {
        display: none;
    }
}
.big-title-section iframe,
.big-title-section object,
.big-title-section embed {
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    margin-top: 90px;
    width: 100%;
    height: 100%;
}
@media (max-width: 576px) {
    .big-title-section iframe,
    .big-title-section object,
    .big-title-section embed {
        width: 210%;
    }
}
@media (min-width: 768px) {
    .big-title-section iframe,
    .big-title-section object,
    .big-title-section embed {
        width: 155%;
        display: block;
    }
}
@media (min-width: 992px) {
    .big-title-section iframe,
    .big-title-section object,
    .big-title-section embed {
        width: 100%;
        margin-left: 0;
    }
}
.big-title-section__content {
    margin-left: auto;
    margin-right: auto;
    max-width: 280px;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    position: absolute;
    z-index: 1;
    color: #fff;
    padding: 0;
}
@media (min-width: 768px) {
    .big-title-section__content {
        max-width: 558px;
    }
}
@media (min-width: 992px) {
    .big-title-section__content {
        max-width: 680px;
    }
}
.big-title-section__content--title {
    margin-bottom: 40px;
}
.big-title-section__content--title h1 {
}
.big-title-section__content--title h2 {
    font-size: 24px;
    margin-bottom: 0;
    letter-spacing: 0.2px;
    line-height: 27px;
}
@media (min-width: 768px) {
    .big-title-section__content--title h2 {
        font-size: 32px;
        letter-spacing: -0.5px;
        line-height: 42px;
    }
}
@media (min-width: 1200px) {
    .big-title-section__content--title h2 {
        font-size: 54px;
        letter-spacing: -0.86px;
        line-height: 65px;
    }
}
.big-title-section__content--subtitle h5 {
    font-size: 16px;
    margin-bottom: 0;
    letter-spacing: 0.4px;
}
@media (min-width: 768px) {
    .big-title-section__content--subtitle h5 {
        max-width: 345px;
        margin: auto;
    }
}
.big-title-section__content__button-list {
    position: relative;
    bottom: -10%;
}
.big-title-section .video-local {
    height: 643px;
}
@media (min-width: 1200px) {
    .big-title-section .video-local {
        height: 845px;
    }
}
@media (min-width: 1440px) {
    .big-title-section .video-local {
        height: 955px;
    }
}
.big-title-section.image-background.video-background {
    box-shadow: none;
}
@media (max-width: 576px) {
    .big-title-section.image-background.video-background {
        background-image: url("http://greenland-travel.html24-dev.dk/wp-content/uploads/2018/08/frontpage_hero.png");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }
}
.big-title-section.image-background.video-background .big-title-section__content {
    padding-top: 5%;
}
.big-title-section.image-background.video-background iframe {
    background-image: url("http://greenland-travel.html24-dev.dk/wp-content/uploads/2018/08/frontpage_hero.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.video-hero {
    overflow: hidden;
    padding-top: 56.25%;
    position: relative;
}
@media (max-width: 767px){
    .video-hero--full-height,
    .video-hero--has-mobile-image {
        height: 100vh;
        max-height: 100vh;
        padding-top: initial;
    }
}

.video-hero--full-height .frontpage_top_slider--video-wrap video {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
}

.video-hero__mobile-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.video-hero__mobile-image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.video-hero--full-height .arrow-wrapper,
.video-hero--has-mobile-image .arrow-wrapper {
    bottom: 0;
}

.video-hero--has-mobile-image .frontpage_top_slider--video-wrap {
    display: none;
}

@media (min-width: 768px){
    .video-hero__mobile-image {
        display: none;
    }

    .video-hero--has-mobile-image .frontpage_top_slider--video-wrap {
        display: block;
    }

    .video-hero--full-height {
        height: 100vh;
        max-height: 100vh;
        padding-top: initial;
    }
}

.frontpage_top_slider--video-wrap {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
}

.video-hero:not(.video-hero--full-height) .frontpage_top_slider--video-wrap iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-hero--full-height .frontpage_top_slider--video-wrap iframe {
    /*pointer-events: none;*/
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 150%; /* Adjust this between 150% and 200% */
    min-height: 150%; /* Adjust this between 150% and 200% */
    width: auto;
    height: auto;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
}

.arrow-wrapper {
    position: absolute;
    z-index: 20;
    height: 15%;
    margin-top: -6.5%;
    margin-left: auto;
    margin-right: auto;
    pointer-events: auto;
}
.arrow-wrapper .anniversary-video-arrow {
    margin-left: auto;
    margin-right: auto;
}

.page-template-template-frontpage .headline-inside-anniversary-iframe {
    z-index: 25;
    text-align: center;
    width: 60%;
    font-size: 18px;
    /*margin: 20% 20% 0% 20%;*/
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.vimeo-header5 {
    max-width: 80%;
    margin: auto;
}

@media screen and (max-width: 576px) {
    .vimeo-wrapper {
        position: relative;
        transform: translateY(0px);
        height: 40vh;
    }
    .headline-inside-anniversary-iframe {
        /*top: 55% !important;*/
        width: 100% !important;
        /*margin: 20% 10% 0% 0% !important;*/
    }
    .vimeo-header1 {
        font-size: 3rem !important;
        margin-bottom: 40px;
    }
    .arrow-wrapper {
        display: none !important;
    }
    #section-1 h2:first-child {
        margin-top: 0 !important;
    }


}

.page-template-template-frontpage .vimeo-header1 {
    font-size: 54px;
    font-family: "Publico Headline Web";
    color: #FFFFFF;

}

.page-template-template-frontpage .vimeo-header5 {
    font-size: 23px;
    line-height: 27px;
    font-weight: 300;
    font-family: "Metric Web";
    margin-bottom: 40px;
    color: #FFFFFF;

}
.video-readmore {
    background-color: #085b7b;
    padding: 13px 15px;
    color: #FFF;
    margin: auto;
    margin-top: 40px;
    pointer-events: auto;
    font-size: 18px;
}
.video-readmore:hover {
    color: #FFF;
}
@media (min-width: 768px) {
    .headline-inside-anniversary-iframe {
        width: 100% !important;
        /*margin: 10% 10% 0% 0% !important;*/

    }
}
@media screen and (min-width: 900px) {
    .vimeo-wrapper {
        position: relative;
        transform: translateY(-100px)
    }
    .headline-inside-anniversary-iframe {
        width: 80% !important;
        /*margin: 20% 10% 0% 10% !important;*/

    }

    .business h2 {
        margin-top: 0 !important;
    }
}
@media screen and (min-width: 1200px) {
    .headline-inside-anniversary-iframe {
        width: 60% !important;
        /*margin: 20% 20% 0% 20% !important*/
    }
    .headline-inside-anniversary-iframe .vimeo-header5 {
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
}
.arrow-wrapper {
    width: 100%;
    background-color: white;
}
@media (min-width: 768px) {
    body.home .news-list article {
        padding-bottom: 0 !important; }
    body.home .news-list a:last-of-type article {
        margin-bottom: 0 !important; } }
@media (min-width: 1500px) {
    body.home .news-list article {
        padding-bottom: 3% !important;
    }
}

.side-menu .current h3 {
    background: #50bec9;
    color: #000;
    transition: all 0.2s cubic-bezier(0.2, 0, 1, 1);
}
.side-menu .current h3:after {
    color: #000;
}
