/* urbanist-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: 400;
    src: url('../Fonts/urbanist-v18-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* urbanist-italic - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Urbanist';
    font-style: italic;
    font-weight: 400;
    src: url('../Fonts/urbanist-v18-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* urbanist-500 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: 500;
    src: url('../Fonts/urbanist-v18-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* urbanist-500italic - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Urbanist';
    font-style: italic;
    font-weight: 500;
    src: url('../Fonts/urbanist-v18-latin-500italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* urbanist-600 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: 600;
    src: url('../Fonts/urbanist-v18-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* urbanist-600italic - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Urbanist';
    font-style: italic;
    font-weight: 600;
    src: url('../Fonts/urbanist-v18-latin-600italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* urbanist-700 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: 700;
    src: url('../Fonts/urbanist-v18-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* urbanist-700italic - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Urbanist';
    font-style: italic;
    font-weight: 700;
    src: url('../Fonts/urbanist-v18-latin-700italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    font-family: 'Urbanist', sans-serif;
    font-weight: 400;
    color: #0F3264;
    padding-top: 86.9px;
    width: 100%;
}

.bg-red {
    background-color: #EB5050;
    color: #ffffff;
}

.error.form-text{
    background-color: #EB5050;
    color: #ffffff;
    padding:5px 8px;
}
.bg-red-sekundaer{
    background: #F0917D;
}

.navbar-brand-image {
    width: 162px;
    height: auto;
}
.header-red h1,
.text-red {
    color: #EB5050;
}

.bg-blue {
    background-color: #0F3264;
}

.bg-blue-sekundaer{
    background: #325587;
}

.bg-yellow {
    background-color: #F5E646;
}

.bg-yellow-sekundaer{
    background-color: #FAFAB9;
}

.bg-grey{
    background-color: #F6F6F6;
}

/*Navigation*/
#navbar {
    max-width: 100vw;
}

.navbar-brand-image {
    width: 162px;
    height: auto;
}

.navbar-nav .nav-link {
    font-size: 16px;
    color: #ffffff;
    text-decoration: none;
    padding: 5px 20px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:active,
.navbar-nav .nav-item.active .nav-link {
    text-decoration: underline;
}

.navbar-toggler {
    border: 0 !important;
    border-radius: 0 !important;
    border-color: #fff;
    border-image: none;
    box-shadow: none !important;
    outline: 0 !important;
}

.toggler-icon-box {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 24px;
}

.toggler-icon {
    top: auto;
    bottom: 0;
    transition-delay: .13s;
    transition-timing-function: cubic-bezier(.55,.055,.675,.19);
    transition-duration: .13s;
    display: block;
}

.toggler-icon,
.toggler-icon:before,
.toggler-icon:after {
    position: absolute;
    width: 40px;
    height: 6px;
    transition-timing-function: ease;
    transition-duration: .15s;
    transition-property: transform;
    border-radius: 0;
    background-color: #fff;
}

.toggler-icon:after,
.toggler-icon:before {
    display: block;
    content: "";
}

.toggler-icon:before {
    transition: top .12s cubic-bezier(.33333,.66667,.66667,1) .2s,transform .13s cubic-bezier(.55,.055,.675,.19);
    top: -10px;
}

.toggler-icon:after {
    top: -20px;
    transition: top .2s cubic-bezier(.33333,.66667,.66667,1) .2s,opacity .1s linear;
    bottom: -10px;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon {
    transition-delay: .22s;
    transition-timing-function: cubic-bezier(.215,.61,.355,1);
    transform: translate3d(0,-10px,0) rotate(-45deg);
}

.navbar-toggler[aria-expanded="true"] .toggler-icon:before {
    top: 0;
    transition: top .1s cubic-bezier(.33333,0,.66667,.33333) .16s,transform .13s cubic-bezier(.215,.61,.355,1) .25s;
    transform: rotate(-90deg);
}

.navbar-toggler[aria-expanded="true"] .toggler-icon:after {
    top: 0;
    transition: top .2s cubic-bezier(.33333,0,.66667,.33333),opacity .1s linear .22s;
    opacity: 0;
}

.navbar-nav .nav-link {
    text-align: center;
    font-size: 50px;
    margin-bottom: 0;
}

#scroll-to-top {
    position: fixed;
    bottom: 50px;
    right: 25px;
    width: 50px;
    height: 50px;
    z-index: 1000;
}

a#to-top {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: url(../Icons/arrow-up-weiss.svg) no-repeat center center;
    background-color: transparent;
    background-size: cover;
    box-shadow: -10px 6px 26px rgba(0, 0, 0, .16);
}

