/*
Theme Name: evoove 2024
Theme URI: https://base26.de/
Author: base26 UG (haftungsbeschränkt)
Author URI: https://base26.de/
Description: WordPress-Theme für evoove
Version: 1.0
Text Domain: evoove_2024
*/

/* Allgemeines */

:root {
    --fontGrey: #353535;
    --royalAzure: #1673AD;
    --foggyTeal: #BACFD0;
    --platinumGrey: #C2C2C2;
    --softPebble: #D7D3C6;

    --royalAzureHover: #125E8E;

    --successGreen: #4DC2AD;
    --warningYellow: #EAB54D;
    --alertRed: #E16969;
}

* {
    box-sizing: border-box;
    font-family: 'Satoshi', sans-serif;
}

html, body {
    padding: 0;
    margin: 0;
    height: 100%;
    color: var(--fontGrey);
}

body {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
}

.header-line-wrapper,
.header-nav-wrapper,
.header-wrapper,
.footer-wrapper,
.footer-line-wrapper,
.evoove-row-wrapper-inner {
    max-width: 1360px;
    padding: 0 48px;
    margin: 0 auto;
}

/* Elemente */

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
    margin-top: 20px;
    margin-bottom: 20px;
}

h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child,
p:first-child,
ul:first-child {
    margin-top: 0;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
p:last-child,
ul:last-child {
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
}

h1 {
    font-size: 45px;
    line-height: 52px;
}

h2 {
    font-size: 35px;
    line-height: 40px;
}

h3 {
    font-size: 25px;
    line-height: 30px;
    font-weight: bold;
}

h4 {
    font-weight: bold;
    font-size: 18px;
    line-height: 22px;
}

p,
ul,
ol,
.text-size,
.button,
.page-numbers {
    font-size: 18px;
}

.button, .page-numbers {
    appearance: none;
    -webkit-appearance: none;
    border: 2px solid var(--royalAzure);
    background: none;
    text-decoration: none;
    font-weight: bold;
    color: white;
    padding: 10px 18px;
    border-radius: 5px;
    cursor: pointer;
    display: inline-block;
    transition: background-color .3s, color .3s, border-color .3s;
}

.button:disabled, .page-numbers.current {
    cursor: not-allowed;
    background-color: var(--platinumGrey) !important;
    border-color: var(--platinumGrey) !important;
}

.button-primary, .page-numbers {
    background-color: var(--royalAzure);
}

.button-primary:hover {
    background-color: var(--royalAzureHover);
    border-color: var(--royalAzureHover);
    color: white;
}

.button-secondary {
    color: var(--royalAzure);
}

.button-secondary:hover {
    color: white;
    background-color: var(--royalAzure);
}

.highlight {
    font-weight: bold;
}

.highlight-blue {
    color: var(--royalAzure);
}

a {
    color: var(--royalAzure);
    text-decoration: none;
    font-weight: bold;
    transition: color .3s;
}

a:hover {
    color: var(--royalAzureHover);
}

/* Spezifisch */

.outer-wrapper {
    z-index: 100;
    position: relative;
    width: 100%;
    overflow: hidden;
    flex-grow: 1;
    flex-shrink: 0;
}

.header-line {
    height: 36px;
    line-height: 36px;
    background-color: var(--foggyTeal);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: transform .3s;
}

body.scrolled .header-line {
    transform: translateY(-36px);
}

.header-line-wrapper {
    display: flex;
    justify-content: space-between;
}

.header-line a {
    color: var(--fontGrey);
    text-decoration: none;
    display: inline-block;
    font-weight: normal;
}

.header-line-right a {
    font-weight: bold;
    display: block;
}

.header-line-right {
    display: flex;
    gap: 30px;
}

.header-nav {
    height: 100px;
    position: fixed;
    top: 36px;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: transform .3s;
}

.header-nav::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: backdrop-filter .3s, background-color .3s;
}

body.scrolled .header-nav {
    transform: translateY(-36px);
}

body.scrolled .header-nav::after,
body:not(.home) .header-nav::after {
    backdrop-filter: blur(5px);
    background-color: rgb(255 255 255 / 80%);
}

.header-nav-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-logo {
    height: 60px;
    display: block;
}

