﻿/* Globale Styles Start */

@font-face {
    font-family: 'Tahoma';
    src: url('../font/tahoma.ttf') format('truetype');
}

.greenFont, .greenFont strong {
    color: #62b144 !important;
}

.bigArrow {
    font-size: 40px;
    line-height: 0;
    color: white;
}

.customInput input[type="submit"].validateBtn,
.customInput input[type="button"]#submitBtn.validateBtn {
    margin-top: 25px;
}

.row.whiterow {
    background-color: white;
    padding-left: 20px;
    padding-right: 25px;
    margin-left: 0;
    margin-right: 0;
}

textarea {
    resize: none;
}

html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    height: 100%;
}

body {
    font-family: 'Open Sans', sans-serif;
    overflow-x: hidden;
    padding-top: 67px;
    background-color: #eeeeee;
}

a {
    color: #62b144;
}

    a:hover {
        color: #62b144;
    }

.container.extraPaddingBottom {
    margin-bottom: 50px;
}

.container.extraPaddingTop {
    margin-top: 25px;
}


.textimgsection .row.whiterow {
    padding-right: 0;
    padding-left: 0;
}

.pTitle {
    margin-top: 10px;
    margin-left: 2px;
    margin-bottom: 20px;
}

.textside {
    padding: 40px;
}

.smalltext {
    font-size: 14px !important;
}

.biggerText .smalltext {
    font-size: 16px !important;
}

.mediumtext {
    font-size: 18px !important;
}

.imgleft {
    flex-direction: row-reverse;
}

    .imgleft .buttonWrapper {
        direction: ltr;
        left: 15px;
    }

#loadingwrap {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 40;
    background-color: white;
    opacity: 1;
}

.stickytext {
    display: none;
}

#dropdownsettings {
    display: none;
}


#loadingwrap.fadeout {
    opacity: 0;
    transition: opacity ease-in .2s;
}

#loadingwrap.hidden {
    z-index: 0;
}

#wrapper {
    min-height: 100%;
    height: auto !important;
    margin-bottom: -94px; /* the bottom margin is the negative value of the footer's total height */
}

    #wrapper:after {
        content: "";
        display: block;
        height: 94px; /* the footer's total height */
    }

#content {
    height: 100%;
}


a:hover {
    text-decoration: none;
}

*:focus, *:visited, *:active {
    text-decoration: none;
}

.greenline {
    border-bottom: 1px solid #62b144;
}

.whiteline {
    border-bottom: 1px solid white;
}

.fright {
    float: right;
}

p {
    padding: 0;
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    font-weight: bold;
}

h1 {
    font-size: 28px;
    text-align: center;
}

h2 {
    font-size: 25px;
}

h3 {
    font-size: 30px;
}

.desktop {
    display: none;
}

.managerbild img {
    max-width: 100%;
}

#breaker {
    height: 10pt;
}


*:focus {
    outline: none;
}

.hamburger {
    position: absolute;
    left: 0;
    transition: top ease .5s;
    top: 8px;
}

li.active, li.active > a, ul.nav > li.active, ul.nav li.active > a, .mobilenav > ul > li.active, .mobilenav > ul > li.active > a, .mobilenav > ul > li.active > a, .mobilenav > ul > li.active {
    color: white;
}

    li.active > a {
        border-bottom: 1px solid white;
    }

.manager {
    cursor: pointer;
    padding: 15px 25px;
}

.managerwrapper {
    border-bottom: 4px solid #62b144;
}

.innerwrapper {
    border: 4px solid #62b144;
    border-bottom: 2px solid #adadad;
    transition: background-color ease-in-out .2s;
}


.detailData {
    padding: 15px 25px;
    transition: all ease .5s;
    overflow: hidden;
    max-height: 1200px;
}

    .detailData.closed {
        max-height: 0;
        padding-bottom: 0;
        padding-top: 0;
    }

.innerwrapper img {
    opacity: 0;
    transition: opacity, transform ease-in-out .2s;
}

.manager.current img {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.innerwrapper:hover img {
    opacity: 1;
}

.detailData > div {
    margin-top: 15px;
}


    .detailData > div > div {
        padding: 5px 10px;
        background-color: #ccc;
        min-height: 80px;
    }

.marginauto {
    margin-left: auto;
    margin-top: 10px;
}

/* Globale Styles End */

/* cookie banner */

.cookie-banner {
    padding: 50px 0;
    background-color: #62b144;
    color: white;
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 99999999999;
    width: 100%;
}

.cookie-banner {
    transform: translateY(1000%);
    animation: 1s ease-in-out forwards hideCookieBanner;
    animation-delay: 2s;
}

@keyframes hideCookieBanner {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0%);
    }
}

.cookie-banner .cookie-banner-wrapper {
    position: relative;
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: space-between;
}

    .cookie-banner .cookie-banner-wrapper p {
        margin-right: 50px;
    }

.cookie-banner a:not(.button) {
    color: white;
    text-decoration: underline;
}

    .cookie-banner a:not(.button):hover {
        color: white;
    }


.cookie-banner a.button {
    color: white;
    border: 2px solid white;
    width: 100%;
    margin-top: 5px;
    margin-bottom: 5px;
    text-align: center;
    margin-right: 0px;
    height: 48px;
}

    .cookie-banner a.button:hover {
        color: black;
        background-color: white;
    }

.cookie-banner a.button {
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    text-align: left;
}

@media (max-width: 768px) {
    .cookie-banner .cookie-banner-wrapper {
        align-items: center;
        flex-direction: column;
    }

    .cookie-banner p {
        margin-bottom: 30px;
    }

    .cookie-banner .cookie-banner-wrapper > span {
        margin-right: 0px;
    }
}

/* cookie banner */

/* sticky items */

.sticky-items {
    position: fixed;
    top: 175px;
    bottom: 0;
    right: 0;
    z-index: 20;
    display: none;
}

    .sticky-items img {
        height: 55px;
        width: 55px;
        margin-bottom: 14px;
        display: block;
        background-color: #ccc;
        transition: all ease .5s;
    }

        .sticky-items img:hover {
            background-color: #62b144;
        }

/* sticky items*/

/* Header Start */

header {
    position: relative;
    z-index: 10;
}

    header.scrolled {
        position: fixed;
    }

.topnav {
    position: fixed;
    top: 0;
    background-color: white;
    width: 100%;
    transition: padding-bottom ease .25s;
}


    .topnav li img {
        display: none;
    }

    .topnav.scrolled {
        box-shadow: #adadad 0 4px 20px -2px;
        box-shadow: rgba(173, 173, 173, 0.5) 0 4px 20px -2px;
    }

    .topnav.bigger {
        box-shadow: none;
    }


.mainlogo {
    width: 180px;
    padding-bottom: 15px;
    padding-top: 15px;
    transition: all ease .5s;
    margin-left: 50px;
    float: right;
}


ul.nav {
    padding-bottom: 8px;
    transition: all ease .5s;
}


.nav > li {
    margin-left: 25px;
    /*35px*/
}

ul.nav > li {
    font-weight: bold;
    cursor: pointer;
    color: #414141;
}

.nav .submenu .li {
    font-weight: normal;
}

.nav > li > a {
    color: #414141;
    font-size: 16px;
    font-weight: normal;
    white-space: nowrap;
}

.nav > li a:hover {
    color: #62b144;
}

.nav li ul {
    list-style-type: none;
    padding: 0;
}

    .nav li ul li {
        margin-top: 15px;
    }

        .nav li ul li:first-child {
            margin-top: 35px;
        }


        .nav li ul li:last-child {
            margin-bottom: 30px;
        }

    .nav li ul a {
        color: #414141;
        font-size: 15px;
    }


    .nav li ul li.bold a, .mobilenav li ul li.bold a {
        font-weight: bold;
        white-space: nowrap;
    }