@media(max-width: 991px) {
    #navbar ul.navbar-nav {
        height: calc(100vh - 86.9px);
        padding-top: 100px;
    }


}

/*Links / Buttons*/
a {
    color: #000;
    text-decoration: underline;
}

a:hover,
a:active,
a:focus {
    text-decoration: none;
}

.bg-red a {
    color: #ffffff;
}

.btn.btn-primary {
    background-color: #0F3264;
    color: #ffffff;
    border: 0;
    text-transform: uppercase;
    border-radius: 0;
    outline: none;
    padding-left: 25px;
    padding-right: 25px;
}

.btn.btn-primary:hover,
.btn.btn-primary:active,
.btn.btn-primary:focus {
    background-color: #325587;
}
/*Header*/
h1 {
    font-size: 50px;
    font-weight: 600;
    color: #0F3264;
}

h2 {
    font-size: 30px;
    font-weight: bold;
    color: #0F3264;
    margin-bottom: 25px;
}

/*Schmetterlingspädagogik*/
h2#header-298{
    margin-left:-18px;
}

.bg-blue h1,
.bg-blue h2,
.bg-red h1,
.bg-red h2 {
    color: #ffffff;
}


.accordion-item:first-of-type > .accordion-header .accordion-button,
.accordion-item:first-of-type {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.accordion-item:last-of-type > .accordion-header .accordion-button,
.accordion-item:last-of-type {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.accordion-item{
    margin-bottom:25px;
}
.accordion-button {
    font-size:16px;
    font-weight: 700;
}

.accordion-body{
    background-color: #f6f6f6;
}

.accordion {
    border-radius:0;
}

/*Kontaktformular*/

#contact-box label.form-label{
    display: none;
}

.form-control,
.form-control:focus {
    border: 0;
    border-radius: 0;
    background-color: #fafab9;
    color: #0F3264;
}

.form-group {
    margin: .375rem 0;
}

.form-control::-webkit-input-placeholder {
    color: #0F3264;
}
.form-control::-moz-placeholder {
    color: #0F3264;
}
.form-control::placeholder {
    color: #0F3264;
}

textarea.form-control {
    min-height: 150px;
}

.form-check {
    padding-left: 3px;
    padding-top: 15px;
}

.form-group span.error {
    color: #0F3264;
    font-weight: bold;
}

.form-navigation {
    padding-top: 25px;
    padding-bottom: 50px;
}

@media(max-width: 767px) {
    .form-navigation .btn-toolbar {
        justify-content: center;
    }
}

/*Modal*/
.modal-content,
.modal-header,
.modal-body,
.modal-footer {
    border: 0;
    border-radius: 0;
}

.modal-content {
    border: none;
}

#myModalLan4you .modal-content,
#modal-downloads .modal-content{
    background-color:#0F3264;
    color:#fff;
}


#modal-downloads .modal-header h2,
#modal-downloads .modal-header,
#modal-downloads .modal-body{
    color:#fff;
}

#myModalLan4you .modal-header h2,
#myModalLan4you .modal-header,
#myModalLan4you .modal-body{
    color:#fff;
    font-size:24px;
    text-align:center;
}
#myModalLan4you .modal-body{
    padding-bottom:50px;
}

