@import url('https://fonts.googleapis.com/css?family=Raleway:200,300,400,500,600,700,800,900');
@import url('https://fonts.googleapis.com/css?family=Titillium+Web:300,400');
@import url('https://fonts.googleapis.com/css?family=Nunito+Sans:300,400,700');









* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.top-illustration .st0 {
    background: #ffa2af;
    background: -moz-linear-gradient(45deg, #ffa2af 0%, #ffb77d 100%);
    background: -webkit-linear-gradient(45deg, #ffa2af 0%,#ffb77d 100%);
    background: linear-gradient(45deg, #ffa2af 0%,#ffb77d 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffa2af', endColorstr='#ffb77d',GradientType=1 );
}

body{
    font-family: 'Raleway', sans-serif;
    padding:0;
    margin:0;
    font-weight: 300;
    color:#2a2a2a;
    line-height:1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.row-fluid [class*="span"] {
    min-height: 0;
}
img {
    max-width: 100%;
}
.container{
    max-width: 1200px;
    width:100%;
    margin: auto;
    padding: 0 15px;
    position:relative;
    z-index:1;
}
.content{
    position:relative;
    z-index:1;
}
.small-container{
    max-width:600px;
    margin:auto;
}
.big-container {
    max-width: 1800px;
    margin: auto;
}
.text-container{
    max-width:850px;
    margin:60px auto 0;
    padding: 0 20px;
}
.padding-wrapper{
    padding:80px 0;
    display:inline-block;
    width:100%;
}
.padding-top {
    padding-top: 80px;
    padding-bottom:30px;
}
.padding-bottom{
    padding-bottom:80px;
    padding-top:30px;
}
.small-padding-wrapper {
    padding: 30px 0;
    display:inline-block;
    width:100%;
}
.no-padding{
    padding-top:0;
    padding-bottom:0;
}
.no-padding-bottom{
    padding-bottom:0;
}
.no-padding-top {
    padding-top: 0;
}
.center{
    text-align:center;
}
.left {
    text-align: left;
    position: relative;
}
.right{
    text-align:right;
}
.shadow{
    -webkit-box-shadow: 0 18px 20px -15px rgba(0,0,0,.2);
            box-shadow: 0 18px 20px -15px rgba(0,0,0,.2);
    -webkit-transition: all .2s ease;
    transition:all .2s ease;
}
.bw {
    opacity: .5;
    -webkit-filter: grayscale(100%);
            filter: grayscale(100%);
}
.background {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.background--contain{
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}
.overlay {
    position: relative;
}
.overlay:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .8;
    background: #065ad9;
    background: linear-gradient(45deg, #065ad9 0%,#4da8e8 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#065ad9', endColorstr='#4da8e8',GradientType=1 );
    -webkit-transition: all .2s ease;
    transition:all .2s ease;
}
.overlay.overlay--black:after{
    background:#2a2a2a;
    opacity:.85;
}
.overlay h2 {
    color: white;
}
.blurb,
.blurb p{
    font-size: 16px;
    max-width: 720px;
    margin: auto;
    margin-bottom:20px;
}
.white {
    background-color: white;
}
.black-text {
    color: #2a2a2a;
}
.grey{
    background-color:#f7f7f7;
}
.white-text{
    color:white;
}
.blue-gradient{
    background: #4da8e8;
    background: linear-gradient(45deg, #4da8e8 0%,#2178df 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4da8e8', endColorstr='#2178df',GradientType=1 );
}
.gradient{
    background: #feb683;
    background: linear-gradient(135deg, #feb683 36%,#fea3b0 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#feb683', endColorstr='#fea3b0',GradientType=1 );
}
.black{
    background:#2a2a2a;
}
a{
    text-decoration:none;
    color:#ff94a3;
    -webkit-transition: all .2s ease;
    transition:all .2s ease;
}
button:focus,
a:focus,
div:focus,
input:focus,
textarea:focus{
    outline: none;
}
h1 {
    font-size: 56px;
    font-weight: 300;
    margin: 0;
    line-height: 120%;
}
h2{
    font-size:24px;
    font-weight:600;
    margin-top:0;
    position:relative;
    line-height: 110%;
}
h3 {
    font-size: 20px;
    font-weight:300;
    line-height: 110%;
}
h4{
    font-size: 16px;
    margin: 0;
    font-weight: 500;
    line-height: 110%;
}










/******
* NAV *
******/
nav {
    display: inline-block;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
}
nav a {
    color: white;
}
nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: flex-end;
    -webkit-box-pack: flex-end;
    justify-content: flex-end;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
}
nav .hs-menu-wrapper>ul>li>a {
    padding: 30px 20px;
    display: inline-block;
    font-weight: 500;
}
nav .logo__block{
    display: inline-block !important;
    width: 280px !important;
    padding: 30px 30px;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}
nav>div>div>.row-fluid {
	display: block;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
	-ms-flex-align: stretch;
    -webkit-box-align: stretch; 
    align-items: stretch;
}
nav .main-menu {
    -moz-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    -o-flex: 1 0 auto;
    -webkit-box-flex: 1;
            flex: 1 0 auto;
    margin-left: 0 !important;
    padding-right: 30px;
    -webkit-transition:all .6s ease;
    transition:all .6s ease;
    display: -moz-flex !important;
    display: -ms-flex !important;
    display: -o-flex !important;
    display: -ms-flexbox !important;
    display: -webkit-box !important; 
    display: flex !important;
    -ms-flex-pack: flex-end;
    -webkit-box-pack: flex-end;
    justify-content: flex-end;
	-ms-flex-align: center;
    -webkit-box-align: center; 
    align-items: center;
}
nav .main-menu>div {
    flex: 1 0 0;
}
nav svg{
    max-height:40px;
}

.logo__block .st0,
.logo__block .st1,
.logo__block .st2,
.logo__block .st3,
.logo__block .st4,
.logo__block .st5{
    -webkit-transition:all .1s ease;
    transition:all .1s ease;
}
.logo__block .st0{
    fill:white;
}
.logo__block .st1{
    fill:white;
}
.logo__block .st2{
    fill:white;
}
.logo__block .st3{
    fill:white;
}
.logo__block .st4{
    enable-background:new;
}
.logo__block .st5{
    fill:white;
}

nav .hs-menu-wrapper>ul>li>a:hover {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    position: relative;
}

nav .hs-menu-wrapper>ul>li>a:after {
    content: "";
    position: absolute;
    width: 25%;
    height: 1px;
    background: #fff;
    left: 0;
    bottom: 15px;
    right: 0;
    margin: auto;
    opacity: 0;
}

nav .hs-menu-wrapper>ul>li.active>a:after,
nav .hs-menu-wrapper>ul>li>a:hover:after {
    opacity: 1;
}

nav ul li {
    position: relative;
}
nav .hs-menu-depth-1>ul.hs-menu-children-wrapper>li {
    width: 100%;
}
nav .hs-menu-depth-1>ul.hs-menu-children-wrapper a {
    color: #2a2a2a;
    padding: 10px 20px;
    display: inline-block;
    width: 100%;
    font-size: 14px;
    font-weight: 600;
}
nav .hs-menu-depth-1.hs-item-has-children>ul.hs-menu-children-wrapper {
    position: absolute;
    width: 200px;
    background: white;
    top:100%;
    left:0;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    -webkit-transform-origin: top;
            transform-origin: top;
    -webkit-transform:scaleY(0);
    transform: scaleY(0);
    display: block;
    -webkit-box-shadow: 0 0 12px -2px rgba(0,0,0,.2);
            box-shadow: 0 0 12px -2px rgba(0,0,0,.2);
}
nav .hs-menu-depth-1.hs-item-has-children>ul.hs-menu-children-wrapper:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 10px;
    width: 10px;
    background: white;
    margin-top: -5px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    margin-left: 30px;
    z-index: -1;
}
nav .hs-menu-depth-1>ul.hs-menu-children-wrapper a:hover{
    color:white;
    background:#2a2a2a;
}
nav .hs-menu-depth-1.hs-item-has-children:hover>ul.hs-menu-children-wrapper {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
}
nav .hs-menu-depth-1.hs-item-has-children:hover>ul.hs-menu-children-wrapper:before {
    -webkit-animation:pulse 2s ease .5s infinite;
            animation:pulse 2s ease .5s infinite;
}
nav .hs-menu-depth-1.hs-item-has-children>ul.hs-menu-children-wrapper:before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: transparent;
    border-radius: 100%;
    border: 1px solid white;
    top: 0;
    margin-top: -10px;
    left: 0;
    margin-left: 30px;
    opacity: 0;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}
nav .hs-menu-depth-1.hs-item-has-children>ul.hs-menu-children-wrapper .hs-menu-depth-2>ul a{
    color: white;
}
nav .hs-menu-depth-1.hs-item-has-children>ul.hs-menu-children-wrapper .hs-menu-depth-2>ul{
    position: absolute;
    top: 0;
    right: 100%;
    background: #2a2a2a;
    display: block;
    width: 300px;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transition: all .3s ease .1s;
    transition: all .3s ease .1s;
    -webkit-transform-origin: right;
            transform-origin: right;
}
nav .hs-menu-depth-1.hs-item-has-children>ul.hs-menu-children-wrapper .hs-menu-depth-2:hover>ul{
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
}
nav .hs-menu-depth-1.hs-item-has-children>ul.hs-menu-children-wrapper .hs-menu-depth-2>ul a:hover{
    background:white;
    color: #2a2a2a;
}

/* SCROLLED */
.scrolled nav,
.active-nav nav{
    position:fixed;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    -webkit-animation:scrolledNav .2s ease;
            animation:scrolledNav .2s ease;
    -webkit-animation-fill-mode:forwards;
            animation-fill-mode:forwards;
}
.active-nav{
    margin-top:65px;
}
.scrolled nav .logo__block,
.active-nav nav .logo__block{
    background: white;
    padding:10px 30px;
}
nav .hs-menu-wrapper>ul>li>a {
    padding:20px;
}
.scrolled nav .main-menu,
.active-nav nav .main-menu{
    background: #feb683;
    background: linear-gradient(135deg, #feb683 36%,#fea3b0 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#feb683', endColorstr='#fea3b0',GradientType=1 );
    
}
.scrolled .logo__block .st0,
.active-nav .logo__block .st0{
    fill:#ff94a3;
    -webkit-transition-delay:.67s;
            transition-delay:.67s;
}
.scrolled .logo__block .st1,
.active-nav .logo__block .st1{
    fill:#4da8e8;
    -webkit-transition-delay:.4s;
            transition-delay:.4s;
}
.scrolled .logo__block .st2,
.active-nav .logo__block .st2{
    fill:#ffab6e;
    -webkit-transition-delay:.58s;
            transition-delay:.58s;
}
.scrolled .logo__block .st3,
.active-nav .logo__block .st3{
    fill:#065ad9;
    -webkit-transition-delay:.49s;
            transition-delay:.49s;
}
.scrolled .logo__block .st4,
.active-nav .logo__block .st4{
    enable-background:new;
}
.scrolled .logo__block .st5,
.active-nav .logo__block .st5{
    fill:#2a2a2a;
}

@-webkit-keyframes scrolledNav{
    from{-webkit-transform: translateY(-100%);transform: translateY(-100%);}
    to{-webkit-transform: translateY(0%);transform: translateY(0%);}
}

@keyframes scrolledNav{
    from{-webkit-transform: translateY(-100%);transform: translateY(-100%);}
    to{-webkit-transform: translateY(0%);transform: translateY(0%);}
}

.hamburger-wrapper{
    display:none;
}

.hs_integritetspolicy > legend.hs-field-desc {
    float: right !important;
    display: inline !important
}

.hs_integritetspolicy > div.input {
    float: left !important;
    display: inline !important;
    vertical-align:top !important;
    margin-top:-38px !important;
}

.hs_integritetspolicy .hs-form-required {
    display:none !important;
}

.hs_integritetspolicy .hs-error-msgs {
    bottom: -40px;
}

.openpolicy {
    color: #ff94a3;
    cursor: pointer;
    display: inline-block;
}

.integrity-policy {
    position: fixed;
    background-color: rgba(0,0,0,.5);
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index: 90;
    opacity:0;
    visibility:hidden;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    
}

.integrity-policy.active {
    opacity:1;
    visibility:visible;
}

.integrity-policy__wrapper {
    position: fixed;
    z-index: 99;
    width: 100%;
    max-width: 50%;
    top: 15%;
    left: 50%;
    margin-left: -25%;
    background-color: #FFF;
    padding: 60px;
}

.integrity-policy__wrapper__content {
    position: relative;
}

.integrity-policy__wrapper__content__close {
    width: 20px;
    position:absolute;
    top: 4px;
    right: 0px;
    cursor: pointer;
    z-index: 999;
}

.integrity-policy__wrapper__content__headline {

}

.integrity-policy__wrapper__content__text {
    overflow:scroll;
    max-height: 400px;
    -webkit-overflow-scrolling: touch;
}








/********
TOP IMAGE
********/
.top {
    padding: 180px 0 120px;
    color: white;
    text-align:center;
}
.top h1{
    text-transform:uppercase;
}
.top.top__start h1{
    font-size:90px;
}
.top .blurb p {
    font-weight: 500;
    font-size: 18px;
}
.top.left{
    text-align:left;
}
.top.top__start {
    height: 100%;
    min-height: 600px;
    padding: 200px 0;
}
.top__start--inner .blurb {
    max-width: 600px;
}
.top__mockup {
    width: 40%;
    position: absolute;
    top: 160px;
    bottom: 0;
    right: 0;
    z-index: 9;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right bottom;
    margin-bottom: -40px;
    min-width: 280px;
}
.top.top__individual-feature {
    min-height: 650px;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
}
.top__start--inner__block {
    position: relative;
    display: inline-block;
    width: 100%;
    margin-bottom: 60px;
    padding-top: 60px;
}
.top-illustration {
    /*background-image: url(https://cdn2.hubspot.net/hubfs/2717734/illustration/talentia-start-illustration.png);*/
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.top-illustration svg {
    width: 100%;
    height: 100%;
}
.top-illustration .st0 {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transition: all .6s ease 1s;
    transition: all .6s ease 1s;
    background: #feb683;
    background:linear-gradient(135deg, #feb683 36%,#fea3b0 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#feb683', endColorstr='#fea3b0', GradientType=1 );
}
.top-illustration .st0{fill:url(#XMLID_8_);}
#XMLID_8_{
    fill:linear-gradient(135deg, #feb683 36%,#fea3b0 100%);
}
.top-illustration .st1{opacity:0.57;fill:none;stroke:#FFFFFF;stroke-width:3;stroke-miterlimit:10;}

.loaded .top-illustration .st0{
    -webkit-transform: scale(1);
            transform: scale(1);
}
.top-illustration .st1 {
    opacity:0;
    -webkit-transform-origin: center;
            transform-origin: center;
}
.loaded .top-illustration .st1#XMLID_2_ {
    -webkit-animation:pulse 2.5s ease 0.1s infinite;
            animation:pulse 2.5s ease 0.1s infinite;
}
.loaded .top-illustration .st1#XMLID_3_ {
    -webkit-animation:pulse 2.5s ease 0.3s infinite;
            animation:pulse 2.5s ease 0.3s infinite;
}
.loaded .top-illustration .st1#XMLID_4_ {
    -webkit-animation:pulse 2.5s ease 0.5s infinite;
            animation:pulse 2.5s ease 0.5s infinite;
}
.loaded .top-illustration .st1#XMLID_5_ {
    -webkit-animation:pulse 2.5s ease 0.7s infinite;
            animation:pulse 2.5s ease 0.7s infinite;
}
.loaded .top-illustration .st1#XMLID_6_ {
    -webkit-animation:pulse 2.5s ease 0.9s infinite;
            animation:pulse 2.5s ease 0.9s infinite;
}
.loaded .top-illustration .st1#XMLID_25_ {
    -webkit-animation:pulse 2.5s ease 1.1s infinite;
            animation:pulse 2.5s ease 1.1s infinite;
}
.loaded .top-illustration .st1#XMLID_26_ {
    -webkit-animation:pulse 2.5s ease 1.3s infinite;
            animation:pulse 2.5s ease 1.3s infinite;
}
.loaded .top-illustration .st1#XMLID_20_ {
    -webkit-animation:pulse 2.5s ease 1.5s infinite;
            animation:pulse 2.5s ease 1.5s infinite;
}

@-webkit-keyframes pulse{
    0%{opacity:.1;-webkit-transform:scale(.8);transform:scale(.8);}
    50%{opacity:.5;-webkit-transform:scale(1);transform:scale(1);}
    100%{opacity:.1;-webkit-transform:scale(.8);transform:scale(.8);}
}

@keyframes pulse{
    0%{opacity:.1;-webkit-transform:scale(.8);transform:scale(.8);}
    50%{opacity:.5;-webkit-transform:scale(1);transform:scale(1);}
    100%{opacity:.1;-webkit-transform:scale(.8);transform:scale(.8);}
}





/**************
* CTA BUTTONS *
**************/
.btn,
form input.hs-button{
    margin: 5px;
    font-size: 16px;
    font-family: 'Raleway', sans-serif !important;
    font-weight: 600 !important;
    padding: 10px 35px;
    border: 2px solid white;
    border-radius: 10px !important;
    -webkit-transition:all .2s ease;
    transition:all .2s ease;
    display:inline-block;
    cursor: pointer !important;
}

.hs_submit,
.hs_submit .actions {
    cursor: pointer !important;
}

.btn:hover,
form input.hs-button:hover{
    /*transform:scale(1.05);*/
}

.solution-areas--wrapper__solution .hs-cta-wrapper .btn {
    padding: 10px 35px;
}

.btn{
    margin:0;
}

.top .btn {
    min-width: 150px;
    background:transparent !important;
    border:2px solid white;
}
form input.hs-button{
    margin:0 !important;
    background:transparent !important;
    border-color:#4da8e8 !important;
    -webkit-box-shadow:none !important;
            box-shadow:none !important;
}
.overlay .btn {
    background: transparent;
}
.btn.gradient {
    border: 0;
    background: #ff95a0 !important;
    background: -webkit-gradient(linear, left top, right top, from(#ff95a0),color-stop(66%, #ffaa71)) !important;
    background: linear-gradient(to right, #ff95a0 0%,#ffaa71 66%) !important;
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff95a0', endColorstr='#ffaa71',GradientType=1 ) !important;
    text-transform: uppercase;
}
/*
.btn.gradient:hover{
    background: #feb683 !important;
    background: linear-gradient(135deg, #feb683 36%,#fea3b0 100%) !important;
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#feb683', endColorstr='#fea3b0',GradientType=1 ) !important;
}
*/


.hs-cta-node:before {
    bottom: 0;
    right: 0;
}
.hs-cta-node:after {
    bottom: 0;
    left: 0;
}
.hs-cta-wrapper:before {
    top: 0;
    right: 0;
}
.hs-cta-wrapper:after {
    top: 0;
    left: 0;
}
.hs-cta-wrapper:after, .hs-cta-wrapper:before, .hs-cta-node:after, .hs-cta-node:before {
    content: '';
    position: absolute;
    background: white;
    height: 2px;
    transition: all .2s ease;
    width: 0;
}
.hs-cta-wrapper, .hs-cta-node {
    display: inline-block;
    position: relative;
    transition: all .2s ease;
}
.hs-cta-wrapper:hover {
    transform: scale(1.1);
    z-index:1;
}
.hs-cta-wrapper:hover:before {
    width: 49%;
    z-index: 1;
    background: #065ad9;
    transition-delay: .3s;
    border-radius: 0 10px 0 0;
}
.hs-cta-wrapper:hover .hs-cta-node:before {
    width: 47%;
    transition-delay: .4s;
    background: #ffab6e;
    border-radius: 0 0 10px 0;
    z-index: 1;
}
.hs-cta-wrapper:hover .hs-cta-node:after {
    transition-delay: .5s;
    width: 47%;
    background: #ff94a3;
    border-radius: 0 0 0 10px;
}
.hs-cta-wrapper:hover:after {
    width: 49%;
    transition-delay: .2s;
    border-radius: 10px 0 0 0;
    background: #4da8e8;
}
.hs-cta-wrapper:hover .btn {
    position: relative;
    color: #2a2a2a !important;
    background: white !important;
}
.overlay .hs-cta-wrapper:hover .btn {
    background: transparent !important;
    color: white !important;
}
.top .hs-cta-wrapper{
    margin:5px;
}
.top .hs-cta-wrapper:hover .btn{
    border-color:transparent;
}








/*************
BENEFITS BLOCK
*************/
.benefits__block--wrapper .hs_cos_wrapper_widget_container>div {
    -moz-flex: 1 0 25%;
    -ms-flex: 1 0 25%;
    -o-flex: 1 0 25%;
    -webkit-box-flex: 1;
            flex: 1 0 25%;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
}
.benefits__block--wrapper .hs_cos_wrapper_widget_container {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
	-ms-flex-align: stretch;
    -webkit-box-align: stretch; 
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap:wrap;
}
.benefits__block {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0px;
            flex: 1 0 0;
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 20px;
}
.benefits__block--icon {
    -moz-flex: 1 0 40px;
    -ms-flex: 1 0 40px;
    -o-flex: 1 0 40px;
    -webkit-box-flex: 1;
            flex: 1 0 40px;
    max-width: 40px;
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
}
.benefits__block--text {
    -moz-flex: 1 0 0;
    -ms-flex: 1 0 0;
    -o-flex: 1 0 0;
    -webkit-box-flex: 1;
            flex: 1 0 0;
    padding: 0 30px;
    font-size: 14px;
    line-height: 140%;
}
.benefits__block--text h3 {
    text-transform: uppercase;
    margin-top: 0;
    font-family: 'Nunito Sans', sans-serif;
}








/**********
QUOTE BLOCK
**********/
.quote__block--outer--wrapper .container>div {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
}
.quote__block--outer--wrapper .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-wrap:wrap;
        flex-wrap:wrap;
}

blockquote {
    margin: 20px 0;
    font-size: 38px;
    line-height: 130%;
    position: relative;
    padding-left: 50px;
}
blockquote:before {
    content: '\201c';
    font-size: 80px;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 15px;
    font-weight: bold;
    color: #4da8e8;
}
.quote__block--quote--title {
    color: #4da8e8;
    font-weight: 500;
    text-transform: uppercase;
    padding-left: 50px;
    font-size: 14px;
}
.quote__block--quote--person {
    font-weight: 600;
    padding-left: 50px;
}
.quote__block--image {
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: contain;
}
.headline__block h2 {
    margin-bottom: 0;
}



.headline__block {
    border-top: 2px solid #f6f6f6;
}




/*********
* FOOTER *
*********/
footer {
	display: block;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    width: 100%;
    padding: 60px 0;
    background-size: cover;
    background-position: center center;
    color: white;
    position:relative;
    z-index:0;
    font-weight:600;
    overflow:hidden;
    background: #065ad9;
    background: -moz-linear-gradient(left, #065ad9 0%, #4da8e8 100%);
    background: -webkit-linear-gradient(left, #065ad9 0%,#4da8e8 100%);
    background: linear-gradient(to right, #065ad9 0%,#4da8e8 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#065ad9', endColorstr='#4da8e8',GradientType=1 );
}
footer svg {
    position: absolute;
    top: 100px;
    width: 100%;
}
footer .footer-text {
    line-height: 190%;
    font-size: 14px;
}
footer .info {
    font-weight: bold;
    font-size: 12px;
    margin-top: 10px;
    text-transform: uppercase;
}
footer .hs-menu-wrapper ul li a {
    text-align: right;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding: 5px 10px;
    color: white;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    -webkit-transition:all .2s ease;
    transition:all .2s ease;
}
footer .hs-menu-wrapper ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
footer .hs-menu-wrapper ul li.active a{
    font-weight: bold;
}
footer .hs-menu-wrapper ul li.active a:before,
footer .hs-menu-wrapper ul li a:hover:before{
    content: '';
    width: 4px;
    height: 4px;
    background: white;
    display: inline-block;
    border-radius: 100%;
    margin-right: 10px;
}
footer .container>div>div>.row-fluid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
}
footer .container>div>div>.row-fluid>div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
footer .container>div>div>.row-fluid>div>div:first-child {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
footer .container>div>div>.row-fluid>.footer-info-text>div:last-child {
    flex-grow: 1;
    display: flex;
    align-items: flex-end;
}
footer .container>div>div>.row-fluid>.footer-info-text>div:first-child {
    flex-grow: 0;
}
footer .social-media ul li {
    max-width: 30px;
    margin: 0 5px;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0px;
            flex: 1 0 0;
}
footer .social-media ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}









/*******************
SOLUTION AREAS BLOCK
*******************/
.solution-areas--wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
}
.solution-areas--wrapper__solution:hover:before {
    opacity: 0;
}
.solution-areas--wrapper__solution:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    opacity: 1;
    z-index: 1;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
a.solution-areas--wrapper__solution .content {
    padding: 30px;
    width: 100%;
    -webkit-box-flex:1;
        -ms-flex:1 0 auto;
            flex:1 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.solution-areas--wrapper>a {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 25%;
            flex: 1 0 25%;
    min-height: 320px;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
}
a.solution-areas--wrapper__solution h3 {
    font-weight: 300;
    text-transform:uppercase;
    margin: 0;
    font-size:24px;
}
.solution-areas--wrapper__solution {
    color: #727171;
}
.solution-areas--wrapper__solution:hover{
    color:white;
}
a.solution-areas--wrapper__solution {
    border: 1px solid #f1f1f1;
}
.hidden-info {
    padding: 10px 40px;
    font-weight: 400;
    font-size: 15px;
    display: none;
    width:100%;
}
.hover-link .button_link {
    -webkit-transform: translateX(40%);
            transform: translateX(40%);
    opacity: 0;
}
a.solution-areas--wrapper__solution:hover .hover-link .button_link {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
}
.solution-areas__block--fullwidth .solution-areas--wrapper {
    margin-bottom: 0;
}
.solution-areas__block .blurb {
    margin-bottom: 60px;
}
.solution-areas--wrapper__solution:hover .icon.icon--white,
.solution-areas--wrapper__solution .icon.icon--color{
    display:inline-block;
}
.solution-areas--wrapper__solution:hover .icon.icon--color,
.solution-areas--wrapper__solution .icon.icon--white{
    display: none;
}

.solution-areas__block .icon{
    width: 40px;
    height: 40px;
    margin-bottom:20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}
.solution-areas--wrapper__solution .hs-cta-wrapper {
    margin-top: 30px;
}

@media screen and (max-width: 1000px) {
    a.solution-areas--wrapper__solution {
        border: 0;
    }
    
    .small-container {
        padding-right: 20px;
        padding-left: 20px;
    }
}

/* SOLUTIONS AREA BIG */
.solution-areas__block--big .solution-areas--wrapper>a {
    min-height: 480px;
}
.solution-areas__block--big .icon {
    width: 60px;
    height: 60px;
}
.solution-areas__block--big a.solution-areas--wrapper__solution h3 {
    font-size: 32px;
}






/*********************
* IMPRESSIVE NUMBERS *
*********************/
.impressive-numbers__block--wrapper {
    height: 480px;
}

.statistics {
    position: relative;
    height: 25vw;
    min-height: 400px;
}

.statistics__shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.statistics__shape--1 {
    bottom: -20px;
    z-index: 300;
}

.statistics__shape--2 {
    bottom: -120px;
    opacity: 0.4;
}

.statistics__number {
    position: absolute;
    color: #fff;
    z-index: 500;
	-webkit-transition: all 1.2s ease-in-out;
	-moz-transition: all 1.2s ease-in-out;
	-o-transition: all 1.2s ease-in-out;
	transition: all 1.2s ease-in-out;
}

.statistics__number--1 {
    left: 10%;
    bottom: 8vw;
}

.statistics__number--1.active {
    left: 13%;
    bottom: 9.3vw;
}

@media (max-width: 1700px) {
    .statistics__number--1.active {
        bottom: 8.8vw;
    }
}

.statistics__number--2 {
    left: 40%;
    bottom: 6.4vw;
}

.statistics__number--2.active {
    left: 40%;
    bottom: 9vw;
}

@media (max-width: 1700px) {
    .statistics__number--2.active {
        bottom: 8.8vw;
    }
}

.statistics__number--3 {
    right: 17%;
    bottom: 8.4vw;
}

.statistics__number--3.active {
    right: 17%;
    bottom: 13vw;
}

@media (max-width: 1700px) {
    .statistics__number--3 {
        right: 11%;
    }
    
    .statistics__number--3.active {
        right: 13%;
        bottom: 12.4vw;
    }
}

@media (max-width: 1200px) {
    .statistics__number--3.active {
        right: 8%;
        bottom: 11.2vw;
    }
}

@media (min-width: 2350px) {
    .statistics__number--3.active {
        right: 20%;
    }
}

@media (max-width: 1000px) {
    
    .statistics {
        padding: 60px 0px;
        text-align: center;
        height: auto;
        min-height: 0;
    }
    
    .statistics__number--1,
    .statistics__number--1.active,
    .statistics__number--2,
    .statistics__number--2.active,
    .statistics__number--3,
    .statistics__number--3.active {
        right: auto;
        bottom: auto;
        left: auto;
        position: relative;
        margin: 10px 15px;
        display: inline-block;
        text-align: left;
        vertical-align: top;
    }
    
    .statistics svg {
        display: none;
    }
}

@media (max-width: 900px) {
    .statistics__number--1,
    .statistics__number--1.active,
    .statistics__number--2,
    .statistics__number--2.active,
    .statistics__number--3,
    .statistics__number--3.active {
        display: block;
        margin: 10px auto;
        max-width: 400px;
        padding: 20px;
    }    
}

.statistics__pin {
    background-image: url('//cdn2.hubspot.net/hubfs/2717734/icons/stats-pin-1.png');
    background-size: contain;
    width: 34px;
    height: 107px;
    display: inline-block;
    vertical-align: top;
}

.statistics__info {
    display: inline-block;
    width: 220px;
    max-width: 100%;
}

.statistics__info span {
    display: block;    
}

.statistics__digit {
    font-weight: 700;
    font-size: 20px;
}

.statistics__text {
    font-size: 16px;
    font-weight: 400;
}




/*************
LOGOTYPE BLOCK
*************/
.logotype__block>div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap:wrap;
        flex-wrap:wrap;
}
.logotype__block--logo img {
    height: auto;
    width: 100%;
}
.logotype__block--logo {
    padding: 0 20px;
}
.logotype__block .logotype__block--logo{
    -webkit-box-flex: 0;
        -ms-flex: 0 0 12.5%;
            flex: 0 0 12.5%;
    max-width:12.5%;
}
.logotype__block {
    padding: 30px 2%;
    border-bottom: 2px solid #f1f1f1;
    border-top: 2px solid #f1f1f1;
}












/*******
* FORM *
*******/
form label {
    display: none;
}
form .input {
    margin-bottom: 5px;
}
form input,
form textarea,
.grey form input,
.grey form textarea,
form .input select{
    padding: 15px 20px;
    border: 0;
    font-size: 14px;
    background: #eff2f5;
    font-family: 'Raleway', sans-serif;
    -webkit-transition: all .2s ease;
    transition:all .2s ease;
    color: #2a2a2a;
    width:100% !important;
    -webkit-appearance:none;
    border-radius:10px !important;
    -webkit-box-shadow: inset 5px 5px 10px -3px rgba(0,0,0,.1);
            box-shadow: inset 5px 5px 10px -3px rgba(0,0,0,.1);
}
form .input select {
    appearance:none;
    -moz-appearance:none;
    -webkit-appearance:none;
    background: url(http://cdn1.iconfinder.com/data/icons/cc_mono_icon_set/blacks/16x16/br_down.png) no-repeat right rgba(255,255,255,.4);
    background-position-x: 98%;
}
form input:focus,
form textarea:focus,
.grey form input:focus,
.grey form textarea:focus{
    background: #dfe3e7;
}
form .input ul label {
    display: inline-block;
}
form .input ul {
    list-style-type: none;
    padding: 0;
}
form .input ul li label {
    display: flex;
    align-items: center;
}
form input[type=checkbox]:checked {
    background: #fea4ad;
    border: 2px solid #eff2f5;
}
form .input ul li label input {
    width: 15px !important;
    padding: 0;
    height: 15px;
    margin-right: 15px;
}
form textarea,
.grey form textarea{
    min-height:130px;
}
.grey form input,
.grey form textarea {
    background: white;
}
.grey form input:focus,
.grey form textarea:focus {
    background: rgba(255,255,255,.5);
}
::-webkit-input-placeholder {
  color: #2a2a2a;
}
form.hs-form fieldset {
    max-width: 100%;
}
form.hs-form fieldset.form-columns-1 .hs-input {
    width: 100%;
}
form.hs-form fieldset.form-columns-1 .input, 
form.hs-form fieldset.form-columns-2 .input {
    margin-right: 0;
}
form.hs-form fieldset.form-columns-2>div:first-child .input {
    margin-right: 5px;
}
form ul.hs-error-msgs label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: white;
}
form.hs-form fieldset>div {
    position:relative;
}
form ul.hs-error-msgs {
    position: absolute;
    list-style-type: none;
    margin: 0;
    background: #ff94a3;
    padding: 5px 10px;
    z-index: 9;
    bottom: 0;
    margin-bottom: -20px;
}
form ul.hs-error-msgs:after {
    content: '';
    position: absolute;
    top: 0;
    margin-top: -5px;
    left: 50%;
    margin-left: -5px;
    width: 10px;
    height: 10px;
    background: #ff94a3;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
}

.white form input:focus,
.white form textarea:focus{
    background: rgba(34,34,34,.2);
}
.white form input,
.white form textarea{
    background: rgba(34,34,34,.1);
}
form>div {
    position: relative;
}
form .hs_personal_letter label, form .hs_resume label {
    display: block;
    color: white;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}
span.hs_cos_wrapper_type_form {
    color: white;
    font-weight: bold;
}
.widget-type-email_subscriptions form label,
span.fakelabel{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.email-prefs .item .item-inner.selected {
    background: #4da8e8;
    border: #065ad9;
}
input#globalunsub,
.checkbox-row .fakelabel input{
    width: auto !important;
    padding: 10px;
}
.checkbox-row .fakelabel input[type="checkbox"]:checked{
    background:#ff94a3 !important;
}










/***********************
* CONTACT BLOCK HIDDEN *
***********************/
.hidden--contact__block--wrapper {
    position: relative;
    max-width:100vw;
    overflow:hidden;
}
.hidden--contact__block--wrapper:after{
    content:'';
    display:block;
    clear:both;
}
.hidden--contact__block--image {
    position: absolute;
    top:0;
    left:0;
    height:100%;
    width:97%;
	display: block;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
	-ms-flex-align: center;
    -webkit-box-align: center; 
    align-items: center;
    -ms-flex-pack: flex-end;
	justify-content: flex-end;
    -webkit-box-pack: flex-end;
    -ms-flex-pack: end;
        justify-content: flex-end;
    -webkit-transition:all .3s ease;
    transition:all .3s ease;
    z-index: 1;
}
.hidden--contact__block--image:before {
    content: '';
    position: absolute;
    right: 0;
    top:0;
    width: 3%;
    height: 100%;
    background: white;
    margin-right: -3%;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}
.hidden--contact__block--form {
    width: 40%;
    padding: 100px 2% 100px 30px;
    float:right;
}
.hidden--contact__block--button:before {
    content: '';
    position: absolute;
    height: 2px;
    width: 100px;
    right: 0;
    top: 50%;
    z-index:1;
    margin-top: -1px;
    background: white;
}
.hidden--contact__block--button {
    padding-right: 120px;
    position: relative;
    text-align:right;
    display: block;
    margin: 0 0 0 auto;
    cursor:pointer;
    opacity:1;
    -webkit-transition:all .4s ease 1s;
    transition:all .4s ease 1s;
    position:absolute;
    right:0;
}
.hidden--contact__block--button strong {
    font-size: 20px;
}
.hidden--contact__block--button:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0;
    margin-right: -15px;
    top: 50%;
    margin-top: -15px;
    background: white;
    border-radius: 100%;
    -webkit-box-shadow: 0 0 12px rgba(0,0,0,.2);
            box-shadow: 0 0 12px rgba(0,0,0,.2);
}
.hidden--contact__block--form h3 {
    color: black;
    text-align: center;
    display: block;
    font-weight: bold;
    margin-bottom: 30px;
}

.hidden--contact__block--wrapper:hover .hidden--contact__block--image {
    -webkit-transform:translateX(-1%);
            transform:translateX(-1%);
}
.hidden--contact__block--wrapper.contact-open .hidden--contact__block--image{
    width: 60%;
    -webkit-transform:translateX(0);
            transform:translateX(0);
}
.hidden--contact__block--wrapper.contact-open .hidden--contact__block--image:before{
    display:none;
}
.contact-open .hidden--contact__block--button{
    opacity:0;
}

/* CONTACT BLOCK 50/50 */
.contact__block--wrapper>div {
    -moz-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    -o-flex: 0 0 50%;
    -webkit-box-flex: 0;
            flex: 0 0 50%;
    max-width: 50%;
}
.contact__block--wrapper {
	display: block;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
	-ms-flex-align: stretch;
    -webkit-box-align: stretch; 
    align-items: stretch;
}
.contact__block--form>div {
    max-width: 680px;
}
.contact__block--form {
    padding: 80px 60px;
}
.contact__block--form h2 {
    text-transform: uppercase;
    font-weight: 300;
}



/* CONTACT TOP BLOCK */
.contact-top__block--wrapper>div {
	display: block;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
	-ms-flex-align: stretch;
    -webkit-box-align: stretch; 
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.contact-top__block {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
    padding: 0 40px;
}
.contact-top__block h1 {
    font-size: 32px;
    text-transform: uppercase;
    margin: 20px 0;
}
.contact-top__block .info a,
.contact-top__block .info div {
    color: black;
    font-weight: 600;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
    margin: 10px 0;
}
.phone-icon {
    background-image: url(//cdn2.hubspot.net/hubfs/2717734/icons/phone-talentia.png);
}
.email-icon {
    background-image: url(//cdn2.hubspot.net/hubfs/2717734/icons/email-talentia.png);
}
.address-icon {
    background-image: url(//cdn2.hubspot.net/hubfs/2717734/icons/address-talentia.png);
}
.contact-top__block .icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    margin-right: 10px;
}




/************
* EMPLOYEES *
************/
.employees__block--wrapper {
	display: block;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
	-ms-flex-align: stretch;
    -webkit-box-align: stretch; 
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.employees__block {
    -moz-flex: 0 0 16.666%;
    -ms-flex: 0 0 16.666%;
    -o-flex: 0 0 16.666%;
    -webkit-box-flex: 0;
            flex: 0 0 16.666%;
    max-width: 16.666%;
    min-width: 16.666%;
	display: block;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background-position: center center;
    background-size: cover;
    min-height: 400px;
    position: relative;
    border: 1px solid #f1f1f1;
}
.employees__block .read-more {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0 10px;
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  color: white;
  height: 55px;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center; 
  align-items: center;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  opacity: .95 !important;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.employees__block:hover .read-more {
    height: 100%;
}  
  
.employees__block:hover .employees__block--inner,
.touch .employees__block--inner {
    bottom: calc( 100% - 65px )
}

.employees__block .contact-details {
  opacity: 0;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.employees__block:hover .contact-details {
  opacity: 1;
}

.employees__block .contact-details .linkedin-link img {
  width: 40px;
  border-radius: 100%;
  overflow: hidden;
  margin-bottom: 0px;
}
    
.employees__block--inner {
    padding: 10px;
    color: black;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}
.employees__block--inner .title {
    text-transform: uppercase;
    font-size: 14px;
}
.employees__block--inner .name {
    font-weight: bold;
}
.employees__block a {
    color: white;
}

/* EMPLOYEE POST */
.employee__block--post--wrapper {
    padding: 140px 0 100px;
}
.employee__block--post {
	display: block;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
	-ms-flex-align: stretch;
    -webkit-box-align: stretch; 
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.employee__block--post--photo {
    -moz-flex: 0 0 30%;
    -ms-flex: 0 0 30%;
    -o-flex: 0 0 30%;
    -webkit-box-flex: 0;
            flex: 0 0 30%;
    max-width:30%;
	display: block;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
}
.employee__block--post--text {
    -moz-flex: 0 0 70%;
    -ms-flex: 0 0 70%;
    -o-flex: 0 0 70%;
    -webkit-box-flex: 0;
            flex: 0 0 70%;
    max-width: 70%;
    padding: 80px;
    position: relative;
}
.employee__block--post--text h1 {
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
    max-width: 90%;
}
.employee__block--post--text .title {
    font-size: 24px;
    text-transform: uppercase;
    margin: 15px 0 25px;
}
.employee__block--post--text hr {
    width: 60%;
    margin-left: 0;
    height: 3px;
    border: 1px solid #a8a8a8;
    background: white;
    margin-right: auto;
}
.employee__block--post--text .contact-info {
    margin-top: 30px;
    font-size: 18px;
}
.employee__block--post--text .contact-info strong {
    text-transform: uppercase;
}
.employee__block--post--text .contact-info a {
    color: #2a2a2a;
}
.employee-social-media {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    margin-top: 50px;
    margin-right: 50px;
}
.more-crewmembers a {
    color: white;
    font-weight: 600;
}
.more-crewmembers>div {
    -moz-flex: 0 0 33.333%;
    -ms-flex: 0 0 33.333%;
    -o-flex: 0 0 33.333%;
    -webkit-box-flex: 0;
            flex: 0 0 33.333%;
    max-widht:33.333%;
	display: block;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.more-crewmembers {
	display: block;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
	-ms-flex-align: center;
    -webkit-box-align: center; 
    align-items: center;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    padding: 20px 30px;
}
.more-crewmembers>div:nth-of-type(3) {
    text-transform: uppercase;
    -ms-flex-pack: flex-end;
    -webkit-box-pack: flex-end;
    justify-content: flex-end;
}
.more-crewmembers>div:nth-of-type(1) {
    -ms-flex-pack: flex-start;
    -webkit-box-pack: flex-start;
    justify-content: flex-start;
    text-transform: uppercase;
}









/* COOKIES */
body div#hs-eu-cookie-confirmation{
    background:#ff94a3 !important;
    color:white !important;
    position:fixed !important;
    bottom:0 !important;
    top:auto !important;
    border-top:1px solid #ff94a3;
    
}
body div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner p {
    color:white !important;
    text-shadow:none !important;
    margin-bottom:0 !important;
    margin-right:20px !important;
    -webkit-box-flex: 3;
    -webkit-flex: 3;
        -ms-flex: 3;
            flex: 3;
}
body div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner div#hs-eu-confirmation-buttons-area {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
body div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner a#hs-eu-confirmation-button{
    color:#2a2a2a !important;
    padding:10px 15px !important;
    border-radius:0 !important;
    background:white !important;
    border:0 !important;
    box-shadow:none !important;
    text-shadow:none !important;
}
body div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner a#hs-eu-confirmation-button:hover{
    opacity:0.9 !important;
}
body div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner{
    max-width:1200px !important;
    margin:0 auto !important;
    display:-webkit-box !important;
    display:-webkit-flex !important;
    display:-ms-flexbox !important;
    display:flex !important;
    padding:20px !important;
    -webkit-box-align:center !important;
    -webkit-align-items:center !important;
        -ms-flex-align:center !important;
            align-items:center !important;
    -webkit-box-pack:center !important;
    -webkit-justify-content:center !important;
        -ms-flex-pack:center !important;
            justify-content:center !important;
}















@media screen and (max-width: 1200px) {
    .employees__block {
        -moz-flex: 0 0 25%;
        -ms-flex: 0 0 2%;
        -o-flex: 0 0 25%;
        -webkit-box-flex: 0;
                flex: 0 0 25%;
        max-width: 25%;
    }
}

@media screen and (max-width: 1000px) {
    .employees__block {
        -moz-flex: 0 0 33.33333%;
        -ms-flex: 0 0 33.33333%;
        -o-flex: 0 0 33.33333%;
        -webkit-box-flex: 0;
                flex: 0 0 33.33333%;
        max-width: 33.3333%;
    }
    
    .employee__block--post--photo {
        -moz-flex: 0 0 40%;
        -ms-flex: 0 0 40%;
        -o-flex: 0 0 40%;
        -webkit-box-flex: 0;
                flex: 0 0 40%;
        max-width: 40%;        
    }
    
    .employee__block--post--text {
        -moz-flex: 0 0 60%;
        -ms-flex: 0 0 60%;
        -o-flex: 0 0 60%;
        -webkit-box-flex: 0;
                flex: 0 0 60%;
        max-width: 60%;        
    }
}

@media screen and (max-width: 800px) {
    .employee__block--post {
        display: block;
    }
    
    .employee__block--post--photo {
        height: 70vh;
        max-width: 100%;
        width: 100%;
    }
    
    .employee__block--post--text {
        width: 100%;
        max-width: 100%;
    }
}

@media screen and (max-width: 700px) {
    .employees__block {
        -moz-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        -o-flex: 0 0 50%;
        -webkit-box-flex: 0;
                flex: 0 0 50%;
        max-width: 50%;
    }
}

@media screen and (max-width: 600px) {
    .employee__block--post--text {
        padding: 30px;
    }
    
    .more-crewmembers {
        display: block;
    }
    
    .more-crewmembers>div {
        margin: 20px 0;
    }
}

@media screen and (max-width: 500px) {
    .employees__block {
        -moz-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        -o-flex: 0 0 100%;
        -webkit-box-flex: 0;
                flex: 0 0 100%;
        max-width: 100%;
    }
}








/************
* CTA BLOCK *
************/
.cta__block--wrapper h2 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 40px;
    text-transform: uppercase;
}
/*.cta__block--wrapper .btn.btn--gradient {
    border: 0px;
    background: #f0305e !important;
    background: -moz-linear-gradient(left, #f0305e 0%, #e05649 64%, #e05649 64%) !important;
    background: -webkit-linear-gradient(left, #f0305e 0%,#e05649 64%,#e05649 64%) !important;
    background: linear-gradient(to right, #f0305e 0%,#e05649 64%,#e05649 64%) !important;
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f0305e', endColorstr='#e05649',GradientType=1 ) !important;
}*/

/* CTA 50/50 */
.cta-headline__block h2 {
    margin: 0;
    font-weight: bold;
}
.cta-headline__block {
    padding: 0 20px;
}
.cta-headline__block--wrapper {
	display: block;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    
	-ms-flex-align: center;
    -webkit-box-align: center; 
    align-items: center;
    
    -ms-flex-pack: center;
    -webkit-box-pack: center;
	justify-content: center;
	
    -ms-flex-wrap: wrap;	
    flex-wrap: wrap;
}








/*******
* MAPS *
*******/
.map__block--wrapper {
    height: 400px;
}
#map{
    height:100%;
}





@media screen and (max-width: 900px) {
    .contact-top__block--wrapper>div {
        display: block;
    }
    
    .contact-top__block {
        margin: 0 auto;
        width: 100%;
        max-width: 600px;
    }
}

@media screen and (max-width: 800px) {
    .cta-headline__block--wrapper {
        display: block;
        text-align: center;
    }
    
    .cta-headline__block {
        padding: 10px 20px;
    }
}





/*************************
* TEXT IMAGE BLOCK 45/55 *
*************************/
.text-image__block--wrapper>div {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
	-ms-flex-align: stretch;
    -webkit-box-align: stretch; 
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.text-image__block--image {
    -moz-flex: 0 0 45%;
    -ms-flex: 0 0 45%;
    -o-flex: 0 0 45%;
    -webkit-box-flex: 0;
            flex: 0 0 45%;
    max-width: 45%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.text-image__block--text {
    -moz-flex: 0 0 55%;
    -ms-flex: 0 0 55%;
    -o-flex: 0 0 55%;
    -webkit-box-flex: 0;
            flex: 0 0 55%;
    max-width: 55%;
}
.text-image__block--text h2 {
    text-transform: uppercase;
    font-weight: 300;
}











/**************
* LATEST JOBS *
**************/
.latest-jobs__block {
    position: relative;
    display: inline-block;
    width: 100%;
    border: 1px solid #eff2f5;
    overflow: hidden;
}

.latest-jobs__content {
    padding: 40px 60px;
    position: relative;
    background: #fff;
    z-index: 400;
    left: 0;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;    
}

.latest-jobs__block:hover .latest-jobs__content {
    left: -40px;
}

.latest-jobs__block .date {
    font-size: 12px;
    color: #707070;
    font-weight: 400;
}
.latest-jobs__block h3 {
    text-transform: uppercase;
    font-weight: bold;
    margin: 5px 0;
}
.latest-jobs__block .info {
    color: #065ad9;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
}
.latest-jobs__block .read-more:after {
    content: '';
    /*position: absolute;*/
    width: 10px;
    height: 10px;
    background: transparent;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.latest-jobs__block .read-more {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 40px;
    color: white;
    font-size: 30px;
    font-weight: bold;
	display: block;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
	-ms-flex-align: center;
    -webkit-box-align: center; 
    align-items: center;
    -ms-flex-pack: center;
	justify-content: center;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: right;
            transform-origin: right;
}
.latest-jobs__block:hover .read-more{
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}


/* SORTER */
.latest-jobs__block--sorter {
    text-transform: uppercase;
    text-align: right;
    border-top: 2px solid;
    border-bottom: 2px solid;
    border-color: #f1f1f1;
}
.latest-jobs__block--sorter .active {
    font-weight: bold;
}
.latest-jobs__block--sorter span {
    cursor: pointer;
    padding: 0 10px;
}

.job-search input {
    padding: 15px 15px 15px 45px;
    background: #f7f7f7;
    border: 0;
    font-size: 14px;
    width: 300px;
    background-image: url(//cdn2.hubspot.net/hubfs/2717734/icons/Find_Small.png);
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: 15px center;
    -webkit-appearance: none;
}
.job-search {
    z-index: 1;
    position: relative;
    text-align: center;
    padding: 30px;
}









/************
* FAQ BLOCK *
************/
.faq__block--wrapper {
    display: inline-block;
    width: 100%;
    padding: 60px 0 0;
}
.faq__block--wrapper--outer h2 {
    font-weight: bold;
}
.faq__block--wrapper--outer .hr--gradient-pink {
    width: 150px;
}
.faq__block .question h3 {
    margin: 0 0 10px;
    font-weight: bold;
    text-transform: uppercase;
}
.faq__block {
    margin-bottom: 40px;
}
.faq__block .answer {
    padding-left: 30px;
}
.faq__block--nav a {
    display: block;
    font-weight: bold;
    text-transform: uppercase;
    color: black;
    padding: 3px 0;
}
.faq__block--wrapper--outer {
    display: block;
    height: 420px;
    overflow: hidden;
    position:relative;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
}
.faq__block--wrapper--outer:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 1;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,0)),color-stop(62%, rgba(247,247,247,0.98)),color-stop(63%, rgba(247,247,247,1)));
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(247,247,247,0.98) 62%,rgba(247,247,247,1) 63%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#f7f7f7',GradientType=0 );
    opacity: .8;
}
.faq__block--show-more {
    position: absolute;
    width: 100px;
    height: 50px;
    bottom: 0;
    cursor: pointer;
    left: 50%;
    margin-left: -50px;
    z-index: 2;
    border-radius: 100px 100px 0 0;
    background-image: -ms-linear-gradient( 69deg, rgb(6,90,217) 0%, rgb(77,168,232) 100%);
}
.faq__block--show-more:after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-right: 3px solid white;
    border-bottom: 3px solid white;
    left: 50%;
    margin-left: -5px;
    top: 50%;
    margin-top: -5px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.open-faq .faq__block--show-more{
    display:none;
}









/*********************
LANDING PAGE - INBOUND
*********************/
.landing-page__nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 30px 20px;
}
.landing-page__nav img {
    max-width: 130px;
}
.landing-page__block-inbound .landing-page__block--right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 100px 100px 100px 100px;
    background: white;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    position:relative;
    max-width:40%;
}
.landing-page__block-inbound .small-quote blockquote:before {
    margin-top: -15px;
}
.landing-page__block-inbound .landing-page__block--left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 60%;
            flex: 0 0 60%;
    padding: 100px 150px 100px 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    position:relative;
    max-width:60%;
}
.landing-page__block--left>div {
    width: 100%;
    max-width: 920px;
}
.landing-page__block--right>div {
    width: 100%;
    max-width: 500px;
}
.landing-page__block--right h3 {
    font-size: 18px;
    text-align: center;
    margin-bottom: 30px;
}
.landing-page__block-inbound,
.landing-page__block-inbound>.span12>div>.row-fluid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    min-height: 100vh;
    height:100%;
}
.landing-page__block-inbound .landing-page__block--left>div,
.landing-page__block-inbound .landing-page__block--right>div{
    width: 100%;
}
.landing-page__block--right form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color:#2a2a2a;
}
.landing-page__block-inbound .hs_cos_wrapper_type_rich_text li:before {
    width: 20px;
    height: 20px;
    margin-left: 10px;
}
.landing-page__block-inbound ul li:before {
    width: 8px !important;
    height: 8px !important;
    background: white;
    margin-top: 11px;
    margin-left: 6px !important;
    border-radius: 100%;
}
.landing-page__block-inbound ul li:after {
    width: 14px;
    height: 14px;
    border-radius: 100%;
    border: 3px solid white;
    margin-top:5px;
}
.landing-page__block-inbound ul li:after, .landing-page__block-inbound ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
}
.landing-page__block-inbound ul li {
    padding-left: 30px;
    position: relative;
}
.landing-page__block-inbound ul {
    list-style-type: none;
    padding: 0;
}
.landing-page__block-inbound .hs_cos_wrapper_type_rich_text ul {
    margin-bottom: 60px;
}
.landing-page__block-inbound .hs_cos_wrapper_type_rich_text li {
    font-size: 22px;
    margin: 20px 0;
}
.landing-page__block-inbound .hs_cos_wrapper_type_rich_text p {
    font-size: 22px;
}
.landing-page__block-inbound .customer-case__block {
    max-width: 100%;
}
.landing-page__block--right:after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -50px;
    margin-left: -50px;
    width: 100px;
    height: 100px;
    background: #f7f7f7;
    border-radius: 100%;
    -webkit-box-shadow: 3px 5px 10px rgba(0,0,0,.1);
            box-shadow: 3px 5px 10px rgba(0,0,0,.1);
}
.landing-page__block--right:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    margin-left: -16px;
    margin-top: -12px;
    width: 20px;
    height: 20px;
    border-right: 5px solid #2a2a2a;
    border-bottom: 5px solid #2a2a2a;
    z-index: 9;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

.landing-page__block--advanced h3 {
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
}
.landing-page__block--advanced a {
    color: white;
    text-decoration: underline;
}
.landing-page__block--advanced {
    background: #ff94a3;
    padding: 20px;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
}
.sticky-container .text-container {
    margin-top: 0;
}
.landing-page__block--advanced form input.hs-button {
    border-color: white !important;
    background: white !important;
}
.advanced-landingpage footer .white {
    background: #f7f7f7;
}

.landing-page__block--advanced.sticky {
    position: fixed;
    right: 0;
    bottom: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-animation:stickyForm .6s ease;
            animation:stickyForm .6s ease;
    -webkit-animation-fill-mode:forwards;
            animation-fill-mode:forwards;
    z-index: 99;
}

@-webkit-keyframes stickyForm{
    from{-webkit-transform: translateX(100%);transform: translateX(100%);}
    to{-webkit-transform: translateX(0%);transform: translateX(0%);}
}

@keyframes stickyForm{
    from{-webkit-transform: translateX(100%);transform: translateX(100%);}
    to{-webkit-transform: translateX(0%);transform: translateX(0%);}
}


/*************
THANK YOU PAGE
*************/
.thank-you-body{
    background:#f7f7f7;
}
.thank-you__block--top .blurb {
    margin: 20px auto 40px;
}
.thank-you__block--top>div:last-child {
    padding: 60px;
    display:inline-block;
    width:100%;
}
.thank-you__block--top>div:first-child {
    height: 300px;
}
.thank-you-body .btn {
    /*margin-top: 30px;*/
}
.thank-you-body .page-header.section-header {
    margin-bottom:30px;
}












/********************
* SYSTEM ERROR PAGE *
********************/
.system-page {
    background-image: url('//cdn2.hubspot.net/hubfs/2717734/Background/system-page-bg.jpg');
    padding: 130px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-height: 80vh;
}
.system-page .main-content {
    background: white;
    color: black;
    padding: 50px;
}
.overlay.system-page h2 {
    color: inherit;
}












/*****
* EB *
*****/
.flex {
    display: block;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: justify;
    -ms-flex-align: stretch;
    -webkit-box-pack: justify;
            justify-content: space-between;
    align-items: stretch;
    -webkit-justify-content: space-between;
    -webkit-align-items: stretch;
	position: relative;
    -webkit-box-pack: space-between;
    -webkit-box-align: stretch; 
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.flex--right {
    -ms-flex-direction: row-reverse;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
            flex-direction: row-reverse;
}
.flex .column {
    -moz-flex: 1;
    -ms-flex: 1;
    -o-flex: 1;
    -webkit-box-flex: 1;
            flex: 1;
}

.flex .column--3 {
    max-width: 25%;
    -moz-flex: 1 0 30%;
    -ms-flex: 1 0 30%;
    -o-flex: 1 0 30%;
    -webkit-box-flex: 1;
            flex: 1 0 30%; 
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.container--narrow {
    max-width: 640px;
}

.container--narrow.half-half {
    max-width: 700px;
}

.container--medium {
    max-width: 850px;
}

.container--center {
    text-align: center;
}

.flex .column--5 {
    max-width: 41.6666%;
}

.flex--left .column--9 {
    padding-left: 115px;
}

.flex--right .column--9 {
    padding-right: 115px;
}

.padding--top {
    padding: 100px 0 50px 0;
}

.padding--bottom {
    padding: 50px 0 100px 0;
}

.image {
    background-size: cover;
    background-position: center center;
}

.column__inner {
    max-width: 550px;
    padding: 70px;
}

.column--7 .column__inner {
    max-width: 770px;
}

.btn--gradient {
    font-size:16px;
    font-family:'Raleway', sans-serif !important;
    font-weight:600 !important;
    padding:10px 35px;
    background: #feb683 !important;
    background: linear-gradient(135deg, #feb683 36%,#fea3b0 100%) !important;
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#feb683', endColorstr='#fea3b0',GradientType=1 ) !important;
    border: 0;
}
/* Quotes */

.double-quote {
    display: block;
}

.double-quote__quote {
    display: block;
    vertical-align: top;
    width: 45%;
}

.double-quote__quote:first-of-type {
    float: left;
}

.double-quote__quote:last-of-type {
    float: right;
}

.container--medium:after {
    content: "";
    display: block;
    clear: both;
}

.double-quote blockquote {
    font-size: 20px;
    font-weight: 600;
    font-style: normal;
    padding-left: 90px;
}

.double-quote blockquote:before {
    font-size: 100px;
    font-weight: 800;
    font-style: normal;
    font-family: 'Nunito Sans', sans-serif;
    color: #ff95a0;
    background: linear-gradient(300deg, #ffa875, #ff95a0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    line-height: 80px;
    top: -25px;
}

.double-quote__image {
    width: 65px;
    height: 65px;
    background-size: cover;
    background-position: top center;
    border-radius: 100%;
    float: left;
    margin-right: 25px;
}

.double-quote__name {
    display: block;
    padding: 10px 0 0 0;
    font-size: 14px;
    font-weight: 800;
    color: #4da8e8;
}

.double-quote__title {
    display: block;
    font-size: 12px;
    color: #b9b9b9;
    text-transform: uppercase;
    font-weight: 800;
}

/* Service category */

.flex--left.half-half .image {
    margin-right: 50px;
}

.flex--right.half-half .image {
    margin-left: 50px;
}

.sub-links {
    background: #fff;
    -webkit-box-shadow: 11px 11px 12px -1px rgba(0,0,0,0.06);
    box-shadow: 11px 11px 12px -1px rgba(0,0,0,0.06);
    position: relative;
    margin-bottom: 80px;
}

.links__heading h2 {
    font-size: 25px;
    font-weight: 100;
    text-align: center;
    padding: 22px;
    border-bottom: 2px solid #f1f1f1;
    margin: 0;
}

.service-links {
    position: relative;
    overflow: hidden;
}

.service-link .column--6 {
    padding: 0 10px;
}

.service-link-heading {
    width: 30%;
    text-align: center;
    padding: 20px 30px;
    border-bottom: 2px solid #f1f1f1;
    cursor: pointer;
    width: 25%;
    word-break: break-word;
    text-align: left;
}

.active .service-link-heading {
    background: #4da8e8;
    background: linear-gradient(45deg,#4da8e8 0%,#2178df 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4da8e8',endColorstr='#2178df',GradientType=1);
    color: #fff;
    font-weight: 700;
}

.active .service-link-heading h3 {
    font-weight: 800;
}

.active .service-link-heading .links-icon-white {
    display: inline-block;
}

.active .links-icon {
    display: none;
}

.service-link-heading img {
    max-width: 25px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.service-link-heading .links-icon-white {
    display: none;
}

.service-link-heading h3 {
    display: inline-block;
    vertical-align: middle;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.service-link-body {
    width: 75%;
    position: absolute;
    top: 0;
    right: 0;
    padding: 50px 40px;
    visibility: hidden;
    right: -100%;
   	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	overflow: hidden;
	border-left: 2px solid #f1f1f1;;
}

.active .service-link-body {
    visibility: visible;
    right: 0;
}

.cols {
    -webkit-columns: 2; /* Chrome, Safari, Opera */ /* Firefox */
    columns: 2;
    -webkit-column-gap: 65px; /* Chrome, Safari, Opera */ /* Firefox */
    column-gap: 65px;
}

/* Other service links */

.other-service-links ul,
.other-service-links li a {
    display: block;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: justify;
    -ms-flex-align: stretch;
    -webkit-box-pack: justify;
            justify-content: space-between;
    align-items: stretch;
    -webkit-justify-content: space-between;
    -webkit-align-items: stretch;
    -webkit-box-pack: space-between;
    -webkit-box-align: stretch; 
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0;
}

.other-service-links ul {
    padding: 0;
}

.other-service-links li {
    list-style-type: none;
    -moz-flex: 1 0 50%;
    -ms-flex: 1 0 50%;
    -o-flex: 1 0 50%;
    -webkit-box-flex: 1;
            flex: 1 0 50%;
    max-width: 50%;
    border-right: 2px solid #f1f1f1;
    border-bottom: 2px solid #f1f1f1;
    position: relative;
    overflow: hidden;
}

.other-service-links li:nth-of-type(1),
.other-service-links li:nth-of-type(2) {
    border-top: 2px solid #f1f1f1;
}

.other-service-links li a {
    padding: 60px 30px 60px 60px;
    background: #fff;
    position: relative;
    left: 0;
    z-index: 500;
   	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}


.other-service-links li:hover a {
    left: -42px;
}

.other-service-links li:after {
    content: ">";
    display: block;
    position: absolute;
    right: 0;
    background: rgba(255,160,168,0.95);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,160,168,0.95)), color-stop(100%, rgba(255,177,128,0.95)));
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255,160,168,0.95)), to(rgba(255,177,128,0.95)));
    background: linear-gradient(to bottom, rgba(255,160,168,0.95) 0%, rgba(255,177,128,0.95) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffa0a8', endColorstr='#ffb180', GradientType=0 );
    top: 0;
    height: 100%;
    display: block;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    padding: 0 17px;
    color: #fff;
    font-weight: 700;
    right: -43px;
    -webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.other-service-links li:hover:after {
    right: 0;
}

.other-service-links .icon {
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
    display: block;
    width: 50px;
    height: 50px;
    -moz-flex: 0 0 50px;
    -ms-flex: 0 0 50px;
    -o-flex: 0 0 50px;
    -webkit-box-flex: 0;
            flex: 0 0 50px;
}

.other-service-links li div {
    -moz-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    -o-flex: 1 1 auto;
    -webkit-box-flex: 1;
            flex: 1 1 auto;
    padding: 0 0 0 30px;
    max-width:calc(100% - 50px);
}

.other-service-links .heading {
    font-size: 19px;
    text-transform: uppercase;
    font-weight: 800;
    color: #535353;
    display: block;
}

.other-service-links .description {
    font-size: 14px;
    color: #535353;
}

/* Process */

.process__number {
    font-size: 100px;
    display: block;
}

.process__heading {
    text-transform: uppercase;
    margin-top: 0;
    font-size: 16px;
    font-family: 'Nunito Sans', sans-serif;
}

.process p {
    font-size: 14px;
}

.process .flex .column--3 {
    max-width: 300px;
    -moz-flex: 1 0 23%;
    -ms-flex: 1 0 23%;
    -o-flex: 1 0 23%;
    -webkit-box-flex: 1;
            flex: 1 0 23%;
    margin: 0 1%;
}

/* Logotypes */

.logotypes {
    margin-bottom: 40px;
}

.logotypes img {
    max-width: 100px;
    margin: 10px;
}

.logotype__blurb {
    max-width: 330px;
    margin: 20px auto 40px auto;
}

.heading--bold {
    color: #535353;
    font-size: 24px;
    font-weight: 800;
}

.heading--small {
    font-size: 19px;
}

.heading--large {
    font-weight: 100;
    text-transform: uppercase;
    font-size: 30px;
}

.heading--massive {
    font-size: 36px;
}

/* Wide image */

.wide-image {
    width: 100%;
    height: 30vw;
    background-position: top center;
}

/* Work here */

/*.work-here .benefits--top .benefits__block {
    -webkit-flex: 1 0 50%;
    -moz-flex: 1 0 50%;
    -ms-flex: 1 0 50%;
    -o-flex: 1 0 50%;
    flex: 1 0 50%;
}

.work-here .benefits--top .benefits__block:nth-of-type(3) {
    max-width: 70%;
    margin: 50px auto 0 auto;    
}

@media screen and (max-width: 700px) {
    .work-here .benefits--top .benefits__block {
        -webkit-flex: 1 0 100%;
        -moz-flex: 1 0 100%;
        -ms-flex: 1 0 100%;
        -o-flex: 1 0 100%;
        flex: 1 0 100%;
    }    
    
    .work-here .benefits--top .benefits__block:nth-of-type(3) {
        max-width: 100%;
    }
}*/

/* Single service */

.single-service .benefits__block {
    min-width: 45%;
    margin: 10px 0;
    padding: 0;
    max-width: 40%;
}

.single-service .benefits__block--icon {
    width: 15px;
    height: 15px;
}

.single-service .benefits__block--text {
    padding: 0 0 0 15px;
    font-weight: 600;
}

/* Benefits */

.white-opacity {
    background: rgba(255, 255, 255, 0.95);
    color: #505050;
}

.blue-gradient-opacity {
    background: rgba(77,168,232,0.9);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(77,168,232,0.9)), color-stop(100%, rgba(6,90,217,0.9)));
    background: -webkit-gradient(linear, left top, right top, from(rgba(77,168,232,0.9)), to(rgba(6,90,217,0.9)));
    background: linear-gradient(to right, rgba(77,168,232,0.9) 0%, rgba(6,90,217,0.9) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4da8e8', endColorstr='#065ad9', GradientType=1 );
    color: #fff;
}

.blue-gradient-opacity-opposite {
    background: rgba(6,90,217,0.95);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(6,90,217,0.95)), color-stop(100%, rgba(77,168,232,0.95)));
    background: -webkit-gradient(linear, left top, right top, from(rgba(6,90,217,0.95)), to(rgba(77,168,232,0.95)));
    background: linear-gradient(to right, rgba(6,90,217,0.95) 0%, rgba(77,168,232,0.95) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#065ad9', endColorstr='#4da8e8', GradientType=1 );
    color: #fff;
    margin: -1px 0;
}

.benefits__block {
    -moz-flex: 1 0 25%;
    -ms-flex: 1 0 25%;
    -o-flex: 1 0 25%;
    -webkit-box-flex: 1;
            flex: 1 0 25%;
}

.blue-gradient-opacity .benefits__block {
    max-width: 600px;
    margin: 0 auto;
}

.wrapper,
.hs_cos_wrapper_type_custom_widget {
	-webkit-transition: all 0.2s ease-in-out 0.1s;
	-moz-transition: all 0.2s ease-in-out 0.1s;
	-o-transition: all 0.2s ease-in-out 0.1s;
	transition: all 0.2s ease-in-out 0.1s;    
}


.flex:after,
.wrapper:after {
    content:"";
    display: block;
    clear: both;
}

.blue-gradient-opacity-opposite .flex:after {
    display: none;
}

.benefits__title {
    font-family: "Nunito", sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 800;
}

.benefits--bottom {
    margin-top: 360px;
}

/* Media library */

.library-container  {
    display: block;
}

.media-library__filter {
    text-transform: uppercase;
    text-align: right;
    border-top: 2px solid;
    border-bottom: 2px solid;
    border-color: #f1f1f1;    
}

.media-library__filter .active {
    font-weight: bold;
}

.media-library__filter span {
    padding: 0 10px;
    cursor: pointer;
}

.media-library.latest-jobs__block {
    padding: 0;
}

.library-img {
    -moz-flex: 1 0 30%;
    -ms-flex: 1 0 30%;
    -o-flex: 1 0 30%;
    -webkit-box-flex: 1;
            flex: 1 0 30%;
    background-size: cover;
    background-position: center center;
}

.library-content {
    -moz-flex: 1 0 70%;
    -ms-flex: 1 0 70%;
    -o-flex: 1 0 70%;
    -webkit-box-flex: 1;
            flex: 1 0 70%;
    padding: 40px 60px;
    border-top: 2px solid #eff2f5;
    border-left: 2px solid #eff2f5;
    border-right: 2px solid #eff2f5;
    background: #fff;
    z-index: 400;
    left: 0;
    position: relative;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.media-library:hover .library-content {
    left: -40px;
}

.library-container > div > div > span .hs_cos_wrapper:last-of-type .library-content {
    border-bottom: 2px solid #eff2f5;
}

.library-content p {
    font-size: 14px;
}

.latest-jobs__block,
.media-library {
    overflow: hidden;
    max-height: 400px;
    -webkit-transition: transform 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	border: 0;
}

.latest-jobs__block {
    overflow: hidden;
    max-height: 400px;
    -webkit-transition: transform 0s ease-in-out;
	-webkit-transition: all 0s ease-in-out;
	transition: all 0s ease-in-out;
	border: 0;
}

.minimize {
    max-height: 0;
    padding:0 60px;
    display:block;
}

.job-listing .minimize {
    padding: 0 60px;
}

.latest-jobs__block .read-more.touch {
    /*transform: scaleX(1);*/
}

/* Job listing */

.latest-jobs__block--sorter:after {
    content: "";
    display: inline-block;
    clear: both;
}

.filter1 {
    float: left;
}

.filter2 {
    float: right;
}

.filter-title {
    display: inline-block;
    font-size: 14px;
    color: #ccc;
    font-weight: 700;
}

.job-listing .latest-jobs__block {
    display: block;
    margin: 0;
    border-bottom: 1px solid #f6f6f6;
}

.latest-jobs__block.minimize {
    border-bottom: 0;
}


.latest-jobs__block--sorter .container {
    max-width: 100%;
}

.filter1,
.filter2 {
    display: block;
    text-align: center;
    color: #fff;
    width: 50%;
    position: relative;
    padding: 20px 0;
    cursor: pointer;
}


.filter1:after,
.filter2:after {
    content: "▴";
    display: inline-block;
    position: absolute; 
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    right: 15px;
    top: 20px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.show-filter.filter1:after,
.show-filter.filter2:after { 
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

.filter1,
.filter1 .all-filters {
    background: #feb683;
    background: linear-gradient(135deg,#feb683 36%,#fea3b0 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#feb683',endColorstr='#fea3b0',GradientType=1);

}

.filter2,
.filter2 .all-filters{
    background: #fff;
    color: #333;
    
}

.filter-title {
    display: block;
    font-size: 16px;
    color: #fff;
}

.filter2 .filter-title {
    color: #333;
}

.all-filters {
    display: block;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out; 
	overflow: hidden;
	position: absolute;
	width: 100%;
	margin-top: 20px;
	z-index: 700;
}

.small-padding-wrapper {
    z-index: 100;
    position: relative;
}

.filter1 span,
.filter2 span {
    display: block;
    padding: 10px 20px;
    
}  

.show-filter .all-filters {
    opacity: 1;
    visibility: visible;
    max-height: 300px;
    overflow: scroll;
}



.latest-jobs__block--sorter,
.latest-jobs__block--sorter .container {
    padding: 0;
    border: 0;
}


/* Top field */

.top__inner-block {
    margin-bottom: 0px;
    padding-top: 0px;
}

/* Blog listing */

.blog-section {
    background: #f5f5f5;
}

.post-listing.flex {
    max-width: 1135px;
    margin: 0px auto;
    padding: 50px 20px;
    -webkit-box-pack: flex-start;
    -ms-flex-pack: start;
        justify-content: flex-start;
}

.main-blog .post-item {
    -moz-flex: 1 0 30%;
    -ms-flex: 1 0 30%;
    -o-flex: 1 0 30%;
    -webkit-box-flex: 1;
            flex: 1 0 30%;
    max-width: 32%;
    margin: 1% 1% 30px 1%;
}

.main-blog .post-item:first-of-type {
    display: none;
}

.main-blog .featured-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center center;
    margin-bottom: 25px;
}

.main-blog .date {
    color: #6f6f6f;
    font-size: 14px;
    padding: 10px 0;
    display: inline-block;
}

.topics {
    display: inline-block;
}

.topics a {
    color: #2a2a2a;
    background: #e5e5e5;
    border-radius: 20px;
    padding: 7px 20px;
    font-size: 11px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    margin: 3px 0px;
    display: inline-block;
    -webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.main-blog .topics a:hover {
    background: #c7c5c5;
}

.main-blog .post-header a {
    text-decoration: none;
    color: #2a2a2a;
    -webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.main-blog .post-header h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 20px 0;
}

.main-blog .post-body p {
    color: #6f6f6f;
    font-size: 16px;
}

.main-blog .read-more {
    color: #ff95a0;
    background: linear-gradient(300deg, #ffa875, #ff95a0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    display: block;
    text-align: right;
    padding: 0;
}

.main-blog .read-more:hover {
    padding: 0 3px 0 0;
}

.blog-pagination {
    display: block;
    clear: both;
}

.filter-bar {
    background: #fff;
    text-align: center;
}

.filter-bar > div {
    display: inline-block;
    margin: 0 -3px;
    position: relative;
}

.filter-bar > div a,
.filter-bar h4 {
    color: #777777;
    text-transform: uppercase;
    font-size: 16px;
    font-family: "Raleway", sans-serif;
    text-decoration: none;
    cursor: pointer;
    padding: 22px 45px;
    display: inline-block;
    font-weight: 400;
}

.filter-bar .top-three li a {
    border-right: 2px solid #f5f5f5;
}

.filter-bar .all-categories h4 {
    padding-left: 45px;
}

.filter-bar .all-categories a {
    padding: 5px 10px;
}

.filter-bar > div li {
    display: inline-block;
}

.filter-bar > .all:hover a {
    color: #fff;
}

.filter-bar .hidden-categories {
    overflow: hidden;
    margin-top: 0px;
    position: absolute;
    background: #fff;
    width: 200px;
    left: 0;
    padding: 10px 0;
    display: none;
}


.filter-bar .all {

}

.filter-bar a.active-topic {
    background: #4da8e8;
    background: linear-gradient(45deg,#4da8e8 0%,#2178df 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4da8e8',endColorstr='#2178df',GradientType=1);
    color: #fff;
}

.filter-bar ul {
    list-style-type: none;
}


.filter-bar h3 {
    display: none;
}

.filter-bar ul,
.filter-bar h4 {
    margin: 0;
    padding: 0;
}

.top-post .container {
    max-width: 1135px;
}

.top-post .flex {
    padding: 70px 0 50px 0;
}

.top-post__content {
    background: #fff;
    padding: 35px 60px;
    color: #6f6f6f;
    -moz-flex: 1 0 40%;
    -ms-flex: 1 0 40%;
    -o-flex: 1 0 40%;
    -webkit-box-flex: 1;
            flex: 1 0 40%;
    max-width: 40%;
}

.main-blog .flex .column {
    margin: 0;
}

.main-blog .top-post .post-header h2 {
    font-size: 30px;
}

.main-blog .top-read-more {
    background: rgba(255,150,159,1);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(255,150,159,1)), color-stop(100%, rgba(255,170,114,1)));
    background: -webkit-gradient(linear, left top, right top, from(rgba(255,150,159,1)), to(rgba(255,170,114,1)));
    background: linear-gradient(to right, rgba(255,150,159,1) 0%, rgba(255,170,114,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff969f', endColorstr='#ffaa72', GradientType=1 );
    display: inline-block;
    padding: 10px 75px;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    -webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
    margin-top: 30px;
    border-radius: 20px;
    font-weight: 800;
}

.main-blog .top-read-more:hover {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
}

.main-blog .flex .column.feat-img {
    -moz-flex: 1 0 60%;
    -ms-flex: 1 0 60%;
    -o-flex: 1 0 60%;
    -webkit-box-flex: 1;
            flex: 1 0 60%;    
    background-size: cover;
    background-position: center center;
}

.column {
    float: left;
    display: block;
}

.column--6 {
    width: 50%;
}

/* Blog post */

.blog-post {
    max-width: 750px;
    margin: 0 auto;
    color: #222;
    padding: 35px 15px 50px 15px;
}

.blog-feat-img {
    margin: 20px 0;
}

.blog-post p {
    
}

.blog-post h1 {
    font-size: 50px;
    font-weight: 700;
    text-transform: none;
    line-height: 60px;
    margin-bottom: 35px;
    margin-top: 20px;
}

.blog-post h1 {
    color: #4da8e8;
    font-weight: 900;
}

.blog-post h2,
.blog-post h3 {
    color: #2a2a2a;
}

.blog-post h2 {
    font-size: 36px;
    font-weight: 100;
    text-transform: none;
}

.blog-post h3 {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 700;
}

.blog-post p a,
.blog-post ul a {
    color: #4da8e8;
    text-decoration: none;
    font-weight: 700;
}

.author-data > span {
    margin-right: 15px;
}

.blog-post .author-link {
    color: #ffaa72;
    text-decoration: none;
    font-weight: 700;
}

.blog-post img {
    min-width: 100%;
}

.prev-next {
    background: #fff;
    text-align: center;
}

.prev-next a,
.prev-next .no-next-post{
    padding: 20px;
    display: inline-block;
    border-right: 2px solid #f5f5f5;
    border-left: 2px solid #f5f5f5;
    font-size: 16px;
    text-transform: uppercase;
    color: #777777;
    text-decoration: none;
    margin: 0 -3px;
}
.prev-next .no-next-post {
    background: #fbfbfb;
    color: #b7b7b7;
    cursor: wait;
}
.prev-next a:hover {
    color: #fff;
    font-weight: 800;
    background: #4da8e8;
    background: linear-gradient(45deg, #4da8e8 0%,#2178df 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4da8e8', endColorstr='#2178df',GradientType=1 )
}

.top-black {
    height: 68px;
    background: #f5f5f5;
    width: 100%;
}

.related-posts {
    margin-top: 50px;
}


.post-listing.flex {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.hr--gradient-pink {
    width: 100%;
    border: 0;
    height: 4px;
    background: #feb683;
    background: linear-gradient(135deg, #feb683 36%,#fea3b0 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#feb683', endColorstr='#fea3b0',GradientType=1 )
}

.blog-post .small-blog-heading {
    font-size: 21px;
    font-weight: 700;
    text-transform: none;
}

.related-posts__post {
    max-width: 48%;
    margin-top: 20px;
}

.comment.depth-0 {
    border-top: 0 !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.blog-comments {
    margin-top: 50px;
}

#comments-listing,
#comment-form {
    max-width: 660px;
    margin: 0 auto;
}

#comment-form {
    padding: 30px 0;
}

#comments-listing h4 {
    font-family: "Raleway", sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin: 40px 0 18px 0;
}

.comment-reply-to {
    display: none;
}

#comments-listing .comment {
    border-bottom: 1px solid #a8a8a8;
    padding-bottom: 40px;
}

#comments-listing .comment:last-of-type {
    border-bottom: 0;
}

#comment-form label {
    display: none;
}

#comment-form .hs-form-field {
    margin: 10px 0;
}

#comment-form input[type="text"],
#comment-form input[type="email"],
#comment-form textarea {
    padding: 20px 15px;
    border: 0;
    font-size: 16px;
    background: #eff2f5;
    color: #999;
    border-radius: 20px;
    width: 100%;
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    -webkit-box-shadow: inset 9px 9px 9px 0px rgba(36,34,33,0.05);
    box-shadow: inset 9px 9px 9px 0px rgba(36,34,33,0.05);
}

#comment-form input[type="submit"] {
    background: transparent;
    padding: 20px 20px !important;
    font-family: "Raleway", sans-serif;
    border: 2px solid #99d0ff;
    width: 99%;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 20px;
}

#comment-form .hs_submit {
    margin-top: -17px;
}

.form-columns-2,
.form-columns-1 {
    max-width: 100% !important;
}

#comment-form .hs-error-msgs label {
    display: block;
}

#comment-form h3 {
    margin-left: -40px;
    text-transform: none;
    font-size: 21px;
    width: 110%;
}

