/*===========================================================
 Custom Variable
============================================================*/
:root {
    /* Hamber menu icon style */
    --hamWidth: 40px;
    --hamHeight: 4px;
    --hamMargin: 6px;
    /* summation of --hamMargin adn --hamHeight */
    --hamTranslate: 10px;
    /* summation of --hamMargin adn --hamHeight */
    --hamTranslate3: -10px;
    --hamBg: #00a6e2;
    /*  */
    --blue: #0076a7;
    --blue-bg: #009db5;
    --header-height: 0;
    /*  */
    --white: #fff;
    --black: #000;
    --green: #005e6d;
    --blue-2: #005e6d;
    --darkblue: #083971;
    --sm: 16px;
    --lg: 30px;
    --xs: 1rem;
    --xl: 2.25rem;
    --xxl: 2.75rem;
    --lg: 1.75rem;
    --lg2: 1.25rem;
    --md: 1.375rem;
    --md2: 1.125rem;
    --xxs: 12px;

    /* padding */
    --sectionPadding: 100px;
}

/*===========================================================
 Common CSS
============================================================*/

body {
    font-family: "Open Sans", serif;
    color: var(--black);
    font-size: var(--sm);
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: normal;
    overflow-x: hidden !important;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
ul {
    padding: 0;
    margin: 0;
}

li,
li:hover,
a:hover,
.btn,
.btn:hover {
    transition: all 0.3s ease;
}

a:hover {
    text-decoration: none !important;
}

*:active,
*:focus {
    outline: none;
    border: 0;
}

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

strong {
    font-weight: 700;
}

u {
    border-bottom: 1px solid var(--white);
    line-height: 1;
    text-decoration: unset;
}

.cboth {
    overflow: hidden;
    clear: both;
}

.left {
    float: left;
}

.right {
    float: right;
}

button {
    background-color: transparent;
    border: 0;
}

button:active,
button:focus {
    outline: 0;
    outline: 0;
}

.row {
    padding: 0 15px;
    /* --gutter-x: 30px; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: calc(var(--gutter-x) * -0.5);
    margin-left: calc(var(--gutter-x) * -0.5);
}

.row > * {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--gutter-x) * 0.5);
    padding-left: calc(var(--gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
}

.col {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
}
.col-6 {
    flex: 0 0 auto;
    width: 50%;
}
.col-12 {
    flex: 0 0 auto;
    width: 100%;
}
.container {
    width: 100%;
    padding-right: calc(var(--gutter-x) * 0.5);
    padding-left: calc(var(--gutter-x) * 0.5);
    margin-right: auto;
    margin-left: auto;
    max-width: 1320px;
}

/*===========================================================
 Placeholder Style
============================================================*/

::-webkit-input-placeholder {
    color: var(--black);
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}

:-moz-placeholder {
    color: var(--black);
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}

::-moz-placeholder {
    color: var(--black);
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}

:-ms-input-placeholder {
    color: var(--black);
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}

/*===========================================================
 Scroll To Top
============================================================*/

.go-top {
    bottom: 15px;
    display: none;
    position: fixed;
    right: 15px;
    z-index: 999;
}

.go-top img {
    width: 35px;
    border-radius: 100%;
    border: 1px solid var(--white);
}

.go-top span {
    /*background-color: #4285F4;*/
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    float: right;
    font-weight: 400;
    line-height: 22px;
    padding: 5px 10px;
}

.go-top span:hover {
    color: var(--white);
}

/*===========================================================
Loader
===========================================================*/

.preloader {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: var(--white);
    z-index: 99999999;
}

.spinner {
    width: 80px;
    height: 80px;
    border: 2px solid #f3f3f3;
    border-top: 3px solid #58b8cb;
    border-radius: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-animation: 1s infinite spin;
    animation: 1s infinite spin;
}

@-webkit-keyframes spin {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

#loading-msg {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 25px;
    text-align: center;
    color: #333;
    font-size: 0.8em;
}
/*===========================================================
 Navigation Menu Desktop
============================================================*/
.header-area {
    padding: 25px 0;
}

.header {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.header div {
    display: flex;
}
.header a {
    display: flex;
    align-items: center;
    transition: 0.6s;
}
.header-left {
    display: flex;
    gap: 40px;
}

.header-left img {
    height: 81px;
    width: auto;
}

.header-area {
    background-color: var(--white);
}

/*===========================================================
 Navigation Menu slideout
============================================================*/
main .mobileMenuOpener {
    display: none;
}

.header-area {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: var(--white);
  z-index: 4;
  -webkit-box-shadow: 0 1px 4px 0 #666;
  box-shadow: 0 1px 4px 0 #666;
  padding: 10px 0;

  transition: .5s ease-out;
}

body.admin-bar .header-area {
  top: 32px;
}

.header-area img {
  height: 100px;
  width: auto;

  transition: .5s ease-out;
}

.fixed-header img {
  height: 60px;
}

.hide-header {
    top: -115px !important; /* Moves the header out of view */
}

.panel-header {
    display: none;
}

.slideout-menu {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 256px;
    min-height: 100vh;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    z-index: 0;
    display: none;
}

.slideout-menu-left {
    left: 0;
}

.slideout-menu-right {
    right: 0;
}

.slideout-panel {
    position: relative;
    z-index: 1;
    background-color: var(--white);
    min-height: 100vh;
}

.slideout-open,
.slideout-open body,
.slideout-open .slideout-panel {
    overflow: hidden;
}

.slideout-open .slideout-menu {
    display: block;
}

.slideout-open .slideout-menu {
    background: #34495e;
}

.btn-hamburger {
    cursor: pointer;
}

.menu-section-list {
    padding: 25px 10px;
}

.menu-section-list li a:hover {
    color: #bdc3c7;
}

.menu-section-list li a {
    line-height: 2;
    color: var(--white);
}

.menu-section-list li {
    display: block;
}

.btn-hamburger img {
    width: 27px;
}

/*Hamburger Menu Icon*/
/* .hamburger .line {
    width: 40px;
    height: 5px;
    background-color: #34495e;
    display: block;
    margin: 8px auto;
    transition: all 0.3s ease-in-out;
} */

.hamburger:hover {
    cursor: pointer;
}

.hamburger:hover .line {
    opacity: 0.8;
}

/*===========================================================
 Hamberger
===========================================================*/

.hamburger .line {
    width: var(--hamWidth);
    height: var(--hamHeight);
    background-color: var(--blue);
    display: block;
    margin: var(--hamMargin) auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hamburger:hover {
    cursor: pointer;
}

/* ONE */

.slideout-open .line:nth-child(2) {
    opacity: 0;
}

.slideout-open .line:nth-child(1) {
    -webkit-transform: translateY(var(--hamTranslate)) rotate(45deg);
    -ms-transform: translateY(var(--hamTranslate)) rotate(45deg);
    -o-transform: translateY(var(--hamTranslate)) rotate(45deg);
    transform: translateY(var(--hamTranslate)) rotate(45deg);
}

.slideout-open .line:nth-child(3) {
    -webkit-transform: translateY(var(--hamTranslate3)) rotate(-45deg);
    -ms-transform: translateY(var(--hamTranslate3)) rotate(-45deg);
    -o-transform: translateY(var(--hamTranslate3)) rotate(-45deg);
    transform: translateY(var(--hamTranslate3)) rotate(-45deg);
}

.menu ul li .dropdown-menu li {
    display: block;
    position: relative;
}

.menu ul li .dropdown-menu li a {
    padding: 8px 15px;
    line-height: 1.2;
    display: block;
}

.dropdown-menu {
    margin: 0;
    border: 0;
    border-radius: 0;
}

.dropdown a {
    position: relative;
}

.dropdown > a:hover::after {
    color: var(--black);
}

.dropdown > a::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

/*===========================================================
Accordion
===========================================================*/
.banner-area {
    background-image: url(../img/banner-img.jpg);
    padding: 20px 0;
    position: relative;
}
.banner-area:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3.5rem;
    height: 6rem;
    width: 100%;
    background-color: var(--white);
    transform: skewY(-2deg);
}
.banner-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}
.banner-text {
    max-width: calc(100% - 550px);
    width: 100%;
    padding-left: 8%;
}
.banner-img {
    max-width: 505px;
    width: 100%;
}
.banner-text h1 {
    color: var(--white);
    line-height: 1.27273;
    margin-bottom: 2rem !important;
}
.banner-text p {
    color: var(--white);
    line-height: 1.88889;
}
.map-area {
    padding-bottom: 5rem;
}
.map {
    position: relative;
}

.place-text {
    position: absolute;
    left: calc(50% - 36px);
    bottom: 42px;
    width: 450px;
    max-width: 100vw;
    border-top: 8px solid #00a6dd;
    padding: 1rem 1.25rem 1.25rem;
    background-color: var(--white);
    box-shadow: 0 10px 10px rgba(0, 157, 181, 0.35);
    display: block;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.5s linear;
}

.map-pin.wb-marker-farbe-blue .place-text {
    border-top: 8px solid #00a6dd;
}

.map-pin.wb-marker-farbe-green .place-text {
    border-top: 8px solid #97bf20;
}

.map-pin.wb-marker-farbe-orange .place-text {
    border-top: 8px solid #f7b500;
}

.place-text:before {
    content: "";
    position: absolute;
    left: 20px;
    top: 100%;
    border-color: var(--white) transparent transparent;
    border-style: solid;
    border-width: 16px 16px 0;
}
.map-pin:hover .place-text {
    visibility: visible;
    opacity: 1;
    z-index: 1401;
}

.place-top-text {
    margin-bottom: 15px;
}
.place-text h6 {
    margin-bottom: 5px;
}
.place-text h3 {
    line-height: 1.27273;
}

.place-top-text h6 {
    margin-bottom: 10px;
    color: var(--blue-bg);
    display: flex;
    align-items: center;
    gap: 5px;
}

.place-top-text h6 i {
    color: var(--blue-bg);
    font-size: 20px;
}
.place-text .bttn {
    margin-top: 15px;
}
.place-text p {
    margin: 0;
}
.map-pin {
    position: absolute;
}
.map-pin img {
    width: 36px;
}
.map-bttm {}
.map-bttm ul {
    display: flex;
    margin: 0 !important;
    gap: 3rem;
}

.map-bttm ul li {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0 !important;
    gap: 10px;
    line-height: 1.88889;
    line-height: 1.6;
    font-weight: 600;
}

.overview-area {
    padding-bottom: 100px;
}
.overview-inner {
    display: flex;
    flex-wrap: wrap;
    padding: 0 8%;
    justify-content: space-between;
    margin-bottom: 5rem;
}
.overview-title {
    position: relative;
    margin-bottom: 2.5rem;
}

.overview-title > * {
    display: inline-block;
    padding-right: 20px;
    margin: 0;
    background: var(--white);
    position: relative;
}

.overview-title h2 {
    color: var(--green);
}
.overview-title:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    background-position: 50%;
    background-repeat: repeat-x;
    background-size: auto 2px;
    background-image: linear-gradient(270deg, var(--hamBg) 0, var(--hamBg));
    top: 50%;
    transform: translateY(-50%);
}
.overview-inner div {
    padding: 1.75rem 0;
    width: 32%;
    border-bottom: 1px solid #bfe9f8;
}
.overview-inner div a {
    font-size: var(--md2);
    line-height: 1;
    color: var(--darkblue);
    text-decoration: none;
    gap: 20px;
    display: flex;
    align-items: center;
}
.overview-inner div a span {
    line-height: 1;
}
.overview-inner div a:hover span {
    box-shadow: 0px 1px var(--darkblue);
}
.overview-inner div a i {
    color: var(--hamBg);
    border: 1px solid var(--hamBg);
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 50%;
    text-align: center;
}

.overview-inner div a:hover i {
    color: var(--darkblue);
    border: 1px solid var(--darkblue);
}
/* ============================Schule Area============ */
.school-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.school-text {
    padding-left: 8%;
    padding-right: 30px;
    max-width: calc(100% - 505px);
    width: 100%;
    padding-top: 35px;
}
.school-text h1 {
    color: var(--blue-bg);
    margin-bottom: 2rem !important;
    line-height: 1.27273;
}
.school-text p {
    color: var(--blue-bg);
    line-height: 1.88889;
    margin: 0;
    font-weight: 600;
}

.school-img {
    max-width: 505px;
    width: 100%;
}
.schule-area {
    background: #e8f6f7;
    padding-top: 100px;
}
.schule-inner {
    background: var(--white);
    padding: 5rem 100px;
    border-top: 8px solid var(--blue-bg);
}
.video-area {
    position: relative;
    margin-bottom: 3rem;
}
.video-area:before {
    position: absolute;
    content: "";
}
.facts-area {
    margin-bottom: 3rem;
}
.facts-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 1.25rem 0;
    border-bottom: 1px solid #bfe9f8;
}
.facts-list:last-child {
    border: 0;
}
.facts-list h4 {
    max-width: 30%;
    width: 100%;
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 1.88889;
}
.facts-list p {
    max-width: 70%;
    width: 100%;
    font-weight: 400;
    line-height: 1.88889;
    margin: 0;
}
.schule-inner h3 {
    margin-bottom: 0.5em !important;
    color: var(--green);
}

