/* ###################### general ###################### */
@font-face { font-family: 'Publica Sans Round Regular'; src: url(font/publica-sans-round-regular.otf); }
@font-face { font-family: 'Publica Sans Round Medium'; src: url(font/publica-sans-round-medium.otf); }
@font-face { font-family: 'Publica Sans Round Bold'; src: url(font/publica-sans-round-bold.otf); }
* {
    font-family: 'Publica Sans Round Regular', sans-serif;
    font-size: 16px;
    color: var(--text);
    line-height: normal;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    padding: 0;
    margin: 0;
}
:root {
    --30padding: 30px;
    --primary-color: #189EFF;
    --primary-color-rgb: 24, 158, 255;
    --secondary-color: #0093FE;
    --third-color: #35CDFF;
    --four-color: #142432;
    --four-color-rgb: 20, 36, 50;
    --headline: #142432;
    --shadow: 20, 36, 50;
    --text: #607182;
    --text-rgb: 96, 113, 130;
    --bright-btn: #DDF1FF;
    --background: #F4F7FA;
    --footer-background: #142432;
    --footer-bottom-background: #0D1822;
    --basic: #00C0C3;
    --basic-rgb: 0, 192, 195;
    --premium: #189EFF;
    --premium-rgb: 24, 158, 255;
    --pro: #EAC096;
    --pro-rgb: 234, 192, 150;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --off-white-2: #F2F2F2;
    --off-white-3: #CCCCCC;
    --white-rgb: 255, 255, 255;
    --red: #FF0000;
    --green: #25D366;
    scrollbar-color: var(--primary-color) var(--off-white) !important;
    scrollbar-width: thin !important;
}
body { overflow-x: hidden; }
::selection { background: var(--primary-color); color: var(--white); }
::-moz-selection { background: var(--primary-color); color: var(--white); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--primary-color); }
::-webkit-scrollbar-thumb:hover { background: var(--secondary-color); }

h1, h2, h3 { font-family: 'Publica Sans Round Medium', sans-serif; font-weight: normal; color: var(--headline); }
h4, h5, h6 { font-family: 'Publica Sans Round Regular', sans-serif; font-weight: normal; color: var(--text); }
h1 { font-size: 50px; }
h2 { font-size: 34px; }
h3 { font-size: 24px; margin-bottom: 15px; }
p { font-family: 'Publica Sans Round Regular', sans-serif; line-height: 25px; }
b { font-family: 'Publica Sans Round Medium', sans-serif; font-weight: normal; }
a, a:focus, a:hover { text-decoration: none; cursor: pointer; transition: all .35s; }
img { display: block; width: 100%; }

:focus { outline: none; }
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--text);
    box-shadow: 0 0 0 1000px var(--background) inset;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    transition: all .35s;
}
@media (max-width: 991px) and (-webkit-min-device-pixel-ratio: 0) { 
    select:focus, input:focus, textarea:focus, select, input, textarea { font-size: 16px; }
}
/* ###################### general ###################### */

/* ###################### layout ###################### */
.container { position: relative; max-width: 1320px; padding-left: 30px; padding-right: 30px; margin-left: auto; margin-right: auto; }
@media (max-width: 1320px) { .container { max-width: 1180px; } }
@media (max-width: 1199px) { .container { max-width: 960px; } }
@media (max-width: 991px) { .container { max-width: 720px; } }
@media (max-width: 767px) { .container { max-width: 100%; } }

.primary-btn {
    position: relative;
    z-index: 100;
    background: var(--primary-color);
    background: -moz-linear-gradient(45deg, var(--third-color) 0%, var(--primary-color) 100%);
    background: -webkit-linear-gradient(45deg, var(--third-color) 0%, var(--primary-color) 100%);
    background: linear-gradient(45deg, var(--third-color) 0%, var(--primary-color) 100%);
    background-size: 100%;
    height: 41px;
    border: 0;
    border-radius: 5px;
    padding: 12px 24px;
    cursor: pointer;
}
.primary-btn span {
    position: relative;
    top: -2px;
    font-family: 'Publica Sans Round Medium', sans-serif;
    font-size: 15px;
    color: var(--white);
}
.primary-btn:before {
    content: '';
    position: absolute;
    z-index: -100;
    top: 0;
    left: 0;
    display: block;
    background: var(--secondary-color);
    background: -moz-linear-gradient(45deg, var(--primary-color) 0%, var(--third-color) 100%);
    background: -webkit-linear-gradient(45deg, var(--primary-color) 0%, var(--third-color) 100%);
    background: linear-gradient(45deg, var(--primary-color) 0%, var(--third-color) 100%);
    border-radius: inherit;
    height: 100%;
    width: 100%;
    transition: opacity .35s ease-in-out;
    opacity: 0;
}
.primary-btn:hover:before { opacity: 1; }
.primary-btn:active:before { opacity: 0; }
.arrow-btn:after {
    content: '';
    position: relative;
    top: -1px;
    display: inline-block;
    background: url(img/arrow-right.svg) center no-repeat;
    width: 13px;
    height: 13px;
    margin-left: 12px;
}
.secondary-btn { border-radius: 20px; }
.third-btn {
    text-align: left;
    background: var(--background);
    width: -webkit-fill-available;
    padding: 12px 15px 10px;
    transition: all .35s;
}
.third-btn:before {
    background: var(--primary-color);
    background: -moz-linear-gradient(45deg, var(--third-color) 0%, var(--primary-color) 100%);
    background: -webkit-linear-gradient(45deg, var(--third-color) 0%, var(--primary-color) 100%);
    background: linear-gradient(45deg, var(--third-color) 0%, var(--primary-color) 100%);
    transition: all .35s;
}
.third-btn span { color: var(--text); }
.third-btn:after {
    content: '';
    position: relative;
    top: -1px;
    display: inline-block;
    background: url(img/text-arrow-right.svg) no-repeat right;
    width: 13px;
    height: 13px;
    margin-left: 12px;
}
a:focus .third-btn,
a:hover .third-btn { background: var(--primary-color); }
a:focus .third-btn span,
a:hover .third-btn span,
a:focus .third-btn:after,
a:hover .third-btn:after { filter: brightness(0) invert(1); }
.modal-btn { width: fit-content; padding: 10px 15px; }
.blank-btn { background: transparent; border: 0; cursor: pointer; }
.blank-btn span { font-family: 'Publica Sans Round Medium', sans-serif; color: var(--primary-color); }
.blank-btn span:after {
    content: '';
    position: relative;
    top: 1px;
    display: inline-block;
    background: url(img/arrow-right.svg) no-repeat right;
    width: 13px;
    height: 13px;
    margin-left: 12px;
    transition: all .35s;
}
.blank-btn span:hover:after { margin-left: 15px; transition: all .35s; }
/* ###################### layout ###################### */

/* ###################### navigation ###################### */
.nav-placeholder { height: 93px; }
.navigation-container {
    position: relative;
    z-index: 1000;
    width: 100%;
    transition: all .5s;
}
.nav-con { background: var(--white); }
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}
.fixed nav { padding: 12px 0; }
nav ul {
    list-style: none;
    overflow: hidden;
    padding: 0;
    margin: 0;
}
nav li a { display: block; text-decoration: none; padding: 20px 0; }
nav li a.active, nav li a:focus, nav li a:hover { color: var(--four-color); }
nav .logo {
    display: block;
    background: url('img/logo.svg');
    background-repeat: no-repeat;
    width: 225px;
    height: 53px;
}
nav .menu { max-height: 0; transition: max-height .2s ease-out; cursor: pointer; }
nav .menu li a.hilfe:after {
    content: '';
    position: relative;
    top: 1px;
    display: inline-block;
    background: url(img/link.svg) center no-repeat;
    width: 14px;
    height: 14px;
    margin-left: 7px;
    transition: all .35s;
}
nav .menu li a.hilfe:focus:after,
nav .menu li a.hilfe:hover:after { filter: brightness(0) saturate(100%) invert(13%) sepia(8%) saturate(2952%) hue-rotate(167deg) brightness(90%) contrast(96%); transition: all .35s; }
.fixed {
    position: fixed;
    background: var(--white);
    box-shadow: rgb(var(--shadow), .1) 0px 20px 20px -20px;
    animation: slide-down .75s;
}
@keyframes slide-down {
    0% { opacity: 0; transform: translateY(-100%); } 
    100% { opacity: 1; transform: translateY(0); } 
}
nav .menu li a.ratgeber:after {
    content: '';
    display: inline-block;
    background: var(--primary-color);
    box-shadow: 0 0 0 0 rgb(255 255 255);
    border-radius: 50%;
    height: 7px;
    width: 7px;
    margin: 3px 6px 6px;
    transform: scale(1);
    animation: pulse-blue 2s infinite;
}
@keyframes pulse-blue {
	0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(var(--primary-color-rgb), 0.7); }
	75% { transform: scale(1); box-shadow: 0 0 0 5px rgba(var(--primary-color-rgb), 0); }
	100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(var(--primary-color-rgb), 0); }
}

