@font-face {
    font-family: lato;
    src: url('fonts/lato-v22-latin-ext_latin-regular.woff2') format('woff');
}

@font-face {
    font-family: lato_black;
    src: url('fonts/lato-v22-latin-ext_latin-700.woff2') format('woff');
}

@font-face {
    font-family: lato_light;
    src: url('fonts/lato-v22-latin-ext_latin-300.woff2') format('woff');
}

@font-face {
    font-family: poppins;
    src: url('fonts/poppins_bold.otf') format('opentype');
}

:root {
    --color-theme1: #e2007a;
    --color-theme1-dark: #af015f;
    --color-theme1-darker: #880049;
    --color-theme2: #f4eee2;
    --color-theme2-dark: #c3b8a3;
    --color-theme2-darker: #9a8c72;
    --color-theme3: #f2e0d9;
    --color-theme3-dark: #c6aca2;
    --color-theme3-darker: #9a7c71;
    --color-theme4: #f0ede4;
    --color-theme4-dark: #ccc6b3;
    --color-theme4-darker: #a19981;
    --color-theme5: #f5b2c7;
    --color-theme5-dark: #ca849a;
    --color-theme5-darker: #a15c71;
    --color-theme6: #659763;
    --color-theme6-dark: #426e40;
    --color-theme6-darker: #264924;
    --color-theme7: #f2d9e8;
    --color-theme7-dark: #c5a1b7;
    --color-theme7-darker: #9a718a;
    --color-theme8: #d9edf2;
    --color-theme8-dark: #a3c1c8;
    --color-theme8-darker: #72959e;
    --color-theme9: #def2d9;
    --color-theme9-dark: #9ebd96;
    --color-theme9-darker: #719368;
    --color-theme10: #f7f4ed;
    --color-theme11: #C69A42;
    --color-black: #000000;
    --color-black-transparent: rgba(0, 0, 0, 0.1);
    --color-overlay: rgba(0, 0, 0, 0.7);
    --color-white: #ffffff;
    --color-light-gray: #f0f0ee;
    --color-very-light-gray: #f7f7f7;
    --color-gray: #aaaaaa;
    --color-dark-gray: #666666;
    --color-very-dark-gray: #3c3c3b;
    --color-warning: #cc4400;
    --color-good: #44aa44;
    --max-width: 76rem;
    --height-md: 18rem;
    --height-xl: 32rem;
    --br-xs: 0.25rem;
    --br-sm: 0.5rem;
    --br-md: 1rem;
    --br-lg: 1.5rem;
    --s-xs: 0.25rem;
    --s-sm: 0.5rem;
    --s-md: 1rem;
    --s-md2: 1.4rem;
    --s-lg: 2rem;
    --s-xl: 4rem;
    --s-xxl: 8rem;
    --f-xs: 0.8rem;
    --f-sm: 0.9rem;
    --f-md: 1rem;
    --f-lg: 1.1rem;
    --f-xl: 1.5rem;
    --f-xxl: 1.8rem;
    --f-xxxl: 2.5rem;
    --f-xxxxl: 3.5rem;
    --lh-md: 1.4;
    --lh-lg: 1.5;
    --lh-xl: 1.6;
    --lh-xxl: 1.8;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    line-height: 1;
    font-family: inherit;
}

html {
    /*font-family: 'DejaVu Sans Light', system-ui;*/
    font-family: lato, system-ui, sans-serif;
    background: var(--color-white);
    color: var(--color-black);
}

body {
    display: flex;
    flex-direction: column;
    max-width: 1920px;
    margin: 0 auto;
    border-left: 1px solid var(--color-black-transparent);
    border-right: 1px solid var(--color-black-transparent);
}

html,
body {
    min-height: 100%;
}

h1 {
    font-size: 1em;
}

h2 {
    font-size: var(--f-xxxl);
    line-height: var(--lh-md);
    margin-bottom: var(--s-md);
}

h3 {
    line-height: var(--lh-md);
    margin-bottom: var(--s-sm);
    font-size: var(--f-xxxl);
    font-family: lato_black, system-ui;
    font-weight: normal;
}

h4 {
    font-family: lato_black, system-ui;
    font-weight: bold;
    font-size: var(--f-lg);
    line-height: var(--lh-md);
    margin-bottom: var(--s-sm);
}

a {
    color: inherit;
}

a.internal-link {
    text-decoration: none;
}

a.internal-link:after {
    content: '';
    display: inline-block;
    width: var(--f-sm);
    height: var(--f-sm);
    margin: -0.2em 0 -0.2em 0.5em;
    background: url('button_next.svg') no-repeat 50% 50%;
    background-size: contain;
    font-size: var(--f-sm);
}

p {
    line-height: var(--lh-xxl);
    margin-bottom: var(--s-md);
}

label {
    display: block;
    line-height: var(--lh-xl);
    margin-bottom: var(--s-md);
    font-style: italic;
}

label > * {
    display: block;
    font-style: normal;
}

small {
    font-size: var(--f-sm);
}

button,
.button {
    font-size: var(--f-sm);
    padding: var(--s-md) var(--s-md2);
    border: none;
    border-radius: var(--br-lg);
    background: var(--color-black);
    color: var(--color-white);
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    display: inline-block;
}

button:hover,
.button:hover {
    background: var(--color-very-dark-gray);
}

button.neutral,
.button.neutral {
    border: 1px solid var(--color-gray);
    background: none;
    color: var(--color-black);
}

button.gray,
.button.gray {
    background: var(--color-light-gray);
    color: var(--color-black);
}

