/*
Theme Name: Primoprint
Author: LexoGmbH
Author URI: https://www.lexo.ch/
Version: 1.0
*/


/*
- 00 ANIMATIONS
- 01 GENERAL
- 02 HEADER
- 03 HOME
*/

/*00 ANIMATIONS*/


@-webkit-keyframes smb_anim_first {
    0%   {width: 100%;}
    50%  {width: 0;}
    100% {width: 100%;}
}

@-moz-keyframes smb_anim_first {
    0%   {width: 100%;}
    50%  {width: 0;}
    100% {width: 100%;}
}

@-ms-keyframes smb_anim_first {
    0%   {width: 100%;}
    50%  {width: 0;}
    100% {width: 100%;}
}

@-o-keyframes smb_anim_first {
    0%   {width: 100%;}
    50%  {width: 0;}
    100% {width: 100%;}
}

@keyframes smb_anim_first {
    0%   {width: 100%;}
    50%  {width: 0;}
    100% {width: 100%;}
}

@-webkit-keyframes smb_anim_second {
    0%   {width: 0;}
    50%  {width: 50%;}
    100% {width: 100%;}
}

@-moz-keyframes smb_anim_second {
    0%   {width: 0;}
    50%  {width: 50%;}
    100% {width: 100%;}
}

@-ms-keyframes smb_anim_second {
    0%   {width: 0;}
    50%  {width: 50%;}
    100% {width: 100%;}
}

@-o-keyframes smb_anim_second {
    0%   {width: 0;}
    50%  {width: 50%;}
    100% {width: 100%;}
}

@keyframes smb_anim_second {
    0%   {width: 0;}
    50%  {width: 50%;}
    100% {width: 100%;}
}

@-webkit-keyframes smb_anim_last {
    0%   {width: 100%;}
    50%  {width: 0;}
    100% {width: 50%;margin-left: 50%;}
}

@-moz-keyframes smb_anim_last {
    0%   {width: 100%;}
    50%  {width: 0;}
    100% {width: 50%;margin-left: 50%;}
}

@-ms-keyframes smb_anim_last {
    0%   {width: 100%;}
    50%  {width: 0;}
    100% {width: 50%;margin-left: 50%;}
}

@-o-keyframes smb_anim_last {
    0%   {width: 100%;}
    50%  {width: 0;}
    100% {width: 50%;margin-left: 50%;}
}

@keyframes smb_anim_last {
    0%   {width: 100%;}
    50%  {width: 0;}
    100% {width: 50%;margin-left: 50%;}
}

@-webkit-keyframes wheel-up-down {
    0% {margin-top: 2px; opacity: 0;}
    30% {opacity: 1;}
    100% {margin-top: 10px; opacity: 0;}
}
@-moz-keyframes wheel-up-down {
    0% {margin-top: 2px; opacity: 0;}
    30% {opacity: 1;}
    100% {margin-top: 10px; opacity: 0;}
}
@keyframes wheel-up-down {
    0% {margin-top: 2px; opacity: 0;}
    30% {opacity: 1;}
    100% {margin-top: 10px; opacity: 0;}
}

@-moz-keyframes spin {
    100% { -moz-transform: rotateY(360deg); }
}

@-webkit-keyframes spin {
    100% { -webkit-transform: rotateY(360deg); }
}

@keyframes spin {
    100% { -webkit-transform: rotateY(360deg); transform:rotateY(360deg); }
}

@-webkit-keyframes compact {
    0% {    
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {    
        -webkit-transform: translateY(0%);
        -moz-transform: translateY(0%);
        -ms-transform: translateY(0%);
        -o-transform: translateY(0%);
        transform: translateY(0%);
    }
}
@-moz-keyframes compact {
    0% {    
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {    
        -webkit-transform: translateY(0%);
        -moz-transform: translateY(0%);
        -ms-transform: translateY(0%);
        -o-transform: translateY(0%);
        transform: translateY(0%);
    }
}
@keyframes compact {
    0% {    
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {    
        -webkit-transform: translateY(0%);
        -moz-transform: translateY(0%);
        -ms-transform: translateY(0%);
        -o-transform: translateY(0%);
        transform: translateY(0%);
    }
}

.vertical_center_absolute {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}


.animaClassDownUp {
    opacity: 0;
    visibility: hidden;
    position: relative;
    -webkit-transform: translate3d(0%,20%,0);
    -moz-transform: translate3d(0%,20%,0);
    -ms-transform: translate3d(0%,20%,0);
    -o-transform: translate3d(0%,20%,0);
    transform: translate3d(0%,20%,0);
    -webkit-transition: transform 0.55s, opacity 0.75s, visibility 0.75s;
    -moz-transition: transform 0.55s, opacity 0.75s, visibility 0.75s;
    -ms-transition: transform 0.55s, opacity 0.75s, visibility 0.75s;
    -o-transition: transform 0.55s, opacity 0.75s, visibility 0.75s;
    transition: transform 0.55s, opacity 0.75s, visibility 0.75s;
}

.animaClassDownUp.fixedtransition {
    -webkit-transform: translate3d(0,25px,0);
    -moz-transform: translate3d(0,25px,0);
    -ms-transform: translate3d(0,25px,0);
    -o-transform: translate3d(0,25px,0);
    transform: translate3d(0,25px,0);
}

.animaClassLeftRight {
    opacity: 0;
    visibility: hidden;
    position: relative;
    -webkit-transform: translate3d(-20%,0%,0);
    -moz-transform: translate3d(-20%,0%,0);
    -ms-transform: translate3d(-20%,0%,0);
    -o-transform: translate3d(-20%,0%,0);
    transform: translate3d(-20%,0%,0);
    -webkit-transition: transform 0.55s, opacity 0.75s, visibility 0.75s;
    -moz-transition: transform 0.55s, opacity 0.75s, visibility 0.75s;
    -ms-transition: transform 0.55s, opacity 0.75s, visibility 0.75s;
    -o-transition: transform 0.55s, opacity 0.75s, visibility 0.75s;
    transition: transform 0.55s, opacity 0.75s, visibility 0.75s;
}

.animaClassLeftRight.fixedtransition {
    -webkit-transform: translate3d(-25px,0,0);
    -moz-transform: translate3d(-25px,0,0);
    -ms-transform: translate3d(-25px,0,0);
    -o-transform: translate3d(-25px,0,0);
    transform: translate3d(-25px,0,0);
}

.animaClassRightleft {
    opacity: 0;
    visibility: hidden;
    position: relative;
    -webkit-transform: translate3d(20%,0,0);
    -moz-transform: translate3d(20%,0,0);
    -ms-transform: translate3d(20%,0,0);
    -o-transform: translate3d(20%,0,0);
    transform: translate3d(20%,0,0);
    -webkit-transition: transform 0.55s, opacity 0.75s, visibility 0.75s;
    -moz-transition: transform 0.55s, opacity 0.75s, visibility 0.75s;
    -ms-transition: transform 0.55s, opacity 0.75s, visibility 0.75s;
    -o-transition: transform 0.55s, opacity 0.75s, visibility 0.75s;
    transition: transform 0.55s, opacity 0.75s, visibility 0.75s;
}

.animaClassRightleft.fixedtransition {
    -webkit-transform: translate3d(25px,0,0);
    -moz-transform: translate3d(25px,0,0);
    -ms-transform: translate3d(25px,0,0);
    -o-transform: translate3d(25px,0,0);
    transform: translate3d(25px,0,0);
}

.animaClassUpDown {
    opacity: 0;
    visibility: hidden;
    position: relative;
    -webkit-transform: translate3d(0,-20%,0);
    -moz-transform: translate3d(0,-20%,0);
    -ms-transform: translate3d(0,-20%,0);
    -o-transform: translate3d(0,-20%,0);
    transform: translate3d(0,-20%,0);
    -webkit-transition: transform 0.55s, opacity 0.75s, visibility 0.75s;
    -moz-transition: transform 0.55s, opacity 0.75s, visibility 0.75s;
    -ms-transition: transform 0.55s, opacity 0.75s, visibility 0.75s;
    -o-transition: transform 0.55s, opacity 0.75s, visibility 0.75s;
    transition: transform 0.55s, opacity 0.75s, visibility 0.75s;
}

.animaClassUpDown.fixedtransition {
    -webkit-transform: translate3d(0,-25px,0);
    -moz-transform: translate3d(0,-25px,0);
    -ms-transform: translate3d(0,-25px,0);
    -o-transform: translate3d(0,-25px,0);
    transform: translate3d(0,-25px,0);
}

.page-template-template-home.ie .animaClassDownUp,
.page-template-template-home.ie .animaClassDownUp.fixedtransition,
.page-template-template-home.ie .animaClassLeftRight,
.page-template-template-home.ie .animaClassLeftRight.fixedtransition,
.page-template-template-home.ie .animaClassRightleft,
.page-template-template-home.ie .animaClassRightleft.fixedtransition,
.page-template-template-home.ie .animaClassUpDown,
.page-template-template-home.ie .animaClassUpDown.fixedtransition,
.animaClassActive {
    opacity: 1 !important;
    visibility: visible !important;
    -webkit-transform: translate3d(0,0,0) !important;
    -moz-transform: translate3d(0,0,0) !important;
    -ms-transform: translate3d(0,0,0) !important;
    -o-transform: translate3d(0,0,0) !important;
    transform: translate3d(0,0,0) !important;
}

.anima_hidden {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 1s;
    -moz-transition: opacity 1s;
    -ms-transition: opacity 1s;
    -o-transition: opacity 1s;
    transition: opacity 1s;
}

.anima_fadeIn {
    opacity: 1;
    visibility: visible;
}

.scroll_hidden {
	overflow: hidden;
}

/*END OF 00 ANIMATIONS*/


/*01 GENERAL*/

input[type="text"], input[type="search"], textarea {
   -webkit-appearance: none !important;
}

.block_icon {
    display: block;
}

.hyimg {
    max-width: 100%;
    width: 100%;
    height: auto;
}

.header-image {
    height: 100% !important;
    position: absolute;
}

.palette_elem {
    float: left;
    width: 25%;
    height: 12px;
}

.ppbg_purple,
.ppbg_purple .underline_title:after {
    background-color: #b63f82;
}

a.c.ppbg_purple:hover {
    color: #b63f82 !important;
}

.ppbg_pink,
.ppbg_pink .underline_title:after {
    background-color: #f05a89;
}

a.c.ppbg_pink:hover {
    color: #f05a89 !important;
}

.ppbg_orange,
.ppbg_orange .underline_title:after {
    background-color: #f79552;
}

a.c.ppbg_orange:hover {
    color: #f79552 !important;
}

.ppbg_yellow,
.ppbg_yellow .underline_title:after {
    background-color: #fecc4e;
}

a.c.ppbg_yellow:hover {
    color: #fecc4e !important;
}

.ppbg_white {
    background-color: #ffffff;
}

.ppbg_blue {
    background-color: #419aef;
}

.ppbg_bez {
    background-color: #d7c39e;
}

.ppbg_gray {
    background-color: #bbc5ce;
}

.ppbg_green {
    background-color: #3eae5e;
}

.palette_elem:nth-child(1) {
    background-color: #b63f82;
}

.palette_elem:nth-child(2) {
    background-color: #f05a89;
}

.palette_elem:nth-child(3) {
    background-color: #f79552;
}

.palette_elem:nth-child(4) {
    background-color: #fecc4e;
}

.white {
    color: #fff;
}

.social_panel {
    display: block;
}

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

.social_panel.left {
    text-align: left;
}

.social_panel.right {
    text-align: right;
}

.social_panel.header {
    position: absolute;
    top: calc(50% + 5px);
    right: 120px;
    -webkit-transform: translate(0,-50%);
    -moz-transform: translate(0,-50%);
    -ms-transform: translate(0,-50%);
    -o-transform: translate(0,-50%);
    transform: translate(0,-50%);
}

.social_list {
    margin: 0 -10px;
    list-style: none;
    padding: 0;
    display: inline-block;
}

.social_element {
    float: left;
    padding: 0 10px;
}

.social_element .social_icon {
    color: #f05a89;
    font-size: 39px;
}

.social_icon {
    -webkit-transition: color .35s;
    -moz-transition: color .35s;
    -ms-transition: color .35s;
    -o-transition: color .35s;
    transition: color .35s;
}

.icon-soc-facebook:hover {
    color: #3b5998 !important;
}

.icon-soc-pinterest:hover {
    color: #cb2027 !important;
}

.icon-soc-instagram:hover {
    color: #e95950 !important;
}

.icon-soc-linkedin:hover {
    color: #007bb5 !important;
}

.icon-soc-twitter-01:hover {
    color: #0084b4 !important;
}

#page_body {
    padding: 75px 0 87px;
    border-bottom: 1px solid #e7e7e7;
    overflow: hidden;
}

#page_body.flat_page_body {
    padding: 0;
    border-bottom: none;
}

#page_body.slider_page_body {
    padding: 75px 0 0;
    border-bottom: none;
}

#page_body .hs_body {
    padding: 0;
}

.black {
    color: #333 !important;
}

#page_menu {
    text-align: center;
    border-bottom: 2px solid #dedede;
    margin-top: -32px;
}

#page_menu_wrapper {
    display: inline-block;
}

.page_menu_elem {
    font-family: 'Montserrat-Medium';
    text-transform: uppercase;
    color: #f05a89;
    font-size: 1.6rem;
    padding: 0px 24px 13px;
    position: relative;
    margin: 22px 20px 0;
    cursor: pointer;
    display: inline-block;
}

