.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

  .d-none-mobile {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .d-none-non-mobile {
    display: none !important;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

ul, ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  scroll-behavior: smooth;
}

body {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  position: relative;
  background-color: #fff;
  padding-top: 125px;
}

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

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
padding: 60px 30px;
	}

header {
  width: 100%;
  max-width: 1920px;
  height: 152px;
  background-image: url("../images/header-bar.png");
  background-size: auto 152px;
  background-position: top center;
  background-repeat: no-repeat;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  transition: all 0.3s ease;
}
header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 135px;
  position: relative;
  padding: 0 30px;
}

header .header-inner .logo {
  position: absolute;
  top: 27px;
  left: 30px;
  transition: all 0.3s ease;
}

header .header-inner .logo img {
  width: auto;
  height: 85px;
  transition: all 0.3s ease;
}

header .header-inner nav, header .header-inner .button-wrapper {
  transition: all 0.3s ease;
}

nav.main {
  text-transform: uppercase;
  margin-left: 600px;
}
nav.main ul {
  display: flex;
  align-items: center;
  gap: 40px;
}
nav.main ul a {
  color: #333;
  transition: all 0.3s ease;
  position: relative;
  display: block;
}
nav.main ul a::after {
  content: "";
  width: 0%;
  height: 2px;
background-color: #f9cd1d;
  transition: all 0.3s ease;
  position: absolute;
  left: 0;
  bottom: -2px;
}
nav.main ul a.active, nav.main ul a:hover {
  color: #333;
}
nav.main ul a.active::after, nav.main ul a:hover::after {
  width: 100%;
 background-color: #333;
}
nav.main .button-wrapper {
  display: none;
}

nav.main ul a.nomo::after {
  height: 0px;
	}

#nav-toggle {
  display: none;
}

body {
  font-family: "Raleway", sans-serif;
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  color: var(--color-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.small {
  font-size: 15px;
  line-height: 30px;
}

h1, h2, h4, h5, h6,
.h1, .h2, .h4, .h5, .h6 {
  padding: 0;
  margin: 0 0 20px 0;
  word-wrap: break-word;
color: #333;
}


h1, .h1 {
  font-size: 28px;
  line-height: 35px;
  font-weight: 400;
}

h2, .h2 {
  font-size: 25px;
  line-height: 30px;
  font-weight: 400;
}

h3, .h3 {
  font-size: 20px;
  line-height: 25px;
  font-weight: 400;
color: #333;
  margin: 0 0 15px 0;
}

h4, .h4 {
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
}

h5, .h5 {
  font-size: 18px;
  line-height: 18px;
  font-weight: 400;
}

b, strong {
  font-weight: 600;
}

.medium {
  font-weight: 500;
}

.uppercase {
  text-transform: uppercase;
}

p {
  margin: 0;
color: #333;
}

a {
  color: var(--color-link);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover, a:focus, a:active {
  color: var(--color-link);
  text-decoration: none;
}

.content-area h1, .content-area h2, .content-area h3, .content-area h4, .content-area h5, .content-area h6, .content-area .h1, .content-area .h2, .content-area .h3, .content-area .h4, .content-area .h5, .content-area .h6 {
  margin-bottom: 25px;
}
.content-area h1:last-child, .content-area h2:last-child, .content-area h3:last-child, .content-area h4:last-child, .content-area h5:last-child, .content-area h6:last-child, .content-area .h1:last-child, .content-area .h2:last-child, .content-area .h3:last-child, .content-area .h4:last-child, .content-area .h5:last-child, .content-area .h6:last-child {
  margin-bottom: 0 !important;
}
.content-area p {
  margin-bottom: 25px;
}
.content-area p:last-child {
  margin-bottom: 0 !important;
}
.content-area a:not([id]):not([class]) {
  color: var(--color-base);
}

.button {
  display: block;
  font-size: 17px;
  line-height: 24px;
  padding: 5px 10px;
  border-radius: 4px;
  border: 0;
  transition: all 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 500;
}
.button.primary {
  background-color: var(--color-green);
  color: var(--color-white);
  font-style: normal !important;
}
.button.primary:hover {
  background-color: var(--color-blue-dark);
}
.button.primary.gradient, .button.secondary {
  background: linear-gradient(90deg, rgb(67, 171, 52) 0%, rgb(81, 88, 113) 80%);
  color: var(--color-white);
  padding: 8px 15px;
  text-transform: uppercase;
  font-style: italic;
  position: relative;
  overflow: hidden;
}
.button.primary.gradient::after, .button.secondary::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-blue-dark);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.button.primary.gradient span, .button.secondary span {
  position: relative;
  z-index: 1;
}
.button.primary.gradient:hover::after, .button.secondary:hover::after {
  opacity: 1;
}

.btn-menu {
  margin-top: -18px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 21px;
  padding-left: 0;
  padding-right: 0;
  border: none;
  background-color: transparent;
  color: inherit;
  cursor: pointer;
  transition: 0.3s ease;
}
.btn-menu:focus {
  outline: none;
}
.btn-menu__bars {
  display: block;
  position: relative;
  width: 30px;
  height: 3px;
  background-color: #333;
  transition: 0.3s;
}
.btn-menu__bars:before, .btn-menu__bars:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #333;
  transition: 0.3s;
}
.btn-menu__bars:before {
  transform: translate(0, -9px);
}
.btn-menu__bars:after {
  transform: translate(0, 9px);
}
.menu-open .btn-menu .btn-menu__bars {
  background-color: transparent;
}
.menu-open .btn-menu .btn-menu__bars:before {
  transform: rotate(45deg);
}
.menu-open .btn-menu .btn-menu__bars:after {
  transform: rotate(-45deg);
}

.form-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.form-container .form-row.align-right {
  display: flex;
  justify-content: flex-end;
}

label {
  font-size: 16px;
  line-height: 24px;
  display: block;
  margin-bottom: 10px;
}

input[type=text], input[type=number], input[type=email], input[type=password], textarea {
  width: 100%;
  background-color: var(--color-white);
  border: 0;
  padding: 8px 10px;
  border-radius: 4px;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-blue);
}

