/* TYPOGRAPHY */

h1, h2, h3, h4, h5 {
	font-family: 'Rubik', sans-serif;
	font-weight:500;
}

h1, h2 {
	line-height:1.25;
}

h3, h4, h5, p {
	line-height:1.5;
}

h3.opensans {
    font-family: "Open Sans", sans-serif;
    font-weight: normal !important;
}

p {
	font-family: 'Open Sans', sans-serif;
	font-weight:400;
}

a{
    color: #282828;
}

h1 {
	font-size:70px !important;
	margin-bottom:30px;
}

h2 {
	font-size:42px !important;	
	margin-bottom:20px;	
}

h3 {
	font-size:22px !important;
	margin-bottom:15px !important;
	text-transform:uppercase;
}

h3.med {
	font-weight:500 !important;
}

h4 {
	font-weight:500 !important;
}

p {
	font-size:16px !important;
}

p.small {
	font-size:12px !important;
}

h3.bold {
	font-family:'Open Sans', sans-serif;
	font-weight:600 !important;
}

/* END TYPOGRAPHY */

.col-sm-12 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
}

.temp-hidden {
    display: none !important;
}

/* GRADIENTS */
.blue-grad {
	background: linear-gradient(to left,#003366 0%,#003366 30%,#004A94 100%);
}

.blue-grad-down {
    background: linear-gradient(to bottom,#003366 0%,#003366 30%,#004A94 100%);
}

.orange-grad {
	background:linear-gradient(to right,#ff9650 0%,#ffbe50 100%);
}


/* 
	KEYFRAMES FOR MOUSE ANIMATION ON FRONTPAGE
*/

@-webkit-keyframes ani-mouse {
    0% {
        opacity: 1;
        top: 29%;
    }
    15% {
        opacity: 1;
        top: 70%;
    }
    50% {
        opacity: 0;
        top: 70%;
    }
    100% {
        opacity: 0;
        top: 29%;
    }
}

@-moz-keyframes ani-mouse {
    0% {
        opacity: 1;
        top: 29%;
    }
    15% {
        opacity: 1;
        top: 70%;
    }
    50% {
        opacity: 0;
        top: 70%;
    }
    100% {
        opacity: 0;
        top: 29%;
    }
}

@keyframes ani-mouse {
    0% {
        opacity: 1;
        top: 29%;
    }
    15% {
        opacity: 1;
        top: 70%;
    }
    50% {
        opacity: 0;
        top: 70%;
    }
    100% {
        opacity: 0;
        top: 29%;
    }
}

.scroll-btn {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    top: 40vh;
}

.scroll-btn>* {
    display: inline-block;
    line-height: 18px;
    font-size: 13px;
    font-weight: normal;
    color: white;
    color: white;
    font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
    letter-spacing: 2px;
}

.scroll-btn>*:hover,
.scroll-btn>*:focus,
.scroll-btn>*.active {
    color: white;
}

.scroll-btn>*:hover,
.scroll-btn>*:focus,
.scroll-btn>*:active,
.scroll-btn>*.active {
    opacity: 0.8;
    filter: alpha(opacity=80);
}

.scroll-btn .mouse {
    position: relative;
    display: block;
    width: 35px;
    height: 55px;
    margin: 0 auto 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 2px solid white;
    border-radius: 15px;
}

.scroll-btn .mouse>* {
    position: absolute;
    display: block;
    top: 29%;
    left: 50%;
    width: 8px;
    height: 8px;
    margin: -4px 0 0 -4px;
    background: white;
    border-radius: 50%;
    -webkit-animation: ani-mouse 2.5s linear infinite;
    -moz-animation: ani-mouse 2.5s linear infinite;
    animation: ani-mouse 2.5s linear infinite;
}


/* 
	STYLES FOR ENTREPRENUER CARDS
 */

.oe-profile {
    width: 100%;
    height: auto;
    text-align: center;
}

.oe-wrapper {
    position: relative;
    border-radius: 15px;
    border: 1px solid #e8e8e8;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.oe-wrapper div {
    margin-bottom: 10px;
}

.oe-profile img {
    width: 100%;
    border-radius: 15px;
}

.oe-details {
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #003366 0%, #003366 30%, #004A94 100%);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 12px;
}

.oe-details p {
    font-size: 12px !important;
    margin-bottom: 0px !important;
    color: white !important;
}

.oe-wrapper .oe-details {
    -webkit-transition: all 0.5s ease !important;
    -moz-transition: all 0.5s ease !important;
    -o-transition: all 0.5s ease !important;
    transition: all 0.5s ease !important;
}

.oe-wrapper:hover .oe-details {
    opacity: 0.95;
}

.oe-details-name {
    text-transform: uppercase;
}

.oe-details-info:after,
.oe-details-contact:after {
    content: "";
    position: absolute;
    margin-top: 3px;
    left: 43.75%;
    width: 12.5%;
    border-bottom: 3px solid #ff9650;
}

@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
    .oe-wrapper {
        position: relative;
        border-radius: 15px;
        border: 1px solid #e8e8e8;
        display: block;
        justify-content: center;
        flex-direction: column;
    }
}

.register-button {
    background: #ffbe50;
    border-radius: 4px;
    display: none;
}
.page .register-button {
    display: initial;
}
.home .register-button 
{
    display: none !important;
}
.home.header-on-scroll .register-button
{
    display: initial !important;
}

/* box-shadow:0 5px 20px 10px rgba(0,0,0,.25); */


/*
	STYLES FOR 1-6 INFO CARDS ON FRONTPAGE
 */

.oe-info-card {
    width: 100%;
    height: 230px;
    position: relative;
    margin-bottom: 30px;
    background: transparent;
    z-index: 2;
    overflow: visible;
}

.oe-info-card-inner {
    width: 100%;
    height: 100%;
    border: 1px solid #eee;
    -webkit-clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);
    background: white;
}

.oe-info-card-inner h1 {
    margin-left: 10%;
    font-size: 70px !important;
    font-weight: 900 !important;
    color: #ff9650;
    margin-bottom: 0px !important;
}

.oe-info-text {
    width: 75%;
    margin-left: 10%;
    padding-bottom: 3%;
}

.info-text-image {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 150px;
    height: 150px;
}

.oe-info-text p,
.oe-info-text h4 {
    font-size: 12px !important;
}

.oe-info-text p,
a {
    margin-bottom: 0px !important;
}


/* 
	FRONTPAGE STYLES	
 */

#landing-about,
#landing-contact {
    padding-top: 100px;
    padding-bottom: 100px;
}

