/*
Theme Name: webda
Theme URI: https://www.dieandere-webdesign.de/
Description:  Customer - Theme
Author: Jessica Schinhofen
Author URI: https://www.dieandere-webdesign.de/
*/

@import 'fonts/fonts.css';
@import 'slick.css';
@import 'aos.css';
@import 'jquery.fancybox.min.css';


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.mobile_menu_bar {
    position: absolute;
    display: none;
    right: 0;
    line-height: 0;
    background-image: url("/wp-content/uploads/menu.png");
    width: 25px;
    height: 25px;
    margin-top: 40px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.mobile_menu_bar:hover {
    cursor: pointer;
}

.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0;
}

::-moz-selection {
    /* Code for Firefox */
    color: rgba(0, 0, 0, 1);
    background: rgba(0, 0, 0, 0.2);
}

::selection {
    color: rgba(0, 0, 0, 1);
    background: rgba(0, 0, 0, 0.2);
}



html, body {
    margin: 0;
}
html {
    height: 100%;
}

body {
    font-family: "Mulish", Arial;
    font-weight: 500;
    font-size: 16px;
    color: #000;
    line-height: 30px;
    background-color: #FFFFFF;
    display: inline-block;
/*
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
*/


    min-height: 100%;
    position: relative;
    text-rendering: optimizeLegibility;

    overflow-x:hidden;
    max-width: 100%;
    width: 100%;
}



.page-content {
    position: relative;
    width: 100%;
    float: left;
    margin-top: 0px;
}



.centered {
    margin: 0 auto;
}

.content {
    position: relative;
}

.contentwrapper {
    width: 100%;
    position:relative;
    float: left;
}


.innerblocks-wrap,
.content-width {
    max-width: 1440px !important;
    margin:0 auto;
    padding: 0px;
    width: calc(100% - 80px);
}


.module .content-width {
    padding: 0;
}



@media screen and (max-width: 1440px) {
    .innerblocks-wrap, .content-width {
        width: calc(100% - 80px);
    }
}

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

    .mobile_menu_bar {
        display: block;
    }

    .innerblocks-wrap,.content-width {
        width: calc(100% - 60px);
    }


}

@media screen and (max-width: 768px) {
   .innerblocks-wrap, .content-width {
        width: calc(100% - 50px);
    }
}

@media screen and (max-width: 492px) {
   .innerblocks-wrap, .content-width {
        width: calc(100% - 30px);
    }
}



body > .overlay {
    z-index: 80;
}
body > .overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 81;
    background: rgba(5, 5, 5, .6);
    opacity: 0;
    visibility: hidden;
    transition: visibility 0s ease-in-out 0.3s, opacity 0.3s ease-in-out 0s;
    -webkit-transition: visibility 0s ease-in-out 0.3s, opacity 0.3s ease-in-out 0s;
    -moz-transition: visibility 0s ease-in-out 0.3s, opacity 0.3s ease-in-out 0s;
    -o-transition: visibility 0s ease-in-out 0.3s, opacity 0.3s ease-in-out 0s;
    -webkit-tap-highlight-color: transparent;
}

body > .overlay.show {
    opacity: 1;
    visibility: visible;
    transition: visibility 0s ease-in-out 0s, opacity .3s ease-in-out 0s;
    -webkit-transition: visibility 0s ease-in-out 0s, opacity 0.3s ease-in-out 0s;
    -moz-transition: visibility 0s ease-in-out 0s, opacity 0.3s ease-in-out 0s;
    -o-transition: visibility 0s ease-in-out 0s, opacity 0.3s ease-in-out 0s;
}



ul, ol {
    margin-left: 20px;
}

ul, li, ol li {
    list-style-position: outside;
}

ol li {
    margin-bottom: 20px;
}


ul {
    margin-left: 0;
    padding: 0;
    list-style-type: none;
}

.vorteile ul li:before {
    position: absolute;
    left: 0;
    content: "";
    background-image: url('assets/listbig-blue.svg');
    background-repeat: no-repeat;
    background-size: contain;
    top:0;
    width: 20px;
    height: 46px;
    margin-right: 15px;
    margin-bottom: 35px;
}

.vorteile ul li {
    margin: 0 0 35px 0;
    padding: 0 0 0 45px;
    list-style-type: none;
    position: relative;
    width: 100%;
    float: left;
}

.vorteile ul li:last-child {
    margin-bottom: 0;
}

.vorteile ul li a {
    hyphens: auto;
}




/*********************************/
/**         BUTTONS             **/
/*********************************/