button.prev,
button.next {
    display: inline-block;
    border: none;
    padding: 0;
    width: 1.5em;
    height: 1.5em;
    margin: calc(var(--s-xs) * -1) var(--s-sm) calc(var(--s-xs) * -1) 0;
    background: url('button_next.svg') no-repeat 50%;
    background-size: contain;
}

button.prev.filled,
button.next.filled {
    background: var(--color-white) url('button_next.svg') no-repeat 50%;
    border: 0.4em solid var(--color-white);
    width: 2em;
    height: 2em;
    background-size: contain;
}

button.prev {
    transform: rotate(180deg);
}

button.tiny,
.button.tiny {
    font-size: var(--f-xs);
    padding: var(--s-sm);
}

button.text,
.button.text {
    padding: 0;
    background: none;
    color: inherit;
}

textarea,
select,
input[type=email],
input[type=file],
input[type=date],
input[type=text] {
    font-size: var(--f-sm);
    padding: var(--s-md) var(--s-lg);
    border: none;
    border-radius: var(--br-lg);
    color: var(--color-black);
    background: var(--color-light-gray);
    display: block;
    width: 100%;
}

textarea:required:invalid,
select:required:invalid,
input[type=email]:required:invalid,
input[type=file]:required:invalid,
input[type=date]:required:invalid,
input[type=text]:required:invalid {
    border-bottom: 1px solid var(--color-warning);
}

textarea:required:valid,
select:required:valid,
input[type=email]:required:valid,
input[type=file]:required:valid,
input[type=date]:required:valid,
input[type=text]:required:valid {
    border-bottom: 1px solid var(--color-good);
}

textarea {
    height: 6rem;
}

input[type=text].search {
    padding-left: 3em;
    background: var(--color-white) url('search_icon.svg') no-repeat left top;
    background-size: contain;
}

input[type=checkbox],
input[type=radio] {
    display: inline-block;
    width: 1.6em;
    height: 1.6em;
    appearance: none;
    border: none;
    background: var(--color-light-gray);
    margin: -0.3em 0.5em -0.3em;
}

input[type=checkbox]:checked:after,
input[type=radio]:checked:after {
    content: '';
    width: 1em;
    height: 1em;
    margin: 0.3em 0 0 0.3em;
    background: var(--color-black);
    display: block;
}

textarea:disabled,
select:disabled,
input:disabled,
button:disabled {
    opacity: 0.25;
    cursor: not-allowed;
}

ul,
ol {
    margin-left: 1rem;
}

li {
    line-height: var(--lh-xl);
}

ul.plus {
    list-style: none;
}

ul.plus li {
    padding-left: var(--s-lg);
    position: relative;
    margin-bottom: var(--s-lg);
}

ul.plus li:before {
    content: '+';
    position: absolute;
    display: flex;
    margin-top: 0;
    margin-left: calc(var(--s-lg) * -1.4);
    color: var(--color-white);
    font-family: lato_black, system-ui;
    font-weight: bold;
    font-size: calc(var(--s-lg) * 0.6);
    width: var(--s-lg);
    height: var(--s-lg);
    justify-content: center;
    align-items: center;
    background: var(--color-theme6);
    border-radius: 100%;
}

#top {
    border-top: 4px solid var(--color-theme1);
    border-bottom: 1px solid var(--color-black-transparent);
}

#top.no-border {
    border-bottom: none;
}

#top .max-width {
    padding: var(--s-lg);
    display: flex;
    align-items: center;
}

#top .max-width a {
    flex-grow: 1;
}

#logo {
    display: inline-block;
    height: 1.2rem;
}

#menuToggle,
#menuToggleLabel {
    display: none;
}

#mainMenu {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s-lg);
    justify-content: right;
    align-items: center;
}

#mainMenu a {
    text-decoration: none;
    color: inherit;
    font-family: inherit;
}

#mainMenu a.selected {
    color: var(--color-theme1);
}

#content {
    flex-grow: 1;
}

#homeSearchBox {
    background: var(--color-theme2);
    width: 100%;
    margin-bottom: calc(16rem + var(--s-xl));
}

#homeSearchBox .max-width {
    padding: var(--s-xxl) var(--s-lg);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
}

#homeSearchBox form {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s-md);
    justify-content: center;
}

#homeSearchBox form .search {
    flex-grow: 1;
    width: 100%;
    max-width: 40rem;
}

#homeSearchBox #categories {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: var(--s-xl);
    padding: 0 var(--s-lg);
}

#homeSearchBox .max-width > h2 {
    font-family: poppins, system-ui;
    color: var(--color-black);
    padding: var(--s-lg);
    text-align: center;
    display: none;
    line-height: var(--lh-xl);
    max-width: 30rem;
    margin: 0 auto;
}

#homeSearchBox #call2action {
    height: 32rem;
    display: flex;
    flex-direction: column;
    gap: var(--s-md);
    padding: var(--s-lg);
    justify-content: flex-end;
    align-items: flex-start;
    background: 50% no-repeat;
    background-size: cover;
    margin-bottom: calc(-16rem - var(--s-xxl));
}

#homeSearchBox #call2action h2 {
    font-family: poppins, system-ui;
    max-width: 30rem;
    color: var(--color-white);
    text-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.2), 0 0 1rem rgba(0, 0, 0, 0.2), 0 0 2rem rgba(0, 0, 0, 0.2);
}

#highlightedVacancies .max-width {
    padding: 0 var(--s-lg) var(--s-xxl) var(--s-lg);
}