#comment-form h3:after {
    content: "";
    width: 100%;
    margin-top: 15px;
    margin-bottom: 30px;
    height:  4px;
    display: block;
    background: rgba(118,193,70,1);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(118,193,70,1)), color-stop(100%, rgba(172,241,128,1)));
    background: -webkit-gradient(linear, left top, right top, from(rgba(118,193,70,1)), to(rgba(172,241,128,1)));
    background: linear-gradient(to right, rgba(118,193,70,1) 0%, rgba(172,241,128,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#76c146', endColorstr='#acf180', GradientType=1 );
}



.english-popup {
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 0;
    background: white;
    z-index: 10;
    padding: 20px;
    line-height: 1;
    font-weight: 500;
    border-top: 1px solid #ddd;
}

.english-popup p {
    margin: 0;
}

.english-popup__close {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 40px;
    line-height: 1;
    padding: 7px 20px 3px;
    cursor: pointer;
}





.rekryteringspilotprojektet .hs-cta-wrapper {
    display: inline-block;
    width: 50%;
    float: left;
}
.rekryteringspilotprojektet p:after{
    content:'';
    display:block;
    clear:both;
}
.rekryteringspilotprojektet .hs-cta-wrapper img {
    width: 100%;
    height: auto;
}
.text-container ul li:before {
    content: '';
    position: relative;
    width: 6px;
    height: 6px;
    margin-bottom: 3px;
    border-radius: 100%;
    background: #4da8e8;
    display: inline-block;
    margin-right: 20px;
}
.text-container ul li {
    position: relative;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}
.text-container ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.text-container ul li:nth-of-type(4n+2):before {
    background: #065ad9;
}
.text-container ul li:nth-of-type(4n+3):before {
    background: #ffab6e;
}
.text-container ul li:nth-of-type(4n+4):before {
    background: #ff94a3;
}
.text-container img {
    margin: 30px 0;
}
.text-container .hs-cta-wrapper img {
    margin: 5px 0;
}
.rekryteringspilotprojektet .landing-page__block--advanced {
    background: #ffab6e;
}


/* LANGUAGE SWITCHER */
.widget-type-language_switcher {
    margin: 0 !important;
}
.lang_switcher_class .globe_class a.lang_switcher_link:hover:after,
.nav .navigation--menu.navigation--menu--top ul a:hover{
    color: ;
}
.lang_switcher_class .globe_class .lang_list_class {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    top: auto;
    left: auto;
    -webkit-transform: translateX(0);
       -moz-transform: translateX(0);
        -ms-transform: translateX(0);
         -o-transform: translateX(0);
            transform: translateX(0);
    padding: 0;
    z-index: 9999;
}
.widget-type-language_switcher>div>span {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
       -moz-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}
.lang_switcher_class .lang_list_class:before,
.lang_switcher_class .lang_list_class:after{
    display:none;
}
.lang_switcher_class .globe_class .lang_list_class li:first-child{
    display:none;
}
.lang_switcher_class .globe_class .lang_list_class li {
    background: transparent;
    padding: 0;
    border: 0;
    font-size: 0;
    display: inline-block;
}
.lang_switcher_class .globe_class {
    background: none;
    height: auto;
    width: auto;
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0;
}
.lang_switcher_class .globe_class a.lang_switcher_link.swe:after {
    content: 'Swe';
}
.lang_switcher_class .globe_class a.lang_switcher_link.eng:after {
    content: 'Eng';
}
.lang_switcher_class .globe_class a.lang_switcher_link:after {
    font-size: 16px;
    font-weight: 500;
}
.lang_list_class li a:hover {
    color: white;
    transform: scale(1.1);
}
a.lang_switcher_link {
    font-size: 0px !important;
}
.scrolled .lang_switcher_class {
    border-color: rgba(255,255,255,.3);
}
.lang_switcher_class {
    border-left: 1px solid white;
}
.lang_list_class li a{
    color:white;
    padding:20px;
    display:inline-block;
    line-height:1.5;
}



/* Winner portraits */

.winner-portrait__block--wrapper {
    clear:both;
}

.centered-text {
    text-align:center;
}

.winner-portrait__block {
    width: 33.333336%;
    float:left;
    padding: 10px;
    margin-bottom: 10px;
    text-align: center;
}

.winner-portrait__block--image {
    background-size: cover;
    background-position: center center;
    width: 100%;
    padding-bottom: 100%;
    margin-bottom: 10px;
}





@media screen and (max-width: 1200px) {
    .column.single-service .flex {
        display: block;
    }
    .single-service .benefits__block {
        max-width: 100%;
        margin: 30px 0;
    }
}

@media screen and (max-width: 1100px) {
    .service-link-body .column {
        float: none;
        width: 100%;
    }
    .landing-page__block-inbound .hs_cos_wrapper_type_rich_text p,
    .landing-page__block-inbound .hs_cos_wrapper_type_rich_text li{
        font-size:18px;
    }
    .landing-page__block-inbound .landing-page__block--right,
    .landing-page__block-inbound .landing-page__block--left{
        padding: 100px 40px;
    }
    .landing-page__block--right:after {
        width: 50px;
        height: 50px;
        margin-top: -25px;
        margin-left: -25px;
    }
    .landing-page__block--right:before {
        width: 12px;
        height: 12px;
        border-width: 3px;
        margin-left: -10px;
        margin-top: -7px;
    }
    footer svg {
        top:auto;
        bottom:0;
    }
}

@media screen and (max-width: 1000px) {
    html.open {
        overflow: hidden;
        height:100vh;
        max-height:100%;
    }
    .hamburger-wrapper {
        display: block;
    }
    nav>div {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
    nav .logo__block {
        padding: 20px;
    }
    nav ul {
        display: block;
    }
    .scrolled nav,
    .active-nav nav {
        background: white;
    }
    .scrolled nav .logo__block,
    .active-nav nav .logo__block {
        background: transparent;
    }
    .hamburger-wrapper {
        padding: 20px;
    }
    nav .hs-menu-wrapper>ul>li>a {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,.2);
    }
    .logo__block--color {
        z-index: 1;
        position: relative;
    }
    .open .logo__block .st0,
    .open .logo__block .st1,
    .open .logo__block .st2,
    .open .logo__block .st3,
    .open .logo__block .st5{
        fill:white;
    }
    .logo__block .st4{
        enable-background:new;
    }
    
    nav .main-menu {
        padding: 70px 0;
        display: block !important;
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        width: 100% !important;
        height: 100vh;
        
        -webkit-transform: translateX(100%);
        
                transform: translateX(100%);
        background: #feb683;
        background: linear-gradient(135deg, #feb683 36%,#fea3b0 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#feb683', endColorstr='#fea3b0',GradientType=1 );
    }
    .open nav .main-menu {
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }
    #nav-icon3{
      width: 40px;
      display:block;
      height: 25px;
      position: relative;
      margin: 0 0 0 auto;
      -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
      -webkit-transition: .5s ease-in-out;
      transition: .5s ease-in-out;
      cursor: pointer;
    }
    .scrolled #nav-icon3 span,
    .white-nav #nav-icon3 span{
        background:#2a2a2a;
    }
    .open .scrolled #nav-icon3 span,
    .open .white-nav #nav-icon3 span{
        background:white;
    }
    #nav-icon3 span{
      display: block;
      position: absolute;
      height: 3px;
      width: 100%;
      background: white;
      opacity: 1;
      left: 0;
      -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
      -webkit-transition: .25s ease-in-out;
      transition: .25s ease-in-out;
    }
    
    .active-nav #nav-icon3 span {
        background: #333;
    }
    
    .open .active-nav #nav-icon3 span {
        background: white;
    }
    
    .active-menu #nav-icon3 span{
        background: #0e1b33;
    }
    #nav-icon3 span:nth-child(1) {
      top: 0px;
    }
    #nav-icon3 span:nth-child(2),#nav-icon3 span:nth-child(3) {
      top: 10px;
    }
    #nav-icon3 span:nth-child(4) {
      top: 20px;
    }
    .open #nav-icon3 span:nth-child(1) {
      top: 18px;
      width: 0%;
      left: 50%;
    }
    .open #nav-icon3 span:nth-child(2) {
      -webkit-transform: rotate(45deg);
          transform: rotate(45degm);
    }
    .open #nav-icon3 span:nth-child(3) {
      -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
    }
    .open #nav-icon3 span:nth-child(4) {
        top: 18px;
        width: 0%;
        left: 50%;
    }
    nav .hs-menu-wrapper>ul>li>a:hover{
        -webkit-transform:scale(1);
                transform:scale(1);
    }
    .show-kids:after {
        content: '';
        position: absolute;
        top: 30px;
        margin-top: -5px;
        height: 10px;
        width: 10px;
        border-right: 2px solid white;
        border-bottom: 2px solid white;
        -webkit-transform: rotate(45deg);
                transform: rotate(45deg);
        left: 50%;
        margin-left: -5px;
        -webkit-transition: all .2s ease;
        transition: all .2s ease;
    }
    .show-kids {
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        width: 60px;
        height: 100%;
        background: rgba(255,255,255,.05);
        border-left: 1px solid rgba(255,255,255,.1);
        -webkit-transition: all .2s ease;
        transition: all .2s ease;
    }
    .show-kids-show .show-kids:after {
        -webkit-transform: rotate(-135deg);
                transform: rotate(-135deg);
    }
    nav .hs-menu-depth-1.hs-item-has-children>ul.hs-menu-children-wrapper {
        position: relative;
        -webkit-transform: scaleY(1);
                transform: scaleY(1);
        width: 100%;
        background: rgba(255,255,255,.1);
        -webkit-box-shadow: none;
                box-shadow: none;
        display:none;
    }
    nav .hs-menu-depth-1.hs-item-has-children>ul.hs-menu-children-wrapper:after{
        display:none;
    }
    nav .hs-menu-depth-1>ul.hs-menu-children-wrapper a {
        color: white;
    }
    nav .hs-menu-depth-1.hs-item-has-children>ul.hs-menu-children-wrapper .hs-menu-depth-2>ul a:before {
        content: '- ';
    }
    nav .hs-menu-depth-1.hs-item-has-children>ul.hs-menu-children-wrapper .hs-menu-depth-2>ul a {
        padding-left: 25px;
    }
    nav .hs-menu-depth-1.hs-item-has-children>ul.hs-menu-children-wrapper .hs-menu-depth-2>ul {
        position: relative;
        -webkit-transform: scale(1);
                transform: scale(1);
        display: block !important;
        width: 100%;
        right: auto;
        background: transparent;
    }
    .service-link-heading {
        width: 100%;
    }
    
    .service-link-body {
        position: relative;
        width: 100%;
        padding-top: 0;
        padding-bottom: 0;
        max-height: 0 !important;
        right: 0;
        left: 0;
        min-height: 0 !important;
    }
    
    .active .service-link-body {
        max-height: 1000px !important;
        padding-top: 50px;
        padding-bottom: 50px;
        border: 0;
    }
    
    .service-link-heading {
        border-top: 2px solid #f1f1f1;
        border-bottom: 0;
    }
    .padding-wrapper {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .benefits__block {
        -moz-flex: 1 0 100%;
        -ms-flex: 1 0 100%;
        -o-flex: 1 0 100%;
        -webkit-box-flex: 1;
                flex: 1 0 100%;
        max-width: 100%;
        margin: 10px 0;
    }
    
    .benefits--bottom {
        margin-top: 0px;
    }
    .top-post .flex {
        display: block;
    }
    
    .main-blog .flex .column.feat-img {
        height: 40vh;
        width: 100%;
    }
    
    .top-post .flex {
        padding-top: 100px;
    }
    
    .filter-bar > div a, 
    .filter-bar h4, 
    .filter-bar .all-categories h4 {
        padding: 12px 25px;
    }
    
    .top-post__content {
        max-width: 100%;
    }
    .lang_switcher_class {
        display: block;
        width: 100%;
        border-left: 0;
    }
    .lang_switcher_class .globe_class .lang_list_class li, .lang_switcher_class .globe_class .lang_list_class li a {
        display: block;
        width: 100%;
        text-align: left;
    }
}



