@charset "UTF-8";
@import "./fonts/stylesheet.css";
@import "./animate.css";
/*** 

====================================================================
	Reset
====================================================================

***/
html {
  scroll-behavior: smooth;
}

* {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
}

button {
  outline: none;
}

button:focus {
  outline: none;
}

button:focus {
  outline: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #fff;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

/*** 
  ====================================================================
      Global Settings
  ====================================================================
   ***/
body {
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #000;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  position: relative;
  font-weight: normal;
  margin: 0px;
  background: none;
}

.auto__container {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 60px;
}

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

.main {
  padding-top: 128px;
  overflow: hidden;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: clip;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

h1 {
  font-weight: 500;
  font-size: 57px;
  line-height: 69px;
}

h2 {
  font-weight: 700;
  font-size: 32px;
  line-height: 49px;
}
h2 span {
  font-weight: 500;
}

h3 {
  font-weight: 700;
  font-size: 30px;
  line-height: 39px;
}

h4 {
  font-weight: 500;
  font-size: 24px;
  line-height: 41px;
}

h5 {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
}

h6 {
  font-weight: 700;
  font-size: 18px;
  line-height: 30px;
}

p.big {
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
}

.button {
  display: inline-block;
  padding: 11px 17px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  cursor: pointer;
}
.button.primary {
  color: #173347;
  border: 3px solid #75F6D1;
  background: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  padding: 8px 14px;
}
.button.primary:hover {
  background: #75F6D1;
}
.button.dark {
  background: #173347;
  color: #fff;
}
.button.dark:hover {
  background: #2b628a;
  background: #75F6D1;
  color: #173347;
}
.button.mint {
  background: #75F6D1;
  color: #173347;
}
.button.mint:hover {
  background: #173347;
  color: #fff;
}
.button.white {
  color: #173347;
  background: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.button.white:hover {
  background: #75F6D1;
}

.video {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 56.2%;
  position: relative;
  border-radius: 25px;
  overflow: hidden;
}
.video::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.12);
}
.video.active::after {
  display: none;
}
.video video,
.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  -o-object-fit: cover;
     object-fit: cover;
}
.video video [poster],
.video iframe [poster] {
  width: 100%;
  height: 100%;
}
.video video:hover ~ .video__play.active,
.video iframe:hover ~ .video__play.active {
  opacity: 1;
}
.video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 86px;
  height: 86px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 3;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.video__play:hover::before {
  -webkit-animation: pulsate 1s infinite;
          animation: pulsate 1s infinite;
}
.video__play:hover::after {
  -webkit-animation: pulsate 1s infinite;
          animation: pulsate 1s infinite;
}
.video__play.active {
  opacity: 0;
}
.video__play.active span img {
  opacity: 0;
}
.video__play.active span::after {
  display: block;
}
.video__play.active span::before {
  display: block;
}
.video__play.active:hover {
  opacity: 1;
}
.video__play span {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 2;
}
.video__play span::after {
  display: none;
  content: "";
  position: absolute;
  top: 50%;
  left: 35%;
  width: 6px;
  height: 50%;
  background-color: #fff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 3px;
}
.video__play span::before {
  content: "";
  display: none;
  position: absolute;
  top: 50%;
  right: 35%;
  width: 6px;
  height: 50%;
  background-color: #fff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 3px;
}
.video__play span img {
  width: 100%;
}

