/*!
Theme Name: Contact-Theme
Theme URI: -
Author: Contact GmbH
Author URI:
Description:
Version: 1.0.0
License: -
License URI: -
Text Domain: contact-theme
Tags:

*/

/* ================================

General
    Presets

Modules

================================ */


/* ================================
------------- General -------------
================================ */

:root {
    --black: #000000;
    --white: #FFFFFF;
}

@font-face {
    font-family: "Open Sans";
    src: url("./assets/fonts/OpenSans-Bold.ttf") format("truetype");
    font-weight: 900;
    font-display: swap;
}

@font-face {
    font-family: "Open Sans";
    src: url("./assets/fonts/OpenSans-BoldItalic.ttf") format("truetype");
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Open Sans";
    src: url("./assets/fonts/OpenSans-Regular.ttf") format("truetype");
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Open Sans";
    src: url("./assets/fonts/OpenSans-Italic.ttf") format("truetype");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    color: #151515;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-size: 1.6rem;
    line-height: 150%;
    font-weight: 400;
    letter-spacing: 1px;
    word-wrap: break-word;
    position: relative;
    overflow-x: hidden;
    width: 100%;
}

section {
    padding: 8rem 0;
}

a {
    text-decoration: none;
}

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

/* Font-Styles */
.h1,
.h2,
.h3 {
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.h1 {
    font-size: 4.8rem;
    font-size: clamp(3rem, 2.64rem + 1.8vw, 4.8rem);
}
.h2 {
    font-size: 3.2rem;
    font-size: clamp(2.4rem, 2.24rem + 0.8vw, 3.2rem);
}
.h3 {
    font-size: 2rem;
    font-size: clamp(1.6rem, 1.52rem + 0.4vw, 2rem);
}

/* ================================
------------- Header -------------
================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 86px;
    z-index: 900;
    max-width: 100vw;
}

.site-header-backdrop {
    background-color: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 110%;
    left: -88%;
    border-bottom-right-radius: 130px;
    transition: left ease-out 0.1s, box-shadow ease-out 0.3s;
}

.site-header.active-shadow .site-header-backdrop {
    box-shadow: 0 2px 50px 0 rgba(0,0,0,0.1);
}

.site-header .logo-container {
    position: relative;
    z-index: 1;
    height: 86px;
    display: flex;
    align-items: center;
}

.site-header .logo-container:before {
    content: "";
    background-color: #fff;
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    width: 1000%;
    right: 0%;
    border-bottom-right-radius: 130px;
}

.site-header .logo {
    width: auto;
    max-height: 70%;
}

@media only screen and (min-width: 992px) {
    .site-header .main-navigation {
        height: 100%;
    }

    .navbar-expand-lg .navbar-collapse {
        justify-content: flex-end;
        align-items: center;
    }

    .site-header .main-navigation .navbar-nav {
        gap: 15px;
    }

    .site-header .main-navigation .navbar-nav a {
        color: #fff;
        transition: color ease-out 0.6s;
        text-transform: uppercase;
        font-size: 14px;
        position: relative;
    }

    .site-header .main-navigation .navbar-nav .nav-link {
        display: inline-block;
    }

    .site-header .main-navigation .navbar-nav a:hover:before {
        content: "";
        width: 100%;
        height: 3px;
        background-color: #75BBBC;
        position: absolute;
        bottom: 0%;
        left: 0;
        right: 0;
    }

    .site-header.active-shadow .main-navigation .navbar-nav a {
        color: #000;
        position: relative;
        z-index: 2;
    }
    
    .site-header .navbar-expand-lg .navbar-nav .dropdown-menu {
        z-index: 1;
        padding: 10px;
        background-color: transparent;
        margin-left: -10px;
        transition: background-color ease-out 0.6s;
        border: none;
        min-width: 200px;
    }

    .site-header.active-shadow .navbar-expand-lg .navbar-nav .dropdown-menu {
        background-color: #fff;
        z-index: 1;
        padding: 10px 0 10px 15px;
        margin-left: -15px;
        transition: background-color ease-out 0.6s;
        border: none;
        min-width: 200px;
        box-shadow: 0 2px 50px 0 rgba(0,0,0,0.1);
        border-bottom-right-radius: 20px;
    }

    .site-header.active-shadow .navbar-expand-lg .navbar-nav .dropdown-menu:after {
        content: "";
        width: 300px;
        position: absolute;
        height: 86px;
        background-color: #fff;
        pointer-events: none;
        top: -60px;
        left: -50px;
    }

    .site-header.active .navbar-expand-lg .navbar-nav .dropdown-menu {
        background-color: #fff;
    }

}

@media only screen and (max-width: 991px) {
    .main-navigation {
        justify-content: right;
        position: static;
    }

    .navbar-toggler {
        background-color: #fff;
        margin-top: 28px;
        position: relative;
        z-index: 1;
    }

    .navbar-collapse {
        color: #000;
        margin-top: 26px;
        position: absolute;
        left: 0;
        right: 0;
        background-color: #fff;
        text-align: right;
        top: -27px;
        box-shadow: 0 2px 50px 0 rgba(0,0,0,0.1);
        text-transform: uppercase;
    }

    .navbar-collapse li {
        border-top: 1px solid #e0e0e0;
    }

    .navbar-collapse ul.navbar-nav {
        padding: 100px 30px 15px;
        max-width: 576px;
        margin: 0 auto;
    }

    .navbar-collapse a {
        color: #000;
        padding: 12px 0;
        margin: 5px 0;
        display: block;
    }

    .dropdown-menu {
        border: none;
        text-align: right;
        font-size: 12px;
        text-transform: uppercase;
    }

    .dropdown-menu li a {
        padding-right: 50px;
    }

    .navbar-toggler {
        position: relative;
        width: 27px;
        height: 25px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }

    .navbar-toggler-icon {
        background: none;
    }

    .navbar-toggler-icon:before,
    .navbar-toggler-icon:after {
        content: "";
        display: inline-block;
        position: absolute;
    }

    .navbar-toggler[aria-expanded="false"] .navbar-toggler-icon,
    .navbar-toggler[aria-expanded="false"] .navbar-toggler-icon:before,
    .navbar-toggler[aria-expanded="false"] .navbar-toggler-icon:after {
        width: 15px;
        height: 2px;
        left: 5px;
        background-color: #9b9b9b;
    }

    .navbar-toggler[aria-expanded="false"] .navbar-toggler-icon:before {
        top: 5px;
    }

    .navbar-toggler[aria-expanded="false"] .navbar-toggler-icon:after {
        bottom: 5px;
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
        width: 2px;
        height: 15px;
        background-color: #9b9b9b;
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
        left: 11px;
        rotate: 45deg;
        top: 4px;
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
        right: 12px;
        top: 4px;
        rotate: -45deg;
    }
}



/* ================================
------------- Modules -------------
================================ */

/* Hero Module */
.hero-module {
    padding: 0;
    height: 100vh;
    max-height: 800px;
    min-height: 650px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.hero-module .hero-background-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right,  rgba(0,0,0,0.3) 0%,rgba(0,0,0,0) 80%), linear-gradient(to bottom,  rgba(0,0,0,0.3) 0%,rgba(0,0,0,0) 80%);
}