.headerimg img {
    width: 100%;
}

.headerimg .container.absoluteContainer {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 100%;
}

    .headerimg .container.absoluteContainer .row, .headerimg .container.absoluteContainer .col-12 {
        height: 100%;
    }

.headerimg {
    position: relative;
}

    .headerimg.marginTop {
        margin-top: 5px;
    }

.headertext {
    color: white;
    text-align: center;
    margin-top: 0;
    text-shadow: 2px 3px 5px #000;
    font-size: 15px;
    display: none;
}

    .headertext:before {
        display: inline;
        content: "\00AB";
        margin-right: -7px;
    }

    .headertext:after {
        display: inline;
        content: "\00BB";
        margin-left: -7px;
    }

.headerslogan {
    font-weight: bold;
    color: #62b144;
    font-size: 15px;
    padding-top: 15px;
    padding-bottom: 6px;
}

.submenu {
    position: absolute;
    margin-left: -50px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s linear;
    z-index: -1;
    padding-left: 50px;
    padding-right: 50px;
    margin-top: 8px;
    border-left: 2px solid #62b144;
    border-right: 2px solid #62b144;
    border-bottom: 0 solid #62b144;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

ul.nav li:hover .submenu {
    max-height: 500px;
    padding-top: 0;
    border-bottom: 2px solid #62b144;
    z-index: 10;
    transition: max-height .5s ease-out;
}

.submenu div.active {
    color: #62b144;
}

/* Header End */

/* Textsection Start */
.textsection {
    padding-top: 0;
    padding-bottom: 25px;
}

    .textsection ul li ul li {
        list-style-type: disc;
    }

    .textsection.extraPaddingBottom {
        padding-bottom: 50px;
    }

    .textsection.extraPaddingTop {
        padding-top: 25px;
    }

    .textsection.noPaddingBottom {
        padding-bottom: 0;
    }

    .textsection a {
        color: #62b144;
        font-weight: bold;
    }

    .textsection p, .textsection strong, .textsection li, .textsection span {
        color: black;
        font-size: 16px;
    }

.titlesection + .textsection .introTitle {
    margin-top: 12.5px;
}

.textsection h4, .textsection h3, .textsection .introTitle {
    font-size: 18px;
    font-weight: bold;
    margin-top: 25px;
}

    .textsection h3, .textsection h3 strong {
        font-size: 22px;
    }

.textsection .introTitle {
    font-size: 20px;
}

.textsection h4 ~ p, .textsection h4 ~ ul, .textsection h4 ~ strong, .textsection h4 ~ span {
    margin-top: 7.5px;
}

.textsection h3 ~ p, .textsection h3 ~ ul, .textsection h3 ~ strong, .textsection h3 ~ span {
    margin-top: 7.5px;
}

.textsection .introTitle ~ p {
    margin-top: 15px;
}

.textsection p:first-child {
    margin-top: 0;
}

.textsection .rightbox p:first-child {
    margin-top: 15px;
}

.textsection p {
    margin-top: 25px;
}

.news .textsection p {
    margin-top: 7.5px;
    padding-bottom: 5px;
}

.textsection .contentBox:not(.rightbox) > h4:first-child, .textsection .contentBox:not(.rightbox) > .introTitle:first-child, .textsection .contentBox:not(.rightbox) > h3:first-child {
    margin-top: 0;
}

.textsection .contentBox ul {
    padding-left: 22px;
    margin-bottom: 0;
}

/* Textsection End*/

/* Customer List Start*/
.customerList {
    padding-bottom: 25px;
}

    .customerList.extraPaddingBottom {
        padding-bottom: 50px;
    }

    .customerList.extraPaddingTop {
        padding-top: 25px;
    }

    .customerList .row {
        background: white;
        border-left: 1px solid #ccc;
        border-top: 1px solid #ccc;
    }
/* Customer List End*/
/* Boxsection Start */
.boxsection {
    margin-bottom: 25px;
}

    .boxsection.extraPaddingBottom {
        margin-bottom: 50px;
    }

    .boxsection.extraPaddingTop {
        margin-top: 25px;
    }

    .boxsection h2 {
        font-weight: bold;
        margin-bottom: 20px;
    }

.box-parent:first-child {
    margin-bottom: 50px;
}

.box-black {
    background-color: #606060;
    color: white;
    padding: 30px;
    height: 100%;
    position: relative;
}

    .box-black p {
        padding-bottom: 27.5px;
        font-size: 16px;
    }

    .box-black .contentBox p:last-child {
        padding-bottom: 150px;
    }

    .box-black h2 {
        margin-top: -7px;
    }

a.button {
    padding: 10px 25px;
    display: inline-block;
    margin-right: 40px;
    transition: color .3s .2s ease, background-color .5s;
    font-weight: bold;
}

.box-black a.button {
    color: white;
    border: 2px solid white;
    width: 100%;
    margin-top: 5px;
    margin-bottom: 5px;
    text-align: center;
    margin-right: 30px;
}

.boxsection a.button:hover {
    color: black;
    background-color: white;
}

.boxsection .links {
    position: absolute;
    bottom: 30px;
    padding-right: 30px;
}

/* Boxsection End*/

/*Managerpool Start*/

.managerpool {
    margin-bottom: 25px;
}

    .managerpool:not(.detailseite) {
        background-image: url(../media/1083/header-managerpool.jpg);
        padding-bottom: 50px;
        padding-top: 50px;
    }

    .managerpool img {
        margin-left: -85%;
        position: relative;
        z-index: -1;
    }

    .managerpool.extraPaddingBottom {
        margin-bottom: 50px;
    }

    .managerpool.extraPaddingTop {
        margin-top: 25px;
    }

    .managerpool .textsection p {
        text-shadow: 2px 3px 5px #fff;
        font-weight: bold;
    }

select {
    font-size: 14px;
    background-color: white;
    -webkit-appearance: none;
    width: 100%;
    padding: 14px;
    padding-right: 65px;
    border: 1px solid #414141;
    margin-top: 18px;
    border-radius: 0;
    background-image: url('../_img/arrow_green.png');
    background-repeat: no-repeat;
    background-position: center right 20px;
    cursor: pointer;
}

    select.error {
        color: red !important;
    }

/* Change the white to any color ;) */

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px #fff inset;
}

.group select {
    margin-top: 35px;
}

.managerpool select::-ms-expand {
    display: none; /* hide the default arrow in ie10 and ie11 */
}

a.buttonGreen {
    background-color: #62b144;
    margin-right: 0;
    color: white;
    border: 2px solid #62b144;
    margin-top: 25px;
    font-size: 14px;
    -webkit-appearance: none;
}

    a.buttonGreen:hover {
        background-color: white;
        color: #62b144;
    }

.customInput input[type="submit"],
.customInput input[type="button"]#submitBtn {
    background-color: #62b144;
    margin-right: 0;
    color: white;
    border: 2px solid #62b144;
    margin-top: 55px;
    font-size: 14px;
    -webkit-appearance: none;
    cursor: pointer;
}

    .customInput input[type="submit"]:hover,
    .customInput input[type="button"]#submitBtn:hover {
        background-color: white;
        color: #62b144;
    }


/*Managerpool End*/

/* Quote Start*/