.footer__inner {
  padding: 50px 0 100px 0;
  border-top: 1px solid #707070;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer__inner-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 480px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer__inner-content-gen h6 {
  margin-bottom: 6px;
}
.footer__inner-content-gen p {
  margin-bottom: 6px;
}
.footer__inner-content-gen p:last-child {
  margin-bottom: 0;
}
.footer__inner-content-gen p a {
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.footer__inner-content-gen p a:hover {
  opacity: 0.7;
}
.footer__inner-content-socials a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 16px;
}
.footer__inner-content-socials a:hover svg {
  opacity: 1;
}
.footer__inner-content-socials a svg {
  width: 26px;
  height: 26px;
  margin-right: 14px;
  opacity: 0.15;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.footer__inner-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer__inner-actions p {
  text-align: right;
}
.footer__inner-actions-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__inner-actions-links a {
  font-weight: 700;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  margin-left: 30px;
}
.footer__inner-actions-links a:hover {
  opacity: 0.7;
}

.header {
  padding: 40px 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.header.white .header__inner .burger::before, .header.white .header__inner .burger::after,
.header.white .header__inner .burger span {
  background: #fff;
}
.header.white .header__inner-logo img.logo-white {
  display: inline-block;
}
.header.white .header__inner-logo img.logo-dark {
  display: none;
}
.header.white.sticky .header__inner .burger::before, .header.white.sticky .header__inner .burger::after,
.header.white.sticky .header__inner .burger span {
  background: #000;
}
.header.white.sticky .header__inner-logo img.logo-white {
  display: none;
}
.header.white.sticky .header__inner-logo img.logo-dark {
  display: inline-block;
}
.header.sticky {
  position: fixed;
  background: #fff;
  -webkit-animation-name: sticky;
          animation-name: sticky;
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
}
.header.sticky .nav__inner-link {
  color: #000 !important;
}
.header.sticky .nav__inner .button.white {
  background: #173347;
  color: #fff;
}
.header .auto__container {
  position: static;
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header__inner-logo {
  width: 147px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header__inner-logo img {
  width: 100%;
}

@-webkit-keyframes sticky {
  0% {
    top: -60px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}

@keyframes sticky {
  0% {
    top: -60px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
.nav__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.nav__inner-link {
  padding: 12px 0;
  margin-right: 60px;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: #000;
  position: relative;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.nav__inner-link:hover::before {
  width: 100%;
  opacity: 1;
}
.nav__inner-link::before {
  content: "";
  height: 4px;
  position: absolute;
  border-radius: 4px;
  background: #75F6D1;
  width: 0;
  opacity: 0;
  bottom: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.nav__inner-link.active::before {
  width: 100%;
  opacity: 1;
}
.nav.white .nav__inner-link {
  color: #fff;
}

.burger {
  display: none;
}

.contact {
  padding: 120px 0;
  overflow: hidden;
}
.contact__space {
  height: 130px;
}
.contact h2 {
  margin-bottom: 16px;
}
.contact__inner {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  z-index: 1;
  padding: 160px 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact__inner-image {
  width: calc(50% - 15px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contact__inner-image img {
  width: 135%;
}
.contact__inner-content {
  width: calc(50% - 15px);
  color: #fff;
}
.contact__inner-content h3 {
  margin-bottom: 32px;
}
.contact__inner-content p {
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
}
.contact__inner-content .button {
  padding: 14px 42px;
}
.contact__inner-bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contact__inner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}

.faq {
  padding: 150px 0;
  background: #edf2f5;
}
.faq__inner h2 {
  margin-bottom: 55px;
}
.faqItem {
  padding: 20px 50px;
  background: #ffffff;
  border-radius: 20px;
  margin-bottom: 16px;
}
.faqItem:last-child {
  margin-bottom: 0;
}
.faqItem__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  cursor: pointer;
}
.faqItem__head h5 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.faqItem__head svg {
  width: 13px;
  height: 8px;
  margin-left: 12px;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.faqItem__head.active {
  margin-bottom: 20px;
}
.faqItem__head.active svg {
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
}
.faqItem__body {
  opacity: 0;
  max-height: 0;
  -webkit-transition: max-height 0.3s ease, opacity 0.2s ease;
  transition: max-height 0.3s ease, opacity 0.2s ease;
  overflow: hidden;
}
.faqItem__body.active {
  max-height: 400px;
  opacity: 1;
}
.faqItem__body a {text-decoration:underline;}
.faqItem__body a:hover { color:#008b90 ;}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

.news {
  padding: 150px 0;
  overflow: hidden;
}
.news__head {
  margin-bottom: 100px;
}
.news__head h2 {
  margin-bottom: 28px;
}
.news__block {
  margin-bottom: 60px;
}
.news__block-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #999;
  margin-bottom: 24px;
}
.news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news__block-cta {
  margin-top: 24px;
}
.news__block-cta a {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #173347;
  background: #edf2f5;
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.news__block-cta a:hover {
  background: #173347;
  color: #fff;
}
.newsItem {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}
.newsItem:hover {
  transform: translateY(-4px);
}
.newsItem--skeleton {
  min-height: 280px;
  background: #f4f6f8;
  border-radius: 15px;
  animation: skeleton-pulse 1.5s ease-in-out infinite;
}
@keyframes skeleton-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.newsItem__content {
  padding: 20px 0;
}
.newsItem__content h5 {
  margin-bottom: 6px;
}
.newsItem__content p {
  color: #666;
  font-size: 14px;
  line-height: 22px;
}
.newsItem__date {
  font-size: 12px;
  color: #999;
  margin-bottom: 4px;
}
.newsItem__image {
  padding-bottom: 70%;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  background: #f4f6f8;
}
.newsItem__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.newsItem--instagram .newsItem__image {
  padding-bottom: 100%;
}
.newsItem__play {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.newsItem__play svg {
  width: 16px;
  height: 16px;
  margin-left: 2px;
}

.products {
  padding: 120px 0;
  overflow: hidden;
}
.products__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
}
.products__head p {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: #173347;
}
.products__inner {
  margin: 0 -12px;
}
.products__inner .slick-arrow {
  bottom: 0;
  top: unset;
  -webkit-transform: translate(0);
          transform: translate(0);
  width: 40px;
  height: 40px;
  background: #edf2f5;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  border-radius: 50%;
  z-index: 1;
}
.products__inner .slick-arrow::before {
  position: absolute;
  top: 50%;
  left: 55%;
  content: "";
  width: 13px;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  height: 13px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.products__inner .slick-prev {
  right: 70px;
  left: unset;
}
.products__inner .slick-prev::before {
  background: url(../images/icons/chevron-left.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.products__inner .slick-next {
  right: 12px;
}
.products__inner .slick-next::before {
  background: url(../images/icons/chevron-right.svg);
  background-repeat: no-repeat;
  background-size: contain;
  right: 55%;
}
.products__inner .slick-list {
  overflow: visible;
  padding-bottom: 50px;
}
.products__inner .slick-slide {
  padding: 0 12px !important;
}
.products__inner .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  margin: 0 !important;
}
.productsItem__content {
  padding: 48px 0;
}
.productsItem__content-head {
  margin-bottom: 20px;
}
.productsItem__content-head h5 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.productsItem__content-body p {
  font-size: 16px;
  line-height: 30px;
}
.productsItem__image {
  padding-bottom: 96%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.productsItem__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}

.group {
  background: #edf2f5;
  overflow: hidden;
  padding: 150px 0;
}

.team {
  margin-bottom: 100px;
}
.team h2 {
  margin-bottom: 72px;
}
.team__inner {
  margin: 0 -12px;
}
.team__inner .slick-arrow {
  bottom: 0;
  top: unset;
  -webkit-transform: translate(0);
          transform: translate(0);
  width: 40px;
  height: 40px;
  background: #cccccc;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  border-radius: 50%;
  z-index: 1;
}
.team__inner .slick-arrow::before {
  position: absolute;
  top: 50%;
  left: 55%;
  content: "";
  width: 13px;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  height: 13px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.team__inner .slick-prev {
  right: 70px;
  left: unset;
}
.team__inner .slick-prev::before {
  background: url(../images/icons/chevron-left.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.team__inner .slick-next {
  right: 12px;
}
.team__inner .slick-next::before {
  background: url(../images/icons/chevron-right.svg);
  background-repeat: no-repeat;
  background-size: contain;
  right: 55%;
}
.team__inner .slick-list {
  overflow: visible;
  padding-bottom: 100px;
}
.team__inner .slick-slide {
  padding: 0 12px !important;
}
.team__inner .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  margin: 0 !important;
}
.teamItem {
  height: auto !important;
}
.teamItem__inner {
  padding: 60px 45px;
  background: #ffffff;
  height: 100% !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 20px;
}
.teamItem__avatar {
  width: 145px;
  height: 145px;
  margin: 0 auto 40px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.teamItem__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.teamItem__gen {
  margin-bottom: 35px;
  text-align: center;
}
.teamItem__text p {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  font-style: italic;
  text-align: center !important;
  position: relative;
}
.teamItem__text p::before {
  content: "“";
  position: absolute;
  left: -10px;
  top: 0;
  color: #75F6D1;
  font-size: 50px;
}
.teamItem__text p::after {
  content: "”";
  position: absolute;
  right: -10px;
  bottom: 0;
  color: #75F6D1;
  font-size: 50px;
}
p.shrt { font-size: 1.2em; line-height: 1.5em; }

.partners h2 {
  margin-bottom: 72px;
}


.partnersItem {
  width: 180px;
}
.partnersItem__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 48px;
}

.partnersItem__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}


.partnersItem {
  width: 180px;
}

.partnersItem__image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80px; /* leicht erhöht, falls manche Logos höher sind */
  padding: 15px; /* sorgt für Luft und wirkt gleichmäßiger */
  box-sizing: border-box;
  overflow: hidden;
}

.partnersItem__image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}


.about {
  padding: 70px 0 100px 0;
  overflow: hidden;
}
.about__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 180px;
}
.about__inner:last-child {
  margin-bottom: 0;
}
.about__inner-content {
  width: calc(50% - 30px);
  max-width: 500px;
}
.about__inner-content h3 {
  margin-bottom: 18px;
  line-height: 48px;
}
.about__inner-content h3 span {
  display: block;
  font-weight: 400;
}
.about__inner-content p {
  font-size: 16px;
  line-height: 30px;
}
.about__inner-image {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 1;
}
.about__inner-image .gradient {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -moz-ransform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  height: 130%;
  -o-object-fit: contain;
     object-fit: contain;
  width: 130%;
  z-index: -1;
}
.about__inner-image .general {
  -webkit-box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.160784);
          box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.160784);
  border-radius: 25px;
}
.about__inner-image img {
  width: 100%;
}

.intro {
  padding: 80px 0 50px;
  position: relative;
}
.intro::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  max-height: 1100px;
  background: url(../images/intro-grad.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: bottom;
  border-radius: 25px 25px 0 0;
  z-index: -1;
}
.intro h1 {
  margin-bottom: 50px;
}
.intro h1 span {
  position: relative;
  padding: 4px 20px;
  display: inline-block;
  background: linear-gradient(300deg, #1cb3b3 0%, #75f6d1 100%);
  border-radius: 50px;
  z-index: -1;
}
.intro h1 span::before {
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border-radius: 50px;
  content: "";
  background: #fff;
  z-index: -1;
}
.intro__inner {
  text-align: center;
}
.intro__inner-icon {
  width: 52px;
  height: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto 60px auto;
}
.intro__inner-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.intro__inner-content {
  max-width: 876px;
  margin: 0 auto 120px auto;
}
.intro__inner-content .button {
  padding: 14px 42px;
}
.intro__inner-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.intro__inner-wave {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 40px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.intro__inner-wave img {
  width: 100%;
}
.intro__inner p {
  margin-bottom: 28px;
}

.feature {
  padding: 0px 0 100px;
  overflow: hidden;
}
.feature__inner {
  margin: 0 -10px;
}
.feature__inner .slick-list {
  overflow: visible;
}
.feature__inner .progressItem {
  background: unset;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  border: unset;
  margin: 0;
  padding: 30px 10px;
}
.feature__inner .progressItem p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.feature__inner .progressItem__pro {
  max-width: 385px;
  margin: 35px auto 0 auto;
}

.info__inner {
  position: relative;
  z-index: 1;
  padding: 100px 40px;
}
.info__inner::before {
  pointer-events: none;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  max-height: 1100px;
  background: url(../images/kontakt/bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  border-radius: 25px 25px 0 0;
  z-index: -1;
}
.info__inner-icon {
  width: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto 30px auto;
}
.info__inner-icon img {
  width: 100%;
}
.info__inner-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}
.info__inner-head h3 {
  margin-bottom: 50px;
}
.info__inner-head h3 span {
  font-weight: 500;
  display: block;
}
.info__inner-wave {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.info__inner-wave img {
  width: 100%;
}
.info__inner-body {
  max-width: 1075px;
  margin: 0 auto 50px auto;
  text-align: center;
}
.info__inner-body p {
  font-size: 25px;
  line-height: 50px;
  font-weight: 500;
}
.info__inner-foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.info__inner-foot h6 {
  font-weight: 700;
  margin: 0 25px;
  line-height: 54px;
}

.what {
  padding: 130px 0 90px 0;
}
.what__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.what__inner-content {
  width: calc(50% - 15px);
  max-width: 536px;
}
.what__inner-content h3 {
  margin-bottom: 36px;
}
.what__inner-content h3 span {
  font-weight: 400;
}
.what__inner-content p {
  font-size: 16px;
  line-height: 30px;
}
.what__inner-logo {
  width: 225px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 32px;
}
.what__inner-logo img {
  width: 100%;
}
.what__inner-image {
  width: calc(50% - 15px);
  max-width: 550px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 36px 36px 70px 36px;
  background: url(../images/custom/what-grad.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.what__inner-image img {
  width: 100%;
  max-width: 382px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 20px;
}
.what__inner .mobile {
  display: none;
}

.progress {
  background: #edf2f5;
  padding: 150px 0;
}
.progress__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -15px;
}
.progressItem {
  /*width: calc(50% - 30px);*/
  width: calc(33% - 18px);
  margin: 11px;
  padding: 80px 40px 40px 40px;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.160784);
          box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.160784);
  border-radius: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.progressItem__icon {
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #000;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto 20px auto;
}
.progressItem__icon svg {
  width: 100%;
  height: 100%;
}
.progressItem__inner {
  max-width: 390px;
  margin: 0 auto;
  text-align: center;
}
.progressItem__inner p {
  font-size: 16px;
  line-height: 28px;
}
.progressItem__pro {
  margin-top: 32px;
}
.progressItem__pro h5 {
  margin-bottom: 12px;
}
.progressItem__pro-line {
  width: 100%;
  height: 9px;
  position: relative;
  background: #f5f5f7;
  border-radius: 100px;
  overflow: hidden;
}
.progressItem__pro-line span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: block;
  background: #75F6D1;
  border-radius: 100px;
}

.services {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}
.services__inner {
  margin: 0 -9px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.servicesItem {
  margin: 50px 9px;
  width: calc(33.3% - 18px);
}
.servicesItem__head {
  display: none;
}
.servicesItem__image {
  padding-bottom: 93%;
  position: relative;
  border-radius: 25px;
  overflow: hidden;
}
.servicesItem__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.servicesItem__content {
  padding: 36px 0;
}
.servicesItem__content h5 {
  margin-bottom: 15px;
}
.servicesItem__content h5 span {
  display: block;
  font-weight: 500;
}
.servicesItem__content p {
  font-size: 16px;
  line-height: 30px;
}

.vortel {
  padding: 110px 0;
}
.vortel__inner {
  max-width: 830px;
  margin: 0 auto;
  text-align: center;
}
.vortel__inner-icon {
  width: 96px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto 58px auto;
}
.vortel__inner-icon img {
  width: 100%;
}
.vortel__inner h3 {
  margin-bottom: 28px;
}
.vortel__inner h3 span {
  display: block;
  font-weight: 500;
}
.vortel__inner p {
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 70px;
}
.vortel__inner-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.vortel__inner-links a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 27px;
  height: 27px;
  margin: 0 16px;
}
.vortel__inner-links a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.expo__inner {
  padding: 130px 70px;
  position: relative;
  z-index: 1;
}
.expo__inner h3 {
  text-align: center;
  margin-bottom: 90px;
}
.expo__inner h3 span {
  display: block;
  font-weight: 500;
}
.expo__inner::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  max-height: 1100px;
  background: url(../images/kontakt/bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  border-radius: 25px 25px 0 0;
  z-index: -1;
  pointer-events: none;
}
.expo__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  min-height: 370px;
}
.expo__content-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -moz-ransform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.expo__content-image img {
  width: 100%;
}
.expo__content-image img.tab {
  display: none;
}
.expo__content-image img.mob {
  display: none;
}
.expo__content-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.expoItem {
  width: calc(25% - 15px);
}
.expoItem__number {
  display: none;
}
.expoItem p {
  font-size: 16px;
  line-height: 30px;
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 120vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 300px 0;
}
.hero.white {
  min-height: 150vh;
}
.hero.white .hero__inner {
  color: #fff;
}
.hero__inner {
  text-align: center;
  max-width: 830px;
  margin: 0 auto;
  margin-top:50px
}
.hero__inner > span {
  width: 52px;
  height: 52px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-bottom: 30px;
}
.hero__inner > span img {
  width: 100%;
}
.hero__inner h3 {
  margin-bottom: 24px;
}
.hero__inner p {
  font-size: 16px;
  line-height: 30px;
}
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}

.kontakt {
  padding: 120px 0 20px;
}
.kontakt__arrow {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 36px;
  height: 36px;
  cursor: pointer;
}
.kontakt__arrow.top svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.kontakt__arrow svg {
  width: 100%;
  height: 100%;
}
.kontakt__head {
  margin-bottom: 50px;
  text-align: center;
}
.kontakt__head.kontakt--terms {
  max-width: 436px;
  margin: 0 auto 120px auto;
}
.kontakt__head h3 {
  margin-bottom: 12px;
}
.kontakt__head h4 {
  font-weight: 500;
  max-width: 940px;
  margin: 0 auto 42px auto;
}
.kontakt__head p {
  margin-bottom: 100px;
}
.kontakt__head-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 42px;
}
.kontakt__head-links a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #173347;
  padding: 10px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #173347;
  border-radius: 24px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  margin: 0 11px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.kontakt__head-links a:hover {
  color: #fff;
  background-color: #173347;
}
.kontakt__head-links a svg {
  width: 22px;
  height: 22px;
  margin-right: 10px;
}
.kontakt__inner {
  position: relative;
  padding: 180px 50px 0 50px;
  z-index: 1;
}
.kontakt__inner.kontakt--terms {
  padding-bottom: 0;
}
.kontakt__inner::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  max-height: 1100px;
  background: url(../images/kontakt/bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  border-radius: 25px 25px 0 0;
  z-index: -1;
}
.kontakt__inner-foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.kontakt__text {
  max-width: 956px;
  margin: 0 auto 50px auto;
}
.kontakt__text h5 {
  margin-bottom: 32px;
}
.kontakt__text p {
  margin-bottom: 32px;
  font-size: 16px;
  line-height: 30px;
}
.kontakt__text p:last-child {
  margin-bottom: 0;
}
.kontakt__form {
  max-width: 677px;
  margin: 0 auto;
}

.input {
  margin-bottom: 16px;
  width: 100%;
}
.input input,
.input textarea {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 16px 26px;
  width: 100%;
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  color: #000000;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.160784);
          box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.160784);
  border-radius: 10px;
  resize: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.input input:focus::-webkit-input-placeholder, .input textarea:focus::-webkit-input-placeholder {
  opacity: 0;
}
.input input:focus::-moz-placeholder, .input textarea:focus::-moz-placeholder {
  opacity: 0;
}
.input input:focus:-ms-input-placeholder, .input textarea:focus:-ms-input-placeholder {
  opacity: 0;
}
.input input:focus::-ms-input-placeholder, .input textarea:focus::-ms-input-placeholder {
  opacity: 0;
}
.input input:focus::placeholder,
.input textarea:focus::placeholder {
  opacity: 0;
}
.input input::-webkit-input-placeholder, .input textarea::-webkit-input-placeholder {
  color: #000000;
  opacity: 1;
  -webkit-transition: 0.1s ease;
  transition: 0.1s ease;
}
.input input::-moz-placeholder, .input textarea::-moz-placeholder {
  color: #000000;
  opacity: 1;
  -moz-transition: 0.1s ease;
  transition: 0.1s ease;
}
.input input:-ms-input-placeholder, .input textarea:-ms-input-placeholder {
  color: #000000;
  opacity: 1;
  -ms-transition: 0.1s ease;
  transition: 0.1s ease;
}
.input input::-ms-input-placeholder, .input textarea::-ms-input-placeholder {
  color: #000000;
  opacity: 1;
  -ms-transition: 0.1s ease;
  transition: 0.1s ease;
}
.input input::placeholder,
.input textarea::placeholder {
  color: #000000;
  opacity: 1;
  -webkit-transition: 0.1s ease;
  transition: 0.1s ease;
}

.space {
  height: 20px;
}

.check {
  position: relative;
}
.check__outer {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.check input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}
.check input:checked + label::after {
  opacity: 1;
}
.check input:checked + label::before {
  background: #173347;
  border: 1px solid #173347;
}
.check label {
  display: block;
  padding-left: 40px;
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  color: #000000;
}
.check label a {
  text-decoration: underline;
}
.check label::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -moz-ransform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  left: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #707070;
  content: "";
  background: #fff;
}
.check label::after {
  position: absolute;
  top: calc(50% - 7px);
  left: 7px;
  content: "";
  width: 4px;
  height: 8px;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.carier {
  padding: 150px 0;
  background: #edf2f5;
  overflow: hidden;
}
.carier h2 {
  margin-bottom: 30px;
}
.carier__inner {
  margin: 0 -12px;
}
.carier__inner .slick-arrow {
  bottom: 0;
  top: unset;
  -webkit-transform: translate(0);
          transform: translate(0);
  width: 40px;
  height: 40px;
  background: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  border-radius: 50%;
  z-index: 1;
}
.carier__inner .slick-arrow::before {
  position: absolute;
  top: 50%;
  left: 55%;
  content: "";
  width: 13px;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  height: 13px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.carier__inner .slick-prev {
  right: 70px;
  left: unset;
}
.carier__inner .slick-prev::before {
  background: url(../images/icons/chevron-left.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.carier__inner .slick-next {
  right: 12px;
}
.carier__inner .slick-next::before {
  background: url(../images/icons/chevron-right.svg);
  background-repeat: no-repeat;
  background-size: contain;
  right: 55%;
}
.carier__inner .slick-list {
  overflow: visible;
  padding-bottom: 100px;
}
.carier__inner .slick-slide {
  padding: 0 12px !important;
}
.carier__inner .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  margin: 0 !important;
}
.carierItem__inner {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.160784);
          box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.160784);
  border-radius: 20px;
  padding: 44px;
}
.carierItem__inner h5 {
  margin-bottom: 20px;
}
.carierItem__inner h5:last-child {
  margin: 0;
}
.carierItem__inner p {
  margin-bottom: 20px;
}
.carierItem__inner p:last-child {
  margin: 0;
}
.carierItem__inner p a {
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.carierItem__inner p a:hover {
  color: #75F6D1;
}

.advisor {
  padding: 0 0 120px;
}
.advisor h2 {
  margin-bottom: 60px;
  text-align: center;
}
.advisor__inner {
  margin: 0 -14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.advisorItem {
  width: calc(33.3% - 14px);
  margin: 0 14px;
}
.advisorItem__image-inner {
  padding-bottom: 120%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.advisorItem__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.advisorItem__content {
  padding: 38px 0;
}
.advisorItem__content h5 {
  margin-bottom: 20px;
}
.advisorItem__content h5 span {
  display: block;
  font-weight: 500;
}
.advisorItem__content p {
  margin-bottom: 20px;
}
.advisorItem__content p:last-child {
  margin-bottom: 0;
}

.doctos {
  padding: 150px 0;
}
.doctos__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 100px;
}
.doctos__head h3 {
  width: calc(50% - 15px);
}
.doctos__head h3 span {
  display: block;
  font-weight: 500;
}
.doctos__head p {
  width: calc(50% - 15px);
}
.doctos__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  border-radius: 25px;
  overflow: hidden;
  margin-bottom: 120px;
}
.doctos__image img {
  width: 100%;
}
.doctos__inner-head {
  margin-bottom: 50px;
}
.doctos__inner-head h2 {
  margin-bottom: 28px;
}
.doctos__flow {
  position: relative;
}
.doctos__flow-item {
  width: calc(50% - 25px);
  position: relative;
  z-index: 1;
}
.doctos__flow-item p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 30px;
}
.doctos__flow-item p:last-child {
  margin: 0;
}
.doctos__flow-item:last-child {
  margin-left: auto;
}
.doctos__flow-image {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1170px;
  margin: -50px 0;
}
.doctos__flow-image img {
  width: 100%;
}
.doctos__flow-image img.mob {
  display: none;
}
.doctos__flow-image img.tab {
  display: none;
}

@media (max-width: 1460px) {
  .auto__container {
    padding: 0 40px;
  }

  h4 {
    font-size: 22px;
    line-height: 36px;
  }

  .main {
    padding-top: 96px;
  }

  .header {
    padding: 24px 0;
  }

  .nav__inner-link {
    margin-right: 42px;
  }

  .contact {
    padding: 100px 0;
  }
  .contact__inner {
    padding: 100px 50px;
  }
  .contact__inner-image img {
    width: 150%;
  }

  .news {
    padding: 120px 0;
  }
  .newsItem__content h5 {
    font-size: 18px;
    line-height: 30px;
  }
  .newsItem__content p {
    font-size: 18px;
    line-height: 30px;
  }

  .products {
    padding: 120px 0;
  }
  .productsItem__content-head h5 {
    font-size: 18px;
    line-height: 30px;
  }
  .productsItem__content-head p {
    font-size: 18px;
    line-height: 30px;
  }
  .productsItem__content-body p {
    font-size: 16px;
    line-height: 30px;
  }

  .group {
    padding: 120px 0;
  }

  .team {
    margin-bottom: 60px;
  }
  .teamItem__inner {
    padding: 60px 40px;
  }
  .teamItem__gen h5 {
    font-size: 18px;
    line-height: 30px;
  }
  .teamItem__gen p {
    font-size: 18px;
    line-height: 30px;
  }
  .teamItem__text p {
    font-size: 14px;
    line-height: 26px;
  }

  .partners__inner .slick-list {
    overflow: visible;
  }

  .about {
    padding: 60px 0;
  }
  .about__inner {
    margin-bottom: 150px;
  }
  .about__inner-content h3 {
    font-size: 24px;
    line-height: 36px;
  }

  .intro h1 {
    font-size: 42px;
    line-height: 54px;
  }
  .intro__inner-content {
    margin-bottom: 100px;
  }

  .feature__inner .progressItem h5 {
    font-size: 18px;
    line-height: 30px;
  }
  .feature__inner .progressItem p {
    font-size: 14px;
    line-height: 26px;
  }

  .info__inner-foot {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 15px;
  }
  .info__inner-body p {
    font-size: 22px;
    line-height: 40px;
  }

  .what__inner-logo {
    width: 160px;
    margin-bottom: 20px;
  }
  .what__inner-content h3 {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 20px;
  }

  .progress {
    padding: 120px 0;
  }
  .progressItem {
    padding-top: 50px;
  }

  .servicesItem {
    margin: 30px 9px;
  }

  .expo__inner {
    padding: 100px 50px;
  }
  .expo__inner h3 {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 74px;
  }
  .expo__content {
    min-height: 320px;
  }
  .expoItem p {
    font-size: 14px;
    line-height: 26px;
  }

  .vortel {
    padding: 80px 0;
  }
  .vortel__inner h3 {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 30px;
  }
  .vortel__inner-icon {
    width: 67px;
    height: 67px;
    margin-bottom: 38px;
  }
  .vortel__inner p {
    margin-bottom: 50px;
  }

  .hero {
    padding: 260px 0;
  }

  .carier {
    padding: 120px 0;
  }
  .carierItem__inner {
    padding: 32px;
  }

  .advisorItem__content {
    padding: 24px 0;
  }
  .advisorItem__content h5 {
    font-size: 16px;
    line-height: 30px;
  }
  .advisorItem__content p {
    font-size: 16px 30px;
  }

  .kontakt {
    padding: 100px 0 20px;
  }
  .kontakt__inner {
    padding: 120px 40px 0 40px;
  }
  .kontakt__head h3 {
    font-size: 24px;
    line-height: 36px;
  }
  .kontakt__head h4 {
    font-size: 18px;
    line-height: 30px;
    max-width: 800px;
  }
  .kontakt__head p {
    margin-bottom: 60px;
  }
}
@media (max-width: 1340px) {
  .servicesItem {
    margin: 16px 9px;
  }
  .servicesItem__content {
    padding: 30px 0;
  }
  .servicesItem__content h5 {
    font-size: 16px;
    line-height: 26px;
  }

  .expo__inner {
    padding: 80px 40px;
  }
}
@media (max-width: 1024px) {
  .auto__container {
    padding: 0 50px;
  }

  h2 {
    font-size: 24px;
    line-height: 36px;
  }

  h4 {
    font-size: 18px;
    line-height: 36px;
  }

  h5 {
    font-size: 16px;
    line-height: 26px;
  }

  body {
    font-size: 16px;
    line-height: 24px;
  }

  .main {
    padding-top: 113px;
  }

  .video {
    border-radius: 15px;
  }
  .video__play {
    width: 44px;
    height: 44px;
  }
  .video__play span::after {
    width: 3px;
  }
  .video__play span::before {
    width: 3px;
  }

  .header {
    padding: 40px 0;
    -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
            box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
  }
  .header.active {
    background-color: #fff;
  }
  .header.active.white .header__inner .burger::before, .header.active.white .header__inner .burger::after,
.header.active.white .header__inner .burger span {
    background: #000;
  }
  .header.active.white .header__inner-logo img.logo-white {
    display: none;
  }
  .header.active.white .header__inner-logo img.logo-dark {
    display: inline-block;
  }
  .header.active.white.sticky .header__inner .burger::before, .header.active.white.sticky .header__inner .burger::after,
.header.active.white.sticky .header__inner .burger span {
    background: #000;
  }
  .header.active.white.sticky .header__inner-logo img.logo-white {
    display: none;
  }
  .header.active.white.sticky .header__inner-logo img.logo-dark {
    display: inline-block;
  }

  .nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 0;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .nav.active {
    transform: translate(0, 0);
    -moz-ransform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    top: 100%;
    opacity: 1;
  }
  .nav.white .nav__inner-link {
    color: #000;
  }
  .nav__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    top: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    right: 0;
    width: 100%;
    padding: 0;
    padding: 50px 20px;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.160784);
  }
  .nav__inner-link {
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: #000000;
    padding: 10px 0;
    margin: 0 0 20px 0;
  }
  .nav .button {
    font-size: 20px;
    line-height: 24px;
    color: #173347 !important;
    border: 3px solid #75F6D1;
    background: #fff;
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    padding: 7px 17px;
    margin-top: 5px;
    background-color: transparent !important;
  }
  .nav .button:hover {
    background: #75F6D1;
  }

  .body.active {
    overflow: hidden;
  }

  .burger {
    display: block;
    position: relative;
    width: 20px;
    height: 16px;
  }
  .burger::before {
    top: 0;
    width: 100%;
    height: 2px;
    background-color: #000;
    border-radius: 0.125rem;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -moz-ransform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
  }
  .burger span {
    top: 50%;
    width: 100%;
    height: 2px;
    background-color: #000;
    border-radius: 0.125rem;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    content: "";
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    -moz-ransform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
  }
  .burger::after {
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #000;
    border-radius: 0.125rem;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -moz-ransform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
  }
  .burger.active::before {
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .burger.active span {
    opacity: 0;
  }
  .burger.active::after {
    bottom: 50%;
    -webkit-transform: translate(-50%, 50%) rotate(-45deg);
    transform: translate(-50%, 50%) rotate(-45deg);
  }

  .footer__inner {
    padding: 32px 0 60px 0;
  }
  .footer__inner-content {
    max-width: 320px;
  }
  .footer__inner-content-socials a {
    font-size: 14px;
    line-height: 20px;
  }
  .footer__inner-content-socials a svg {
    width: 15px;
    height: 15px;
    margin-right: 6px;
  }
  .footer__inner-content-gen h6 {
    font-size: 14px;
    line-height: 20px;
  }
  .footer__inner-content-gen p {
    font-size: 14px;
    line-height: 20px;
  }
  .footer__inner-actions p {
    font-size: 14px;
    line-height: 20px;
  }
  .footer__inner-actions-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .footer__inner-actions-links a {
    margin: 0 0 10px 0;
    font-size: 14px;
    line-height: 20px;
  }

  .contact {
    padding: 84px 0;
  }
  .contact__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 100px 40px;
  }
  .contact__inner-image {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    width: 100%;
    margin-bottom: 60px;
  }
  .contact__inner-image img {
    width: 100%;
  }
  .contact__inner-content {
    text-align: center;
    width: 100%;
  }
  .contact__inner-content .button {
    margin-top: 24px;
  }

  .faq {
    padding: 100px 0;
  }
  .faq h2 {
    text-align: center;
    margin-bottom: 32px;
  }
  .faq h2 i {
    display: none;
  }
  .faq h2 span {
    display: block;
  }
  .faqItem {
    padding: 18px;
  }
  .faqItem__head.active {
    margin-bottom: 12px;
  }

  .news {
    padding: 100px 0;
  }
  .news__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .newsItem__content {
    padding: 16px 0;
  }
  .newsItem__content h5 {
    font-size: 14px;
    line-height: 26px;
  }
  .newsItem__content p {
    font-size: 14px;
    line-height: 26px;
  }

  .products {
    padding: 100px 0;
  }
  .products__head {
    margin-bottom: 26px;
  }
  .productsItem__content {
    padding: 32px 0;
  }
  .productsItem__content-head {
    margin-bottom: 12px;
  }
  .productsItem__content-body p {
    font-size: 14px;
    line-height: 26px;
  }

  .group {
    padding: 80px 0;
  }

  .team {
    margin-bottom: 40px;
  }
  .team h2 {
    margin-bottom: 24px;
  }
  .team h2 span {
    display: block;
  }
  .team__inner .slick-list {
    padding-bottom: 80px;
  }
  .teamItem__avatar {
    width: 76px;
    height: 76px;
    margin-bottom: 20px;
  }
  .teamItem__inner {
    padding: 58px 48px;
    text-align: center;
  }

  .partners h2 {
    margin-bottom: 24px;
  }

  .about__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about__inner:last-child .about__inner-content h3 span {
    display: block;
  }
  .about__inner-image {
    width: 100%;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    max-width: 80%;
    margin-bottom: 56px;
  }
  .about__inner-content {
    width: 100%;
    text-align: center;
    max-width: 580px;
  }
  .about__inner-content h3 br {
    display: none;
  }
  .about__inner-content h3 span {
    display: inline;
  }

  .intro::before {
    height: 80%;
  }
  .intro h1 {
    font-size: 35px;
    line-height: 42px;
    max-width: 538px;
    margin: 0 auto 40px auto;
  }
  .intro__inner-content {
    margin-bottom: 80px;
  }
  .intro__inner-wave {
    max-width: 450px;
    margin-bottom: 40px;
  }

  .feature__inner .progressItem {
    padding: 10px;
  }
  .feature__inner .progressItem__pro {
    max-width: 200px;
    margin-top: 20px;
  }
  .feature__inner .progressItem h5 {
    font-size: 16px;
    line-height: 26px;
  }
  .feature__inner .progressItem p {
    font-size: 12px;
    line-height: 24px;
  }

  .info__inner {
    padding: 80px 47px;
  }
  .info__inner-head {
    margin-bottom: 40px;
  }
  .info__inner-head h3 {
    font-size: 24px;
    line-height: 36px;
  }
  .info__inner-wave {
    max-width: 575px;
  }
  .info__inner-body p {
    font-size: 18px;
    line-height: 36px;
  }
  .info__inner-foot {
    font-size: 14px;
  }

  .what__inner-logo {
    width: 120px;
  }
  .what__inner-image {
    width: calc(50% + 50px);
    margin-right: -50px;
  }
  .what__inner-content h3 {
    font-size: 20px;
    line-height: 30px;
  }
  .what__inner-content p {
    font-size: 14px;
    line-height: 26px;
  }

  .progress {
    padding: 100px 0;
  }
  .progress__inner {
    margin: 0 -12px;
  }
  .progressItem {
    padding: 50px 25px;
    margin: 12px;
    width: calc(50% - 24px);
  }
  .progressItem p {
    font-size: 14px;
    line-height: 26px;
  }
  .progressItem__pro-line {
    height: 6px;
  }

  .services {
    padding: 115px 0;
  }
  .servicesItem {
    width: calc(50% - 18px);
  }

  .expo__content-image {
    position: static;
    width: 100%;
    transform: translate(0, 0);
    -moz-ransform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    margin: 20px 0;
  }
  .expo__content-image img.tab {
    display: inline-block;
  }
  .expo__content-image img.pc {
    display: none;
  }
  .expoItem {
    width: calc(50% - 20px);
  }

  .hero {
    padding: 300px 0;
  }

  .carier {
    padding: 100px 0;
  }
  .carierItem__inner h5 {
    font-size: 20px;
    line-height: 30px;
  }
  .carierItem__inner p {
    font-size: 20px;
    line-height: 30px;
  }

  .advisor {
    padding: 80px 0 140px;
  }
  .advisor h2 {
    margin-bottom: 40px;
    text-align: left;
  }
  .advisor__inner {
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .advisorItem {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    margin: 0 0 56px 0;
  }
  .advisorItem:last-child {
    margin: 0;
  }
  .advisorItem__image {
    width: 225px;
    margin-right: 55px;
  }
  .advisorItem__content {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 0;
  }

  .doctos {
    padding: 100px 0;
  }
  .doctos__image {
    margin-bottom: 100px;
  }
  .doctos__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 40px;
  }
  .doctos__head h3 {
    width: 100%;
    margin-bottom: 30px;
    font-size: 24px;
    line-height: 36px;
  }
  .doctos__head p {
    width: 100%;
  }
  .doctos__inner-head h2 {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 12px;
  }
  .doctos__inner-head h4 {
    font-size: 22px;
    line-height: 40px;
  }
  .doctos__flow {
    position: relative;
    min-height: 760px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .doctos__flow-image {
    position: absolute;
    top: 2%;
    left: 50%;
    transform: translateX(-50%);
    -moz-ransform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    max-width: 500px;
    width: 100%;
    margin: 0;
  }
  .doctos__flow-image img.pc {
    display: none;
  }
  .doctos__flow-image img.tab {
    display: inline-block;
  }

  .kontakt {
    padding: 80px 0 20px 0;
  }
  .kontakt__text p {
    font-size: 14px;
    line-height: 26px;
  }
  .kontakt__head-links {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .kontakt__head-links a {
    margin: 8px;
    font-size: 14px;
    line-height: 20px;
  }
  .kontakt__head-links a svg {
    width: 18px;
    height: 18px;
  }
  .kontakt__inner {
    padding: 80px 40px 0 40px;
  }

  .faqItem__body.active { max-height: 2000px;}
}
@media (max-width: 700px) {
  .auto__container {
    padding: 0 27px;
  }

  .intro h1 {
    font-size: 24px;
    line-height: 36px;
    max-width: 360px;
    margin-bottom: 30px;
  }
  .intro h1 span {
    padding: 4px 14px;
    white-space: nowrap;
  }
  .intro__inner-image {
    border-radius: 15px;
  }
  .intro__inner-content {
    margin-bottom: 90px;
  }
  .intro__inner p {
    margin-bottom: 40px;
  }
  .intro__inner-wave {
    max-width: 360px;
    margin-bottom: 8px;
  }
  .intro__inner-icon {
    width: 34px;
    height: 34px;
    margin-bottom: 20px;
  }

  .info__inner {
    padding: 70px 27px 40px;
  }
  .info__inner-head h3 {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 12px;
  }
  .info__inner-wave {
    margin-bottom: 20px;
    max-width: 305px;
  }
  .info__inner-body {
    margin-bottom: 30px;
  }
  .info__inner-body p {
    font-size: 14px;
    line-height: 26px;
  }
  .info__inner-foot {
    margin: 0 -16px;
  }
  .info__inner-foot h6 {
    font-size: 12px;
    line-height: 46px;
    margin: 0 16px;
  }

  .what__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .what__inner-content {
    width: 100%;
  }
  .what__inner-content p {
    display: none;
  }
  .what__inner-image {
    margin: 0 -27px;
    width: calc(100% + 54px);
    padding: 20px 62px 40px 62px;
  }
  .what__inner .mobile {
    display: block;
  }

  .progress__inner {
    margin: 0;
  }
  .progressItem {
    margin: 0 0 20px 0;
    width: 100%;
  }
  .progressItem:last-child {
    margin: 0;
  }

  .services__inner {
    margin: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border: 1px solid #cccccc;
    border-radius: 15px;
  }
  .servicesItem {
    width: 100%;
    margin: 0;
    padding: 25px;
    border-bottom: 1px solid #cccccc;
  }
  .servicesItem:last-child {
    border-bottom: unset;
  }
  .servicesItem__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
  }
  .servicesItem__head.active {
    margin-bottom: 16px;
  }
  .servicesItem__head.active svg {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .servicesItem__head h5 {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    font-size: 16px;
    line-height: 28px;
  }
  .servicesItem__head h5 span {
    display: block;
    font-weight: 500;
  }
  .servicesItem__head svg {
    width: 13px;
    height: 13px;
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    color: #75F6D1;
    margin-left: 12px;
  }
  .servicesItem__image {
    border-radius: 20px;
  }
  .servicesItem__content {
    padding: 20px 0 0 0;
  }
  .servicesItem__content h5 {
    display: none;
  }
  .servicesItem__content p {
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
  }
  .servicesItem__inner {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
  }
  .servicesItem__inner.active {
    max-height: 600px;
    opacity: 1;
  }

  .advisor {
    padding: 70px 0 100px;
  }
  .advisorItem__image {
    margin-right: 28px;
    height: 156px;
    width: 116px;
  }
  .advisorItem__image-inner {
    padding: 0;
    height: 100%;
  }
  .advisorItem__content h5 {
    font-size: 14px;
    line-height: 26px;
    margin: 0;
  }
  .advisorItem__content p {
    font-size: 14px;
    margin: 0;
    line-height: 26px;
  }

  .doctos {
    padding: 50px 0;
  }
  .doctos__flow {
    min-height: unset;
  }
  .doctos__flow-item {
    margin-bottom: 30px;
    width: 100%;
  }
  .doctos__flow-item:last-child {
    margin: 0;
  }
  .doctos__flow-image {
    transform: translate(0, 0);
    -moz-ransform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    position: static;
    width: 100%;
  }
  .doctos__flow-image img.tab {
    display: none;
  }
  .doctos__flow-image img.mob {
    display: inline-block;
  }
}
@media (max-width: 540px) {
  .main {
    padding-top: 65.58px;
  }

  h2 {
    font-size: 18px;
    line-height: 30px;
  }

  h3 {
    font-weight: 700;
    font-size: 18px;
    line-height: 30px;
  }

  h5 {
    font-size: 14px;
    line-height: 26px;
  }

  body {
    font-size: 14px;
    line-height: 26px;
  }

  .button {
    font-size: 14px;
    line-height: 20px;
  }

  .video__play {
    width: 24px;
    height: 24px;
  }
  .video__play span::after {
    width: 2px;
  }
  .video__play span::before {
    width: 2px;
  }

  .container {
    margin: 0 !important;
  }

  #behandlungstext {
    font-size: 14px !important;
    line-height: 28px !important;
  }

  #ziffern {
    font-size: 12px !important;
  }
  #ziffern span {
    padding: 0 5px !important;
  }

  .header {
    padding: 20px 0;
  }
  .header__inner-logo {
    width: 114px;
  }

  .nav {
    position: fixed;
    top: 0;
    height: calc(100% - 65.58px);
  }
  .nav.active {
    top: 65.58px;
  }
  .nav__inner {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    overflow-y: auto;
    border: unset;
  }

  .footer__inner-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer__inner-content-socials a:last-child {
    margin: 0;
  }
  .footer__inner-content-gen {
    margin-bottom: 16px;
  }

  .contact {
    padding: 50px 0 75px 0;
  }
  .contact__inner {
    padding: 58px 0;
    border-radius: 15px;
  }
  .contact__inner-image {
    margin-bottom: 30px;
  }
  .contact__inner-content {
    padding: 0 26px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .contact__inner-content h3 {
    margin-bottom: 12px;
  }
  .contact__inner-content p {
    font-size: 14px;
    line-height: 26px;
  }
  .contact__inner-content .button {
    margin-top: 20px;
    padding: 12px 22px;
  }

  .faq {
    padding: 80px 0;
  }
  .faqItem {
    margin-bottom: 20px;
    border-radius: 15px;
  }

  .products {
    padding: 50px 0;
  }
  .products__head p {
    font-size: 12px;
    line-height: 16px;
  }

  .news {
    padding: 50px 0;
  }
  .news__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .news__block {
    margin-bottom: 40px;
  }
  .news__head h4 {
    font-size: 16px;
    line-height: 30px;
  }

  .group {
    padding: 50px 0;
  }

  .teamItem__inner {
    padding: 37px 27px;
  }
  .teamItem__text p {
    text-align: left;
    font-size: 12px;
    line-height: 24px;
  }

  .partnersItem {
    width: 120px;
  }
  /*
  .partnersItem__image {
    height: 36px;
  }
*/
  .about__inner {
    margin-bottom: 80px;
  }
  .about__inner-image {
    max-width: 90%;
  }
  .about__inner-image .general {
    border-radius: 10px;
  }
  .about__inner-content h3 {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 20px;
  }
  .about__inner-content p {
    font-size: 14px;
    line-height: 26px;
  }

  .feature {
    padding: 0 0 40px;
  }
  .feature__inner {
    margin: 0 -15px;
  }
  .feature__inner .progressItem {
    padding: 15px;
  }
  .feature__inner .progressItem__pro {
    width: 100%;
    max-width: unset;
    position: relative;
  }
  .feature__inner .progressItem__pro-line {
    height: 12px;
  }
  .feature__inner .progressItem__pro h5 {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -moz-ransform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    z-index: 1;
  }
  .feature__inner .progressItem h5 {
    font-size: 10px;
    line-height: 26px;
  }
  .feature__inner .progressItem p {
    font-size: 14px;
    line-height: 26px;
  }
  .feature__inner .progressItem__icon {
    width: 20px;
    height: 20px;
    margin: 0 9px 0 0;
  }
  .feature__inner .progressItem__inner {
    text-align: left;
  }
  .feature__inner .progressItem__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .progress {
    padding: 70px 0;
  }
  .progressItem h5 {
    font-size: 16px;
    line-height: 26px;
  }
  .progressItem p {
    font-size: 14px;
    line-height: 26px;
  }
  .progressItem__pro {
    max-width: 244px;
    margin: 24px auto 0 auto;
  }

  .expo__inner {
    padding: 70px 27px 0px 27px;
  }
  .expo__inner h3 {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 30px;
  }
  .expo__content-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .expo__content-row:last-child .expoItem:last-child {
    margin: 0;
  }
  .expo__content-image {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-bottom: 50px;
  }
  .expo__content-image img.mob {
    display: inline-block;
  }
  .expo__content-image img.tab {
    display: none;
  }
  .expoItem {
    width: 100%;
    margin-bottom: 36px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .expoItem__number {
    font-weight: 700;
    font-size: 33px;
    line-height: 48px;
    color: #75f6d1;
    width: 40px;
    display: block;
  }
  .expoItem p {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }

  .vortel {
    padding: 60px 0;
  }
  .vortel__inner-icon {
    width: 55px;
    height: 55px;
  }
  .vortel__inner h3 {
    font-size: 18px;
    line-height: 26px;
  }
  .vortel__inner p {
    margin-bottom: 38px;
  }

  .hero {
    padding: 180px 0 !important;
  }
  .hero.white {
    padding: 110px 0 !important;
  }
  .hero.white .hero__inner p {
    font-size: 14px;
    line-height: 26px;
  }
  .hero__bg img {
    -o-object-position: bottom;
       object-position: bottom;
  }
  .hero__inner h3 {
    font-size: 20px;
    line-height: 30px;
  }
  .hero__inner > span {
    width: 26px;
    height: 26px;
    margin-bottom: 16px;
  }

  .carier {
    padding: 50px 0;
  }
  .carierItem__inner {
    padding: 36px 27px;
  }
  .carierItem__inner h5 {
    font-size: 16px;
    line-height: 26px;
  }
  .carierItem__inner p {
    font-size: 16px;
    line-height: 26px;
  }

  .doctos__head h3 {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 20px;
  }
  .doctos__image {
    margin-bottom: 40px;
    border-radius: 15px;
  }
  .doctos__inner-head {
    margin-bottom: 50px;
  }
  .doctos__inner-head h2 {
    font-size: 18px;
    line-height: 36px;
  }
  .doctos__inner-head h4 {
    font-size: 18px;
    line-height: 30px;
  }

  .kontakt__arrow {
    width: 28px;
    height: 28px;
  }
  .kontakt__head h3 {
    font-size: 18px;
    line-height: 30px;
  }
  .kontakt__head h4 {
    font-size: 14px;
    line-height: 26px;
  }
  .kontakt__inner {
    margin: 0 -27px;
    padding: 40px 27px 0;
  }

  .input input,
.input textarea {
    font-size: 14px;
    line-height: 20px;
    padding: 16px 24px;
  }

  .check label {
    font-size: 14px;
    line-height: 26px;
  }
}
@media (max-height: 980px) {
  .hero {
    padding: 200px 0;
  }
}


/***
====================================================================
  Pricing Page
====================================================================
***/

/* Hero */
.pricing-hero {
  padding: 200px 0 60px 0;
  text-align: center;
}
.pricing-hero__inner {
  max-width: 800px;
  margin: 0 auto;
}
.pricing-hero__inner h1 {
  margin-bottom: 16px;
}
.pricing-hero__inner p {
  color: #444;
}
.pricing-hero__signal {
  display: inline-block;
  background: #e8860c;
  color: #fff;
  font-family: inherit;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.2px;
  padding: 14px 28px;
  border: none;
  border-radius: 10px;
  margin: 8px 0 20px;
  box-shadow: 0 6px 20px rgba(232, 134, 12, 0.25);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.pricing-hero__signal:hover {
  background: #d07908;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(232, 134, 12, 0.32);
}
.pricing-hero__signal:active {
  transform: translateY(0);
  box-shadow: 0 4px 14px rgba(232, 134, 12, 0.25);
}
.pricing-hero__signal:focus-visible {
  outline: 3px solid rgba(232, 134, 12, 0.4);
  outline-offset: 3px;
}

/* Toggle */
.pricing__toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}
.pricing__toggle-label {
  font-weight: 600;
  font-size: 16px;
  color: rgba(23, 51, 71, 0.5);
  cursor: pointer;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.pricing__toggle-label.active {
  color: #173347;
}
.pricing__toggle-switch {
  position: relative;
  width: 52px;
  height: 28px;
  background: #173347;
  border-radius: 50px;
  cursor: pointer;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.pricing__toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
}
.pricing__toggle-switch.active .pricing__toggle-knob {
  -webkit-transform: translateX(24px);
          transform: translateX(24px);
}

/* Cards Section */
.pricing {
  padding-bottom: 80px;
}

/* Cards Grid */
.pricing__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

/* Card */
.pricingCard {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  padding: 40px 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricingCard:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
          box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

/* Featured Card */
.pricingCard--featured {
  border: 2px solid #75F6D1;
  position: relative;
  -webkit-box-shadow: 0 8px 30px rgba(117, 246, 209, 0.15);
          box-shadow: 0 8px 30px rgba(117, 246, 209, 0.15);
}
.pricingCard__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #75F6D1;
  color: #173347;
  font-weight: 700;
  font-size: 13px;
  padding: 4px 20px;
  border-radius: 50px;
  white-space: nowrap;
}

/* Card Head */
.pricingCard__head {
  margin-bottom: 8px;
}
.pricingCard__head h5 {
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #173347;
}
.pricingCard__desc {
  font-size: 15px;
  line-height: 24px;
  color: #173347;
}

/* Price */
.pricingCard__price {
  margin-bottom: 16px;
}
.pricingCard__savings {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #2bb58a;
  margin-top: 6px;
}
.pricingCard__amount {
  display: block;
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  color: #173347;
}
.pricingCard__period {
  display: block;
  font-size: 14px;
  color: #173347;
  margin-top: 4px;
  min-height: 44px;
}

/* Features */
.pricingCard__features {
  list-style: none;
  margin: 0;
  padding: 24px 0 0 0;
  border-top: 1px solid #eee;
}
.pricingCard__features li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 24px;
  color: #333;
}
.pricingCard__features li:last-child {
  margin-bottom: 0;
}
.pricingCard__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  background: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22.219 16.251'%3E%3Cpath d='M138.788,175.534a1.75,1.75,0,0,1,1.387.591c1.41,1.409,2.827,2.811,4.223,4.235.277.283.43.269.7,0,3.615-3.632,7.249-7.244,10.859-10.88a1.9,1.9,0,0,1,3.061.609,1.923,1.923,0,0,1-.337,1.929q-6.341,6.312-12.659,12.647a1.793,1.793,0,0,1-2.539.01c-2.018-2.035-4.053-4.052-6.071-6.087a1.827,1.827,0,0,1,.739-2.971,3.544,3.544,0,0,1,.635-.08' transform='translate(-136.921 -168.942)' fill='%232bb58a'/%3E%3C/svg%3E");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/* CTA */
.pricingCard__cta {
  display: block;
  text-align: center;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.pricingCard__cta--secondary {
  margin-top: 10px;
}
.pricingCard__cta:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

/* Note unter CTA */
.pricingCard__note {
  display: block;
  text-align: center;
  font-size: 13px;
  color: #173347;
  margin-top: 12px;
  margin-bottom: 24px;
}

/* Beschreibung (neue Position: zwischen Preis und CTA) */
.pricingCard__price + .pricingCard__desc {
  font-size: 15px;
  line-height: 24px;
  color: #173347;
  margin-bottom: 24px;
  min-height: 168px;
}

/* Excluded Features (Dash statt Checkmark) */
.pricingCard__features li.excluded {
  color: rgba(23, 51, 71, 0.7);
  text-decoration: line-through;
  text-decoration-color: rgba(23, 51, 71, 0.4);
}
.pricingCard__features li.excluded::before {
  content: "—";
  background: none;
  background-image: none;
  width: auto;
  height: auto;
  font-size: 14px;
  color: rgba(23, 51, 71, 0.7);
  top: 0;
  -webkit-transform: none;
          transform: none;
}

/* Hero Label (Version B) */
.pricing-hero__label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 600;
  color: #173347;
  margin-bottom: 12px;
}

/* 2-Spalten Layout (Version B) */
.pricing--two-cols .pricing__inner {
  max-width: 840px;
  margin: 0 auto;
}
.pricing--two-cols .pricingCard {
  max-width: 400px;
}

/***
====================================================================
  Comparison Table
====================================================================
***/
.comparison {
  padding: 0 0 80px 0;
}
.comparison h2 {
  text-align: center;
  margin-bottom: 40px;
}
.comparison__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.comparison__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.comparison__table thead th {
  text-align: left;
  padding: 16px 20px;
  font-weight: 600;
  font-size: 14px;
  color: #173347;
  border-bottom: 2px solid #eee;
}
.comparison__table thead th:first-child {
  color: #173347;
  font-weight: 400;
}
.comparison__table tbody td {
  padding: 12px 20px;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: middle;
}
.comparison__table tbody td:first-child {
  color: #173347;
  font-weight: 400;
}
.comparison__category td {
  padding-top: 28px !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #173347 !important;
  border-bottom: 1px solid #eee !important;
}
.comparison__check {
  display: inline-block;
  width: 20px;
  height: 20px;
  color: transparent;
  font-size: 0;
  line-height: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22.219 16.251'%3E%3Cpath d='M138.788,175.534a1.75,1.75,0,0,1,1.387.591c1.41,1.409,2.827,2.811,4.223,4.235.277.283.43.269.7,0,3.615-3.632,7.249-7.244,10.859-10.88a1.9,1.9,0,0,1,3.061.609,1.923,1.923,0,0,1-.337,1.929q-6.341,6.312-12.659,12.647a1.793,1.793,0,0,1-2.539.01c-2.018-2.035-4.053-4.052-6.071-6.087a1.827,1.827,0,0,1,.739-2.971,3.544,3.544,0,0,1,.635-.08' transform='translate(-136.921 -168.942)' fill='%232bb58a'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: middle;
}
.comparison__dash {
  color: rgba(23, 51, 71, 0.3);
  font-size: 18px;
}
.comparison__text {
  color: #173347;
  font-size: 14px;
}
.comparison__highlight {
  color: #2bb58a;
  font-weight: 600;
  font-size: 14px;
}
.comparison__eyebrow {
  display: block;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 700;
  color: #2bb58a;
  margin-bottom: 16px;
}
.comparison__lead {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px auto;
  color: rgba(23, 51, 71, 0.7);
}
.comparison__badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}
.comparison__badge--progress {
  background: #fff4d8;
  color: #b07900;
}
.testimonials__eyebrow {
  display: block;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 700;
  color: #2bb58a;
  margin-bottom: 16px;
}
.contact__inner-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
  align-items: center;
  margin-top: 16px;
}
.contact__inner-ctas .button,
.intro__inner-ctas .button {
  padding: 12px 28px;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .contact__inner-ctas,
  .intro__inner-ctas {
    flex-wrap: wrap;
  }
}

/***
====================================================================
  Steps Section
====================================================================
***/
.steps {
  padding: 100px 0;
  background: #edf2f5;
}
.steps__inner h2 {
  text-align: center;
  margin-bottom: 60px;
}
.steps__eyebrow {
  display: block;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 700;
  color: #2bb58a;
  margin-bottom: 16px;
}
.steps__inner h2 + .steps__grid {
  margin-top: 0;
}
.steps__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}
.stepsItem {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  padding: 40px 24px;
}
.stepsItem__number {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #75F6D1;
  color: #173347;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 20px;
}
.stepsItem h5 {
  margin-bottom: 12px;
}
.stepsItem p {
  font-size: 15px;
  line-height: 26px;
  color: #555;
}

/***
====================================================================
  Testimonials Section
====================================================================
***/
.testimonials {
  padding: 100px 0;
}
.testimonials__inner h2 {
  text-align: center;
  margin-bottom: 60px;
}
.testimonials__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
.testimonialItem {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  padding: 36px 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.testimonialItem__quote p {
  font-size: 16px;
  line-height: 28px;
  color: #333;
  font-style: italic;
}
.testimonialItem__author {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}
.testimonialItem__author h6 {
  font-weight: 700;
  color: #173347;
}
.testimonialItem__author span {
  font-size: 14px;
  color: #999;
}

/***
====================================================================
  Pricing Page — Responsive
====================================================================
***/
@media only screen and (max-width: 1024px) {
  .pricing-hero {
    padding: 160px 0 40px 0;
  }
  .pricing-hero__inner h1 {
    font-size: 36px;
    line-height: 46px;
  }
  .pricing-hero__signal {
    font-size: 16px;
    padding: 12px 22px;
  }
  .pricing__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 480px;
    margin: 0 auto;
  }
  .pricingCard--featured {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .steps {
    padding: 70px 0;
  }
  .steps__grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
  .stepsItem {
    padding: 24px;
  }
  .testimonials {
    padding: 70px 0;
  }
  .testimonials__grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .pricing--two-cols .pricing__inner {
    max-width: 480px;
  }
  .pricing--two-cols .pricingCard {
    max-width: none;
  }
  .pricingCard__price + .pricingCard__desc {
    min-height: 0;
  }
  .pricingCard__period {
    min-height: 0;
  }
  .comparison__table {
    font-size: 14px;
    min-width: 600px;
  }
}
@media only screen and (max-width: 540px) {
  .pricing-hero {
    padding: 140px 0 30px 0;
  }
  .pricing-hero__inner h1 {
    font-size: 28px;
    line-height: 38px;
  }
  .pricing-hero__inner p {
    font-size: 16px;
    line-height: 26px;
  }
  .pricingCard {
    padding: 32px 24px;
  }
  .pricingCard__amount {
    font-size: 26px;
    line-height: 34px;
  }
  .steps__inner h2 {
    font-size: 24px;
    line-height: 34px;
  }
  .testimonials__inner h2 {
    font-size: 24px;
    line-height: 34px;
  }
  .testimonialItem {
    padding: 28px 24px;
  }
}

/* Nachträge */

.container {
        width: 100%;
        margin: 60px auto 20px;
      }
      #behandlungstext {
        font-size: 1.5rem;
        line-height: 3.5rem;
        text-align: center;
        font-weight: 500;
      }
      /* Startfarben während des Tippens */
      #behandlungstext span {
        border-radius: 100px;
        padding: 2px 10px;
        background-color: #fff;
        color: #000;
        transition: background-color 0.5s ease, color 0.5s ease;
      }
      /* Endgültige Farben nach dem Einblenden */
      .highlight-yellow.final {
        background-color: #fde0474D !important; /* 30% Opacity */
        color: #000;
      }
      .highlight-green.final {
          background-color: #86efac4D !important; /* 30% Opacity */
          color: #000;
      }
      .highlight-brown.final {
          background-color: #8b5e3c4D !important; /* 30% Opacity */
          color: #000;
      }
      .highlight-cyan.final {
          background-color: #67e8f94D !important; /* 30% Opacity */
          color: #000;
      }
      .highlight-pink.final {
          background-color: #f472b64D !important; /* 30% Opacity */
          color: #000;
      }
      .highlight-purple.final {
          background-color: #a78bfa4D !important; /* 30% Opacity */
          color: #000;
      }
      .highlight-teal.final {
          background-color: #0d94884D !important; /* 30% Opacity */
          color: #000;
      }

      #ziffern {
        display: flex;
        gap: 10px;
        margin-top: 8%;
        flex-wrap: wrap;
        font-weight: bold;
        font-size: 16px;
        text-align: center;
        justify-content: center;
      }
      #ziffern span {
        padding: 0px 15px;
        display: none;
        opacity: 0;
        transition: opacity 0.5s ease;
      }
      /* Schriftfarben der Ziffern */
      .text-yellow {
        color: #fde047;
      }
      .text-green {
        color: #86efac;
      }
      .text-brown {
        color: #8b5e3c;
      }
      .text-cyan {
        color: #67e8f9;
      }
      .text-pink {
        color: #f472b6;
      }
      .text-purple {
        color: #a78bfa;
      }
      .text-teal {
        color: #0d9488;
      }
      .partnersItem__image a {height: 100%; width: 100%; display: block;}
      .partnersItem__image a img {filter: grayscale(100%);}

      .lss {
        position: relative;
        padding-left: 1.5em;
        margin-bottom: 0.75em;
      }
      .lss2 {
        position: relative;
        padding-left: 1.5em;
        margin-bottom:0px !important
      }
      
      .lss::before, .lss2::before {
        content: "•";
        position: absolute;
        left: 10px;
        top: 0;
        color: #333;
        font-size: 1.2em;
        line-height: 1.2;
        font-weight: bold;
      }

      .blanko a { text-decoration: underline; color: teal;}
      .blanko a:hover { font-weight: bold;}
      a.kontakt__arrow { color:#000; margin:80px auto }
      a.kontakt__arrow:hover { color:teal }

/*   CSS FORM */


.tl-bounce {animation-name:error;animation-duration:1s;animation-delay:1s}
@keyframes error {
	0% {transform:translateY(0px);timing-function:ease-in}
	37% {transform:translateY(5px);timing-function:ease-out}
	55% {transform:translateY(-5px);timing-function:ease-in}
	73% {transform:translateY(4px);timing-function:ease-out}
	82% {transform:translateY(-4px);timing-function:ease-in}
	91% {transform:translateY(2px);timing-function:ease-out}
	96% {transform:translateY(-2px);timing-function:ease-in}
	100% {transform:translateY(0px);timing-function:ease-in}
}

.tlrequired.tlerror {border:1px solid red !important;}
.tlerror {border:1px solid red !important;}

.tlrequired.tlerror {border:1px solid red !important;}
.tlerror {border:1px solid red !important;}


.loader {
  position: relative;
  top: 0px;
  right: 20px;
  border: 8px solid #fff;
  border-top: 8px solid #000;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
} 
@media only screen and (max-width: 767px) {
  .loader{
    top: 376px;
    left: 106px;
  }
}

/* Checkbox visuell ausblenden */
.checkboxmarker {
  opacity: 0;
  position: absolute;
}

/* Ersetzte Checkbox darstellen */
.checkboxmarker + label::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid #ccc;
  border-radius: 3px;
  margin-right: 8px;
  vertical-align: middle;
  background-color: white;
  box-sizing: border-box;
}

/* Wenn aktiviert */
.checkboxmarker:checked + label::before {
  background-color: #4caf50;
  border-color: #4caf50;
}

/* Wenn Fehler */
.checkboxmarker.tlerror + label::before {
  border-color: red !important;
}
.checkboxmarker.tlerror + label {
  color: red !important;
}

/* =========================================
   Checkout Modal
   ========================================= */
.checkout-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  align-items: flex-start;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
  overflow-y: auto;
}
.checkout-modal.active {
  display: flex;
}
.checkout-modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(23, 51, 71, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1;
}
.checkout-modal__content {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 16px;
  padding: 0;
  max-width: 560px;
  width: 100%;
  flex-shrink: 0;
  margin: auto 0;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

/* Step Indicator — progress bar */
.checkout-steps {
  display: flex;
  position: relative;
}
.checkout-steps__track {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #e8ecef;
}
.checkout-steps__fill {
  height: 100%;
  background: #173347;
  transition: width 0.4s ease;
  border-radius: 0 2px 2px 0;
}
.checkout-steps__segments {
  display: flex;
  width: 100%;
  position: relative;
  z-index: 1;
}
.checkout-steps__segment {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.checkout-steps__label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 600;
  color: #b0b8c4;
  padding: 14px 8px 12px;
  letter-spacing: 0.01em;
  transition: color 0.3s ease;
}
.checkout-steps__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1;
  padding-top: 1px;
  background: #e8ecef;
  color: #b0b8c4;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.checkout-steps__segment.active .checkout-steps__label {
  color: #173347;
}
.checkout-steps__segment.active .checkout-steps__num {
  background: #173347;
  color: #fff;
}
.checkout-steps__segment.completed .checkout-steps__label {
  color: #173347;
}
.checkout-steps__segment.completed .checkout-steps__num {
  background: #173347;
  color: #fff;
}
.checkout-steps__body {
  padding: 28px 40px 40px;
}

/* Checkout Steps Content */
.checkout-step {
  display: none;
}
.checkout-step.active {
  display: block;
}
.checkout-step h4 {
  font-size: 20px;
  font-weight: 700;
  color: #173347;
  margin: 0 0 4px;
}
.checkout-step__subtitle {
  font-size: 13px;
  color: #8a9bae;
  margin: 0 0 20px;
}
.checkout-form__actions {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}
.checkout-form__actions .button {
  flex: 1;
  text-align: center;
  justify-content: center;
}
.checkout-form__back {
  padding: 12px 24px;
  border-radius: 50px;
  border: 1px solid #d1d9e0;
  background: #fff;
  color: #173347;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
  flex: 0 0 auto;
}
.checkout-form__back:hover {
  background: #f4f7f9;
  border-color: #8a9bae;
}
.checkout-form__legal-separator {
  border: none;
  border-top: 1px solid #e8ecef;
  margin: 8px 0;
}
.checkout-form__legal-hint {
  font-size: 0.8125rem;
  color: #6b7a8d;
  line-height: 1.5;
  margin: 4px 0 8px;
}
.checkout-form__legal-hint a {
  color: #173347;
  text-decoration: underline;
}
.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.checkout-form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.checkout-form__group label {
  font-size: 14px;
  font-weight: 600;
  color: #173347;
}
.checkout-form__optional {
  font-weight: 400;
  color: #8a9bae;
}
.checkout-form__input {
  padding: 12px 16px;
  border: 1px solid #d1d9e0;
  border-radius: 8px;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  color: #173347;
  background: #fff;
  transition: border-color 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}
.checkout-form__input:focus {
  outline: none;
  border-color: #75F6D1;
  box-shadow: 0 0 0 3px rgba(117, 246, 209, 0.2);
}
.checkout-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.checkout-form__toggle {
  display: flex;
  gap: 8px;
}
.checkout-form__toggle-btn {
  flex: 1;
  padding: 10px 16px;
  border: 1px solid #d1d9e0;
  border-radius: 8px;
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  color: #8a9bae;
  cursor: pointer;
  transition: 0.2s ease;
}
.checkout-form__toggle-btn.active {
  background: #173347;
  color: #fff;
  border-color: #173347;
}
.checkout-form__price {
  padding: 16px;
  background: #f4f7f9;
  border-radius: 8px;
  text-align: center;
}
.checkout-form__price-amount {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #173347;
}
.checkout-form__price-info {
  display: block;
  font-size: 13px;
  color: #8a9bae;
  margin-top: 4px;
}
.checkout-form__checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 0;
  position: relative;
  cursor: pointer;
}
.checkout-form__checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.checkout-form__checkbox label {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  padding-left: 32px;
  cursor: pointer;
  color: #5a6d7e;
}
.checkout-form__checkbox label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  border: 2px solid #c8d3de;
  border-radius: 6px;
  background: #fff;
  transition: all 0.2s ease;
  box-sizing: border-box;
}
.checkout-form__checkbox label::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  width: 10px;
  height: 6px;
  border-left: 2.5px solid #fff;
  border-bottom: 2.5px solid #fff;
  transform: rotate(-45deg) scale(0);
  transition: transform 0.15s ease;
}
.checkout-form__checkbox input:checked + label::before {
  background: #173347;
  border-color: #173347;
}
.checkout-form__checkbox input:checked + label::after {
  transform: rotate(-45deg) scale(1);
}
.checkout-form__checkbox input:focus-visible + label::before {
  box-shadow: 0 0 0 3px rgba(117, 246, 209, 0.4);
}
.checkout-form__checkbox input.tlerror + label::before {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.15);
}
.checkout-form__checkbox input.tlerror + label {
  color: #e74c3c;
}
.checkout-form__checkbox a {
  color: #173347;
  text-decoration: underline;
  font-weight: 500;
}
.checkout-form__checkbox a:hover {
  color: #75F6D1;
}
.checkout-form__error {
  color: #e74c3c;
  font-size: 14px;
  min-height: 20px;
}
.checkout-form__hint {
  font-size: 12px;
  color: #8a9bae;
  margin-top: 2px;
}