.page_menu_elem.reference_menu_elem {
    padding: 0px 8px 18px;
}

.page_menu_elem:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #f05a89;
    -webkit-transition: width .35s;
    -moz-transition: width .35s;
    -ms-transition: width .35s;
    -o-transition: width .35s;
    transition: width .35s;
}

.page_menu_elem.active:after {
    width: 100%;
}

.page_menu_elem:hover:after {
    width: 100%;
}

.relative {
    position: relative;
}

.container_relative {
    position: relative;
    height: 100%;
}

.bg_class {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.pointer {
    cursor: pointer;
}

.custom_arrows {
    position: relative;
    font-family: 'Montserrat-Medium';
    font-weight: normal;
}

.custom_prev {
    padding-left: 40px;
}

.custom_next {
    padding-right: 40px;
}

.custom_prev:before {
    top: 50%;
    left: 0;
    background-position: 0 0;
    content: "\e913";
}

.custom_next:after {
    top: 50%;
    right: 0;
    background-position: -25px 0;
    content: "\e925";
}

h6.aeh_title {
    font-size: 1.6rem;
}

.custom_arrows:before, .custom_arrows:after {
    position: absolute;
    width: 20px;
    height: 39px;
    font-size: 27px;
    line-height: 40px;
    font-family: 'icomoon' !important;
    -webkit-transform: translateY(-50%) rotateX(0deg);
    -moz-transform: translateY(-50%) rotateX(0deg);
    -ms-transform: translateY(-50%) rotateX(0deg);
    -o-transform: translateY(-50%)rotateX(0deg);
    transform: translateY(-50%) rotateX(0deg);
    -webkit-transition: transform .25s;
    -moz-transition: transform .25s;
    -ms-transition: transform .25s;
    -o-transition: transform .25s;
    transition: transform .25s;
}

.center_align {
    text-align: center;
}

/*END OF 01 GENERAL*/

/*02 HEADER*/

header {
    border-top: 5px solid #f05a89;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

body:not(.page-template-template-home) header {
    min-height: 575px;
}

#background_wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;

}

.home_title {
    font-family: 'Raleway-Light';
    font-weight: normal;
    text-transform: none;
    font-size: 9rem;
}

.home_text {
    font-family: 'Montserrat-Thin';
    font-size: 2.2rem !important;
    max-width: 750px !important;
    font-weight: normal;
}

/*body:not(.ie) #background_wrapper {
	background-attachment: fixed;
}*/

#header_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 1;
}

#menu_bar {
    position: relative;
    top: 0;
    left: 0;
    min-height: 120px;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    z-index: 2;
}

body.compact .page_header {
    margin-top: 121px;
}

.compact #menu_bar {
    position: fixed;
    background: rgba(0,0,0,0.8);
    min-height: 60px;
    -webkit-animation-name : compact;
    -moz-animation-name : compact;
    -o-animation-name : compact;
    animation-name : compact;

    -webkit-animation-duration: 0.25s;
    -moz-animation-duration: 0.25s;
    -o-animation-duration: 0.25s;
    animation-duration: 0.25s;

    -webkit-animation-timing-function : ease-in-out;
    -moz-animation-timing-function : ease-in-out;
    -o-animation-timing-function : ease-in-out;
    animation-timing-function : ease-in-out;

    -webkit-animation-fill-mode : forwards;
    -moz-animation-fill-mode : forwards;
    -o-animation-fill-mode : forwards;
    animation-fill-mode : forwards;

    -webkit-animation-delay : 0;
    -moz-animation-delay : 0;
    -o-animation-delay : 0;
    animation-delay : 0;
}


.compact .s_title {
    display: none;
}

.compact #logo_wrapper {
    max-width: 100px;
}

#logo_wrapper {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    max-width: 198px;
    margin-left: 30px;
}

#logo_wrapper > a {
    position: absolute;
    top: 50%;
    left:0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
}

#logo_wrapper img {
    width: 100%;
    height: auto;
}

#side_menu_button_container, #lang_switcher {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 90px;
    border-left: 1px solid rgba(255,255,255,0.2);
    cursor: pointer;
    background-color: transparent;
    -webkit-transition: background-color .35s;
    -moz-transition: background-color .35s;
    -ms-transition: background-color .35s;
    -o-transition: background-color .35s;
    transition: background-color .35s;
}

#lang_switcher {
    right: 110px;
}

#side_menu_button_container:hover, #lang_switcher:hover {
    background-color: #f05a89;
}

#side_menu_button, #LangSelect {
    position: absolute;
    top: 50%;
    left:50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

#side_menu .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 7px;
    background-color: #f05a89 !important;
    opacity: 1 !important;
}

#side_menu .mCSB_scrollTools .mCSB_draggerRail {
    width: 7px;
    background: #333;
}

#side_menu .mCSB_outside+.mCSB_scrollTools {
    right: -28px;
}

#LangSelect {
	border: none;
	background-color: transparent;
	font-size: 2rem;
	color: #fff;
    font-family: 'Montserrat-Medium';
	font-weight: normal;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url('images/static/select_arrow.png');
	background-repeat: no-repeat;
	background-position: right center;
	padding-right: 16px;
	padding-left: 4px;
	cursor: pointer;
}

#LangSelect::-ms-expand {
    display: none;
}

#LangSelect option {
	color: #000;
}

#smb_burger {
    width: 33px;
    height: 26px;
    position: relative;
    display: inline-block;
    overflow: hidden;
}

#side_menu_button_container:hover .smb_elem {
    width: 100%;
    -webkit-animation: 0;
    -moz-animation: 0;
    -ms-animation: 0;
    -o-animation: 0;
    animation: 0;
}

.smb_elem {
    height: 4px;
    width: 0;
    background-color: #fff;
    display: block;
    margin-bottom: 7px;
    -webkit-transition: width .35s;
    -moz-transition: width .35s;
    -ms-transition: width .35s;
    -o-transition: width .35s;
    transition: width .35s;
}

.smb_elem:nth-child(1) {

    -webkit-animation-name : smb_anim_first;
    -moz-animation-name : smb_anim_first;
    -o-animation-name : smb_anim_first;
    animation-name : smb_anim_first;

    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;

    -webkit-animation-timing-function : ease-in-out;
    -moz-animation-timing-function : ease-in-out;
    -o-animation-timing-function : ease-in-out;
    animation-timing-function : ease-in-out;

    -webkit-animation-fill-mode : forwards;
    -moz-animation-fill-mode : forwards;
    -o-animation-fill-mode : forwards;
    animation-fill-mode : forwards;

    -webkit-animation-delay : 0;
    -moz-animation-delay : 0;
    -o-animation-delay : 0;
    animation-delay : 0;
}

.smb_elem:nth-child(2) {

    -webkit-animation-name : smb_anim_second;
    -moz-animation-name : smb_anim_second;
    -o-animation-name : smb_anim_second;
    animation-name : smb_anim_second;

    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;

    -webkit-animation-timing-function : ease-in-out;
    -moz-animation-timing-function : ease-in-out;
    -o-animation-timing-function : ease-in-out;
    animation-timing-function : ease-in-out;

    -webkit-animation-fill-mode : forwards;
    -moz-animation-fill-mode : forwards;
    -o-animation-fill-mode : forwards;
    animation-fill-mode : forwards;

    -webkit-animation-delay : 0;
    -moz-animation-delay : 0;
    -o-animation-delay : 0;
    animation-delay : 0;
}

.smb_elem:last-child {
    margin-bottom: 0;
    width: 0;

    -webkit-animation-name : smb_anim_last;
    -moz-animation-name : smb_anim_last;
    -o-animation-name : smb_anim_last;
    animation-name : smb_anim_last;

    -webkit-animation-duration: 0.75s;
    -moz-animation-duration: 0.75s;
    -o-animation-duration: 0.75s;
    animation-duration: 0.75s;

    -webkit-animation-timing-function : ease-in-out;
    -moz-animation-timing-function : ease-in-out;
    -o-animation-timing-function : ease-in-out;
    animation-timing-function : ease-in-out;

    -webkit-animation-fill-mode : forwards;
    -moz-animation-fill-mode : forwards;
    -o-animation-fill-mode : forwards;
    animation-fill-mode : forwards;

    -webkit-animation-delay : 0;
    -moz-animation-delay : 0;
    -o-animation-delay : 0;
    animation-delay : 0;
}

.mouse{
    position: absolute !important;
    left: 0;
    bottom: 45px;
    width: 100%;
    text-align: center;
    z-index: 3;
}

.mouse-icon {
    width: 25px;
    height: 46px;
    border: 3px solid #fff;
    border-radius: 15px;
    position: relative;
    text-align: center;
    display: inline-block;
}

.mouse-wheel{
    height: 11px;
    margin: 2px auto 0;
    display: block;
    width: 3px;
    background-color: #fff;
    border-radius: 50%;
    -webkit-animation: 1.8s ease infinite wheel-up-down;
    -moz-animation: 1.8s ease infinite wheel-up-down;
    animation: 1.8s ease infinite wheel-up-down;
}



#section_menu_wrapper {
    width: 100%;
    max-width: 775px;
    margin: 0 auto;
    min-height: inherit;
    text-align: center;
    margin-bottom: -5px;
}

.section_elements_wrapper {
    display: inline-block;
    min-height: inherit;
}

.sm_element {
    font-family: 'Montserrat-Medium';
    color: #fff;
    text-transform: uppercase;
    float: left;
    width: 178px;
    border-right: 1px solid rgba(255,255,255,0.2);
    min-height: inherit;
    text-align: center;
    padding: 20px 11px 0;
    background-color: transparent;
    cursor: pointer;
    -webkit-transition: background-color .35s;
    -moz-transition: background-color .35s;
    -ms-transition: background-color .35s;
    -o-transition: background-color .35s;
    transition: background-color .35s;
    position: relative;
}

.compact .sm_element {
    padding: 14px 11px;
}

#googlecaptcha_wrapper {
    position: absolute;
    top: 4px;
    right: -8px;
    opacity: 0.0001;
    visibility: hidden;
    -webkit-transition: transform 0.25s ease-in-out, opacity 0.25s ease-in-out, visibility 0.25s ease-in-out;
    -moz-transition: transform 0.25s ease-in-out, opacity 0.25s ease-in-out, visibility 0.25s ease-in-out;
    -ms-transition: transform 0.25s ease-in-out, opacity 0.25s ease-in-out, visibility 0.25s ease-in-out;
    -o-transition: transform 0.25s ease-in-out, opacity 0.25s ease-in-out, visibility 0.25s ease-in-out;
    transition: transform 0.25s ease-in-out, opacity 0.25s ease-in-out, visibility 0.25s ease-in-out;
    -webkit-transform: translate(0,-150%) scale(0.95);
    -moz-transform: translate(0,-150%) scale(0.95);
    -ms-transform: translate(0,-150%) scale(0.95);
    -o-transform: translate(0,-150%) scale(0.95);
    transform: translate(0,-150%) scale(0.95);
}

#googlecaptcha_wrapper.active {
    opacity: 0.9999;
    visibility: visible;
    -webkit-transform: translate(0,-130%) scale(0.95);
    -moz-transform: translate(0,-130%) scale(0.95);
    -ms-transform: translate(0,-130%) scale(0.95);
    -o-transform: translate(0,-130%) scale(0.95);
    transform: translate(0,-130%) scale(0.95);
}

#googlecaptcha_wrapper:after {
    content: "";
    position: absolute;
    bottom: -12px;
    right: 10%;
    width: 34px;
    height: 15px;
    background-repeat: no-repeat;
    background-image: url('images/gc_arrow.png');
}

#googlecapatcha {
    display: inline;
}

.compact .sm_icon {
    font-size: 30px;
}

.sm_element:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    -webkit-transition: height .35s;
    -moz-transition: height .35s;
    -ms-transition: height .35s;
    -o-transition: height .35s;
    transition: height .35s;
    z-index: -1;
}

.sm_element.ppbg_purple:before {
    background-color: #b63f82;
}

.sm_element.ppbg_pink:before {
    background-color: #f05a89;
}

.sm_element.ppbg_orange:before {
    background-color: #f79552;
}

.sm_element.ppbg_yellow:before {
    background-color: #fecc4e;
}

.sm_element:hover,
.sm_element:focus,
.sm_element.selected {
    color: #fff !important;
}

.sm_element:hover:before,
.sm_element.selected:before {
    height: 100%;
}

.sm_element:first-child {
    border-left: 1px solid rgba(255,255,255,0.2);
}

.sm_icon {
    font-size: 39px;
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-transition: transform .35s;
    -moz-transition: transform .35s;
    -ms-transition: transform .35s;
    -o-transition: transform .35s;
    transition: transform .35s;
}

.sm_element:hover .sm_icon {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.s_title {
    margin-top: 22px;
    line-height: 17px;
}

#side_info_panel {
    position: absolute;
    right: 0;
    top: 50%;
    width: 46px;
    background-color: #fff;
    padding: 13px 5px 13px 13px;
    -webkit-transform: translate3d(0, -50%, 0);
    -moz-transform: translate3d(0, -50%, 0);
    -ms-transform: translate3d(0, -50%, 0);
    -o-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
    -webkit-border-top-left-radius: 10px;
    -webkit-border-bottom-left-radius: 10px;
    -moz-border-radius-topleft: 10px;
    -moz-border-radius-bottomleft: 10px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    z-index: 10;
}

#side_info_panel a {
    color: inherit !important;
    text-decoration: none;
}