textarea {
  display: block;
  resize: none;
}

button[type=submit] {
  min-width: 170px;
}

.select-wrapper {
  position: relative;
  width: 100%;
  background-color: var(--color-white);
  border: 0;
  border-radius: 4px;
  overflow: clip;
}
.select-wrapper *:focus-visible {
  overflow: visible;
}
.select-wrapper select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  width: 100%;
  padding: 8px 10px;
  border: 0;
  font-size: 16px;
  line-height: 24px;
  background-color: var(--color-white);
  color: var(--color-blue);
}
.select-wrapper select:focus-visible {
  outline-offset: -2px;
}
.select-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyBpZD0iRWJlbmVfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2ZXJzaW9uPSIxLjEiIHZpZXdCb3g9IjAgMCAyNCAxNCI+CiAgPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI5LjUuMSwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDIuMS4wIEJ1aWxkIDE0MSkgIC0tPgogIDxkZWZzPgogICAgPHN0eWxlPgogICAgICAuc3QwIHsKICAgICAgICBmaWxsOiAjMzMzYjU4OwogICAgICB9CiAgICA8L3N0eWxlPgogIDwvZGVmcz4KICA8cGF0aCBjbGFzcz0ic3QwIiBkPSJNMCwxLjhMMiwuMWwxMCwxMC40TDIyLjIsMGwxLjgsMS44LTEyLDEyLjJMMCwxLjhaIi8+Cjwvc3ZnPg==");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  pointer-events: none;
}

::-moz-placeholder {
  color: var(--color-blue);
}

::placeholder {
  color: var(--color-blue);
}

.section-inner {
  position: relative;
}

.section-inner.with-padding .section-title {
  padding: 0 130px;
  padding-top: 20px !important;
}

img.background {
  width: 100%;
  height: auto;
}

section {
  scroll-margin-top: 140px;
}

.background-mobile {
  display: none;
}
 .text-wrapper {
  position: relative;
  z-index: 10;
  padding-left: 600px;
  padding-right: 40px;
}

 .section-inner {
  background-color: #fff;
  padding: 0;
}

section.footer {
  color: var(--color-white);
}
section.footer *:focus-visible {
  outline: 2px solid var(--color-white) !important;
}
section.footer img.background {
  width: 100%;
  height: auto;
  display: block;
}
section.footer .text-wrapper {
  font-family: "Nothing You Could Do", sans-serif;
  position: absolute;
  top: 50%;
  left: 90px;
  right: 90px;
  transform: translateY(-50%);
  text-align: center;
  margin-top: 50px;
}
section.footer .text-wrapper .text-big {
  font-size: 68px;
  line-height: 78px;
}
section.footer .text-wrapper .text-small {
  font-size: 33px;
  line-height: 33px;
  margin-top: 10px;
}


