@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;700;800&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html, body {
  font-family: "Open Sans", sans-serif;
  overflow-x: hidden;
}

a, a:link, a:active, a:visited {
  outline: none;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.frame {
  width: 1440px;
  margin: 0px auto;
}

@keyframes BOUNCE {
  0%, 100% {
    transform: translateY(2px);
  }
  50% {
    transform: translateY(-5px);
  }
}
@-webkit-keyframes BOUNCE {
  0%, 100% {
    transform: translateY(2px);
  }
  50% {
    transform: translateY(-5px);
  }
}
@media only screen and (min-width: 2560px) {
  .frame {
    width: 2000px !important;
  }
}
@media only screen and (min-width: 1930px) {
  .frame {
    width: 1600px;
  }
}
@media only screen and (max-width: 1700px) {
  .frame {
    width: 85%;
  }
}
@media only screen and (max-width: 800px) {
  .frame {
    width: 92%;
  }
}
.content {
  padding: 110px 0px 110px 0px;
}

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

.headline-red {
  display: flex;
  justify-content: center;
}
.headline-red h1 {
  background: #E3000F;
  color: #ffffff;
  padding: 12px 23px;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 900;
}

.btn {
  margin-top: 40px;
  padding: 22px 40px;
  font-weight: 900;
  text-transform: uppercase;
  display: inline-flex;
  letter-spacing: 3px;
  font-size: 0.8rem;
  color: #ffffff;
  background: linear-gradient(270deg, #E3000F 0%, #78073D 100%);
  position: relative;
  z-index: 2;
}
.btn:hover:after {
  opacity: 0;
}
.btn:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background: linear-gradient(270deg, #78073D 0%, #E3000F 100%);
  transition: all 0.3s ease-in-out;
}

.post + .post, .ziele-acc + .post, .post + .ziele-acc, .ziele-acc + .ziele-acc {
  margin-top: 40px;
}

.post h1, .ziele-acc h1 {
  font-size: 1.5rem;
  line-height: 120%;
  letter-spacing: -1px;
  margin-bottom: 13px;
}
.post p, .ziele-acc p {
  line-height: 170%;
  color: #7098ac;
}
.post p a, .ziele-acc p a {
  font-weight: 900;
  color: #115374;
}
.post p a:hover, .ziele-acc p a:hover {
  color: #E3000F;
}

@media only screen and (max-width: 1024px) {
  .content {
    padding: 80px 0px;
  }

  .post p, .ziele-acc p {
    font-size: 0.9rem;
  }
  .post h1, .ziele-acc h1 {
    font-size: 1.2rem;
  }

  .btn {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 750px) {
  .content {
    padding: 60px 0px;
  }

  .btn {
    letter-spacing: 2px;
    font-size: 0.72rem;
    padding: 18px 30px;
  }

  .headline-red h1 {
    background: #E3000F;
    color: #ffffff;
    padding: 12px 18px;
    font-size: 1rem;
  }
}
@media only screen and (max-width: 500px) {
  .btn {
    letter-spacing: 0px;
  }

  .post h1, .ziele-acc h1 {
    font-size: 1.1rem;
  }
}
#events {
  background: #115374;
  z-index: 2;
  position: relative;
}
#events .frame {
  text-align: center;
}
#events .frame h1 {
  color: #a0bac7;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 1.8rem;
}
#events .frame p {
  color: #ffffff;
  line-height: 190%;
  margin-top: 10px;
}

.ribbon {
  position: relative;
  z-index: 2;
}
.ribbon.center {
  text-align: center;
}
.ribbon.left {
  position: absolute;
  z-index: 3;
  top: 60px;
}
.ribbon .ribbon-inner {
  position: relative;
  display: inline-flex;
  height: 70px;
  align-items: center;
}
.ribbon .ribbon-inner:before, .ribbon .ribbon-inner:after {
  content: "";
  position: absolute;
  display: block;
  bottom: 0px;
  top: 0px;
  border-style: solid;
  border-width: 35px;
}
.ribbon .ribbon-inner:before {
  left: -2.5em;
  border-left-color: transparent !important;
}
.ribbon .ribbon-inner:after {
  right: -2.5em;
  border-right-color: transparent !important;
}
.ribbon.white .ribbon-inner {
  background: #ffffff;
  color: #115374;
}
.ribbon.white .ribbon-inner:before, .ribbon.white .ribbon-inner:after {
  border-color: #ffffff;
}
.ribbon.blue .ribbon-inner {
  background: #115374;
  color: #ffffff;
}
.ribbon.blue .ribbon-inner:before, .ribbon.blue .ribbon-inner:after {
  border-color: #115374;
}
.ribbon h1 {
  display: inline-block;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 1.2rem;
  padding: 0px 80px;
  z-index: 2;
}

@media only screen and (max-width: 1280px) {
  .ribbon h1 {
    padding: 0px 60px;
    font-size: 1.1rem;
  }
  .ribbon .ribbon-inner {
    height: 60px;
  }
  .ribbon .ribbon-inner:before, .ribbon .ribbon-inner:after {
    border-width: 30px;
  }
  .ribbon .ribbon-inner:before {
    left: -2em;
  }
  .ribbon .ribbon-inner:after {
    right: -2em;
  }
}
@media only screen and (max-width: 1024px) {
  .ribbon.left {
    top: 50px;
  }
}
@media only screen and (max-width: 750px) {
  .ribbon.left {
    top: 30px;
  }
  .ribbon h1 {
    padding: 0px 40px;
    font-size: 1rem;
    letter-spacing: 2px;
  }
}
@media only screen and (max-width: 550px) {
  .ribbon h1 {
    font-size: 0.9rem;
    letter-spacing: 1px;
    padding: 0px 20px;
  }
}
.nav {
  position: fixed;
  width: 100%;
  background: #cfdde3;
  transition: all 0.3s ease-in-out;
  z-index: 200;
  box-shadow: 0px 20px 32px rgba(30, 43, 70, 0.3);
  display: grid;
  grid-template-columns: 1fr 1440px 1fr;
  justify-content: space-between;
  align-items: center;
  height: 95px;
}
.nav .nav-back {
  font-size: 1.6rem;
  text-transform: uppercase;
  padding: 10px;
  color: #115374;
  font-weight: 900;
  display: flex;
  align-items: center;
}
.nav .nav-back span {
  font-size: 0.9rem;
  margin-left: 10px;
}
.nav .nav-back:hover {
  color: #7098ac;
}
.nav .nav-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}
.nav .nav-wrapper-start {
  background: #ffffff;
  height: 100%;
}
.nav .nav-logo {
  display: flex;
  align-items: center;
  color: #ffffff;
  color: #E3000F;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 1.8rem;
  letter-spacing: -1px;
  height: 100%;
  background: #ffffff;
  padding: 0px 20px 0px 0px;
  position: relative;
  z-index: 300;
}
.nav .nav-logo span {
  transition: all 1s ease-in-out 0.2s;
  opacity: 0;
}
.nav .nav-logo span.active {
  opacity: 1;
}
.nav .nav-logo:after {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: -70px;
  width: 70px;
  height: 100%;
  background: #ffffff;
  z-index: 200;
  clip-path: polygon(40% 0%, 100% 50%, 40% 100%, 0 100%, 0 0);
  -webkit-clip-path: polygon(40% 0%, 100% 50%, 40% 100%, 0 100%, 0 0);
}
.nav .nav-links {
  position: relative;
}
.nav .nav-links .nav-links-inner {
  display: flex;
  transform: translateX(100px);
  opacity: 0;
  transition: all 0.6s ease-in-out 0.2s;
}
.nav .nav-links .nav-links-inner.active {
  transform: translateX(0px);
  opacity: 1;
}
.nav .nav-links a + a {
  margin-left: 25px;
}
.nav .nav-links a {
  padding: 10px 15px;
  color: #115374;
  font-size: 0.9em;
  text-transform: uppercase;
  font-weight: 900;
  display: block;
}
.nav .nav-links a:hover, .nav .nav-links a.active {
  background: #115374;
  color: #ffffff;
}