.sip_elem {
    margin-bottom: 15px;
    position: relative;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.sip_elem:last-child {
    margin-bottom: 0;
}

.sip_icon {
    font-size: 27px;
    cursor: pointer;
    opacity: 1;
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-transition: transform .35s, opacity .25s;
    -moz-transition: transform .35s, opacity .25s;
    -ms-transition: transform .35s, opacity .25s;
    -o-transition: transform .35s, opacity .25s;
    transition: transform .35s, opacity .25s;
}

.sip_elem:hover .sip_icon {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.sip_icon.active {
    opacity: 0.5;
}

.sip_pop {
    position: absolute;
    left: -150%;
    top: 50%;
    visibility: hidden;
    opacity: 0;
    min-width: 50px;
    min-height: 100%;
    background: #fff;
    white-space: nowrap;
    font-family: 'Montserrat-Medium';
    padding: 7px 16px 8px 13px;
    -webkit-transform: translate3d(-100%, -50%, 0);
    -moz-transform: translate3d(-100%, -50%, 0);
    -ms-transform: translate3d(-100%, -50%, 0);
    -o-transform: translate3d(-100%, -50%, 0);
    transform: translate3d(-100%, -50%, 0);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
	-webkit-transition: top .25s, left .25s, visibility .25s, opacity .25s;
	-moz-transition: top .25s, left .25s, visibility .25s, opacity .25s;
	-ms-transition: top .25s, left .25s, visibility .25s, opacity .25s;
	-o-transition: top .25s, left .25s, visibility .25s, opacity .25s;
	transition: top .25s, left .25s, visibility .25s, opacity .25s;
    z-index: 1;
}

.sip_pop.active {
    left: -100%;
    visibility: visible;
    opacity: 1;
}

.sip_pop:after {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: #fff;
    top: 50%;
    right: -2px;
    -webkit-transform: translate(0, -50%) rotate(45deg);
    -moz-transform: translate(0, -50%) rotate(45deg);
    -ms-transform: translate(0, -50%) rotate(45deg);
    -o-transform: translate(0, -50%) rotate(45deg);
    transform: translate(0, -50%) rotate(45deg);
    z-index: 0;
}

.sip_support .sip_pop {
    text-transform: uppercase;
}

#side_menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 315px;
    font-family: 'Montserrat-Medium';
    background-color: rgba(237,237,237,0.95);
    z-index: 500;
    text-transform: uppercase;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: transform .25s;
    -moz-transition: transform .25s;
    -ms-transition: transform .25s;
    -o-transition: transform .25s;
    transition: transform .25s;
	padding: 90px 39px 15px;
}

#side_menu.active {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}

#side_menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#side_menu ul.menu li {
    border-bottom: 1px solid #b9b9b9;
    padding: 11px 0 9px 0;
}

#side_menu ul.menu a {
    font-size: 1.8rem;
    vertical-align: middle;
    color: inherit;
    -webkit-transition: color .25s;
    -moz-transition: color .25s;
    -ms-transition: color .25s;
    -o-transition: color .25s;
    transition: color .25s;
}

#side_menu ul.menu a:hover {
    color: #b9b9b9 !important;
}

#side_menu ul.menu li.current_menu_item a,
#side_menu ul.menu li.current_menu_item_parent a {
    color: #b9b9b9;
}

#side_menu ul.menu li.current_menu_item i,
#side_menu ul.menu li.current_menu_item_parent i {
    -webkit-animation:spin 4s ease infinite;
    -moz-animation:spin 4s ease infinite;
    animation:spin 4s ease infinite;
}

#menu_inner_wrapper {
	height: 100%;
	overflow-y: auto;
	overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

#menu_inner_wrapper .menu-icons {
    font-size: 35px;
    vertical-align: middle;
    margin-right: 20px;
}

.menu-icons {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-transition: transform .35s;
    -moz-transition: transform .35s;
    -ms-transition: transform .35s;
    -o-transition: transform .35s;
    transition: transform .35s;
}

.menu-icons.spin {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

#side_menu_close {
    width: 27px;
    height: 27px;
    position: absolute;
    right: 39px;
    top: 45px;
    cursor: pointer;
}

#side_menu_close:before, #side_menu_close:after {
    content: '';
    width: 36px;
    height: 4px;
    display: block;
    background-color: #000;
    position: absolute;
    top: 12px;
    left: -4px;
    -webkit-transition: width .35s, top .35s, left .35s;
    -moz-transition: width .35s, top .35s, left .35s;
    -ms-transition: width .35s, top .35s, left .35s;
    -o-transition: width .35s, top .35s, left .35s;
    transition: width .35s, top .35s, left .35s;
}

#side_menu_close:before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#side_menu_close:after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.middle_close {
    width: 0%;
    height: 4px;
    background-color: #000;
    display: block;
    position: absolute;
    top: 11px;
    right: 0;
    -webkit-transition: width .15s 0s;
    -moz-transition: width .15s 0s;
    -ms-transition: width .15s 0s;
    -o-transition: width .15s 0s;
    transition: width .15s 0s;
}

#side_menu_close:hover:before {
    width: 20px;
    top: 5px;
    left: 11px;
}

#side_menu_close:hover:after {
    width: 20px;
    top: 17px;
    left: 11px;
}

#side_menu_close:hover .middle_close {
    width: 100%;
    -webkit-transition: width .35s .25s;
    -moz-transition: width .35s .25s;
    -ms-transition: width .35s .25s;
    -o-transition: width .35s .25s;
    transition: width .35s .25s;
}

#menu_inner_wrapper .social_list {
    margin-left: -10px;
    margin-right: -10px;
    margin-top: 20px;
}



/*END OF 02 HEADER*/

/*03 HOME*/

.home_section {
    min-height: 100vh;
}

.hs_header {
    height: 426px;
    text-align: center;
    position: relative;
}

.hsh_overlay, .hs_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
}

.hs_header.page_header  {
    position: relative;
    height: calc(100vh - 120px);
    z-index: 1;
}

body:not(.page-template-template-home) .hs_header.page_header  {
    position: relative;
    height: calc(570px - 120px);
    z-index: 1;
}

.not_full {
    padding: 63px 0 38px;
}

.hs_header_inner {
    padding: 0 80px;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.hs_header_inner.home_align {
    top: calc(50% - 60px);
}

.hs_header_inner .buttons_wrapper {
    display: none;
}

.home_align .buttons_wrapper {
    display: block;
    margin-top: 35px;
}

.hs_header_description_wrapper {
    margin-top: 33px;
}

.hs_header_description {
    color: #fff;
    font-size: 1.6rem;
    max-width: 600px;
    display: inline-block;
    line-height: 1.65em;
}

.desc_social {
    margin: 0;
}

.desc_social li {
    float: left;
    margin: 0 23px;
}

.descsoc_icon {
    font-size: 30px;
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-transition: transform .35s;
    -moz-transition: transform .35s;
    -ms-transition: transform .35s;
    -o-transition: transform .35s;
    transition: transform .35s;
}

.desc_social a:hover .descsoc_icon {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.desc_social_name {
    text-transform: uppercase;
    font-family: 'Montserrat-Medium';
    font-size: 1.4rem;
    padding-top: 10px;
}

.hs_body {
    padding: 75px 0 87px;
}

.hs_body.slider {
    padding: 30px 0 0 0;
}

.flat_page_body .hs_body.slider  {
    padding: 75px 0 0 0 !important;
}

.hs_body_content p:first-child {
    margin-top: 0;
}

.sub_elem {
    width: 135px;
    color: inherit;
}

.cat-icons {
    font-size: 65px;
    display: block;
    text-align: center;
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-transition: transform .35s;
    -moz-transition: transform .35s;
    -ms-transition: transform .35s;
    -o-transition: transform .35s;
    transition: transform .35s;
}

.sub_elem:hover .cat-icons {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.sub_title {
    font-size: 1.6rem;
    text-transform: uppercase;
    font-family: 'Montserrat-Medium';
    text-align: center;
    margin-top: 13px;
}

.cat_slider {
    border-bottom: 1px solid #dedede;
    padding-bottom: 34px;
    margin-bottom: 30px;
    text-align: center;
}

.cat_slider .slick-arrow {
    position: absolute;
    bottom: 0;
    display: block;
    width: 45px;
    height: 23px;
    padding: 0;
    cursor: pointer;
    outline: none;
    background: #fff;
    font-size: 19px;
    text-align: center;
    color: #f05a89;
}

.cat_slider .slick-next {
    left: 50%;
    -webkit-transform: translate(-100%, 11px);
    -ms-transform: translate(-100%, 11px);
    transform: translate(-100%, 11px);
}

.cat_slider .slick-prev {
    left: 50%;
    -webkit-transform: translate(0, 11px);
    -ms-transform: translate(0, 11px);
    transform: translate(0,11px);
}

.cat_slider .slick-next:before, .cat_slider .slick-prev:before {
    position: relative;
    top: 3px;
    opacity: 0.5;
    -webkit-transition: opacity .25s;
    -moz-transition: opacity .25s;
    -ms-transition: opacity .25s;
    -o-transition: opacity .25s;
    transition: opacity .25s;
}

.cat_slider .slick-arrow:hover:before, .cat_slider .slick-prev:hover:before {
    opacity: 1;
}

.section_image_wrapper {
    margin-left: 42px;
    position: relative;
}

.section_video {
    width: 215px;
    height: 215px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: 10px solid #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transform: translate(-65px, 65px);
    -moz-transform: translate(-65px, 65px);
    -ms-transform: translate(-65px, 65px);
    -o-transform: translate(-65px, 65px);
    transform: translate(-65px, 65px);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    overflow: hidden;
    cursor: pointer;
}

.video_overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(241, 89, 137, 0.6);
    z-index: 1;
}

.section_video .video_icon,
.sq_video .video_icon {
    position: absolute;
    top: 50%;
    left: 50%;
    color: #fff;
    font-size: 80px;
    -webkit-transform: translate(-50%, -50%) scale(1);
    -moz-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    -o-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
    -webkit-transition: transform .25s;
    -moz-transition: transform .25s;
    -ms-transition: transform .25s;
    -o-transition: transform .25s;
    transition: transform .25s;
    z-index: 2;
}

.section_video:hover .video_icon,
.sq_video:hover .video_icon{
    -webkit-transform: translate(-50%, -50%) scale(1.5);
    -moz-transform: translate(-50%, -50%) scale(1.5);
    -ms-transform: translate(-50%, -50%) scale(1.5);
    -o-transform: translate(-50%, -50%) scale(1.5);
    transform: translate(-50%, -50%) scale(1.5);
}

.sq_body {
    margin-top: 39px;
}

.video_wrapper {
    position: relative;
    max-width: 438px;
    width: 100%;
    height: auto;
    display: inline-block;
}

.video_wrapper .sq_video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.buttons_wrapper {
    margin-top: 27px;
}

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

.buttons_wrapper.center .button.fill {
    margin-right: 0;
}

.buttons_wrapper .button.fill {
    margin-right: 20px;
}



#video_elem {
    max-width: none;
    max-height: 100%;
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translateX(-50%) translateY(-50%);
}

#mute {
	position: absolute;
	z-index: 3;
	bottom: 43px;
	left: 30px;
	color: #fff;
	cursor: pointer;
}

#mute:after {
	content: "\e92f";
	font-size: 30px;
	font-family: 'icomoon' !important;
}

#mute.muted:after {
	content: "\e92e";
	font-size: 30px;
	font-family: 'icomoon' !important;
}


@media (min-aspect-ratio: 16/9) {
#video_elem {
    max-height: none;
    max-width: 100%;
}
}

/*END OF 03 HOME*/

/*HOME references SECTION*/

.slick-dots {
    position: absolute;
    bottom: -25px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 15px;
    height: 15px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 3px solid #929191;
    border-radius: 50%;
    outline: none;
    background: transparent;
    -webkit-transition: background .25s, border .25s;
    -moz-transition: background .25s, border .25s;
    -ms-transition: background .25s, border .25s;
    -o-transition: background .25s, border .25s;
    transition: background .25s, border .25s;
}

.slick-dots li button:hover {
    background: #929191;
    border: 3px solid #929191;
}

.slick-dots li:before {
    display: none;
}

.slick-dots button:before {
    display: none;
}

.slick-dots .slick-active button {
    background: #929191;
    border: 3px solid #929191;
}

.custom_arrows {
    cursor: pointer;
    color: #929191;
    text-transform: uppercase;
    -webkit-transition: color .25s;
    -moz-transition: color .25s;
    -ms-transition: color .25s;
    -o-transition: color .25s;
    transition: color .25s;
}

/*.custom_arrows:after,
.custom_arrows:before {
    -webkit-transform: translateY(-50%) rotateX(0deg);
    -moz-transform: translateY(-50%) rotateX(0deg);
    -ms-transform: translateY(-50%) rotateX(0deg);
    -o-transform: translateY(-50%)rotateX(0deg);
    transform: translateY(-50%) rotateX(0deg);
    -webkit-transition: color .25s, transform .25s;
    -moz-transition: color .25s, transform .25s;
    -ms-transition: color .25s, transform .25s;
    -o-transition: color .25s, transform .25s;
    transition: color .25s, transform .25s;
}*/

.custom_arrows:hover {
    color: #f05a89;
}

.custom_arrows:hover:after,
.custom_arrows:hover:before {
    -webkit-transform: translateY(-50%) rotateX(180deg);
    -moz-transform: translateY(-50%) rotateX(180deg);
    -ms-transform: translateY(-50%) rotateX(180deg);
    -o-transform: translateY(-50%) rotateX(180deg);
    transform: translateY(-50%) rotateX(180deg);
}