#highlightedVacancies h3 {
    font-size: var(--f-xl);
    font-weight: normal;
}

#vacanciesTop,
#vacancyTop {
    background: var(--color-theme10);
}

#vacanciesTop .max-width {
    padding: var(--s-xxl) var(--s-lg);
    text-align: center;
}

#defaultPageTop {
    margin-bottom: var(--s-xxl);
}

#vacancyTop {
    margin-bottom: var(--s-xl);
}

#vacancyTop .max-width,
#defaultPageTop .max-width {
    padding: var(--s-xxl) var(--s-lg) 0 var(--s-lg);
    text-align: center;
    position: relative;
}

#vacanciesTop .max-width h2,
#vacancyTop .max-width h2,
#defaultPageTop .max-width h2 {
    font-size: var(--f-xxl);
    font-weight: normal;
}

#vacanciesTop h3,
#vacancyTop h3,
#defaultPageTop h3 {
    font-family: lato_black, system-ui;
    font-weight: bold;
}

#vacancyTop #vacancySpecifications {
    display: flex;
    justify-content: center;
    font-size: var(--f-sm);
    margin-top: var(--s-xxl);
    position: absolute;
    left: 0;
    right: 0;
    padding: var(--s-xl);
}

#specsApplyButton {
    display: none;
}

#vacancyTop #vacancySpecifications #specs {
    background: var(--color-theme10);
    display: flex;
    padding: var(--s-md) var(--s-md2);
    gap: var(--s-lg);
    border-radius: var(--s-lg);
}

#vacancyTop #mainImage {
    margin-top: var(--s-xxl);
    height: 32rem;
    width: 100%;
    background: var(--color-theme2) no-repeat;
    background-size: cover;
    padding: var(--s-xl);
    border-radius: var(--s-lg) var(--s-lg) 0 0;
}

#vacancyDescription {
    max-width: 48rem;
    margin: 0 auto;
    padding: 0 var(--s-xl) var(--s-md) var(--s-xl);
    text-align: center;
}

#vacancy #call2action {
    display: flex;
    gap: var(--s-lg);
    justify-content: center;
    margin-bottom: var(--s-xxl);
}

#vacancy #call2action button {
    border-radius: 0;
    padding: var(--s-md) var(--s-xl);
}

#yourColleagues .max-width {
    padding: 0 var(--s-lg) var(--s-xxl) var(--s-lg);
}

#yourColleagues h3 {
    margin-bottom: var(--s-lg);
}

#yourColleagues p {
    max-width: calc((var(--max-width) - 2 * var(--s-lg)) * 0.5);
}

#yourColleagues #colleagues {
    display: flex;
    gap: var(--s-xl);
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-end;
}

#yourColleagues #colleagues .colleague {
    flex-basis: 18rem;
    flex-grow: 1;
    flex-shrink: 1;
}

#yourColleagues #colleagues .colleague img {
    width: var(--s-xl);
    height: var(--s-xl);
    border-radius: 100%;
    object-fit: cover;
    margin-bottom: var(--s-md);
}

#yourColleagues #colleagues .colleague blockquote {
    line-height: var(--lh-lg);
    margin-bottom: var(--s-md);
}

#yourColleagues #colleagues .colleague blockquote:before,
#yourColleagues #colleagues .colleague blockquote:after {
    content: '"';
}

#yourAvailability {
    background: var(--color-theme2);
}

#filters {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    padding: var(--s-xl);
    background: var(--color-white);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: var(--s-md) m;
    transform: translateX(100%);
    transition: 0.3s transform;
    z-index: 10;
    overflow: auto;
}

#filters #closeFilters {
    position: absolute;
    right: 0;
    top: var(--s-md);
    border-radius: 0;
    background: none;
    color: inherit;
}

#filters h3 {
    margin-bottom: var(--s-xl);
}

#filters h4,
#filters .filter {
    margin-bottom: var(--s-md);
}

#filters label {
    margin-bottom: var(--s-md);
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

#filters label.unavailable {
    opacity: 0.5;
}

#filters label .count {
    font-size: var(--f-xs);
    color: var(--color-dark-gray);
}

#filters.visible {
    transform: translateX(0);
}

#filters #filterSubmit {
    padding: var(--s-lg);
    border-top: 1px solid var(--color-black-transparent);
    text-align: center;
}

#filterButtons .max-width {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: var(--s-md);
    max-width: var(--max-width);
    padding: var(--s-lg);
}

#filters h4 .count,
#filterButtons button .count {
    display: inline-block;
    position: relative;
    border-radius: 100%;
    font-size: 0.6rem;
    padding-top: calc((1.4rem - 0.6rem) / 2);
    margin-top: calc((1.4rem - 0.6rem) / -2);
    margin-bottom: calc((1.4rem - 0.6rem) / -2);
    /*vertical-align: center;*/
    text-align: center;
    width: 1.4rem;
    height: 1.4rem;
    top: -0.1rem;
    background: var(--color-white);
}

#filterButtons #openFiltersButton {
    display: none;
}

#filters h4 .count {
    background: var(--color-gray);
}

#filters .filter.selected h4 {
    color: var(--color-theme1);
}

#vacancyList .max-width {
    padding: 0 var(--s-lg) var(--s-lg) var(--s-lg);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#contactPerson {
    background: var(--color-theme10);
    padding: var(--s-xl);
}

#contactPersonCall2Action {
    padding: var(--s-md) 0;
    display: flex;
    gap: var(--s-md);
}