.facts-title {
    position: relative;
    padding-top: 40px;
}
.agile-text.facts-area {
    position: relative;
    padding-bottom: 40px;
}
.agile-text.facts-area:before {
    position: absolute;
    content: "";
    width: 70%;
    height: 1px;
    bottom: 0;
    background: var(--green);
}
.facts-title:before {
    position: absolute;
    content: "";
    width: 70%;
    height: 1px;
    top: 0;
    background: var(--green);
}
.facts-title p {
    font-weight: 400;
    line-height: 1.88889;
    color: var(--green);
}
.agile-text div {
    margin-bottom: 2rem;
}
.agile-text p a {
    font-weight: 400;
    font-size: var(--md2);
    line-height: 1.88889;
    color: var(--hamBg);
}
.video-area iframe {
    width: 100%;
}
.agile-haltung {
    margin-bottom: 3rem;
}
.agile-haltung h3 {
    margin-bottom: 4rem !important;
}
.agile-haltung img {
    float: right;
    width: 387px;
    margin-right: -50px;
}
.zuruck-bttn {
    margin: 5rem 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 15px;
}
.bttn-blue {
    display: inline-flex !important;
}
.bttn-blue {
    background: var(--blue-bg) !important;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.zuruck-bttn .sprite-holder {

}
/* ======================== */
.reiseplan-area {
    margin-bottom: 5rem;
}
.reiseplan-inner {
    /* min-height: 680px; */
    height: 100%;
    position: relative;
}
.reiseplan-img {
    transition: 0.6s;
    cursor: pointer;
}
.reiseplan-text {
    bottom: 90%;
    opacity: 1;
    z-index: 1401;
}

.reiseplan-card {
    position: absolute;
}
.reiseplan-card:hover .reiseplan-img {
    transform: scale(1.06);
}
.reiseplan-card:hover .reiseplan-text {
    bottom: 90%;
    z-index: 1401;
    visibility: visible;
    opacity: 1;
}
.reiseplan-text {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 90%;
    width: 450px;
    max-width: 100vw;
    border-top: 8px solid var(--blue-bg);
    padding: 1rem 1.25rem 1.25rem;
    background-color: var(--white);
    box-shadow: 0 10px 10px rgba(0, 157, 181, 0.35);
    display: block;

    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.5s linear;
}

.reiseplan-text:before {
    content: "";
    position: absolute;
    left: calc(50% - 24px);
    top: 100%;
    border-color: var(--white) transparent transparent;
    border-style: solid;
    border-width: 24px 24px 0;
}
.reiseplan-text .bttn {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.5em;
}

/* ======================Reiseplan Modal=============== */
.reiseplan-modal-area {
    padding-top: 6rem;
}
.reiseplan-modal-inner {
    max-width: 1000px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.reiseplan-modal-title {
    margin-bottom: 2.5rem;
    position: relative;
}
.reiseplan-modal-title h2 {
    position: relative;
    background: var(--white);
    z-index: 5;
    display: inline-block;
    margin: 0;
    padding-right: 15px;
}
.reiseplan-modal-title:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: var(--hamBg);
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}
.modal-inner-title h3 {
    margin-bottom: 5rem;
}
.reiseplan-title h2 {
    color: var(--green);
}
.modal-list {
    display: flex;
    flex-wrap: wrap;
    padding: 1.75rem 0;
    border-bottom: 1px solid #bfe9f8;
}
.modal-list a {
    text-decoration: none;
    color: var(--hamBg);
}
.modal-head {
    margin: 2rem 0 !important;
}
.modal-list > p:first-child {
    max-width: 300px;
    width: 100%;
    font-weight: 600;
}
.modal-list div {
    max-width: calc(100% - 300px);
    width: 100%;
}
.modal-list div p {
    font-weight: 400;
}
.modal-bttm {
    padding: 5rem 0;
}
/*===========================================================
Accordion
===========================================================*/
.accordion-area {
    background-color: var(--yellow);
    padding-top: var(--sectionPadding);
    padding-bottom: 70px;
}
.acc-container {
    margin: 2rem 0;
}
.acc .acc-head {
    position: relative;
    cursor: pointer;
    padding: 1.75rem 3rem 1.75rem 0;
    border-top: 1px solid #bfe9f8;
}
.acc-head h4 {
    margin: 0 !important;
    line-height: 1.1;
}

.acc-head::before,
.acc-head::after {
    content: "";
    position: absolute;
    top: 50%;
    transition: all 0.3s;
}

.acc-head::before {
    right: 0;
    width: 32px;
    height: 32px;
    margin-top: -13px;
    background-image: url("../img/circle-plus.svg");
    background-repeat: no-repeat;
    background-repeat: no-repeat;
}

.acc-head::after {
    right: 21px;
    width: 14px;
    height: 26px;
    margin-top: -2px;
}

.acc-head p {
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.36;
    letter-spacing: normal;
    color: var(--black);
    margin-bottom: 0;
}

.acc-content {
    display: none;
}

.acc-head.active::before {
    transform: rotate(45deg);
}

.acc-title {
    margin-bottom: 30px;
}
.acc-title h2 {
    font-weight: 600;
    line-height: 1.27;
    color: var(--black);
}
.acc-content h6 strong {
    display: block;
}
.acc-content h6 {
    font-weight: normal;
    line-height: 1.5;
    margin: 0;
    padding-bottom: 2rem;
}

.acc-content-text {
    margin-top: 27px;
}
.acc-content-text ul {
    margin: 0;
    padding-left: 10px;
}
.acc-content-text ul li,
.acc-content-text p {
    font-weight: normal;
    line-height: 1.5;
    color: var(--black);
    margin: 0 !important;
    list-style: none;
}
.acc-content-text ul li {
    position: relative;
    padding-left: 12px;
}
.acc-content-text ul li:before {
    position: absolute;
    content: "";
    width: 3px;
    height: 3px;
    background: var(--black);
    border-radius: 50%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* ============================Footer Area============ */
.footer-area {
    position: relative;
}
.footer-area:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--white);
    border-top: 8px solid var(--hamBg);
}
.footer-area:before {
    width: 100%;
    position: absolute;
    content: "";
    background-image: none;
    top: -1.5rem;
    height: 10rem;
    background-color: #97bf20;
    transform: skewY(-4deg);
}
.footer-inner {
    padding: 3rem 0 2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer {
    position: relative;
    z-index: 1;
    padding-top: 50px;
}
.footer-left {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.footer-left a {
    display: flex;
}
.footer-right {
    max-width: 760px;
    width: 100%;
    text-align: right;
}
.logo-stiftung {
    width: 170px;
}
.logo-stiftung img {
    width: 100%;
}
.footer-right p {
    margin-bottom: 2rem;
    line-height: 1.625;
}
.footer-right div {
    display: flex;
    gap: 25px;
    justify-content: flex-end;
}
.footer-right div a {
    text-decoration: none;
    color: var(--green);
    font-weight: 600;
    white-space: nowrap;
}
.footer-right div a:hover {
    text-decoration: underline !important;
}
.footer-bttm {
    display: flex;
    display: flex;
    gap: 2rem;
    padding-bottom: 3.5rem;
    border-top: 1px solid var(--darkblue);
    padding-top: 1rem;
}
.footer-bttm p {
    margin: 0;
    color: var(--darkblue);
    font-size: 0.875rem;
}
.footer-bttm a {
    text-decoration: none;
    color: var(--darkblue);
    font-size: 0.875rem;
    font-weight: 400;
}

.mobile-logo {
  align-items: center;
}

.mobile-logo img {
  height: 50px;
  width: auto;
}

.special-padding {
  padding-left: 100px;
  padding-right: 100px;
}

/*===========================================================
 Responsive Menu
===========================================================*/
@media (min-width: 1400px) {
}

@media (min-width: 992px) {
    .dropdown:hover > a + .dropdown-menu {
        display: block;
    }

    .dropdown-menu .dropdown-menu {
        position: absolute;
        left: 100%;
        top: 0;
    }

    .dropdown .dropdown > a::after {
        transform: rotate(-90deg);
        margin-top: -4px;
    }
}

@media (max-width: 991px) {
    .special-padding {
      padding-left: 15px;
      padding-right: 15px;
    }

    .overview-title {
      padding-left: 15px;
      padding-right: 15px;
    }

    #main {
        padding-top: 0;
    }

    .header-area {
        display: none;
    }

    .mobile-logo {
        display: flex;
        justify-content: center;
        width: 100%;
        gap: 50px;
    }

    .dropdown-menu {
        padding-top: 0;
    }

    .menu ul li .dropdown-menu li {
        padding-left: 10px;
    }

    .menu ul li .dropdown-menu li a {
        padding-left: 0;
        padding-right: 0;
    }

    .dropdown-menu {
        width: 100%;
        background-color: transparent;
        background-clip: padding-box;
        border: none;
        position: unset;
        top: unset;
    }

    main .mobileMenuOpener {
        display: block;
        position: absolute;
        width: 20px;
        height: 100%;
        z-index: 10;
    }

    .menu ul li {
        display: block;
    }

    .menu ul li a {
        color: var(--white);
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        line-height: 2;
        text-decoration: none;
    }

    .menu ul li .dropdown-menu li a {
        line-height: 2;
    }

    .dropdown > a::after {
        right: 10px;
        position: absolute;
        top: 50%;
        margin-top: -1px;
    }

    /*Menu Activation*/
    .panel-header {
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: var(--white);
        box-shadow: 0px 1px 3px #eee;
        padding: 10px 15px;
    }
}

/*===========================================================
Containers
============================================================*/
@media (max-width: 576px) {
    .container {
        max-width: 90%;
    }
}
@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}
@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}
@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}
@media (min-width: 1400px) {
    .container {
        max-width: 1200px !important;
    }
}