#references_section,
#service_section {
    min-height: 469px;
    position: relative;
    overflow: hidden;
}

#references_section_bg_container,
#service_section_bg_container {
    height: 430px;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

#rs_title,
#service_title {
    text-align: center;
    margin-top: 72px;
}

#rs_title h2,
#service_title h2 {
    margin-bottom: 0px;
    margin: 0 15px;
}

#rs_button_wrapper,
#service_button_wrapper,
#ln_button_wrapper {
    text-align: center;
    margin-top: 32px;
}

#rs_button_container,
#service_button_container,
#ln_button_container {
    display: inline-block;
    max-width: 612px;
    width: 100%;
}

#rs_button,
#service_button,
#ln_button {
    overflow: hidden;
    margin: 0 15px;
}

#rs_button a,
#service_button a,
#ln_button a {
    position: relative;
}

#ln_button a {
    margin: 0 10px;
}

.references_home_slide {
    width: 864px;
    height: 367px;
    display: table;
    margin: 0 40px;
}

.references_home_elem {
    width: 50%;
    display: table-cell;
    vertical-align: top;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.references_text_container {
    background-color: #f4f4f4;
}

.references_text_container {
    padding: 30px;
    position: relative;
}

.references_text_container h3,
.re_body h3 {
    margin-bottom: 0;
    font-size: 2.4rem;
}

.references_title h3 {
    font-family: 'Montserrat-Medium';
    font-weight: normal;
}

.references_text_container .references_content {
    margin-bottom: 27px;
    max-height: 130px;
    overflow: hidden;
    margin-top: 24px;
    line-height: 1.8em;
}

.references_text_container .references_content.short {
    max-height: 95px;
}

.references_text_container .references_title {
    max-height: 78px;
    overflow: hidden;
    margin-bottom: 13px;
    text-transform: uppercase;
    position: relative;
    font-family: 'Montserrat-Medium';
    font-size: 2.4rem;
}

.references_text_container .reference_title_separator {
    width: 90px;
    height: 5px;
    background-color: #f05a89;
    display: inline-block;
}

.reference_cat_name {
    text-transform: uppercase;
    margin-bottom: 2px;
}

.references_button {
    position: absolute;
    bottom: 30px;
}

.placeholder_image {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}


/* END HOME references SECTION */

/*TEXTSEPARATOR MODULE*/

.textseparator_wrapper {
    /*min-height: 375px;*/
    text-align: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-top: 1px solid #e7e7e7;
}

.textseparator_content_wrapper {
/*    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);*/
    margin: 71px 0;
    padding: 0 15px;
}

.textseparator_content_wrapper p:last-child {
    margin-bottom: 0;
}

/*END TEXTSEPARATOR MODULE*/


/*FOOTER*/

#footer_bottom {
    min-height: 70px;
    background-color: #0e0d0d;
}

#copyright {
    color: #fff;
    font-family: 'Montserrat-Medium';
    font-weight: normal;
    padding: 25px 0;
}


#footer_bottom .social_panel  {
    padding: 15px 0px 8px;
}

#footer_bottom .social_element .social_icon,
.social_panel.header .social_element .social_icon {
    color: #fff;
    font-size: 39px;
    opacity: 0.5;
}


#service_title_wrapper {
    text-align: center;
}

#service_description {
    color: #fff;
    font-size: 1.6rem;
    max-width: 600px;
    display: inline-block;
    line-height: 1.65em;
    margin-top: 33px;
}

#service_titles_wrapper {
    margin: 79px auto 60px;
}

.service_tile_grid {
    float: left;
    padding: 0 7px;
    width: 25%;
    position: relative;
}

#service_titles_wrapper .ba_element_footer {
    text-align: center;
    float: none;
    border: none;
    padding: 0;
    display: inline-block;
    width: 100%;
    color: #000;
    -webkit-transition: color .25s;
    -moz-transition: color .25s;
    -ms-transition: color .25s;
    -o-transition: color .25s;
    transition: color .25s;
}

#service_titles_wrapper .ba_element_footer:hover {
    color: #fff;
}

.sm_inner_footer {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    display: inline-block;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#service_titles_wrapper .sm_icon {
    font-size: 80px;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}

/*#service_titles_wrapper .service_tile_grid:nth-child(1) .tile_scaler {
    background-color: #a980ae;
}

#service_titles_wrapper .service_tile_grid:nth-child(2) .tile_scaler {
    background-color: #905998;
}

#service_titles_wrapper .service_tile_grid:nth-child(3) .tile_scaler {
    background-color: #7b4383;
}

#service_titles_wrapper .service_tile_grid:nth-child(4) .tile_scaler {
    background-color: #6d3874;
}

#service_titles_wrapper .service_tile_grid:nth-child(5) .tile_scaler {
    background-color: #603066;
}

#service_titles_wrapper .service_tile_grid:nth-child(6) .tile_scaler {
    background-color: #512856;
}*/

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

#footer_services {
    background-color: #231f20;
}

.upper_grid {
    position: relative;
}

#footer_services .s_title {
    display: block !important;
    font-size: 2rem;
    font-family: 'Montserrat-Medium';
    font-weight: normal;
    text-transform: uppercase;
}

#footer_services .sm_element:before {
    display: none;
}

/*#footer_services #references_section {
    min-height: 469px;
    position: relative;
    overflow: hidden;
    z-index: 10;
}*/

.service_tile_grid .sm_element:hover,
.service_tile_grid .sm_element:focus {
    background-color: inherit;
}

/*END FOOTER*/


/*TEAM*/

.page-template-template-team #page_body {
    padding: 63px 0 0;
}

.team_wrapper {
    margin: 0 15px;
}

.team_slide {
    padding: 0 15px 5px;
    text-align: center;
}

.team_avatar {
    background-color: #f05a89;
}

.hyimg_team {
    display: inline-block !important;
}

.page-template-template-home #team_section .hs_body {
    padding: 66px 0 0 0;
}

.ts_head {
    text-align: center;
    position: relative;
    display: inline-block;
}

.slider_wrapper_wide {
    position: relative;
    
    margin-bottom: 29px;
}

.slider_wrapper_wide.slick-wdots,
.kunden_wrapper.slick-wdots {
    margin-bottom: 125px;
}

.slider_wrapper_wide .slick-dots {
    bottom: -75px;
}

.custom_arrows {
    position: absolute;
    bottom: -70px;
    cursor: pointer;
    z-index: 1;
}

.team_module_content p:first-child {
    margin: 0 0 1.8em 0;
}

.team_form_container {
    padding: 0px 0 75px 0;
}

.custom_prev {
    left: 8px;
}

.custom_next  {
    right: 16px;
}

.single-cpt-references-de .custom_next  {
    right: 0;
}

.ts_body {
    text-align: center;
}

.ts_name,
.sq_title {
    font-size: 2.4rem;
    text-transform: uppercase;
    font-family: 'Montserrat-Medium';
    font-weight: normal;
    margin-top: 19px;
}

.video_elem .sq_description {
    margin-bottom: 0;
}

.ts_position {
    font-family: 'Montserrat-Medium';
    font-weight: normal;
    margin-top: 4px;
}

.ts_desc {
    margin-top: 18px;
}

.team_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .25s, visibility .25s;
    -moz-transition: opacity .25s, visibility .25s;
    -ms-transition: opacity .25s, visibility .25s;
    -o-transition: opacity .25s, visibility .25s;
    transition: opacity .25s, visibility .25s;
}

.ts_head:hover .team_overlay {
    opacity: 1;
    visibility: visible;
}

.to_inner {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(240,90,137,0.85);
}

#team_section .social_panel {
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 100%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

#team_section .social_icon {
    color: #fff;
}

#about_content {
    margin-top: 39px;
}


/*END TEAM*/

/*KONTAKTDATEN*/

.kb_body {
    padding: 64px 0 10px;
}

.home .kb_body {
    padding: 64px 0 10px !important;
}

.kd_elem {
    /* border-top: 8px solid #b63f82; */
    padding: 13px 16px 24px 16px;
    background-color: #f1f1f1;
    color: #000;
    margin-bottom: 50px;
}

.kd_elem.main {
    background-color: #f05a89;
    color: #fff;
    /* border-top: 8px solid #9d2a6b; */
}

.kd_elem.main a:hover {
    color: #000 !important;
}

.kd_header {
    margin-bottom: 25px;
}

.kd_body {
    text-align: center;
}

.kd_data {
    font-family: 'Montserrat-Medium';
	font-weight: normal;
}

.kd_title {
	font-family: 'Montserrat-Medium';
	font-weight: normal;
    text-align: center;
    text-transform: uppercase;
    font-size: 2rem;
    margin-bottom: 12px;
    color: inherit;
    margin-top: 0;
}

.kd_desc {
    text-align: center;
    margin-bottom: 30px;
}

.kd_icon {
    font-size: 27px;
    margin-bottom: 13px;
}

.kdd_elem {
    margin-bottom: 18px;
}

/*END KONTAKTDATEN*/

/*CONTACT*/

.contact_grid_wrapper {
    margin: 0 -3px;
}

.contact_grid_half {
    position: relative;
    float: left;
    width: 50%;
    padding: 0 3px;
    margin-bottom: 6px;
}

.cff {
	position: relative;
}


#contact_form, #kobe_form {
    overflow: hidden;
}

.kobe_form_container {
    position: relative;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

/*.ie #contact_form, .ie #kobe_form {
    overflow: visible;
}*/

#contact_form input[type="text"], #contact_form textarea, #kobe_form input[type="text"], #kobe_form textarea, .search-field, #commentform input[type="text"], #commentform textarea, #commentform select {
    width: 100%;
    border: 1px solid #d5d5d5;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    color: #000;
	font-family: 'Montserrat-Medium';
	font-weight: normal;
}

#commentform select {
	margin-bottom: 14px;
    background-color: transparent;
    color: #9c9c9c;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('images/static/select_arrow_gray.png');
    background-repeat: no-repeat;
    background-position: right 20px center;
    cursor: pointer;
}

select::-ms-expand{display:none;}

.comment-form-subscriptions {
	margin-bottom: 14px;
}

#contact_form input[type="text"], #kobe_form input[type="text"], .search-field, #commentform input[type="text"], #commentform select {
    height: 53px;
    padding: 10px 40px 10px 17px;
}

#contact_form input[type="text"].error, #kobe_form input[type="text"].error, #commentform input[type="text"].error, #commentform textarea.error {
    border: 1px solid red;
}

.contact_grid_half.required:after, .cff.required:after {
    content: '*';
    position: absolute;
    top: 14px;
    right: 21px;
    font-size: 2.8rem;
    color: #9c9c9c;
    font-family: 'Montserrat-Light';
}


#contact_form textarea,
#kobe_form textarea,
#commentform textarea {
    resize: none;
    height: 122px;
    padding: 14px 17px 14px 17px;
    margin-bottom: 6px;
}

.ie #contact_form textarea,
.ie #kobe_form textarea,
.ie #commentform textarea {
    margin-bottom: 11px;
}

