@font-face {
  font-family: "Poppins";
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Poppins-Light.woff") format("woff"), url("../fonts/Poppins-Light.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Poppins-Medium.woff") format("woff"), url("../fonts/Poppins-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Poppins-Regular.woff") format("woff"), url("../fonts/Poppins-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Poppins-Bold.woff") format("woff"), url("../fonts/Poppins-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Playwrite US Trad";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/PlaywriteUSTrad-Regular.woff") format("woff"), url("../fonts/PlaywriteUSTrad-Regular.woff2") format("woff2");
}
body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-display: swap;
}

*, *::after, *::before {
  box-sizing: border-box;
  outline: none !important;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
}

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

a {
  text-decoration: none;
}

body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  min-width: 320px;
  max-width: 100%;
}

button, input, select {
  background: none;
  border: none;
  outline: none;
}

.inner {
  max-width: 1240px;
  padding: 0px 20px;
  margin: 0 auto;
}

.site-container {
  height: 100%;
}

.site-container {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-container {
  flex: 1 0 auto;
}

.footer {
  flex: 0 0 auto;
}

.footer {
  padding: 64px 0;
  display: none;
  border-radius: 64px 64px 0 0;
  background: #f1f5f9;
}
.footer__image img {
  width: 100%;
}
.footer__top {
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(14, 20, 37, 0.15);
  display: flex;
  gap: 24px;
  justify-content: space-between;
}
.footer__block {
  display: flex;
  gap: 64px;
  align-items: center;
}
.footer__center {
  padding: 64px 0;
  border-bottom: 1px solid rgba(14, 20, 37, 0.15);
}
.footer__bottom {
  padding: 64px 0 0;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}
.footer__copy {
  color: #0e1425;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
  text-align: center;
}
.footer__menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
}
.footer__menu .menu-item > a {
  color: #0e1425;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
  color: #bd2949;
  pointer-events: none;
}
.footer__menu .sub-menu {
  margin-top: 16px;
  display: flex;
  gap: 16px;
  flex-direction: column;
}
.footer__menu .sub-menu li a {
  color: #0e1425;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
  color: #0e1425;
  pointer-events: unset;
}
.footer__menu .sub-menu li a:hover {
  color: #bd2949;
}
.footer__social {
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer__social li {
  width: 24px;
}
.footer__social li:hover img {
  transform: scale(1.1);
}
.footer__social li img {
  width: 100%;
  transform: scale(1);
  transition: 0.3s ease;
}
.footer__logo {
  display: flex;
  transition: 0.3s ease;
}
.footer__logo svg {
  overflow: visible;
  width: 160px;
  height: auto;
}
.footer__logo:hover svg #key {
  transform: scale(1.05);
}

.not-home .footer {
  display: block;
}

@media (max-width: 768px) {
  .footer {
    padding: 32px 0;
    border-radius: 24px 24px 0 0;
  }
  .footer__logo svg {
    width: 101.496px;
    height: 52.675px;
  }
  .footer__bottom {
    padding-top: 24px;
    flex-direction: column;
    align-items: center;
  }
  .footer__top {
    padding-bottom: 24px;
    flex-direction: column;
  }
  .footer__block {
    gap: 24px;
  }
  .footer__center {
    padding: 24px 0;
  }
  .footer__menu {
    grid-template-columns: repeat(1, 1fr);
  }
}
.header {
  border-radius: 0 0 64px 64px;
  background: #f1f5f9;
  padding: 16px 0;
}
.header .inner {
  max-width: 1300px;
}
.header__logo {
  display: flex;
  transition: 0.3s ease;
}
.header__logo svg {
  overflow: visible;
  width: 170px;
  height: auto;
}
.header__logo:hover svg #key {
  transform: scale(1.05);
}
.header__block {
  display: none;
}
.header__burger {
  display: none;
}