#faq {
    max-width: var(--max-width);
    margin: 0 auto;
    margin-bottom: var(--s-xxl);
    display: flex;
    gap: var(--s-lg);
    padding: 0 var(--s-lg);
}

#faq #faqList {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: var(--s-lg);
}

#faq .faq {
    border: 1px solid var(--color-black-transparent);
    display: flex;
    justify-content: space-between;
    gap: var(--s-md);
    padding: var(--s-lg);
    transition: border 0.5s;
    align-items: flex-start;
}

#faq .faq h4 {
    cursor: pointer;
}

#faq .faq .answer {
    overflow: hidden;
    transition: height 0.5s, opacity 0.5s;
    opacity: 0;
}

#faq .faq.open {
    border: 1px solid var(--color-black);
}

#faq .faq.open .answer {
    opacity: 1;
}

#faq .show-answer-toggle {
    padding: 0;
    width: calc(var(--s-lg) * 1.2);
    height: calc(var(--s-lg) * 1.2);
    display: flex;
    justify-content: center;
    align-items: center;
}

#faq .show-answer-toggle:after {
    content: '';
    display: block;
    width: var(--s-sm);
    height: var(--s-sm);
    border-left: 2px solid var(--color-white);
    border-bottom: 2px solid var(--color-white);
    transform: rotate(-45deg);
    transition: transform 0.5s;
}

#faq .faq.open .show-answer-toggle:after {
    transform: rotate(135deg);
}

#footer {
    background: var(--color-theme5);
    font-size: var(--f-sm);
}

#footer .max-width {
    display: flex;
    justify-content: space-between;
    gap: var(--s-xxl);
}

#footer nav {
    padding: var(--s-xxl) var(--s-lg);
    display: flex;
    flex-direction: column;
    gap: var(--s-md);
}

#footer nav a {
    text-decoration: none;
    color: inherit;
    font-family: inherit;
    font-weight: bold;
}

#footer nav a.selected {
    font-weight: bold;
}

#vacancyNotificationFormContainer {
    padding: var(--s-xxl) var(--s-lg);
}

#vacancyNotificationFormContainer form div {
    display: flex;
    gap: var(--s-lg);
    justify-content: stretch;
}

#vacancyNotificationFormContainer form div label {
    width: 100%;
}

#vacancyNotificationFormContainer form div label input {
    background: none;
    border-radius: 0;
    border-bottom: 1px solid var(--color-black);
    padding: var(--s-md);
}

#vacancyNotificationFormContainer form div label input:placeholder {
    font-weight: bold;
    color:  var(--color-black);
    opacity: 0;
}

#applyBot {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: var(--color-overlay);
    z-index: 30;
}

#applyBotApp {
    background: var(--color-white);
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
}

#closeApplyBotContainerMobile {
    position: absolute;
    left: var(--s-lg);
    top: var(--s-lg);
    display: none;
}

#closeApplyBotMobile {
    display: flex;
    width: var(--s-md2);
    height: var(--s-md2);
    justify-content: center;
    align-items: center;
    font-size: var(--f-xl);
    z-index: 1;
    margin: 0;
}

#applyBotApp #babyparkLogo {
    height: 1.2rem;
}

#applyBotAppMenu {
    background: var(--color-very-light-gray);
    padding: var(--s-lg);
    display: flex;
    gap: var(--s-lg);
    flex-direction: column;
    align-items: flex-start;
    width: 26rem;
    overflow: auto;
}

#applyBotAppQuestionMenu {
    display: flex;
    flex-direction: column;
    width: 100%;
}

#applyBotAppQuestionMenu .part {
    padding: var(--s-md);
    opacity: 0.5;
    cursor: pointer;
    display: flex;
    gap: var(--s-lg);
    justify-content: space-between;
    align-items: center;
}

#applyBotAppQuestionMenu .part.done {
    color: var(--color-theme6);
    font-weight: bold;
    opacity: 1;
}

#applyBotAppQuestionMenu .part.selected {
    background: var(--color-light-gray);
    border-radius: var(--br-sm);
    font-weight: bold;
    color: var(--color-black);
    opacity: 1;
}

#applyBotAppQuestionMenu .part a {
    text-decoration: none;
    font-size: var(--f-xs);
    color: var(--color-black);
}

#applyVacancyInfo {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: var(--s-lg);
    width: 100%;
}

#applyVacancyVacancy,
#applyVacancyContact {
    border-radius: var(--s-sm);
    padding: var(--s-lg);
}

#applyVacancyVacancy h2 {
    font-size: var(--f-sm);
}

#applyVacancyVacancy h3 {
    font-size: var(--f-xl);
    padding-bottom: var(--s-md);
}

#applyVacancySpecs {
    display: flex;
    flex-direction: column;
    gap: var(--s-md);
    justify-content: flex-start;
    margin-left: -0.25rem;
    margin-bottom: var(--s-lg);
}

#applyVacancyImage {
    padding-bottom: 56%;
    background: 50% no-repeat;
    background-size: cover;
    border-radius: var(--s-sm);
    margin-bottom: calc(var(--s-lg) * -1);
}

#applyVacancyContact {
    background: var(--color-theme8);
}

#applyVacancyContact h3 {
    font-size: var(--f-xl);
}

#applyBotAppChat {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: var(--s-lg);
    max-width: 60rem;
    overflow: hidden;
}

#applyBotAppChatView {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: var(--s-md);
    overflow: auto;
    padding: var(--s-lg);
}