#contact_form input::-webkit-input-placeholder,
#kobe_form input::-webkit-input-placeholder,
.search-field::-webkit-input-placeholder 
{ color:#9c9c9c !important; text-transform: uppercase; font-family: 'Montserrat-Medium'; }

#contact_form input:-moz-placeholder,
#kobe_form input:-moz-placeholder,
.search-field:-moz-placeholder
{ color:#9c9c9c !important; text-transform: uppercase; font-family: 'Montserrat-Medium'; } /* FF 4-18 */

#contact_form input::-moz-placeholder,
#kobe_form input::-moz-placeholder,
.search-field::-moz-placeholder
{ color:#9c9c9c !important; text-transform: uppercase; font-family: 'Montserrat-Medium'; } /* FF 19+ */

#contact_form input:-ms-input-placeholder,
#kobe_form input:-ms-input-placeholder,
.search-field:-ms-input-placeholder 
{ color:#9c9c9c !important; text-transform: uppercase; font-family: 'Montserrat-Medium'; } /* IE 10+ */

#contact_form textarea::-webkit-input-placeholder,
#kobe_form textarea::-webkit-input-placeholder 
{ color:#9c9c9c !important; text-transform: uppercase; font-family: 'Montserrat-Medium'; }

#contact_form textarea:-moz-placeholder,
#kobe_form textarea:-moz-placeholder
{ color:#9c9c9c !important; text-transform: uppercase; font-family: 'Montserrat-Medium'; } /* FF 4-18 */

#contact_form textarea::-moz-placeholder,
#kobe_form textarea::-moz-placeholder
{ color:#9c9c9c !important; text-transform: uppercase; font-family: 'Montserrat-Medium'; } /* FF 19+ */


#contact_form textarea:-ms-input-placeholder,
#kobe_form textarea:-ms-input-placeholder
{ color:#9c9c9c !important; text-transform: uppercase; font-family: 'Montserrat-Medium'; } /* IE 10+ */

#contact_form input:focus::-webkit-input-placeholder,
#kobe_form input:focus::-webkit-input-placeholder,
.search-field:focus::-webkit-input-placeholder
{ color:transparent; }

#contact_form input:focus:-moz-placeholder,
#kobe_form input:focus:-moz-placeholder,
.search-field:focus::-moz-placeholder 
{ color:transparent; } /* FF 4-18 */

#contact_form input:focus::-moz-placeholder,
#kobe_form input:focus::-moz-placeholder,
.search-field:focus::-moz-placeholder
{ color:transparent; } /* FF 19+ */

#contact_form input:focus:-ms-input-placeholder,
#kobe_form input:focus:-ms-input-placeholder,
.search-field:focus::-ms-input-placeholder
{ color:transparent; } /* IE 10+ */

#contact_form textarea:focus::-webkit-input-placeholder,
#kobe_form textarea:focus::-webkit-input-placeholder
{ color:transparent; }

#contact_form textarea:focus:-moz-placeholder,
#kobe_form textarea:focus:-moz-placeholder
{ color:transparent; } /* FF 4-18 */

#contact_form textarea:focus::-moz-placeholder,
#kobe_form textarea:focus::-moz-placeholder
{ color:transparent; } /* FF 19+ */

#contact_form textarea:focus:-ms-input-placeholder,
#kobe_form textarea:focus:-ms-input-placeholder
{ color:transparent; } /* IE 10+ */
.popup_title {
    margin-top: 0;
}
.kobe_desc {
    margin: 0 0 1.8em 0;
    font-size: 1.6rem;
    font-family: 'Montserrat-Medium';
    font-weight: normal;
}


.send_wrapper {
    text-align: right;
}

.contact_infos {
    font-size: 1.6rem;
    font-family: 'Montserrat-Regular';
    position: relative;
    padding-left: 45px;
    margin-bottom: 33px;
}

.contact_infos:last-child {
    margin-bottom: 0;
}

.contact_infos:before {
    position: absolute;
    top: -7px;
    left: 0;
    font-size: 30px;
    font-family: 'icomoon' !important;
}

.contact_address:before {
    content: "\e91d";
}

.contact_phone:before {
    content: "\e91c";
}

.contact_email:before {
    content: "\e916";
}

.ci_label {
    font-family: 'Montserrat-Medium';
    line-height: 0.8em;
}

.contact_title {
    font-size: 2.4rem;
    font-family: 'Montserrat-Medium';
    text-transform: uppercase;
    margin-bottom: 16px;
}

.contact_title.text-right {
    text-align: right;
}

.contact_content {
    margin-bottom: 29px;
}

.contact_req_text {
    padding: 11px 0;
}

#kobe_form .contact_req_text {
    padding: 3px 0;
}

label.error {
    display: none !important;
}

#response {
    font-size: 2.4rem;
    min-height: 30px;
    font-family: 'Montserrat-Medium';
    font-weight: normal;
    margin-top: 6px;
}

#map_wrapper {
    width: 100%;
    height: 430px;
}

#info_kd_wrapper {
    margin: 55px 0 4px 0;
}

#info_contact_wrapper {
    background-color: #f9f9f9;
    border-top: 1px solid #dedede;
    border-bottom: 1px solid #dedede;
    padding: 63px 0 71px;
}

/*END CONTACT*/

/*LIST PAGE*/

.child_element {
    position: relative;
}

.child_element.odd .child_inner  {
    float: right;
}

.child_element.even .child_inner {
    float: left
}

.child_image {
    width: 67%;
}

.child_content {
    width: 33%;
    padding: 49px 47px;
    position: absolute;
    top: 0;
    height: 100%;
    overflow: hidden;
}

.even .child_inner {
    right: 0;
}

.odd .child_inner {
    left: 0;
}

.list_page_icon  {
    font-size: 65px;
}

.child_content_inner {
    max-height: calc(100% - 70px);
    overflow: hidden;
}

.even .mCSB_outside+.mCSB_scrollTools {
    right: -33px;
}

.odd .mCSB_outside+.mCSB_scrollTools {
    right: auto;
    left: -33px;
}

.mCSB_scrollTools .mCSB_draggerRail {
    width: 7px;
    background: transparent;
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 7px;
    background-color: #e5e5e5;
    opacity: 1;
}

.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #e5e5e5;
    opacity: 1;
}

.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, .mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
    background-color: #e5e5e5;
    opacity: 1;
}

.child_content_inner:not(.mCS_no_scrollbar):after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 0;
    width: 100%;
    -webkit-box-shadow: 0px 0px 21px 18px rgba(255,255,255,1);
    -moz-box-shadow: 0px 0px 21px 18px rgba(255,255,255,1);
    box-shadow: 0px 0px 21px 18px rgba(255,255,255,1);
    -webkit-transform: translate(0,0);
    -moz-transform: translate(0,0);
    -ms-transform: translate(0,0);
    -o-transform: translate(0,0);
    transform: translate(0,0);
    -webkit-transition: transform 0.5s;
    -moz-transition: transform 0.5s;
    -ms-transition: transform 0.5s;
    -o-transition: transform 0.5s;
    transition: transform 0.5s;
}

.child_content_inner:not(.mCS_no_scrollbar).hide_shade:after {
    -webkit-transform: translate(0,100%);
    -moz-transform: translate(0,100%);
    -ms-transform: translate(0,100%);
    -o-transform: translate(0,100%);
    transform: translate(0,100%);
}


/*END LIST PAGE*/

/*REFERENCE PAGE*/

#reference_loader {
    margin: 50px 20px 0;
}

.reference_elem {
    display: block;
}

.reference_grid {
    float: left;
    width: 50%;
    padding: 0 20px;
    margin-bottom: 55px;
}

.re_body {
    margin-top: 21px;
}

.re_body h3 {
    text-transform: uppercase;
    margin-top: 0;
}

.re_body {
    margin-bottom: 5px;
}

.single_image_wrapper {
    margin-bottom: 55px;
}
div#accordian_wrapper {
    margin-top: 30px;
}
.accordian_elem {
    margin-bottom: 6px;
}

.footer_acc {
    color: #fff;
}

.aeh_icon {
    font-size: 27px;
    position: absolute;
    top: 10px;
    right: 0;
    color: #989898;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: transform .25s;
    -moz-transition: transform .25s;
    -ms-transition: transform .25s;
    -o-transition: transform .25s;
    transition: transform .25s;
}

.footer_acc .aeh_icon {
    font-size: 10px;
    position: absolute;
    top: 18px;
    right: 0;
    color: #989898;
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
}

.tile_triangle {
    width: 64px;
    height: 24px;
    position: absolute;
    bottom: 1px;
    left: 50%;
    overflow: hidden;
    -webkit-transform: translate(-50%,100%);
    -moz-transform: translate(-50%,100%);
    -ms-transform: translate(-50%,100%);
    -o-transform: translate(-50%,100%);
    transform: translate(-50%,100%);
}

.inner_triangle {
    position: absolute;
    width: 50px;
    height: 50px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.right_triangle {
    top: -36px;
    left: 13px;
    -webkit-transform: rotate(53deg);
    -moz-transform: rotate(53deg);
    -ms-transform: rotate(53deg);
    -o-transform: rotate(53deg);
    transform: rotate(53deg);
}

.left_triangle {
    top: -36px;
    left: 2px;
    -webkit-transform: rotate(36deg);
    -moz-transform: rotate(36deg);
    -ms-transform: rotate(36deg);
    -o-transform: rotate(36deg);
    transform: rotate(36deg);
}


.lower_grid {
    margin-top: 32px;
}

.accactive .aeh_icon {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.footer_acc .accactive .aeh_icon {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.footer_acc_name_icon {
    font-size: 2.2rem;
    margin-right: 18px;
    position: absolute;
    left: 0;
}

.aeh_title {
    font-family: 'Montserrat-Medium';
    font-weight: normal;
    padding: 13px 35px 13px 0;
    border-bottom: 1px solid #e7e7e7;
    position: relative;
}

.footer_acc:not(.f_border) .aeh_title,
.footer_acc:not(.f_border) .aeh_icon {
    -webkit-transition: color .25s, transform .25s;
    -moz-transition: color .25s, transform .25s;
    -ms-transition: color .25s, transform .25s;
    -o-transition: color .25s, transform .25s;
    transition: color .25s, transform .25s;
}

.footer_acc .aeh_title {
    padding: 15px 35px 18px 40px;
    border-bottom: 1px solid #4b4748;
}

.footer_acc .ae_header:hover .aeh_title,
.footer_acc .ae_header:hover .aeh_icon,
.footer_acc.current_page_acc .ae_header .aeh_title,
.footer_acc.current_page_acc .ae_header .aeh_icon  {
    color: #f05a89;
}

.footer_acc.f_border .aeh_title {
    padding: 15px 35px 18px 40px;
    border-bottom: none;
}

.f_border {
    border-bottom: 1px solid #4b4748;
}

.f_border.current_page_acc > a {
    color: #f05a89 !important;
    text-decoration: none;
    outline: none;
}

.accordian_elem:first-child .aeh_title {
    margin-top: -13px;
}

.accordian_elem.footer_acc:first-child .aeh_title {
    margin-top: 0;
}

.aeh_title:after {
    content: '';
    width: 0;
    height: 3px;
    background-color: #f05a89;
    position: absolute;
    left: 0;
    bottom: -1px;
    -webkit-transition: width .25s;
    -moz-transition: width .25s;
    -ms-transition: width .25s;
    -o-transition: width .25s;
    transition: width .25s;
}

.footer_acc .aeh_title:after {
    display: none;
}

.accactive .aeh_title:after {
    width: 60px;
}

.ae_body {
    display: none;
    margin-top: 21px;
}

#realted_projects_wrapper {
    border-top: 1px solid #e7e7e7;
    margin-top: 43px;
}

#rp_header {
    margin-top: 62px;
}

#rp_description {
    text-align: center;
}

#rpd_inner {
    display: inline-block;
    max-width: 600px;
}

#rpb_wrapper {
    margin: 69px -20px 0;
}
.sr_body h4 {
    margin-top: 10px;
}
.push_top {
    margin-top: 20px;
}

.hide_desktop {
    display: none;
}

.hide_mobile {
    display: block;
}

.mobile_upper .term_link_container:last-child {
    margin-bottom: 0;
}

.term_link_container:first-child {
    margin-top: 0;
    padding-top: 8px;
}


.mobile_lower .term_link_container:last-child {
    margin-bottom: 36px;
}

#single_navigation {
    border-bottom: 1px solid #e7e7e7;
    margin-bottom: 55px;
    min-height: 105px;
}

#sn_inner {
    padding: 43px 0 34px;
}

.sni_elem {
    float: left;
    width: 33.33%;
    min-height: 1px;
}

#sn_inner .sni_elem:nth-child(1) {
    text-align: left;
}

#sn_inner .sni_elem:nth-child(2) {
    text-align: center;
}

#sn_inner .sni_elem:nth-child(3) {
    text-align: right;
}

.sn_icon {
    font-size: 22px;
    color: #929191;
    -webkit-transition: color .25s;
    -moz-transition: color .25s;
    -ms-transition: color .25s;
    -o-transition: color .25s;
    transition: color .25s;
}

.sn_icon:hover {
    color: #f05a89;
}

#bottom_spacer {
    min-height: 1px;
    margin-top: 63px;
}

#page_body.refbody {
    padding: 75px 0 0 0;
}

/*END REFERENCE PAGE*/


/*BLOG*/

.search-form {
    position: relative;
}

input[type="search"] {
    -webkit-appearance: textfield;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.search-submit {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 58px;
    height: 53px;
    border: transparent;
    background: transparent;
    font-family: 'icomoon' !important;
    font-size: 20px;
    font-weight: normal;
}

.b_title {
    text-transform: uppercase;
    position: relative;
    border-bottom: 2px solid #dedede;
    padding-bottom: 20px;
    margin-top: 45px;
    margin-bottom: 18px;
}

.bs_title {
    font-family: 'Montserrat-Medium';
    color: #000;
    font-size: 2.4rem;
    line-height: 1.1em;
    font-weight: normal;
    position: relative;
    padding-bottom: 22px;
    padding-left: 60px;
    border-bottom: 2px solid #dedede;
}

.b_title:after, .bs_title:after, .term_title:after, .single_title:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    height: 2px;
    width: 60px;
    background-color: #f05a89;
}

.bs_title:before {
    font-family: 'icomoon' !important;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 37px;
}

#fa_title.bs_title:before {
    content: "\e92d";
}

#na_title.bs_title:before {
    content: "\e927";
}

#tc_title.bs_title:before {
    content: "\e92b";
}

#co_title.bs_title:before {
    content: "\e903";
}

#ra_title.bs_title:before {
    content: "\e920";
}

.bl_elem {
    border-bottom: 1px solid #dedede;
    margin-top: 18px;
}

.bl_elem.no_desc {
    padding-bottom: 3px;
}

.bl_inner {
    position: relative;
    padding-right: 30px;
}

.bl_elem.selected h5 > a,
.bl_elem.selected .bl_desc {
    color: #f05a89;
}

.bl_elem.selected .sub_menu {
    display: block;
}

.bl_elem.selected .sub_menu.animaClassDownUp {
    opacity: 1 !important;
    visibility: visible !important;
    -webkit-transform: translate(0,0) !important;
    -moz-transform: translate(0,0) !important;
    -ms-transform: translate(0,0) !important;
    -o-transform: translate(0,0) !important;
    transform: translate(0,0) !important;
    -webkit-transition: transform 0.55s, opacity 0.75s, visibility 0.75s;
    -moz-transition: transform 0.55s, opacity 0.75s, visibility 0.75s;
    -ms-transition: transform 0.55s, opacity 0.75s, visibility 0.75s;
    -o-transition: transform 0.55s, opacity 0.75s, visibility 0.75s;
    transition: transform 0.55s, opacity 0.75s, visibility 0.75s;
}