/* ########### burger menu ########### */
nav .menu-icon {
    position: relative;
    float: right;
    padding: 25px 0;
    cursor: pointer;
    user-select: none;
}
nav .menu-icon .navicon {
    position: relative;
    display: block;
    background: var(--primary-color);
    height: 3px;
    width: 25px;
    border-radius: 3px;
    transition: background .2s ease-out;
}
nav .menu-icon .navicon:before,
nav .menu-icon .navicon:after {
    content: '';
    position: absolute;
    display: block;
    background: var(--primary-color);
    height: 100%;
    width: 32px;
    border-radius: 3px;
    margin-left: -7px;
    transition: all .2s ease-out;
}
nav .menu-icon .navicon:before { top: 8px; }
nav .menu-icon .navicon:after { top: -8px; }
/* ########### burger menu ########### */

/* ########### menu trigger ########### */  
nav .menu-btn { display: none; }
nav .menu-btn:checked ~ .menu { max-height: 280px; }
nav .menu-btn:checked ~ a button.primary-btn {
    display: inline-block;
    width: 100%;
    margin-top: 18px;
}
nav .menu-btn:checked ~ .menu-icon .navicon { background: transparent; }  
nav .menu-btn:checked ~ .menu-icon .navicon:before { transform: rotate(-45deg); }
nav .menu-btn:checked ~ .menu-icon .navicon:after { transform: rotate(45deg); }
nav .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
nav .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after { top: 0; }
/* ########### menu trigger ########### */  

@media (min-width: 991px) {
    nav li { display: inline-block; }
    nav li a { padding: 0 15px; }
    nav .menu li a.ratgeber:after { position: absolute; }
    nav .menu { clear: none; max-height: none; }
    nav .menu-icon { display: none; }
}
@media (max-width: 991px) {
    nav { display: block; }
    nav .menu { justify-content: flex-end; width: 100%; }
    nav li { padding: 5px 0; }
    nav li a { padding: 12px 15px; }
    nav li a.active { background: var(--background); border-radius: 5px; }
    nav li:first-child a { margin-top: 14px; }
    nav a button.primary-btn { display: none; }
}

/* ########### sub navigation ########### */
.sub-navigation { background: transparent; }
.sub-navigation.fixed { background: var(--primary-color); }
.sub-navigation nav .logo {
    display: block;
    background: url('img/white-logo.svg');
    background-repeat: no-repeat;
    width: 225px;
    height: 53px;
}
.sub-navigation nav li a { color: rgb(var(--white-rgb), .6); }
.sub-navigation nav li a.active,
.sub-navigation nav li a:focus,
.sub-navigation nav li a:hover { color: var(--white); }
.sub-navigation nav .menu li a.ratgeber:after {
    content: '';
    position: absolute;
    display: inline-block;
    background: var(--white);
    box-shadow: 0 0 0 0 rgb(255 255 255);
    border-radius: 50%;
    height: 7px;
    width: 7px;
    margin: 3px 6px 6px;
    transform: scale(1);
    animation: pulse-white 2s infinite;
}
@keyframes pulse-white {
	0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(var(--white-rgb), 0.6); }
	75% { transform: scale(1); box-shadow: 0 0 0 5px rgba(var(--white-rgb), 0); }
	100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(var(--white-rgb), 0); }
}

.sub-navigation nav .menu li a.hilfe:after {
    content: '';
    position: relative;
    top: 1px;
    display: inline-block;
    background: url(img/link.svg) center no-repeat;
    filter: brightness(0) invert(1);
    opacity: .6;
    width: 14px;
    height: 14px;
    margin-left: 7px;
    transition: all .35s;
}
.sub-navigation nav .menu li a.hilfe:focus:after,
.sub-navigation nav .menu li a.hilfe:hover:after { filter: brightness(0) invert(1); opacity: 1; transition: all .35s; }
.sub-navigation .primary-btn { background: rgb(var(--white-rgb), .1); transition: all .35s; }
.sub-navigation .primary-btn span { color: var(--white); }
.sub-navigation a:focus .primary-btn,
.sub-navigation a:hover .primary-btn { background: rgb(var(--white-rgb), .2); transition: all .35s; }
.sub-navigation a:focus .primary-btn:before,
.sub-navigation a:hover .primary-btn:before { display: none; }

.wave-container {
    height: 85%;
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: left bottom;
    mask-position: left bottom;
    -webkit-mask-image: url('img/wave.svg');
    mask-image: url('img/wave.svg');
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 500px;
    overflow-x: hidden;
}
.wave {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    background: -moz-linear-gradient(0deg, var(--third-color) 0%, var(--primary-color) 100%);
    background: -webkit-linear-gradient(0deg, var(--third-color) 0%, var(--primary-color) 100%);
    background: linear-gradient(0deg, var(--third-color) 0%, var(--primary-color) 100%);
}

@media (max-width: 991px) {
    .sub-navigation,
    .sub-navigation.fixed {
        background: -moz-linear-gradient(0deg, var(--third-color) 0%, var(--primary-color) 100%);
        background: -webkit-linear-gradient(0deg, var(--third-color) 0%, var(--primary-color) 100%);
        background: linear-gradient(0deg, var(--third-color) 0%, var(--primary-color) 100%);
    }
    .sub-navigation nav .menu-icon .navicon { background: var(--white); }
    .sub-navigation nav .menu-icon .navicon:before,
    .sub-navigation nav .menu-icon .navicon:after { background: var(--white); }
    .sub-navigation nav li a.active { background: rgb(var(--white-rgb), .1); }
    .sub-navigation nav .menu li a.ratgeber:after { position: relative; }
    
    .wave-container { display: none; }
}
/* ########### sub navigation ########### */  
/* ###################### navigation ###################### */

/* ###################### header ###################### */
.header {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    background: url(img/header-img.jpg) no-repeat center;
    background-size: cover;
    border-radius: 10px;
    height: 600px;
}
.header .header-intro { position: relative; }
.header .header-intro .primary-btn { position: absolute; right: 30px; bottom: -20px; }
.header .header-text { width: 60%; padding: 0 0 50px 50px; }
.header .header-text .tag {
    display: inline-block;
    line-height: 27px;
    height: 31px;
    border: 2px solid var(--white);
    border-radius: 20px;
    padding: 0 20px;
}
.header .header-text .tag span { position: relative; top: -2px; font-family: 'Publica Sans Round Medium', sans-serif; font-size: 13px; color: var(--white); }
.header .header-text a:first-child .tag { background: var(--white); margin-right: 10px; }
.header .header-text a:first-child .tag span { color: var(--four-color); }
.header .header-text :is(h1, p) { color: var(--white); }
.header .header-text h1 { padding: 10px 0 15px; }
.header .header-text p { font-size: 18px; }
.clients { background: url(img/clients.svg) no-repeat center; height: 50px; margin-top: 60px; }