.hero-module .vector-edge {
    position: absolute;
    bottom: 0;
    right: -44px;
    height: 86px;
    width: 129px;
    z-index: 1;
}

.hero-module .container {
    position: relative;
    z-index: 1;
}

.hero-module .container,
.hero-module .container > div,
.hero-module .container > div > div {
    height: 100%;
}

.hero-module .container > div > div {
    align-items: center;
    display: flex;
}

.hero-content {
    color: #fff;
}

.hero-content h1 {
    font-size: 46px;
    line-height: 1.2em;
    text-transform: uppercase;
    margin-bottom: 0;
    margin-top: 30px;
    text-shadow: 0 1px 0 rgba(0,0,0,0.55);
}

@media only screen and (max-width: 575px) {
    .hero-content h1 {
        font-size: 28px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 1199px) {
    .hero-content h1 {
        font-size: 32px;
    }
}

.hero-content p {
    font-size: 20px;
    line-height: 1.7em;
    text-shadow: 0 1px 0 rgba(0,0,0,0.55);
    margin-top: 20px;
}

@media only screen and (min-width: 576px) and (max-width: 1199px) {
    .hero-content p {
        font-size: 18px;
    }
}

@media only screen and (max-width: 575px) {
    .hero-content p {
        font-size: 16px;
    }
}

.hero-content .hero-cta {
    display: inline-block;
    margin-top: 50px;
    border-radius: 15px;
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
	background-size: 400% 400%;
	animation: gradient 10s ease infinite;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 16px;
    padding: 25px;
    box-shadow: 0 2px 0 0 rgba(0,0,0,0.1);
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

/* Section Headline Module */
.section-headline-module {
    padding: 100px 0;
    text-align: center;
}

@media only screen and (min-width: 768px) {
    .section-headline-module {
        padding: 200px 0 100px;
        text-align: center;
    }
}

.section-headline-module .row {
    justify-content: center;
}

.section-headline-module h2 {
    font-size: 48px;
    margin-bottom: 0;
    text-transform: uppercase;
}

@media only screen and (max-width: 991px) {
    .section-headline-module h2 {
        font-size: 28px;
    }
}

.section-headline-module p {
    margin: 30px auto 0;
    max-width: 700px; 
    line-height: 3.4rem;  
}

.section-headline-module ~ .text-image-module {
    margin-top: 100px;
}

/* Text Image Module */
.text-image-module {
    margin: 150px 0;
}

@media only screen and (min-width: 768px) {
    .text-image-module {
        margin: 250px 0;
    }
}

.text-image-module.background-color-cyan {
    position: relative;
}

.text-image-module.background-color-cyan:after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    border-bottom-right-radius: 100px;
    right: 0;
    bottom: 0;
    background-color: #75BBBC;
}

.text-image-module .row {
    position: relative;
}

.text-image-module.image-left .col-12 {
    display: flex;
    justify-content: flex-end;
}

@media only screen and (max-width: 991px) {
    .text-image-module.image-left .col-12 {
        display: block;
    }
}

.text-image-module .image {
    width: 60%;
    position: absolute;
    right: 0;
    top: -100px;
    border-radius: 0;
    border-bottom-right-radius: 100px;
    box-shadow: rgb(100 173 235 / 20%) 0px 0px 50px;
}

.text-image-module.image-left .image {
    right: auto;
    left: 0;
}   

@media only screen and (max-width: 991px) {
    .text-image-module .image {
        position: relative;
        top: 0;
        left: 10%;
        width: 100%;
    }   
    
    .text-image-module.image-left .image {
        left: -10%;
    }
}

.text-image-module .text-container {
    width: 50%;
    background-color: #fff;
    position: relative;
    z-index: 1;
    padding: 80px 50px ;
    border-bottom-right-radius: 100px;
    box-shadow: rgb(100 173 235 / 20%) 0px 0px 50px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .text-image-module .text-container {
        width: 70%;
    }
}

@media only screen and (max-width: 991px) {
    .text-image-module .text-container {
        width: 100%;
        padding: 40px 25px;
    }
}

.text-image-module .text-container-head {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center;
}

@media only screen and (max-width: 991px) {
    .text-image-module .text-container-head {
        flex-direction: column;
    }
}

.text-image-module .text-container-head i {
    width: 50px;
    display: block;
    margin-top: 5px;
}

.text-image-module .text-container-head img {
    max-width: 50px;
}
.text-image-module .text-container-head svg {
    height: auto;
    max-width: 50px;
}

.text-image-module h3 {
    font-size: 24px;
    text-transform: uppercase;
}

.text-image-module h4 {
    font-size: 20px;
    text-transform: uppercase;
    margin-top: 10px;
}

@media only screen and (max-width: 991px) {
    .text-image-module h4 {
        font-size: 18px;
    }
}

.text-image-module p {
    margin-top: 30px;
    line-height: 2em;
    font-size: 18px;
}

@media only screen and (max-width: 991px) {
    .text-image-module p {
        font-size: 16px;
    }    
}

/* Branchen Module */

.branchen-module {
    padding-top: 0;
    position: relative;
}

.branchen-module:after {
    content: "";
    position: absolute;
    z-index: -1;
    top: -320px;
    bottom: 0;
    width: 100%;
    left: -100%;
    border-bottom-right-radius: 100px;
    background-color: rgb(247, 247, 247);
    transition: left ease-out 1s;
}

.branchen-module.activated:after {
    left: 0;
}

.branche-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    color: #fff;
    text-transform: uppercase;
    font-size: 32px;
    height: 350px;
    text-shadow: 0 1px 0 rgba(0,0,0,0.55);
    box-shadow: rgb(100 173 235 / 20%) 0px 0px 50px;
    transition: box-shadow ease-out 0.4s, border-radius ease-out 0.4s;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .branche-container {
        height: 250px;
        font-size: 24px;
    }
}