#myModalLan4you .confirmation-message-header{
    display:none;
}

#myModalLan4you .modal-body a,
#modal-downloads .modal-body a{
    display:inline-block;
    width:100%;
    color:#000;
    background-color:#fff;
    line-height:60px;
    padding-top:10px;
    height:80px;
    text-align:left;
    padding-left:15px;
    margin-bottom: 20px;
}

a.download-link{
    background-image: url(../Icons/download.svg);
    background-repeat: no-repeat;
    background-position: 98% 50%;
    background-size: 30px auto;
}

#myModalLan4you .modal-header .btn-close,
#modal-downloads .modal-header .btn-close{
    color:#fff;
    margin-top: -30px;
}

#myModalLan4you .modal-header .btn-close,
#modal-downloads .modal-header .btn-close {
    background-image: url(../Icons/close.svg);
    background-repeat: no-repeat;
    width:40px;
    height:40px;
    background-size:30px auto;
}



#error-404 {
    min-height: calc(100vh - 170px);
}

#error-404 h1 {
    font-size: 100px;
}

footer {
    background-color: #0F3264;
    color: #ffffff;
    padding: 25px 50px;
    min-height:160px;
}

footer .sitemap-item .sitemap-link {
    color: #ffffff;
    text-decoration: none;
    padding: 5px 10px;
}

footer .social-media-list{
    margin-top:30px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

footer .sm-list-item{
    text-align:center;
    display:flex;
    justify-content:center;
    margin-right:20px;
}

footer .sm-list-item a#sm-insta{
width:60px;
    height:60px;
    background-image: url(../Icons/sm-insta.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 60px auto;
}

footer .sm-list-item a#sm-fb{
    width:60px;
    height:60px;
    background-image: url(../Icons/sm-fb.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 60px auto;
}



footer .sitemap-item .sitemap-link:hover,
footer .sitemap-item .sitemap-link:active,
footer .sitemap-item .sitemap-link:focus {
    text-decoration: underline;
}

footer ul.sitemap {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding-top:20px;
}

footer .sitemap-item{
    text-align:center;
    display:flex;
    justify-content:center;
}

/*Kontakt*/
img.img-230 {
    width: 180px;
}


/**Hauptseiten**/
#error-start,
#legal-start,
#about-start,
#anmeldung-start,
#gallery-start,
#album-start,
#news-detail-header,
#aktuelles-start,
#faq-start,
#contact-start{
    padding-top:60px;
    color:#fff;
    min-height:400px;
}

#error-start h1,
#legal-start h1,
#about-start h1,
#anmeldung-start h1,
#gallery-start h1,
#album-start h1,
#news-detail-header h1,
#aktuelles-start h1,
#faq-start h1,
#contact-start h1{
    color:#fff;
    font-size: 50px;
}

#about-start h1,
#faq-start h1{
    color:#0F3264;

}

#error-start,
#album-start,
#gallery-start,
#legal-start,
#anmeldung-start,
#contact-start{
    background-image: url(../Icons/illustration-momento-weg-blau-double.svg);
    background-repeat: repeat-x;
    background-position: center bottom;
    background-size: 108px auto;
}

#about-start,
#faq-start{
    background-image: url(../Icons/illustration-momento-weg-yellow-double.svg);
    background-repeat: repeat-x;
    background-position: center bottom;
    background-size: 108px auto;
}
#news-detail-header,
#aktuelles-start{
    background-image: url(../Icons/illustration-momento-weg-red-double.svg);
    background-repeat: repeat-x;
    background-position: center bottom;
    background-size: 108px auto;
}

#anmeldung-contact,
#aktuelles-contact-text,
#aktuelles-liste{
    padding-top:50px;
    padding-bottom:80px;
}

#aktuelles-liste{
    color:#0F3264;
}

.error-text{
    padding-top:80px;
    padding-bottom: 80px;
}