@media (max-width: 1199px) {
    .header .header-text h1 { font-size: 46px; }
    .header .header-text p { font-size: 16px; }
}
@media (max-width: 991px) {
    .header { justify-content: center; align-items: center; }
    .header .header-text { width: 100%; padding: 0 30px 25px; }
    .header .header-text .tag { display: none; }
    .header .header-text :is(h1, p) { text-align: center; }
    .header .header-button { display: flex; justify-content: center; }
    .header .header-intro .primary-btn { position: relative; right: 0; bottom: 0; }
    .clients { background: url(img/clients-991.svg) no-repeat center; margin-top: 40px; }
}
@media (max-width: 767px) {
    .header-container { padding: 0; }
    .header-container .header { border-radius: 0; }
    .clients { margin-left: 30px; margin-right: 30px; }
}
@media (max-width: 575px) {
    .header .header-intro .primary-btn.arrow-btn:after { display: none; }
    .clients { background: url(img/clients-575.svg) no-repeat center; }
}

/* ########### sub header ########### */
.sub-header {
    background: var(--white);
    box-shadow: rgba(var(--shadow), .1) 0px 0px 15px 0px;
    border-radius: 10px;
    padding: 35px 40px;
    margin-top: 60px;
}

@media (max-width: 991px) {
    .sub-header { background: none; box-shadow: none; padding: 0; margin-top: 30px; }
}
/* ########### sub header ########### */

/* ########### ratgeber header ########### */
.rg-header {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    background: url(img/rg-header-img.jpg) no-repeat center;
    background-size: cover;
    border-radius: 10px 10px 0 10px;
    height: 400px;
}
.rg-header-box {
    position: relative;
    z-index: 999;
    bottom: -15%;
    background: var(--primary-color);
    background: -moz-linear-gradient(0deg, var(--third-color) 0%, var(--primary-color) 100%);
    background: -webkit-linear-gradient(0deg, var(--third-color) 0%, var(--primary-color) 100%);
    background: linear-gradient(0deg, var(--third-color) 0%, var(--primary-color) 100%);
    width: 40%;
    height: fit-content;
    border-radius: 5px;
    border-top-right-radius: 0;
    padding: 35px 40px;
}
.rg-header-box :is(h3, p) { color: var(--white); }
.rg-header-box .primary-btn { background: rgb(var(--white-rgb), .1); transition: all .35s; margin-top: 25px; }
.rg-header-box .primary-btn:focus,
.rg-header-box .primary-btn:hover { background: rgb(var(--white-rgb), .2); transition: all .35s; }
.rg-header-box .primary-btn:before { display: none; }

@media (max-width: 991px) {
    .rg-header { top: 125px; justify-content: center; }
    .rg-header-box { top: 25%; bottom: 0; width: 90%; border-radius: 5px; padding: 25px 30px; }
}
@media (max-width: 767px) {
    .rg-header { border-radius: 0; }
}
@media (max-width: 575px) {
    .rg-header { align-items: center; }
    .rg-header-box { top: 0; background: transparent; padding: 0; }
    .rg-header-box .primary-btn {
        background: var(--primary-color);
        background: -moz-linear-gradient(0deg, var(--third-color) 0%, var(--primary-color) 100%);
        background: -webkit-linear-gradient(0deg, var(--third-color) 0%, var(--primary-color) 100%);
        background: linear-gradient(0deg, var(--third-color) 0%, var(--primary-color) 100%);
        transition: all .35s; margin-top: 25px;
    }
    .rg-header-box .primary-btn:focus,
    .rg-header-box .primary-btn:hover {
    background: var(--primary-color);
    background: -moz-linear-gradient(0deg, var(--third-color) 0%, var(--primary-color) 100%);
    background: -webkit-linear-gradient(0deg, var(--third-color) 0%, var(--primary-color) 100%);
    background: linear-gradient(0deg, var(--third-color) 0%, var(--primary-color) 100%);
    }
    .rg-header-box .primary-btn:before { display: block; }
}
/* ########### sub header ########### */
/* ###################### header ###################### */

/* ###################### content ###################### */
section { padding: 125px 0 50px; }
@media (max-width: 991px) { section { padding: 100px 0 25px; } }

/* ########### steps ########### */
#steps > :is(h2, p) { text-align: center; }
#steps .steps > div { display: grid; grid-template-columns: repeat(2, 1fr); align-items: center; gap: 50px; padding-top: 60px; }
#steps .steps > div:nth-child(2),
#steps .steps > div:last-child { padding-top: 75px; }
#steps .steps .step h3 span { font-family: 'Publica Sans Round Bold', sans-serif; font-size: 32px; color: var(--primary-color); }
#steps .steps .step ul { margin-top: 20px; }
#steps .steps .step ul li { display: flex; align-items: center; list-style: none; height: 40px; margin-bottom: 10px; }
#steps .steps .step ul li:last-child { margin-bottom: 0; }
#steps .steps .step ul li:before { content: ''; display: inline-block; width: 30px; height: 40px; margin-right: 15px; }
#steps .steps .step1 ul li:first-child:before { background: url(img/steps/1-step1.svg) no-repeat center; }
#steps .steps .step1 ul li:nth-child(2):before { background: url(img/steps/2-step1.svg) no-repeat center; }
#steps .steps .step1 ul li:last-child:before { background: url(img/steps/3-step1.svg) no-repeat center; height: 35px; }
#steps .steps .step2 ul li:first-child:before { background: url(img/steps/1-step2.svg) no-repeat center; }
#steps .steps .step2 ul li:nth-child(2):before { background: url(img/steps/2-step2.svg) no-repeat center; height: 30px; }
#steps .steps .step2 ul li:last-child:before { background: url(img/steps/3-step2.svg) no-repeat center; height: 45px; }
#steps .steps .step3 ul li:first-child:before { background: url(img/steps/1-step3.svg) no-repeat center; height: 35px }
#steps .steps .step3 ul li:nth-child(2):before { background: url(img/steps/2-step3.svg) no-repeat center; }
#steps .steps .step3 ul li:last-child:before { background: url(img/steps/3-step3.svg) no-repeat center; height: 25px; }
#steps .steps .step-img img { border-radius: 10px; height: 100%; margin: 0 auto; }

@media (max-width: 991px) {
    #steps .steps > div { grid-template-columns: repeat(1, 1fr); padding-top: 25px; }
    #steps .steps > div:nth-child(2) {
        grid-template-areas: " item2 "
                             " item1 ";
    }
    #steps .steps > div:nth-child(2) .step2 { grid-area: item1; }
    #steps .steps > div:nth-child(2) .step-img { grid-area: item2; }
}
/* ########### steps ########### */

/* ########### referenzen teaser ########### */
#referenzen-teaser > :is(h2, p) { text-align: center; }
#referenzen-teaser > h2 { margin-bottom: 15px; }
#referenzen-teaser > p { display: block; width: 75%; margin: 0 auto 60px; }

