:root {
--h1-font-size: 44px;
--h2-font-size: 36px;
--h3-font-size: 28px;
--h4-font-size: 24px;
--h5-font-size: 22px;
--h6-font-size: 20px;
--body1-font-size: 18px;
--body2-font-size: 16px;
--body3-font-size: 14px;
--body4-font-size: 12px;
--body5-font-size: 10px;
--bold-weight: 700;
--regular-weight: 400;
--light-weight: 300;
--border-radius-min: 15px;
--border-radius: 25px;
--border-radius-max: 50px;
--grey-600: #000;
--grey-500: #3c4b5a;
--grey-400: #505050;
--grey-300: #ccc;
--grey-200: #f4f4f4;
--grey-100: #fff;
--blue-600: #00437a;
--blue-500: #265f8e;
--blue-400: #5985a9;
--blue-300: #99b4ca;
--blue-200: #ccd9e4;
--blue-100: #edf2f6;
--red-600: #b3124b;
--green-600: #46b450;
--orange-600: #f07e14; --btn-size: 48px;
--gap: 12px;
--edge: 16px;
--label-bg: var(--blue-600);
--label-fg: var(--grey-100);
--shadow: 0 10px 24px rgba(0,0,0,.15);
--ring: 0 0 0 4px rgba(179,18,75,.5);
}
@media (max-width: 1200px) {
:root {
--h1-font-size: 36px;
--h2-font-size: 30px;
--h3-font-size: 24px;
--h4-font-size: 22px;
--h5-font-size: 20px;
--h6-font-size: 18px;
--body1-font-size: 16px;
--body2-font-size: 14px;
--body3-font-size: 12px;
--body4-font-size: 10px;
--body5-font-size: 8px;
}
}
@media (max-width: 768px) {
:root {
--h1-font-size: 32px;
--h2-font-size: 28px;
--h3-font-size: 20px;
--h4-font-size: 18px;
--h5-font-size: 16px;
--h6-font-size: 14px;
--body1-font-size: 16px;
--body2-font-size: 14px;
--body3-font-size: 12px;
--body4-font-size: 10px;
--body5-font-size: 8px;
}
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-weight: inherit;
font-style: inherit;
font-size: 100%;
font-family: inherit;
vertical-align: baseline;
} body { margin:0 auto; padding:0; background-color:var(--grey-100); font-family:'Manrope', 'Helvetica', arial, sans-serif; font-size:var(--body1-font-size); font-weight:var(--regular-weight); color:var(--grey-600); }
strong { font-weight: var(--bold-weight); }
.section {
padding: 80px 0;
background-color: var(--grey-100);
}
.section-alt {
padding: 80px 0;
background-color: var(--grey-200);
}
.section-nav {
padding: 0 0 80px 0;
}
.container {
width: 100%;
max-width: 1240px;
margin: 0 auto;
padding: 0 20px;
}
.buttons {
margin: 48px 0 0 0;
padding: 0;
display: grid;
align-items: center;
justify-content: flex-start;
gap: 24px;
}
.buttons li {
list-style: none;
margin: 0;
padding: 0;
}
@media (max-width: 575px) {
.section,
.section-alt,
.section-gradient {
padding: 60px 0;
}
.section-nav {
padding: 0 0 60px 0;
}
.buttons {
display: flex;
width: 100%;
}
.btn-primary,
.btn-secondary {
width: 100%;
}
}
.btn-primary,
.btn-secondary {
transition: transform 0.08s ease, box-shadow 0.15s ease, background-position 0.15s ease, filter 0.15s ease;
}
.btn-primary:hover,
.btn-secondary:hover {
filter: brightness(1.05);
transform: translateY(-1px);
box-shadow: 0 16px 30px rgba(0, 0, 0, 0.35);
}
.btn-primary {
min-width: 200px;
padding: 12px 24px;
border-radius: var(--border-radius-max);
border: 1px solid var(--blue-600);
background-color: var(--blue-600);
color: var(--grey-100);
font-size: var(--body1-font-size);
font-weight: var(--bold-weight);
}
.btn-primary:hover {
border: 1px solid var(--grey-500);
background-color: var(--grey-500);
}
.btn-secondary {
min-width: 200px;
padding: 12px 24px;
border-radius: var(--border-radius-max);
border: 1px solid var(--blue-600);
background-color: transparent;
font-size: var(--body1-font-size);
font-weight: var(--bold-weight);
color: var(--blue-600);
}
.btn-secondary:hover {
border: 1px solid var(--grey-500);
background-color: var(--grey-500);
color: var(--grey-100);
}
.section-gradient .btn-primary,
.section-gradient .btn-secondary {
background-color: transparent;
color: var(--grey-100);
border: 1px solid var(--grey-100);
}
.section-gradient .btn-primary:hover,
.section-gradient .btn-secondary:hover {
background-color: var(--grey-100);
color: var(--blue-600);
border: 1px solid var(--grey-100);
}
.btn-primary.btn-cta {
padding: 4px 16px;
border: 1px solid var(--red-600);
background-color: var(--red-600);
}
header {
position: sticky;
top: 0;
z-index: 100;
background-color: var(--grey-100);
}
.header-inner {
display: flex;
align-items: center;
justify-content: space-between;
flex-direction: row;
min-height: 70px;
}
.header-logo {
}
.header-logo img {
max-height: 20px;
}
.header-nav {
display: flex;
gap: 24px;
}
.header-nav li {
list-style: none;
}
.header-link {
font-size: var(--body1-font-size);
font-weight: var(--bold-weight);
color: var(--grey-500);
}
.header-link:hover {
color: var(--blue-600);
}
#btn-toggle {
position: relative;
z-index: 1001;
}
@media (max-width: 992px) {
.header-nav {
padding: 40px 40px;
align-items: center;
justify-content: center;
}
.header-nav li {
text-align: center;
}
.header-link {
font-size: 32px;
}
}
@media (max-width: 575px) {
.header-link {
font-size: 28px;
}
}
.section-gradient {
background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-500) 75%);
color: var(--grey-100);
}
.section-hero {
position: relative;
padding: 0 0 80px 0;
background-color: var(--grey-100);
display: flex;
align-items: center;
}
.hero-inner {
width: 100%;
max-width: 100%;
margin: 0 auto;
padding: 0;
display: grid;
grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
column-gap: 48px;
align-items: center;
}
@media (max-width: 1200px) {
.hero-inner {
grid-template-columns: 1fr;
}
}
.hero-media {
position: relative;
width: 100%;
height: 100%;
max-height: 800px;
min-height: 320px;
overflow: hidden;
}
.hero-media::after {
content: "";
position: absolute;
top: -1px;
left: 0;
right: 0;
bottom: -1px;
display: block;
background-image: url(//karriere.conceptaplan.de/wp-content/themes/ccp/assets/images/curve.svg);
background-repeat: no-repeat;
background-size: cover;
background-position: right bottom;
pointer-events: none;
}
.hero-image {
position: relative;
}
.hero-image:after {
content: "";
display: block;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
background: linear-gradient(
100.85deg,
rgba(0, 67, 122, .49) 15%,
rgba(89, 133, 169, .49) 55%,
rgba(237, 242, 246, .49) 90%
);
background-blend-mode: multiply;
opacity: .7;
}
.hero-image img {
width: 100%;
height: 100%;
min-height: 320px;
object-fit: cover;
display: block;
}
.hero-content {
padding-right: 80px;
}
h1,
h2 {
margin: 0 0 32px 0;
}
h3,
h4 {
margin: 0 0 24px 0;
}
h5,
h6 {
margin: 0 0 12px 0;
}
h1 {
font-size: var(--h1-font-size);
font-weight: var(--bold-weight);
line-height: 1.25;
color: var(--blue-600);
}
h2 {
font-size: var(--h2-font-size);
font-weight: var(--bold-weight);
line-height: 1.25;
color: var(--blue-600);
}
.section-gradient h1,
.section-gradient h2,
.section-gradient h3,
.section-gradient h4,
.section-gradient h5,
.section-gradient h6,
.section-gradient p,
.section-gradient a {
color: var(--grey-100);
}
.section-gradient a {
border-bottom: 1px solid transparent;
}
.section-gradient a:hover {
border-bottom: 1px solid var(--grey-100);
}
h3 {
font-size: var(--h3-font-size);
font-weight: var(--bold-weight);
line-height: 1.25;
color: var(--blue-600);
}
h4 {
font-size: var(--h4-font-size);
font-weight: var(--bold-weight);
line-height: 1.25;
color: var(--grey-500);
}
.brxe-text p {
margin: 0 0 32px 0;
padding: 0;
}
@media (max-width: 768px) {
.brxe-text,
.brxe-text h1,
.brxe-text h2,
.brxe-text h3,
.brxe-text h4,
.brxe-text h5,
.brxe-text h6,
.brxe-text p,
.brxe-text li,
.brxe-text div {
overflow-wrap: anywhere;
word-wrap: break-word;
hyphens: auto;
}
.brxe-text a {
overflow-wrap: anywhere;
word-break: break-word;
}
}
a {
transition:
color 180ms cubic-bezier(.25,.8,.25,1),
background-color 180ms cubic-bezier(.25,.8,.25,1),
border-color 180ms cubic-bezier(.25,.8,.25,1);
}
.hero-cta {
margin-top: 24px;
font-size: var(--body2-font-size);
color: var(--red-600);
display: inline-flex;
align-items: center;
gap: 8px;
}
.hero-scroll {
position: absolute;
left: 80px;
bottom: 24px;
color: var(--red-600);
cursor: pointer;
}
.hero-subtitle {
margin-bottom: 0;
font-size: var(--h3-font-size);
font-weight: var(--regular-weight);
color: var(--grey-400);
line-height: 1.25;
}
.hero-badge {
width: 192px;
height: 192px;
padding: 20px;
background-color: var(--red-600);
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
position: absolute;
top: 32px;
left: 32px;
z-index: 99;
}
.hero-badge h3 {
margin: 0;
padding: 0;
font-size: var(--h3-font-size);
line-height: 1;
color: var(--grey-100);
text-align: center;
}
@media (max-width: 992px) {
.hero-content {
padding-right: 0;
}
.hero-badge {
width: 120px;
height: 120px;
padding: 12px;
top: 24px;
left: 24px;
}
.hero-badge h3 {
font-size: var(--body1-font-size);
}
}
@media (max-width: 575px) {
.hero-badge {
width: 96px;
height: 96px;
padding: 8px;
top: 20px;
left: 20px;
}
.hero-badge h3 {
font-size: var(--body2-font-size);
}
}
.brxe-text ul {
list-style: none;
margin: 0 0 32px 0;
padding: 0;
font-size: var(--body1-font-size);
line-height: 1.5;
}
.brxe-text ul li {
--dot-size: 0.5em;
position: relative;
padding-left: calc(var(--dot-size) + 0.75em);
margin: 0 0 0.5em 0;
line-height: 1.5;
}
.brxe-text ul li::before {
content: "";
position: absolute;
left: 0;
top: 0.5em;
width: var(--dot-size);
height: var(--dot-size);
border-radius: 50%;
background-color: var(--blue-600);
}
.brxe-text a {
color: var(--blue-600);
border-bottom: 1px solid var(--blue-600);
}
.brxe-text a:hover {
border-bottom: 1px solid transparent;
}  #footer {
background-color: var(--grey-500);
}
.footer-container {
display: grid;
grid-template-columns: 1fr 2fr 2fr;
grid-template-areas: "logo address menu";
gap: 40px;
align-items: flex-start;
justify-content: flex-start;
}
.footer-logo {
grid-area: logo;
width: 224px;
height: 20px;
display: block;
}
.footer-address {
grid-area: address;
font-size: 14px;
color: var(--grey-100);
}
.footer-menu {
grid-area: menu;
justify-self: flex-end;
}
.footer-address a {
border-bottom: 1px solid transparent;
color: var(--grey-100);
}
.footer-address a:hover {
border-bottom: 1px solid var(--grey-100);
}
.footer-address span.divider {
padding: 0 8px;
display: inline;
}
.footer-menu ul {
display: flex;
align-items: flex-start;
justify-content: flex-end;
gap: 0;
list-style: none;
margin: 0;
padding: 0;
}
.footer-menu ul li {
font-size: 14px;
color: var(--grey-100);
display: flex;
}
.footer-menu ul li + li::before {
content: "|";
padding: 0 8px;
color: var(--grey-100);
}
.footer-menu ul li a {
font-size: 14px;
color: var(--grey-100);
border-bottom: 1px solid transparent;
text-decoration: none;
}
.footer-menu ul li a:hover {
border-bottom: 1px solid var(--grey-100);
}
.footer-menu ul li a[aria-current="page"] {
font-weight: var(--bold-weight);
}
@media (max-width: 1200px) {
.footer-container {
grid-template-columns: auto 1fr;
grid-template-areas:
"logo   menu"
"address menu";
column-gap: 24px;
row-gap: 16px;
}
.footer-logo {
justify-self: flex-start;
}
}
@media (max-width: 992px) {
.footer-menu ul {
justify-content: flex-start;
align-items: flex-start;
flex-direction: column;
gap: 4px;
}
.footer-menu ul li + li::before {
content: none;
padding: 0;
}
}
@media (max-width: 768px) {
#footer {
padding: 60px 0 100px 0;
}
.footer-address {
font-size: 16px;
}
.footer-menu {
justify-self: flex-start;
}
.footer-menu ul {
margin-top: 20px;
}
.footer-menu ul li,
.footer-menu ul li a {
font-size: 16px;
}
.footer-address span.divider {
display: block;
font-size: 0;
line-height: 0;
margin: 0;
}
.footer-container {
grid-template-columns: 1fr;
grid-template-areas:
"logo"
"address"
"menu";
gap: 16px;
}
.footer-logo {
justify-self: flex-start;
}
} .nav-single {
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
gap: 1.5rem;
padding: 0;
font-size: var(--body2-font-size);
}
.nav-prev,
.nav-grid,
.nav-next {
flex: 1;
}
.nav-prev {
text-align: left;
}
.nav-grid {
text-align: center;
}
.nav-next {
text-align: right;
}
.nav-single a {
display: inline-flex;
align-items: center;
justify-content: center;
gap: .5rem;
padding: .35rem .75rem;
border-radius: 999px;
color: var(--grey-500);
text-decoration: none;
transition: background-color .2s ease, color .2s ease, transform .1s ease;
}
.nav-single a:hover {
color: var(--blue-600);
}
.nav-single a:focus-visible {
outline: 2px solid var(--blue-600);
outline-offset: 3px;
}
.nav-prev a,
.nav-next a {
padding-inline: .5rem;
}
.nav-prev a:hover,
.nav-next a:hover {
background-color: var(--grey-200);
}
.nav-label {
white-space: nowrap;
}
@media (min-width: 768px) {
.mobile {
display: none;
}
}
.nav-grid a {
flex-direction: column;
padding: .25rem .75rem;
}
.icon-grid {
display: inline-flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 2px;
width: 18px;
height: 18px;
}
.icon-grid .line {
display: block;
width: 100%;
height: 2px;
border-radius: 999px;
background-color: var(--grey-400);
}
.nav-grid a:hover .icon-grid .line {
background-color: var(--blue-600);
}
@media (max-width: 768px) {
.nav-single {
flex-direction: row;
align-items: stretch;
gap: .75rem;
}
.nav-prev a,
.nav-next a {
justify-content: center;
}
.nav-next .nav-label,
.nav-prev .nav-label {
display: none;
}
.nav-next .mobile,
.nav-prev .mobile {
display: inline;
}
}
.nav-prev[aria-disabled="true"],
.nav-prev.is-disabled {
opacity: .4;
pointer-events: none;
} .breadcrumb {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 0.5rem;
margin-bottom: 48px;
font-size: var(--body2-font-size);
color: var(--grey-400);
}
.breadcrumb a {
color: var(--grey-400);
text-decoration: none;
position: relative;
border-bottom: 1px solid transparent;
}
.breadcrumb a:hover {
color: var(--blue-600);
border-bottom: 1px solid var(--blue-600);
}
.breadcrumb .current-page {
color: var(--grey-500);
font-weight: var(--bold-weight);
}
.breadcrumb .delimiter {
width: 0.6rem;
height: 0.6rem;
position: relative;
display: inline-flex;
align-items: center;
justify-content: center;
}
.breadcrumb .delimiter::before {
content: "";
display: block;
width: 0.35rem;
height: 0.35rem;
border-right: 1px solid var(--grey-300);
border-bottom: 1px solid var(--grey-300);
transform: rotate(-45deg);
}
.breadcrumb a:focus-visible {
outline: 2px solid var(--blue-600);
outline-offset: 2px;
}
@media (max-width: 575px) {
.breadcrumb {
display: none;
}
} .modal-dialog {
width: 100%;
max-width: 800px;
}
.modal-content {
border: 0;
border-radius: 20px;
}
.modal-header {
border: 0;
}
.modal-body {
padding: 20px 40px;
}
.modal-footer {
border: 0;
}
.modal-header .btn-close {
}
.modal.fade .modal-dialog {
animation-name: slideInUp;
animation-duration: 0.75s;
animation-timing-function: ease-out;
} .wpcf7 form.wpcf7-form {
margin: 0 auto;
padding: 2rem 1.5rem;
background: var(--grey-200);
border-radius: 0.75rem;
color: var(--grey-500);
}
.wpcf7-form .row {
display: flex;
flex-wrap: wrap;
gap: 1rem;
margin: 0;
}
.wpcf7-form .col-md {
flex: 1 1 100%;
}
@media (min-width: 768px) {
.wpcf7-form .col-md {
flex: 1 1 calc(50% - 0.5rem);
}
}
.wpcf7-form .form-group {
margin-bottom: 1rem;
}
.wpcf7-form .wpcf7-list-item {
margin: 0;
}
.wpcf7-form label {
display: flex;
gap: 12px;
margin-bottom: 0.4rem;
font-size: var(--body1-font-size);
font-weight: var(--bold-weight);
color: var(--grey-500);
}
.wpcf7-form .form-control,
.wpcf7-form select,
.wpcf7-form textarea,
.wpcf7-form input[type="file"] {
width: 100%;
box-sizing: border-box;
font: inherit;
padding: 0.7rem 0.9rem;
border-radius: 0.6rem;
border: 1px solid #d1d5db;
background: var(--grey-100);
color: var(--grey-500);
transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}
.wpcf7-form ::placeholder {
color: var(--grey-400);
opacity: 1;
}
.wpcf7-form .form-control:hover,
.wpcf7-form select:hover,
.wpcf7-form textarea:hover,
.wpcf7-form input[type="file"]:hover {
border-color: #9ca3af;
background-color: var(--grey-100);
}
.wpcf7-form .form-control:focus,
.wpcf7-form .form-control:focus-visible,
.wpcf7-form select:focus,
.wpcf7-form select:focus-visible,
.wpcf7-form textarea:focus,
.wpcf7-form textarea:focus-visible,
.wpcf7-form input[type="file"]:focus,
.wpcf7-form input[type="file"]:focus-visible {
outline: 2px solid var(--blue-600);
outline-offset: 2px;
border-color: var(--blue-600);
box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}
.wpcf7-form textarea.form-control {
resize: vertical;
min-height: 140px;
}
.wpcf7-form .datepicker {
background-image: linear-gradient(to right, rgba(37, 99, 235, 0.05), rgba(37, 99, 235, 0.0));
}
.wpcf7-form input[type="file"].form-control {
padding: 0.45rem 0.9rem;
cursor: pointer;
}
.wpcf7-form input[type="file"].form-control::file-selector-button {
margin-right: 0.75rem;
padding: 0.45rem 0.9rem;
border-radius: 999px;
border: 1px solid var(--blue-600);
background-color: var(--blue-600);
color: var(--grey-100);
font-weight: var(--bold-weight);
font-size: var(--body2-font-size);
cursor: pointer;
transition: background-color 0.15s ease, border-color 0.15s ease, transform 0.08s ease;
}
.wpcf7-form input[type="file"].form-control::file-selector-button:hover {
background-color: var(--grey-500);
border-color: var(--grey-500);
transform: translateY(-1px);
}
.wpcf7-form small {
display: block;
font-size: var(--body2-font-size);
color: var(--grey-400);
}
.wpcf7-form .wpcf7-acceptance {
display: flex;
align-items: flex-start;
gap: 0.6rem;
font-size: var(--body2-font-size);
line-height: 1.4;
}
.wpcf7-form .wpcf7-acceptance input[type="checkbox"] {
width: 1.15rem;
height: 1.15rem;
margin-top: 0.1rem;
cursor: pointer;
}
.wpcf7-form input[type="submit"] {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 0.85rem 2.2rem;
border-radius: 999px;
border: none;
background: linear-gradient(135deg, var(--blue-600), var(--blue-600));
color: var(--grey-100);
font-weight: var(--bold-weight);
font-size: var(--body1-font-size);
letter-spacing: 0.02em;
text-transform: none;
cursor: pointer;
transition: transform 0.08s ease, box-shadow 0.15s ease, background-position 0.15s ease, filter 0.15s ease;
box-shadow: 0 10px 22px rgba(0, 0, 0, 0.3);
}
.wpcf7-form center {
display: block;
}
.wpcf7-form center input[type="submit"] {
margin: 0.5rem auto 0;
}
.wpcf7-form input[type="submit"]:hover {
background: linear-gradient(135deg, var(--grey-500), var(--grey-500));
filter: brightness(1.05);
transform: translateY(-1px);
box-shadow: 0 16px 30px rgba(0, 0, 0, 0.35);
}
.wpcf7-form input[type="submit"]:active {
transform: translateY(0);
box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}
.wpcf7-form input[type="submit"]:focus-visible {
outline: 2px solid var(--grey-500);
outline-offset: 3px;
}
.wpcf7-form a {
color: var(--blue-600);
border-bottom: 2px solid var(--blue-600);
}
.wpcf7-form a:hover {
border-bottom: 2px solid transparent;
}
.wpcf7-form .wpcf7-not-valid {
border-color: var(--red-600) !important;
}
.wpcf7-form .wpcf7-not-valid:focus,
.wpcf7-form .wpcf7-not-valid:focus-visible {
border-color: var(--red-600);
box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.18);
}
.wpcf7-form span.wpcf7-not-valid-tip {
font-size: var(--body2-font-size);
color: var(--red-600);
margin-top: 0.25rem;
display: block;
}
.wpcf7 form .wpcf7-response-output {
margin: 1.2rem 0 0;
padding: 0.9rem 1.1rem;
border-radius: 0.75rem;
font-size: var(--body1-font-size);
line-height: 1.4;
}
.wpcf7 form.sent .wpcf7-response-output {
border: 1px solid var(--green-600);
background-color: var(--green-600);
color: var(--grey-100);
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output {
border: 1px solid var(--red-600);
background-color: var(--red-600);
color: var(--grey-100);
}
@media (max-width: 480px) {
.wpcf7-form input[type="submit"] {
width: 100%;
}
.wpcf7-form .wpcf7-acceptance {
align-items: center;
}
} .contact-person {
display: grid;
align-items: flex-start;
justify-content: flex-start;
grid-template-columns: 1fr 1fr;
gap: 80px;
}
.contact-person-image {
order: 1;
}
.contact-person-image img {
vertical-align: bottom;
}
.contact-person-details {
order: 0;
}
.contact-person-title {
margin: 0 0 8px 0;
font-size: 24px;
font-weight: var(--bold-weight);
}
@media (max-width: 768px) {
.contact-person {
grid-template-columns: 1fr;
gap: 24px;
}
.contact-person-image {
order: 0;
}
.contact-person-details {
order: 1;
}
} .floating-buttons{
position: fixed;
right: var(--edge);
top: 50%;
transform: translateY(-50%);
display: flex;
flex-direction: column;
align-items: flex-end;
gap: var(--gap);
z-index: 9999;
pointer-events: none;
}
.floating-button{
pointer-events: auto;
position: relative;
width: var(--btn-size);
height: var(--btn-size);
border-radius: var(--border-radius-max);
display: inline-grid;
place-items: center;
text-decoration: none;
box-shadow: var(--shadow);
outline: none;
transition: transform 240ms cubic-bezier(.2,.8,.2,1), box-shadow 240ms, filter 240ms;
will-change: transform, filter;
color: var(--grey-600);
}
.floating-button::after{
content:"";
position:absolute; inset:0;
border-radius: inherit;
pointer-events:none;
background:
radial-gradient(120% 120% at 30% 20%, rgba(255,255,255,.18) 0, transparent 60%),
radial-gradient(120% 120% at 80% 80%, rgba(255,255,255,.10) 0, transparent 60%);
transition: opacity 240ms;
opacity:1;
mix-blend-mode: screen;
}
.floating-button.booking{
background: var(--red-600);
}
.floating-button.phone{
background: var(--red-600);
}
.floating-button.contact{
background: var(--red-600);
}
@media (hover:hover){
.floating-button:hover{ transform: translateX(-2px) scale(1.04); box-shadow: 0 12px 30px rgba(0,0,0,.25); }
.floating-button:hover .floating-button-label{ transform: translateX(0); opacity:1; }
}
.floating-button:focus-visible{
box-shadow: var(--shadow), var(--ring);
transform: translateX(-2px) scale(1.03);
}
.floating-button:focus-visible .floating-button-label{ transform: translateX(0); opacity:1; }
.floating-button .icon{
width: 50%;
height: 50%;
display: block;
background-color: var(--grey-100);
background-repeat: no-repeat;
background-position: center;
background-size: contain;
}
.floating-button .icon.phone{
background-image: url(//karriere.conceptaplan.de/wp-content/themes/ccp/assets/images/icons/phone.svg);
-webkit-mask: url(//karriere.conceptaplan.de/wp-content/themes/ccp/assets/images/icons/phone.svg) no-repeat center / contain;
mask: url(//karriere.conceptaplan.de/wp-content/themes/ccp/assets/images/icons/phone.svg) no-repeat center / contain;
background-image: none;
}
.floating-button .icon.contact{
background-image: url(//karriere.conceptaplan.de/wp-content/themes/ccp/assets/images/icons/email.svg);
-webkit-mask: url(//karriere.conceptaplan.de/wp-content/themes/ccp/assets/images/icons/email.svg) no-repeat center / contain;
mask: url(//karriere.conceptaplan.de/wp-content/themes/ccp/assets/images/icons/email.svg) no-repeat center / contain;
background-image: none;
}
.floating-button .icon.booking{
background-image: url(//karriere.conceptaplan.de/wp-content/themes/ccp/assets/images/icons/work.svg);
-webkit-mask: url(//karriere.conceptaplan.de/wp-content/themes/ccp/assets/images/icons/work.svg) no-repeat center / contain;
mask: url(//karriere.conceptaplan.de/wp-content/themes/ccp/assets/images/icons/work.svg) no-repeat center / contain;
background-image: none;
}
.floating-button .floating-button-label{
position: absolute;
right: calc(100% + 10px);
white-space: nowrap;
padding: 10px 14px;
border-radius: var(--border-radius-min);
background: var(--grey-500);
font-size: var(--body4-font-size);
font-weight: var(--bold-weight);
color: var(--grey-100);
border: 1px solid var(--grey-500);
transform: translateX(8px);
transition: transform 240ms cubic-bezier(.2,.8,.2,1), opacity 240ms;
pointer-events: none;
opacity: 0;
}
.floating-button .floating-button-label::after{
content:"";
position:absolute;
left: 100%;
top: 50%;
transform: translateY(-50%);
border: 8px solid transparent;
border-left-color: var(--grey-500);
}
@media (hover:none), (pointer:coarse){
:root{ --btn-size: 48px; --edge: 14px; }
}
@media (max-width: 768px) {
.floating-button .floating-button-label{
display: none;
}
}
@media (max-width: 575px){
.floating-buttons{
top: auto;
bottom: 10px;
transform: none;
right: 20px;
gap: 12px;
flex-direction: row;
}
}
@media (prefers-reduced-motion: reduce){
.floating-button, .floating-button::after, .floating-button .floating-button-label{
transition: none !important;
}
} .visually-hidden {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
border: 0;
overflow: hidden;
clip: rect(0, 0, 0, 0);
clip-path: inset(50%);
white-space: nowrap;
}
.access-btn {
position: fixed;
bottom: 20px;
left: 20px;
display: flex;
align-items: center;
justify-content: center;
width: 64px;
height: 64px;
padding: 0;
border-radius: 50%;
background: linear-gradient(180deg, var(--grey-500) 0%, color-mix(in oklab, var(--grey-500) 85%, var(--grey-500)) 100%);
color: var(--grey-100);
box-shadow: var(--shadow);
outline: none;
transition: transform 240ms cubic-bezier(.2,.8,.2,1), box-shadow 240ms, filter 240ms;
will-change: transform, filter;
z-index: 1000;
}
.access-btn::before {
content: "";
position: absolute;
inset: 0;
border-radius: inherit;
pointer-events: none;
background: radial-gradient(120% 120% at 30% 20%, rgba(255, 255, 255, .18) 0, transparent 60%), radial-gradient(120% 120% at 80% 80%, rgba(255, 255, 255, .10) 0, transparent 60%);
transition: opacity 240ms;
opacity: 1;
mix-blend-mode: screen;
}
.access-btn:hover,
.access-btn:focus {
transform: translateX(-2px) scale(1.04);
box-shadow: 0 12px 30px rgba(0,0,0,.45);
outline: none;
}
.access-btn::after {
content: attr(data-tooltip);
position: absolute;
bottom: 100%;
left: 0;
transform: translateY(-8px);
background: var(--grey-500);
color: var(--grey-100);
padding: 0.4em 0.6em;
border-radius: 0.25em;
white-space: nowrap;
font-size: var(--body4-font-size);
opacity: 0;
pointer-events: none;
transition: opacity 200ms ease-in-out;
z-index: 10;
}
.access-btn:hover::after,
.access-btn:focus::after {
opacity: 1;
}
.access-btn.tooltip-hidden::after {
opacity: 0 !important;
visibility: hidden !important;
}
.access-btn:focus-visible{
box-shadow: var(--shadow), var(--ring);
transform: translateX(-2px) scale(1.03);
}
.access-btn i {
font-size: 32px;
}
@media (max-width: 575px) {
.access-btn {
width: 48px;
height: 48px;
bottom: 10px;
}
}
@supports not (color-mix(in oklab, black 50%, white 50%)){
.access-btn { background: linear-gradient(180deg, var(--grey-500) 0%, var(--grey-500) 100%); }
} .pb-0 { padding-bottom: 0 !important; }
.pb-1 { padding-bottom: 1rem !important; }
.pb-2 { padding-bottom: 2rem !important; }
.pb-3 { padding-bottom: 4rem !important; }
.pb-4 { padding-bottom: 6rem !important; }
.pb-5 { padding-bottom: 8rem !important; }
.pt-0 { padding-top: 0 !important; }
.pt-1 { padding-top: 1rem !important; }
.pt-2 { padding-top: 2rem !important; }
.pt-3 { padding-top: 4rem !important; }
.pt-4 { padding-top: 6rem !important; }
.pt-5 { padding-top: 8rem !important; }
@media (min-width:576px) {
.pb-sm-0 { padding-bottom: 0 !important; }
.pb-sm-1 { padding-bottom: 1rem !important; }
.pb-sm-2 { padding-bottom: 2rem !important; }
.pb-sm-3 { padding-bottom: 4rem !important; }
.pb-sm-4 { padding-bottom: 6rem !important; }
.pb-sm-5 { padding-bottom: 8rem !important; }
.pt-sm-0 { padding-top: 0 !important; }
.pt-sm-1 { padding-top: 1rem !important; }
.pt-sm-2 { padding-top: 2rem !important; }
.pt-sm-3 { padding-top: 4rem !important; }
.pt-sm-4 { padding-top: 6rem !important; }
.pt-sm-5 { padding-top: 8rem !important; }
}
@media (min-width:768px) {
.pb-md-0 { padding-bottom: 0 !important; }
.pb-md-1 { padding-bottom: 1rem !important; }
.pb-md-2 { padding-bottom: 2rem !important; }
.pb-md-3 { padding-bottom: 4rem !important; }
.pb-md-4 { padding-bottom: 6rem !important; }
.pb-md-5 { padding-bottom: 8rem !important; }
.pt-md-0 { padding-top: 0 !important; }
.pt-md-1 { padding-top: 1rem !important; }
.pt-md-2 { padding-top: 2rem !important; }
.pt-md-3 { padding-top: 4rem !important; }
.pt-md-4 { padding-top: 6rem !important; }
.pt-md-5 { padding-top: 8rem !important; }
}
@media (min-width:992px) {
.pb-lg-0 { padding-bottom: 0 !important; }
.pb-lg-1 { padding-bottom: 1rem !important; }
.pb-lg-2 { padding-bottom: 2rem !important; }
.pb-lg-3 { padding-bottom: 4rem !important; }
.pb-lg-4 { padding-bottom: 6rem !important; }
.pb-lg-5 { padding-bottom: 8rem !important; }
.pt-lg-0 { padding-top: 0 !important; }
.pt-lg-1 { padding-top: 1rem !important; }
.pt-lg-2 { padding-top: 2rem !important; }
.pt-lg-3 { padding-top: 4rem !important; }
.pt-lg-4 { padding-top: 6rem !important; }
.pt-lg-5 { padding-top: 8rem !important; }
}
@media (min-width:1200px) {
.pb-xl-0 { padding-bottom: 0 !important; }
.pb-xl-1 { padding-bottom: 1rem !important; }
.pb-xl-2 { padding-bottom: 2rem !important; }
.pb-xl-3 { padding-bottom: 4rem !important; }
.pb-xl-4 { padding-bottom: 6rem !important; }
.pb-xl-5 { padding-bottom: 8rem !important; }
.pt-xl-0 { padding-top: 0 !important; }
.pt-xl-1 { padding-top: 1rem !important; }
.pt-xl-2 { padding-top: 2rem !important; }
.pt-xl-3 { padding-top: 4rem !important; }
.pt-xl-4 { padding-top: 6rem !important; }
.pt-xl-5 { padding-top: 8rem !important; }
} .mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 1rem !important; }
.mb-2 { margin-bottom: 2rem !important; }
.mb-3 { margin-bottom: 4rem !important; }
.mb-4 { margin-bottom: 6rem !important; }
.mb-5 { margin-bottom: 8rem !important; }
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 1rem !important; }
.mt-2 { margin-top: 2rem !important; }
.mt-3 { margin-top: 4rem !important; }
.mt-4 { margin-top: 6rem !important; }
.mt-5 { margin-top: 8rem !important; }
@media (min-width:576px) {
.mb-sm-0 { margin-bottom: 0 !important; }
.mb-sm-1 { margin-bottom: 1rem !important; }
.mb-sm-2 { margin-bottom: 2rem !important; }
.mb-sm-3 { margin-bottom: 4rem !important; }
.mb-sm-4 { margin-bottom: 6rem !important; }
.mb-sm-5 { margin-bottom: 8rem !important; }
.mt-sm-0 { margin-top: 0 !important; }
.mt-sm-1 { margin-top: 1rem !important; }
.mt-sm-2 { margin-top: 2rem !important; }
.mt-sm-3 { margin-top: 4rem !important; }
.mt-sm-4 { margin-top: 6rem !important; }
.mt-sm-5 { margin-top: 8rem !important; }
}
@media (min-width:768px) {
.mb-md-0 { margin-bottom: 0 !important; }
.mb-md-1 { margin-bottom: 1rem !important; }
.mb-md-2 { margin-bottom: 2rem !important; }
.mb-md-3 { margin-bottom: 4rem !important; }
.mb-md-4 { margin-bottom: 6rem !important; }
.mb-md-5 { margin-bottom: 8rem !important; }
.mt-md-0 { margin-top: 0 !important; }
.mt-md-1 { margin-top: 1rem !important; }
.mt-md-2 { margin-top: 2rem !important; }
.mt-md-3 { margin-top: 4rem !important; }
.mt-md-4 { margin-top: 6rem !important; }
.mt-md-5 { margin-top: 8rem !important; }
}
@media (min-width:992px) {
.mb-lg-0 { margin-bottom: 0 !important; }
.mb-lg-1 { margin-bottom: 1rem !important; }
.mb-lg-2 { margin-bottom: 2rem !important; }
.mb-lg-3 { margin-bottom: 4rem !important; }
.mb-lg-4 { margin-bottom: 6rem !important; }
.mb-lg-5 { margin-bottom: 8rem !important; }
.mt-lg-0 { margin-top: 0 !important; }
.mt-lg-1 { margin-top: 1rem !important; }
.mt-lg-2 { margin-top: 2rem !important; }
.mt-lg-3 { margin-top: 4rem !important; }
.mt-lg-4 { margin-top: 6rem !important; }
.mt-lg-5 { margin-top: 8rem !important; }
}
@media (min-width:1200px) {
.mb-xl-0 { margin-bottom: 0 !important; }
.mb-xl-1 { margin-bottom: 1rem !important; }
.mb-xl-2 { margin-bottom: 2rem !important; }
.mb-xl-3 { margin-bottom: 4rem !important; }
.mb-xl-4 { margin-bottom: 6rem !important; }
.mb-xl-5 { margin-bottom: 8rem !important; }
.mt-xl-0 { margin-top: 0 !important; }
.mt-xl-1 { margin-top: 1rem !important; }
.mt-xl-2 { margin-top: 2rem !important; }
.mt-xl-3 { margin-top: 4rem !important; }
.mt-xl-4 { margin-top: 6rem !important; }
.mt-xl-5 { margin-top: 8rem !important; }
}
@keyframes fadeInDown {
from {
opacity: 0;
transform: translateY(-50px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(50px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes slideInUp {
from {
opacity: 0;
transform: translateY(100%);
}
to {
opacity: 1;
transform: translateY(0);
}
} @media screen and (max-width:1200px) {
}
@media screen and (max-width:992px) {
}
@media screen and (max-width:768px) {
}
@media screen and (max-width:575px) {
}