.vc_custom_1499433028980 input[type=submit] {
    margin-top: 15px;
    background-color: #aaa;
}

.nm-footer-widgets.has-border {
    border-top: 1px solid #aaa
}

#frontpage-first-cta {
    min-height: 350px;
    position: relative;
    bottom: -250px;
}

#frontpage-vision {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.frontpage-meet-us-about {
    min-height: 450px !important;
}

.frontpage-contact-section {
    background: linear-gradient(to right, #ff9650 0%, #ffbe50 100%);
}

#frontpage-open>div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 30px;
    padding-bottom: 30px;
}

.img-full img{
    width: 100%;
}

.frontpage-partners p {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.oe-signup-btn {
    width: 125px;
    height: 125px;
    border-radius: 50%;
    border: none;
    font-weight: 500 !important;
    background: white;
    -webkit-box-shadow: 0px 7px 5px 0px rgba(0, 0, 0, 0.26);
    -moz-box-shadow: 0px 7px 5px 0px rgba(0, 0, 0, 0.26);
    box-shadow: 0px 7px 5px 0px rgba(0, 0, 0, 0.26);
    font-family: 'Rubik', sans-serif;
}

#frontpage-signup-form {
    max-height: 0;
    transition: all 1s ease-in;
    display: flex;
    justify-content: center;
}

#wpcf7-f793-p441-o1,
#wpcf7-f960-p441-o2 {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.frontpage-contact-input {
    border-radius: 12px !important;
}