@media (max-width: 379px) {
}

/*===========================================================
Responsive
============================================================*/
@media (max-width: 1199px) {
    :root {
        --sm: 16px;
        --xs: 1rem;
        --xxl: 2.35rem;
        --xl: 2rem;
        --lg: 1.55rem;
        --lg2: 1.15rem;
        --md: 1.275rem;
        --md2: 1.125rem;
        --xxs: 12px;
    }
    .school-img {
        max-width: 450px;
        width: 100%;
    }
    .school-text {
        padding-left: 0;
        padding-right: 10px;
        max-width: calc(100% - 450px);
        padding-top: 20px;
    }
    .banner-text {
        padding-left: 0;
    }
    .footer {
        padding: 0;
    }
    .footer-inner {
        padding: 4rem 0;
        margin-top: 8px !important;
    }
    .footer-right {
        text-align: left;
        padding-top: 2rem;
    }
    .footer-right div {
        justify-content: flex-start;
    }
    .schule-inner {
        padding: 5rem 20px;
    }
    .zuruck-bttn {
        gap: 8px;
    }
    .agile-haltung img {
        width: 300px;
        margin-right: 0;
    }
    .modal-list > p:first-child {
        max-width: 250px;
    }
    .modal-list div {
        max-width: calc(100% - 250px);
    }
}
@media (max-width: 991px) {
    :root {
        --sm: 16px;
        --xs: 1rem;
        --xxl: 2.15rem;
        --xl: 1.9rem;
        --lg: 1.45rem;
        --lg2: 1.15rem;
        --md: 1.275rem;
        --md2: 1.125rem;
        --xxs: 12px;
    }
    .banner-area {
        padding-top: 60px;
        padding-bottom: 30px;
    }
    .banner-inner {
        flex-direction: column;
    }
    .banner-text {
        max-width: 100%;
    }
    .map-bttm {
        position: relative;
    }
    .map-bttm ul {
        gap: 30px;
    }
    .overview-inner {
        padding: 0 15px;
    }
    .schule-inner {
        /* padding: 5rem 0; */
    }
    .agile-haltung img {
        width: 300px;
        margin-right: 0;
    }
    .school-text {
        padding-right: 0;
        max-width: 100%;
        padding-top: 20px;
    }
    .school-inner {
        justify-content: flex-end;
    }
    .zuruck-bttn {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 15px;
    }
    .modal-list > p:first-child {
        max-width: 200px;
    }
    .modal-list div {
        max-width: calc(100% - 200px);
    }
}
@media (max-width: 767px) {
    :root {
        --sm: 16px;
        --xs: 1rem;
        --xxl: 2rem;
        --xl: 1.7rem;
        --lg: 1.3rem;
        --lg2: 1.15rem;
        --md: 1.17rem;
        --md2: 1.1rem;
        --xxs: 12px;
    }
    .map-bttm {
        flex-direction: column;
    }
    .map-bttm ul {
        flex-direction: column;
        gap: 20px;
    }
    .overview-inner div a {
        gap: 10px;
    }
    .overview-inner div i {
        width: 32px;
        height: 32px;
        line-height: 32px;
    }
    .overview-area {
        padding-bottom: 50px;
    }
    .footer-right div {
        flex-direction: column;
        gap: 15px 0;
    }
    .place-text:before {
        left: 50%;
        transform: translateX(-50%);
    }
    .facts-list h4 {
        max-width: 25%;
    }
    .facts-list p {
        max-width: 75%;
    }
    .video-area iframe {
        height: 400px;
    }
    .modal-list > p:first-child {
        max-width: 110px;
    }
    .modal-list div {
        max-width: calc(100% - 110px);
    }
    .modal-bttm {
        padding: 2rem 0;
    }
    .modal-inner-title h3 {
        margin-bottom: 3rem;
    }
    .reiseplan-modal-area {
        padding-top: 4rem;
    }
    .reiseplan-text {
        width: 300px;
    }
}
@media (max-width: 575px) {
    :root {
        --sm: 16px;
        --xs: 1rem;
        --xxl: 2rem;
        --xl: 1.75rem;
        --lg: 1.35rem;
        --lg2: 1.15rem;
        --md: 1.175rem;
        --md2: 1.125rem;
        --xxs: 12px;
    }
    .acc-head::before {
        width: 28px;
        height: 28px;
    }
    .overview-inner div {
        width: 48%;
    }
    .footer-bttm {
        padding: 2.5rem 0;
    }
    .footer-bttm {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1rem;
    }
    .video-area iframe {
        height: 350px;
    }
    .place-text {
        width: 270px;
    }
    .place-text {
        left: 50%;
        transform: translateX(-50%);
    }
    .place-text .bttn {
        width: 100%;
    }
    .facts-list h4 {
        max-width: 100%;
    }
    .facts-list p {
        max-width: 100%;
        padding-left: 20px;
    }
    .modal-list p {
        margin-bottom: 5px;
    }
    .modal-list > p:first-child {
        max-width: 100%;
    }
    .modal-list div {
        max-width: 100%;
    }
    .modal-list {
        padding: 1rem 0;
    }
    .mobile-logo {
        gap: 10px;
    }
}
@media (max-width: 400px) {
    .overview-inner div {
        width: 100%;
    }
    .mobile-logo a {
        width: 70px;
        display: flex;
    }
}
@media (max-width: 767px) {
    /* .map-pin:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        border-color: var(--white) transparent transparent;
        border-style: solid;
        border-width: 12px 12px 0;
        opacity: 0;
        visibility: hidden;
        z-index: 10;
    } */
    .place-text {
        transform: translateX(-50%);
        left: 50%;
        /* box-shadow: none; */
        /* opacity: 1; */
        /* visibility: visible; */
    }
    .map-pin:hover:before {
        opacity: 1;
        visibility: visible;
    }
    .map-pin img {
        width: 24px;
    }
}