@media only screen and (min-width: 1930px) {
  .nav {
    grid-template-columns: 10% 1fr 10%;
  }
  .nav .nav-links a + a {
    margin-left: 30px;
  }
  .nav .nav-links a {
    font-size: 1.05rem;
  }
}
@media only screen and (max-width: 1700px) {
  .nav {
    grid-template-columns: 1fr 85% 1fr;
  }
}
@media only screen and (max-width: 1440px) {
  .nav .nav-links a + a {
    margin-left: 10px;
  }
  .nav .nav-links a {
    padding: 10px 12px;
  }
}
@media only screen and (max-width: 1280px) {
  .nav .nav-logo {
    font-size: 1.5rem;
  }
  .nav .nav-links a + a {
    margin-left: 0px;
  }
  .nav .nav-links a {
    font-size: 0.8rem;
  }
}
@media only screen and (max-width: 1024px) {
  .nav .nav-links {
    position: fixed;
    background: #115374;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 300;
    padding: 0% 20%;
    transition: all 0.4s ease-in-out;
    transform: translateX(-100%);
  }
  .nav .nav-links .nav-links-inner {
    flex-direction: column;
    justify-content: center;
    height: 100%;
  }
  .nav .nav-links.active {
    transform: translateX(0%);
  }
  .nav .nav-links a {
    color: #ffffff;
    display: flex;
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 750px) {
  .nav {
    height: 80px;
  }
  .nav .nav-logo {
    font-size: 1.2rem;
  }
  .nav .nav-back span {
    display: none;
  }
}
@media only screen and (max-width: 420px) {
  .nav .nav-logo:after {
    content: "";
    position: absolute;
    right: -50px;
    width: 50px;
  }
}
.header {
  background: #1E2B3F;
  height: calc(100vh - 95px);
  position: relative;
  margin-top: 95px;
}
.header .frame {
  position: relative;
  display: flex;
  justify-content: end;
  align-items: center;
  z-index: 2;
  height: 100%;
}
.header .header-spd-logo {
  position: absolute;
  width: 120px;
  top: 45px;
  right: 0px;
  transition: transform 0.4s cubic-bezier(0.47, 1.64, 0.41, 1.8);
}
.header .header-spd-logo:hover {
  transform: scale(1.1);
}
.header .header-content {
  color: #ffffff;
  text-transform: uppercase;
  text-align: left;
  position: absolute;
  left: 42%;
  top: 58%;
  white-space: nowrap;
}
.header .header-content .header-content-inner {
  transition: all 0.7s ease-in-out 0.8s;
  transform: translateX(100px);
  opacity: 0;
  text-align: center;
  position: relative;
}
.header .header-content .header-content-inner.active {
  opacity: 1;
  transform: translateX(0px);
}
.header .header-content h1 {
  font-weight: 900;
  font-size: 6rem;
  line-height: 90%;
}
.header .header-content h4 {
  font-size: 2rem;
  padding: 13px 20px;
  display: inline-block;
  margin-top: 8px;
  margin-left: 5px;
  font-weight: 400;
  line-height: 100%;
  color: #ffffff;
  background: #E3000F;
  text-align: center;
}
.header .header-content a {
  position: absolute;
  right: 45px;
}
.header .header-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out 0.5s;
}
.header .header-bg.active {
  opacity: 0.4;
}

@media only screen and (min-width: 2550px) {
  .header .header-content {
    bottom: 320px !important;
  }
  .header .header-content h1 {
    font-size: 8.2rem;
  }
  .header .header-content h4 {
    font-size: 3.2rem;
  }
  .header .header-spd-logo {
    position: absolute;
    width: 140px;
    top: 45px;
    right: 0px;
  }
}
@media only screen and (min-width: 1930px) {
  .header .frame {
    width: 100% !important;
  }
  .header .header-spd-logo {
    right: 10%;
  }
  .header .header-content {
    bottom: 250px;
  }
}
@media only screen and (max-width: 1600px) {
  .header .header-spd-logo {
    width: 100px;
  }
  .header .header-content h1 {
    font-size: 5.4rem;
  }
  .header .header-content h4 {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 1280px) {
  .header .header-content {
    left: 39%;
  }
  .header .header-content h1 {
    font-size: 5rem;
  }
  .header .header-content h4 {
    font-size: 1.6rem;
  }
  .header .header-content a {
    right: 39px;
  }
}
@media only screen and (max-width: 1150px) {
  .header .header-content {
    margin-right: 0px;
  }
  .header .header-content h1 {
    font-size: 4.2rem;
  }
  .header .header-content h4 {
    font-size: 1.4rem;
  }
  .header .header-content a {
    right: 33px;
  }
}
@media only screen and (max-width: 920px) and (orientation: landscape) {
  .header .header-content {
    left: 34%;
  }
  .header .header-content h1 {
    font-size: 3.8rem;
  }
  .header .header-content h4 {
    font-size: 1.3rem;
  }
  .header .header-content a {
    right: 30px;
  }
}
@media only screen and (max-width: 890px) and (orientation: portrait) {
  .header .frame {
    justify-content: center;
  }
  .header .header-bg {
    height: 100%;
    width: auto;
    object-fit: contain;
    object-position: center bottom;
  }
  .header .header-content {
    text-align: center;
    left: 0px;
    right: 0px;
    bottom: 0px;
    top: auto;
    margin-bottom: 20px;
  }
  .header .header-content h1 {
    font-size: 3.1rem;
    line-height: 100%;
  }
  .header .header-content h4 {
    font-size: 1rem;
    line-height: 140%;
    margin-top: 5px;
    margin-left: 0px;
  }
  .header .header-content a {
    position: relative;
    right: auto;
    margin-top: 10px;
  }
}
@media only screen and (max-width: 750px) {
  .header {
    height: calc(100vh - 80px);
    margin-top: 80px;
  }
  .header .header-spd-logo {
    width: 80px;
    top: 35px;
    right: 15px;
  }
}
@media only screen and (max-width: 500px) {
  .header {
    height: calc(80vh);
  }
  .header .header-content {
    margin-bottom: 30px;
  }
  .header .header-content h1 {
    font-size: 2.5rem;
  }
  .header .header-content h4 {
    font-size: 0.9rem;
    padding: 12px 15px;
  }
}
.page-content {
  border-bottom: solid 1px #cfdde3;
}

.page-header {
  margin-top: 80px;
  height: 300px;
  overflow: hidden;
  position: relative;
  background: #115374;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-header.active h1 {
  opacity: 1;
  transform: translateY(0px);
}
.page-header.active img {
  opacity: 0.3;
}
.page-header h1 {
  position: relative;
  z-index: 2;
  color: #ffffff;
  text-transform: uppercase;
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.3s ease-in-out 0.6s;
}
.page-header img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transition: all 1s ease-in-out 0.1s;
}