.quote {
    background-color: #62b144;
    padding-top: 50px;
    padding-bottom: 50px;
    color: white;
    margin-top: -3px;
    z-index: 3;
    position: relative;
    margin-bottom: 25px;
}

    .quote.extraPaddingBottom {
        margin-bottom: 50px;
    }

    .quote.extraPaddingTop {
        margin-top: 25px;
    }

    .quote .swiper-slide p {
        padding-bottom: 40px;
        font-size: 18px;
    }

.swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    background-color: #62b144;
    border: 1px solid white;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    width: 16px;
    height: 16px;
    background-color: white;
}

.swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 0;
}

.quote span.author {
    display: block;
    margin-top: 20px;
    font-style: italic;
    font-size: 14px;
}

/* Quote End*/

/* Contact */

.contact {
    display: block;
    margin-top: 50px;
    background-color: #62b144;
    padding-top: 70px;
    padding-bottom: 0;
    position: relative;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    font-size: 18px;
}

    .contact img.socialmedia {
        width: 30px;
        margin-right: 20px;
    }

    .contact p {
        margin-top: 60px;
        margin-bottom: 60px;
    }

#googlemaps {
    position: relative;
    width: 100%;
    height: 400px;
}

#googlemapBig {
    width: 100%;
    height: 160px;
}

.fullWidth {
    width: 100%;
}

.imgWrapper {
    margin-top: 50px;
}

.contactaddress {
    margin-top: 0;
    margin-bottom: 70px;
    color: white;
}

    .contactaddress a {
        color: white;
    }

.addressdata p {
    margin: 0;
}

.addressdata {
    margin-top: 60px;
}

.addressinfo {
    margin-top: 20px;
    margin-bottom: 37.5px;
}

    .addressinfo > div {
        margin-bottom: 5px;
    }

.info {
    margin-top: 37.5px;
}

    .info p {
        margin: 0;
    }

/* Contact End*/

/* Footer Start */

footer {
    padding-top: 35px;
    padding-bottom: 35px;
}

    footer .copyright {
        color: #828282;
        font-size: 14px;
    }

    footer .footermenu a {
        color: #62b144;
    }

    footer li.active {
        font-weight: bold;
    }

    footer .footermenu li {
        display: flex;
        floaT: left;
        border-left: 1px solid #62b144;
        padding-left: 11px;
        padding-right: 11px;
        font-size: 14px;
    }

        footer .footermenu li:first-child {
            border: none;
        }

        footer .footermenu li:last-child {
            padding-right: 0;
        }

    footer .footermenu ul {
        margin: 0;
    }

.footermenu {
    display: none;
}


/* Footer End */

/* MobileNav Start */

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    transition: all ease .3s;
    background-color: #414141;
}

.is-active .hamburger-inner, .is-active .hamburger-inner::before, .is-active .hamburger-inner::after {
    background-color: #62b144;
}