.not-home .header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.not-home .header__block {
  display: block;
}
.not-home .header__menu ul {
  display: flex;
  align-items: center;
  white-space: nowrap;
  gap: 24px;
}
.not-home .header__menu ul .menu-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: opacity 0.3s ease, transform 0.3s ease;
  position: relative;
}
.not-home .header__menu ul .menu-item a {
  color: #0e1425;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
  color: #1c1c1c;
  line-height: 160%;
}
.not-home .header__menu ul .menu-item a:hover {
  color: #e23645;
}
.not-home .header__menu ul .menu-item.menu-item-has-children > a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
  padding-right: 22px;
  transition: 0.3s ease;
}
.not-home .header__menu ul .menu-item.menu-item-has-children > a::after {
  position: absolute;
  content: "";
  width: 18px;
  height: 18px;
  right: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M4.5 6.75L9 11.25L13.5 6.75' stroke='%230E1425' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.not-home .header__menu ul .menu-item.menu-item-has-children > a.active, .not-home .header__menu ul .menu-item.menu-item-has-children > a:hover {
  color: #e23645;
}
.not-home .header__menu ul .menu-item.menu-item-has-children > a.active::after, .not-home .header__menu ul .menu-item.menu-item-has-children > a:hover::after {
  background: url("../img/top.svg") no-repeat;
}
.not-home .header__menu ul .menu-item.menu-item-has-children .sub-menu {
  position: absolute;
  left: 50%;
  top: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  max-height: 0;
  transform: translate(-50%, 0);
  transition: max-height 0.4s ease, opacity 0.4s ease, transform 0.5s ease;
}
.not-home .header__menu ul .menu-item.menu-item-has-children .sub-menu li {
  margin: 0;
  transform: translateY(-10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.not-home .header__menu ul .menu-item.menu-item-has-children .sub-menu li a {
  color: #000;
}
.not-home .header__menu ul .menu-item.menu-item-has-children .sub-menu li a:hover {
  color: #e23645;
}
.not-home .header__menu ul .menu-item.menu-item-has-children.open .sub-menu {
  width: -moz-max-content;
  width: max-content;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #c9d1d8;
  background: #fff;
  box-shadow: 0 6px 15px 0 rgba(28, 28, 28, 0.1);
  gap: 0;
  max-height: -moz-max-content;
  max-height: max-content;
  opacity: 1;
  left: 50%;
  transform: translate(-50%, 3%);
  z-index: 10;
  gap: 16px;
  align-items: flex-start;
}
.not-home .header__menu ul .menu-item.menu-item-has-children.open .sub-menu ul {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 24px;
  align-items: flex-start;
}
.not-home .header__menu ul .menu-item.menu-item-has-children.open .sub-menu li {
  opacity: 1;
  transform: translateY(0);
  cursor: pointer;
}
.not-home .header .inner {
  max-width: 1240px;
}

@media (max-width: 1240px) {
  .not-home .header__menu ul {
    gap: 16px;
  }
}
@media (max-width: 1024px) {
  .not-home .header__burger {
    display: block;
  }
  .not-home .header__burger svg.close {
    display: none;
  }
  .not-home .header__burger svg.open {
    display: block;
  }
  .not-home .header__block {
    display: none;
  }
  .not-home .header.open {
    border-radius: 0;
    padding-bottom: 24px;
    position: relative;
  }
  .not-home .header.open::before {
    position: absolute;
    content: "";
    bottom: 0;
    transform: translateX(-50%);
    left: 50%;
    width: 90%;
    height: 1px;
    background: rgba(14, 20, 37, 0.15);
  }
  .not-home .header.open svg.close {
    display: block;
  }
  .not-home .header.open svg.open {
    display: none;
  }
  .not-home .header.open .header__block {
    padding: 24px 20px;
    overflow-y: auto;
    background: #f1f5f9;
    height: calc(100vh - 89px);
    position: fixed;
    width: 100vw;
    left: 0;
    top: 89px;
    z-index: 12;
    display: flex;
    flex-direction: column;
  }
  .not-home .header.open .header__menu ul {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .not-home .header.open .header__menu .menu-item > a {
    color: #0e1425;
  }
  .not-home .header.open .header__menu .menu-item.menu-item-has-children {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 10px;
  }
  .not-home .header.open .header__menu .menu-item.menu-item-has-children .sub-menu {
    transform: translateY(10%);
  }
  .not-home .header.open .header__menu .menu-item.menu-item-has-children .sub-menu ul {
    max-width: 100%;
    flex-direction: column;
  }
  .not-home .header.open .header__menu .menu-item.menu-item-has-children .sub-menu li a {
    white-space: break-spaces;
  }
  .not-home .header.open .header__menu .menu-item.menu-item-has-children.open {
    padding-bottom: 0;
    border: 0;
  }
  .not-home .header.open .header__menu .menu-item.menu-item-has-children.open .sub-menu {
    top: auto;
    padding: 16px;
    position: relative;
    left: auto;
    border: 0;
    width: 100%;
    gap: 10px;
    box-shadow: none;
    transform: translateY(0);
  }
  .not-home .header.open .header__menu .menu-item.menu-item-has-children.open .sub-menu ul li {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .not-home .header {
    padding: 16px 0;
  }
  .not-home .header__menu ul .menu-item a {
    font-size: 16px;
  }
  .not-home .header.open .header__block {
    top: 109px;
    height: calc(100vh - 109px);
  }
  .header {
    border-radius: 0 0 24px 24px;
    padding: 6px 0;
  }
  .header__logo svg {
    width: 120px;
    height: auto;
  }
}
@supports (-webkit-touch-callout: none) {
  @media (max-width: 1024px) {
    .not-home .header.open .header__block {
      padding-bottom: 100px;
    }
  }
}
.text {
  color: #0e1425;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
}

.text-20 {
  color: #0e1425;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 26px */
}

.text-24 {
  color: #1c1c1c;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.title {
  color: #0e1425;
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 41.6px */
}

h1 {
  color: #0e1425;
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 52px */
}

.btn {
  height: 53px;
  display: flex;
  padding: 16px 24px;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  color: #fff;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background: #bd2949;
  border: 1px solid #bd2949;
  transition: 0.3s ease;
  width: -moz-max-content;
  width: max-content;
}
.btn:hover {
  background: transparent;
  color: #bd2949;
}

.btn-light {
  height: 53px;
  width: -moz-max-content;
  width: max-content;
  display: flex;
  padding: 16px 24px;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  border: 1px solid #0e1425;
  color: #0e1425;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: 0.3s ease;
}
.btn-light:hover {
  border: 1px solid #bd2949;
  color: #bd2949;
}

.scroll-to-top {
  height: 53px;
  display: flex;
  padding: 16px 24px;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  color: #fff;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background: #bd2949;
  border: 1px solid #bd2949;
  transition: 0.3s ease;
  width: -moz-max-content;
  width: max-content;
}
.scroll-to-top:hover {
  background: transparent;
  color: #bd2949;
}
.scroll-to-top {
  width: -moz-max-content;
  width: max-content;
  cursor: pointer;
}
.scroll-to-top:hover svg path {
  stroke: #bd2949;
}

.blue .modal__top {
  color: #1a68d7;
}
.blue .team__link {
  background: #1a68d7;
}
.blue .data__top svg path {
  stroke: #1a68d7;
}
.blue .blocks__item_info {
  color: #1a68d7;
}
.blue .download__item_right a {
  color: #1a68d7;
}
.blue .contact__left_info a,
.blue .contact__left_info p {
  color: #1a68d7;
}
.blue .contact form button[type=submit],
.blue .contact form input[type=submit] {
  background: #1a68d7;
  border: 1px solid #1a68d7;
}
.blue .contact form button[type=submit]:hover,
.blue .contact form input[type=submit]:hover {
  color: #1a68d7;
  background: transparent;
}
.blue .contact form input[type=checkbox] + span::before,
.blue .contact form input[type=checkbox] + label::before {
  border: 1px solid #1a68d7;
}
.blue .contact form input[type=checkbox]:checked + span::before,
.blue .contact form input[type=checkbox]:checked + label::before {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'><path d='M10 3L4.5 8.5L2 6' stroke='white' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center, #1a68d7;
  border: 1px solid #1a68d7;
}
.blue .contact-block__left form button[type=submit],
.blue .contact-block__left form input[type=submit] {
  background: #1a68d7;
  border: 1px solid #1a68d7;
}
.blue .contact-block__left form button[type=submit]:hover,
.blue .contact-block__left form input[type=submit]:hover {
  color: #1a68d7;
  background: transparent;
}
.blue .contact-block__left form label span {
  color: #1a68d7;
}
.blue .aktuelles .tab-button.active,
.blue .aktuelles .tab-button:hover {
  background: #1a68d7;
  color: #fff;
}
.blue .aktuelles__empty-icon svg path {
  fill: #1a68d7;
}
.blue .aktuelles__block .link {
  color: #1a68d7;
}
.blue .aktuelles__block .link svg path {
  stroke: #1a68d7;
}
.blue .btn {
  background: #1a68d7;
  border: 1px solid #1a68d7;
}
.blue .btn:hover {
  color: #1a68d7;
  background: transparent;
}
.blue .about__left ul li::before {
  background: url("../img/note-blue.svg") no-repeat;
}
.blue .scroll-to-top {
  background: #1a68d7;
  border: 1px solid #1a68d7;
}
.blue .scroll-to-top:hover {
  color: #1a68d7;
  background: transparent;
}
.blue .scroll-to-top:hover svg path {
  stroke: #1a68d7;
}
.blue .header__menu ul .menu-item a:hover {
  color: #1a68d7;
}
.blue .header__menu ul .menu-item.menu-item-has-children > a.active, .blue .header__menu ul .menu-item.menu-item-has-children > a:hover {
  color: #1a68d7;
}
.blue .header__menu ul .menu-item.menu-item-has-children > a.active::after, .blue .header__menu ul .menu-item.menu-item-has-children > a:hover::after {
  background: url("../img/top-blue.svg") no-repeat;
}
.blue .header__menu ul .menu-item.menu-item-has-children .sub-menu li a:hover {
  color: #1a68d7;
}
.blue .header__logo svg .color,
.blue .footer__logo svg .color {
  fill: #1a68d7;
}
.blue .footer__menu .menu-item > a {
  color: #1a68d7;
}
.blue .footer__menu .sub-menu li a {
  color: #0e1425;
}
.blue .footer__menu .sub-menu li a:hover {
  color: #1a68d7;
}
.blue .text-red {
  color: #1a68d7;
}
.blue .news .swiper-slide__block .link {
  color: #1a68d7;
}
.blue .news .swiper-slide__block .link svg path {
  stroke: #1a68d7;
}

.section-content h1 {
  margin-bottom: 32px;
}
.section-content h2 {
  color: #0e1425;
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 41.6px */
  margin-bottom: 16px;
}
.section-content h2 strong {
  font-weight: 400;
}
.section-content h3,
.section-content h4 {
  color: #1c1c1c;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 16px;
}
.section-content p {
  color: #0e1425;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
  margin-bottom: 16px;
}
.section-content p strong {
  margin-bottom: 16px;
}
.section-content a {
  color: #0e1425;
}

.error-404 .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.error-404 .btn {
  margin: 16px auto 0;
}

.single-blog__image {
  width: 50%;
  border-radius: 16px;
  -o-object-fit: cover;
  object-fit: cover;
  max-height: 440px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
.single-blog__wrapper {
  margin-top: 64px;
  display: flex;
  gap: 64px;
}
.single-blog__right {
  width: 30%;
}
.single-blog__right .text-20 {
  margin-bottom: 16px;
}
.single-blog__item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.single-blog__item svg {
  min-width: 24px;
}
.single-blog__item svg path {
  stroke: #bd2949;
}
.single-blog__item svg #Icon-Set {
  fill: #bd2949;
}
.single-blog__item a {
  color: #0e1425;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
}
.single-blog__left {
  width: 75%;
}
.single-blog__left .date {
  color: #0e1425;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
  margin-bottom: 16px;
}
.single-blog__left h1 {
  color: #0e1425;
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 52px */
  margin-bottom: 32px;
}
.single-blog__left h2 {
  margin: 32px 0 16px;
  color: #1c1c1c;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.single-blog__left p {
  color: #0e1425;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
  margin-bottom: 16px;
}
.single-blog__left p strong {
  font-weight: 500;
}
.single-blog__left p:has(strong) {
  margin: 16px 0;
}
.single-blog__left ul,
.single-blog__left ol {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}
.single-blog__left li {
  display: flex;
  padding-left: 24px;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  color: #0e1425;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
  position: relative;
}
.single-blog__left li::before {
  position: absolute;
  content: "";
  width: 18px;
  height: 18px;
  background: url("../img/note.svg") no-repeat;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.single-blog__wrapper:not(:has(.single-blog__right)) .single-blog__left {
  width: 100%;
}

.hero {
  padding: 32px 0;
  height: calc(100vh - 126px);
}
.hero h1 {
  margin-bottom: 16px;
}
.hero .inner {
  max-width: 1300px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.hero__wrapper {
  width: 100%;
  display: flex;
  gap: 34px;
  align-items: center;
}
.hero__items {
  margin-bottom: 24px;
  display: flex;
  gap: 32px;
}
.hero__item {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #0e1425;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
}
.hero__links {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin: 42px 0;
  flex-wrap: wrap;
}
.hero__link {
  display: flex;
  text-transform: uppercase;
  padding: 16px 18px;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  border: 1px solid #0e1425;
  color: #0e1425;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.hero__left {
  width: 55%;
}
.hero__right {
  width: 45%;
  display: flex;
  justify-content: center;
}
.hero__right img {
  width: 100%;
}
.hero__right .mobile {
  display: none;
}
.hero .open-modal {
  color: #1c1c1c;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  display: flex;
  align-items: center;
  gap: 5px;
}

section {
  padding: 64px 0;
}

.banner img {
  display: flex;
  width: 100%;
  border-radius: 16px;
}
.banner__top {
  display: flex;
  margin-bottom: 64px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 100%;
  position: relative;
}
.banner__top::after {
  position: absolute;
  content: "";
  width: 131px;
  height: 317px;
  right: 10%;
  bottom: -160px;
  background: url("../img/hero1.svg") no-repeat;
  background-size: cover;
}
.banner__top::before {
  position: absolute;
  content: "";
  width: 140px;
  height: 150px;
  left: 10%;
  bottom: 0;
  background: url("../img/hero.svg") no-repeat;
}
.banner__top .btn {
  margin-top: 18px;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  padding: 20px;
}
.modal.active {
  display: flex;
}
.modal.modal-team .text p {
  margin-bottom: 16px;
}
.modal.modal-team .text p:last-of-type {
  margin-bottom: 0;
}
.modal.modal-team .modal__wrapper {
  flex-direction: row-reverse;
}
.modal.modal-team .modal__left {
  max-width: 770px;
  gap: 10px;
}
.modal.modal-team .modal__title {
  margin-bottom: 22px;
}
.modal.modal-team .modal__bottom {
  margin-top: 22px;
  padding-top: 32px;
  border-top: 1px solid rgba(14, 20, 37, 0.15);
}
.modal.modal-team .modal__right {
  background: #fff;
  max-width: 240px;
  height: 100%;
  position: relative;
}
.modal.modal-team .modal__right img {
  width: 100%;
  border-radius: 50%;
}
.modal.modal-team .modal__right::before {
  position: absolute;
  content: "";
  width: 240px;
  height: 240px;
  top: 0;
  z-index: 2;
  background: url("../img/1.webp") no-repeat;
}
.modal.modal-team .modal__close {
  display: flex;
  width: 64px;
  height: 64px;
  border-radius: 100px;
  background: #f1f5f9;
  justify-content: center;
  align-items: center;
  gap: 10px;
  aspect-ratio: 1/1;
  top: 64px;
  right: 64px;
}
.modal.modal-team .modal__close svg {
  z-index: 0;
}
.modal.modal-instrumente .modal__block {
  display: flex;
  gap: 32px;
}
.modal.modal-instrumente .modal__top {
  width: 95%;
}
.modal.modal-instrumente .modal__bottom_items {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.modal.modal-instrumente .modal__bottom_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.modal.modal-instrumente .modal__bottom_item img {
  width: 100%;
  max-width: 180px;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 16px;
  aspect-ratio: 1/1;
}
.modal.modal-instrumente .modal__wrapper {
  flex-direction: column;
  gap: 24px;
}
.modal.modal-instrumente .modal__right {
  flex: 1;
  width: -moz-max-content;
  width: max-content;
  max-width: unset;
  height: -moz-max-content;
  height: max-content;
  background: transparent;
}
.modal.modal-instrumente .modal__right img {
  width: 100%;
  border-radius: 16px;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.modal.modal-instrumente .modal__left {
  flex: 1;
  width: -moz-max-content;
  width: max-content;
  max-width: unset;
}
.modal.modal-instrumente .modal__left p {
  margin-bottom: 8px;
}
.modal.modal-instrumente .modal__left ul {
  list-style: disc;
  padding-left: 24px;
  margin: 16px 0;
}
.modal.modal-instrumente .modal__left strong {
  display: block;
  margin: 16px 0;
}
.modal.modal-instrumente .modal__left strong + br {
  display: none;
}
.modal__mobile {
  display: none;
}
.modal__mobile img {
  width: 100%;
  max-width: 300px;
}
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 20, 37, 0.15);
  backdrop-filter: blur(12.5px);
}
.modal__wrapper {
  display: flex;
  gap: 60px;
  max-height: calc(80vh - 128px);
  overflow-y: auto;
  padding-right: 32px;
}
.modal__wrapper::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.modal__wrapper {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.modal__left {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.modal__right {
  width: 100%;
  max-width: 425px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 42px;
  height: 425px;
  background: url("../img/modal-bg.svg") no-repeat;
  background-size: cover;
}
.modal__buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}
.modal__title {
  color: #0e1425;
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 41.6px */
}
.modal__content {
  overflow: hidden;
  width: 100%;
  height: -moz-max-content;
  height: max-content;
  position: relative;
  max-height: 80vh;
  max-width: 1200px;
  margin: auto;
  border-radius: 16px;
  border: 1px solid #c9d1d8;
  background: #fff;
  box-shadow: 0 6px 15px 0 rgba(28, 28, 28, 0.1);
  padding: 64px;
  z-index: 2;
}
.modal__top {
  color: #0e1425;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
  color: #bd2949;
}
.modal__close {
  position: absolute;
  top: 42px;
  right: 42px;
  padding: 0;
  cursor: pointer;
}

.news .title {
  text-align: center;
}
.news .swiper {
  margin: 32px 0 0;
  width: 100%;
}
.news .news-slider__bottom {
  width: 100%;
  margin-top: 32px;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
}
.news .swiper-buttons {
  display: flex;
  cursor: pointer;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}
.news .swiper-buttons .news-prev,
.news .swiper-buttons .news-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  aspect-ratio: 1/1;
  border-radius: 100px;
  background: #f1f5f9;
}
.news .swiper-buttons .news-prev svg,
.news .swiper-buttons .news-next svg {
  width: 24px;
  height: 24px;
}
.news .swiper-slide {
  color: #0e1425;
}
.news .swiper-slide__content {
  margin-top: 24px;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.news .swiper-slide__content .text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  width: 100%;
}
.news .swiper-slide__content .text-20 {
  font-size: 18px;
}
.news .swiper-slide__content .data {
  color: #0e1425;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
}
.news .swiper-slide__block {
  display: flex;
  justify-content: space-between;
}
.news .swiper-slide__block .link {
  color: #0e1425;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
  color: #bd2949;
  display: flex;
  align-items: center;
  gap: 10px;
}
.news .swiper-slide img {
  width: 100%;
  display: flex;
  border-radius: 16px;
  height: 240px;
  -o-object-fit: cover;
  object-fit: cover;
}

.page-template-template-space .mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #fff;
  right: -30px;
  padding-right: 0;
  width: -moz-max-content;
  width: max-content;
  top: 5%;
  z-index: 999;
}

.page-template-template-space .mfp-close {
  font-size: 40px;
}

.about__wrapper {
  display: flex;
  gap: 64px;
}
.about__left {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about__left p {
  color: #0e1425;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
}
.about__left ul {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about__left ul li {
  position: relative;
  color: #0e1425;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
  padding-left: 28px;
}
.about__left ul li::before {
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  background: url("../img/note.svg") no-repeat;
}
.about__right {
  width: 50%;
}
.about__right img {
  width: 100%;
  border-radius: 16px;
}

.text-red {
  color: #0e1425;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
  color: #bd2949;
}

.info__wrapper {
  display: flex;
  position: relative;
  border-radius: 16px;
  background: #f1f5f9;
  padding: 64px;
  align-items: center;
  gap: 32px;
  min-height: 402px;
  align-self: stretch;
}
.info__left {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.info__left .btn {
  margin-top: 16px;
}
.info__right {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 536px;
  height: 428px;
}
.info__right img {
  width: 100%;
}

.title-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  align-items: center;
  text-align: center;
}

.team__items {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team__link {
  display: none;
  position: absolute;
  right: 61px;
  bottom: 61px;
  width: 64px;
  height: 64px;
  padding: 10px;
  border-radius: 100px;
  background: #bd2949;
  justify-content: center;
  align-items: center;
  gap: 10px;
  aspect-ratio: 1/1;
}
.team__item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.team__item:hover .team__link {
  display: flex;
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
}
.team__item_top {
  display: flex;
  position: relative;
}
.team__item_top img {
  width: 100%;
  border-radius: 16px;
  aspect-ratio: 1/1;
}
.team__item_bottom {
  display: flex;
  padding: 0 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}

.simple__text {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.simple ul {
  list-style: disc;
  padding-left: 20px;
}
.simple p {
  margin-top: 32px;
}
.simple p:first-of-type {
  margin-top: 0;
}

.contact__wrapper {
  display: flex;
  border-radius: 16px;
  padding: 42px;
  background: #f1f5f9;
  gap: 32px;
  justify-content: space-between;
  position: relative;
}
.contact__left {
  position: relative;
  z-index: 1;
  display: flex;
  width: 50%;
  flex-direction: column;
  gap: 32px;
  justify-content: space-between;
}
.contact__left_info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 24px;
}
.contact__left_info p,
.contact__left_info a {
  color: #0e1425;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
  text-align: left;
  color: #bd2949;
}
.contact form {
  display: flex;
  position: relative;
  z-index: 1;
  gap: 0;
  flex-direction: column;
  width: 100%;
}
.contact form .visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.contact form button[type=submit],
.contact form input[type=submit] {
  height: 53px;
  display: flex;
  padding: 16px 24px;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  color: #fff;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background: #bd2949;
  border: 1px solid #bd2949;
  transition: 0.3s ease;
  width: -moz-max-content;
  width: max-content;
}
.contact form button[type=submit]:hover,
.contact form input[type=submit]:hover {
  background: transparent;
  color: #bd2949;
}
.contact form .form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  width: 100%;
}
.contact form .form-row.form__row--checkbox {
  margin-bottom: 0;
}
.contact form input {
  flex: 1;
  height: 51px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-style: normal;
  color: #444;
  font-weight: 400;
  line-height: normal;
  border-radius: 0px;
  border: 1px solid #bcbfc2;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  background: transparent;
  width: 100%;
  padding: 0 0 16px;
  box-sizing: border-box;
}
.contact form input::-moz-placeholder {
  color: rgba(28, 28, 28, 0.5);
}
.contact form input::placeholder {
  color: rgba(28, 28, 28, 0.5);
}
.contact form .form__row--checkbox {
  position: relative;
  padding: 8px 0 24px;
  margin-bottom: 0;
}
.contact form .form__row--checkbox .checkbox-label,
.contact form .form__row--checkbox label {
  white-space: inherit;
  display: block;
  padding-left: 26px;
  position: relative;
  color: #0e1425;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 19.2px */
  color: #444;
  font-family: "Poppins", sans-serif;
  position: relative;
}
.contact form input[type=checkbox] + span::before,
.contact form input[type=checkbox] + label::before {
  display: inline-flex;
  position: absolute;
  width: 16px;
  height: 16px;
  background: transparent;
  margin-right: 10px;
  border-radius: 4px;
  border: 1px solid #bd2949;
  left: 0;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.contact form input[type=checkbox]:checked + span::before,
.contact form input[type=checkbox]:checked + label::before {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'><path d='M10 3L4.5 8.5L2 6' stroke='white' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center, #bd2949;
  background-size: 90%;
  border: 1px solid #bd2949;
  content: "";
  padding: 2px;
}
.contact form input[type=checkbox] {
  display: none;
}
.contact form .has-spinner {
  position: relative;
}
.contact form .wpcf7-form-control-wrap {
  position: relative;
  width: 100%;
}
.contact form .wpcf7 {
  position: relative;
}
.contact form .wpcf7-list-item {
  margin: 0;
}
.contact form .wpcf7-spinner {
  position: absolute;
  margin: 0;
  right: 0;
  bottom: 0;
}
.contact__right {
  position: relative;
  z-index: 1;
  width: 50%;
}

.instrumente__items {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.instrumente__item {
  display: flex;
  padding: 10px 10px 24px 10px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  border-radius: 16px;
  background: #f1f5f9;
}
.instrumente__item_top {
  display: flex;
  width: 100%;
}
.instrumente__item_top img {
  width: 100%;
  height: 160px;
  border-radius: 6px;
  -o-object-fit: cover;
  object-fit: cover;
}
.instrumente__item_bottom {
  display: flex;
  padding: 0 14px;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.aktuelles {
  position: relative;
  z-index: 0;
}
.aktuelles__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.aktuelles .tab-panel {
  display: none;
}
.aktuelles .tab-panel.active {
  display: block;
}
.aktuelles .tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  -webkit-overflow-scrolling: touch;
}
.aktuelles .tab-button {
  white-space: nowrap;
  display: flex;
  cursor: pointer;
  padding: 8px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #0e1425;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
  border-radius: 100px;
  background: #f1f5f9;
  transition: 0.3s ease;
}
.aktuelles .tab-button.active, .aktuelles .tab-button:hover {
  background: #bd2949;
  color: #fff;
}
.aktuelles .title-block {
  margin-bottom: 32px;
}
.aktuelles__items {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
}
.aktuelles__image {
  position: relative;
  transition: all 0.5s ease;
  overflow: hidden;
  border-radius: 16px;
  z-index: 31;
  height: 240px;
  max-height: 240px;
}
.aktuelles__image img {
  width: 100%;
  border-radius: 16px;
  transition: all 0.5s ease;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
}
.aktuelles__image:hover img {
  transform: scale(1.1);
}
.aktuelles__content {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 16px;
}
.aktuelles__content .text-20 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  width: 100%;
  font-size: 18px;
}
.aktuelles__content .date {
  color: #0e1425;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
}
.aktuelles__content .text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  width: 100%;
}
.aktuelles__block {
  display: flex;
  justify-content: space-between;
}
.aktuelles__block .link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #0e1425;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
  color: #bd2949;
}

.pagination__list {
  list-style: none;
  display: flex;
  justify-content: center;
  margin-top: 64px;
  gap: 10px;
  align-items: center;
}
.pagination__link, .pagination__arrow, .pagination__dots {
  display: flex;
  width: 50px;
  height: 50px;
  aspect-ratio: 1/1;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 100px;
  border: 1px solid rgba(6, 2, 2, 0.15);
  overflow: hidden;
  color: #0e1425;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
}
.pagination__link.current, .pagination__link:visited:hover, .pagination__arrow.current, .pagination__arrow:visited:hover, .pagination__dots.current, .pagination__dots:visited:hover {
  border: 1px solid #bd2949;
  color: #bd2949;
}
.pagination__arrow {
  padding: 0;
}
.pagination__arrow svg {
  width: 24px;
}

.single-gallery__items {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.single-gallery__item {
  display: flex;
}
.single-gallery__item .gallery-link {
  width: 100%;
}
.single-gallery__item img {
  width: 100%;
  border-radius: 16px;
  height: 240px;
  -o-object-fit: cover;
  object-fit: cover;
}

.room .swiper {
  margin-top: 32px;
}
.room .gallerySwiper {
  position: relative;
  overflow: hidden;
}
.room .fade-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 230px;
  height: 100%;
  pointer-events: none;
  z-index: 5;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}
.room .fade-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 230px;
  height: 100%;
  pointer-events: none;
  z-index: 5;
  background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}
.room .inner {
  position: relative;
}
.room .inner::before {
  position: absolute;
  content: "";
  pointer-events: none;
  width: 736px;
  height: 340px;
  top: 110px;
  left: 50%;
  z-index: 5;
  transform: translateX(-50%);
  background: url("../img/slide.svg") no-repeat;
}
.room .swiper-slide img {
  width: 100%;
  border-radius: 16px;
  height: 420px;
  -o-object-fit: cover;
  object-fit: cover;
}
.room .swiper-free-mode > .swiper-wrapper {
  margin: 0;
}
.room .swiper-buttons {
  display: flex;
  cursor: pointer;
  gap: 16px;
  margin-top: 32px;
  align-items: center;
  justify-content: center;
}
.room .swiper-buttons .gallery-prev,
.room .swiper-buttons .gallery-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  aspect-ratio: 1/1;
  border-radius: 100px;
  background: #f1f5f9;
}
.room .swiper-buttons .gallery-prev svg,
.room .swiper-buttons .gallery-next svg {
  width: 24px;
  height: 24px;
}

.download .title-block {
  width: 100%;
  max-width: 700px;
  align-items: flex-start;
}
.download .title-block .title {
  margin-bottom: 16px;
}
.download .title-block p {
  margin-bottom: 16px;
  text-align: left;
}
.download .title-block p:last-of-type {
  margin-bottom: 0;
}
.download__items {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.download__item {
  display: flex;
  padding: 24px;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  border-radius: 16px;
  background: #f1f5f9;
}
.download__item_left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.download__item_left .text {
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}
.download__item_right a {
  color: #bd2949;
  text-align: center;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.download__wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.blocks__wrapper {
  display: flex;
  flex-direction: column;
}
.blocks__item {
  display: flex;
  align-items: center;
  gap: 64px;
}
.blocks__item.reverse {
  flex-direction: row-reverse;
}
.blocks__item_info {
  color: #bd2949;
  font-family: "Playwrite US Trad";
  font-size: 20px;
  font-style: normal;
  border-radius: 16px;
  font-weight: 400;
  padding: 24px 32px;
  line-height: 160%;
  background: url("../img/bg.webp") no-repeat;
  background-size: cover;
}
.blocks__item_right {
  display: flex;
  flex: 1;
}
.blocks__item_right img {
  width: 100%;
  border-radius: 16px;
}
.blocks__item_left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.blocks__item_left p {
  margin-bottom: 32px;
}
.blocks__item_left p:last-of-type {
  margin-bottom: 0;
}
.blocks__item_left ul {
  list-style: disc;
  padding-left: 24px;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq .title {
  margin-bottom: 6px;
}
.faq__wrapper {
  display: flex;
  gap: 32px;
}
.faq__left {
  width: 50%;
}
.faq__right {
  width: 50%;
}

.accordion {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.accordion__content {
  display: none;
}
.accordion__item {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  background: #f1f5f9;
  cursor: pointer;
  transition: 0.3s ease;
}
.accordion__item.active .accordion__header {
  background: url("../img/close.svg") center right 24px no-repeat;
}
.accordion__header {
  background: url("../img/open.svg") center right 24px no-repeat;
  width: 100%;
  padding: 16px 24px;
  display: flex;
  gap: 10px;
  align-items: center;
  transition: 0.3s ease;
}
.accordion__header .text-20 {
  width: 95%;
  line-height: normal;
}
.accordion__content {
  padding: 0 24px 24px;
  transition: 0.3s;
}
.accordion__content p {
  color: #0e1425;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
  margin-bottom: 20px;
}
.accordion__content p:last-child {
  margin-bottom: 0;
}

.data__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.data__item {
  display: flex;
  height: 100%;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border-radius: 16px;
  background: #f1f5f9;
}
.data__item .title {
  margin-bottom: 6px;
}
.data__item a,
.data__item p {
  color: #0e1425;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
}
.data__top {
  display: flex;
  width: 64px;
  height: 64px;
  padding: 2px 1px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  background: #fff;
}
.data__bottom .text {
  margin-top: 16px;
}

.contact-block__wrapper {
  display: flex;
  gap: 64px;
  align-items: center;
}
.contact-block__left {
  width: 50%;
}
.contact-block__left .title {
  margin-bottom: 6px;
}
.contact-block__left form {
  display: flex;
  position: relative;
  z-index: 1;
  gap: 0;
  flex-direction: column;
  width: 100%;
  margin-top: 32px;
}
.contact-block__left form label {
  color: #0e1425;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
  white-space: nowrap;
}
.contact-block__left form label span {
  color: #bd2949;
}
.contact-block__left form .visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.contact-block__left form button[type=submit],
.contact-block__left form input[type=submit] {
  height: 53px;
  display: flex;
  padding: 16px 24px;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  color: #fff;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background: #bd2949;
  border: 1px solid #bd2949;
  transition: 0.3s ease;
  width: -moz-max-content;
  width: max-content;
}
.contact-block__left form button[type=submit]:hover,
.contact-block__left form input[type=submit]:hover {
  background: transparent;
  color: #bd2949;
}
.contact-block__left form .form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  width: 100%;
}
.contact-block__left form .form-row.wrap {
  flex-direction: column;
}
.contact-block__left form input,
.contact-block__left form textarea {
  flex: 1;
  height: 24px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-style: normal;
  color: #444;
  font-weight: 400;
  line-height: normal;
  border-radius: 0px;
  border: 1px solid #bcbfc2;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  background: transparent;
  width: 100%;
  padding: 0 0 16px;
  box-sizing: border-box;
}
.contact-block__left form input::-moz-placeholder, .contact-block__left form textarea::-moz-placeholder {
  color: rgba(28, 28, 28, 0.5);
}
.contact-block__left form input::placeholder,
.contact-block__left form textarea::placeholder {
  color: rgba(28, 28, 28, 0.5);
}
.contact-block__left form textarea {
  height: 100px;
  resize: none;
}
.contact-block__left form .has-spinner {
  position: relative;
}
.contact-block__left form .wpcf7-form-control-wrap {
  position: relative;
  width: 100%;
}
.contact-block__left form .wpcf7 {
  position: relative;
}
.contact-block__left form .wpcf7-list-item {
  margin: 0;
}
.contact-block__left form .wpcf7-spinner {
  position: absolute;
  margin: 0;
  right: 0;
  bottom: 0;
}
.contact-block__right {
  width: 50%;
}
.contact-block__right img {
  width: 100%;
}

.map .map-style {
  height: 420px;
  width: 100%;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 1200px) {
  .hero__items {
    gap: 12px;
  }
  .modal__content {
    padding: 24px;
  }
  .modal__wrapper {
    gap: 24px;
  }
  .modal__close {
    top: 24px;
    right: 24px;
  }
}
@media (max-width: 1024px) {
  .info__wrapper {
    padding: 24px;
  }
  .info__left {
    width: 50%;
  }
  .info__left br {
    display: none;
  }
  .about__wrapper {
    gap: 24px;
  }
  .modal.modal-team .modal__close {
    top: 24px;
    right: 24px;
  }
  .team__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .instrumente__items {
    grid-template-columns: repeat(2, 1fr);
  }
  .blocks__item {
    gap: 24px;
  }
  .data__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 992px) {
  .modal.modal-team .modal__right {
    display: flex;
  }
  .modal.modal-team .modal__content {
    min-height: 90vh;
  }
  .modal__wrapper {
    gap: 16px;
    flex-direction: column;
  }
  .modal__content {
    overflow-y: auto;
    width: 100%;
    height: 100%;
  }
  .modal__mobile {
    display: flex;
  }
  .modal__left {
    max-width: 100%;
  }
  .modal__right {
    display: none;
  }
  .hero {
    height: 100%;
  }
  .hero__wrapper {
    flex-direction: column-reverse;
  }
  .hero__left {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .single-blog__wrapper {
    flex-direction: column;
    gap: 42px;
    margin-top: 42px;
  }
  .single-blog__image {
    min-height: 170px;
  }
  .single-blog__right {
    width: 100%;
  }
  .single-blog__left {
    width: 100%;
  }
  .single-blog__left h1 {
    font-size: 24px;
  }
  .single-blog__left h2 {
    font-size: 20px;
  }
  .accordion__header {
    padding: 16px 48px 16px 24px;
  }
  .faq .title {
    font-size: 20px;
  }
  .faq__wrapper {
    flex-direction: column;
  }
  .faq__left {
    width: 100%;
  }
  .faq__right {
    width: 100%;
  }
  .map {
    padding-bottom: 16px;
  }
  .map .map-style {
    height: 240px;
  }
  .contact-block {
    padding-top: 16px;
  }
  .contact-block__right {
    display: none;
  }
  .contact-block__left {
    width: 100%;
  }
  .data__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
  .blocks__item {
    padding: 17px 0;
    flex-direction: column-reverse;
  }
  .blocks__item.reverse {
    flex-direction: column-reverse;
  }
  .blocks__item_left {
    width: 100%;
  }
  .blocks__item_left .title {
    font-size: 20px;
  }
  .blocks__item_right {
    width: 100%;
  }
  .download__item {
    flex-direction: column;
    align-items: flex-start;
  }
  .room .fade-left,
  .room .fade-right {
    display: none;
  }
  .room .swiper-slide img {
    width: 100%;
    border-radius: 16px;
    height: 240px;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .room .inner {
    position: relative;
  }
  .room .inner::before {
    position: absolute;
    content: "";
    pointer-events: none;
    width: 50px;
    height: 50px;
    top: auto;
    bottom: 40px;
    left: auto;
    z-index: 5;
    right: 20px;
    transform: unset;
    background: url("../img/v1.svg") no-repeat;
  }
  .room .inner::after {
    position: absolute;
    content: "";
    pointer-events: none;
    width: 30px;
    height: 70px;
    top: 70px;
    left: 40px;
    z-index: 5;
    background: url("../img/v2.svg") no-repeat;
  }
  .room .swiper-buttons {
    margin-top: 24px;
  }
  .room .swiper-buttons .gallery-prev,
  .room .swiper-buttons .gallery-next {
    width: 41px;
    height: 41px;
  }
  .simple .title {
    font-size: 20px;
  }
  .simple__text {
    gap: 6px;
  }
  .contact__wrapper {
    flex-direction: column;
    padding: 24px;
    gap: 24px;
  }
  .contact__left {
    width: 100%;
  }
  .contact__left_info {
    margin-top: 10px;
  }
  .contact__right {
    width: 100%;
  }
  .instrumente {
    padding-bottom: 0;
  }
  .instrumente__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
  .about__wrapper {
    flex-direction: column-reverse;
    align-items: center;
  }
  .about__left {
    width: 100%;
  }
  .about__right {
    width: 100%;
  }
  section {
    padding: 32px 0;
  }
  .pagination {
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
  }
  .pagination__item {
    display: none;
  }
  .pagination__item:has(.pagination__arrow) {
    display: flex;
  }
  .pagination__list {
    margin-top: 24px;
  }
  .pagination__link, .pagination__dots {
    display: none;
  }
  .aktuelles__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 32px;
  }
  .aktuelles .tabs {
    gap: 10px;
  }
  .single-gallery__items {
    grid-template-columns: repeat(2, 1fr);
  }
  .info__wrapper {
    flex-direction: column;
    gap: 24px;
    padding-bottom: 0;
  }
  .info__left {
    width: 100%;
    max-width: 100%;
  }
  .info__right {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .scroll-to-top {
    width: 100%;
    justify-content: center;
  }
  .modal__buttons {
    flex-direction: column;
    margin-top: 8px;
  }
  .modal__buttons .btn,
  .modal__buttons .btn-light {
    width: 100%;
    justify-content: center;
  }
  .modal.modal-instrumente .modal__bottom_items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .modal__title {
    font-size: 24px;
  }
  .title {
    font-size: 24px;
  }
  .title-block .title {
    font-size: 20px;
  }
  h1 {
    font-size: 24px;
  }
  .hero h1 {
    margin-bottom: 6px;
  }
  .hero__right .mobile {
    width: 210px;
  }
  .hero__wrapper {
    gap: 24px;
  }
  .hero__links {
    flex-direction: column;
    margin: 24px 0;
  }
  .hero__link {
    width: 100%;
    justify-content: center;
    padding: 10px;
  }
  .hero__items {
    display: none;
  }
  .hero__right .mobile {
    display: block;
  }
  .hero__right .desktop {
    display: none;
  }
  .banner h1 {
    text-align: left;
  }
  .banner__top {
    align-items: flex-start;
    margin-bottom: 32px;
  }
  .banner__top::before, .banner__top::after {
    display: none;
  }
  .modal.modal-team .modal__wrapper {
    flex-direction: column-reverse;
  }
  .modal.modal-team .modal__bottom {
    margin-top: 14px;
    padding-top: 24px;
  }
  .modal.modal-team .modal__title {
    margin-bottom: 14px;
  }
  .modal.modal-team .modal__close {
    width: 24px;
    height: 24px;
    border-radius: 0;
    background: transparent;
  }
}
@media (max-width: 568px) {
  .hero {
    height: -moz-max-content;
    height: max-content;
    padding: 12px 0;
  }
  .hero__wrapper {
    gap: 14px;
  }
  .hero__links {
    margin: 12px 0;
  }
  .hero__right .mobile {
    width: 100%;
  }
  .contact-block__left form {
    margin-top: 24px;
  }
  .contact-block__left form button[type=submit],
  .contact-block__left form input[type=submit] {
    width: 100%;
    justify-content: center;
    height: 41px;
  }
  .room .inner::after {
    top: 95px;
  }
  .mfp-image-holder .mfp-content {
    max-width: 90%;
  }
  .single-gallery__items {
    grid-template-columns: repeat(1, 1fr);
  }
  .aktuelles__items {
    grid-template-columns: repeat(1, 1fr);
  }
  .aktuelles__image {
    height: 180px;
    max-height: 180px;
  }
  .aktuelles__content .text-20 {
    font-size: 16px;
  }
  .contact form button[type=submit],
  .contact form input[type=submit] {
    width: 100%;
    justify-content: center;
  }
  .team__items {
    grid-template-columns: repeat(1, 1fr);
  }
  .banner img {
    width: 100%;
    height: 240px;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .btn {
    width: 100%;
    height: 41px;
    justify-content: center;
  }
  .news .title {
    text-align: left;
  }
  .news .swiper {
    margin-top: 24px;
  }
  .news .swiper-slide img {
    height: 200px;
  }
  .news .btn {
    width: -moz-max-content;
    width: max-content;
    white-space: nowrap;
  }
  .news .swiper-buttons .news-prev,
  .news .swiper-buttons .news-next {
    width: 41px;
    height: 41px;
  }
}
@media (max-width: 345px) {
  .room .inner::after {
    top: 120px;
  }
}
@media (hover: none) and (pointer: coarse) {
  .team__item:hover .team__link {
    opacity: 1;
    transform: none;
  }
}