.header-nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 50px;
}

.header-nav ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 50px;
}

.header-nav ul li a {
    height: 100%;
    display: block;
    text-decoration: none;
    color: var(--fontGrey);
    font-weight: bold;
    transition: color .3s;
}

.header-nav ul li a:hover {
    color: var(--royalAzure);
}

.header-nav ul li.current-menu-item a,
.header-nav ul li.current_page_parent a {
    color: var(--royalAzure);
    position: relative;
}

.header-nav ul li.current-menu-item a::after,
.header-nav ul li.current_page_parent a::after {
    content: "";
    background-color: var(--royalAzure);
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
}

.header-buttons {
    display: flex;
    gap: 15px;
}

.header {
    height: 800px;
    padding-top: 136px;
    position: relative;
    overflow: hidden;
    z-index: 10;
    flex-shrink: 0;
}

body.home .header {
    height: 100vh;
}

.header-background {
    width: 100%;
    height: calc(100% - 136px);
    position: absolute;
    top: 136px;
    left: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

body:not(.home) .header-background::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(53, 53, 53, 0.00) 0%, #353535 100%);
}

.header-background-logo-page {
    position: absolute;
    bottom: -50px;
    right: 50%;
    transform: translateX(calc(50% + 500px));
    width: 300px;
    z-index: 5;
    opacity: .2;
}

body.home .header-background-logo-page {
    display: none;
}

.header-wrapper {
    display: flex;
    gap: 30px;
    justify-content: stretch;
    align-items: center;
    height: 100%;
    position: relative;
}

body:not(.home) .header-wrapper {
    padding-bottom: 100px;
    align-items: flex-end;
}

.header-background-logo {
    position: fixed;
    bottom: -100px;
    right: -100px;
    z-index: 6;
    opacity: .4;
    height: calc(90% + 100px);
    display: none;
}

body.home .header-background-logo {
    display: block;
}

.header-thumbnail {
    flex-grow: 1;
    flex-shrink: 1;
    width: 100%;
}

.header-thumbnail.mobile {
    display: none;
}

.header-thumbnail.mobile {
    display: none;
}