.mobilenav {
    position: fixed;
    top: 0;
    left: -100%;
    right: 0;
    bottom: 0;
    transition: all ease .3s;
    z-index: -1;
    padding-top: 90px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

    .mobilenav.expanded {
        left: 0;
        background-color: #62b144;
    }

    .mobilenav.scrolled {
        padding-top: 90px;
    }

    .mobilenav .submenu {
        position: relative;
        margin: 0;
        border: 0;
        background-color: transparent;
        padding: 0;
        border-radius: 0;
        z-index: 10 !important;
    }


    .mobilenav > ul > li > a, .mobilenav > ul > li {
        font-weight: bold;
        cursor: pointer;
    }

.submenu ul li a {
    font-weight: normal;
}

.mobilenav ul li img {
    width: 28px;
    height: 28px;
    margin-top: -5px;
    margin-left: 5px;
    padding: 3px;
}

.mobilenav > ul > li {
    margin-bottom: 25px;
}

.mobilenav a {
    color: #fff;
}

.mobilenav ul li {
    list-style: none;
    color: #414141;
}

.mobilenav > ul {
    padding-left: 0;
}

.mobilebuttonnav {
    position: absolute;
    bottom: 0;
    right: 5px;
}

    .mobilebuttonnav img {
        background-color: #62b144;
        width: 50%;
        float: left;
        border: 2px solid white;
        width: 65px;
        margin-bottom: 5px;
    }

    .mobilebuttonnav .stickyWrapper.clearfix:after {
        display: inline;
    }

.mobilenav > ul.metanav {
    padding-top: 30px;
}

    .mobilenav > ul.metanav li a {
        color: #fff;
        font-weight: normal;
    }

    .mobilenav > ul.metanav li.active a {
        color: white;
        border-bottom: 1px solid white;
    }


.mobilenav .submenu.expanded {
    max-height: 600px;
}

.mobilenav .submenu ul li:first-child {
    margin-top: 15px;
}

.mobilenav .submenu ul li {
    margin-top: 10px;
    margin-bottom: 10px;
}

.mobilenav .submenu > ul {
    border-left: 2px solid #62b144;
    padding-left: 20px;
}

.visible {
    z-index: 10;
    overflow-y: scroll;
}

/* MobileNav End */

/* AnchorNav Start */
.anchorouterwrapper {
    width: 100%;
    padding-bottom: 7px;
    z-index: 5;
}

.navfixed {
    transition: all ease .3s;
    position: fixed;
    top: 110px;
    background-color: white;
    box-shadow: #adadad 0 4px 20px -2px;
    box-shadow: rgba(173, 173, 173, 0.5) 0 4px 20px -2px;
}

.anchorouterwrapper.navfixed .anchorwrapper {
    position: fixed;
    background: white;
    height: 45px;
}

.anchornav {
    width: 100%;
    position: absolute;
    z-index: 5;
    margin-top: -67.5px;
    display: none;
}

.anchorwrapper {
    text-align: center;
    height: 40px;
    position: absolute;
    width: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

    .anchorwrapper a:last-child .anchorbutton {
        margin: 0;
    }

.anchorbutton {
    display: inline-block;
    background-color: #B0D8A1;
    padding: 5px 20px;
    font-weight: bold;
    font-size: 18px;
    color: white;
    transition: all ease .3s;
    cursor: pointer;
    min-width: 200px;
    text-align: center;
    vertical-align: top;
    display: inline-block;
    *display: inline;
    zoom: 1;
    margin-right: 40px;
    margin-bottom: 7.5px;
}


    .anchorbutton:hover {
        background-color: #62b144;
    }

    .anchorbutton.active {
        background-color: #62b144;
    }


/* AnchorNav End*/


/* TitleSection Start */

.titlesection {
    padding-bottom: 12.5px;
}

    .titlesection.extraPaddingBottom {
        padding-bottom: 25px;
    }

    .titlesection.extraPaddingTop {
        padding-top: 25px;
    }

    .titlesection.smallPaddingBottom {
        padding-bottom: 5px;
    }
/* TitleSection End*/

/* TextImgSection Start */

.textimgsection {
    position: relative;
    display: block;
}

    .textimgsection a {
        color: black;
    }

        .textimgsection a:hover {
            color: black;
        }

    .textimgsection.extraPaddingBottom {
        margin-bottom: 50px;
    }

    .textimgsection.extraPaddingTop {
        margin-top: 25px;
    }

    .textimgsection h3 {
        font-weight: bold;
        font-size: 22px;
        color: #414141;
        margin-top: -7px;
    }

    .textimgsection p {
        font-size: 16px;
        color: black;
        margin-top: 10px;
    }

    .textimgsection .textContent .toggleReadMore {
        color: #62b144;
        font-weight: bold;
        margin-top: 10px;
        display: inline-block;
        cursor: pointer;
    }

    .textimgsection .textContent.readmore .readMoreContent {
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 8;
    }

    .textimgsection .textContent.readmore.isVisible .readMoreContent {
        -webkit-line-clamp: unset;
        overflow: visible;
    }

.swiper-container-textImage {
    overflow: hidden;
}

.imghalf {
    position: absolute;
    width: 50%;
    height: 100%;
    right: 0;
    top: 0;
    overflow: hidden;
    display: none;
    background-size: cover;
}

.companywrap {
    max-height: 800px;
    transition: all ease .3s;
    overflow: hidden;
}

.remove {
    max-height: 0;
}

.imghalf img {
    width: 100%;
}

.linkButton {
    text-transform: uppercase;
    font-weight: bold;
    border: 2px solid #606060;
    transition: all ease .5s;
    display: table;
    margin-bottom: 10px;
    padding: 10px 10px;
    font-size: 14px;
    color: #414141;
    background-color: white;
}

    .linkButton:hover {
        background-color: #606060;
        color: white;
    }

.buttonWrapper {
    position: absolute;
    bottom: 20px;
    right: 15px;
    z-index: 2;
    direction: rtl;
}

@media screen and (max-width: 1430px) {
    .textimgsection .textContent.readmore .readMoreContent {
        -webkit-line-clamp: 5;
    }
}

@media screen and (max-width: 991px) {
    .textimgsection .textContent.readmore .readMoreContent {
        -webkit-line-clamp: initial;
    }

    .textimgsection .textContent .toggleReadMore {
        display: none;
    }
}

/* Button Row */
.buttonRow {
    padding-top: 100px;
    padding-bottom: 85px;
    margin-bottom: 25px;
}

    .buttonRow.noPadding {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .buttonRow.white {
        background: white;
    }

    .buttonRow.green {
        background: #62b144;
    }

    .buttonRow.lightgray {
        background: #eeeeee;
    }

    .buttonRow.gray {
        background: #ccc;
    }

    .buttonRow.extraPaddingTop {
        margin-top: 25px;
    }

    .buttonRow.extraPaddingBottom {
        margin-bottom: 35px;
    }

    .buttonRow .button {
        margin-bottom: 15px;
        margin-right: 45px;
        margin-left: 45px;
    }


    .buttonRow.gray .button, .buttonRow.green .button {
        border: 2px solid white;
        color: white;
    }

    .buttonRow.lightgray .button, .buttonRow.white .button {
        border: 2px solid #62b144;
        background: #62b144;
        color: #fff;
    }

        .buttonRow.green .button:hover, .buttonRow.white .button:hover {
            background: #fff;
            color: #62b144;
        }

    .buttonRow.gray .button:hover {
        background: #fff;
        color: #ccc;
    }

    .buttonRow.lightgray .button:hover {
        background: #fff;
        color: #62b144;
    }

.statement {
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: #62b144;
    color: white;
    text-align: center;
    margin-bottom: 25px;
}

    .statement.extraPaddingBottom {
        margin-bottom: 50px;
    }

    .statement.extraPaddingTop {
        margin-top: 25px;
    }

    .statement p {
        font-size: 18px;
    }

    .statement h2 {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 30px;
    }

/* TextImgSection End*/

/* Image CallToAction Start */

.imageCta img {
    display: none;
    width: 100%;
}

.imageCta {
    position: relative;
    background-position: center;
    background-size: cover;
    display: block;
    height: 400px;
    margin-bottom: 25px;
}

    .imageCta.extraPaddingBottom {
        margin-bottom: 50px;
    }

    .imageCta.extraPaddingTop {
        margin-top: 25px;
    }

    .imageCta .ctaContent {
        position: absolute;
        top: 22%;
        left: 50%;
        margin-right: -50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        text-align: center;
        height: auto;
    }

        .imageCta .ctaContent h2, .imageCta .ctaContent p {
            color: #414141;
        }

.ctaContent h2 {
    color: white;
    font-weight: bold;
}

.ctaContent p {
    font-weight: bold;
    font-size: 16px;
    color: white;
}

.ctaContent {
    width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
}

    .ctaContent .ctaButton {
        background-color: #62b144;
        text-align: center;
        padding: 15px;
        display: table;
        margin: 0 auto;
        color: white;
        font-weight: bold;
        border: 2px solid #62b144;
        transition: all ease .3s;
    }

        .ctaContent .ctaButton:hover {
            background-color: white;
            color: #62b144;
        }

.image-top img {
    max-width: 100%;
    width: 100%;
}

span.fixedWidth {
    display: inline-block;
    width: 50px;
}

.detailData h3 {
    padding: 5px 10px;
    background-color: #62b144;
    font-size: 12px;
    color: white;
}

.detailData ul {
    background-color: #ccc;
    padding: 15px;
    list-style: none;
}

@media screen and (max-width: 991px) {
    .imageCta.fullImg img {
        display: block;
    }

    .imageCta.fullImg {
        background-image: none !important;
        height: auto;
    }
}

/* Image CallToAction End */

/* SearchRequest Start */

.searchrequest {
    margin-bottom: 25px;
}

    .searchrequest.extraPaddingBottom {
        margin-bottom: 50px;
    }

    .searchrequest.extraPaddingTop {
        margin-top: 25px;
    }

    .searchrequest input {
        width: 100%;
        padding: 14px;
        border: none;
        border-bottom: 2px solid #62b144;
        margin-top: 35px;
        transition: color, background-color ease .3s;
        background-color: #fff;
    }

        .searchrequest input[type=checkbox] {
            width: auto;
            margin-right: 15px;
        }

    .searchrequest textarea {
        width: 100%;
        background-color: #fff;
        margin-top: 35px;
        border: 0;
        border-bottom: 2px solid #62b144;
        min-height: 300px;
        max-height: 300px;
        padding: 14px;
    }

    .searchrequest a {
        text-decoration: none;
        text-decoration: underline;
        color: black;
    }

input:focus {
    outline: none;
    background-color: #ddd;
}

select::-ms-expand {
    display: none;
}


.fileErrorMessage {
    color: #eb4132;
    display: none;
    margin-top: 20px;
}

#validateError, #profileErrorLabel {
    color: #eb4132;
}

.validation-summary-errors ul {
    list-style-type: none;
    padding: 0;
    color: #eb4132;
}

label.error {
    color: #eb4132 !important;
}

.titleunderline {
    margin-top: 30px;
    border-bottom: 2px solid #62b144;
    padding-top: 10px;
    padding-bottom: 10px;
}


.searchrequest select {
    background-color: #fff;
    border: 0;
    border-bottom: 2px solid #62b144;
}

.custom-file-upload {
    border: 1px solid #ccc;
    display: inline-block;
    padding: 6px 12px;
    cursor: pointer;
}

ol {
    padding-top: 5px;
    padding-left: 20px;
    padding-bottom: 5px;
}

    ol > li {
        padding: 4px 0;
    }

        ol > li > p {
            padding-top: 5px;
        }


.col-container {
    display: table; /* Make the container element behave like a table */
    width: 100%; /* Set full-width to expand the whole page */
    padding: 0 5px;
    margin-bottom: 20px;
}

    .col-container .col-md-6 {
        position: relative;
        padding: 10px;
    }

    .col-container .col-lg-4 {
        position: relative;
        padding: 10px;
    }

    .col-container .profile {
        transition: .3s all ease;
        position: relative;
        flex-flow: column;
        height: 100%;
        border: 2px solid black;
        padding: 20px;
        background-color: white;
        cursor: pointer;
    }

        .col-container .profile p {
            margin-bottom: 25px;
        }

    .col-container .selectedProfile {
        transition: .3s all ease;
        border: 2px solid #62b144;
        background-color: #62b144;
        background-color: rgba(98, 177, 68, 0.5);
    }

        .col-container .selectedProfile button {
            transition: .3s all ease;
            background-color: #62b144;
            color: white;
        }

.moreInfo .profiletext {
    visibility: hidden;
    width: 100%;
    background-color: #62b144;
    color: white;
    border-radius: 2px;
    padding: 10px;
    position: absolute;
    z-index: 999;
    left: 10%;
    margin-left: -60px;
}

    .moreInfo .profiletext::after {
        content: "";
        position: absolute;
        bottom: 100%;
        left: 50%;
        margin-left: -5px;
        border-width: 5px;
        border-style: solid;
        border-color: transparent transparent #62b144 transparent;
    }

.moreInfo:hover .profiletext {
    visibility: visible;
}

.col-container button {
    position: absolute;
    bottom: 20px;
    right: 20px;
    transition: .3s all ease;
    color: #62b144;
    float: right;
    display: block;
    border-radius: 3px;
    width: 200px;
    height: 40px;
    background-color: transparent;
    border: 2px solid #62b144;
}

    .col-container button:hover {
        transition: .3s all ease;
        background-color: #62b144;
        color: white;
    }

/* ===================== FILE INPUT ===================== */

.file-area {
    width: 100%;
    position: relative;
}

.close {
    display: none;
}

.file-area input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    cursor: pointer;
}

.file-area .file-dummy {
    width: 100%;
    padding: 10px;
    background: #fff;
    border: 2px dashed #ffffff;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: background 0.3s ease-in-out;
    border: 2px solid #eeeeee;
}



    .file-area .file-dummy .success {
        display: none;
    }

.file-area:hover .file-dummy {
    background: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.file-area input[type="file"]:focus + .file-dummy {
    outline: 2px solid #ffffff;
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline: -webkit-focus-ring-color auto 5px;
}

.file-area input[type="file"]:valid + .file-dummy {
    border: none;
    background-color: #62b144;
    border: 2px solid #62b144;
    word-break: break-all;
}

    .file-area input[type="file"]:valid + .file-dummy .close {
        display: block;
        opacity: 1;
        font-weight: normal;
        text-shadow: none;
    }

    .file-area input[type="file"]:valid + .file-dummy .success {
        display: inline-block;
    }

    .file-area input[type="file"]:valid + .file-dummy .default {
        display: none;
    }


.file-area label {
    font-weight: bold;
    margin-top: 20px;
}

.filesizeWarning {
    padding-top: 10px;
    font-size: 14px;
}

/* SearchRequest End*/


/* DatePicker Start */


footer.dp-cal-footer {
    padding: 0;
}

.dp:before {
    background: #62b144;
}

.dp-selected:hover, .dp-selected:focus, .dp-selected {
    background: #62b144;
}

.dp-day-today:after {
    border-right-color: #004B00;
    border-top-color: #004B00;
}

.dp-day:hover, .dp-month:hover, .dp-year:hover, .dp-current:focus, .dp-current, .dp-day:focus, .dp-month:focus, .dp-year:focus {
    background: #62b144;
}

select:first-child {
    color: black;
}

select option:first-child {
    color: #999999;
}

select option {
    color: black;
}

.checkbox {
    float: right;
    height: 32px;
    margin-right: -5px;
}

.pdf img {
    max-width: 25px;
    float: right;
}

.pdf {
    margin-right: 35px;
}

.options > img {
    width: 20px;
    display: block;
    margin-top: 2px;
}

.titlerow {
    padding-bottom: 5px;
}

.infoIcon {
    display: none;
    cursor: pointer;
    width: 20px;
    float: left;
}

.infoPopup {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 500px;
    max-width: 90%;
    background: white;
    border: 1px solid #62b144;
    z-index: 9999;
    display: none;
}

    .infoPopup .popupHead {
        background: #62b144;
        color: #ffffff;
        font-weight: bold;
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        padding: 15px;
    }

    .infoPopup .popupContent {
        padding: 15px;
    }

    .infoPopup .closeIcon {
        float: right;
        cursor: pointer;
    }

    .infoPopup h2 {
        font-size: 20px;
    }

        .infoPopup h2 span {
            font-size: 15px;
        }

.custom-check {
    border-left: 2px solid #eb4132;
}

.form-group.required .custom-check.no-error-border {
    border-color: transparent !important;
}

.form-group.required .nps .scores {
    background: #eb4132;
    border-radius: 4px;
}

.form-control:hover {
    border-color: #8d8d8d;
}

.form-control:focus {
    border-color: #66afe9;
    -webkit-box-shadow: 0 2px 3px 0 #66afe9;
    -webkit-box-shadow: 0 2px 3px 0 rgba(102, 175, 233, .35);
    -moz-box-shadow: 0 2px 3px 0 #66afe9;
    -moz-box-shadow: 0 2px 3px 0 rgba(102, 175, 233, .35);
    box-shadow: 0 2px 3px 0 #66afe9;
    box-shadow: 0 2px 3px 0 rgba(102, 175, 233, .35);
}

input.required:not(.ignoreRequired) ~ label:after {
    content: "*";
}

.custom-check {
    position: relative;
    display: block;
    min-height: 22px;
    margin: 4px 0;
    border-left: 2px solid transparent;
}

    .custom-check > input {
        opacity: 0;
        position: absolute;
    }

    .custom-check > label {
        font-family: 'Open Sans', sans-serif;
        color: #ffffff;
        cursor: pointer;
        vertical-align: middle;
        font-size: 14px;
        text-transform: none;
        padding: 0 0 0 37px;
    }

    .custom-check > input + label:before {
        content: '';
        position: absolute;
        top: 0;
        left: 5px;
        width: 22px;
        height: 22px;
        background: white;
        box-shadow: inset 0 1px 2px 2px #000000, inset 0 0 0 1px #b7b7b7;
        box-shadow: inset 0 1px 2px 2px rgba(0, 0, 0, .07), inset 0 0 0 1px #b7b7b7;
        -webkit-transition: all .2s linear;
        -moz-transition: all .2s linear;
        transition: all .2s linear;
        display: inline-block;
        vertical-align: middle;
    }

    .custom-check > input:hover + label:before,
    .custom-check > input:focus + label:before {
        box-shadow: inset 0 1px 2px 2px #000000, inset 0 0 0 1px #adadad;
        box-shadow: inset 0 1px 2px 2px rgba(0, 0, 0, .1), inset 0 0 0 1px #adadad;
        background: #f9f9f9;
    }

    .custom-check > input + label:after,
    .custom-check > input + label:after {
        content: '';
        position: absolute;
        opacity: 0;
        -webkit-transition: all .3s linear;
        -moz-transition: all .3s linear;
        transition: all .3s linear;
    }

    .custom-check > input:checked + label:after,
    .custom-check > input.checked + label:after {
        opacity: 1;
    }

    .custom-check > input[type=checkbox] + label:after,
    .custom-check > input[type=checkbox] + label:after {
        content: "\f00c";
        font-family: "FontAwesome";
        color: white;
        font-size: 12px;
        top: 3px;
        left: 9px;
    }

    .custom-check > input[type=checkbox] + label:before {
        border-radius: 4px;
    }

    .custom-check > input[type=checkbox]:checked + label:before,
    .custom-check > input[type=checkbox].checked + label:before {
        box-shadow: inset 0 0 0 1px #000000, inset 0 0 0 12px #62b144;
        box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .05), inset 0 0 0 12px #62b144;
    }

    .custom-check > input[type=checkbox]:checked:hover + label:before,
    .custom-check > input[type=checkbox].checked:hover + label:before,
    .custom-check > input[type=checkbox]:checked:focus + label:before,
    .custom-check > input[type=checkbox].checked:focus + label:before {
        box-shadow: inset 0 0 0 1px #000000, inset 0 0 0 12px #62b144;
        box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .2), inset 0 0 0 12px #62b144;
    }

    .custom-check > input[type=radio] + label:before {
        border-radius: 50%;
    }

    .custom-check > input[type=radio] + label:after,
    .custom-check > input[type=radio] + label:after {
        width: 8px;
        height: 8px;
        top: 7px;
        left: 12px;
        background: white;
        border-radius: 50%;
        box-shadow: 0 1px 1px 1px #000000;
        box-shadow: 0 1px 1px 1px rgba(0, 0, 0, .12);
    }

    .custom-check > input[type=radio]:checked + label:before,
    .custom-check > input[type=radio].checked + label:before {
        box-shadow: inset 0 0 0 1px #000000, inset 0 0 0 8px #62b144;
        box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .05), inset 0 0 0 8px #62b144;
    }

    .custom-check > input:disabled + label,
    .custom-check > input.disabled + label {
        opacity: .6;
    }

    .custom-check > input:disabled:checked + label:before,
    .custom-check > input:disabled.checked + label:before,
    .custom-check > input.disabled:checked + label:before,
    .custom-check > input.disabled.checked + label:before {
        box-shadow: inset 0 0 0 1px #000000, inset 0 0 0 12px #999;
        box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .05), inset 0 0 0 12px #999;
    }