.bl_elem.selected .children_opener.accactive .term_cat_child {
    color: #f05a89;
    -webkit-transform: translate(-50%, -50%) rotateX(180deg) rotateZ(-90deg);
    -moz-transform: translate(-50%, -50%) rotateX(180deg) rotateZ(-90deg);
    -ms-transform: translate(-50%, -50%) rotateX(180deg) rotateZ(-90deg);
    -o-transform: translate(-50%, -50%) rotateX(180deg) rotateZ(-90deg);
    transform: translate(-50%, -50%) rotateX(180deg) rotateZ(-90deg);
}

.bl_desc {
    margin-top: -10px;
    margin-bottom: 17px;
}

#bc_wrapper {
    margin-bottom: 55px;
}

.bp_elem {
    padding-bottom: 23px;
    margin-top: 29px;
    border-bottom: 1px solid #dedede;
}

.children_opener {
    position: absolute;
    top: 50%;
    right: 0;
    width: 30px;
    height: 30px;
    cursor: pointer;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.children_opener.accactive .term_cat_child {
    color: #f05a89;
    -webkit-transform: translate(-50%, -50%) rotateX(180deg) rotateZ(-90deg);
    -moz-transform: translate(-50%, -50%) rotateX(180deg) rotateZ(-90deg);
    -ms-transform: translate(-50%, -50%) rotateX(180deg) rotateZ(-90deg);
    -o-transform: translate(-50%, -50%) rotateX(180deg) rotateZ(-90deg);
    transform: translate(-50%, -50%) rotateX(180deg) rotateZ(-90deg);
}

.children_opener:hover.accactive .term_cat_child {
    color: #f05a89;
    -webkit-transform: translate(-50%, -50%) rotateX(180deg) rotateZ(-90deg);
    -moz-transform: translate(-50%, -50%) rotateX(180deg) rotateZ(-90deg);
    -ms-transform: translate(-50%, -50%) rotateX(180deg) rotateZ(-90deg);
    -o-transform: translate(-50%, -50%) rotateX(180deg) rotateZ(-90deg);
    transform: translate(-50%, -50%) rotateX(180deg) rotateZ(-90deg);
}

.term_cat_child {
    position: absolute;
    top: 50%;
    left: 50%;
    color: #bbbbbb;
    -webkit-transform: translate(-50%, -50%) rotateX(0deg) rotateZ(0deg);
    -moz-transform: translate(-50%, -50%) rotateX(0deg) rotateZ(0deg);
    -ms-transform: translate(-50%, -50%) rotateX(0deg) rotateZ(0deg);
    -o-transform: translate(-50%, -50%) rotateX(0deg) rotateZ(0deg);
    transform: translate(-50%, -50%) rotateX(0deg) rotateZ(0deg);
    -webkit-transition: color .25s, transform .25s;
    -moz-transition: color .25s, transform .25s;
    -ms-transition: color .25s, transform .25s;
    -o-transition: color .25s, transform .25s;
    transition: color .25s, transform .25s;
}

.children_opener:hover .term_cat_child {
    -webkit-transform: translate(-50%, -50%) rotateX(180deg) rotateZ(0deg);
    -moz-transform: translate(-50%, -50%) rotateX(180deg) rotateZ(0deg);
    -ms-transform: translate(-50%, -50%) rotateX(180deg) rotateZ(0deg);
    -o-transform: translate(-50%, -50%) rotateX(180deg) rotateZ(0deg);
    transform: translate(-50%, -50%) rotateX(180deg) rotateZ(0deg);
    color: #f05a89;
}

.bp_title {
    margin-bottom: 11px;
    font-size: 2rem;
    color: #f05a89;
}

.bp_title a:hover {
    text-decoration: underline;
}

.bp_date_cat, .bp_date_tag {
    text-transform: uppercase;
    color: #616161;
    margin-bottom: 5px;
}

.comment_date {
    text-transform: uppercase;
    color: #616161;
}

.bp_date_tag {
    margin-top: 17px;
}

.banner_inner {
	padding: 17px;
	background-color: rgba(222,222,222,0.3);
	width: 100%;
}

.banner.alien-narrow {
	background-image: url('images/static/side_banner.png');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center top;
	padding-top: 145px;
    min-height: 300px;
	margin-bottom: 24px;
}

.banner.alien-narrow .banner_inner {
    width: calc(100% - 20px);
    margin: 0 10px;
}

.banner.alien-wide {
	background-image: url(images/static/top_banner.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center top;
    padding-top: 140px;
    min-height: 300px;
	margin-bottom: 24px;
}

.banner.no-alien .banner_inner {
	padding: 0;
	background-color: transparent;
}

.banner.no-alien {
	margin-bottom: 55px;
    margin-top: 58px;
}

#sidebar_banner_section.mobile {
    overflow: hidden;
    height: 0;
}

.adsbygoogle {
	width: 100%;
	overflow: hidden;
}



#sbst p {
   margin: 1.8em 0 1.8em 0;
}

.bp_exerpt {
    line-height: 1.8em;
}

.bottom_border {
    margin-top: 0;
    margin-bottom: 0;
    border-color: #dedede;
}

.simple_link {
    font-family: 'Montserrat-Medium';
    color: #f05a89;
}

.simple_link:hover {
    text-decoration: underline;
}

.simple_link_arrow {
    font-size: 8px;
}

#tag_cloud {
    margin-top: 45px;
}

#tc_wrapper {
    margin-top: 16px;
}

#tc_wrapper a {
    display: inline-block;
}

.term_title {
    font-size: 3.2rem;
    text-transform: uppercase;
    color: #f05a89;
    position: relative;
    border-bottom: 2px solid #dedede;
    padding-bottom: 22px;
}

.single_title {
    font-size: 3.2rem;
    text-transform: uppercase;
    color: #f05a89;
    position: relative;
    border-bottom: 2px solid #dedede;
    padding-bottom: 22px;
    margin-top: 0;
}

.post_list_title {
    font-size: 2rem;
    color: #f05a89;
    font-family: 'Montserrat-Medium';
    font-weight: normal;
}

.post_list_elem {
    border-bottom: 1px solid #dedede;
    padding-top: 23px;
    padding-bottom: 25px;
    padding-left: 23px;
	padding-right: 23px;
}

.post_list_elem:nth-child(even) {
    background: #f8f8f8;
}

.post_list_elem:first-child {
    padding-top: 7px;
}

.post_list_elem .bp_date_cat {
    margin-bottom: 1px;
}

#no_posts {
    text-align: center;
    font-family: 'Montserrat-Medium';
    font-size: 2rem;
    padding-top: 23px;
    padding-bottom: 25px;
}

.sub_menu {
    display: none;
}

.sub_menu > li > a {
    text-transform: uppercase;
    font-family: 'Montserrat-Medium';
}

.sub_menu > li {
    margin-bottom: 9px;
}

.sub_menu > li:last-child {
    margin-bottom: 9px;
}

.sub_sub_menu {
    padding-left: 18px;
    margin: 10px 0px;
}

.sub_sub_menu > li > a {
    font-family: 'Montserrat-Regular';
    color: #616161;
}

.sub_arrows {
    font-size: 10px;
    margin-right: 9px;
    position: relative;
    top: -1px;
    display: inline-block;
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
    transform: otateX(0deg);
    -webkit-transition: transform .25s;
    -moz-transition: transform .25s;
    -ms-transition: transform .25s;
    -o-transition: transform .25s;
    transition: transform .25s;
}

.cat_sub a:hover .sub_arrows {
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
    color: #f05a89;
}

.cat_sub a.selected {
    color: #f05a89;
}

.comment_author {
    font-size: 2rem;
    font-family: 'Montserrat-Medium';
    text-transform: uppercase;
    font-weight: normal;
    margin-bottom: 0.65em;
}

.comment_hr {
    margin-bottom: 1.05em;
}

.comment-list li {
    margin: 32px 0;
}

.comment-list .children {
    padding-left: 54px;
}

.children li {
    padding: 15px;
    position: relative;
    background-color: #f3f3f3;
}

.children li:first-child:before {
	content: "\e92c";
	position: absolute;
	top: 6px;
	left: -44px;
	color: #f05a89;
	font-family: 'icomoon' !important;
	font-size: 31px;
}


.children li hr {
    border-top: 1px solid #dedede;
}

#cf_title {
	padding-left: 0;
	margin-bottom: 50px;
	margin-top: 33px;
}

#commentform input[type="text"] {
	margin-bottom: 21px;
}

#commentform textarea {
	height: 311px;
}

#commentform .button {
	min-width: 100%;
}

#commentform a {
	color: #f05a89 !important;
}

#commentform a:hover {
	text-decoration: underline !important;
}

.logged-in .subscription_text {
    margin-bottom: 14px;
    margin-top: 11px;
}

#related_articles {
	margin-top: 52px;
}

#cancel-comment-reply-link {
	margin-left: 15px;
    margin-bottom: 15px;
    display: inline-block;
}

input[type="image"] {
	width: auto;
	border: none;
	padding: 0;
}

#bp_social_donate {
	background-color: #f4f4f4;
	border-top: 1px solid #dedede;
	margin-top: 15px;
	padding: 16px 25px;
	margin-bottom: 21px;
}

#bp_donate {
	float: right;
}

#bp_social {
	float: left;
}

.twitter_widget {
	position: relative;
	top: 1px;
}

.social_widget {
	display: inline-block;
	vertical-align: middle;
	margin-right: 20px;
}

.social_widget:last-child {
	margin-right: 0;
}

#subscribe-reloaded {

}

.blog {
    min-height: 120px !important;
}

.blog .page_header {
    display: none;
}

.logged-in .comment_col {
    width: 100%;

}

.logged-in #comment {
    height: 250px;
    margin-bottom: 15px;
}


/*.blog_containers {
    float: left;
}*/

.posts_wrapper {
    width: 75%;
}

.bs_blog_cat_wrapper {
    margin-bottom: 59px;
}



.blog_sidebar {
    width: 25%;
    background-color: #f3f3f3;
    padding: 32px;
    position: absolute;
    right: 0;
    min-height: 100%;
    top: 35px;
}

.bs_sub_title {
    border-bottom: 1px solid #d5d5d5;
    padding-bottom: 28px;
    margin-bottom: 18px;
    margin-top: 31px;
}

.bs_sub_text_container {
    margin-bottom: 54px;
}

.blog_term_link {
    font-size: 1.6rem;
    font-family: 'Montserrat-Medium';
    font-weight: normal;
    text-transform: uppercase;
    display: inline-block;
}

.blog_term_link h2 {
    font-size: inherit;
    -webkit-transition:  color .35s;
    -moz-transition: color .35s;
    -ms-transition: color .35s;
    -o-transition: color .35s;
    transition: color .35s;
}

a.blog_term_link:hover h2 {
    color: #f05a89 !important;
    text-decoration: none;
    outline: none;
}

.blog_term_link.current_term h2 {
    color: #f05a89 !important;
    text-decoration: none;
    outline: none;
}

.term_link_container {
    border-bottom: 1px solid #d5d5d5;
    padding-bottom: 21px;
    margin-bottom: 23px;
    margin-top: 23px;
}

.blog_term_link_date {
    font-family: 'Montserrat-Light';
    font-weight: normal;
    margin-top: 9px;
}

.blog_body {
    position: relative;
}

/*END BLOG*/


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

.ba_element {
    border-radius: 50%;
    position: relative;
    margin: 15px 0;
    overflow: hidden;
}

.ba_element:after {
    content: '';
    border-radius: 50%;
    border: 3px solid #fff;
    position: absolute;
    margin: 4px;
    top: 0;
    left: 0;
    width: calc(100% - 8px);
    height: calc(100% - 8px);
}

.inner_ba {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    text-align: center;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.ba_icon {
    font-size: 60px;
    color: #000;
    -webkit-transition:  color .35s;
    -moz-transition: color .35s;
    -ms-transition: color .35s;
    -o-transition: color .35s;
    transition: color .35s;
}

.ba_title {
    text-align: center;
    text-transform: uppercase;
    font-size: 2rem;
    color: #000;
    font-family: 'Montserrat-Medium';
    font-weight: normal;
    margin-top: 15px;
    -webkit-transition:  color .35s;
    -moz-transition: color .35s;
    -ms-transition: color .35s;
    -o-transition: color .35s;
    transition: color .35s;
}

.ba_element:hover .ba_icon,
.ba_element:hover .ba_title {
    color: #fff;
}

#brand_awereness .hs_body {
    padding: 37px 0 37px;
}

.hyimg.hyimg_ne {
    max-width: 438px !important;
    width: 100%;
    height: auto;
}

.ne_header {
    display: inline-block;
}

.sq_elem {
    text-align: center;
    padding:  0 15px 5px;
}

.sq_date {
    font-size: 1.6rem;
    margin-top: 20px;
}

.sq_title_inner,
.sq_desc_inner,
.sq_button_inner {
    max-width: 438px;
    display: inline-block;
}

.sq_title_inner h2 {
    font-size: inherit;
    margin: inherit;
    line-height: inherit;
}

.sq_button_inner {
    width: 100%;
}

.sq_button_inner .button {
    margin-bottom: 0;
}

.sq_description {
    font-size: 1.6rem;
    margin-top: 16px;
    margin-bottom: 29px;
}

.sq_slider_wrapper {
    padding: 0 15px;
}

.sq_grid_wrapper {
    padding: 0 30px;
}

.sq_grid_wrapper .sq_elem {
    padding-bottom: 69px;
}