#wpcf7-f793-p441-o1 form p:last-of-type,
#wpcf7-f960-p441-o2 form p:last-of-type {
    display: flex;
    justify-content: center;
}

#wpcf7-f793-p441-o1 input[type=submit],
#wpcf7-f960-p441-o2 input[type=submit] {
    background: white !important;
    color: black !important;
    font-weight: 500 !important;
    font-family: 'Rubik', sans-serif !important;
    font-size: 16px !important
}

.signup-open {
    max-height: 1200px !important;
}

.frontpage-contact-circle-wrapper {
    display: flex;
    justify-content: center;
    padding-top: 30px;
}

.frontpage-contact-circle-wrapper button {
    margin: 0 20px 0 20px;
    font-weight: 500 !important;
    color: black;
}


/* TO BE DELETED AFTER GOING LIVE */

#contact-text {
    padding-right: 0%;
    padding-left: 0%;
}


/* TO BE DELETED AFTER GOING LIVE */

@media (max-width: 767px) {
    #contact-text {
        padding-right: 0px;
        padding-left: 0px;
        margin-top: 40px;
    }
    h1 {
        font-size: 2em;
    }
    p {
        font-size: 1.15em !important;
    }
    #landing-about,
    #landing-contact {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .partner-logos {
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }
    .partner-logos img {
        height: 50px;
    }

    .icons {
        justify-content: center;
    }
    #nm-footer-bar-menu {
        text-align: center;
    }
    #text-6 {
        text-align: left;
    }
    #text-4 {
        padding-left: 10px !important;
    }
}

.form-control {
    font-size: inherit;
}


/* MEDIA SECTION CARDS STYLES */

.read-more {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.read-more .read-more-link {
    -webkit-transition: all 0.5s ease !important;
    -moz-transition: all 0.5s ease !important;
    -o-transition: all 0.5s ease !important;
    transition: all 0.5s ease !important;
}

.read-more:hover .read-more-link {
    opacity: 0.95;
}

.read-more-image-wrapper {
    position: relative;
    margin-bottom: 25px;
}

.read-more-link {
    width: 100%;
    height: 100%;
    display: flex;
    border-radius: 15px;
    background: linear-gradient(to bottom, #003366 0%, #003366 30%, #004A94 100%);
    color: white;
    position: absolute;
    top: 0px;
    justify-content: center;
    align-items: center;
    opacity: 0;
}

.read-more-link a {
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
}

.read-more-link img {
    border-radius: 15px;
}


/* CALENDAR PAGE STYLING */

.calendar-page {
    background: linear-gradient(to right, #ff9650 0%, #ffbe50 100%);
    color: white;
    margin-top: 100px;
    padding-bottom: 100px;
    min-height: 50vh;
}

.event-info {
    background: linear-gradient(to left, #003366 0%, #003366 30%, #004A94 100%);
    border-radius: 15px;
    padding: 36px;
    padding-top: 150px;
}

.event-info h3 {
    margin: 0 18px;
}

.calendar-event {
    height: 400px;
    padding-top: 50px;
    padding-bottom: 50px;
}

.calendar-latest-event {
    padding-top: 50px;
    padding-bottom: 50px;
}

.event-latest-info {
    border-radius: 15px;
    padding: 36px;
    padding-top: 150px;
}

.event-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 100px;
}

.fullscreen-bg {
    position: relative;
    height: 70vh;
    background: linear-gradient(to bottom, #003366 0%, #003366 30%, #004A94 100%);
}

.fullscreen-bg__video {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: opacity(.2);
    position: absolute;
    object-fit: fill;
}

/* #arrow {
    position: relative;
}

#arrow::after {
    content: "";
    width: 30px;
    height: 30px;
    border-left: 2px solid black;
    border-bottom: 2px solid black;
    position: absolute;
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%) rotate(-45deg);
} */

.sp-front-header {
    display: flex;
    justify-content: center;
    color: white;
}

.sp-front-header>li>a {
    color: white !important;
}

.advisory-background {
    background: linear-gradient(to left, #003366 0%, #003366 30%, #004A94 100%);
}

.the-team {
    background-image: url('/wp-content/uploads/2017/08/square_pattern.jpg?id=631') !important;
    background-position: 0 0 !important;
    background-repeat: repeat !important;
}

.orange-grad .oe-wrapper {
    border: none !important;
}

.oe-details p,
.oe-details a {
    font-weight: 600 !important;
}

.slick-prev,
.slick-next {
    top: calc(50% + 64px);
}

#submit-container {
    display: flex;
    justify-content: center;
}

#owl-slider-2 {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#slider-wrapper {
    background: url('/wp-content/uploads/2017/08/big_bubble_white0.png') no-repeat, linear-gradient(to left, #003366 0%, #003366 30%, #004A94 100%);
    background-position: -10% 100%;
    ;
}

#owl-slider-2 .owl-stage-outer .owl-stage .owl-item h1 {
    direction: ltr;
    text-align: left;
    color: white;
    text-transform: uppercase;
    font-size: 40px !important;
}

#owl-slider-2 .owl-stage-outer .owl-stage .owl-item p {
    direction: ltr;
    text-align: left;
    color: white;
}

.vc_custom_1501575588867 {
    background-position: inherit !important;
}

.wpcf7-form {
    width: 100%;
}

.vc_custom_1501857941586 .wpb_wrapper .wpb_text_column wpb_content_element .wpb_wrapper {
    height: 100%;
}

#about-first-section {
    background: url('/wp-content/uploads/2017/08/Boble-baggrund_v2-1.png') no-repeat, linear-gradient(to bottom, #003366 0%, #003366 30%, #004A94 100%);
    background-position: 60% 50%;
}

.text-max-width {
    margin: 0 auto;
    max-width: 750px !important;
}

@media (max-width: 991px) {
    h1 {
        font-size: 2em !important;
    }
    #landing-about-text {
        padding: 0px 10%;
    }
    .event-text {
        padding-top: 0px !important;
    }
    .calendar-event {
        height: auto !important;
        margin-top: 25px;
    }
    .event-info {
        margin-top: 25px;
    }
    #frontpage-first-cta {
        min-height: 150px;
        position: relative;
        bottom: -50px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    #frontpage-first-cta {
        min-height: 150px;
        position: relative;
        bottom: -50px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .hidden-md {
        display: none !important;
    }
    #landing-about-text {
        padding: 0px 26.4%;
    }
    #frontpage-first-cta {
        min-height: 250px;
        position: relative;
        bottom: -150px;
    }
}