/* Phone 2-part input */
.checkout-form__phone {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 8px;
}
.checkout-form__phone-prefix {
  padding-right: 4px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  color: #173347;
  appearance: auto;
}
.checkout-form__phone-number {
  /* inherits .checkout-form__input */
}

/* Stepper (License Picker) */
.checkout-form__stepper {
  display: flex;
  align-items: center;
  gap: 10px;
}
.checkout-form__stepper-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid #d1d9e0;
  background: #f4f7f9;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: #173347;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  transition: background 0.15s ease;
  user-select: none;
  flex-shrink: 0;
}
.checkout-form__stepper-btn:hover {
  background: #e8ecef;
}
.checkout-form__stepper-btn:active {
  background: #d1d9e0;
}
.checkout-form__stepper-value {
  flex: 1;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #173347;
  line-height: 36px;
}
.checkout-form__price-line {
  font-size: 12px;
  color: #5a6d7e;
  margin-top: 6px;
  line-height: 1.5;
}
.checkout-form__price-line strong {
  color: #173347;
}
.checkout-form__price-vat {
  color: #8a9bae;
  font-size: 11px;
}

/* Registrierungs-Status-Seite (Cancel-Landing) */
.registrierung {
  padding: 140px 0 100px;
  background: #f4f7f9;
  min-height: 70vh;
  display: flex;
  align-items: center;
}
.registrierung__inner {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  padding: 56px 48px;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(23, 51, 71, 0.06);
}
.registrierung__inner--status {
  text-align: center;
}
.registrierung__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fdecea;
  color: #e74c3c;
  font-size: 32px;
  font-weight: 700;
  line-height: 64px;
  margin: 0 auto 24px;
}
.registrierung__inner h3 {
  color: #173347;
  margin-bottom: 16px;
}
.registrierung__inner p {
  color: #5a6d7e;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 12px;
}
.registrierung__sub {
  font-size: 14px;
  color: #8a9bae;
  margin-top: 8px;
}
.registrierung__sub a {
  color: #173347;
  text-decoration: underline;
}
.registrierung__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}
.registrierung__actions .button {
  min-width: 200px;
}
@media (max-width: 640px) {
  .registrierung {
    padding: 100px 0 60px;
  }
  .registrierung__inner {
    padding: 40px 24px;
  }
  .registrierung__actions {
    flex-direction: column;
  }
  .registrierung__actions .button {
    width: 100%;
  }
}