.form-sec {
    display: block;
    width: 300px;
    margin: 0 auto;
}

.page-back {
    display: table;
    color: #fff;
    padding: 150px;
    background: #273041;
    width: 100%;
}

.managerrow:nth-child(even) {
    background-color: #ccc;
}

.titlerow {
    background-color: #414141;
    color: white;
}

.toprow {
    width: 100%;
    position: fixed;
    top: 124px;
    z-index: 9;
    display: none;
}

    .toprow.hide {
        display: none;
    }

.searchtitle {
    display: block;
}

.searchtext {
    display: block;
}

.showmore {
    float: left;
    background-color: #62b144;
    color: white;
    font-size: 14px;
    padding: 3px 8px;
    cursor: pointer;
    border: 1px solid #62b144;
    transition: all ease .3s;
}

    .showmore:hover {
        background-color: white;
        color: #62b144;
    }

.expandme {
    max-height: 0;
    transition: all ease 0.3s;
    overflow: hidden;
}

.paddingrightrow {
    padding-top: 4px;
}

.expandme.expanded {
    max-height: 1000px;
}

.expandme .row > div {
    margin-bottom: 5px;
    padding-bottom: 2px;
    border-top: 1px solid #ccc;
    padding-top: 5px;
}

.managerrow:nth-child(even) .expandme .row > div {
    border-color: #fff;
}