@media only screen and (max-width: 991px) {
    .branche-container {
        margin-bottom: 30px;
    }
}

.branche-container:hover {
    color: #fff;
    text-decoration: none;
    border-bottom-right-radius: 100px;
    box-shadow: rgba(235, 100, 170, 0.3) 0px 0px 10px;
}

.branche-container span {
    display: block;
    text-align: center;
    position: relative;
    z-index: 1;
    line-height: 1.3em;
    margin-top: 250px;
    transition: margin-top ease-out 0.4s;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .branche-container span {
        margin-top: 150px;
    }
}

.branche-container:hover span {
    margin-top: 0;
}

.branche-container:after  {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background-color: rgba(0,0,0,0.2);
    transition: background-color ease-out 0.4s;
}

.branche-container:hover:after {
    background-color: rgba(0,0,0,0.5);
}

/* Customer Logo Module */

.customer-logos-module h2 {
    text-transform: uppercase;
    text-align: center;
    font-size: 20px;
    margin-bottom: 50px;
}

.logo-gallery {
    display: flex;
    justify-content: center;
    gap: 40px;
}

@media only screen and (max-width: 991px) {
    .logo-gallery {
        flex-direction: column;
        align-items: center;
    }
}

.logo-gallery-item img {
    width: auto;
    max-height: 75px;
}