.error-text h1{
    margin-bottom:50px;
}
.button-link-box{
    text-align:center;
}
.error-text{
    font-size:22px;
}

.error-text  .button-link-box{
    text-align:center;
}



#aktuelles-liste h3 a{
    color:#0F3264;
    font-size: 30px;
    font-weight:700;
    text-decoration:none;
}

#about-team-text,
#start-contact,
#anmeldung-contact-text,
#aktuelles-contact-text{
   max-width:550px;
    margin-left:auto;
    margin-right: auto;
}

#about-team-text .button-link-box,
#start-contact .button-link-box,
#anmeldung-contact-text .button-link-box,
#aktuelles-contact-text .button-link-box{
    text-align:center;
}

#faq-section-1,
#faq-section-2,
#faq-section-3 {
    padding-top: 50px;
    padding-bottom: 80px;
}

/*NEWS Detail*/
.news-single .footer{
    border:none !important;
    padding:50px 40px !important;
    margin:0 !important;

}

.news-single .teaser-text,
.footer h2,
.footer.bg-yellow{
    color:#0F3264 !important;
}

#contact-infos a,
#contact-infos{
    color:#0F3264;
}

/*Map*/
#map,
gmp-map {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}

#map {
    min-height: 400px;
    overflow: hidden;
}

gmp-map h1.map-header {
    margin: 0 !important;
}

gmp-map {
    color: #000;
}

/*Sidebar*/
#sidemenu {
    display: block;
    position: fixed;
    right: -210px;
    top: 150px;
    height: 210px;
    width: 260px;
    z-index: 1032;
    transition: all .3s ease-in;
    -webkit-transition: all .3s ease-in;
}


#sidemenu.open{
    right: 0;
    height: 215px;
    transition: all .3s ease-in;
    -webkit-transition: all .3s ease-in;
}

#toggle-sidebar {
    display: block;
    position: absolute;
    top: 150px;
    left: 0;
    width: 50px;
    height: 50px;
    background: #EB5050;
    cursor: pointer;
    color: #fff;
    padding: 0;
    text-align: center;
    line-height:50px;
    font-size: 45px;
    font-weight: 700;
}




#toggle-sidebar:hover,
#toggle-sidebar:active,
#toggle-sidebar:focus {
    color: #fff;
}

nav.sidebar-menu {
    display: block;
    position: absolute;
    left: 50px;
    width: 210px;
    min-height: 200px;
    padding-top: 5px;
    background: #EB5050;
}

a.sidebar-link {
    display: block;
    position: relative;
    padding: 10px 22px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
}

a.sidebar-link:hover,
a.sidebar-link:active,
a.sidebar-link:focus {
    color: #fff;
    text-decoration: underline;
}
/*Anmeldung SideBar*/
body[data-pageid="53"] #toggle-sidebar{
    background: #F5E646;
    color: #EB5050;
}

body[data-pageid="53"] nav.sidebar-menu{
    background: #F5E646;
    color: #EB5050;
}

body[data-pageid="53"] a.sidebar-link {
    color: #EB5050;
}


a.sidebar-link.phone {
    background: url(../img/icons/icon-phone.svg) no-repeat;
    background-size: 25px 25px;
    background-position: 20px center;
    padding-left: 55px;
}

a.sidebar-link.phone:hover,
a.sidebar-link.phone:active,
a.sidebar-link.phone:focus {
    background: url(../img/icons/icon-phone-orange.svg) no-repeat;
    background-size: 25px 25px;
    background-position: 20px center;
    padding-left: 55px;
}

@media(max-width: 767px) {
    #sidemenu {
        right: -210px;
        top: 150px;
        height: 210px;
        width: 260px;
    }

    nav.sidebar-menu {
        height: 200px;
        width: 275px;
    }

    a.sidebar-link {
        font-size: 16px !important;
    }

}


#bottom-claim {
    padding-bottom: 50px;
    padding-left: 50px;
    padding-right: 50px;

}