.referenzen-teaser-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px; }
.referenzen-teaser-items {
    position: relative;
    box-shadow: rgba(var(--shadow), 0.2) 0px 7px 29px 0px;
    border-radius: 10px;
    overflow: hidden;
}
.referenzen-teaser-items .content-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--shadow), .3);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}
.referenzen-teaser-items:hover .content-overlay { opacity: 1; }
.content-image { object-fit: cover; width: 100%; height: 100%; border-radius: 10px; }
.content-details {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    padding: 15px 30px;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
.referenzen-teaser-items:hover .content-details { top: 50%; left: 50%; opacity: 1; }
.badge {
    font-family: 'Publica Sans Round Bold', sans-serif;
    font-size: 11px;
    color: var(--white);
    text-transform: uppercase;
    background: var(--primary-color);
    background: -moz-linear-gradient(45deg, var(--third-color) 0%, var(--primary-color) 100%);
    background: -webkit-linear-gradient(45deg, var(--third-color) 0%, var(--primary-color) 100%);
    background: linear-gradient(45deg, var(--third-color) 0%, var(--primary-color) 100%);
    width: fit-content;
    border-radius: 5px;
    padding: 4px 8px 5px;
    margin-bottom: 10px;
}
.content-details :is(h3, p) { color: var(--white); }
.content-details h3 { margin-bottom: 5px; }
.content-details p { margin-bottom: 20px; }
.content-buttons a { display: inline-block; }
.content-buttons a:first-child { margin-right: 6px; }
.content-buttons a .primary-btn { height: 31px; padding: 0 15px 1px; }
.content-buttons a .primary-btn:after { width: 11px; height: 11px; margin-left: 8px; }
.content-buttons a .primary-btn span { font-size: 13px; }
.content-buttons .primary-btn { margin: 0 !important; }
.fadeIn-bottom { top: 80%; }
.fadeIn-top { top: 20%; }
.fadeIn-left { left: 20%; }
.fadeIn-right { left: 80%; }

#referenzen-teaser .primary-btn { display: block; margin: 50px auto 0; }

@media (max-width: 1199px) {
    .referenzen-teaser-container { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 991px) {
    .referenzen-teaser-container { grid-template-columns: repeat(1, 1fr); gap: 30px; }
    #referenzen-teaser > p { width: 100%; }
    .content-buttons a .primary-btn:after { display: none; }
}
/* ########### referenzen teaser ########### */

/* ########### call to action ########### */
#call-to-action { padding: 75px 0 0;; }
.call-to-action-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    width: fit-content;
    background: url(img/circle.svg) no-repeat, linear-gradient(45deg, var(--third-color) 0%, var(--primary-color) 100%);
    background-position: right center;
    border-radius: 10px;
    padding: 50px;
}
.call-to-action-text :is(h3, p) { color: var(--white); }
.call-to-action-text h3 { margin-bottom: 15px; }
.call-to-action-buttons { display: flex; justify-content: flex-end; }
.call-to-action-buttons a:first-child { margin-right: 10px; }
.call-to-action-buttons a .primary-btn { background: rgb(var(--white-rgb), .1); transition: all .35s; }
.call-to-action-buttons a:focus .primary-btn,
.call-to-action-buttons a:hover .primary-btn { background: rgb(var(--white-rgb), .2); transition: all .35s; }
.call-to-action-buttons a .primary-btn:before { display: none; }

@media (max-width: 991px) {
    #call-to-action { padding: 50px 0 0;; }
    .call-to-action-container { grid-template-columns: repeat(1, 1fr); background: linear-gradient(45deg, var(--third-color) 0%, var(--primary-color) 100%); }
    .call-to-action-buttons { justify-content: flex-start; margin-top: 30px; }
}
@media (max-width: 575px) {
    .call-to-action-container { padding: 30px; }
    .call-to-action-buttons { display: grid; gap: 15px; }
}
/* ########### call to action ########### */

/* ########### preispakete ########### */
#preispakete > h2 { text-align: center; padding-bottom: 60px; }
/* ##### switcher ##### */
.preis-switcher { text-align: center; }
.preis-switcher .switcher-group {
    position: relative;
    display: inline-block;
    border: 2px solid var(--primary-color);
    border-radius: 7px;
    padding: 2px;
}
.preis-switcher input[type="radio"] { position: absolute; width: fit-content; opacity: 0; }
.preis-switcher label {
    position: relative;
    z-index: 1;
    display: inline-block;
    font-family: 'Publica Sans Round Medium', sans-serif;
    font-size: 15px;
    color: var(--white);
    line-height: 41px;
    height: 41px;
    width: 133px;
    cursor: pointer;
}
.preis-switcher .switch {
    position: absolute;
    top: 2px;
    left: 2px;
    background: var(--primary-color);
    background: -moz-linear-gradient(45deg, var(--third-color) 0%, var(--primary-color) 100%);
    background: -webkit-linear-gradient(45deg, var(--third-color) 0%, var(--primary-color) 100%);
    background: linear-gradient(45deg, var(--third-color) 0%, var(--primary-color) 100%);
    height: 41px;
    width: 135px;
    border-radius: 5px;
    -webkit-transition: -webkit-transform 0.35s;
    -moz-transition: -moz-transform 0.35s;
    transition: transform 0.35s;
}

.preis-switcher input[type="radio"]:not(:checked) + label:nth-of-type(n) { color: var(--primary-color); }
.preis-switcher input[type="radio"]:checked + label + .switch,
.preis-switcher input[type="radio"]:checked + label:nth-of-type(n) + .switch {
    -webkit-transform: translateX(135px);
    -moz-transform: translateX(135px);
    -ms-transform: translateX(135px);
    -o-transform: translateX(135px);
    transform: translateX(135px);
}
/* ##### switcher ##### */

/* ##### pakete ##### */
.preispakete { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.preispakete .paket .paket-info { position: relative; background: var(--white); box-shadow: rgba(var(--shadow), .1) 0px 0px 15px 0px; border: 2px solid var(--background); border-radius: 10px; padding: 30px; }
.preispakete .paket.premium .paket-info { border: 2px solid var(--primary-color); }
.preispakete .paket.premium .paket-info .tag {
    position: absolute;
    top: -12px;
    right: 30px;
    font-family: 'Publica Sans Round Bold', sans-serif;
    font-size: 11px;
    color: var(--white);
    text-transform: uppercase;
    background: var(--primary-color);
    width: fit-content;
    border-radius: 5px;
    padding: 4px 8px 5px;
}

.preispakete .paket .paket-info h3 { margin-bottom: 15px; }
.preispakete .paket .paket-info p { font-size: 13px; line-height: 20px; margin-bottom: 30px; }
.preispakete .paket.basic .paket-info h3 { color: var(--basic); }
.preispakete .paket.premium .paket-info h3 { color: var(--premium); }
.preispakete .paket.pro .paket-info h3 { color: var(--pro); }

.preispakete .paket .paket-info .monate12 { display: none; }

.preispakete .paket .paket-info .preis { font-family: 'Publica Sans Round Bold', sans-serif; font-size: 38px; color: var(--four-color); }
.preispakete .paket .paket-info .preis-intervall { font-family: 'Publica Sans Round Medium', sans-serif; font-size: 13px; color: var(--four-color); margin-left: 7px; }
.preispakete .paket .paket-info .save-money {
    position: absolute;
    top: 170px;
    right: 30px;
    font-family: 'Publica Sans Round Bold', sans-serif;
    font-size: 11px;
    color: var(--white);
    text-transform: uppercase;
    background: var(--red);
    border-radius: 5px;
    padding: 2px 5px 3px;
    transform: rotate(5deg);
}

.preispakete .paket .paket-info .primary-btn { text-align: left; width: 100%; }
.preispakete .paket .paket-info .primary-btn:before { display: none; }
.preispakete .paket .paket-info .primary-btn:after { float: right; top: 2px; }

.preispakete .paket .paket-info .feature-headline { display: block; font-size: 13px; padding: 0 15px; margin: 30px 0 5px; }
.preispakete .paket .paket-info .feature-menu { padding: 0 15px; margin: 0 0 15px; }
.preispakete .paket .paket-info .feature-menu li { display: grid; grid-template-columns: 16px auto; gap: 10px; align-items: baseline; color: var(--text); margin-bottom: 5px; }
.preispakete .paket .paket-info .feature-menu:last-child,
.preispakete .paket .paket-info .feature-menu li:last-child { margin-bottom: 10px; }
.preispakete .paket .paket-info .feature-menu li:before {
    content: '';
    position: relative;
    top: 4px;
    display: block;
    background: url(img/check.svg);
    background-repeat: no-repeat;
    width: 15px;
    height: 15px;
}
.preispakete .paket .paket-info .feature-menu li span { display: block; font-size: 13px; }

.preispakete .paket .paket-info a .paket-btn {
    font-family: 'Poppins Medium', sans-serif; font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
    font-size: 13px;
    width: 100%;
    border: 0 !important;
    border-radius: 4px;
    padding: 15px 0;
}
.preispakete .paket.basic .paket-info a .primary-btn { background: var(--basic); transition: all .35s; }
.preispakete .paket.premium .paket-info a .primary-btn { background: var(--premium); transition: all .35s; }
.preispakete .paket.pro .paket-info a .primary-btn { background: var(--pro); transition: all .35s; }
.preispakete .paket.basic .paket-info a:focus .primary-btn, 
.preispakete .paket.basic .paket-info a:hover .primary-btn { background: rgb(var(--basic-rgb), .85); transition: all .35s; }
.preispakete .paket.premium .paket-info a:focus .primary-btn,
.preispakete .paket.premium .paket-info a:hover .primary-btn { background: rgb(var(--premium-rgb), .85); transition: all .35s; }
.preispakete .paket.pro .paket-info a:focus .primary-btn,
.preispakete .paket.pro .paket-info a:hover .primary-btn { background: rgb(var(--pro-rgb), .85); transition: all .35s; }

.paket-hinweis { display: flex; justify-content: center; margin-top: 30px; }
.paket-hinweis p { font-size: 13px; text-align: center; }
/* ###################### pakete ###################### */

@media (max-width: 1199px) {    
    .preispakete { grid-template-columns: repeat(1, 1fr); }
}
@media (max-width: 395px) {
    .preispakete .paket .paket-info .preis-intervall { margin: 0; }
}
/* ########### preis pakete ########### */

/* ########### blog teaser ########### */
#ratgeber { position: relative; z-index: 2; }
#ratgeber h2 { text-align: center; }
#ratgeber .blog-teaser { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; padding-top: 60px; }
#ratgeber .blog-teaser .image { position: relative; box-shadow: rgba(var(--shadow), .1) 0px 0px 15px 0px; }
#ratgeber .blog-teaser .text .badge-left {
    float: left;
    font-family: 'Publica Sans Round Bold', sans-serif;
    font-size: 13px;
    color: var(--white);
    text-transform: uppercase;
    background: var(--primary-color);
    background: -moz-linear-gradient(45deg, var(--third-color) 0%, var(--primary-color) 100%);
    background: -webkit-linear-gradient(45deg, var(--third-color) 0%, var(--primary-color) 100%);
    background: linear-gradient(45deg, var(--third-color) 0%, var(--primary-color) 100%);
    border-radius: 5px;
    padding: 4px 8px 5px;
    margin-bottom: 20px;
}
#ratgeber .blog-teaser .text .badge-right {
    float: right;
    font-family: 'Publica Sans Round Bold', sans-serif;
    font-size: 13px;
    color: var(--headline);
    right: 20px;
    border-radius: 5px;
    padding: 4px 8px 5px;
}
#ratgeber .blog-teaser .image img { border-radius: 10px; }
#ratgeber .blog-teaser .text { padding-top: 30px; }
#ratgeber .blog-teaser .text h3 { clear: both; }
#ratgeber .blog-teaser .third-btn { width: fit-content; margin-top: 30px; }
#ratgeber .primary-btn.arrow-btn { display: block; margin: 50px auto 0; }