.header-right {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-left {
    width: 635px;
    flex-grow: 0;
    flex-shrink: 0;
}

body:not(.home) .header-left {
    margin-right: 25%;
    width: 75%;
}

body:not(.home) .header h1 {
    font-size: 45px;
    font-weight: bold;
    color: white;
    margin-top: 0;
    margin-bottom: 0;
}

body:not(.home) .header h2 {
    font-size: 26px;
    font-weight: normal;
    color: white;
    margin-bottom: 0;
    line-height: normal;
}

.header-meta {
    color: white;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

body.home .header h1 {
    font-size: 45px;
    font-weight: bold;
}

body.home .header h2 {
    font-size: 26px;
    font-weight: normal;
    line-height: normal;
}

.evoove-row-wrapper {
    position: relative;
}

.evoove-row-wrapper::after {
    content: "";
    background-color: white;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.evoove-row-wrapper-color-softPebble::after {
    background-color: var(--softPebble);
}

.evoove-row-wrapper-color-foggyTeal::after {
    background-color: var(--foggyTeal);
}

.evoove-row-wrapper-color-platinumGrey::after {
    background-color: var(--platinumGrey);
}

.evoove-row-wrapper-color-royalAzure::after {
    background-color: var(--royalAzure);
}

.evoove-row-wrapper-opacity-true::after {
    opacity: .8;
}

.evoove-row-wrapper-inner {
    padding-top: 100px;
    padding-bottom: 100px;
}

.evoove-row-wrapper-inner .evoove-row-wrapper-inner {
    padding: 0;
}

.footer-line {
    background-color: var(--foggyTeal);
    z-index: 1000;
    position: relative;
    padding: 10px 0;
    font-size: 12px;
}

footer {
    color: white;
    background-color: var(--fontGrey);
    z-index: 999;
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    flex-shrink: 0;
}

.footer-wrapper {
    display: flex;
    justify-content: stretch;
    align-items: center;
    gap: 60px;
    position: relative;
}

.footer-right {
    flex-grow: 1;
}

.footer-right-inner {
    display: flex;
    gap: 20px;
    flex-direction: column;
    width: 200px;
}

footer a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    color: #d2d2d2;
}

.footer-right .footer-link-wrapper:not(:last-child) {
    padding-bottom: 20px;
    border-bottom: 1px solid white;
}

.footer-left {
    flex-grow: 1;
}

.footer-left-upper p {
    margin-top: 0;
}

.footer-left-split {
    display: flex;
    gap: 30px;
    align-items: center;
}

.footer-left-left {
    width: 300px;
}

.footer-left-middle {
    margin: 30px 0;
}

.footer-left-lower > div {
    display: flex;
    gap: 20px;
}

.footer-background-logo {
    position: absolute;
    bottom: -100px;
    right: -100px;
    height: calc(100% + 120px);
    opacity: .1;
    z-index: -1;
}

.evoove-box {
    width: 100%;
    border-radius: 20px;
    padding: 40px;
    height: calc(100% - 50px);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    margin-top: 50px;
}

.evoove-box-color-softPebble {
    background-color: var(--softPebble);
}

.evoove-box-color-platinumGrey {
    background-color: var(--platinumGrey);
}

.evoove-box-color-foggyTeal {
    background-color: var(--foggyTeal);
}

.widget_evoove_icon_card {
    height: 100%;
}

.so-widget-evoove_icon_card {
    height: 100%;
}

.evoove-box-heading {
    font-weight: bold;
    font-size: 20px;
}

.evoove-box-icon {
    width: 228px;
    margin-top: -100px;
    margin-bottom: 10px;
}

.news-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
}

.news-box {
    width: calc(33.3333% - 32px);
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    height: 320px;
    border-radius: 20px;
    color: var(--fontGrey);
    font-weight: normal;
}

.news-box:hover {
    color: var(--fontGrey);
}

.news-box:nth-child(1),
.news-box:nth-child(6),
.news-box:nth-child(8) {
    background-color: var(--foggyTeal);
}

.news-box:nth-child(2),
.news-box:nth-child(4),
.news-box:nth-child(9) {
    background-color: var(--platinumGrey);
}

.news-box:nth-child(3),
.news-box:nth-child(5),
.news-box:nth-child(7) {
    background-color: var(--softPebble);
}

.news-box-main {
    padding: 40px;
}

.news-box-image {
    flex-grow: 1;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    background-size: cover;
    background-position: center center;
    position: relative;
}

.news-box-meta {
    margin-bottom: 10px;
}

.news-box-title {
    font-weight: bold;
}

.news-box-icon {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    background-color: var(--royalAzure);
    position: absolute;
    bottom: 0;
    left: 40px;
    transform: translateY(50%);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 60%;
}

.news-box-icon-allgemein {
    background-image: url("./inc/img/icon-allgemein.svg");
}

.news-box-icon-eigene-sache {
    background-image: url("./inc/img/icon-eigeneSache.svg");
}

.evoove-button-wrapper {
    display: flex;
    justify-content: center;
}

.widget_evoove_accordion:not(:last-child) .evoove-accordion {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--fontGrey);
}

.evoove-accordion-title {
    font-weight: bold;
    font-size: 20px;
    cursor: pointer;
    position: relative;
    padding: 20px 48px 20px 0;
}