#bottom-claim h2 {
    color: #EB5050;
    font-size: 50px;
    font-weight: 600;
}

#section-bottom-claim .img-contact{
    max-width:130px;
}


#section-bottom-claim {
    padding-top:50px;
    padding-bottom: 110px;
    background-image: url(../Icons/illustration-momento-weg-gelb-voll.svg);
    background-repeat: repeat-x;
    background-position: center bottom;
    background-size: 108px auto;
}

/*Startseite Top*/

#logo-top {
    padding-top: 50px;
    padding-left: 50px;
    padding-bottom: 50px;
}

#logo-top img {
    width: 558px;
}

#about-paedagogik-image-1,
#about-visions-image,
#about-paedagogik-image,
#faq-image,
#top-image,
#contact-image {
    position: relative;
    min-height: 485px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
}

#about-paedagogik-image{
    min-height: 400px;
}
#about-paedagogik-text-right{
    min-height:1100px;
}


#top-claim {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 35px;
    padding-bottom: 110px;
    background-image: url(../Icons/illustration-momento-weg-gelb.svg);
    background-repeat: repeat-x;
    background-position: center bottom;
    background-size: 108px auto;
}

#top-claim h2 {
    font-size: 50px;
    font-weight: 600;
    color: #0F3264;
    text-align:center;
}

#anmeldung-first-step,
#contact-absicht-left-text{
    background-image: url(../Icons/illustration-momento-red-light.svg);
    background-repeat: repeat-x;
    background-position: center bottom;
    background-size: 108px auto;
    min-height:400px;
}

#about-room-pics,
#about-paedagogik-text-left-1,
#about-paedagogik-text-left-2,
#about-paedagogik-text-left-3,
#about-paedagogik-text-right-1,
#about-paedagogik-text-right-2,
#about-paedagogik-text-right-3,
#about-visions-text,
#about-paedagogik-text-left,
#about-paedagogik-text-right,
#anmeldung-kind-text,
#anmeldung-schulgeld-text,
#anmeldung-first-step,
#anmeldung-first-step-dl,
#contact-absicht-left-text,
#contact-absicht-right-text,
#start-contact,
#about-team-text,
#start-findus-map,
#start-findus-text,
#start-faq,
#start-about,
#start-registration,
#start-news,
#top-text,
#schultraeger-text {
    padding: 50px 40px;
}

#about-team-members h3{
    padding-top:20px;
}


#anmeldung-first-step{
    color:#0F3264;
    font-size:30px;
    font-weight: 700;
}

#about-paedagogik-text-left-2,
#about-paedagogik-text-left-1,
#start-faq,
#start-registration,
#anmeldung-kind-text{
    color:#fff;
    font-size:16px;
    text-align: center;
}

#about-team-text a.btn-primary,
#start-contact a.btn-primary,
#start-faq a.btn-primary,
#start-registration a.btn-primary,
#contact-absicht-right-text  a.btn-primary,
#anmeldung-kind-text a.btn-primary{
    color: #0F3264;
    background-color: #F5E646;
    text-transform: uppercase;
}

#about-team-text a.btn-primary:active,
#about-team-text a.btn-primary:focus,
#about-team-text a.btn-primary:hover,
#start-contact a.btn-primary:active,
#start-contact a.btn-primary:focus,
#start-contact a.btn-primary:hover,
#start-faq a.btn-primary:active,
#start-faq a.btn-primary:focus,
#start-faq a.btn-primary:hover,
#start-registration a.btn-primary:active,
#start-registration a.btn-primary:focus,
#start-registration a.btn-primary:hover,
#contact-absicht-right-text  a.btn-primary:active,
#contact-absicht-right-text  a.btn-primary:focus,
#contact-absicht-right-text  a.btn-primary:hover,
#anmeldung-kind-text a.btn.btn-primary:active,
#anmeldung-kind-text a.btn.btn-primary:focus,
#anmeldung-kind-text a.btn-primary:hover {
    background-color:  #FAFAB9;
}