@media only screen and (max-width: 950px) {
  .page-header {
    height: 250px;
  }
}
@media only screen and (max-width: 550px) {
  .page-header {
    height: 200px;
  }
  .page-header h1 {
    font-size: 1.5rem;
  }
}
.slider {
  background: #1E2B3F;
  overflow: hidden;
  position: relative;
  box-shadow: 0px 20px 23px rgba(30, 43, 63, 0.5), 0px 61px 52px rgba(30, 43, 70, 0.3);
  height: 94vh;
}
.slider .slider-controls {
  position: absolute;
  display: flex;
  z-index: 4;
  left: 0;
  right: 0;
  bottom: 80px;
  justify-content: center;
}
.slider .slider-controls span {
  margin: 0px 15px;
  display: flex;
  height: 25px;
  width: 25px;
  border-radius: 50%;
  background: #ffffff;
  border: solid 4px #ffffff;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.slider .slider-controls span:hover {
  background: #a0bac7;
}
.slider .slider-controls span.active {
  background: #115374;
}
.slider .slider-arrow {
  position: absolute;
  display: flex;
  height: 60px;
  top: 50%;
  transform: translate(0px, -50%);
  align-items: center;
  z-index: 4;
  transition: all 0.4s cubic-bezier(0.47, 1.64, 0.41, 1.8);
}
.slider .slider-arrow.slider-next {
  right: 20px;
}
.slider .slider-arrow.slider-next:hover {
  transform: translate(-5px, -50%);
}
.slider .slider-arrow.slider-prev {
  left: 20px;
}
.slider .slider-arrow.slider-prev:hover {
  transform: translate(5px, -50%);
}
.slider .slider-arrow i {
  display: block;
  cursor: pointer;
  padding: 20px;
  font-size: 2rem;
  color: #ffffff;
}
.slider .slides {
  display: flex;
  width: 100%;
  position: relative;
  z-index: 2;
  height: 100%;
  transform: translateX(-100%);
}
.slider .slide {
  flex: 0 0 100%;
  width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}
.slider .slide img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  object-fit: cover;
  object-position: center top;
  opacity: 0.7;
  z-index: 1;
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 1440px) {
  .slider .slider-arrow i {
    font-size: 1.5rem;
  }
  .slider .slider-arrow.slider-next {
    right: 10px;
  }
  .slider .slider-arrow.slider-prev {
    left: 10px;
  }
}
@media only screen and (max-width: 1280px) {
  .slider .slider-controls {
    bottom: 60px;
  }
  .slider .slider-controls span {
    height: 18px;
    width: 18px;
    margin: 0px 10px;
  }
}
@media only screen and (max-width: 850px) {
  .slider .slider-arrow {
    display: none;
  }
}
@media only screen and (max-width: 550px) {
  .slider .slider-controls {
    bottom: 40px;
  }
}
.ziele.active .ziele-item .ziele-item-content {
  transform: translateY(0px);
  opacity: 1;
}

.ziele .ziele-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.ziele .ziele-item .ziele-item-content {
  z-index: 4;
  text-align: center;
  color: #ffffff;
  transition: all 0.3s ease-in-out 0.6s;
  transform: translateY(100px);
  opacity: 0;
}
.ziele .ziele-item .ziele-item-content h1 {
  font-size: 3.8rem;
  line-height: 100%;
  letter-spacing: -2px;
  padding: 0px 30px;
}
.ziele .ziele-item .ziele-item-content h4 {
  font-size: 3rem;
  font-weight: 400;
  line-height: 90%;
}
.ziele .ziele-item .ziele-item-content p {
  width: 55%;
  line-height: 140%;
  font-size: 1.2rem;
  margin: 20px auto;
}

.ziele-content + .ziele-content {
  margin-top: 100px;
  padding-top: 100px;
  border-top: solid 1px #cfdde3;
}

.ziele-content .ziele-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 60px;
}
.ziele-content .ziele-content-grid .ziele-content-img figure {
  height: 450px;
  overflow: hidden;
  display: block;
  background: #1E2B3F;
}
.ziele-content .ziele-content-grid .ziele-content-img figure img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
  width: 100%;
  opacity: 0.4;
}
.ziele-content:nth-child(even) .ziele-content-grid .ziele-content-img {
  order: 2;
}

.ziele-acc {
  margin-top: 50px;
}
.ziele-acc .ziele-acc-item + .ziele-acc-item {
  margin-top: 10px;
}
.ziele-acc .ziele-acc-item .ziele-acc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #cfdde3;
  padding: 20px;
  cursor: pointer;
  margin-bottom: 0px;
  transition: all 0.2s ease-in-out;
}
.ziele-acc .ziele-acc-item .ziele-acc-header:hover {
  background: #a0bac7;
}
.ziele-acc .ziele-acc-item .ziele-acc-header.active {
  background: #E3000F;
  color: #ffffff;
}
.ziele-acc .ziele-acc-item .ziele-acc-header i {
  transition: all 0.2s ease-in-out;
}
.ziele-acc .ziele-acc-item .ziele-acc-header i.active {
  transform: rotate(180deg);
}
.ziele-acc .ziele-acc-item .ziele-acc-content {
  max-height: 0px;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}
.ziele-acc .ziele-acc-item .ziele-acc-content p {
  padding: 20px 0px;
}