@media (min-width: 1200px) {
    .hidden-lg {
        display: none !important;
    }
    #landing-about-text {
        padding: 0px 26.4%;
    }
}

@media screen and (max-width: 1440px) {
    .oe-info-text p,
    .oe-info-text h4 {
        font-size: 10px !important;
    }
}

.widget {
    text-align: center;
}

#slider-list li {
    list-style-type: disc;
}

@media screen and (min-width: 992px) {
    .min-height-600 {
        min-height: 600px;
    }
    .max-width-75 {
        max-width: 75%;
    }
}

.oe-details a {
    color: white;
}

.oe-details a:hover {
    color: white;
}

.nm-footer-bar .menu {
    display: flex;
    flex-direction: column;    
}

.home .nm-header-placeholder {
    display: none;
}

/*.event-latest-info:before {
	content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    color: #FFF;
    border-radius: 15px;
    background: linear-gradient(to left, #003366 0%, #003366 30%, #004A94 100%);
    opacity: 0.6;
}*/

.mc-field-group {
    display: flex;
    justify-content: flex-end;
}

#mc-embedded-subscribe {
    background: #ff9650;
    border-radius: 0;
    height: 100%;
}

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

    #top-div h2 {
        font-size: 20px !important;
    }
    #top-div p {
        font-size: 14px !important;
    }
    #top-p-margin {
        margin-bottom: 15px !important;
    }
    
    .btn-orange {
        width: 250px !important;
        height: 45px !important;
        line-height: initial !important;
    }

    div.nm-footer-bar-left.col-md-5.offset-md-1.col-xs-12 {
        float: none;
    }
  }