/* Checkout-Modal Head (1-Step-Formular) */
.checkout-modal__head {
  margin-bottom: 24px;
}
.checkout-modal__head h4 {
  color: #173347;
  margin-bottom: 8px;
}
.checkout-modal__head p {
  color: #8a9bae;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}
.checkout-form__info {
  padding: 16px;
  background: #e8faf3;
  border-radius: 8px;
  color: #173347;
  font-size: 14px;
  text-align: center;
}

/* Summary */
.checkout-summary {
  background: #f4f7f9;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}
.checkout-summary__row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 14px;
  color: #173347;
}
.checkout-summary__row span {
  color: #8a9bae;
}
.checkout-summary__heading {
  margin: 0 0 12px;
  font-size: 16px;
  color: #173347;
}
.checkout-summary__divider {
  border-top: 1px solid #dce3ea;
  margin: 10px 0;
}
.checkout-summary__total {
  font-size: 16px;
  font-weight: 700;
  padding-top: 8px;
}
.checkout-summary__total span {
  color: #173347;
}
.checkout-summary__note {
  font-size: 12px;
  color: #8a9bae;
  margin-top: 8px;
  line-height: 1.4;
}

/* Actions */
.checkout-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  justify-content: flex-end;
}
.checkout-actions .button {
  min-width: 120px;
  text-align: center;
}