#applyBotAppChatView .chatter {
    padding: var(--s-md);
    border-radius: 0.5rem;
    background: var(--color-light-gray) url('chatter.svg') 50% no-repeat;
    background-size: contain;
    line-height: var(--lh-lg);
    align-self: flex-start;
}

#applyBotAppChatView .question,
#applyBotAppChatView .result {
    padding: var(--s-md);
    border-radius: var(--br-sm);
    background: var(--color-light-gray);
    line-height: var(--lh-lg);
    align-self: flex-start;
    max-width: 22rem;
}

#applyBotAppChatView .result {
    background: var(--color-theme9);
}

#applyBotAppChatView .question.last {
    display: none;
}

#applyBotAppChatView .answer {
    padding: var(--s-md);
    padding-right: var(--s-xl);
    border-radius: var(--br-sm);
    background: var(--color-black);
    color: var(--color-white);
    line-height: var(--lh-lg);
    align-self: flex-end;
    position: relative;
    max-width: 22rem;
}

#applyBotAppChatView .answer .edit-button {
    position: absolute;
    right: 0.4em;
    top: 0.4em;
    padding: var(--s-md) var(--s-sm);
    background: none;
    border-radius: 0;
    color: inherit;
}

#applyBotAppChatInput {
    padding: var(--s-lg);
    display: flex;
    gap: var(--s-lg);
}

#applyBotAppChatInputField {
    flex-grow: 1;
    display: flex;
    flex-wrap: wrap;
    gap: var(--s-md);
}

#applyBotAppChatInputField textarea,
#applyBotAppChatInputField select,
#applyBotAppChatInputField input:not([type=radio]) {
    width: 100%;
    max-width: 100%;
}

#applyBotAppChatInputField textarea {
    height: 10rem;
}

.contact-me {
    position: fixed;
    left: var(--s-lg);
    right: var(--s-lg);
    top: var(--s-lg);
    padding: var(--s-lg);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform .5s, opacity .2s;
    opacity: 0;
}

.contact-me.visible {
    transform: translateY(0);
    opacity: 1;
}

.contact-me > * {
    padding: var(--s-lg);
    background: var(--color-white);
    border-radius: var(--br-sm);
    box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.2), 0 0 1rem rgba(0, 0, 0, 0.2), 0 0 4rem rgba(0, 0, 0, 0.2);
}

.contact-me .success {
    display: none;
    color: var(--color-good);
}

.max-width {
    max-width: var(--max-width);
    margin: 0 auto;
}

.panel-list {
    margin-bottom: var(--s-xxl);
}

.panel-list h3 {
    text-align: center;
    margin-bottom: var(--s-lg);
}

.panel-list-items {
    display: flex;
    gap: var(--s-lg);
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.panel-list-items .panel-list-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: var(--s-lg);
    border-radius: var(--br-sm);
    background: var(--color-very-light-gray);
    width: 16rem;
    height: 18rem;
    min-width: 16rem;
    max-width: 16rem;
    text-align: center;
}

.panel-list-items .panel-list-item h4 {
    font-size: var(--f-xs);
    font-weight: normal;
}

.panel-list-items .panel-list-item h5 {
    line-height: var(--lh-lg);
    font-size: var(--f-lg);
}

.panel-list-items .panel-list-item .icon {
    display: block;
    margin: 0 auto;
    width: var(--s-xl) !important;
    height: var(--s-xl) !important;
}

.icon {
    display: inline-block;
    width: 1.4em;
    height: 1.4em;
    margin: -0.2em 0.2em;
    background: no-repeat 50%;
    background-size: contain;
}

.page-icons {
    display: flex;
    justify-content: center;
    margin-bottom: var(--s-md);
}

.icon.small {
    width: var(--f-sm);
    height: var(--f-sm);
    margin: calc(var(--s-xs) * -1) var(--s-sm) calc(var(--s-xs) * -1) 0;
}

.icon.large {
    width: var(--f-xxl);
    height: var(--f-xxl);
    margin: calc(var(--s-xs) * -1) var(--s-sm) calc(var(--s-xs) * -1) 0;
}

.icon-location {
    background-image: url('icon_location.svg');
}

.icon-hours {
    background-image: url('icon_hours.svg');
}

.icon-education {
    background-image: url('icon_education.svg');
}

.icon-person {
    background-image: url('icon_person.svg');
}

.icon-address {
    background-image: url('icon_address.svg');
}

.icon-contact {
    background-image: url('icon_contact.svg');
}

.icon-download {
    background-image: url('icon_download.svg');
}

.icon-email {
    background-image: url('icon_email.svg');
}

.icon-phone {
    background-image: url('icon_phone.svg');
}

.icon-linkedin {
    background-image: url('icon_linkedin.svg');
}

.icon-search {
    background-image: url('icon_search.svg');
}

.icon-edit {
    background-image: url('icon_edit.svg');
}

.slider-buttons {
    margin-bottom: var(--s-md);
}

.slider-container {
    overflow: hidden;
    position: relative;
}

.slider-container > * {
    position: absolute;
    transition: left 0.3s ease-in-out;
}

.slider-container:not(.multiple-slides) > * {
    width: 100%;
}

.slider-container .panel-list-items {
    flex-wrap: nowrap;
}

.image-scroller {
    height: var(--height-md);
    overflow: hidden;
    position: relative;
    background: var(--color-black);
}

.image-scroller img {
    display: block;
    position: absolute;
    object-fit: cover;
    height: 100%;
    transition: left 0.5s;
}