.ctawrapper,
.cta-wrapper {
    width: auto;
    display: flex;
    margin-top: 15px;
    position: relative;
    align-items: center;
}

.ctawrapper a.cta,
.cta-wrapper a.cta {

    float: left;
    text-decoration: none;
    font-weight: 400;
    padding: 5px 17px;
    color: #fff;
    background: #23437F;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 30px;
    transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;

}

.ctawrapper a.cta:hover ,
.cta-wrapper a.cta:hover {
    transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    color: #000;
    background: #fff;
}


/*********************************/
/**         LINKS               **/
/*********************************/

a {
    transition: all ease-in-out .15s;
    -webkit-transition: all ease-in-out .15s;
    -moz-transition: all ease-in-out .15s;
    -o-transition: all ease-in-out .15s;
    text-decoration: none;
    color: #000;
    font-weight: 700;
    display: inline-block;
    cursor: pointer;
}

a img,
a svg {
    transition: opacity ease-in-out .15s;
    -o-transition: opacity ease-in-out .15s;
}

a:hover img {
    opacity: 0.7;
}



img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}


p {
    font-size: 16px;
    color: #000;
    line-height: 30px;
    margin-bottom: 25px;
}

strong  {
    font-weight: 800;
}



/*********************/
/**     HEADLINES   **/
/*********************/
h2, .h2-style,
h1, .h1-style {
    font-size: 22px;
    display: block;
    line-height: 32px;
    font-weight: 600;
    position: relative;
    text-transform: uppercase;
    width: 100%;
    color: #000;
    letter-spacing: 2px;
    margin-bottom: 25px;
}
h1 span, .h1-style span,
h2 span, .h2-style span {
    font-size: 16px;
    color: #23437F;
    line-height: 30px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 8px;
    display: inline-block;
}


h3, .h3-style {
    font-size: 22px;
    display: block;
    line-height: 32px;
    font-weight: 500;
    position: relative;
    text-transform: uppercase;
}

h4, .h4-style {
    font-size: 30px;
    display: block;
    line-height: 42px;
    font-weight: 600;
    position: relative;
    text-transform: uppercase;

    hyphens: auto;
}