#square_tpl_wrapper {
    padding-top: 35px;
/*    margin-bottom: -34px;*/
}

#video_wrapper {
    padding-top: 35px;
}

.sq_video {
    position: relative;
    max-width: 438px;
    width: 100%;
    height: auto;
    display: inline-block;
}

.single_desc_inner {
    max-width: 80%;
    display: inline-block;
    font-size: 1.6rem;
}

.single_date {
    margin-bottom: 18px;
}

.single_news_upper {
    margin-top: -9px;
}

.single_news_upper h1 {
    text-align: center;
}

.single-cpt-blog #page_body,
.single-cpt-news-de #page_body {
    padding: 75px 0 41px;
}

.single_news_middle {
    margin-top: 57px;
    margin-bottom: 23px;
}

.single_news_lower {
    display: inline-block;
}

#unserekunden_section {
    background-color: #f1f1f1;
    position: relative;
    border-top: 1px solid #dedede;
}

.kunden_wrapper {
    margin-bottom: 43px;
}

.kunden_wrapper.slick-wdots {
    margin-bottom: 125px;
}

#unserekunden_section .hs_body {
    padding: 43px 0 0;
}

.kunden_elem {
    text-align: center;
}

.kunden_text_inner {
    max-width: 285px;
    display: inline-block;
}

.slick-slide img {
    display: inline;
}

.kunden_img {
    height: 70px;
    position: relative;
    margin-bottom: 36px;
}

.kunden_img img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
}

#unserekunden_section .slick-dots {
    bottom: -75px;
}

#unserekunden_section .custom_arrows {
    bottom: 56px;
}

.kunden_text {
    margin-bottom: 18px;
}

.kunden_link:after {
    content: "\e925";
    font-size: 9px;
    font-family: 'icomoon' !important;
    margin-left: 3px;
}

.kunden_title {
    margin-bottom: 50px;
}

#square_tpl_wrapper .scroll_loader {
    margin: 0 30px 80px;
}

.scroll_loader {
    margin: 0 30px 30px;
    border-top: 2px solid #f05a89;
    position: relative;
}

.scroll_loader_button {
    position: absolute;
    top: -22px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #fff;
    border: 2px solid #f05a89;
    border-radius: 100px;
    padding: 9px 29px;
    color: #f05a89;
    font-family: 'Montserrat-Medium';
    text-align: center;
    display: inline-block;
    min-width: 151px;
    text-transform: uppercase;
}

/*SERVICES*/

.scei_icon {
    margin-bottom: 25px;
}

.scei-icons {
    font-size: 62px;
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-transition: transform .35s;
    -moz-transition: transform .35s;
    -ms-transition: transform .35s;
    -o-transition: transform .35s;
    transition: transform .35s;
}

.schild_elem:hover .scei-icons {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.scei_title {
    font-size: 1.6rem;
    text-transform: uppercase;
    font-family: 'Montserrat-Medium';
    font-weight: normal;
     margin-bottom: 11px;
}

.schild_elem {
    text-align: center;
    color: #000;
}

.schilde_inner {
    padding: 63px 40px;
}

.schild_elem.current_page {
    background-color: #f9f9f9;
    position: relative;
}

.schild_elem:hover {
    color: #000 !important;
}

.schild_elem.current_page:hover .scei-icons {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg);
}

.schild_elem.current_page .custom_borders {
    position: absolute;
    height: 100%;
    width: 1px;
    background-color: #e7e7e7;
}

.schild_elem.current_page .cb_left {
    left: 0;
}

.schild_elem.current_page .cb_right {
    right: 0;
}

.s_arrows {
    position: absolute;
    font-size: 32px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
    color: #bdbdbd;
}

.s_slick-prev {
    left: -222px;
}

.s_slick-next {
    right: -222px;
}

.s_icons {
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
    transform: rotateX(0deg);
    -webkit-transition: transform .25s;
    -moz-transition: transform .25s;
    -ms-transition: transform .25s;
    -o-transition: transform .25s;
    transition: transform .25s;
}

.s_arrows:hover .s_icons {
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
}

#service_content {
    background-color: #f9f9f9 !important;
    border-top: 1px solid #e7e7e7;
    margin-top: -1px;
    padding: 75px 0 72px;
}

.sc_video_bild {
    margin-top: 2.4em;
    margin-bottom: 5.4em;
}

/*#service_list_container {*/
/*    margin: 30px;*/
/*}*/

.service_term_elem {
    border: 2px solid #e8e8e8;
    margin: 36px 30px;
    position: relative;
}

.ste_inner_elem {
    width: 50%;
}

.service_term_elem.odd .ste_inner_elem {
    float: right;
}

.service_term_elem.even .ste_inner_elem {
    float: left;
}

.ste_left {
    text-align: center;
    position: absolute;
    height: 100%;
}

.service_term_elem.odd .ste_left {
    left: 0;
}

.service_term_elem.even .ste_left {
    right: 0;
}

.ste_left_inner {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.service_button_wrapper .kostenlose_beratung_button {
    margin-left: 15px;
}

.service_button_wrapper .service_details_button {
    margin-left: 15px;
    margin-bottom: 16px;
}

.service_button_wrapper .service_details_button:focus {
    color:#f05a89;
}

.sq_elem.service_square_body {
    text-align: left;
    font-family: 'Montserrat-Medium';
    font-weight: normal;
}

.sq_elem.service_square_body .sq_desc_inner p:first-child {
    margin-top: 0;
}

.sq_elem.service_square_body .sq_desc_inner {
    width: 100%;
}

.sq_elem.service_square_body .sq_description {
    font-size: 1.4rem;
    margin-bottom: -1.8em;
    margin-top: 6px
}

.sq_elem.service_square_body .sq_title {
    margin-bottom: 0;
}

.sq_elem.service_square_body .sq_header img {
 border: 1px solid #e8e8e8;
}

.kobe_wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    z-index: 999;
}

.kobe_form_wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: #fff;
    width: 640px;
    min-height: 300px;
    padding: 35px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.kobe_close {
    width: 50px;
    height: 50px;
    position: absolute;
    top: -20px;
    right: -25px;
    border-radius: 50%;
    background-color: #fff;
    cursor: pointer;
}

.kobe_icon {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #f05a89;
    
}

.sn_links {
    bottom: -20px;
    left: -8px;
}

#page_menu_mobile {
    margin-top: -32px;
    display: none;
}

select {
    width: 100%;
    height: 51px;
    border: 1px solid #D5D5D5;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    font-family: 'Montserrat-Medium';
    font-weight: normal;
    color: #d5d5d5;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-transform: uppercase;
    padding: 10px 40px 10px 17px;
    position: relative;
    background-image: url('images/static/arrow.png');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-color: #fff;
}

select::-ms-expand {
    display: none;
}

select option {
    color: #D5D5D5 !important;
    text-transform: uppercase;
}

/*END SERVICES*/


#search_no_results {
    text-align: center;
    font-size: 2rem;
}

#service_list_container.direct_posts {
    margin-top: 35px;
}

#lexo_footer {
    color: #fff;
    font-family: 'Montserrat-Medium';
    font-weight: normal;
    padding: 21px 0;
}

#lexo_footer img {
    position: relative;
    top: -1px;
    margin-right: 14px;
    width: 71px;
    height: 30px;
}

#breadCrumbContainer {
    border-top: 1px solid rgba(255,255,255,0.2);
    min-height: 50px;
    position: relative;
    z-index: 1;
    padding: 13px 0;
}

.bc_icon {
    font-size: 19px;
    color: #fff;
    
}

.bc_icon.icon-home {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-transition: transform .35s, opacity .25s, color .25s;
    -moz-transition: transform .35s, opacity .25s, color .25s;
    -ms-transition: transform .35s, opacity .25s, color .25s;
    -o-transition: transform .35s, opacity .25s, color .25s;
    transition: transform .35s, opacity .25s, color .25s;
}

.bc_home_link:hover .icon-home {
    color: #f05a89;
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.bc_arrow {
    font-size: 8px;
    position: relative;
    top: -3px;
    margin-left: 9px;
    margin-right: 7px;
}

#bc_page_name {
    font-size: 1.4rem;
    font-family: 'Montserrat-Light';
    text-transform: uppercase;
    color: #fff;
    position: relative;
    top: -1px;
}

.blog_m {
    display: none;
}

#submit_kobe {
    white-space: normal;
}

#kunden_prev_slide {
    left: 23px;
}

#kunden_next_slide {
    right: 38px;
}

.custom_row {
    margin: 0 -7px;
}

.footer_acc_arrow_icon {
    font-size: 9px;
    margin-right: 4px;
}

.term_acc_wrapper {
    margin-bottom: 0;
}

.blog_m .bs_blog_cat_wrapper,
.term_acc_wrapper {
    margin-bottom: 0;
}

.blog_m .blog_drop {
    margin-bottom: 0px;
    cursor: pointer;
}

.blog_m .blog_drop:hover i {
    color: inherit;
}

.blog_m .term_link_container:first-child {
    margin-top: 0;
    padding-top: 31px;
}

.blog_drop h4 {
    position: relative;
    padding-right: 35px;
}

.blog_drop h4 > i {
    position: absolute;
    top: -1px;
    right: 0;
    color: #9BA4A3;
    -webkit-transition: color .25s;
    -moz-transition: color .25s;
    -ms-transition: color .25s;
    -o-transition: color .25s;
    transition: color .25s;
}

.page-template-template-service-php .hs_body.slider {
    padding: 0 !important;
}

.facc_list {
    margin: 0;
    font-size: 1.6rem;
}

h1 .part2,
h2 .part2 {
    font-size: 70%;
}

/* MEDIA QUERY */

@media (max-width: 1600px) {

    .references_home_slide  {
        height: auto;
        margin: 0px 30px;
    }

    .references_home_elem {
        width: 100%;
        display: block;
        vertical-align: top;
    }

    #rs_references_carousel_wrapper {
        margin: 53px 0 99px;
    }

    #references_prev_slide {
        left: 23px;
    }

    #references_next_slide {
        right: 23px;
    }

    .references_text_container .references_content,
    .references_text_container .references_content.short {
        max-height: 75px;
    }

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

    .references_button {
        position: static;
        bottom: auto;
    }
    
    .social_panel.header {
        display: none;
    }

    .s_slick-prev {
        left: -44px;
    }

    .s_slick-next {
        right: -44px;
    }


}

@media (max-width: 1366px) {
    #logo_wrapper {
        max-width: 155px;
    }

    .child_image {
        width: 50%;
    }

    .child_content {
        width: 50%;
    }
}

@media (max-width: 1260px) {
    .s_slick-prev {
        left: -50px;
    }

    .s_slick-next {
        right: -50px;
    }

    .service_sub_wrapper {
        width: calc(100% - 90px);
        margin: 0 auto;
    }
}

@media (max-width: 1200px) {
    
    #page_menu_mobile {
        display: block;
    }
    
    #page_menu {
        display: none;
    }

    #contactdaten_section .container {
        width: 100%;
    }
    
    .blog_m {
        display: block;
        background-color: #f3f3f3;
        padding: 32px;
        min-height: 100%;
    }
    
    .blog_sidebar {
        display: none;
    }

    .service_term_elem .ste_inner_elem {
        float: none !important; 
    }

    .service_term_elem .ste_left {
        left: auto !important;
        right: auto !important;
        position: static;
    }

    .ste_inner_elem {
        width: 100%; 
    }

    .ste_left_inner {
        position: static;
        top: auto;
        left: auto;
        width: auto;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
        padding: 32px 0 36px;
        margin: 0 10%;
    }

    .service_tile_grid {
        width: 50%;
        margin-bottom: 15px;
    }
    
    .separator_footer {
        clear: both;
    }

    #section_menu_wrapper {
        display: none;
    }

    .not_full + .hs_body .slider_wrapper_wide {
        margin-top: 0;
    }

    .section_video {
        width: 190px;
        height: 190px;
        bottom: 0;
        left: 50%;
        -webkit-transform: translate(-50%, 25%);
        -moz-transform: translate(-50%, 25%);
        -ms-transform: translate(-50%, 25%);
        -o-transform: translate(-50%, 25%);
        transform: translate(-50%, 25%);
    }

    #submit {
        width: 100%;
        margin-top: 13px;
    }

    #reference_loader {
        margin: 50px 15px 0;
    }

    .reference_grid {
        padding: 0 15px;
    }

    #rpb_wrapper {
        margin: 69px -15px 0;
    }

	.banner.alien-narrow {
		padding-top: 120px;
	}

	.banner.alien-wide {
	    padding-top: 110px;
		min-height: 250px;
	}
    
    .home_title {
        font-size: 6rem;
    }
    
    .home_text {
        font-size: 1.8rem !important;
        max-width: calc(100% - 120px) !important;
    }
    
    .posts_wrapper.blog_containers {
        width: 100%;
    }
    
    .hs_body {
        padding: 75px 0 75px;
    }
}