.managerrow b {
    margin-bottom: 5px;
    padding-top: 5px;
    padding-bottom: 2px;
    display: inline-block;
}

.expandme .row {
    padding-right: 40px;
}

.logowrapper {
    border: 1px solid #ccc;
    text-align: center;
    height: 125px;
    position: relative;
    border-top: none;
    border-left: none;
}

    .logowrapper img {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        max-width: 50%;
        filter: grayscale(1);
        transition: all ease .5s;
        max-height: 95%;
    }

        .logowrapper img:hover {
            filter: grayscale(0);
            transition: all ease .5s;
        }

.nav.desktop > li > a.hasSubmenu {
    pointer-events: none;
    cursor: default;
}

p.address {
    line-height: 22px;
}

p.referenzAuthor {
    margin-top: 7.5px;
}

section.news {
    padding-top: 50px;
    padding-bottom: 25px;
}

    section.news .image {
        max-width: 100%;
        margin-bottom: 25px;
    }

    section.news img.image {
        border: 1px solid black;
    }

    section.news .posts {
        display: flex;
        flex-direction: column;
    }

        section.news .posts .post {
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            margin-bottom: 100px;
        }

            section.news .posts .post:last-child {
                margin-bottom: 0px;
            }

            section.news .posts .post .image {
                width: 22.5%;
                margin-right: 7.5%;
            }

                section.news .posts .post .image img {
                    max-width: 100%;
                    border: 1px solid black;
                }

            section.news .posts .post .content {
                width: 70%;
                display: flex;
                flex-direction: column;
                flex-wrap: nowrap;
                justify-content: flex-start;
            }

                section.news .posts .post .content .meta {
                    margin-bottom: 20px;
                    font-size: 14px;
                    color: gray;
                }

                section.news .posts .post .content .short-description {
                    margin-bottom: 20px;
                }

                section.news .posts .post .content .more {
                    font-weight: bold;
                }

@media only screen and (max-width: 480px) {
    section.news .posts .post {
        flex-direction: column;
        margin-bottom: 66px;
    }

        section.news .posts .post .image {
            width: 100%;
            margin-right: 0px;
            margin-bottom: 15px;
        }

        section.news .posts .post .content {
            width: 100%;
        }
}

section.newsPage {
}

    section.newsPage .leadText {
        padding-bottom: 25px;
    }

    section.newsPage .companySection.companyMobile {
        display: none;
        margin-left: -15px;
        margin-right: -15px;
        padding-left: 15px;
        padding-right: 15px;
    }

    section.newsPage .companySection {
        background-color: #CADAC4;
        padding: 0px 0px 45px 0px;
        margin-top: 15px;
        border-radius: 20px;
        position: relative;
        margin-bottom: 25px;
    }

        section.newsPage .companySection .content {
            background-color: #CADAC4;
            padding: 15px 15px;
            margin-top: 15px;
            border-radius: 20px;
            position: relative;
        }

            section.newsPage .companySection .content .top {
                min-height: 100px;
            }

        section.newsPage .companySection .keyData {
            color: #62b144;
            font-size: 28px;
            position: absolute;
            right: 0px;
            width: 66%;
            text-align: end;
            font-weight: bold;
            z-index: 1;
            padding-right: 20px;
            border-bottom: 2px solid #62b144;
            border-bottom-left-radius: 20px;
            border-left: 2px solid #62b144;
            padding-bottom: 10px;
            padding-top: 5px;
        }

        section.newsPage .companySection .company {
            display: flex;
            flex-direction: column;
        }

        section.newsPage .companySection .companyHeader {
            display: flex;
            justify-content: space-between;
        }

        section.newsPage .companySection .companyLogo {
            max-width: 150px;
            width: 100%;
            margin-bottom: 35px;
            margin-top: 10px;
        }

        section.newsPage .companySection .companyContent {
            display: flex;
            justify-content: space-between;
        }

            section.newsPage .companySection .companyContent > div {
                width: 49%;
            }

            section.newsPage .companySection .companyContent .companyTitle {
                font-weight: bold;
            }

            section.newsPage .companySection .companyContent .companyText {
                margin-top: 10px;
            }

    section.newsPage .title {
        text-align: left;
        margin-bottom: 10px;
    }

    section.newsPage .textsection p:first-child {
        margin-top: 0px;
    }

    section.newsPage .personSection {
        border-top: 1px solid #62b144;
        border-bottom: 1px solid #62b144;
        padding: 10px 0px;
        display: flex;
        margin-bottom: 50px;
    }

        section.newsPage .personSection .personImage {
            max-height: 200px;
        }

        section.newsPage .personSection .personContent {
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding-bottom: 15px;
            padding-left: 15px;
        }

            section.newsPage .personSection .personContent .personName {
                font-weight: bold;
            }

    section.newsPage .subtitle {
        font-size: 15px;
        color: gray;
    }

    section.newsPage aside .backToOverview {
        font-size: 15px;
        margin-bottom: 50px;
        margin-top: 15px;
        color: black;
    }

    section.newsPage .top-Know-how h1.title {
        margin-top: 25px;
    }

    section.newsPage aside .backToOverview img {
        margin-right: 15px;
    }

    section.newsPage aside .otherNews {
        background-color: white;
        padding: 40px 20px 20px 20px;
    }

        section.newsPage aside .otherNews h3 {
            font-size: 24px;
            margin-bottom: 30px;
        }

        section.newsPage aside .otherNews a h4 {
            font-size: 17px;
            margin-bottom: 20px;
        }