#about-room-text,
#about-paedagogik-text-right,
#anmeldung-schulgeld-text{
    color:#0F3264;
    font-size:16px;
}

#about-room-text h2,
#about-paedagogik-text-right h2,
#anmeldung-schulgeld-text h2{
    color:#0F3264;
    font-size:30px;
    font-weight: 700;
}

.button-link-box{
    margin-top:50px;
}

.circle-claim-red,
.circle-claim {
    position: absolute;
    display: block;
    height: 225px;
    width: 225px;
    padding: 55px 15px;
    border-radius: 50%;
    background-color: #F5E646;
    color: #EB5050;
    font-size: 26px;
    line-height: 1.1;
    font-weight: 700;
    text-align: center;
    transform: rotate(-15deg);
    transform-origin: center center;
    z-index: 2;
}

.circle-claim-red{
    background-color: #EB5050;
    color:#fff;
    padding: 65px 30px;
}

#top-circle {
    left: 15px;
    bottom: 25px;
}

#top-circle.anmeldung {
    left: 167px;
    bottom: -423px;
    z-index:5;
}



#top-circle-red {
    left: 203px;
    top: 830px;
}

#bottom-circle {
    padding: 40px 15px;
}

#schultraeger-text {
    padding-bottom: 100px;
}


/*hintergrund Illus*/
#about-paedagogik-text-left-2 .eye-illu,
#start-about .eye-illu{
    background-image: url(../Icons/Momento_Icons_Auge.svg);
    background-repeat: no-repeat;
    background-position: 0;
    background-size: 160px auto;
    width: 160px;
    height: 160px;
    position: relative;
    top: 0px;
    left: 0px;
    z-index: 3;
    display: inline-block;
    margin-bottom: 20px;
}

#about-paedagogik-text-left-2 .eye-illu{
    background-image: url(../Icons/Momento_Icons_Auge-blue.svg);
}

#about-paedagogik-text-left-1 .flower-illu{
    background-image: url(../Icons/Momento_Icons_Flower.svg);
    background-repeat: no-repeat;
    background-position: 0;
    background-size: 160px auto;
    width: 160px;
    height: 160px;
    position: relative;
    top: 0px;
    left: 0px;
    z-index: 3;
    display: inline-block;
    margin-bottom: 20px;
}

#about-team,
#about-visions-text,
#start-about{
    background-image: url(../Icons/illustration-momento-red-light.svg);
    background-repeat: repeat-x;
    background-position: center bottom;
    background-size: 108px auto;
}
#about-room-text,
#about-visions-text,
#start-about {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-right: 50px;
    padding-left: 50px;
    text-align:center;
}



#about-team{
    padding-bottom:200px;
}

#about-visions-text{
    padding-bottom: 90px;
}

#contact-absicht-right-text .smiley-illu,
#anmeldung-first-step-dl .smiley-illu,
#start-registration .smiley-illu{
    background-image: url(../Icons/Momento_Icons_Smiley.svg);
    background-repeat: no-repeat;
    background-position: 0;
    background-size: 160px auto;
    width: 160px;
    height: 160px;
    position: relative;
    z-index: 3;
    display: inline-block;
}

#anmeldung-first-step-dl .smiley-illu{
    background-image: url(../Icons/Momento_Icons_Smiley-red.svg);
}

#about-paedagogik-text-right-2 .star-illu,
#start-news .star-illu{
    background-image: url(../Icons/Momento_Icons_Star.svg);
    background-repeat: no-repeat;
    background-position: 0;
    background-size: 160px auto;
    width: 160px;
    height: 160px;
    position: relative;
    z-index: 3;
    display: inline-block;
}

#about-paedagogik-text-right-2 .star-illu{
    background-image: url(../Icons/Momento_Icons_Star-red.svg);
}