@media(max-width:992px){
    h1{
        font-size:46px;
    }
    .impressive-numbers__block--wrapper {
        height: 300px;
    }
    .top.top__start {
        padding: 80px 0;
        min-height: 100%;
    }
    .top.top__start h1 {
        font-size: 50px;
    }
    .benefits__block--text {
        padding: 0 10px;
    }
    .benefits__block--icon {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 30px;
                flex: 0 0 30px;
        max-width: 30px;
    }
    .rekryteringspilotprojektet .hs-cta-wrapper {
        display: block;
        width: 100%;
        float: none;
    }
    .hidden-info {
        padding: 10px;
        display: block;
    }
    .solution-areas--wrapper__solution:before{
        display:none;
    }
    .solution-areas--wrapper__solution{
        color:white;
    }
    .solution-areas--wrapper__solution .icon.icon--white{
        display:inline-block;
    }
    .solution-areas--wrapper__solution .icon.icon--color{
        display:none;
    }
    .padding-wrapper {
        padding: 60px 0;
    }
}

@media screen and (max-width: 900px) {
    .half-block.flex {
        display: block;
    }
    .half-block .column--6 {
        width: 100%;
        display: block;
    }
    .flex .column--5 {
        max-width: 100%;
    }
    .process .flex .column--3 {
        max-width: 45%;
        -moz-flex: 1 0 50%;
        -ms-flex: 1 0 50%;
        -o-flex: 1 0 50%;
        -webkit-box-flex: 1;
                flex: 1 0 50%;
        margin: 0;
    }
    .wrapper.flex {
        display: block;
    }
    
    .column.image {
        min-height: 300px;
    }
    
    .column__inner {
        max-width: 100%;
        padding: 70px;
    }   
}