@media only screen and (max-width: 576px) {
    section.newsPage .companySection {
        border-radius: 0px;
    }
}

@media only screen and (max-width: 480px) {
    section.newsPage aside {
        margin-top: 25px;
    }

    section.newsPage .personSection {
        flex-direction: column;
    }

        section.newsPage .personSection .personImage {
            max-height: 100%;
        }

        section.newsPage .personSection .personContent {
            padding-top: 15px;
            padding-bottom: 0;
            padding-left: 0;
        }

    section.newsPage .companySection .companyContent {
        flex-direction: column;
    }

        section.newsPage .companySection .companyContent > div {
            width: 100%;
        }

        section.newsPage .companySection .companyContent .companyText {
            margin-top: 5px;
        }

        section.newsPage .companySection .companyContent > div:first-child {
            margin-bottom: 20px;
        }

    section.newsPage .top {
        flex-direction: column-reverse;
    }

        section.newsPage .top .title {
            margin-bottom: 25px;
        }

        section.newsPage .top aside {
            margin-top: 0px;
            margin-bottom: 40px;
        }

            section.newsPage .top aside .backToOverview {
                margin-bottom: 0px;
            }

    section.newsPage .companySection.companyDesktop {
        display: none;
    }

    section.newsPage .companySection.companyMobile {
        display: block;
    }
}

@media screen and (min-device-width: 1200px) {
    .dp-close:hover, .dp-close:focus, .dp-clear:hover, .dp-clear:focus, .dp-today:hover, .dp-today:focus, .dp-next:hover, .dp-next:focus, .dp-prev:hover, .dp-prev:focus, .dp-cal-month:focus, .dp-cal-month:hover, .dp-cal-year:hover, .dp-cal-year:focus {
        background: #62b144;
        color: white;
    }
}

.hidden {
    display: none;
}

/* DatePicker End*/

/* Media Querys --------------------------------------------------------- */

@media screen and (min-width: 330px) {
    .mainlogo {
        width: 180px;
    }
}

@media screen and (min-width: 440px) {
    .linkButton {
        margin-bottom: 15px;
        padding: 15px 15px;
        font-size: 16px;
    }
}

@media screen and (min-width: 480px) {

    .searchtitle {
        display: inline;
        position: absolute;
        min-width: 90px;
    }

    .searchtext {
        margin-left: 90px;
    }

    .options {
        float: left;
        width: 60px;
        text-align: center;
    }

    select {
        font-size: 16px;
    }

    .infoIcon {
        display: inline-block;
        float: right;
        margin-right: -5px;
    }

    section.news {
        padding-top: 100px;
        padding-bottom: 25px;
    }

        section.news .title {
            font-size: 30px;
        }

    .col-container {
        margin-bottom: 45px;
    }

    #googlemapBig {
        width: 100%;
        height: 240px;
    }

    .imgWrapper {
        margin-top: 75px;
    }

    .buttonRow {
        margin-bottom: 35px;
    }

        .buttonRow.extraPaddingTop {
            margin-top: 50px;
        }

        .buttonRow.extraPaddingBottom {
            margin-bottom: 85px;
        }

    .container.extraPaddingBottom {
        margin-bottom: 100px;
    }

    .container.extraPaddingTop {
        margin-top: 50px;
    }

    .mediumtext {
        font-size: 22px !important;
    }

    a.buttonGreen {
        margin-top: 50px;
    }

    .statement {
        padding-top: 80px;
        padding-bottom: 80px;
    }

        .statement p {
            font-size: 30px;
            font-style: italic;
        }

    .textimgsection p {
        font-size: 20px;
        line-height: 1.7;
    }

    .textimgsection h3 {
        font-size: 30px;
    }

    .box-black h2 {
        margin-top: -10px;
    }

    .boxsection .links {
        padding-right: 40px;
        bottom: 40px;
    }

    .box-black a.button {
        margin-right: 40px;
    }

    .quote span.author {
        font-size: 18px;
    }

    .box-black p {
        font-size: 18px;
    }

    .imageCta {
        margin-bottom: 50px;
    }

        .imageCta.extraPaddingBottom {
            margin-bottom: 100px;
        }

        .imageCta.extraPaddingTop {
            margin-top: 50px;
        }

    .statement {
        margin-bottom: 50px;
    }

        .statement.extraPaddingBottom {
            margin-bottom: 100px;
        }

        .statement.extraPaddingTop {
            margin-top: 50px;
        }

    .textimgsection.extraPaddingBottom {
        margin-bottom: 100px;
    }

    .textimgsection.extraPaddingTop {
        margin-top: 50px;
    }

    .titlesection {
        padding-bottom: 25px;
    }

        .titlesection.extraPaddingBottom {
            padding-bottom: 50px;
        }

        .titlesection.extraPaddingTop {
            padding-top: 50px;
        }

    .quote {
        margin-bottom: 50px;
    }

        .quote.extraPaddingBottom {
            margin-bottom: 100px;
        }

        .quote.extraPaddingTop {
            margin-top: 50px;
        }

    .managerpool {
        margin-bottom: 50px;
    }

        .managerpool.extraPaddingBottom {
            margin-bottom: 100px;
        }

        .managerpool.extraPaddingTop {
            margin-top: 50px;
        }

    .boxsection {
        margin-bottom: 50px;
    }

        .boxsection.extraPaddingBottom {
            margin-bottom: 100px;
        }

        .boxsection.extraPaddingTop {
            margin-top: 50px;
        }

    .textsection {
        padding-top: 0;
        padding-bottom: 25px;
    }

        .textsection.extraPaddingBottom {
            padding-bottom: 100px;
        }

        .textsection.extraPaddingTop {
            padding-top: 50px;
        }

    .customerList {
        padding-bottom: 50px;
    }

        .customerList.extraPaddingBottom {
            padding-bottom: 100px;
        }

        .customerList.extraPaddingTop {
            padding-top: 50px;
        }

    .searchrequest {
        margin-bottom: 50px;
    }

        .searchrequest.extraPaddingBottom {
            margin-bottom: 100px;
        }

        .searchrequest.extraPaddingTop {
            margin-top: 50px;
        }

    h1 {
        font-size: 45px;
        text-align: center;
    }

    h2 {
        font-size: 35px;
    }

    .textsection p, .textsection strong, .textsection li, .textsection span {
        color: black;
        font-size: 18px;
    }

    .headertext {
        font-size: 18px;
        margin-top: 50px;
        display: block;
    }

    .box-black {
        padding: 40px;
    }

    .quote {
        padding-top: 80px;
        padding-bottom: 60px;
    }

        .quote .swiper-slide p {
            padding-bottom: 50px;
            font-size: 22px;
        }
}