#about-paedagogik-text-right-1 .schmetterling-illu{
    background-image: url(../Icons/Momento_Icons_Schmetterling.svg);
    background-repeat: no-repeat;
    background-position: 0;
    background-size: 160px auto;
    width: 160px;
    height: 160px;
    position: relative;
    z-index: 3;
    display: inline-block;
}

#about-paedagogik-text-right-3,
#about-room-pics,
#about-room-text,
#about-paedagogik-text-right-1,
#about-paedagogik-text-right-2,
#anmeldung-kind-text,
#anmeldung-schulgeld-text,
#anmeldung-first-step,
#anmeldung-first-step-dl{
    padding-left:30px;
    padding-right:30px;
}

#about-room-pics{
    padding:0;
}


#anmeldung-first-step{
    padding-bottom:190px;
}


#contact-absicht-left-text{
    color:#0F3264;
    font-size:30px;
    font-weight: 700;
    padding-left:30px;
    padding-right:30px;
    padding-bottom: 140px;
    text-align:center;
}

#contact-absicht-right-text{
    color:#fff;
}



.contact-textbox{
    font-size:30px;
    color: #0F3264;
    font-weight:700;
    padding-top: 100px;
}

#contact-box{
    padding:30px;
    text-align:center;
}


#about-paedagogik-text-right-1,
#about-paedagogik-text-right-2,
#start-about,
#start-news,
#contact-absicht-right-text,
#anmeldung-first-step-dl,
#start-registration{
    padding-right:30px;
    padding-top:40px;
    padding-left:30px;
    text-align: center;
}

#start-about{
    padding-bottom:130px;
}

#top-text,
#about-paedagogik-text-right-3,
#about-team-text,
#about-paedagogik-text-right,
#about-paedagogik-text-left,
#anmeldung-first-step,
#start-faq,
#anmeldung-kind-schulgeld-text,
#start-findus-text{
    text-align: center;
}

#about-paedagogik-text-right-1 .schmetterling-illu,
#about-paedagogik-text-right-2 .star-illu,
#start-about .eye-illu,
#contact-absicht-right-text .smiley-illu,
#anmeldung-first-step-dl .smiley-illu,
#start-registration .smiley-illu{
    top:0px;
    left:0px;
}

#start-findus-map{
    padding:0;
}

img.image-team-member{
    max-width:300px;
    margin-left:auto;
    margin-right:auto;
}


.textlinkbox-272,
.textlinkbox-265,
.textlinkbox-277,
.textlinkbox-276{
    margin-top:30px;
    margin-left:0px;
}




#start-news{
    color:#0F3264;
}
#start-news h2{
    color:#0F3264;
}

#about-paedagogik-image,
#about-paedagogik-image-1,
#about-visions-image,
#faq-image,
#fanmeldung-kind-schulgeld-bild{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 0px;
    min-height: 485px;
}

.gallery-wrapper {
    margin-top: 50px;
}

.gallery-wrapper h4 {
    display: none;
}

.gallery-image {
    margin: 0 15px 15px 0;

}

/* Galerie Vorschaubilder*/
.img-200c {
    height: 350px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.galleries .img-200c{
    height: 350px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.gallery-title {
    display: block;
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    text-decoration: none;
    text-align: left;
    font-size:22px;
    color:#0F3264;
}

.gallery-counter {
    display: block;
    text-align: left;
}

.gallery-link {
    display: inline-block;
    margin-bottom: 15px;
    text-align:left;
    text-decoration: none;
}

.galleries {
    padding-top: 30px;
    padding-bottom: 30px;
}



@media(min-width: 768px) {

    #logo-top img {
        width: 250px;
    }

    #top-circle {
        left: -50px;
        bottom: 275px;
    }



    #icon-eye {
        padding-left: 15px;
        padding-right: 40px;
        padding-top: 65px;
    }


    #bottom-circle {
        right: 50px;
    }


}