/* Experience Module */

.experience-module {
    position: relative;
}

.experience-module:after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    width: 100%;
    left: -100%;
    border-bottom-right-radius: 100px;
    background-color: #75BBBC;
    transition: left ease-out 1s;
}

.experience-module.activated:after {
    left: 0;
}

.experience-container {
    height: 280px;
    text-align: center;
    box-sizing: border-box;
    padding: 40px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 50px;
    background-color: #fff;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .experience-container {
        padding: 30px 20px;
        height: 220px;
    }
}

@media only screen and (max-width: 991px) {
    .experience-container {
        margin-bottom: 30px;
    }
}

.experience-container strong {
    display: flex;
    height: 80px;
    align-items: center;
    margin-bottom: 30px;
    justify-content: center;
    text-transform: uppercase;
    font-size: 16px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .experience-container strong {
        font-size: 12px;
        margin-bottom: 10px;
    }
}

.experience-container span {
    display: block;
    font-size: 32px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .experience-container span {
        font-size: 24px;
    }
}

.experience-container img {
    max-height: 50px;
    width: auto;
}
.experience-container svg {
    width: auto;
    max-height: 50px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .experience-container img {
        max-height: 42px;
    }
    .experience-container svg {
        width: auto;
        max-height: 42px;
    }
}

/* Contact Form Module */

.contact-form-module img {
    max-width: 100%;
}

.contact-form-container {
    box-sizing: border-box;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 50px;
}

.contact-form-row {
    display: flex;
    gap: 20px;
}

@media only screen and (max-width: 991px) {
    .contact-form-row {
        flex-direction: column;
        gap: 0;
    }
}

.contact-form-col {
    flex: 1;
}

.contact-form-container label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    color: #666666;
}

.contact-form-container input {
    background-color: #F3F3F3;
    border-radius: 5px;
    box-sizing: border-box;
    border: none;
    height: 50px;
    width: 100%;
    display: block;
    padding: 5px 10px;
    box-shadow:inset 1px 2px 1px 0 rgba(0,0,0,0.25);
    font-size: 18px;
}

.contact-form-container input:focus,
.contact-form-container textarea:focus {
    outline: none;
}

.contact-form-container textarea {
    background-color: #F3F3F3;
    border-radius: 5px;
    box-sizing: border-box;
    border: none;
    height: 160px;
    width: 100%;
    display: block;
    padding: 10px 10px;
    box-shadow:inset 1px 2px 1px 0 rgba(0,0,0,0.25);
    font-size: 18px;
}

@media only screen and (max-width: 991px) {
    .contact-message {
        margin-top: 20px;
    }
}

.contact-form-container .wpcf7-not-valid-tip {
    text-transform: none;
}

.contact-form-container input.wpcf7-not-valid,
.contact-form-container textarea.wpcf7-not-valid {
    outline: 2px solid #ff9d9d;
}

.contact-form-container .wpcf7-response-output {
    color: #FFFFFF;
    background-color: #00a0d2;
    padding: 5px 20px;
    border-color: #00a0d2;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 50px;
}

.contact-form-checkbox {
    margin-top: 20px;
}