@media (max-width: 992px) {

    #lexo_footer, #copyright {
        font-size: 1.3rem;
        text-align: center;
    }

    #lexo_footer {
        padding: 19px 0 6px;
    }

    #copyright {
        padding: 6px 0 19px;
    }

    .section_image_wrapper {
        margin-left: 0;
        margin-top: 35px;
    }

    .section_video {
        width: 160px;
        height: 160px;
    }

    .contact_title.text-right {
        text-align: left;
        margin-top: 40px;
    }


    .child_content,
    .child_image {
        width: auto;
        float: none !important;
        position: static;
    }

    .child_content {
        padding: 49px 15px;
    }

	.banner.alien-narrow {
		padding-top: 90px;
	}

	.banner.alien-wide {
		padding-top: 85px;
	    min-height: 170px;
	}

    .slick-dots {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .hs_body.kb_body .row {
        display: -webkit-box;   /* OLD: Safari,  iOS, Android browser, older WebKit browsers.  */
        display: -moz-box;      /* OLD: Firefox (buggy) */
        display: -ms-flexbox;   /* MID: IE 10 */
        display: -webkit-flex;  /* NEW, Chrome 21?28, Safari 6.1+ */
        display: flex;
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .hs_body.kb_body .col-xs-12.col-sm-4 {
        order: 2;
        -webkit-order: 2;
    }
    .hs_body.kb_body .col-xs-12.col-sm-4:nth-child(2) {
        order: 1;
        -webkit-order: 1;
    }
    .service_button_wrapper .kostenlose_beratung_button {
        margin-left: 0;
        margin-bottom: 0;
    }
    .service_button_wrapper .service_details_button {
        margin-left: 0;
    }
    .kd_title {
        font-size: 1.5rem;
    }
    .kobe_form_wrapper {
        width: 90%;
        height: 90%;
    }


    #ln_button a {
         margin: 0 0 16px 0; 
    }

	.mouse {
	    display: none;
	}

    .service_tile_grid {
        width: 50%;
    }

    .contact_grid_half {
        position: relative;
        float: none;
        width: 100%;
        padding: 0 3px;
        margin-bottom: 6px;
    }

    h1, h2.h1, .h1 {
        font-size: 3.8rem;
    }

    h2 {
        font-size: 3.3rem;
    }

    h1:after ,h2.h1:after {
        width: 160px;
    }

    #service_titles_wrapper {
        margin: 39px 0 18px;
    }

    .references_home_slide {
        margin: 0px 15px;
    }

    .team_wrapper {
        margin: 0;
    }

    .button {
        width: 100%;
        /*color: #fff;*/
        /*background-color: #f05a89;*/
        margin-bottom: 16px;
    }

    /*.white_button {
        color: #000 !important;
        background-color: #fff;
    }*/

    .social_panel.right {
        text-align: center;
        padding: 0px 0px 18px !important;
    }

    .buttons_wrapper .button.fill {
        margin-right: 0;
        margin-bottom: 16px;
    }

    .references_button .button {
        margin-bottom: 0;
    }

    .buttons_wrapper {
        margin-top: 52px;
    }

    #contact_section .hs_header_description {
        margin-bottom: 52px;
    }

    .hs_header_inner .buttons_wrapper {
        display: block;
    }

    .hs_header {
        border-top: 5px solid #fff;
        padding: 0;
        height: auto;
    }

    .hs_header.page_header {
        border-top: none;
    }
/*
    .compact .hs_header.page_header {
        height: 100vh;
    }*/

    .hs_header_inner {
        padding: 0;
        position: static;
        top: 50%;
        left: 0;
        width: 100%;
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -o-transform: translate(0, 0);
        transform: translate(0, 0);
    }

/*    .page_header .hs_header_inner {
        padding: 0 15px;
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        -webkit-transform: translate(0, -50%);
        -moz-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        -o-transform: translate(0, -50%);
        transform: translate(0, -50%);
    }*/

    .page_header .hs_header_title_wrapper {
        padding-top: 0;
    }

    .textseparator_content_wrapper {
        position: static;
        top: 50%;
        left: 0;
        width: 100%;
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -o-transform: translate(0, 0);
        transform: translate(0, 0);
        padding: 0;
    }

    .hs_header_title_wrapper {
        padding-top: 52px;
    }

    .textseparator_wrapper {
        height: auto;
        border-top: 5px solid #f05a89;
        padding: 35px 0 0;
    }

    .home_section {
        min-height: 0;
    }

    header {
        min-height: 512px;
    }

    .home_section .hs_body,
    .references_content,
    .reference_title_separator {
        display: none !important;
    }

    .custom_arrows {
        font-size: 0;
    }

    #reference_loader {
        margin: 50px 0 0;
    }

    .reference_grid {
        padding: 0 15px;
        width: 100%;
        float: none;
    }

    .hide_desktop {
        display: block;
    }

    .hide_mobile {
        display: none;
    }

    .accordian_elem:first-child .aeh_title {
        margin-top: 0;
    }

	.banner.alien-narrow {
		padding-top: 100%;
	}

	.banner.alien-wide {
		padding-top: 20%;
		min-height: auto;
	}

	#sidebar_banner_section.mobile {
	    overflow: hidden;
        height: auto;
	}

	#sidebar_banner_section.desktop {
		height: 0;
        overflow: hidden;
	}

    #side_info_panel {
        display: none;
    }

/*	#side_info_panel {
	    position: absolute;
	    right: auto;
		left: 50%;
	    top: auto;
	    bottom: 0;
	    width: auto;
		min-width: 180px;
	    min-height: 46px;
	    background-color: #fff;
	    padding: 13px 5px 13px 13px;
	    -webkit-transform: translate3d(-50%, 0, 0);
	    -moz-transform: translate3d(-50%, 0, 0);
	    -ms-transform: translate3d(-50%, 0, 0);
	    -o-transform: translate3d(-50%, 0, 0);
	    transform: translate3d(-50%, 0, 0);
	    -webkit-border-top-left-radius: 10px;
	    -webkit-border-bottom-left-radius: 0;
	    -moz-border-radius-topleft: 10px;
	    -moz-border-radius-bottomleft: 0;
	    border-top-left-radius: 10px;
	    border-bottom-left-radius: 0;
		-webkit-border-top-right-radius: 10px;
		-moz-border-radius-topright: 10px;
		border-top-right-radius: 10px;
	    z-index: 10;
	}

	.sip_elem {
		float: left;
		margin-bottom: 0;
		margin-right: 15px;
        position: static;
	}

	.sip_elem:last-child {
		margin-right: 0;
	}

	.sip_pop {
	    position: absolute;
	    left: 50%;
	    top: -50%;
	    visibility: hidden;
	    opacity: 0;
	    min-width: 50px;
	    min-height: 100%;
	    background: #fff;
	    white-space: nowrap;
	    font-family: 'Montserrat-Medium';
	    padding: 7px 16px 8px 13px;
	    -webkit-transform: translate3d(-49%, -149%, 0px);
	    -moz-transform: translate3d(-49%, -149%, 0px);
	    -ms-transform: translate3d(-49%, -149%, 0px);
	    -o-transform: translate3d(-49%, -149%, 0px);
	     transform: translate3d(-49%, -149%, 0px);
	    -webkit-border-radius: 5px;
	    -moz-border-radius: 5px;
	    border-radius: 5px;
	    -webkit-transition: top .25s, left .25s, visibility .25s, opacity .25s;
	    -moz-transition: top .25s, left .25s, visibility .25s, opacity .25s;
	    -ms-transition: top .25s, left .25s, visibility .25s, opacity .25s;
	    -o-transition: top .25s, left .25s, visibility .25s, opacity .25s;
	    transition: top .25s, left .25s, visibility .25s, opacity .25s;
	    z-index: 1;
	}

	.sip_pop.active {
	    left: 50%;
		top: -75%;
	    visibility: visible;
	    opacity: 1;
	}

	.sip_pop:after {
	    content: "";
	    position: absolute;
	    width: 15px;
	    height: 15px;
	    background-color: #fff;
	    top: 70%;
	    right: auto;
		left: 50%;
	    -webkit-transform: translate(-50%, 0) rotate(45deg);
	    -moz-transform: translate(-50%, 0) rotate(45deg);
	    -ms-transform: translate(-50%, 0) rotate(45deg);
	    -o-transform: translate(-50%, 0) rotate(45deg);
	    transform: translate(-50%, 0) rotate(45deg);
	    z-index: 0;
	}*/

    .custom_arrows {
        position: absolute;
        bottom: -61px;
    }

    #unserekunden_section .custom_arrows {
        bottom: 60px;
    }

    #kunden_next_slide {
        right: 15px;
    }

    #kunden_prev_slide {
        left: 9px;
    }

    .slider_wrapper_wide {
        position: relative;
    }
    
    #brand_awereness .hs_header_inner,
    .hs_header_tpl {
        padding-bottom: 52px;
    }
    
    .home_text {
        font-size: 1.8rem !important;
        max-width: none !important;
    }
    
    .hs_header.page_header {
        padding-top: 60px;
        height: auto;
    }
    
    /*.page_header .hs_header_inner {
        padding: 0 15px;
        position: static;
        top: 50%;
        left: 0;
        width: 100%;
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -o-transform: translate(0, 0);
        transform: translate(0, 0);
    }*/
    
    .service_tile_grid {
        margin-bottom: 40px;
    }

    .sn_links {
        bottom: -10px;
    }
    
    .contact_req_text {
        text-align: center;
        margin-bottom: 11px;
    }
    
    .page-template-template-home #team_section .hs_body {
        padding: 52px 0 0 0;
    }
    
    .page-template-template-home #team_section .contact_title.text-right {
        text-align: left;
        margin-top: 18px;
    }

    #logo_wrapper {
        margin-left: 15px;
    }

    #side_menu_button_container {
        width: 66px;
    }

    #ln_button_container {
        width: 100%;
        max-width: none;
    }

    #ln_button {
        margin: 0;
    }

    .sq_slider_wrapper {
        padding: 0; 
    }

    h6.aeh_title {
        font-size: 1.4rem;
    }

    .hs_body.slider {
        padding: 15px 0 0 0;
    }

    .sq_grid_wrapper {
        padding: 0 15px;
    }

    .blog_m {
        padding: 35px 15px;
    }

    .service_term_elem {
        margin: 35px 15px;
    }

    .sc_video_bild {
        margin-top: 2.4em;
        margin-bottom: 0; 
    }

    .page-template-template-team #page_body {
        padding: 52px 0 0;
    }

    .page-template-template-team #team_section .contact_title.text-right {
        text-align: left;
        margin-top: 18px;
    }

    .sq_elem.animaClassDownUp {
        -webkit-transform: translate3d(0%,30px,0) !important;
        -moz-transform: translate3d(0%,30px,0) !important;
        -ms-transform: translate3d(0%,30px,0) !important;
        -o-transform: translate3d(0%,30px,0) !important;
        transform: translate3d(0%,30px,0) !important;
    }

}

@media (max-width : 480px) {
    .scei_desc {
        display: none;
    }
    h1, h2.h1, .h1 {
        font-size: 2.8rem;
    }
    
    #service_titles_wrapper .sm_element {
        padding: 0 10px;
    }
    
    .service_tile_grid {
        width: 100%;
    }

    .ts_head {
        display: block;
    }

    .desc_social_name {
        display: none;
    }

	#logo_wrapper {
	    max-width: 145px;
	}

/*	#logo_wrapper {
	    margin-left: 12px;
	}*/

	#bp_social_donate {
	    padding: 15px 15px;
	}

	#bp_donate {
	    float: none;
	    text-align: center;
	    margin-top: 25px;
	}

	#bp_social {
	    float: none;
	}

	.social_widget {
     	display: block;
	    vertical-align: middle;
		text-align: center;
	    margin-right: 0;
	    width: 25%;
	    float: left;
	}

    .home_title {
        font-size: 3.3rem;
    }

    #lexo_footer img {
        position: relative;
        top: -1px;
        display: block;
        margin: 0 auto 15px;
    }
    
    .ste_left_inner h2 {
        font-size: 1.7rem;
    }
    
    .baw_class {
        width: 100%;
    }

    .kobe_form_wrapper #googlecaptcha_wrapper.active {
        -webkit-transform: translate(0,-130%) scale(0.85);
        -moz-transform: translate(0,-130%) scale(0.85);
        -ms-transform: translate(0,-130%) scale(0.85);
        -o-transform: translate(0,-130%) scale(0.85);
        transform: translate(0,-130%) scale(0.85);
    }
    .kobe_form_wrapper #googlecaptcha_wrapper {
        top: 19px;
        right: -24px;
        -webkit-transform: translate(0,-150%) scale(0.85);
        -moz-transform: translate(0,-150%) scale(0.85);
        -ms-transform: translate(0,-150%) scale(0.85);
        -o-transform: translate(0,-150%) scale(0.85);
        transform: translate(0,-150%) scale(0.85);
    }
}

@media (max-width : 360px) {
/*    #logo_wrapper {
        margin-left: 6px;
    }*/
    
    .kobe_form_wrapper {
        padding: 15px;
    }
    

}

@media (max-height : 768px) and (min-width : 768px) {
    .page-template-template-home .hs_header.page_header {
        padding-top: 60px;
        height: auto;
        padding-bottom: 140px;
    }
    
    .page-template-template-home .page_header .hs_header_inner {
        padding: 0 15px;
        position: static;
        top: 50%;
        left: 0;
        width: 100%;
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -o-transform: translate(0, 0);
        transform: translate(0, 0);
    }
    
    .page-template-template-home header {
        min-height: 512px;
    }

    .page-template-template-home.desktop  header {
        min-height: 100vh;
    }
}

#info_map_wrapper {
    border-bottom: 1px solid #dedede;
    padding: 33px 0 71px;
}

.map-wrapper {
    padding-top: 30px;
}

.map-wrapper {
    display: flex;
    justify-content: center;
}

.map-wrapper img {
    border-radius: 8px;
    transition: all .2s;
}

.map-wrapper a:hover img {
    transform: scale(1.025);
}