@media screen and (max-width: 800px) {
    .double-quote__quote {
        float: none;
        width: 100%;
        margin: 30px 0;
    }
    .main-blog .post-item {
        max-width: 50%;
    }
    
    .filter-bar > div a, 
    .filter-bar h4, 
    .filter-bar .all-categories h4 {
        padding: 12px 25px;
    }
    
    .filter-bar > div,
    .filter-bar > div a, 
    .filter-bar h4,
    .filter-bar > div li {
        display: block;
    }
    
    .filter-bar .hidden-categories {
        width: 100%;
    }
    
    .filter-bar > div:hover .hidden-categories {
        width: 100%;
        z-index: 200;
    }
    
    .filter-bar > div {
        margin: 0;
    }
    .post-listing.flex {
        display: block;
    }
    
    .main-blog .post-item {
        max-width: 100%;
    }
    
    .post-item {
        background: #fff;
    }
    
    .post-item .post-content {
        padding: 20px;
    }
    
    .main-blog .featured-image {
        margin-bottom: 0;
    }
    
    .top-post .flex {
        padding-top: 20px;
    }
    
    .main-blog .read-more {
        background: rgba(255,150,159,1);
        background: -webkit-gradient(left top, right top, color-stop(0%, rgba(255,150,159,1)), color-stop(100%, rgba(255,170,114,1)));
        background: -webkit-gradient(linear, left top, right top, from(rgba(255,150,159,1)), to(rgba(255,170,114,1)));
        background: linear-gradient(to right, rgba(255,150,159,1) 0%, rgba(255,170,114,1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff969f', endColorstr='#ffaa72', GradientType=1 );
        display: inline-block;
        padding: 10px 30px;
        color: #fff;
        font-size: 14px;
        text-transform: uppercase;
        -webkit-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
        margin-top: 30px;
        border-radius: 20px;
        font-weight: 800;
        -webkit-text-fill-color: white;
    }
    
    
    .main-blog .read-more:hover {
        padding: 10px 75px;
        -webkit-transform: scale(1.1);
                transform: scale(1.1);
    }
    
    .main-blog .top-read-more {
        padding-right: 30px;
        padding-left: 30px;
    }
    
    .top-post-wrapper {
        display: none;
    }
    
    .main-blog .post-item:first-of-type {
        display: block;
    }
    .benefits__block {
        -moz-flex: 1 0 100%;
        -ms-flex: 1 0 100%;
        -o-flex: 1 0 100%;
        -webkit-box-flex: 1;
                flex: 1 0 100%;
        max-width: 100%;
        margin: 20px 0;
    }
    
    .winner-portrait__block {
        width: 50%;
    }
    
    .hs_integritetspolicy > legend.hs-field-desc {
        padding-left: 40px;
        margin-bottom: 20px;
    }
    
    .hs_integritetspolicy > div.input {
        margin-top: -68px !important;
    }
    
}

@media(max-width:767px){
    h1 {
        font-size: 38px;
    }

    .padding-wrapper {
        padding: 30px 0;
    }
    .top__start--inner__block {
        margin-bottom: 30px;
        padding-top: 20px;
    }
    .top.top__start {
        padding: 60px 0;
    }
    .top.top__start h1 {
        font-size: 38px;
    }
    a.solution-areas--wrapper__solution.background.overlay {
        -webkit-box-flex: 1;
            -ms-flex: 1 0 100%;
                flex: 1 0 100%;
        max-width:100%;
        min-height: 100%;
    }
    .hidden-info {
        display: block !important;
    }
    .solution-areas--wrapper {
        display:block;
    }
    .logotype__block--logo img {
        height: auto !important;
    }
    .logotype__block .logotype__block--logo {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 20%;
                flex: 0 0 20%;
        max-width: 20%;
        padding: 20px;
    }
    .benefits__block--wrapper .hs_cos_wrapper_widget_container>div {
        -webkit-box-flex: 1;
            -ms-flex: 1 0 100%;
                flex: 1 0 100%;
        width: 100%;
        padding: 20px 0;
    }
    .benefits__block--text h3 {
        margin-bottom: 0;
    }
    .benefits__block--text p {
        margin: 2px 0;
    }
    .benefits__block--text {
        padding: 0 0 0 30px;
    }
    .quote__block--outer--wrapper .container>div {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
        max-width: 100%;
    }
    .quote__block--image {
        height: 150px;
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2;
    }
    blockquote {
        font-size: 26px;
    }
    .hidden--contact__block--image {
        width: 100%;
        height: 220px;
    }
    .hidden--contact__block--button {
        display: none;
    }
    .hidden--contact__block--wrapper:hover .hidden--contact__block--image {
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }
    .hidden--contact__block--form {
        width: 100%;
        float: none;
        padding: 30px;
        padding-top: 220px;
    }
    .hidden--contact__block--image.background.overlay.overlay--black:after{
        display:none;
    }
    .btn {
        width: 100% !important;
        padding: 10px 0 !important;
        display: block;
        text-align:center;
        margin: 0 !important;
    }
    .top .btn {
        margin: 0 0 10px !important;
    }
    footer .row-fluid>div {
        width: 100% !important;
    }
    footer .container>div>div>.row-fluid {
        display: block;
        text-align: center;
    }
    footer .hs-menu-wrapper ul li a {
        text-align: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    footer .container>div>div>.row-fluid>div {
        display: block;
        text-align: center;
    }
    footer .span1 img {
        max-width: 40px;
    }
    footer .span1>div {
        text-align: center;
        display: block !important;
        padding: 20px 0;
    }
    footer .social-media ul {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        padding: 20px 0;
    }
    .hidden--contact__block--image:before{
        display:none;
    }
    .text-image__block--image {
        height: 160px;
        margin-bottom: 30px;
    }
    .text-image__block--image, .text-image__block--text {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
    }
    .contact__block--wrapper>div {
        -moz-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        -o-flex: 0 0 100%;
        -webkit-box-flex: 0;
                flex: 0 0 100%;
        max-width: 100%;
    }
    .contact__block--image {
        height: 200px;
    }
    .contact__block--form {
        padding: 30px;
    }
    .landing-page__block-inbound,
    .landing-page__block-inbound>.span12>div>.row-fluid {
        display: block;
        min-height: 100%;
    }
    .landing-page__block-inbound .hs_cos_wrapper_type_rich_text p, .landing-page__block-inbound .hs_cos_wrapper_type_rich_text li{
        font-size:14px;
    }
    .landing-page__block-inbound .landing-page__block--right, .landing-page__block-inbound .landing-page__block--left {
        padding: 40px 20px;
        max-width:100%;
    }
    .landing-page__block-inbound .landing-page__block--left {
        padding-top: 100px;
    }
    .landing-page__block--left blockquote {
        margin: 30px 0 20px;
    }
    .landing-page__block--right:after {
        top: 0;
        left: 50%;
    }
    .landing-page__block--right:before {
        left: 50%;
        top: 0;
        -webkit-transform: rotate(45deg);
                transform: rotate(45deg);
        margin-left: -7px;
        margin-top: -9px;
    }
    .heading--massive{
        font-size:20px;
    }
    .landing-page__block--right>div {
        max-width: 100%;
    }
    .landing-page__block--left h1 {
        text-align: center;
    }
    .landing-page__block--advanced.sticky,
    .landing-page__block--advanced{
        position: relative;
        -webkit-transform: translateX(0);
                transform: translateX(0);
        margin-bottom:30px;
    }
    
    .sticky-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    form label {
        display: block;
    }
    
    @-webkit-keyframes stickyForm{
        from{-webkit-transform: translateY(100%);transform: translateY(100%);}
        to{-webkit-transform: translateY(0%);transform: translateY(0%);}
    }
    
    @keyframes stickyForm{
        from{-webkit-transform: translateY(100%);transform: translateY(100%);}
        to{-webkit-transform: translateY(0%);transform: translateY(0%);}
    }
    
    .thank-you__block--top>div:last-child {
        padding: 30px;
    }
    .hs-cta-wrapper, .hs-cta-node{
        width:100%;
    }
    .top{
        padding: 100px 0 50px;
    }
    
    .integrity-policy__wrapper {
        width: 90%;
        max-width: 1000px;
        left: 5%;
        margin-left: auto;
    }
}

@media screen and (max-width: 700px) {
    .column__inner {
        padding: 35px 20px;
    }
    .top-post__content {
        padding: 15px 30px;
    }
    .service-link-body {
        padding: 0 40px;
    }    
    
    .active .service-link-body {
        padding: 30px 20px;
    }
    
    .service-link-heading h3 {
        font-size: 14px;
    }
    .other-service-links li {
        -moz-flex: 1 0 100%;
        -ms-flex: 1 0 100%;
        -o-flex: 1 0 100%;
        -webkit-box-flex: 1;
                flex: 1 0 100%;
        max-width: 100%;
    }
    .other-service-links .heading {
        font-size: 14px;
    }
}

@media screen and (max-width: 600px) {
    
    .integrity-policy__wrapper {
        top: 80px;
        padding: 40px;
    }
    
    
    h1 {
        font-size: 30px;
    }
    .container--narrow.flex {
        display: block;
    }
    
    .flex--right .column--9, 
    .flex--left .column--9 {
        padding: 50px 0 0 0;
    }
    
    .container--narrow.flex .column--3 {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .container--narrow.flex .column--3 img {
        display: block;
        margin: 0 auto;
    }
    .blog-post h1 {
        font-size: 36px;
        line-height: 42px;
    }
    
    .related-posts__post {
        max-width: 100%;
    }
    
    .prev-next a {
        padding: 10px;
    }
    .filter1,
    .filter2 {
        display: block;
        float: none;
        clear: both;
        width: 100%;
    }
    .media-library {
        display: block;
        max-height: 800px;
    }
    
    .library-content {
        padding: 30px 20px;
    }
    
    .library-img {
        height: 250px;
    }
    
    .latest-jobs__block {
        padding-right: 20px;
        padding-left: 20px;
    }
    .half-half .image {
        margin: 0;
        width: 100%;
        margin-bottom: 30px;
    }
    
    .half-half .column--6 {
        width: 100%;
    }
    
    .flex--right.half-half .image {
        margin-left: 0;
    }
}

@media(max-width:460px){
    nav .logo__block {
        width: 40vw !important;
    }
    .process .flex .column--3 {
        max-width: 100%;
        -moz-flex: 1 0 100%;
        -ms-flex: 1 0 100%;
        -o-flex: 1 0 100%;
        -webkit-box-flex: 1;
                flex: 1 0 100%;
    }
    
     .winner-portrait__block {
        width: 100%;
        float:none;
    }
}

@media screen and (max-width: 400px) {
    .prev-next a {
        padding: 10px;
        display: block;
    }
    form.hs-form fieldset.form-columns-2>div:first-child .input {
            margin-right: 0;
    }
    
    .integrity-policy__wrapper__content__text {
        max-height: 350px;
    }
    
}

@media screen and (min-width: 1400px) {
    
    .library-container .latest-jobs__block--wrapper {
        max-width: 1200px;
    }
    
    #jobs,
    .library-container .hs_cos_wrapper_widget_container {
        max-width: 1200px;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: -ms-flexbox;
        display: -webkit-box;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap:wrap;
        -webkit-justify-content: space-between;
        -webkit-box-pack: space-between;
        justify-content: space-between;
    	-ms-flex-align: stretch;
        -webkit-box-align: stretch; 
        align-items: stretch;
    }
    
    .latest-jobs__block,
    .library-container .hs_cos_wrapper_type_custom_widget {
        -moz-flex: 1 0 50%;
        -ms-flex: 1 0 50%;
        -o-flex: 1 0 50%;
        -webkit-box-flex: 1 0 50%;
        flex: 1 0 50%;
        max-width: 49%;
        margin: 10px 0;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: -ms-flexbox;
        display: -webkit-box;
        display: flex;
    }
    
    .library-container .hs_cos_wrapper_type_custom_widget .latest-jobs__block {
        max-width: 100%;
        margin: 0;
    }
}

.share-this {
    content: '';
    position: fixed;
    top: 30%;
    left: 80px;
    width: 200px;
    height: 130px;
    z-index: 9;
    background-image: url(https://cdn2.hubspot.net/hubfs/2717734/icons/share_this.png);
    background-size: cover;
    -webkit-animation: fadein 6s;
       -moz-animation: fadein 6s;
        -ms-animation: fadein 6s;
         -o-animation: fadein 6s;
            animation: fadein 6s;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}


@media screen and (max-width: 1200px) {
    
    .share-this {
        display:none;
    }

}