@media (max-width: 1400px) {
  nav.main {
    margin-left: 310px;
    flex: 1;
  }
  nav.main ul {
    justify-content: center;
  }

  section.footer .text-wrapper {
    margin-top: 40px;
  }
  section.footer .text-wrapper .text-big {
    font-size: 68px;
    line-height: 78px;
  }
  section.footer .text-wrapper .text-small {
    font-size: 30px;
    line-height: 30px;
  }
  .section-inner.with-padding .section-title {
    padding: 0 90px;
  }
  .section-inner.with-padding .text-wrapper {
    padding: 0 90px;
  }
}
@media (max-width: 1023px) {

  body {
    padding-top: 100px;
  }
.container {
max-width: 1400px;
    padding: 0 30px;
  }
  header {
    height: 125px;
    background-size: auto 125px;
    background-position: top left;
  }
  header .header-inner {
    justify-content: flex-end;
  }
  header .header-inner .logo {
    top: 30px;
    left: 20px;
    z-index: 2;
  }
  header .header-inner .logo img {
    width: auto;
    height: 70px;
  }
  header .header-inner > .button-wrapper {
    position: absolute;
    top: 50%;
    right: 50px;
    transform: translateY(-50%);
  }
  nav.main {
    position: absolute;
    top: 0;
    left: -20px;
    z-index: 1;
    width: calc(100% + 40px);
    height: 100dvh;
    margin-left: 0;
    background-color: var(--color-white);
    transform: translateY(-100%);
    transition: all 0.3s ease;
    padding: 160px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  nav.main .button-wrapper {
    display: block;
  }
  .menu-open nav.main {
    transform: translateY(0);
  }
  nav.main ul {
    flex-direction: column;
    gap: 30px;
  }
  #nav-toggle {
    display: block;
    z-index: 2;
  }
  body {
    font-size: 16px;
    line-height: 26px;
  }
  .big {
    font-size: 22px;
    line-height: 26px;
  }
  .small {
    font-size: 14px;
    line-height: 26px;
  }
  h1, .h1 {
    font-size: 22px;
    line-height: 26px;
  }
  h2, .h2 {
    font-size: 22px;
    line-height: 26px;
  }
  h3, .h3 {
    font-size: 16px;
    line-height: 26px;
  }
  h4, .h4 {
    font-size: 16px;
    line-height: 26px;
  }
  h5, .h5 {
    font-size: 16px;
    line-height: 26px;
  }
  .button {
    font-size: 16px;
    line-height: 24px;
  }
  label {
    font-size: 16px;
    line-height: 24px;
  }
  input[type=text], input[type=number], input[type=email], input[type=password], textarea {
    font-size: 16px;
    line-height: 24px;
  }
  .select-wrapper select {
    font-size: 16px;
    line-height: 24px;
  }
  .section-title {
    margin-bottom: 60px;
  }
  section {
    scroll-margin-top: 110px;
  }
  section.welcome {
    padding: 0 0 0px 0;
  }
  section.welcome .section-inner {
    min-height: 0;
  }
  section.welcome img.background {
    display: none;
  }
  section.welcome img.background-mobile {
    display: block;
    width: 100%;
    height: auto;
  }
  section.welcome .text-wrapper {
    padding-left: 0;
  }

  section.wohnung {
    padding: 0px 20px 70px 20px;
  }
  section.wohnung .images-text-wrapper {
    flex-direction: column;
    gap: 50px;
    align-items: center;
  }
  section.wohnung .images-text-wrapper .images-wrapper {
    width: 100%;
    max-width: 340px;
    order: 2;
    gap: 25px;
  }
  section.v .images-text-wrapper .text-wrapper {
    order: 1;
  }
  section.wohnung .images-text-wrapper .text-wrapper .form-container {
    max-width: 100%;
  }
  section .container {
    padding: 30px;
  }
  section.mission .section-inner {
    padding: 50px 20px 50px 20px;
  }
  section.mission .image-text-wrapper {
    flex-direction: column;
    gap: 25px;
  }
  section.mission .image-text-wrapper .image-wrapper {
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
  }
  section.footer .container {
    padding: 0;
  }
  section.footer .text-wrapper {
    left: 20px;
    right: 20px;
    margin-top: -15px;
  }
  section.footer .text-wrapper .text-big {
    font-size: 25px;
    line-height: 28px;
  }
  section.footer .text-wrapper .text-small {
    font-size: 15px;
    line-height: 15px;
    margin-top: 5px;
  }
  section.footer .footer-bottom {
    bottom: 20px;
    left: 20px;
    right: 20px;
    gap: 0;
    justify-content: space-between;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 26px;
    flex-direction: column;
  }
  section.footer .footer-bottom nav.meta ul {
    gap: 15px;
  }
  .section-inner.with-padding .section-title {
    padding: 0 20px;
  }
  .section-inner.with-padding .text-wrapper {
    padding: 0 20px;
  }

  section .container.no-padding-mobile {
    padding: 0;
  }
}
@media print {
  body {
    background-color: transparent;
    padding: 0;
  }
  header {
    display: none;
  }
  img {
    page-break-inside: avoid;
  }
}
@media (min-width: 1024px) {
  .scrolled header {
   opacity: 0.95;
    top: -30px;
  }
  .scrolled header .header-inner .logo {
    top: 48px;
  }
  .scrolled header .header-inner .logo img {
    height: 70px;
  }
  .scrolled header .header-inner nav, .scrolled header .header-inner .button-wrapper {
    transform: translateY(15px);
  }
}
/* accessibility */
*:focus:not(:focus-visible) {
  outline: none !important;
}