.evoove-accordion .evoove-accordion-title::after {
    content: "";
    width: 30px;
    height: 30px;
    background-image: url("./inc/img/add.svg");
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.evoove-accordion.open .evoove-accordion-title::after {
    background-image: url("./inc/img/remove.svg");
}

.evoove-accordion-text {
    padding-bottom: 20px;
}

.evoove-accordion-wrapper {
    height: 0;
    overflow: hidden;
    transition: height .5s;
}

.evoove-info-card {
    width: 100%;
    display: flex;
    align-items: center;
    background-color: var(--softPebble);
    border-radius: 20px;
}

.evoove-info-card-color-softPebble {
    background-color: var(--softPebble);
}

.evoove-info-card-color-foggyTeal {
    background-color: var(--foggyTeal);
}

.evoove-info-card-color-platinumGrey {
    background-color: var(--platinumGrey);
}

.evoove-info-card-color-white {
    background-color: rgb(255 255 255 / 50%);
}

.evoove-info-card-image {
    width: 250px;
    height: 378px;
    background-position: center center;
    background-size: cover;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    background-image: url("./inc/img/dim.jpg");
    flex-shrink: 0;
}

.evoove-info-card-content {
    padding: 48px;
    display: flex;
    gap: 30px;
    flex-direction: column;
    flex-shrink: 1;
}

.evoove-info-card-phone {
    padding-left: 20px;
    position: relative;
    display: block;
    font-weight: normal;
    color: var(--fontGrey);
}

.evoove-info-card-phone::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 13px;
    height: 13px;
    background-image: url("./inc/img/phone.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.evoove-info-card-email {
    padding-left: 20px;
    position: relative;
    display: block;
    font-weight: normal;
    color: var(--fontGrey);
}

.evoove-info-card-email::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 13px;
    height: 13px;
    background-image: url("./inc/img/email.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.footer-phone {
    padding-left: 20px;
    position: relative;
    display: block;
    font-weight: normal;
}

.footer-phone::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 13px;
    height: 13px;
    background-image: url("./inc/img/phone_white.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.footer-email {
    padding-left: 20px;
    position: relative;
    display: block;
    font-weight: normal;
}

.footer-email::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 13px;
    height: 13px;
    background-image: url("./inc/img/email_white.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

input,
textarea,
select {
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid var(--platinumGrey);
    background-color: white;
    padding: 14px 16px;
    border-radius: 4px;
    font-size: 18px;
    outline: none;
    width: 100%;
    font-weight: 500;
    color: var(--fontGrey);
    position: relative;
    transition: border-color .3s;
    display: block;
    line-height: 25px;
}

.evoove-row-wrapper-color-foggyTeal input,
.evoove-row-wrapper-color-foggyTeal textarea,
.evoove-row-wrapper-color-foggyTeal select {
    border: 1px solid var(--fontGrey);
    background-color: var(--foggyTeal);
}

input:focus,
textarea:focus,
select:focus {
    border: 1px solid var(--fontGrey);
}

select {
    cursor: pointer;
}

.input-wrapper {
    width: 100%;
    max-width: 400px;
    position: relative;
    margin-bottom: 20px;
}

.input-wrapper label {
    position: absolute;
    top: 15px;
    left: 13px;
    font-size: 18px;
    font-weight: 500;
    transition: color .1s ease-in-out, transform .1s ease-in-out, font-size .1s;
    cursor: text;
    color: var(--fontGrey);
    pointer-events: none;
    background-color: white;
    padding: 0 3px;
}

.evoove-row-wrapper-color-foggyTeal .input-wrapper label {
    background-color: var(--foggyTeal);
}

.input-wrapper .input:-webkit-autofill ~ label,
.input-wrapper .input:focus ~ label,
.input-wrapper .input:not(:placeholder-shown) ~ label {
    transform: translateY(-23px);
    font-size: 12px;
}

.evoove-inquiry-form .input-wrapper {
    max-width: unset;
}

.two-inputs {
    display: flex;
    gap: 30px;
}

.evoove-inquiry-form .textarea {
    height: 153px;
}

.select-wrapper::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 16px;
    width: 13px;
    height: 13px;
    background-image: url("./inc/img/caret_down.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

label.privacy-wrapper {
    position: relative;
    top: unset;
    left: unset;
    right: unset;
    bottom: unset;
    padding-left: 30px;
    display: block;
    cursor: pointer;
    pointer-events: auto;
    font-size: 14px;
}

input[type="checkbox"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border: none;
    padding: 0;
    margin: 0;
}

input[type="checkbox"]::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    width: 20px;
    height: 20px;
    border: 1px solid var(--platinumGrey);
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.evoove-row-wrapper-color-foggyTeal input[type="checkbox"]::after {
    border: 1px solid var(--fontGrey);
}

input[type="checkbox"]:checked::after {
    background-image: url("./inc/img/check_icon.svg");
    background-position: center center;
    background-size: cover;
    border: 1px solid var(--royalAzure);
}

.notice-area {
    display: none;
    padding: 16px 14px;
    border-radius: 4px;
    margin-bottom: 20px;
    text-align: left;
    font-weight: bold;
}

.notice-area.success {
    border: 1px solid var(--successGreen);
    display: block;
}

.notice-area.error {
    border: 1px solid var(--alertRed);
    display: block;
}

.main-background-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.main-background {
    min-height: 100%;
    min-width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.main-background-opacity {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    backdrop-filter: blur(2px);
}

body.home .main-background-opacity {
    background-color: rgb(255 255 255 / 80%);
}

.main-background-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
}

.main-background-image::after {
    content: "";
    width: 100%;
    height: 136px;
    background-color: white;
    position: absolute;
    top: 0;
    left: 0;
}

body.scrolled .main-background-image::after {
    transform: translateY(-36px);
}

.input-wrapper-phone {
    overflow: hidden;
    height: 0;
    margin-bottom: 0;
    /*pointer-events: none;*/
    /*opacity: 0;*/
    /*visibility: hidden;*/
}

.news-detail-page .evoove-button-wrapper {
    margin-top: 80px;
}

.news-detail-page h1 {
    margin-bottom: 80px;
}

.news-detail-page .news-box {
    background-color: white;
}

.evoove-row-split-manually {
    gap: 48px;
    display: flex;
}

.evoove-row-cell {
    width: 100%;
    flex-shrink: 1;
}

.evoove-row-cell-small {
    flex-shrink: 0;
    width: 350px;
    max-width: 100%;
}

.news-detail-user-image {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.evoove-author-box {
    padding: 90px 48px 48px;
    background-color: var(--softPebble);
    border-radius: 20px;
    position: relative;
}

.evoove-author-box-image {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: -60px;
    left: 48px;
}

.evoove-author-box-position {
    padding-top: 10px;
}

.evoove-author-box-description {
    padding-top: 10px;
}

.evoove-author-box-social {
    margin-top: 5px;
    display: flex;
    gap: 10px;
}

.evoove-author-box-linkedin img {
    width: 20px;
}

.evoove-author-box-github img {
    width: 21px;
}

.pagination-wrapper:not(:empty) {
    margin-top: 50px;
}

.pagination-wrapper h2 {
    display: none;
}

.evoove-person-box {
    padding: 140px 48px 48px;
    background-color: var(--softPebble);
    border-radius: 20px;
    position: relative;
    margin-top: 60px;
    height: calc(100% - 60px);
}

.evoove-person-box-image {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: -60px;
    left: 48px;
}

.evoove-person-box-position {
    position: absolute;
    top: 47px;
    left: 240px;
}

.evoove-person-box-name {
    position: absolute;
    top: 70px;
    left: 240px;
}

.evoove-person-box-social {
    position: absolute;
    top: 96px;
    left: 240px;
    display: flex;
    gap: 5px;
}

.evoove-person-box-linkedin img {
    width: 20px;
}

.evoove-person-box-github img {
    width: 21px;
}

.widget_custom_html,
.custom-html-widget {
    height: 100%;
}

.panel-row-style.no-crossed .panel-grid-cell:nth-child(odd) .evoove-person-box,
.panel-row-style.crossed .panel-grid-cell:nth-child(even) .evoove-person-box {
    background-color: var(--foggyTeal);
}

.panel-row-style.no-crossed .panel-grid-cell:nth-child(even) .evoove-person-box,
.panel-row-style.crossed .panel-grid-cell:nth-child(odd) .evoove-person-box {
    background-color: var(--softPebble);
}

p img:not(.no-size) {
    max-width: 100%;
    height: auto;
}

p img:not(.no-size).alignleft {
    float: left;
    display: inline-block;
    margin-right: 20px;
}

p img:not(.no-size).aligncenter, p img:not(.no-size).alignnone {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

p img:not(.no-size).alignright {
    float: right;
    display: inline-block;
    margin-left: 20px;
}

.evoove-image-mobile {
    display: none;
}

.evoove-image-desktop {
    display: block;
}

.mobile-menu-button {
    display: none;
}

.mobile-menu {
    display: none;
}

.evoove-partner-box {
    background-color: white;
    padding: 48px;
    border-radius: 20px;
    width: 350px;
    max-width: 100%;
    margin-left: auto;
}

.evoove-partner-box-partner {
    display: block;
}

.evoove-partner-box-partner img {
    width: 100%;
}

.evoove-partner-box-content {
    display: flex;
    gap: 20px;
    flex-direction: column;
    margin-top: 20px;
    align-items: center;
}

.padding-left {
    padding-left: 5px;
}

/* Media-Queries */

@media (max-width: 1260px) {
    body.home .header h1 {
        font-size: 38px;
        line-height: 40px;
    }

    body.home .header h2 {
        font-size: 21px;
        line-height: 30px;
    }

    .header-left {
        width: 530px;
    }
}

@media (max-width: 1100px) {
    .header-nav-right {
        display: none;
    }

    .header {
        height: auto !important;
    }

    .header-wrapper {
        flex-direction: column;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .header-thumbnail {
        width: 100%;
        max-width: 500px;
        height: unset;
    }

    .header-thumbnail.mobile {
        display: block;
    }

    .header-thumbnail.desktop {
        display: none;
    }

    .header-buttons .button-secondary {
        display: none;
    }

    .panel-grid {
        gap: 48px;
    }

    .news-box {
        width: 100%;
    }

    .header-wrapper {
        padding-bottom: 30px !important;
        min-height: 400px;
        justify-content: flex-end;
    }

    .evoove-row-wrapper-inner {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .evoove-row-split-manually {
        flex-direction: column;
    }

    .evoove-image-mobile {
        display: block;
    }

    .evoove-image-desktop {
        display: none;
    }

    body.home .main-background-opacity {
        background-color: white !important;
        backdrop-filter: none;
    }

    .news-detail-page h1 {
        margin-bottom: 48px;
    }

    .news-detail-page .evoove-button-wrapper {
        margin-top: 48px;
    }

    .header-left {
        width: 100% !important;
        margin-right: 0 !important;
    }

    .mobile-menu-button {
        display: block;
    }

    .mobile-menu-button {
        display: block;
        position: fixed;
        top: 86px;
        transform: translateY(-50%);
        right: 48px;
        cursor: pointer;
        z-index: 2000;
        transition: transform .3s;
    }

    body.scrolled .mobile-menu-button,
    body.mobile-open .mobile-menu-button {
        transform: translateY(calc(-50% - 36px));
    }

    .bar1, .bar2, .bar3 {
        width: 30px;
        height: 4px;
        background-color: var(--fontGrey);
        margin: 5px 0;
        display: block;
        transition: .3s;
    }

    body.mobile-open .bar1 {
        transform: rotate(-45deg) translate(-7px, 6px);
    }

    body.mobile-open .bar2 {
        opacity: 0;
    }

    body.mobile-open .bar3 {
        transform: rotate(45deg) translate(-6.5px, -6px);
    }

    .mobile-menu {
        display: block;
        z-index: 1500;
        backdrop-filter: blur(5px);
        background-color: rgb(255 255 255 / 80%);
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .3s, visibility .3s;
    }

    body.mobile-open .mobile-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .mobile-menu nav {
        padding: 100px 60px 60px;
    }

    .mobile-menu nav ul {
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 30px;
        list-style-type: none;
    }

    .mobile-menu nav ul li a {
        font-size: 18px;
        color: var(--fontGrey);
        font-weight: bold;
        transition: color .3s;
    }

    .mobile-menu nav ul li.current-menu-item a,
    .mobile-menu nav ul li.current_page_parent a,
    .mobile-menu nav ul li a:hover {
        color: var(--royalAzure);
        position: relative;
    }

    .mobile-menu nav ul li.current-menu-item a::after,
    .mobile-menu nav ul li.current_page_parent a::after {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: var(--royalAzure);
    }

    .mobile-menu .button {
        margin-top: 30px;
    }

    .mobile-menu-hotlink-wrapper {
        margin-top: 30px;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .mobile-menu-hotlink-wrapper a,
    .mobile-menu-hotlink-wrapper a:hover {
        color: var(--fontGrey);
        font-weight: normal;
    }

    .evoove-accordion .evoove-accordion-title::after {
        width: 20px;
        height: 20px;
    }

    .evoove-row-cell-small {
        width: 100%;
    }

    .evoove-person-box {
        margin-top: 108px;
    }

    .evoove-author-box {
        margin-top: 60px;
    }

    .evoove-box-icon {
        width: 140px;
    }

    .so-widget-evoove_image {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .evoove-partner-box {
        margin-right: auto;
    }

    .image-center {
        text-align: center;
    }

    .padding-left {
        padding-left: 0;
    }
}

@media (max-width: 900px) {
    .footer-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        width: 100%;
    }
}

@media (max-width: 740px) {
    .header-line {
        display: none;
    }

    .header-nav {
        top: 0;
        transform: none !important;
    }

    .header {
        padding-top: 100px;
    }

    .header-background {
        height: calc(100% - 100px);
        top: 100px;
    }

    .footer-left-split {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .footer-left {
        flex-shrink: 1;
        min-width: 0;
        width: 100%;
    }

    .footer-logo {
        max-width: 100%;
    }

    .footer-left-split > div {
        min-width: 0;
        flex-shrink: 1;
        width: 100%;
    }

    footer {
        padding: 30px 0;
    }

    .evoove-info-card {
        flex-direction: column;
    }

    .evoove-info-card-image {
        border-bottom-left-radius: 0;
        border-top-right-radius: 20px;
        width: 100%;
        height: 250px;
    }

    .evoove-info-card-content {
        width: 100%;
        gap: 20px;
    }

    .evoove-row-wrapper-inner {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .news-wrapper,
    .evoove-info-card-content,
    .evoove-row-split-manually,
    .panel-grid {
        gap: 30px;
    }

    .evoove-author-box {
        padding: 90px 30px 30px;
    }

    .evoove-author-box-image {
        left: 30px;
    }

    .evoove-person-box {
        padding: 80px 30px 30px;
    }

    .evoove-person-box-position,
    .evoove-person-box-name,
    .evoove-person-box-social {
        position: static;
    }

    .evoove-person-box-social {
        margin-bottom: 15px;
    }

    .evoove-person-box-image {
        width: 120px;
        height: 120px;
        left: 30px;
    }

    .news-box-main,
    .evoove-info-card-content,
    .evoove-box {
        padding: 30px;
    }

    .news-box-icon {
        left: 30px;
    }

    .header-line-wrapper,
    .header-nav-wrapper,
    .header-wrapper,
    .footer-wrapper,
    .footer-line-wrapper,
    .evoove-row-wrapper-inner {
        padding-left: 30px;
        padding-right: 30px;
    }

    body:not(.home) .header h1,
    body.home .header h1,
    h1 {
        font-size: 30px;
        line-height: 35px;
    }

    h2 {
        font-size: 25px;
        line-height: 30px;
    }

    h3 {
        font-size: 22px;
        line-height: 28px;
        font-weight: bold;
    }

    h4 {
        font-size: 16px;
        line-height: 20px;
    }

    body:not(.home) .header h2,
    body.home .header h2 {
        font-size: 20px;
    }

    p,
    ul,
    ol,
    .text-size,
    .button,
    .page-numbers {
        font-size: 16px;
    }

    .two-inputs {
        flex-direction: column;
        gap: 0;
    }

    .evoove-accordion-title,
    .evoove-box-heading {
        font-size: 18px;
    }

    .footer-background-logo {
        height: 70%;
        right: 30px;
    }

    .news-detail-page h1 {
        margin-bottom: 30px;
    }

    .news-detail-page .evoove-button-wrapper {
        margin-top: 30px;
    }

    .mobile-menu-button {
        top: 50px;
        right: 30px;
        transform: translateY(-50%) !important;
    }

    .main-logo {
        height: 50px;
    }

    .evoove-person-box {
        margin-top: 90px;
    }

    input,
    textarea,
    select {
        padding: 12px 14px;
        font-size: 16px;
    }

    .input-wrapper label {
        font-size: 16px;
    }

    label.privacy-wrapper {
        font-size: 13px;
    }

    .evoove-partner-box {
        padding: 30px;
    }

    .evoove-partner-box-partner img {
        width:180px;
    }
}

@media (max-width: 370px) {
    .main-logo {
        height: 40px;
    }
}