.vacancy {
    padding: var(--s-lg);
    border: 1px solid var(--color-black-transparent);
    display: flex;
    gap: var(--s-lg);
}

.vacancy a {
    text-decoration: none;
    color: inherit;
}

.vacancy .vacancy-image {
    width: var(--s-xxl);
    height: var(--s-xxl);
    object-fit: cover;
    border-radius: var(--br-xs);
    background: var(--color-black-transparent);
}

.vacancy .specifications {
    display: flex;
    gap: var(--s-lg);
    align-content: center;
    margin-left: -0.25rem;
}

.content.image_left_small,
.content.image_right_small {
    max-width: var(--max-width);
    margin: 0 auto;
}

.content.image_left_small h3,
.content.image_right_small h3 {
    font-family: poppins, system-ui;
    font-size: var(--f-xxxl);
}

.content-row-image-left,
.content-row-image-right {
    display: flex;
    align-items: stretch;
    justify-content: center;
    margin-bottom: var(--s-xxl);
}

#contactPerson.content-row-image-right {
    margin-bottom: 0;
}

.content-row-image-right {
    justify-content: flex-end;
}

.content-row-image-left h3,
.content-row-image-right h3 {
    margin-bottom: var(--s-lg);
}

.content-row-image-left-content,
.content-row-image-right-content {
    width: 50%;
}

.content-row-image-left-content > *,
.content-row-image-right-content > * {
    width: 100%;
    max-width: calc(var(--max-width) * 0.5);
    padding: var(--s-xl);
}

.content-row-image-left-content > * {
    padding-right: var(--s-lg);
}

.content-row-image-right-content > * {
    padding-left: var(--s-lg);
}

.content-row-image-right-content {
    display: flex;
    justify-content: flex-end;
}

.content-row-image-left-image,
.content-row-image-right-image {
    background: var(--color-theme10) 50% no-repeat;
    background-size: cover;
    width: 50%;
}

.content-row-center {
    max-width: calc(var(--max-width) * 0.75);
    text-align: center;
    margin: 0 auto;
    padding: 0 var(--s-xl) var(--s-xxl) var(--s-xl);
}

.content-row-center h3 {
    margin-bottom: var(--s-lg);
}

.content-video,
.content-images,
.content.why_babypark,
.content-colleague_slider {
    max-width: var(--max-width);
    margin: 0 auto;
    margin-bottom: var(--s-xxl);
}

.content-images.multiple {
    max-width: 100%;
    display: flex;
    gap: var(--s-lg);
}

.content-video .container,
.content-images .container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}

.content-images .container {
    padding: 0;
    height: var(--height-xl);
}

.content-video .container iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: none;
}


.content-images .container img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content.why_babypark {
    text-align: center;
}

.content-colleague_slider {
    position: relative;
    background: var(--color-theme10);
    overflow: hidden;
}

.content-colleague_slider .buttons {
    position: absolute;
    right: var(--s-lg);
    bottom: var(--s-xxl);
    z-index: 1;
}

.content-colleague_slider .slide {
    position: absolute;
    width: 100%;
    transition: left 0.5s;
}

.content-colleague_slider .slideImage {
    width: 100%;
    height: var(--height-xl);
    background: 50% no-repeat;
    align-items: flex-end;
    background-size: cover;
    display: flex;
}