/* Success */
.checkout-success {
  text-align: center;
  padding: 20px 0;
}
.checkout-success__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #75F6D1;
  color: #173347;
  font-size: 32px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.checkout-success h4 {
  margin-bottom: 12px;
}
.checkout-success p {
  color: #8a9bae;
  font-size: 15px;
  margin-bottom: 8px;
}
.checkout-success .button {
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 576px) {
  .checkout-modal__content {
    padding: 0;
    width: 95%;
    border-radius: 12px;
  }
  .checkout-steps__body {
    padding: 24px 20px 28px;
  }
  .checkout-steps__label {
    display: none;
  }
  .checkout-form__row {
    grid-template-columns: 1fr;
  }
  .checkout-actions {
    flex-direction: column-reverse;
  }
  .checkout-actions .button {
    width: 100%;
  }
}
/* =========================================
   Nav Login + Demo-Buchen Styling (16.04.2026)
   ========================================= */
/* Demo buchen: türkis gefüllt */
.nav__inner .button.primary {
  background: #75F6D1;
  border: 3px solid #75F6D1;
  color: #173347;
  padding: 8px 14px;
}
/* Login: nur türkis Umrandung */
.nav__inner .button.outline {
  background: transparent;
  border: 3px solid #75F6D1;
  color: #173347;
  padding: 8px 14px;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
/* Login-Button auf Hero-Seiten mit dunklem Background (z.B. ueber-uns) */
.nav.white .nav__inner .button.outline {
  color: #fff;
}
.header.sticky .nav.white .nav__inner .button.outline {
  color: #173347;
}
/* Beide Nav-Buttons: Hover zu Blau (Wunsch Timo 16.04.) */
.nav__inner .button.primary:hover,
.nav__inner .button.outline:hover {
  background: #2b628a;
  border-color: #2b628a;
  color: #fff;
}
/* Kleiner Abstand zwischen Login und Demo buchen (nur horizontal) */
.nav__inner .button + .button {
  margin-left: 12px;
}
/* Knappes Viewport (Desktop knapp): Font-Size in Nav reduzieren */
@media (max-width: 1199px) and (min-width: 1025px) {
  .nav__inner-link {
    font-size: 14px;
    margin-right: 30px;
  }
  .nav__inner .button {
    font-size: 14px;
    padding: 6px 12px;
  }
}
/* User-Icon wird nicht mehr verwendet (Entscheidung 17.04.2026) */
.nav__login-icon { display: none !important; }
.nav__login-text { display: inline; }
/* Mobile-Menü (Burger aktiv ab 1024px): beide Buttons gleich breit und sauber zentriert */
@media (max-width: 1024px) {
  .nav__inner .button + .button {
    margin-left: 0;
    margin-top: 12px;
  }
  .nav__inner .button.outline,
  .nav__inner .button.primary {
    width: 220px;
    max-width: 80vw;
    text-align: center;
    box-sizing: border-box;
    display: block;
  }
}