.contact-form-checkbox label {
    display: block;
    position: relative;
    padding-left: 45px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.contact-form-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.contact-form-checkbox span {
    margin-left: 0;
    font-size: 12px;
    text-transform: none;
}
.contact-form-checkbox span.wpcf7-list-item {
    display: flex;
    align-items: center;
    height: 30px;
}

.contact-form-checkbox input:checked ~ span:after {
    position: absolute;
    left: 11px;
    top: 6px;
    width: 8px;
    height: 14px;
    border: solid #000;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.contact-form-checkbox span:before {
    position: absolute;
    top: 0;
    left: 0;
    height: 30px;
    width: 30px;
    background-color: #F3F3F3;
    border-radius: 5px;
    box-shadow:inset 1px 2px 1px 0 rgba(0,0,0,0.25);
}

.contact-form-submit input {
    display: inline-block;
    border-radius: 15px;
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
	background-size: 400% 400%;
	animation: gradient 10s ease infinite;
    color: #fff;
    height: 70px;
    margin-top: 30px;
    width: auto;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 19px;
    padding: 25px 40px;
    box-shadow: 0 2px 0 0 rgba(0,0,0,0.1);
}

.contact-form-submit input:disabled {
    opacity: 0.5;
}

.contact-informations-container {
    box-sizing: border-box;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 50px;   
    font-size: 18px;
}

.contact-informations-container svg {
    max-height: 40px;
    width: auto;
    margin-right: 20px;
}

.contact-info {
    margin-top: 50px;
    text-align: center;
}

.contact-info a {
    color: inherit;
}

.contact-info svg {
    display: block;
    margin: 0 auto 20px;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
}

/* Schaubild Module */
.schaubild-module {
    text-align: center;
}

.schaubild-module img {
    max-width: 100%;
    height: auto;
}

/* Footer */
.main-footer {
    padding: 50px 0;
    background-color: #151515;
    color: #fff;
}

.main-footer a {
    color: #fff;
}

.main-footer .footer-title {
    font-size: 18px;
    text-transform: uppercase;
}

.main-footer ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
}

@media only screen and (max-width: 767px) {
    .main-footer ul {
        margin-bottom: 40px;
    }
}

.main-footer li {
    padding: 10px 0;
}

.sub-footer {
    padding: 10px 0;
    background-color: #75BBBC;
    color: #fff;
    font-size: 12px;
}

.error-navbar .dropdown-menu {
    position: relative !important;
    inset: unset !important;
    transform: none !important;
    text-align: center;
}
.error-navbar .dropdown-menu .nav-item a.nav-link {
    padding-right: 0;
}

.text-image-accordion-module ul {
    margin-top: 30px;
}

.accordion-item {
    cursor: pointer;
}

.text-image-module .accordion-headline {
    font-weight: bold;
    line-height: 1.8em;
    margin-bottom: 0;
    margin-top: 30px;
}

.accordion-text {
    max-height: 315px;
    overflow: hidden;
    position: relative;
    line-height: 2em;
    font-size: 16px;
    transition: max-height 0.5s ease;
}

.text-image-accordion-module p {
    font-size: 16px;
}

.accordion-text:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50px;
    background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,#ffffff 100%); 
}

.text-image-module .accordion-text p {
    margin-top: 0;
}

.accordion-item.active .accordion-text {
    max-height: 5000px;
    overflow: visible;
}

.accordion-icon-down {
    width: 25px;
    height: auto;
    position: absolute;
    margin-left: -13px;
    left: 50%;
    bottom: 25px;
}

.accordion-item.active .accordion-icon-down{
    rotate: 180deg;
}

.accordion-item.active .accordion-text:after {
    display: none;
}

.accordion-text ul {
    padding-top: 1px;
}

.text-image-accordion-module li {
    margin-bottom: 15px
}

/* Cookie Banner */
#cookie-notice{
    text-align: justify;
}
#cookie-notice .cn-button {
  margin: 0 0 0 10px;
  margin-top: 0px;
  display: inline-block;
  display: inline-block;
  border-radius: 10px;
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  background-size: auto;
  background-size: auto;
  background-size: 400% 400%;
  animation: gradient 10s ease infinite;
  color: #fff !important;
  height: 40px;
  margin-top: 10px;
  width: auto;
  font-weight: bold;
  font-size: 14px;
  padding: 8px 40px;
  box-shadow: 0 3px 0 0 rgba(0,0,0,0.1);
}