.content-colleague_slider .slideImage > * {
    padding: var(--s-lg);
    color: var(--color-white);
    font-weight: bold;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.content-colleague_slider .quote {
    padding: var(--s-lg);
    padding-left: var(--s-xl);
    position: relative;
    font-style: italic;
}

.content-colleague_slider .quote:before {
    position: absolute;
    margin-right: var(--s-md);
    top: var(--s-lg);
    left: var(--s-lg);
    line-height: .8;
    content: '“';
    font-size: var(--f-xxxxl);
    color: var(--color-theme11);
    font-style: normal;
}

.content-timeline {
    display: flex;
    flex-direction: column;
    gap: var(--s-lg);
    background: var(--color-black);
    color: var(--color-white);
    padding: var(--s-lg);
    overflow: hidden;
}

.content-timeline .timeline {
    height: 6rem;
    position: relative;
}

.content-timeline .timeline .year {
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 8rem;
    height: 6rem;
    position: absolute;
    text-align: center;
    padding-bottom: var(--s-md);
    font-size: var(--f-xl);
    font-family: poppins, system-ui;
    font-weight: bold;
    border-bottom: 4px solid var(--color-white);
    cursor: pointer;
}

.content-timeline .timeline .year:after {
    content: '';
    display: block;
    width: 1rem;
    height: 1rem;
    background: var(--color-white);
    border-radius: 100%;
    position: absolute;
    left: 50%;
    margin-left: -0.5rem;
    bottom: calc(-0.5rem - 2px);
}

.content-timeline .timeline .year.selected {
    font-size: var(--f-xxxl);
}

.content-timeline .slides {
    position: relative;
}

.content-timeline .slides .slide {
    width: calc(33vw + 2 * var(--s-lg));
    padding: 0 var(--s-lg);
    transition: all 0.5s;
    display: flex;
    flex-direction: column;
    gap: var(--s-lg);
    position: absolute;
}

.content-timeline .slides .slide .image {
    width: 33vw;
    height: calc(33vw * 0.56);
    background: 50% no-repeat;
    background-size: cover;
}

.content-timeline .buttons {
    text-align: right;
}

.bgcolor1 {
    background: var(--color-theme1) !important;
    color: var(--color-white) !important;
}

.bgcolor1 .stop1 {
    stop-color: var(--color-theme1-darker) !important;
}

.bgcolor1 .stop2 {
    stop-color: var(--color-theme1-dark) !important;
}

.bgcolor2 {
    background: var(--color-theme2) !important;
}

.bgcolor2 .stop1 {
    stop-color: var(--color-theme2-darker) !important;
}

.bgcolor2 .stop2 {
    stop-color: var(--color-theme2-dark) !important;
}

.bgcolor3 {
    background: var(--color-theme3) !important;
}

.bgcolor3 .stop1 {
    stop-color: var(--color-theme3-darker) !important;
}

.bgcolor3 .stop2 {
    stop-color: var(--color-theme3-dark) !important;
}

.bgcolor4 {
    background: var(--color-theme4) !important;
}

.bgcolor4 .stop1 {
    stop-color: var(--color-theme4-darker) !important;
}

.bgcolor4 .stop2 {
    stop-color: var(--color-theme4-dark) !important;
}

.bgcolor5 {
    background: var(--color-theme5) !important;
}

.bgcolor5 .stop1 {
    stop-color: var(--color-theme5-darker) !important;
}

.bgcolor5 .stop2 {
    stop-color: var(--color-theme5-dark) !important;
}

.bgcolor6 {
    background: var(--color-theme6) !important;
    color: var(--color-white) !important;
}

.bgcolor6 .stop1 {
    stop-color: var(--color-theme6-darker) !important;
}

.bgcolor6 .stop2 {
    stop-color: var(--color-theme6-dark) !important;
}

.bgcolor7 {
    background: var(--color-theme7) !important;
}

.bgcolor7 .stop1 {
    stop-color: var(--color-theme7-darker) !important;
}

.bgcolor7 .stop2 {
    stop-color: var(--color-theme7-dark) !important;
}

.bgcolor8 {
    background: var(--color-theme8) !important;
}

.bgcolor8 .stop1 {
    stop-color: var(--color-theme8-darker) !important;
}

.bgcolor8 .stop2 {
    stop-color: var(--color-theme8-dark) !important;
}

.bgcolor9 {
    background: var(--color-theme9) !important;
}

.bgcolor9 .stop1 {
    stop-color: var(--color-theme9-darker) !important;
}

.bgcolor9 .stop2 {
    stop-color: var(--color-theme9-dark) !important;
}

@media screen and (max-width: 860px) {
    body {
        border: none;
    }

    #top .max-width {
        gap: var(--s-lg);
    }

    #mainMenu {
        gap: var(--s-md);
    }

    .content-row-image-left,
    .content-row-image-right {
        flex-direction: column;
    }

    .content-row-image-left-content,
    .content-row-image-right-content {
        display: flex;
        width: 100%;
        justify-content: center;
    }

    .content-row-image-left-image,
    .content-row-image-right-image {
        height: var(--height-md);
        width: 100%;
    }
}