@media (max-width: 991px) {
    #ratgeber { padding: 75px 0 25px; }
    #ratgeber .blog-teaser { grid-template-columns: repeat(1, 1fr); }
}
/* ########### blog teaser ########### */

/* ########### referenzen ########### */
#referenzen > h2 { margin-bottom: 15px; }
#referenzen h3 { margin-bottom: 5px; }
#referenzen .referenzen-container p { margin-bottom: 10px; }
#referenzen .referenzen-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px; padding-top: 60px; }
#referenzen .referenzen-container > div { display: none; position: relative; }
#referenzen img { border-radius: 10px; box-shadow: rgba(var(--shadow), 0.2) 0px 7px 29px 0px; margin-bottom: 20px; }
#referenzen .badge { position: absolute; top: 10px; left: 10px; }
#referenzen .primary-btn { display: block; margin: 50px auto 0; }

#eigene-webseite h2 { text-align: center; }
#eigene-webseite .eigene-webseite-text { display: grid; grid-template-columns: repeat(2, 1fr); gap: 50px; padding-top: 60px; }
#eigene-webseite .eigene-webseite-text h3 span { font-family: 'Publica Sans Round Bold', sans-serif; font-size: 32px; color: var(--primary-color); }
#eigene-webseite .primary-btn { display: block; margin: 50px auto 0; }

@media (max-width: 1199px) {
    #referenzen .referenzen-container { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 991px) {
    #referenzen .referenzen-container,
    #eigene-webseite .eigene-webseite-text { grid-template-columns: repeat(1, 1fr); }
}
/* ########### referenzen ########### */

/* ########### preise ########### */
#preise > h2 { margin-bottom: 15px; }

#preise .preis-tabelle { display: grid; grid-template-columns: 400px auto auto auto; padding-top: 60px; }
#preise .preis-tabelle .paket { display: flex; justify-content: center; padding: 0 0 15px; }
#preise .preis-tabelle .paket h3 { margin-bottom: 5px; }
#preise .preis-tabelle .paket.basic h3 { color: var(--basic); }
#preise .preis-tabelle .paket.premium h3 { display: inline-block; color: var(--premium); }
#preise .preis-tabelle .paket.pro h3 { color: var(--pro); }

#preise .preis-tabelle .paket.premium { position: relative; }
#preise .preis-tabelle .paket.premium .tag {
    position: relative;
    top: -5px;
    left: 14px;
    display: inline-block;
    font-family: 'Publica Sans Round Bold', sans-serif;
    font-size: 11px;
    color: var(--white);
    text-transform: uppercase;
    background: var(--primary-color);
    width: fit-content;
    border-radius: 5px;
    padding: 4px 8px 5px;
}

#preise .preis-tabelle .preis { font-family: 'Publica Sans Round Bold', sans-serif; font-size: 38px; color: var(--four-color); }
#preise .preis-tabelle .preis-intervall { font-family: 'Publica Sans Round Medium', sans-serif; font-size: 13px; color: var(--four-color); margin-left: 7px; }
#preise .preis-tabelle .mwst { display: block; font-family: 'Publica Sans Round Medium', sans-serif; font-size: 11px; color: var(--off-white-3); margin-top: 5px; }

#preise .preis-tabelle .text { display: block; border-bottom: 1px solid var(--off-white-3); padding: 12px 15px 14px; }
#preise .preis-tabelle .text p { font-family: 'Publica Sans Round Medium', sans-serif; color: var(--four-color); }
#preise .preis-tabelle .text small { font-size: 13px; }
#preise .preis-tabelle .feature2,
#preise .preis-tabelle .border-bottom-dark.abstand { padding-top: 45px; }
#preise .preis-tabelle .feature1 h3,
#preise .preis-tabelle .feature2 h3 { padding-left: 15px; }
#preise .preis-tabelle .feature1 h3,
#preise .preis-tabelle .feature2 h3,
#preise .preis-tabelle .border-bottom-dark { border-bottom: 1px solid var(--four-color); padding-bottom: 15px; margin: 0; }
#preise .preis-tabelle .border-bottom-light { border-bottom: 1px solid var(--off-white-3); }

#preise .preis-tabelle .check { position: relative; top: -1px; display: flex; justify-content: center; align-items: center; max-height: 300px; height: 100%; padding: 0 15px; }
#preise .preis-tabelle .check:after {
    content: '';
    display: block;
    background: url(img/check.svg) center no-repeat;
    width: 18px;
    height: 18px;
}

#preise .preis-tabelle :is(.beratung-btn, .basic-btn, .premium-btn, .pro-btn) { padding: 30px 15px 0; }

#preise .preis-tabelle .beratung-btn .primary-btn { text-align: left; width: 100%; }
#preise .preis-tabelle .beratung-btn .primary-btn.arrow-btn:after { float: right; top: 2px; }
#preise .preis-tabelle :is(.basic-btn, .premium-btn, .pro-btn) .primary-btn { text-align: center; width: 100%; }
#preise .preis-tabelle :is(.basic-btn, .premium-btn, .pro-btn) .primary-btn:before,
#preise .preis-tabelle :is(.basic-btn, .premium-btn, .pro-btn) .arrow-btn:after { display: none; }