@media screen and (min-width: 615px) {
    body {
        padding-top: 123px;
    }

    .mobilenav.scrolled {
        padding-top: 140px;
    }

    .mainlogo {
        padding-top: 32px;
        width: 269px;
    }

    .mobilenav {
        padding-top: 170px;
    }

    .headertext {
        position: absolute;
        top: 40%;
        text-align: left;
        margin: 0;
    }

        .headertext.posRight {
            text-align: right;
        }

    .ctaContent h2 {
        font-size: 55px;
    }

    .ctaContent p {
        font-size: 24px;
    }

    .hamburger {
        top: 35px;
    }
}

@media screen and (min-width: 745px) {
    .mainlogo {
        margin-left: 0;
    }
}

@media screen and (min-width: 768px) {
    section.news .newsPreview:not(:last-child) {
        margin-top: 0;
    }

    #googlemapBig {
        width: 100%;
        height: 360px;
    }

    .statement p {
        font-size: 48px;
        font-style: italic;
    }

    .contact {
        padding-bottom: 50px;
    }

    .contactaddress {
        margin-top: 400px;
        margin-bottom: 0;
    }

    #googlemaps {
        position: absolute;
        right: 0;
        top: 0;
    }

    .textsection .rightbox p:first-child {
        margin-top: 0;
    }

    .textsection .contentBox > h4:first-child {
        margin-top: 0;
    }

    .textsection .contentBox > h3:first-child {
        margin-top: 0;
    }

    .box-parent:first-child {
        margin: 0;
    }

    .quote .swiper-slide p {
        padding-bottom: 70px;
        font-size: 23px;
    }

    .quote {
        padding-top: 90px;
        padding-bottom: 70px;
    }

    .headerslogan {
        font-size: 22px;
    }

    .imageCta {
        height: 500px;
    }

    .searchtext {
        margin-left: 110px;
    }

    .checkbox {
        margin-right: -15px;
    }

    .pdf {
        margin-right: 25px;
    }

    .options, .showmore {
        float: right;
    }

    .showmore {
        margin-left: auto;
        margin-right: 6px;
    }

    .toprow {
        display: block;
    }

    body {
        padding-top: 118px;
    }

    .statement {
        padding-top: 220px;
        padding-bottom: 220px;
    }

    .sticky-items img {
        height: 80px;
        width: 80px;
    }

    .stickyWrapper {
        cursor: pointer;
    }

        .stickyWrapper:hover .stickytext, .stickyWrapper:hover .stickyimg img {
            background-color: #62b144;
        }

    .stickytext {
        display: block;
        float: left;
        background-color: #ccc;
        font-size: 0;
        transition: all ease .25s;
        right: 0;
        height: 80px;
        max-width: 0;
        border-left: 0;
    }

    .sticky-items img {
        transition: all ease .25s;
    }

    .clickwrapper img {
        float: left;
    }

    .stickyimg img {
        border-right: 0;
    }

    .stickytext.visible {
        max-width: 200px;
        white-space: nowrap;
        background-color: #ccc;
        font-size: 20px;
        color: white;
        overflow: hidden;
        padding-top: 25px;
        height: 80px;
        padding-right: 15px;
    }

    .navfixed {
        top: 118px;
    }

    #googlemaps {
        width: 50%;
        height: 100%;
    }

    .contactaddress {
        margin-top: 0;
    }

    .footermenu {
        display: block;
    }

    .pTitle {
        margin-top: -35px;
    }
}

@media screen and (min-width: 900px) {
    .headertext {
        font-size: 24px;
        top: 30%;
    }

    .imageCta {
        height: 592px;
    }
}

@media screen and (min-width: 992px) {
    .toprow {
        top: 140px;
    }

    #googlemapBig {
        width: 100%;
        height: 480px;
    }

    li.active, li.active > a, ul.nav > li.active, ul.nav li.active > a, .mobilenav > ul > li.active, .mobilenav > ul > li.active > a, .mobilenav > ul > li.active > a, .mobilenav > ul > li.active {
        color: #62b144;
        border: none;
    }

    .mobLinkOnly {
        pointer-events: none;
        cursor: default;
    }

    .stickyWrapper a, .stickyWrapper img {
        float: right;
    }

    .stickyimg {
        float: left;
    }

    .mainlogo {
        padding-bottom: 0;
        float: none;
    }

    .mobilenav {
        display: none;
    }

    .nav.desktop {
        display: flex;
    }

    .hamburger {
        display: none;
    }

    .quote .swiper-slide p {
        padding-bottom: 80px;
        font-size: 27px;
    }

    .quote {
        padding-top: 120px;
        padding-bottom: 80px;
    }

    .boxsection .links {
        padding-right: 0;
    }

    .box-black .contentBox p:last-child {
        padding-bottom: 85px;
    }

    .padder {
        margin-bottom: 50px;
    }

    .anchornav {
        display: block;
    }

    .nopadding {
        padding: 0;
    }

    .buttonWrapper {
        right: 0;
    }

    .imgleft .buttonWrapper {
        left: 0;
    }

    footer .footermenu li {
        font-size: 16px;
        padding-left: 13px;
        padding-right: 13px;
    }

    .imageCta {
        background-position: center;
    }

    .hidden-md-up {
        display: none;
    }

    .box-black a.button {
        width: auto;
        margin-top: 0;
        margin-bottom: 0;
        text-align: left;
    }

    .desktopreversed {
        flex-direction: row-reverse;
    }

    .nav > li {
        margin-left: 35px;
    }

    .imghalf {
        display: block;
    }

    .headertext {
        font-size: 28px;
        top: 20%;
    }
}

@media screen and (min-width: 1200px) {
    #googlemapBig {
        width: 100%;
        height: 680px;
    }

    .textside {
        padding: 70px;
    }

    .headertext {
        margin-top: 0;
        font-size: 30px;
        top: 25%;
    }

    .quote .swiper-slide p {
        font-size: 30px;
    }

    .nav.desktop > li > a.hasSubmenu {
        pointer-events: all;
        cursor: pointer;
    }

    .sticky-items {
        display: block;
        top: 175px;
        bottom: 430px;
        right: 0;
        z-index: 20;
    }

    .textimgsection p {
        font-size: 22px;
    }
}

/*CUSTOM CONTAINER*/

@media (min-width: 1430px) {
    .container {
        max-width: 1400px;
    }

    .headertext {
        font-size: 34px;
        top: 40%;
    }

    .textimgsection p {
        font-size: 24px;
    }
}
/*CUSTOM CONTAINER*/

@media screen and (min-width: 1921px) {
    .imageCta {
        height: 892px;
    }
}

@media screen and (min-width: 3221px) {
    .imageCta {
        height: 1092px;
    }
}




/* modal popup start */

.modal-container {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    backdrop-filter: blur(5px);
    z-index: 99;
    opacity: 0;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}

.modal {
    background-color: white;
    padding: 20px;
    /*border-radius: 10px;*/
    width: 500px;
    height: 320px;
    box-shadow: 0px 0px 10px #cccccc;
    z-index: 100;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
}


.modal-content {
    background: #ccc;
    width: 500px;
    padding: 20px;
    /*border-radius: 10px;*/
    z-index: 99;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    color: #414141;
    font-size: 30px;
}

.close-modal {
    background-color: white;
    border-width: 0px;
    color: #414141;
}


    .close-modal:hover {
        color: #62b144;
    }


/* modal popup end */


/* news archive overview */

.year {
    background-color: #fff;
    margin-bottom: 20px;
    padding: 30px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.year-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.blog-entry {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eeeeee;
}

    .blog-entry:last-child {
        border-bottom: none;
    }

    .blog-entry > * {
        flex: 1;
        padding: 5px;
    }

    .blog-entry .btitle {
        flex: 2;
    }

    .blog-entry .more {
        text-align: right;
    }

/* news archive overview end */