@media screen and (max-width: 640px) {
    :root {
        --max-width: 76rem;
        --height-md: 18rem;
        --height-xl: 32rem;
        --br-xs: 0.1rem;
        --br-sm: 0.25rem;
        --br-md: 0.5rem;
        --br-lg: 1rem;
        --br-xl: 2rem;
        --s-xs: 0.1rem;
        --s-sm: 0.25rem;
        --s-md: 0.5rem;
        --s-md2: 1rem;
        --s-lg: 1.4rem;
        --s-xl: 2rem;
        --s-xxl: 4rem;
        --f-xs: 0.7rem;
        --f-sm: 0.8rem;
        --f-md: 0.9rem;
        --f-lg: 1.1rem;
        --f-xl: 1.2rem;
        --f-xxl: 1.5rem;
        --f-xxxl: 1.8rem;
        --f-xxxxl: 2rem;
        --lh-md: 1.2;
        --lh-lg: 1.4;
        --lh-xl: 1.5;
        --lh-xxl: 1.6;
    }

    * {
        /*word-wrap: break-word;*/
        /*hyphens: auto;*/
    }

    h3 {
        font-size: var(--f-xxl);
    }

    textarea,
    input[type=email],
    input[type=file],
    input[type=date],
    input[type=text] {
        padding: var(--s-md2) var(--s-lg);
        border-radius: var(--br-xl);
    }

    button,
    .button {
        padding: var(--s-md2) var(--s-lg);
        border-radius: var(--br-xl);
    }

    #top {
        border-top: none;
        background: var(--color-white);
        position: sticky;
        top: 0;
        z-index: 20;
    }

    #top .max-width {
        display: block;
        text-align: center;
    }

    #top .max-width div {
        position: absolute;
        left: var(--s-md2);
        top: var(--s-md2);
    }

    #logo {
        height: var(--s-md2);
    }

    #mainMenu {
        background: var(--color-white);
        position: fixed;
        left: 0;
        top: var(--s-xxl);
        right: 0;
        bottom: 0;
        overflow: auto;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: var(--s-xl);
        padding: var(--s-lg);
        transform: translateX(-100vw);
        transition: 0.3s transform;
        z-index: 10;
    }

    #mainMenu a.selected {
        color: var(--color-black);
        font-weight: bold;
    }

    #top .max-width a {
        flex-grow: 0;
    }

    #menuToggleLabel {
        position: relative;
        display: flex;
        width: var(--s-xl);
        height: var(--s-xl);
        justify-content: center;
        align-items: center;
        font-size: var(--f-xl);
        z-index: 1;
        margin: 0;
    }

    #menuToggleLabel:after {
        content: '☰';
    }

    #menuToggle:checked + #menuToggleLabel:after {
        content: '✕';
    }

    #menuToggle:checked + #menuToggleLabel + #mainMenu {
        transform: translate(0);
    }

    #vacancyTop #vacancySpecifications div {
        padding: var(--s-md);
    }

    #homeSearchBox {
        margin-bottom: var(--s-xxl);
    }

    #homeSearchBox .max-width {
        flex-direction: column-reverse;
        padding: 0;
    }

    #homeSearchBox #call2action {
        height: var(--height-md);
        margin-bottom: 0;
    }

    #homeSearchBox .max-width > h2 {
        display: block;
    }

    #homeSearchBox #call2action h2 {
        display: none;
    }

    #homeSearchBox form {
        padding: var(--s-xl);
        padding-top: 0;
        flex-direction: column;
        gap: var(--s-lg);
    }

    #call2action h2 {
        position: absolute;
    }

    #call2action a {
        display: none;
    }

    #categories span {
        display: block;
        width: 100%;
        font-weight: bold;
        text-align: center;
    }

    #vacancyList .max-width,
    #highlightedVacancies .max-width {
        padding: 0;
        gap: 0;
    }

    #vacancyTop .max-width,
    #defaultPageTop .max-width {
        padding: var(--s-xxl) 0 0 0;
    }

    #vacancyTop .max-width h2,
    #vacancyTop .max-width h3 {
        padding: 0 var(--s-lg);
    }

    #vacancyTop #vacancySpecifications {
        position: relative;
        padding: 0;
        margin-top: var(--s-xl);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--s-lg);
    }

    #specsApplyButton {
        display: block;
    }

    #vacancyTop #vacancySpecifications #specs {
        flex-direction: column;
    }

    #vacancyTop #mainImage {
        border-radius: 0;
        height: var(--height-md);
        margin-top: var(--s-xl);
    }

    #vacancy #call2action button {
        padding: var(--s-md2) var(--s-xl);
    }

    #highlightedVacancies {
        margin-bottom: var(--s-xxl);
    }

    #highlightedVacancies h3 {
        padding: 0 var(--s-lg) var(--s-lg) var(--s-lg);
    }

    #vacancyTop h3 {
        font-size: var(--f-xxxxl);
    }

    #contactPersonCall2Action {
        justify-content: center;
    }

    #filters {
        width: 100vw;
        top: calc(var(--s-md) + var(--s-lg) * 2);
    }

    #filterButtons button:not(#openFiltersButton) {
        display: none;
    }

    #filterButtons #openFiltersButton {
        display: inline-block;
    }

    #faq {
        flex-direction: column;
        padding: 0;
        margin: 0;
        background: var(--color-theme10);
        gap: 0;
    }

    #faqInfo {
        padding: var(--s-lg);
    }

    #faq #faqList {
        gap: 0;
    }

    #faq .faq {
        margin-top: -1px;
    }

    #yourColleagues #colleagues .colleague img {
        width: var(--s-xxl);
        height: var(--s-xxl);
    }

    #applyBotApp {
        flex-direction: column;
    }

    #closeApplyBotContainerMobile {
        display: block;
    }

    #applyBot #babyparkLogo {
        height: var(--s-md2);
        display: block;
        margin: 0 auto;
    }

    #applyBotAppMenu {
        width: 100%;
        background: none;
    }

    #applyVacancyVacancy {
        border-radius: var(--s-md);
        padding: var(--s-xl);
    }

    #applyVacancyVacancy h2,
    #applyVacancyVacancy h3 {
        padding-bottom: 0;
        margin-bottom: var(--s-xl);
    }

    #applyVacancyImage {
        margin-bottom: calc(var(--s-xl) * -1);
    }

    #closeApplyBotContainer {
        display: none;
    }

    #applyBotAppQuestionMenu,
    #applyVacancyContact {
        display: none;
    }

    #applyBotAppChatView .question,
    #applyBotAppChatView .answer,
    #applyBotAppChatView .result {
        border-radius: var(--s-md);
    }

    #footer .max-width {
        flex-direction: column-reverse;
    }

    #footer .max-width > * {
        padding: var(--s-lg);
    }

    #vacancyNotificationFormContainer form div {
        flex-direction: column;
        gap: 0;
    }

    .content-row-image-left-content > *,
    .content-row-image-right-content > * {
        text-align: center;
    }

    .content-row-image-right {
        flex-direction: column-reverse;
    }

    .content-timeline .timeline .year {
        width: 12rem;
    }

    .content-timeline .slides .slide {
        width: calc(90vw + 2 * var(--s-lg));
    }

    .content-timeline .slides .slide .image {
        width: 90vw;
        height: calc(90vw * 0.56);
        background: 50% no-repeat;
        background-size: cover;
    }

    .vacancy {
        position: relative;
        display: block;
        padding-right: var(--s-xxl);
    }

    .vacancy:after {
        content: '';
        display: block;
        width: var(--s-md);
        height: var(--s-md);
        border-left: 2px solid var(--color-black);
        border-bottom: 2px solid var(--color-black);
        transform: rotate(-135deg);
        position: absolute;
        right: var(--s-lg);
        top: 50%;
        margin-top: calc(var(--s-md) * -0.5);
    }

    .vacancy .vacancy-image {
        display: none;
    }

    .vacancy .specifications {
        padding-top: var(--s-md);
        flex-direction: column;
        gap: var(--s-md2);
    }
}