#preise .preis-tabelle .basic-btn a .primary-btn { background: var(--basic); transition: all .35s; }
#preise .preis-tabelle .premium-btn a .primary-btn { background: var(--premium); transition: all .35s; }
#preise .preis-tabelle .pro-btn a .primary-btn { background: var(--pro); transition: all .35s; }
#preise .preis-tabelle .basic-btn a:focus .primary-btn, 
#preise .preis-tabelle .basic-btn a:hover .primary-btn { background: rgb(var(--basic-rgb), .85); transition: all .35s; }
#preise .preis-tabelle .premium-btn a:focus .primary-btn,
#preise .preis-tabelle .premium-btn a:hover .primary-btn { background: rgb(var(--premium-rgb), .85); transition: all .35s; }
#preise .preis-tabelle .pro-btn a:focus .primary-btn,
#preise .preis-tabelle .pro-btn a:hover .primary-btn { background: rgb(var(--pro-rgb), .85); transition: all .35s; }

.preispakete-full { padding: 5px 0; }
.preispakete-full .paket .paket-info h3 { margin-bottom: 5px; }
.preispakete-full .paket .paket-info .mwst { display: block; font-family: 'Publica Sans Round Medium', sans-serif; font-size: 11px; color: var(--off-white-3); margin-top: 5px; }
.preispakete-full .paket .paket-info .feature-menu:last-child,
.preispakete-full .paket .paket-info .feature-menu li:last-child { margin-bottom: 30px; }

.preise-desktopView { display: block; }
.preise-mobileView { display: none; }

@media (max-width: 1325px) {
    #preise .preis-tabelle { grid-template-columns: 327px auto auto auto; }
    #preise .preis-tabelle .paket.premium .tag { right: 44px; }
}
@media (max-width: 1199px) {
    .preise-desktopView { display: none; }
    .preise-mobileView { display: block; }
}
@media (max-width: 991px) {
    .preispakete-full { padding: 0; }
}

#faq > h2 { text-align: center; }
#faq .faq-container { display: grid; row-gap: 15px; padding-top: 60px; }
#faq .faq-container .toggle {
    display: flex;
	align-items: center;
	justify-content: space-between;
    font-family: 'Publica Sans Round Medium', sans-serif;
    color: var(--headline);
    text-align: left;
    background: transparent;
    border: 2px solid var(--background);
    border-radius: 10px;
	width: 100%;
    padding: 25px 40px;
    cursor: pointer;
}
#faq .faq-container .icon { position: relative; top: 1px; }
#faq .faq-container .plus-icon { background: url(img/plus-icon.svg) center no-repeat; width: 15px; height: 15px; }
#faq .faq-container .minus-icon { background: url(img/minus-icon.svg) center no-repeat; width: 15px; height: 15px; }
#faq .faq-container .content {
	height: 0;
	border-radius: 0 0 10px 10px;
    -webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
    overflow: hidden;
}
#faq .faq-container .content p { padding: 15px 40px; }
#faq .faq-container div:last-child .content p { padding-bottom: 0; }
#faq .primary-btn { display: block; margin: 50px auto 0; }
#faq .primary-btn.arrow-btn:after { background: url(img/link.svg) center no-repeat; filter: brightness(0) invert(1); }

@media (max-width: 991px) {
    #faq .faq-container .toggle { padding: 20px 30px; }
    #faq .faq-container .plus-icon,
    #faq .faq-container .minus-icon { display: none; }
}
/* ########### preise ########### */

/* ########### blog ########### */
#blog { position: relative; z-index: 2; padding-top: 120px; }
#blog .blog-article { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
#blog .blog-article > div { background: var(--white); border-radius: 10px; box-shadow: rgba(var(--shadow), .1) 0px 0px 15px 0px; }
#blog .blog-article .image { position: relative; }
#blog .blog-article .image .badge-left,
#blog .blog-article .image .badge-right {
    position: absolute;
    bottom: 20px;
    font-family: 'Publica Sans Round Bold', sans-serif;
    font-size: 13px;
    color: var(--white);
    text-transform: uppercase;
    background: var(--primary-color);
}
#blog .blog-article .image .badge-left {
    left: 0;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    padding: 4px 8px 5px 30px;
}
#blog .blog-article .image .badge-right {
    right: 20px;
    border-radius: 5px;
    padding: 4px 8px 5px;
}
#blog .blog-article .image img { border-top-left-radius: 10px; border-top-right-radius: 10px; }
#blog .blog-article .text { padding: 25px 30px 30px; }
#blog .blog-article .third-btn { margin: 0 15px 15px; }
#blog .blog-article .third-btn:after { float: right; top: 2px; }

#blog .pagination { display: flex; justify-content: center; align-items: center; margin-top: 50px; }
#blog .pagination span {
    display: flex;
    align-items: center;
    justify-content: center;   
    font-family: 'Publica Sans Round Bold', sans-serif;
    font-size: 15px;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-right: 0;
    height: 41px;
    width: 41px;
    padding-bottom: 1px;
    cursor: pointer;
}
#blog .pagination span:first-child { border-radius: 10px 0 0 10px; }
#blog .pagination span:last-child { border-right: 2px solid var(--primary-color); border-radius: 0 10px 10px 0; }
#blog .pagination span.active,
#blog .pagination span:focus,
#blog .pagination span:hover {
    color: var(--white);
    background: var(--primary-color);
    background: -moz-linear-gradient(45deg, var(--third-color) 0%, var(--primary-color) 100%);
    background: -webkit-linear-gradient(45deg, var(--third-color) 0%, var(--primary-color) 100%);
    background: linear-gradient(45deg, var(--third-color) 0%, var(--primary-color) 100%);
}
#blog .pagination span.arrow:focus:after,
#blog .pagination span.arrow:hover:after { filter: brightness(0) invert(1); }

#blog .pagination .left-arrow:after,
#blog .pagination .right-arrow:after { content: ''; position: relative; top: 1px; display: inline-block; width: 14px; height: 14px; }
#blog .pagination .left-arrow:after { background: url(img/pagination-arrow.svg) center no-repeat; transform: rotate(180deg); }
#blog .pagination .right-arrow:after { background: url(img/pagination-arrow.svg) center no-repeat; }

@media (max-width: 1199px) {
    #blog .blog-article { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 991px) {
    #blog { padding-top: 160px; }
    #blog .blog-article { grid-template-columns: repeat(1, 1fr); }
}
@media (max-width: 575px) {
    #blog { padding-top: 30px; }
}
/* ########### blog ########### */

/* ########### kontakt ########### */
#kontakt { padding-left: 75px; padding-right: 75px; }
.kontakt-sub { padding-top: 75px; }
#kontakt .success,
#kontakt .error {
    font-family: 'Publica Sans Round Medium', sans-serif;
    color: var(--white);
    border-radius: 5px;
    padding: 10px 20px;
    margin-bottom: 25px;
}
#kontakt .success { background: #25d366; }
#kontakt .error { background: #25d366; }
#kontakt form { margin-top: 60px; }
#kontakt form .row1 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
#kontakt form .row2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-top: 40px; }
#kontakt form .row3 { display: grid; margin: 40px 0 25px; }
#kontakt form .row4 { display: grid; margin-bottom: 40px; }

select:invalid,
::placeholder { color: rgb(var(--text-rgb), .6); background: transparent; }
select, input, textarea { font-size: 15px; color: var(--text); line-height: 40px; background: transparent; width: 100%; box-sizing: border-box; padding: 0 10px; }
select { -webkit-appearance: none; }
textarea { margin-bottom: -3px; }
textarea::-webkit-resizer { display: none; }
select:focus,
input:focus,
textarea:focus { color: var(--primary-color); }
.input-effekt { position: relative; }
.effekt { border: 0; border-bottom: 2px solid rgb(var(--text-rgb), .25); border-radius: 0; }
.effekt ~ .focus-border {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color); 
    transition: all .35s;
}
.effekt:focus ~ .focus-border { width: 100%; transition: all .35s; }