*:focus-visible {
  outline: 2px solid var(--color-blue-dark) !important;
  outline-offset: 2px;
}

#toTop:hover{opacity:1;}#toTop,#toTopHover{border-radius: 90px; width:90px;height:90px;overflow:hidden}#toTop{box-shadow: 0 0 3px 3px rgba(0,0,0,0.08); -webkit-box-shadow: 0 0 3px 3px rgba(0,0,0,0.08); -moz-box-shadow: 0 3px 0 3px rgba(0,0,0,0.08);display:none;text-decoration:none;position:fixed;bottom:15px;right:15px;z-index:8010;border:none;text-indent:100%;background:url(../images/to-top.png) left top no-repeat;background-size: 100% auto;opacity: .7;}#toTopHover{opacity: 1;background:url(../images/to-top.png) left bottom:15px;right:15px; no-repeat;display:block;float:left;opacity:0;-moz-opacity:0;filter:alpha(opacity=0)}#toTop:active,#toTop:focus{outline:0;}@media only screen and (max-width: 870px) { #toTop,#toTopHover{width:90px;height:90px;}}

.accordion {
background-color: #f5f5f5;
border-radius: 5px;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  transition: 0.2s;
margin-bottom: 20px;
}

.accordion p {
  color: #333;
  display: inline;
  }

.panel {
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.panel p {
padding: 10px 10px 30px 10px;
}

.accordion:after {
  content: '\02795'; /* Unicode character for "plus" sign (+) */
  font-size: 15px;
  color: #333;
  float: right;
  margin: 3px 0 0 5px;
}

.active:after {
  content: "\2796"; /* Unicode character for "minus" sign (-) */
}

.accordion:hover {
background-color: #eee; 
}

label {
  font-size: 24px;
  line-height: 1.2;
  display: block;
  margin: 0 0 10px 10px;
  font-weight: 600;
  color: var(--color-white);
}

input[type=text], input[type=number], input[type=email], input[type=password], textarea {
  width: 100%;
  background-color: var(--color-white);
  border: 0;
  padding: 7px;
  border-radius: 4px;
  font-size: 24px;
  line-height: 1.2;
  color: var(--color-blue);
border: 2px solid #fff;
}

textarea {
  display: block;
  resize: none;
}

.myCheckbox span {
	margin: 0 0 0 0;
	width: 29px;
	height: 29px;
	border: 2px solid #ffd100;
	background: url("../images/checkbox-default.png");
	float: left;
	margin: 7px 9px 0 0;
	}

.myCheckbox input:checked + span {
	background: url("../images/checkbox-checked.png");
	}

 .checkbox .custom-checkbox input{
	width: 29px;
    height: 29px;
    background-color: #fff;
}