.homemain {
    background-image: url('assets/hometop.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 740px;
}

.homemain:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: RGBA(255, 255, 255, .85);
    background: linear-gradient(90deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}


.homeunderpage {
    background-image: url('assets/topbild.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 250px;
}

.homeunderpage:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: RGBA(255, 255, 255, .85);
    background: linear-gradient(90deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.wp-block-themeisle-blocks-advanced-columns .innerblocks-wrap,
.innerblocks-wrap {
    width: 75%;
    max-width: 75% !important;
    flex-basis: unset;
    gap: 75px;
    grid-template-columns: 1fr 1fr;
    display: grid;
}


.homemain .innerblocks-wrap {
    padding-top: 305px;
    padding-right: 0%;
}



section.small .innerblocks-wrap {
    width: 50%;
    max-width: 50%;
    margin:0 auto;
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 75px;
}


.aboutus .innerblocks-wrap {
    align-items: center;
}

.fullimage {
    margin: 85px 0;
}


.fulltitle .innerblocks-wrap,
.fullimage .innerblocks-wrap {
    width: 100%;
    max-width: 100%;
    margin:0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0px;
}


.person .innerblocks-wrap {
    grid-template-columns: 0.7fr 1.3fr;
    gap: 85px;
}

.person .ctawrapper {
    text-align: right;
    display: inline-block;
    width: 100%;
}
.person .ctawrapper a.cta {
    background: none;
    padding-left: 15px;
    float: none;
 }


.artikelvo {
    margin: 85px 0;
}





.artikelvo .innerblocks-wrap ul li:before {
    background: url('assets/listnorm-blue.svg');
    height: 26px;
    width: 12px;
    content: "";
    position: absolute;
    left: 0;
}

.artikelvo .innerblocks-wrap ul li {
    padding-left: 25px;
    margin-bottom: 15px;
}


.artikelvo .innerblocks-wrap {
    grid-template-columns: 1.3fr 0.7fr;
}

.kontaktwrap .ctawrapper {align-items: center;}
.kontaktwrap .ctawrapper .cta:last-child {
    height: 30px;
}
.kontaktwrap .ctawrapper .cta:last-child img {
    height: 20px;
}
.aboutus .innerblocks-wrap .cta:last-child,
.kontaktwrap .ctawrapper .cta:last-child,
.kontaktwrap .ctawrapper .cta:nth-child(2),
.homemain .ctawrapper .cta:last-child {
    background: none;
    color: #23437F;

}


.aboutus {
    margin: 85px 0;
}

.aboutus .innerblocks-wrap {
    align-items: center;
}

section.small,
section.middle {
    padding: 85px 0;
}


.kontaktwrap {
    margin-bottom: 75px;
}
.kontaktwrap .innerblocks-wrap {
    gap: 100px;
    grid-template-columns: 1.3fr 0.7fr;
    width: 65%;
    max-width: 65% !important;
}


.topbar {
    position: fixed;
    width: 100%;
    float: left;
    transition: all ease-in-out .3s;
    -webkit-transition: all ease-in-out .3s;
    -moz-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;

    color: #000;
    height: 125px;
    margin-top: 30px;
    z-index: 3;
}


.topbar .content-width {
    padding-left: 0;
    padding-right: 0;
    display: flex;

    align-items: center;
    height: 100%;
}



.topbar .logo {
    position: relative;
    width: 245px;
    text-align: left;
    float: left;
}

.topbar .logo a {
    display: inline-block;
    width: 100%;
    height: 100%;
}
.topbar .logo a img {
    width: 100%;
    height: auto;
}


.topbar .logo img.default {
   display: block;
}

.topbar .men:before {
	position: absolute;
  background: rgba(255,255,255, .7);
  filter: blur(5px);
  top: -7px;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  padding: 10px;
}

.topbar .men {
    position: relative;
    width: calc(100% - 245px);
    text-align: right;
    display: flex;
    justify-content: end;
}


.topbar nav.mainmen {
    display: inline-block;
    width: auto;
    text-align: right;

}

.topbar nav.mainmen:after {
    content: "";
    position: absolute;
    width: 25px;
    height: 75px;
    top: -10px;
    background-image: url('assets/menuline.svg');
    background-size: contain;
    background-repeat: no-repeat;
}


.topbar nav.mainmen .menu-main-menu-container {
    display: block;
    height: 100%;
    position: relative;
}
.topbar nav.mainmen ul {
    margin:0;
    padding:0;
    display: flex;
    list-style-type: none;
    height: 100%;
}
.topbar nav.mainmen ul li {

    display: inline-block;
    position: relative;
    text-align: left;
}

.topbar nav.mainmen ul li a {
    text-transform: uppercase;
    font-size: 16px;
    line-height: 30px;
    height: 100%;
    color: #000;
    padding: 0 15px;
    position: relative;
    overflow: hidden;
    display: block;
    font-weight: 500;
}
.topbar nav.mainmen ul li a:last-child {
    padding-right: 35px;
}
.topbar nav.mainmen ul li a:hover {
    color: #23437F;
}




@keyframes enter {
  from {
    opacity: 0;
    transform: scaleY(0.98) translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


.topbar .content-width .cta-wrapper {
    width: auto;
    margin-left: 35px;
    position: relative;
    margin-top: 0;

}

.topbar .content-width .cta-wrapper a {
    display: block;
    color: #000;
    font-weight: 500;
    width: auto;
    font-size: 16px;
    line-height: 30px;
    padding: 0px 17px;
    background: none;
}

.topbar .content-width .cta-wrapper a:hover {
    color: #23437F;
    background: none;
}


.topbar .content-width .burger {
    width:0;
    visibility: hidden;
}


/* TOPBAR FIXED */

.topbar.fixed {
   
    transition: all ease-in-out .3s;
    -webkit-transition: all ease-in-out .3s;
    -moz-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
    height: 70px;
    border: 0;
    top: 0;
    position: fixed;
    z-index: 20;
    float: none;
    left: 0;
    margin-top: 0;
    background: #fff;
     box-shadow: 0 1px 0 rgba(0,0,0,.1);
    -moz-box-shadow: 0 1px 0 rgba(0,0,0,.1);
    -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.1);
}

.topbar.fixed .content-width {
    display: flex;
    align-items: center;
}

.topbar.fixed .logo {
    position: relative;
    width: 115px;
    text-align: center;
    display: block;
    margin-top: 5px;
}


.topbar.fixed .logo img {
    width: 100%;
    height: auto;
}







nav.mainmen.mob {
        background-color: rgba(255, 255, 255, .8);
        position: fixed;
        z-index: 84;
        top: 70px;
        right: 0;
        height: calc(100vh - 70px);
        width: 100%;

        padding: 15px 25px 95px 55px;
        overflow-y: auto;
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
        transform: translateX(-100%);
        -webkit-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
        -moz-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
        -o-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
        transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    }


.burger.nav {
   display: none;
}




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

    .topbar .men:before {
        display: none;
    }

  .topbar .content-width .burger {
        width: 50px;
        visibility: visible;
    }

    .topbar { height: 86px; }

    .topbar nav.mainmen {display: none;}

    .topbar .logo {margin-top: 10px; }
    
    .topbar.fixed .logo {
        width: 180px;
    }


    .topbar .cta-wrapper {
        display: none;
    }

    /* MENU */
    .burger.nav {
        opacity:1;
        display: inline-block;
    }

    /*  BURGER
    ========================================== */
    .burger {
        width: 45px;
        height: 45px;
        position: absolute;
        top: -30px;
        right: 0;
        border-radius: 0;
        z-index: 85;
    }

    .burger.clicked.norm {
        opacity:  0;
    }

    .burger.clicked.nav {
        position: fixed;
        top: -25px;
        right: 20px;
        z-index: 999;
        opacity: 1;
    }
    .burger span {
        margin-left: -22.5px;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        position: absolute;
        top: 50%;
        right: 50%;
    }
    .burger span, .burger span::before, .burger span::after {
        display: block;
        width: 30px;
        height: 2px;
        background-color: #000;
        outline: 1px solid transparent;
        -webkit-transition-property: background-color, -webkit-transform;
        -moz-transition-property: background-color, -moz-transform;
        -o-transition-property: background-color, -o-transform;
        transition-property: background-color, transform;
        -webkit-transition-duration: 0.3s;
        -moz-transition-duration: 0.3s;
        -o-transition-duration: 0.3s;
        transition-duration: 0.3s;
        right: 0;
    }
    .burger span::before, .burger span::after {
        position: absolute;
        content: "";
    }
    .burger span::before {
        top: -10px;
        width: 40px;
        right: 0;
    }
    .burger span::after {
        top: 10px;
        width: 20px;
        right: 0;
    }
    .burger.clicked span {
        background-color: transparent;
    }
    .burger.clicked span::before {
        -webkit-transform: translateY(10px) rotate(45deg);
        -moz-transform: translateY(10px) rotate(45deg);
        -ms-transform: translateY(10px) rotate(45deg);
        -o-transform: translateY(10px) rotate(45deg);
        transform: translateY(10px) rotate(45deg);
    }
    .burger.clicked span::after {
        -webkit-transform: translateY(-10px) rotate(-45deg);
        -moz-transform: translateY(-10px) rotate(-45deg);
        -ms-transform: translateY(-10px) rotate(-45deg);
        -o-transform: translateY(-10px) rotate(-45deg);
        transform: translateY(-10px) rotate(-45deg);
        width: 40px;
    }
    .burger.clicked span:before, .burger.clicked span:after {
        background-color: #000;
    }
    .burger:hover {
        cursor: pointer;
    }




    /*  NAV
    ========================================== */
    nav.mainmen.mob {
        background-color: rgba(255,255,255,1);
        position: fixed;
        z-index: 84;
        top: 0px;
        left: 0;
       height: calc(100vh - 70px);
        width: 50%;
        backdrop-filter: blur(3px);

        -webkit-backdrop-filter: blur(3px);
        padding: 95px 25px 95px 55px;
        overflow-y: auto;
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
        transform: translateX(-100%);
        -webkit-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
        -moz-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
        -o-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
        transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    }
    nav.mainmen.mob.show {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }
    nav.mainmen.mob.show ul.menu li {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
    nav.mainmen.mob.show ul.menu > li:nth-child(1) {
        transition-delay: 0.15s;
    }
    nav.mainmen.mob.show ul.menu > li:nth-child(2) {
        transition-delay: 0.3s;
    }
    nav.mainmen.mob.show ul.menu > li:nth-child(3) {
        transition-delay: 0.45s;
    }
    nav.mainmen.mob.show ul.menu > li:nth-child(4) {
        transition-delay: 0.6s;
    }
    nav.mainmen.mob.show ul.menu > li:nth-child(5) {
        transition-delay: 0.75s;
    }
    nav.mainmen.mob.show ul.menu > li:nth-child(6) {
        transition-delay: 0.9s;
    }
    nav.mainmen.mob.show ul.menu > li:nth-child(7) {
        transition-delay: 1.05s;
    }
    nav.mainmen.mob.show ul.menu > li:nth-child(8) {
        transition-delay: 1.2s;
    }
    nav.mainmen.mob.show ul.menu > li:nth-child(9) {
        transition-delay: 1.35s;
    }

    nav.mainmen.mob ul.menu {
        list-style-type: none;
        margin-left: 0;
    }
    nav.mainmen.mob ul.menu li {
        margin-bottom: 10px;
        -webkit-transform: translateX(40px);
        -moz-transform: translateX(40px);
        -ms-transform: translateX(40px);
        -o-transform: translateX(40px);
        transform: translateX(40px);
        opacity: 0;
        list-style-type: none;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }
    nav.mainmen.mob ul.menu li:last-of-type {
        margin-bottom: 0;
    }
    nav.mainmen.mob ul.menu li a {
        color: #000;
        text-decoration: none;
        font-size: 22px;
        line-height: 32px;
        display: block;
        letter-spacing: 0;
        font-weight: 400;
        padding: 10px 0;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }
    nav.mainmen.mob ul.menu li a span {
        color: #000;
    }

    nav.mainmen.mob ul.menu li.current-menu-ancestor > a,
    nav.mainmen.mob ul.menu li.current_page_item > a,
    nav.mainmen.mob ul.menu li a:hover {
        color: rgba(0,0,0, 0.7);
    }

.cta-wrapper {
        flex-direction: column;
    }

    .mainmen.mob.show .cta-wrapper {
        border: 1px solid #23437F;
        padding: 10px;
    }


    .topbar.fixed nav.mainmen {
        display: none;
    }

    .topbar.fixed .logo {
        width: 130px;
    }
    .topbar .men {
        width: calc(100% - 145px);
    }

    .topbar.fixed .burger {
        top: -21px;
    }

    .topbar  {
        position: fixed;
        top: 0;
    }
    .topbar.fixed + nav.mainmen.mob.show {
        top: 70px;
    }


    nav.mainmen.mob .cta-wrapper a {

        display: block;
        background: transparent;

        color: #000;
        font-weight: 600;
        width: auto;
        font-size: 16px;
        line-height: 30px;
        padding: 5px 17px;
        text-align: center;

    }


}


.vorteile .innerblocks-wrap {
    gap: 75px;
}


.leistungenwrap {
    margin: 85px 0;
}

.leistungenwrap .innerblocks-wrap {
    background: #23437F;
    padding: 75px 80px;
    width: 100%;
    max-width: 90% !important;
    gap: 85px;
    color: #fff;
}

.leistungenwrap .innerblocks-wrap h2,
.leistungenwrap .innerblocks-wrap h2 span,
.leistungenwrap .innerblocks-wrap p {
    color: #fff;
}
.leistungenwrap .innerblocks-wrap ul {
    padding-top: 97px;
    padding-right: 100px;
}

.leistungenwrap .innerblocks-wrap ul li:before {
    background: url('assets/listnorm-white.svg');
    height: 26px;
    width: 12px;
    content: "";
    position: absolute;
    left: 0;
}

.leistungenwrap .innerblocks-wrap ul li {
    padding-left: 25px;
    margin-bottom: 15px;
}

    /**********************/
/***    FOOTER      ***/
/**********************/

.footer {
    width: 100%;
    position: relative;
    float: left;
    margin: 0;
    background: #23437F;
    color: #fff;
    font-size: 16px;
    line-height: 30px;
    padding: 90px 0;

}

.footer .content-width {

}

.footer .contentboxwrapper {
    display: grid;
    grid-template-columns: auto auto auto auto;
    gap: 70px;
}


.footer .contentboxwrapper .menlist {
    columns: 2;
    column-gap: 50px;
}
.footer h3 {
    margin-bottom: 15px;
}

.footer p,
.footer a {
    color: #fff;
    font-weight: 500;
}


.copy {
    text-align: right;
    color: #000;
    padding: 5px 10px;
    width: 100%;
    display: inline-block;
}

.scrollToTop  {
    position: absolute;
    z-index: 4;
    text-align: center;
    bottom: 70px;
    right: 0px;
    width: 78px;
    height: 78px;
    background: #23437F;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

.scrollToTop a {
    display: block;
    width: 100%;
    height: 100%;
}

.scrollToTop a:after  {
    content: "";
    position: absolute;
    width: 78px;
    height: 78px;
    background-size: 50%;
    background-image: url('assets/scrolltop.svg');
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-position: center;
}


.wpml-ls-legacy-list-horizontal {
    padding: 0;
}

.wpml-ls-legacy-list-horizontal a {
    padding: 0 5px;
}


.auge-3 .page-content,
.auge-10 .page-content {
    margin-top: 250px;
}


.auge-3 .contentwrapper,
.auge-3 .contentwrapper {
    width: 90%;
    margin:0 auto;
    float: none;
}
.auge-3 h3,
.auge-3 h4 {

        font-size: 16px;
        display: block;
        line-height: 25px;
        font-weight: 600;
        position: relative;
        text-transform: uppercase;
        hyphens: auto;

}

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


}

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

    .topbar .logo {
        width: 180px;
    }

    .topbar nav.mainmen {
        width: calc(100% - 545px);
    }

    .topbar .content-width .cta-wrapper {
        width: auto;
        margin-left: 35px;
        position: relative;
        margin-top: 0;
        flex-direction: column;
        align-items: end;
    }


    .wp-block-themeisle-blocks-advanced-columns .innerblocks-wrap, .innerblocks-wrap {
        width: 90%;
        max-width: 90% !important;
        flex-basis: unset;
        gap: 75px;
        grid-template-columns: 1fr 1fr;
        display: grid;
    }

    .fulltitle .innerblocks-wrap,
    .fullimage .innerblocks-wrap  {
        grid-template-columns: repeat(1, 1fr);
    }

    .homemain .innerblocks-wrap {
        grid-template-columns: 1fr;
        padding-right: 40%;
    }

    section.small .innerblocks-wrap {
        width: 90%;
    }

    .leistungenwrap .innerblocks-wrap {
        padding: 55px 50px;
        grid-template-columns: 1.2fr 0.8fr;
    }
    .leistungenwrap .innerblocks-wrap ul {
        padding-top: 97px;
        padding-right: 0px;
    }


}

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

}


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

}


@media screen and (max-width: 1080px) {
    .footer .contentboxwrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 70px;
    }

    .kontaktwrap .ctawrapper {
        flex-direction: column;
        align-items: normal;
    }

    .homemain .innerblocks-wrap {
        padding-top: 205px;
        padding-right: 30%;
    }
    .artikelvo .innerblocks-wrap,
    .person .innerblocks-wrap,
    .aboutus .innerblocks-wrap {
        grid-template-columns: repeat(1, 1fr);
        gap: 35px;
    }



    .person .wp-block-image img {
        width: 325px;
        display: block;
        margin:0 auto;
    }

    .person .ctawrapper {
        text-align: center;
    }




}