.custom-checkbox {
    position: absolute;
    width: auto;
    opacity: 0;
}
.custom-checkbox + label {
    position: relative;
    display: grid;
    grid-template-columns: 20px auto;
    gap: 10px;
    width: fit-content;
    padding: 0;
    cursor: pointer;
}
.custom-checkbox + label:before {
    content: '';
    position: relative;
    top: 4px;
    display: inline-block;
    vertical-align: top;
    background: rgb(var(--text-rgb), .25);
    border-radius: 5px;
    width: 20px;
    height: 20px;
    transition: all .35s;
}
.custom-checkbox:hover + label:before { background: var(--primary-color); transition: all .35s; }

.custom-checkbox:checked + label:before { background: var(--primary-color); }
.custom-checkbox:checked + label:after {
    content: '';
    position: absolute;
    top: 13px;
    left: 5px;
    background: var(--white);
    width: 2px;
    height: 2px;
    box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
    transform: rotate(45deg);
}
.checkbox-text p:first-child { font-family: 'Publica Sans Round Medium', sans-serif; }
.checkbox-text .checkbox-note { font-size: 13px; line-height: 22px; }
.checkbox-text .checkbox-note a { font-family: 'Publica Sans Round Medium', sans-serif; font-size: 13px; text-decoration: none; }
.checkbox-text .checkbox-note a:focus,
.checkbox-text .checkbox-note a:hover { color: var(--primary-color); }

@media (max-width: 991px) {
    #kontakt { padding-left: 0; padding-right: 0; }
    #kontakt form .row1,
    #kontakt form .row2 { grid-template-columns: repeat(1, 1fr); gap: 40px; }
}
@media (max-width: 575px) {
    #kontakt form > a { display: block; width: fit-content; margin: 0 auto; }
}
/* ########### kontakt ########### */
/* ########### rechtliches ########### */
.legal span { font-family: "Publica Sans Round Bold", sans-serif; margin-right: 10px; }
.legal a:focus,
.legal a:hover { color: var(--primary-color); }
/* ########### rechtliches ########### */
/* ###################### content ###################### */

/* ###################### footer ###################### */
/* ########### footer top ########### */
.footer-top { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px; margin: 100px 0 -20px; }
.footer-top a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primary-color);
    background: -moz-linear-gradient(45deg, var(--third-color) 0%, var(--primary-color) 100%);
    background: -webkit-linear-gradient(45deg, var(--third-color) 0%, var(--primary-color) 100%);
    background: linear-gradient(45deg, var(--third-color) 0%, var(--primary-color) 100%);
    border-radius: 5px;
    padding: 23px 30px 27px;
}
.footer-top a:before { content: ''; width: 35px; height: 35px; margin-right: 20px; }
.footer-top a:first-child:before { background: url(img/headset.svg) center no-repeat; }
.footer-top a:nth-child(2):before { background: url(img/clock.svg) center no-repeat; }
.footer-top a:last-child:before { background: url(img/plane.svg) center no-repeat; }
.footer-top a :is(p, span) { color: var(--white); }
.footer-top a p { font-family: 'Publica Sans Round Medium', sans-serif; }

@media (max-width: 1199px) {
    .footer-top { grid-template-columns: repeat(2, 1fr); }
    .footer-top a:last-child { display: none; }
}
@media (max-width: 690px) {
    .footer-top { grid-template-columns: repeat(1, 1fr); }
    .footer-top a:first-child { display: none; }
}
/* ########### footer top ########### */

.footer-container { position: relative; background: var(--footer-background); }
.footer-items { padding: 89px 0 64px; }
.footer-items, .footer-items .footer-navs { display: grid; grid-template-columns: repeat(2, 1fr); align-items: baseline; }

.footer-items .address .footer-logo {
    display: block;
    background: url('img/white-logo.svg');
    background-repeat: no-repeat;
    width: 225px;
    height: 53px;
}
.footer-items .address p,
.footer-items .address a { font-family: 'Publica Sans Round Medium', sans-serif; }
.footer-items .address p.mobileView { display: none; }
.footer-items .address span { font-family: "Publica Sans Round Bold", sans-serif; margin-right: 10px; }
.footer-items .address a { text-decoration: none; }
.footer-items .address a:focus,
.footer-items .address a:hover { color: var(--white); }
.footer-items .footer-navs ul { display: grid; justify-content: center;  }
.footer-items .footer-navs ul:last-child li:last-child a.hilfe:after {
    content: '';
    position: relative;
    top: 1px;
    display: inline-block;
    background: url(img/link.svg) center no-repeat;
    width: 14px;
    height: 14px;
    margin-left: 7px;
    transition: all .35s;
}
.footer-items .footer-navs ul:last-child li:last-child a.hilfe:focus:after,
.footer-items .footer-navs ul:last-child li:last-child a.hilfe:hover:after { filter: brightness(0) invert(1); transition: all .35s; }
.footer-items .footer-navs ul li { padding: 7px 0; }
.footer-items .footer-navs ul li,
.footer-items-2 ul li { list-style: none; }
.footer-items .footer-navs ul li a,
.footer-items-2 ul li a { text-decoration: none; }
.footer-items .footer-navs ul li a.active,
.footer-items .footer-navs ul li a:focus,
.footer-items .footer-navs ul li a:hover { color: #fff; }
.footer-items .footer-navs ul li a.ratgeber:after {
    content: '';
    position: absolute;
    display: inline-block;
    background: var(--white);
    box-shadow: 0 0 0 0 rgb(255 255 255);
    border-radius: 50%;
    height: 7px;
    width: 7px;
    margin: 3px 6px 6px;
    transform: scale(1);
    animation: pulse-white 2s infinite;
}
@keyframes pulse-white {
	0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(var(--white-rgb), 0.6); }
	75% { transform: scale(1); box-shadow: 0 0 0 5px rgba(var(--white-rgb), 0); }
	100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(var(--white-rgb), 0); }
}

.footer-items-2 { display: flex; padding: 0 0 20px; }
.footer-items-2 ul { display: flex; }
.footer-items-2 .legal-nav li { margin-right: 10px; }
.footer-items-2 .legal-nav li:last-child { margin-right: 0; }
.footer-items-2 .legal-nav li a.active { color: var(--white); }
.footer-items-2 li a { font-family: 'Publica Sans Round Medium', sans-serif; font-size: 13px; color: var(--text); }
.footer-items-2 .lang-nav li a.active,
.footer-items-2 li a:focus,
.footer-items-2 li a:hover { color: var(--white); }

.footer-items-2 .brand-nav { position: relative; top: -1px; align-items: center; }
.footer-items-2 .brand-nav li { margin-right: 10px; }
.footer-items-2 .brand-nav li:last-child { margin-right: 0; }
.footer-items-2 .brand-nav .brands { display: block; height: 15px; width: 15px; cursor: pointer; transition: all .35s; }
.footer-items-2 .brand-nav .facebook { background: url('img/brands/facebook.svg'); background-repeat: no-repeat; width: 8px; }
.footer-items-2 .brand-nav .instagram { background: url('img/brands/instagram.svg'); background-repeat: no-repeat; }
.footer-items-2 .brand-nav .linkedin { background: url('img/brands/linkedin.svg'); background-repeat: no-repeat; }
.footer-items-2 .brand-nav .brands:focus,
.footer-items-2 .brand-nav .brands:hover { filter: brightness(0) invert(1); transition: all .35s; }
.footer-items-2 .footer-dash {
    display: block;
    background: var(--text);
    width: 15px;
    height: 1px;
    border: 0;
    margin: 12px 10px;
}

/* ########### back to top ########### */
.back-to-top {
    position: absolute;
    right: 0;
    bottom: 20px;
    height: 48px;
    margin-right: 30px;
}
.back-to-top span {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    background: url('img/arrow-top.svg'); background-repeat: no-repeat;
    width: 16px;
    height: 17px;
    margin: auto;
}
@media (max-width: 575px) {
    .back-to-top { display: none; }
}
/* ########### back to top ########### */