@media only screen and (max-width: 1280px) {
  .ziele .ziele-item .ziele-item-content h1 {
    font-size: 3rem;
  }
  .ziele .ziele-item .ziele-item-content p {
    font-size: 1.1rem;
  }
}
@media only screen and (max-width: 1024px) {
  .ziele-content .ziele-content-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
    gap: 30px;
  }
  .ziele-content .ziele-content-grid .post, .ziele-content .ziele-content-grid .ziele-acc {
    order: 2;
  }

  .ziele-content + .ziele-content {
    margin-top: 70px;
    padding-top: 70px;
  }
}
@media only screen and (max-width: 950px) {
  .ziele .ziele-item .ziele-item-content h1 {
    font-size: 2.4rem;
  }
  .ziele .ziele-item .ziele-item-content p {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 850px) {
  .ziele .ziele-item .ziele-item-content {
    padding: 0px 50px;
  }
  .ziele .ziele-item .ziele-item-content h1 {
    padding: 0px;
  }
  .ziele .ziele-item .ziele-item-content p {
    width: 100%;
  }

  .ziele-content .ziele-content-grid {
    gap: 30px;
  }

  .ziele-acc {
    margin-top: 30px;
  }
  .ziele-acc .ziele-acc-item .ziele-acc-header {
    font-size: 0.9rem;
    padding: 15px;
  }

  .ziele-content + .ziele-content {
    margin-top: 60px;
    padding-top: 60px;
  }
}
@media only screen and (max-width: 650px) {
  .ziele-content .ziele-content-grid .ziele-content-img figure {
    height: 350px;
  }
}
@media only screen and (max-width: 550px) {
  .ziele .ziele-item .ziele-item-content {
    margin-top: 30px;
    padding: 0px 20px;
  }
  .ziele .ziele-item .ziele-item-content h1 {
    font-size: 2rem;
  }
  .ziele .ziele-item .ziele-item-content p {
    font-size: 0.9rem;
    line-height: 150%;
  }
}
@media only screen and (max-width: 380px) {
  .ziele-content .ziele-content-grid .ziele-content-img figure {
    height: 200px;
  }
}
.termine {
  position: relative;
  overflow: hidden;
}
.termine.page-content .termine-list {
  margin: 0px 0px 30px 0px;
}
.termine .termine-list {
  margin: 80px 0px 30px 0px;
  z-index: 100;
  position: relative;
}
.termine .termin + .termin {
  margin-top: 30px;
}
.termine .termin {
  background: #ffffff;
  padding: 40px 60px;
  box-shadow: 0px 23px 20px rgba(82, 95, 114, 0.3), 0px 14px 30px rgba(82, 95, 114, 0.2);
  transition: all 0.4s ease-in-out 0.5s;
  opacity: 0;
  transform: translateY(50px);
}
.termine .termin.active {
  opacity: 1;
  transform: translateY(0px);
}
.termine .termin .termin-header {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
}
.termine .termin .termin-header .termin-title {
  text-transform: uppercase;
}
.termine .termin .termin-header .termin-title p, .termine .termin .termin-header .termin-title h1 {
  font-weight: 900;
  line-height: 100%;
}
.termine .termin .termin-header .termin-title p {
  color: #E3000F;
  font-size: 1rem;
}
.termine .termin .termin-header .termin-title h1 {
  color: #115374;
  font-size: 1.7rem;
}
.termine .termin .termin-links {
  display: flex;
  margin-top: 20px;
  padding-top: 20px;
  border-top: solid 1px #cfdde3;
}
.termine .termin .termin-links a + a {
  margin-left: 10px;
}
.termine .termin .termin-links a {
  height: 40px;
  width: 40px;
  display: flex;
  border: solid 2px #115374;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  color: #115374;
  font-size: 0.8rem;
}
.termine .termin .termin-links a:hover {
  background: #115374;
  color: #ffffff;
}
.termine .termin .termine-content p {
  line-height: 150%;
}
.termine .termine-form {
  width: 35%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

@media only screen and (max-width: 1280px) {
  .termine .termine-list {
    margin: 60px 0px 30px 0px;
  }
  .termine .termine-list .termin {
    padding: 40px 50px;
  }
  .termine .termine-list .termin .termin-header .termin-links {
    display: none;
  }
  .termine .termine-list .termin .termin-title h1 {
    font-size: 1.5rem;
  }
  .termine .termine-form {
    width: 55%;
  }
}
@media only screen and (max-width: 820px) {
  .termine .termine-list .termin {
    padding: 30px;
  }
  .termine .termine-list .termin .termin-header {
    margin-bottom: 10px;
  }
  .termine .termine-list .termin .termin-header .termin-links {
    display: none;
  }
  .termine .termine-list .termin .termin-title p {
    font-size: 0.9rem;
    margin-bottom: 5px;
  }
  .termine .termine-list .termin .termin-title h1 {
    font-size: 1.3rem;
  }
  .termine .termine-form {
    width: 65%;
  }
}
@media only screen and (max-width: 600px) {
  .termine .termine-form {
    width: 80%;
  }
}
@media only screen and (max-width: 500px) {
  .termine .termine-list .termin {
    padding: 25px;
  }
  .termine .termine-list .termin .termin-content p {
    line-height: 160%;
  }
  .termine .termine-list .termin .termin-title p {
    font-size: 0.8rem;
  }
  .termine .termine-list .termin .termin-title h1 {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 400px) {
  .termine .termine-form {
    width: 100%;
  }
}
.aktuelles {
  background: #cfdde3;
  position: relative;
}
.aktuelles .frame {
  z-index: 20;
  position: relative;
}
.aktuelles img.aktuelles-form {
  position: absolute;
  top: 0px;
}

.social-feed {
  margin: 60px 0px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
}
.social-feed .social-feed-item {
  position: relative;
}
.social-feed .social-feed-item:hover .social-feed-img img {
  opacity: 1;
}
.social-feed .social-feed-item .social-feed-container {
  background: #ffffff;
  box-shadow: 0px 35px 41px rgba(24, 30, 40, 0.5);
  transition: transform 0.4s cubic-bezier(0.47, 1.64, 0.41, 1.8), opacity 0.3s ease-in-out 0.3s;
  opacity: 0;
}
.social-feed .social-feed-item .social-feed-container:nth-child(1) {
  margin-bottom: 40px;
}
.social-feed .social-feed-item .social-feed-container:hover {
  transform: scale(1.05);
}
.social-feed .social-feed-item .social-feed-container.active {
  opacity: 1;
}
.social-feed .social-feed-item .social-feed-img {
  background: #1E2B3F;
  margin-bottom: 0px;
  display: block;
}
.social-feed .social-feed-item .social-feed-img img {
  width: 100%;
  display: block;
  opacity: 0.7;
  transition: all 0.3s ease-in-out;
}
.social-feed .social-feed-item .social-feed-content {
  padding: 30px;
}
.social-feed .social-feed-item .social-feed-content p {
  color: #7098ac;
  line-height: 160%;
  font-size: 0.9rem;
}
.social-feed .social-feed-item .social-feed-source {
  margin-top: 30px;
  display: flex;
  align-items: center;
  color: #7098ac;
}
.social-feed .social-feed-item .social-feed-source h4 {
  font-size: 0.7rem;
  margin-left: 10px;
}
.social-feed .social-feed-item .social-feed-source span {
  height: 30px;
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  border-radius: 50%;
  font-size: 0.7rem;
}
.social-feed .social-feed-item .social-feed-source span.facebook {
  background: #1877f2;
}
.social-feed .social-feed-item .social-feed-source span.instagram {
  background: #dd2a7b;
}
.social-feed .break-1-hidden {
  display: block;
}
.social-feed .break-1-show {
  display: none;
}
.social-feed .break-2-show {
  display: none;
}
.social-feed .break-3-show {
  display: none;
}

@media only screen and (max-width: 1500px) {
  .social-feed {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .social-feed .break-1-hidden {
    display: none;
  }
  .social-feed .break-1-show {
    display: block;
  }
  .social-feed .item-4 {
    display: none;
  }
}
@media only screen and (max-width: 1070px) {
  .social-feed {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .social-feed .item-3 {
    display: none;
  }
  .social-feed .break-1-show {
    display: none;
  }
  .social-feed .break-2-show {
    display: block;
  }
}
@media only screen and (max-width: 650px) {
  .social-feed {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .social-feed .item-2 {
    display: none;
  }
  .social-feed .break-3-show {
    display: block;
  }
  .social-feed .break-1-show {
    display: block;
  }
}
.mission {
  background: #a0bac7;
}
.mission .mission-check {
  background: #a0bac7;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  border: solid 3px #ffffff;
  position: absolute;
  margin: 0px auto;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  color: #ffffff;
  font-size: 1.8rem;
}
.mission .mission-goal {
  margin-top: 50px;
  padding: 0px 40px;
  line-height: 190%;
  text-align: center;
}
.mission .mission-goal h1 {
  color: #115374;
  font-weight: 900;
  letter-spacing: -1px;
  text-transform: uppercase;
  font-size: 1.6rem;
}
.mission .mission-items {
  margin-top: 80px;
  padding-bottom: 150px;
  position: relative;
}
.mission .mission-items:after {
  content: "";
  position: absolute;
  width: 3px;
  border-radius: 20px;
  background: #ffffff;
  height: 100%;
  margin: 0px auto;
  left: 0;
  top: 0;
  right: 0;
  z-index: 2;
}
.mission .mission-items .mission-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.mission .mission-items .mission-item.active .mission-container .mission-content .iconify {
  opacity: 1;
}
.mission .mission-items .mission-item.active .mission-container .mission-content .mission-text h1 {
  opacity: 1;
}
.mission .mission-items .mission-item.active .mission-container .mission-content .mission-text:before {
  transform: scale(1);
}
.mission .mission-items .mission-item.active .mission-container .mission-content .mission-text:after {
  width: 40%;
}
.mission .mission-items .mission-item .mission-container {
  padding: 35px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.mission .mission-items .mission-item .mission-container .mission-content {
  z-index: 100;
  color: #115374;
  text-align: center;
  font-size: 4.3rem;
}
.mission .mission-items .mission-item .mission-container .mission-content .iconify {
  transition: all 0.3s ease-in-out 1s;
  opacity: 0;
}
.mission .mission-items .mission-item .mission-container .mission-content .mission-text {
  display: flex;
  align-items: center;
}
.mission .mission-items .mission-item .mission-container .mission-content .mission-text h1 {
  z-index: 5;
  background: #a0bac7;
  padding: 0px 30px;
  line-height: 120%;
  font-size: 1.2rem;
  color: #ffffff;
  font-weight: 900;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out 1s;
  opacity: 0;
}
.mission .mission-items .mission-item .mission-container .mission-content .mission-text:before {
  content: "";
  position: absolute;
  height: 26px;
  width: 26px;
  background: #115374;
  z-index: 20;
  border-radius: 50%;
  margin: 0px auto;
  transition: all 0.3s cubic-bezier(0.47, 1.64, 0.41, 2.8) 0.2s;
  transform: scale(0);
}
.mission .mission-items .mission-item .mission-container .mission-content .mission-text:after {
  content: "";
  width: 0%;
  transition: all 0.3s ease-in-out 0.4s;
  height: 3px;
  border-radius: 20px;
  background: #ffffff;
  position: absolute;
  z-index: 2;
  display: block;
}
.mission .mission-items .mission-item:nth-child(odd) .mission-container .mission-content .mission-text:before {
  right: -13px;
}
.mission .mission-items .mission-item:nth-child(odd) .mission-container .mission-content .mission-text:after {
  right: 0;
}
.mission .mission-items .mission-item:nth-child(even) .mission-container {
  order: 2;
}
.mission .mission-items .mission-item:nth-child(even) .mission-container .mission-content .mission-text:before {
  left: -13px;
}
.mission .mission-items .mission-item:nth-child(even) .mission-container .mission-content .mission-text:after {
  left: 0;
}

@media only screen and (max-width: 1500px) {
  .mission .frame {
    padding: 0px 80px;
  }
  .mission .mission-items .mission-item .mission-container .mission-content .mission-text h1 {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 1150px) {
  .mission .frame {
    padding: 0px 50px;
  }
}
@media only screen and (max-width: 1024px) {
  .mission .frame {
    padding: 0px 30px;
  }
  .mission .mission-check {
    height: 60px;
    width: 60px;
    font-size: 1.3rem;
  }
  .mission .mission-goal {
    margin-top: 30px;
  }
  .mission .mission-goal h1 {
    font-size: 1.2rem;
    line-height: 120%;
  }
  .mission .mission-items {
    margin-top: 60px;
  }
  .mission .mission-items .mission-item .mission-container {
    padding: 25px 30px;
  }
  .mission .mission-items .mission-item .mission-container .mission-content .mission-text h1 {
    padding: 0px 20px;
  }
}
@media only screen and (max-width: 820px) {
  .mission .frame {
    padding: 0px 0px;
  }
  .mission .mission-items .mission-item:nth-child(even) .mission-container {
    justify-content: end;
  }
  .mission .mission-items .mission-item .mission-container {
    justify-content: start;
  }
  .mission .mission-items .mission-item .mission-container .mission-content .mission-text h1 {
    font-size: 0.9rem;
  }
}
@media only screen and (max-width: 680px) {
  .mission .mission-items .mission-item {
    grid-template-columns: 1fr;
  }
  .mission .mission-items .mission-item.active .mission-container .mission-content {
    background: #a0bac7;
  }
  .mission .mission-items .mission-item .mission-container {
    justify-content: center !important;
  }
  .mission .mission-items .mission-item .mission-container .mission-content {
    padding: 20px 10px;
    font-size: 3.5rem;
    transition: all 0.3s ease-in-out 1s;
  }
  .mission .mission-items .mission-item .mission-container .mission-content .mission-text:after {
    display: none;
  }
  .mission .mission-items .mission-item .mission-container .mission-content .mission-text:before {
    display: none;
  }
}
.about {
  position: relative;
  height: 900px;
}
.about .slider-controls {
  display: none;
}
.about .slides.active .about-item .about-item-content .about-item-content-inner {
  transform: translateX(0px);
  opacity: 1;
}
.about .about-circle {
  height: 70px;
  width: 70px;
  border: solid 2px #ffffff;
  border-radius: 50%;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.about .about-circle:hover {
  background: #115374;
}
.about .about-item .about-item-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0px 0px 0px 100px;
  padding: 0px 20px;
}
.about .about-item .about-item-content .about-item-content-inner {
  transition: all 0.5s ease-in-out 0.6s;
  transform: translateX(-100px);
  opacity: 0;
  margin-top: 50px;
}
.about .about-item .about-item-content .about-item-content-inner.active {
  transform: translateX(0px);
  opacity: 1;
}
.about .about-item .about-item-content h1 {
  font-size: 5.1rem;
  font-weight: 300;
  letter-spacing: -3px;
  line-height: 100%;
  margin-bottom: 40px;
  color: #ffffff;
}
.about .about-item .about-item-content p {
  font-size: 1.6rem;
  color: #ffffff;
  font-weight: 400;
}
.about .about-item .about-split {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr;
}
.about .about-item .about-split .about-split-content {
  padding: 70px 100px 70px 70px;
}
.about .about-item .about-split .about-split-content .post h1, .about .about-item .about-split .about-split-content .ziele-acc h1 {
  color: #7098ac;
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.about .about-item .about-split .about-split-content .post p, .about .about-item .about-split .about-split-content .ziele-acc p {
  color: #ffffff;
}
.about .about-item .about-split .about-split-img {
  overflow: hidden;
  position: relative;
}

@media only screen and (max-width: 1600px) {
  .about .about-item .about-item-content {
    margin-top: 20px;
  }
  .about .about-item .about-item-content h1 {
    font-size: 4rem;
    margin-bottom: 30px;
  }
  .about .about-item .about-item-content p {
    font-size: 1.4rem;
  }
  .about .about-item .about-split .about-split-content {
    padding: 45px 80px 45px 60px;
  }
}
@media only screen and (max-width: 1390px) {
  .about .about-item .about-item-content {
    margin: 50px 0px 0px 70px;
  }
  .about .about-item .about-split .about-split-content {
    padding: 40px 60px 40px 50px;
  }
  .about .about-item .about-split .about-split-content .post p, .about .about-item .about-split .about-split-content .ziele-acc p {
    font-size: 0.95rem;
  }
}
@media only screen and (max-width: 1150px) {
  .about .about-item .about-item-content {
    margin: 20px 0px 0px 50px;
  }
  .about .about-item .about-item-content h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
  }
  .about .about-item .about-item-content p {
    font-size: 1.1rem;
    line-height: 150%;
  }
  .about .about-item .about-split .about-split-content {
    padding: 30px 50px 30px 30px;
  }
  .about .about-item .about-split .about-split-content .post h1, .about .about-item .about-split .about-split-content .ziele-acc h1 {
    font-size: 1.4rem;
  }
  .about .about-item .about-circle {
    height: 55px;
    width: 55px;
    margin-top: 30px;
  }
}
@media only screen and (max-width: 1024px) {
  .about .slider-arrow {
    height: 35px;
    top: 50%;
    transform: translateY(-50%);
  }
  .about .slider-arrow.slider-next {
    right: 0px;
  }
  .about .slider-arrow.slider-prev {
    left: 0px;
  }
  .about .slider-arrow i {
    padding: 8px;
    font-size: 1.1rem;
  }
  .about .about-item .about-split {
    grid-template-columns: 1fr;
    display: block;
  }
  .about .about-item .about-split .about-split-content {
    padding: 20px 60px;
  }
  .about .about-item .about-split .about-split-img {
    height: 250px;
    order: 1;
  }
  .about .about-item .about-split .about-split-img img {
    object-position: center center;
  }
}
@media only screen and (max-width: 850px) {
  .about .slider-arrow {
    display: flex !important;
  }
  .about .about-item .about-item-content {
    margin: 20px 0px 0px 0px;
    text-align: center;
  }
  .about .about-item .about-circle {
    display: none;
  }
  .about .about-item .about-split .about-split-content {
    padding: 20px 40px;
  }
  .about .about-item .about-split .about-split-content .post p, .about .about-item .about-split .about-split-content .ziele-acc p {
    line-height: 160%;
  }
}
@media only screen and (max-width: 600px) {
  .about {
    height: 1000px;
  }
  .about .about-item .about-item-content {
    margin-top: 0px;
  }
  .about .about-item .about-item-content h1 {
    font-size: 3.1em;
    margin-bottom: 20px;
  }
  .about .about-item .about-item-content p {
    font-size: 1rem;
    line-height: 140%;
  }
  .about .about-item .about-split .about-split-content .post h1, .about .about-item .about-split .about-split-content .ziele-acc h1 {
    font-size: 1.2rem;
  }
  .about .about-item .about-split .about-split-content .post p, .about .about-item .about-split .about-split-content .ziele-acc p {
    font-size: 0.8rem;
  }
  .about .about-item .about-split .about-split-img {
    height: 200px;
  }
}
@media only screen and (max-width: 450px) {
  .about .about-item .about-item-content br {
    display: none;
  }
  .about .about-item .about-split .about-split-img {
    height: 150px;
  }
}
.kontakt {
  background: #115374;
}
.kontakt .kontakt-items {
  margin-top: 90px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.kontakt .kontakt-items .kontakt-item {
  background: #a0bac7;
  padding: 70px 90px;
  box-shadow: 0px 26px 31px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease-in-out 0.5s;
  opacity: 0;
}
.kontakt .kontakt-items .kontakt-item:nth-child(1) {
  transform: translateX(-70px);
}
.kontakt .kontakt-items .kontakt-item:nth-child(2) {
  transform: translateX(70px);
}
.kontakt .kontakt-items .kontakt-item.active {
  transform: translateX(0px);
  opacity: 1;
}
.kontakt .kontakt-items .kontakt-item .kontakt-header {
  margin-bottom: 25px;
  text-transform: uppercase;
}
.kontakt .kontakt-items .kontakt-item .kontakt-header h1, .kontakt .kontakt-items .kontakt-item .kontakt-header h4 {
  font-weight: 900;
}
.kontakt .kontakt-items .kontakt-item .kontakt-header h1 {
  color: #115374;
  font-size: 1.8rem;
}
.kontakt .kontakt-items .kontakt-item .kontakt-header h4 {
  color: #ffffff;
  line-height: 90%;
}
.kontakt .kontakt-items .kontakt-item .kontakt-details .kontakt-detail + .kontakt-detail {
  margin-top: 25px;
}
.kontakt .kontakt-items .kontakt-item .kontakt-details .kontakt-detail {
  display: flex;
  align-items: center;
}
.kontakt .kontakt-items .kontakt-item .kontakt-details .kontakt-detail:nth-child(1) {
  align-items: start;
}
.kontakt .kontakt-items .kontakt-item .kontakt-details .kontakt-detail:nth-child(1) i {
  transform: translateY(4px);
}
.kontakt .kontakt-items .kontakt-item .kontakt-details .kontakt-detail i {
  width: 30px;
  margin-right: 12px;
  font-size: 1.6rem;
  color: #115374;
}
.kontakt .kontakt-items .kontakt-item .kontakt-details .kontakt-detail p {
  color: #115374;
  line-height: 150%;
}
.kontakt .kontakt-items .kontakt-item .kontakt-details .kontakt-detail a {
  color: #ffffff;
}

@media only screen and (max-width: 1440px) {
  .kontakt .kontakt-items {
    margin-top: 80px;
  }
  .kontakt .kontakt-items .kontakt-item {
    padding: 50px 70px;
  }
}
@media only screen and (max-width: 1280px) {
  .kontakt .kontakt-items {
    gap: 30px;
  }
  .kontakt .kontakt-items .kontakt-item {
    padding: 30px 50px;
  }
}
@media only screen and (max-width: 1150px) {
  .kontakt .kontakt-items {
    gap: 20px;
  }
  .kontakt .kontakt-items .kontakt-item .kontakt-header h1 {
    font-size: 1.6rem;
  }
  .kontakt .kontakt-items .kontakt-item .kontakt-details .kontakt-detail p {
    font-size: 0.9rem;
  }
  .kontakt .kontakt-items .kontakt-item .kontakt-details .kontakt-detail a {
    font-size: 0.9rem;
  }
}
@media only screen and (max-width: 980px) {
  .kontakt .kontakt-items {
    margin-top: 60px;
    grid-template-columns: 1fr;
  }
  .kontakt .kontakt-items .kontakt-item {
    padding: 40px;
  }
}
@media only screen and (max-width: 450px) {
  .kontakt .kontakt-items {
    grid-template-columns: 1fr;
  }
  .kontakt .kontakt-items .kontakt-item {
    padding: 30px;
  }
  .kontakt .kontakt-items .kontakt-item .kontakt-details .kontakt-detail i {
    width: 20px;
    margin-right: 10px;
    font-size: 1.2rem;
  }
}
.newsletter-content {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out 0.5s;
  background: rgba(255, 255, 255, 0.8);
}
.newsletter-content.active {
  opacity: 1;
  pointer-events: all;
  transition: all 0.3s ease-in-out;
}

.newsletter-thanks {
  position: absolute;
  transition: all 0.4s ease-in-out 0.5s;
  opacity: 0;
  transform: translateY(100px);
}
.newsletter-thanks.active {
  opacity: 1;
  transform: translateY(0px);
}
.newsletter-thanks h2 {
  color: #115374;
  font-size: 5rem;
  letter-spacing: -1px;
}

.newsletter-confirm {
  background: #115374;
  padding: 40px 30px;
  margin: 0px 15px;
  border-radius: 30px;
  width: 500px;
  box-shadow: 0px 7px 15px -5px rgba(0, 0, 0, 0.6), 0px 25px 20px -1px rgba(0, 0, 0, 0.2);
  transform: translateY(50px);
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
.newsletter-confirm.active {
  opacity: 1;
  transform: translateY(0px);
  transition: all 0.3s ease-in-out 0.3s;
}
.newsletter-confirm h4 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #cfdde3;
}
.newsletter-confirm h4 i {
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  margin-left: 20px;
}
.newsletter-confirm h4 i:hover {
  color: #ffffff;
}
.newsletter-confirm p {
  line-height: 180%;
  font-size: 0.9rem;
  color: #ffffff;
  text-transform: none;
}
.newsletter-confirm p a {
  color: #ffffff;
  font-weight: 700;
}
.newsletter-confirm span {
  display: inline-block;
  border: solid 2px #ffffff;
  margin-top: 20px;
  padding: 15px 25px;
  color: #ffffff;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease-in-out;
}
.newsletter-confirm span:hover {
  background: #ffffff;
  color: #115374;
}

.newsletter {
  margin: 90px 0px 40px 0px;
}
.newsletter .newsletter-header {
  display: flex;
  align-items: center;
}
.newsletter .newsletter-header i {
  color: #a0bac7;
  margin-right: 15px;
  font-size: 2.3rem;
}
.newsletter .newsletter-header aside h1 {
  font-weight: 900;
  font-size: 1.6rem;
  color: #a0bac7;
  line-height: 90%;
  text-transform: uppercase;
}
.newsletter .newsletter-header aside p {
  font-weight: 300;
  color: #ffffff;
  font-size: 1.2rem;
}
.newsletter .error {
  margin-top: 15px;
  display: flex;
  font-weight: 900;
  justify-content: center;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  transform: translateY(10px);
  transition: all 0.2s ease-in-out;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  color: #ffffff;
}
.newsletter .error.active {
  transform: translateY(0px);
  opacity: 1;
}
.newsletter .newsletter-form {
  margin-top: 20px;
  display: flex;
}
.newsletter .newsletter-form input, .newsletter .newsletter-form button {
  padding: 30px;
  width: 100%;
  display: flex;
  border: none;
  font-family: "Open Sans", sans-serif;
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  outline: none;
}
.newsletter .newsletter-form input {
  background: #a0bac7;
  font-size: 0.9rem;
  transition: all 0.2s ease-in-out;
  color: #1E2B3F;
}
.newsletter .newsletter-form input:focus {
  background: #7098ac;
  box-shadow: inset 0px 0px 0px 4px #ffffff;
}
.newsletter .newsletter-form input::-webkit-input-placeholder {
  color: #1E2B3F;
}
.newsletter .newsletter-form input::-moz-placeholder {
  color: #1E2B3F;
}
.newsletter .newsletter-form input:-ms-input-placeholder {
  color: #1E2B3F;
}
.newsletter .newsletter-form input:-moz-placeholder {
  color: #1E2B3F;
}
.newsletter .newsletter-form button {
  width: 200px;
  margin-left: 20px;
  margin-top: 0px;
  letter-spacing: 0px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.newsletter .newsletter-form button i {
  margin-left: 10px;
}

@media only screen and (max-width: 1150px) {
  .newsletter {
    margin-top: 80px;
  }
  .newsletter .newsletter-header i {
    font-size: 2rem;
  }
  .newsletter .newsletter-header aside h1 {
    font-size: 1.5rem;
  }
  .newsletter .newsletter-header aside p {
    font-size: 1rem;
  }
  .newsletter .newsletter-form {
    margin-top: 15px;
  }
  .newsletter .newsletter-form input, .newsletter .newsletter-form button {
    padding: 20px;
    font-size: 0.8rem;
  }
}
@media only screen and (max-width: 750px) {
  .newsletter {
    margin-top: 60px;
  }
  .newsletter .newsletter-form {
    flex-direction: column;
  }
  .newsletter .newsletter-form button {
    margin-left: 0px;
    margin-top: 10px;
  }

  .newsletter-thanks h2 {
    font-size: 3.5rem;
  }
}
@media only screen and (max-width: 550px) {
  .newsletter-thanks h2 {
    font-size: 3rem;
  }

  .newsletter .error {
    letter-spacing: 0px;
    font-size: 0.8rem;
  }
  .newsletter .newsletter-form button {
    width: 100%;
  }
  .newsletter .newsletter-header i {
    font-size: 1.6rem;
  }
  .newsletter .newsletter-header aside h1 {
    font-size: 1.2rem;
    letter-spacing: -1px;
  }
  .newsletter .newsletter-header aside p {
    font-size: 0.9rem;
  }
}
.footer {
  text-transform: uppercase;
  font-weight: 600;
}
.footer .frame {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer .footer-links a + a {
  margin-left: 60px;
}
.footer .footer-links a {
  color: #115374;
  font-size: 0.9rem;
  font-weight: 900;
}
.footer .footer-links a:hover {
  color: #7098ac;
}
.footer .footer-socials a + a {
  margin-left: 10px;
}
.footer .footer-socials a {
  height: 50px;
  width: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: solid 3px #115374;
  color: #115374;
  border-radius: 50%;
}
.footer .footer-socials a:hover {
  background: #115374;
  color: #ffffff;
}

@media only screen and (max-width: 920px) {
  .footer .footer-links a + a {
    margin-left: 30px;
  }
}
@media only screen and (max-width: 690px) {
  .footer .frame {
    flex-direction: column;
  }
  .footer .footer-links {
    text-align: center;
    margin-top: 20px;
    padding: 20px 10px 0px 10px;
    border-top: solid 1px #cfdde3;
  }
  .footer .footer-links a + a {
    margin-left: 0px;
  }
  .footer .footer-links a {
    font-size: 0.8rem;
    margin: 0px 10px;
  }
}
#rsp-btn {
  z-index: 9000;
  cursor: pointer;
  display: none;
  transition: all 0.2s ease-in-out;
  flex-direction: column;
  align-items: flex-end;
}
#rsp-btn.active {
  transform: rotate(90deg);
}
#rsp-btn.active span {
  background: #ffffff;
}
#rsp-btn.active span:nth-child(1) {
  transform: translateX(10px);
}
#rsp-btn.active span:nth-child(2) {
  transform: translateX(-10px);
}
#rsp-btn.active span:nth-child(3) {
  transform: translateX(-5px);
}
#rsp-btn span {
  display: block;
  height: 4px;
  background: #115374;
  margin: 5px 0px;
  transition: all 0.2s ease-in-out;
}
#rsp-btn span:nth-child(1) {
  width: 50px;
}
#rsp-btn span:nth-child(2) {
  width: 40px;
}
#rsp-btn span:nth-child(3) {
  width: 30px;
}

@media only screen and (max-width: 1024px) {
  #rsp-btn {
    display: flex;
  }
}
@media only screen and (max-width: 680px) {
  #rsp-btn span {
    height: 4px;
    margin: 4px 0px;
  }
  #rsp-btn span:nth-child(1) {
    width: 45px;
  }
  #rsp-btn span:nth-child(2) {
    width: 35px;
  }
  #rsp-btn span:nth-child(3) {
    width: 30px;
  }
}
#cookie-alert {
  position: fixed;
  background: #1E2B3F;
  color: #ffffff;
  left: 0px;
  right: 0px;
  bottom: 0px;
  padding: 50px 40px;
  z-index: 9999;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