@media screen and (max-width: 1024px) {
    .homeunderpage {
        height: 150px;
    }
}


@media screen and (max-width: 991px) {
    .vorteile .innerblocks-wrap {
        max-width: 90%;
        grid-template-columns: repeat(1, 1fr);
        width: 90%;
        gap: 35px;
    }


    .leistungenwrap .innerblocks-wrap {
        padding: 55px 50px;
        grid-template-columns: repeat(1, 1fr);
        gap: 35px;
    }

    .kontaktwrap .innerblocks-wrap {
        grid-template-columns: repeat(1, 1fr);
        gap: 35px;
    }

    .kontaktwrap .innerblocks-wrap .wp-block-image img {
        display: block;
        width: 325px;
        margin:0 auto;
    }

    .leistungenwrap .innerblocks-wrap ul {
        padding-top: 0;
        padding-right: 0px;
    }

}



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

    .homemain .innerblocks-wrap {
        padding-right: 0;
    }

    .homemain::before {
        background: RGBA(255, 255, 255, .85);
    }

    section.small .innerblocks-wrap {
        grid-template-columns: repeat(1, 1fr);
        gap: 35px;
    }

}


@media screen and (max-width: 692px) {
    .footer .contentboxwrapper {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 35px;
    }
    nav.mainmen.mob {
        width: 80%;
    }

    .mainmen.mob.show .cta-wrapper {
        padding: 5px;
    }

    .ctawrapper {
        flex-direction: column;
        align-items: normal;
    }
}


@media screen and (max-width: 492px) {
    .homemain .innerblocks-wrap {
        padding-top: 145px;
    }
    .topbar {
        margin-top: 10px;
    }
    .topbar .logo {
        width: 140px;
        margin-top: 0;
    }
    h2, .h2-style, h1, .h1-style {
        font-size: 18px;
        line-height: 27px;
    }
    h1 span, .h1-style span, h2 span, .h2-style span {
        font-size: 15px;
        line-height: 28px;
    }

    .leistungenwrap .innerblocks-wrap {
        padding: 35px 20px;
    }
}


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

}