/* ########### footer bottom ########### */
.footer-bottom { display: flex; justify-content: center; align-items: center; background: var(--footer-bottom-background); padding: 15px 30px; }
.footer-bottom p,
.footer-bottom a { font-family: "Publica Sans Round Bold", sans-serif; font-size: 13px; color: rgb(var(--text-rgb), .5); text-decoration: none; }
.footer-bottom a:focus,
.footer-bottom a:hover { color: var(--white); }
.footer-bottom .logo { display: block; background: url('img/solo-logo.svg'); background-repeat: no-repeat; height: 25px; width: 25px; margin: 0 12px; }
/* ########### footer bottom ########### */

@media (max-width: 767px) {
    .footer-items { grid-template-columns: repeat(1, 1fr); padding: 100px 0 50px; }
    .footer-items .address { margin-bottom: 50px; }
    .footer-items .address .footer-logo { margin: 0 auto; }
    .footer-items .address p { text-align: center; }
    .footer-items .address p.mobileView { display: block; }
    .footer-items .address p.desktopView { display: none; }
    .footer-items .address span { display: none; }

    .footer-items-2 { display: block; padding: 0 0 28px; }
    .footer-items-2 ul { justify-content: center; }
    .footer-items-2 .legal-nav { margin: 5px 0 13px; }
    .footer-items-2 .legal-nav li { margin-right: 0; }
    .legal-nav li:nth-child(2):before,
    .legal-nav li:nth-child(2):after { position: relative; top: 1px; font-family: 'Publica Sans Round Bold', sans-serif; font-size: 15px; margin: 0 5px; }
    .legal-nav li:nth-child(2):before { content: '//'; }
    .legal-nav li:nth-child(2):after { content: '//'; }
    .footer-items-2 .footer-dash { display: none; }
    .footer-items-2 .brand-nav { top: 0; }
}
@media (max-width: 575px) {
    .footer-bottom p, .footer-bottom a { font-size: 11px; }
    .footer-bottom .logo { position: relative; top: 1px; height: 20px; width: 20px; }
}
/* ###################### footer ###################### */

/* ###################### modal ###################### */
.modal .row1 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin: 30px 0 15px; }
.modal .row2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-bottom: 20px; }
.modal .row3 { margin-bottom: 20px; }

.modal .effekt { background: transparent; border: 2px solid rgb(var(--white-rgb), .6); border-radius: 5px; box-shadow: none; }
.modal select,
.modal input,
.modal input::placeholder { font-family: 'Publica Sans Round Medium', sans-serif; color: rgb(var(--white-rgb), .6); }
.modal select:focus,
.modal input:focus { color: var(--white); border-color: var(--white); }
.modal select:valid,
.modal input:valid { color: var(--white); border-color: var(--white); }

.modal .checkbox-text p { color: var(--white); }
.modal .checkbox-text p.checkbox-note,
.modal .checkbox-text p.checkbox-note a { font-family: 'Publica Sans Round Medium', sans-serif; color: rgb(var(--white-rgb), .6); }
.modal .checkbox-text p.checkbox-note a { font-family: 'Publica Sans Round Bold', sans-serif; }
.modal .checkbox-text p.checkbox-note a:focus,
.modal .checkbox-text p.checkbox-note a:hover { color: var(--white); }
.modal .custom-checkbox + label:before { background: rgb(var(--white-rgb), .3); }
.modal .custom-checkbox:hover + label:before { background: rgb(var(--white-rgb), .5); }

.modal .primary-btn { background: rgb(var(--white-rgb), .1); transition: all .35s; }
.modal .primary-btn:focus,
.modal .primary-btn:hover { background: rgb(var(--white-rgb), .2); transition: all .35s; }
.modal .primary-btn:before { display: none; }

.modal input:-webkit-autofill,
.modal input:-webkit-autofill:hover, 
.modal input:-webkit-autofill:focus,
.modal select:-webkit-autofill,
.modal select:-webkit-autofill:hover,
.modal select:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--white);
    box-shadow: 0 0 0 1000px rgba(var(--white-rgb), .2) inset;
    background-color: var(--white);
    transition: background-color 9999s ease-in-out 0s;
    border-radius: 5px;
}

.modal {
    position: fixed;
    z-index: 9999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    width: max-content;
    height: min-content;
    border-radius: 10px;
    margin: auto;
    -webkit-transition: opacity .35s linear;
    -o-transition: opacity .35s linear;
    transition: opacity .35s linear;
    opacity: 0;
    opacity: 1;
}
.modal-content {
    background: var(--primary-color);
    background: -moz-linear-gradient(0deg, var(--third-color) 0%, var(--primary-color) 100%);
    background: -webkit-linear-gradient(0deg, var(--third-color) 0%, var(--primary-color) 100%);
    background: linear-gradient(0deg, var(--third-color) 0%, var(--primary-color) 100%);
    border-radius: 10px;
}
.modal-header { position: absolute; top: 30px; right: 30px; }
.modal-body { padding: 62px 75px 75px; }
.modal-body :is(h3, .sub-h3) { display: block; color: var(--white); text-align: center; }
.modal-body h3 { font-size: 42px; margin-bottom: 7px; }
.modal-body .sub-h3 { font-size: 18px; }
.modal-backdrop { position: fixed; z-index: 9998; top: 0; right: 0; bottom: 0; left: 0; display: none; }
body.open { overflow-y: hidden; }
.modal-open { display: flex; -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px); box-shadow: rgba(var(--shadow), .1) 0px 7px 29px 0px; }
.modal-header .close.close-circle {
    background: url(img/times.svg) no-repeat center;
    background-size: 15px;
    height: 15px;
    width: 15px;
    border-radius: 5px;
    opacity: .6;
    transition: all .35s;
    cursor: pointer;
}
.modal-header .close.close-circle:focus,
.modal-header .close.close-circle:hover { opacity: 1; transition: all .35s; }

@media (max-width: 991px) {
    .modal { width: 100%; height: 100%; padding: 15px; }
    .modal-open { display: flex; justify-content: center; align-items: center; }
    .modal-content { position: relative; }
    .modal .row1,
    .modal .row2 { grid-template-columns: repeat(1, 1fr); }
}
@media (max-width: 767px) {
    .modal-body { padding: 30px; }
}
@media (max-width: 575px) {
    .modal .primary-btn { display: block; margin: 0 auto; }
    .modal .primary-btn.arrow-btn:after { display: none; }
    .modal-body h3 { font-size: 34px; }
    .modal-body .sub-h3 { display: none; }
}
@media (max-width: 375px) {
    .modal-body h3 { font-size: 30px; }
}
/* ###################### modal ###################### */

/* ###################### preloader ###################### */
#preloader {
    overflow: hidden;
    background: -moz-linear-gradient(0deg, var(--third-color) 0%, var(--primary-color) 100%);
    background: -webkit-linear-gradient(0deg, var(--third-color) 0%, var(--primary-color) 100%);
    background: linear-gradient(0deg, var(--third-color) 0%, var(--primary-color) 100%);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: fixed;
    z-index: 9999;
    color: #fff;
}
#preloader .jumper {
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: block;
    position: absolute;
    margin: auto;
    width: 50px;
    height: 50px;
}
#preloader .jumper > div {
    background-color: #fff;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    position: absolute;
    opacity: 0;
    width: 50px;
    height: 50px;
    -webkit-animation: jumper 1s 0s linear infinite;
    animation: jumper 1s 0s linear infinite;
}
#preloader .jumper > div:nth-child(2) { -webkit-animation-delay: 0.33333s; animation-delay: 0.33333s; }
#preloader .jumper > div:nth-child(3) { -webkit-animation-delay: 0.66666s; animation-delay: 0.66666s; }
@-webkit-keyframes jumper {
    0% { opacity: 0; -webkit-transform: scale(0); transform: scale(0); }
    5% { opacity: 1; }
    100% { -webkit-transform: scale(1); transform: scale(1); opacity: 0; }
}
@keyframes jumper {
    0% { opacity: 0; -webkit-transform: scale(0); transform: scale(0); }
    5% { opacity: 1; }
    100% { opacity: 0; }
}
/* ###################### preloader ###################### */