#cookie-alert.active {
  transform: translateY(100%);
}
#cookie-alert button {
  width: 200px;
  font-weight: 700;
  background: #E3000F;
  color: #ffffff;
  border: solid 2px #E3000F;
  padding: 15px 0px;
  margin-top: 30px;
  font-size: 0.8em;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
#cookie-alert button:hover {
  background: none;
  color: #E3000F;
}
#cookie-alert p {
  text-align: center;
  line-height: 150%;
  font-size: 0.9em;
  font-weight: 400;
  color: #7098ac;
}
#cookie-alert p a {
  color: #E3000F;
  font-weight: 700;
  position: relative;
}
#cookie-alert p a:after {
  display: block;
  content: "";
  height: 2px;
  background: #E3000F;
  width: 0%;
  position: absolute;
  bottom: -5px;
  left: 0px;
  transition: all 0.3s ease-in-out;
}
#cookie-alert p a:hover:after {
  width: 100%;
}

@media only screen and (max-width: 950px) {
  #cookie-alert {
    padding: 40px 40px;
  }
  #cookie-alert br {
    display: none;
  }
  #cookie-alert button {
    padding: 15px 0px;
    font-size: 0.8em;
    width: 150px;
  }
  #cookie-alert p {
    font-size: 0.8em;
  }
}
@media only screen and (max-width: 450px) {
  #cookie-alert {
    padding: 40px 10px;
  }
  #cookie-alert button {
    padding: 12px 0px;
    font-size: 0.65em;
    width: 120px;
  }
  #cookie-alert p {
    font-size: 0.7em;
  }
}
.support {
  height: 100vh;
  background: #1E2B3F;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.support .support-wrapper {
  z-index: 3;
  position: relative;
  text-align: center;
  opacity: 0;
  transform: translateY(-50px);
  transition: all 0.8s ease-in-out 0.4s;
}
.support .support-wrapper.active {
  opacity: 1;
  transform: translateY(30px);
}
.support h1 {
  color: #ffffff;
  font-size: 4rem;
  text-transform: uppercase;
  margin-bottom: 60px;
}
.support .support-links {
  display: flex;
}
.support .support-links a {
  color: #ffffff;
  margin: 0px 30px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s cubic-bezier(0.47, 1.64, 0.41, 1.8);
}
.support .support-links a:hover {
  transform: scale(1.1);
}
.support .support-links a p {
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 20px;
}
.support .support-links a .iconify {
  font-size: 4rem;
}
.support .support-img {
  width: 100%;
  height: 100%;
  position: absolute;
}
.support img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center center;
  z-index: 2;
  transition: all 0.8s ease-in-out;
  opacity: 0;
}
.support img.active {
  opacity: 0.6;
}

@media only screen and (max-width: 1280px) {
  .support .support-links a {
    margin: 0px 10px;
  }
  .support .support-links a .iconify {
    font-size: 3.5rem;
  }
}
@media only screen and (max-width: 950px) {
  .support h1 {
    font-size: 3rem;
  }
  .support .support-links a {
    margin: 0px 0px;
  }
  .support .support-links a .iconify {
    font-size: 3rem;
  }
  .support .support-links a p {
    font-size: 0.9rem;
  }
}
@media only screen and (max-width: 790px) {
  .support h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    padding: 0px 40px;
    line-height: 120%;
  }
  .support .support-links {
    flex-direction: column;
  }
  .support .support-links a {
    padding: 13px 20px;
  }
  .support .support-links a p {
    margin-top: 0px;
    font-size: 0.8rem;
  }
  .support .support-links a .iconify {
    font-size: 1.9rem;
  }
  .support .support-wrapper.active {
    opacity: 1;
    transform: translateY(45px);
  }
}
@media only screen and (max-width: 420px) {
  .support h1 {
    font-size: 1.8rem;
  }
}

/*# sourceMappingURL=style.css.map */
