:root {
  --white: #ffffff;
  --black: #000000;
  --textColor: #114C6A;
  --textGrey: #909090;
  --textGrey2: #d7d7d7;
  --darkGrey: #2a2a2a;
  --darkGrey2: #252525;
  --midGrey: #7F7F7F;
  --mainBlue: #2CB7FF;
  --bgHeader: rgba(28, 28, 28, 0.6);
  --bgMenu: rgba(28, 28, 28, 0.9);
  --bgGrey: #F1F3F7;
  --bgBlue: rgba(17, 76, 106, 0.8);
  --bgLightBlue: #F6F6F6;
  --greyHover: #F4F4F4;
  --bgFeatures: #ECF8FF;
  --borderGrey: #ACACAC;
  --borderGrey2: #C9D3D9;
  --shadowColor: rgba(17, 76, 106, 0.25);
  --shadowCatalog: rgba(135, 135, 135, 0.25);
  --black40: rgba(0, 0, 0, 0.4);
  --white80: rgba(255, 255, 255, 0.8);
  --buttonGradient: linear-gradient(to bottom, #2CB7FF 0%, #2588BC 100%);
  --buttonGradientHover: linear-gradient(to top, #114C6A 0%, #2195D0 100%);
  --imageGradient: linear-gradient(-103deg, rgba(0, 0, 0, 0) 0%, #000000 60%);
}
@font-face {
  font-family: "Rubik";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Rubik-Regular.eot") format("woff"), url("../fonts/Rubik-Regular.woff2") format("woff2"), url("../fonts/Rubik-Regular.ttf") format("truetype"), url("../fonts/Rubik-Regular.eot") format("embedded-opentype");
}
@font-face {
  font-family: "Rubik";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Rubik-Medium.woff") format("woff"), url("../fonts/Rubik-Medium.woff2") format("woff2"), url("../fonts/Rubik-Medium.ttf") format("truetype"), url("../fonts/Rubik-Medium.eot") format("embedded-opentype");
}
@font-face {
  font-family: "Rubik";
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Rubik-SemiBold.woff") format("woff"), url("../fonts/Rubik-SemiBold.woff2") format("woff2"), url("../fonts/Rubik-SemiBold.ttf") format("truetype"), url("../fonts/Rubik-SemiBold.eot") format("embedded-opentype");
}
@font-face {
  font-family: "Rubik";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Rubik-Bold.woff") format("woff"), url("../fonts/Rubik-Bold.woff2") format("woff2"), url("../fonts/Rubik-Bold.ttf") format("truetype"), url("../fonts/Rubik-Bold.eot") format("embedded-opentype");
}
body {
  font-family: "Rubik", "Arial", sans-serif;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--textColor);
  background-color: var(--white);
}
img {
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}
*,
*::after,
*::before {
  box-sizing: border-box;
}
ul,
ol {
  padding: 0;
  margin: 0;
}
ul li {
  list-style: none;
}
input,
textarea {
  outline: none;
  font-family: "Rubik", "Arial", sans-serif;
}
fieldset {
  padding: 0;
  margin: 0;
  border: none;
}
h1,
h2,
h3,
h4,
h5 {
  margin: 0;
}
p {
  padding: 0;
  margin: 0;
}
a,
button {
  cursor: pointer;
}
.title-section {
  font-weight: 600;
  font-size: 36px;
  line-height: 43px;
  margin-bottom: 23px;
}
@media (max-width: 1100px) {
  .title-section {
    font-size: 32px;
  }
}
.button {
  border: none;
  font-family: "Rubik", "Arial", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 30px;
  padding: 0;
  letter-spacing: 0.5px;
  border-radius: 12px;
  color: var(--white);
  background-color: transparent;
}
.button__accent {
  color: var(--white);
  background: var(--buttonGradient);
  border-radius: 12px;
  position: relative;
  z-index: 1;
}
.button__accent:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: var(--buttonGradientHover);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease-in-out;
}
.button__accent:hover:before {
  opacity: 1;
}
.wrapper {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 60px;
}
@media (max-width: 1100px) {
  .wrapper {
    padding: 0 20px;
  }
}
@media (max-width: 600px) {
  .wrapper {
    padding: 0 15px;
  }
}
.header {
  position: fixed;
  width: 100%;
  background: var(--bgHeader);
  backdrop-filter: blur(16px);
  color: var(--white);
  padding: 16px 0;
  z-index: 100;
}
.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__contact {
  padding: 10px 18px;
  background-color: var(--mainBlue);
  transition: background-color 0.3s ease, color 0.3s ease;
}
.header__contact:hover {
  background-color: var(--white);
  color: var(--textColor);
}
@media (max-width: 1400px) {
  .header__content {
    gap: 40px;
  }
}
@media (max-width: 1100px) {
  .header {
    padding: 12px 0;
  }
  .header__content {
    justify-content: flex-start;
    gap: 0;
  }
  .header__contact {
    margin-left: auto;
    margin-right: 22px;
  }
}
@media (max-width: 600px) {
  .header {
    padding: 6px 0;
  }
  .header__contact {
    margin-right: 20px;
  }
  .header .logo {
    width: 67px;
    display: flex;
  }
}
.main-nav {
  max-width: 968px;
  width: 100%;
  margin: 0 auto;
}
.main-nav__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}
.main-nav__link {
  color: var(--white);
  transition: color 0.4s ease;
}
.main-nav__link:hover {
  color: var(--mainBlue);
}
.main-nav__link.active {
  color: var(--mainBlue);
}
@media (max-width: 1400px) {
  .main-nav {
    max-width: auto;
    width: auto;
  }
  .main-nav__list {
    gap: 40px;
  }
}
@media (max-width: 1100px) {
  .main-nav {
    display: none;
  }
}
.menu {
  display: none;
}
.menu__block {
  position: absolute;
  top: 100%;
  right: 0;
  width: 500px;
  background-color: var(--bgMenu);
  border-radius: 0 0 0 10px;
  padding: 42px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 10;
}
.menu__block.active {
  opacity: 1;
  pointer-events: all;
}
.menu__burger {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
  transition: opacity 0.3s ease;
}
.menu__burger.active {
  opacity: 1;
  pointer-events: all;
  width: 24px;
  height: 24px;
}
.menu__close {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
  transition: opacity 0.3s ease;
}
.menu__close.active {
  opacity: 1;
  pointer-events: all;
  width: 24px;
  height: 24px;
}
.menu__list {
  text-align: center;
}
.menu__item:not(:last-child) {
  margin-bottom: 28px;
}
.menu__link {
  font-size: 16px;
  color: var(--white);
}
@media (max-width: 1100px) {
  .menu {
    display: block;
    margin-left:auto;
  }
}
@media (max-width: 600px) {
  .menu__block {
    width: 100%;
    padding: 38px;
  }
  .menu__item:not(:last-child) {
    margin-bottom: 38px;
  }
}
.hero {
  position: relative;
  height: 100vh;
  min-height: 800px;
}
.hero__slider {
  height: 100%;
  overflow: hidden;
}
.hero__slider .swiper-wrapper {
  height: 100%;
}
.hero__slide {
  position: relative;
  z-index: 1;
  height: 100%;
}
.hero__slide-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero__slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__slide-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-color: var(--black40);
  z-index: 1;
}
.hero__slide-content {
  max-width: 1147px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  color: var(--white);
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero__slide-title {
  font-size: 64px;
  line-height: 66px;
  font-weight: normal;
  margin-bottom: 36px;
}
.hero__slide-text {
  font-size: 22px;
  line-height: 36px;
  font-weight: normal;
  margin-bottom: 56px;
}
.hero__slide-button {
  padding: 12px 20px;
}
.hero .swiper-pagination {
  bottom: 52px !important;
  display: flex !important;
  justify-content: center;
  gap: 36px !important;
}
.hero .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background-color: var(--white80);
  opacity: 1;
}
.hero .swiper-pagination-bullet-active {
  background-color: var(--mainBlue);
  border: 1px solid var(--white);
}
@media (max-width: 1200px) {
  .hero__slide-title {
    font-size: 46px;
    line-height: 56px;
    font-weight: 600px;
    margin-bottom: 36px;
  }
  .hero__slide-text {
    font-size: 20px;
    line-height: 36px;
    margin-bottom: 36px;
  }
}
@media (max-width: 600px) {
  .hero__slide-title {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 18px;
  }
  .hero__slide-text {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 28px;
  }
  .hero__slide-button {
    padding: 10px 18px;
    font-size: 14px;
    line-height: 30px;
  }
}
.about-us {
  margin-bottom: 80px;
}
.about-us__content {
  padding: 46px 42px;
  border-radius: 6px;
  box-shadow: 0 0 8px var(--shadowColor);
  margin-top: -22px;
  background-color: var(--white);
  position: relative;
  z-index: 5;
  text-align: center;
}
.about-us__content p:not(:last-child) {
  margin-bottom: 30px;
}
@media (max-width: 1100px) {
  .about-us {
    margin-bottom: 60px;
  }
  .about-us__content {
    padding: 30px 18px;
  }
  .about-us__content p:not(:last-child) {
    margin-bottom: 14px;
  }
}
@media (max-width: 600px) {
  .about-us {
    margin-bottom: 30px;
  }
  .about-us__content {
    padding: 20px 18px;
  }
  .about-us__content p {
    font-size: 16px;
  }
}
.features {
  background-color: var(--bgGrey);
}
.features__list {
  padding: 80px 0;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.features__item {
  width: calc(25% - 23px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 25px 60px;
  border-radius: 12px;
  background-color: var(--white);
  box-shadow: 0 0 8px var(--shadowColor);
  transition: background-color 0.3s ease;
}
.features__item:hover {
  background-color: var(--bgFeatures);
}
.features__item-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
}
.features__item-desc {
  text-align: center;
  color: var(--midGrey);
}
.features__info {
  background-image: url('../images/content/home/features-bg.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 2;
  padding: 80px 0;
  min-height: 400px;
}
.features__info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--imageGradient);
  opacity: 32%;
  z-index: -1;
}
.features__info-item {
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 500;
  font-size: 22px;
  line-height: 28px;
  color: var(--white);
}
.features__info-item:not(:last-child) {
  margin-bottom: 32px;
}
.features__title {
  margin: 52px 0 40px;
  font-weight: 600;
  font-size: 36px;
  line-height: 43px;
  color: var(--white);
}
@media (max-width: 1400px) {
  .features__item {
    width: calc(50% - 15px);
  }
}
@media (max-width: 1100px) {
  .features__list {
    padding: 60px 0;
  }
  .features__item-desc {
    font-size: 16px;
    line-height: 28px;
  }
  .features__info {
    padding: 50px 0 150px;
  }
  .features__info::before {
    opacity: 40%;
  }
  .features__info-item:not(:last-child) {
    margin-bottom: 22px;
  }
  .features__title {
    margin: 38px 0 34px;
  }
}
@media (max-width: 600px) {
  .features__list {
    padding: 40px 0;
  }
  .features__item {
    width: 100%;
    padding: 24px;
  }
  .features__item-desc {
    font-size: 14px;
  }
  .features__info {
    padding: 34px 0 70px;
  }
  .features__info-item {
    font-size: 16px;
    line-height: 22px;
  }
  .features__info-item:not(:last-child) {
    margin-bottom: 16px;
  }
  .features__title {
    margin: 26px 0 22px;
    font-size: 22px;
    line-height: 32px;
  }
}
.services {
  padding-top: 80px;
  text-align: center;
}
.services__list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 46px;
}
.services__item {
  width: calc(25% - 23px);
  position: relative;
  z-index: 1;
}
.services__item:hover::before {
  opacity: 60%;
}
.services__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--textColor);
  opacity: 0;
  z-index: 0;
  border-radius: 6px;
  transition: opacity 0.3s ease;
}
.services__item img {
  border-radius: 6px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.services__item-title {
  font-size: 36px;
  line-height: 44px;
  font-weight: normal;
  color: var(--white);
  padding: 113px 0;
  text-align: center;
  position: relative;
}
.services__desc {
  font-size: 22px;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 46px;
}
.services__bottom {
  padding: 17px 26px;
  max-width: 1116px;
  margin: 0 auto;
  margin-bottom: -44px;
  position: relative;
  background-color: var(--white);
  border-radius: 6px;
  box-shadow: 0 0 8px var(--shadowColor);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.services__link {
  padding: 12px 42px;
}
@media (max-width: 1600px) {
  .services__item {
    width: calc(50% - 15px);
  }
}
@media (max-width: 1250px) {
  .services__bottom {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-bottom: -70px;
  }
}
@media (max-width: 1100px) {
  .services {
    padding-top: 60px;
  }
  .services__item-title {
    font-size: 30px;
  }
  .services__desc {
    margin-bottom: 37px;
  }
  .services__bottom {
    flex-direction: row;
    align-items: center;
    gap: 34px;
    margin-bottom: -40px;
  }
  .services__bottom span {
    display: inline-block;
    width: calc(100% - 300px);
    text-align: left;
  }
}
@media (max-width: 600px) {
  .services {
    padding-top: 40px;
  }
  .services__list {
    gap: 20px;
    margin-bottom: 20px;
  }
  .services__item {
    width: 100%;
  }
  .services__item-title {
    font-size: 28px;
    line-height: 38px;
  }
  .services__desc {
    margin-bottom: 24px;
  }
  .services__bottom {
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin-bottom: -70px;
    padding: 24px 33px;
  }
  .services__bottom span {
    font-size: 14px;
    width: 100%;
    text-align: center;
  }
}
.clients {
  padding: 124px 0 80px;
  background-color: var(--bgGrey);
  text-align: center;
}
.clients__slider {
  overflow: hidden;
  position: relative;
}
.clients__list {
  margin-top: 20px;
}
.clients__item img {
  width: 100%;
  height: 120px;
  object-fit: contain;
}
.clients__navigation {
  display: none;
}
.clients__navigation div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background-color: var(--midGrey);
  border-radius: 50%;
}
.clients__navigation div svg {
  width: 20px;
  height: 20px;
}
@media (max-width: 1100px) {
  .clients__navigation {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
  }
}
.footer__top {
  background-color: var(--darkGrey);
  padding: 40px 0;
  color: var(--textGrey2);
  font-size: 16px;
}
.footer__bottom {
  background-color: var(--darkGrey2);
  padding: 16px 0;
  color: var(--textGrey);
  text-align: center;
  font-size: 14px;
}
.footer__content {
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.footer__nav-item {
  margin-bottom: 14px;
}
.footer__nav-link {
  color: var(--textGrey2);
}
.footer__contacts {
  max-width: 300px;
  width: 100%;
}
.footer__contacts-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.footer__contacts-item:hover svg path {
  fill: var(--mainBlue);
}
.footer__contacts-item svg path {
  fill: var(--textGrey2);
  transition: fill 0.3s ease;
}
.footer__contacts-item a {
  color: var(--textGrey2);
}
.footer__policy-item {
  margin-bottom: 14px;
}
.footer__policy-item a {
  color: var(--textGrey2);
}
.footer__created a {
  color: var(--textGrey);
}
@media (max-width: 600px) {
  .footer__nav-item {
    text-align: center;
  }
  .footer__content {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }
  .footer__contacts {
    max-width: 100%;
  }
  .footer__contacts-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer__bottom {
    padding: 10px 0;
    font-size: 12px;
  }
  .footer__policy-item {
    text-align: center;
  }
}
.catalog__hero {
  background-image: url('../images/content/catalog/catalog-hero.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}
.catalog__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--black40);
  z-index: -1;
}
.catalog__list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 60px 0;
}
.catalog__item {
  width: calc(25% - 23px);
  box-shadow: 0 4px 20px transparent;
  transition: box-shadow 0.3s ease;
}
.catalog__item:hover {
  box-shadow: 0 4px 20px var(--shadowCatalog);
}
.catalog__item:hover .catalog__title {
  padding: 32px;
}
.catalog__link {
  display: flex;
  width: 100%;
  height: 270px;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}
.catalog__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.catalog__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.catalog__title {
  margin-top: auto;
  width: 100%;
  position: relative;
  z-index: 1;
  font-size: 26px;
  line-height: 43px;
  font-weight: normal;
  color: var(--white);
  padding: 10px;
  background: var(--bgBlue);
  backdrop-filter: blur(4px);
  text-align: center;
  transition: padding 0.3s ease;
}
@media (max-width: 1500px) {
  .catalog__item {
    width: calc(33.33% - 20px);
  }
}
@media (max-width: 1100px) {
  .catalog__hero {
    margin-bottom: 40px;
  }
  .catalog__list {
    gap: 20px;
    margin: 40px 0;
  }
  .catalog__item {
    width: calc(50% - 10px);
  }
  .catalog__item:hover .catalog__title {
    padding: 20px;
  }
}
@media (max-width: 600px) {
  .catalog__hero {
    margin-bottom: 20px;
  }
  .catalog__list {
    margin: 20px 0;
  }
  .catalog__item {
    width: 100%;
  }
  .catalog__title {
    font-size: 22px;
    padding: 8px;
  }
}
.hero-inner {
  position: relative;
}
.hero-inner__content {
  padding: 208px 0;
  max-width: 1147px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  color: var(--white);
}
.hero-inner__title {
  font-size: 64px;
  line-height: 66px;
  margin-bottom: 32px;
}
.hero-inner__text {
  font-size: 22px;
  line-height: 36px;
  font-weight: 500;
}
.hero-inner__career {
  background-image: url('../images/content/bg/karriere-hero.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}
.hero-inner__career .hero-inner__title {
  margin-bottom: 0;
}
.hero-inner__impressum {
  background-image: url('../images/content/bg/impressum-hero.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}
.hero-inner__datenschutz {
  background-image: url('../images/content/bg/datenschutz-hero.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}
.hero-inner__kontakt {
  background-image: url('../images/content/bg/Kontakt.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 1100px) {
  .hero-inner__content {
    padding: 200px 0;
  }
  .hero-inner__title {
    font-size: 46px;
  }
  .hero-inner__text {
    font-size: 20px;
  }
}
@media (max-width: 600px) {
  .hero-inner__content {
    padding: 180px 0;
  }
  .hero-inner__title {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 30px;
  }
  .hero-inner__text {
    font-size: 18px;
    line-height: 30px;
  }
  .hero-inner__impressum {
    background-image: url('../images/content/bg/impressum-hero-mob.jpg');
  }
}
.product__hero {
  background-image: url('../images/content/product/product-hero.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}
.product__back {
  position: absolute;
  bottom: 24px;
  left: 60px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  padding: 10px 18px;
  font-size: 16px;
  cursor: pointer;
}
.product__content {
  padding: 60px 0;
  display: flex;
  gap: 30px;
}
.product__descr  {
    max-width:100%;
}
.product__descr p,
.product__descr ul,
.product__descr h3,
.product__descr h4,
.product__descr table {
  margin-bottom: 1.4rem;
}
.product__descr ul {
  margin-left:15px
}
.product__descr ul li {
  position: relative;
}

.product__info {
  width: calc(50% - 15px);
}
.product__info ul {
  margin: 20px 0 22px 20px;
}
.product__descr ul li {
  list-style: disc;
  margin-bottom: 10px;
}
.product__img {
  width: calc(50% - 15px);
}
.product__img img {
  border-radius: 6px;
}
.product__title {
  font-size: 36px;
  line-height: 43px;
  margin-bottom: 24px;
}
.product__subtitle {
  font-size: 22px;
  line-height: 36px;
  font-weight: 500;
  margin-bottom: 30px;
}
.product__text {
  margin-bottom: 30px;
}
@media (max-width: 1100px) {
  .product__content {
    padding: 30px 0;
    flex-direction: column;
  }
  .product__info {
    width: 100%;
  }
  .product__img {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .product__content {
    padding: 20px 0;
  }
  .product__title {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 16px;
  }
  .product__subtitle {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 16px;
  }
  .product__info {
    font-size: 16px;
  }
}
.info-page__content {
  margin: 60px 0;
  text-align: center;
}
.info-page__tabs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 60px;
}
.info-page__tabs-button {
  background-color: var(--white);
  color: var(--darkGrey);
  border: 1px solid var(--borderGrey);
  padding: 12px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 400;
  transition: background-color 0.3s, color 0.3s;
}
.info-page__tabs-button:hover {
  background-color: var(--greyHover);
}
.info-page__tabs-button.active {
  background-color: var(--darkGrey);
  color: var(--white);
}
.info-page__tabs-content-item {
  text-align: left;
  display: flex;
  gap: 30px;
}
.info-page__tabs-content-item p {
  margin-bottom: 14px;
}
.info-page__tabs-content-item ul,
.info-page__tabs-content-item ol {
  margin: 6px 0 20px;
}
.info-page__tabs-content-item ul li,
.info-page__tabs-content-item ol li {
  list-style: disc;
  margin-left: 20px;
}
.info-page__tabs-content-subtitle {
  display: inline-block;
  font-weight: 700;
  color: var(--mainBlue);
  margin-bottom: 18px;
}
.info-page__tabs-content-title {
  font-size: 36px;
  line-height: 43px;
  font-weight: 500;
  margin-bottom: 30px;
}
.info-page__tabs-content-info {
  width: 50%;
}
.info-page__tabs-content-image {
  width: calc(50% - 30px);
  max-height: 600px;
  margin-top: 45px;
}
.info-page__tabs-content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px;
}
.info-page__chars {
  display: flex;
  align-items: flex-start;
  gap: 150px;
  margin: 40px 0 40px !important;
  padding-top: 40px;
  border-top: 1px solid var(--borderGrey2);
}
.info-page__chars li {
  list-style: none !important;
  margin-left: 0 !important;
}
.info-page__chars-item {
  width: 125px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  font-weight: 600;
  text-align: center;
}
.info-page__button {
  padding: 12px 20px;
  margin-bottom: 60px;
}
.info-page__contacts {
  padding: 38px 0;
  background-color: var(--bgLightBlue);
}
.info-page__contacts-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.info-page__contacts-content .info-page__title {
  margin-bottom: 16px;
}
.info-page__contacts-content p {
  margin-bottom: 10px;
}
.info-page__contacts-content a {
  color: var(--textColor);
}
.info-page__contacts-item {
  width: 30%;
}
.info-page__contacts-info {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 7px;
}
.info-page__contacts-info span {
  margin-bottom: 0 !important;
}
.info-page__contacts-info a {
  color: var(--textColor);
}
.info-page__title {
  font-size: 26px;
  line-height: 43px;
  font-weight: 600;
  color: var(--mainBlue);
}
.info-page__impressum {
  text-align: left;
  margin: 40px 0;
}
.info-page__impressum .info-page__title {
  margin-bottom: 12px;
}
.info-page__impressum span {
  display: inline-block;
  margin-bottom: 12px;
}
.info-page__impressum p {
  margin-bottom: 40px;
}
.info-page__impressum p a {
  color: var(--mainBlue);
}
.info-page__datenschutz {
  text-align: left;
  margin: 40px 0;
}
.info-page__datenschutz .info-page__title {
  margin: 12px 0;
}
.info-page__datenschutz span {
  display: inline-block;
  margin-bottom: 12px;
}
.info-page__datenschutz p {
  margin-bottom: 20px;
}
.info-page__datenschutz p a {
  color: var(--mainBlue);
}
.info-page__datenschutz ul {
  margin: 20px 0 40px;
}
.info-page__datenschutz ul li {
  list-style: disc;
  margin-left: 20px;
}
.info-page__datenschutz ul li::marker {
  color: var(--textColor) !important;
}
.info-page__datenschutz ol li {
  margin-left: 35px;
}
.info-page__datenschutz ol li::marker {
  font-size: 26px;
  line-height: 43px;
  color: var(--mainBlue);
  font-weight: 600;
}
@media (max-width: 1100px) {
  .info-page__content {
    margin: 30px 0;
  }
  .info-page__tabs {
    gap: 20px;
    margin-bottom: 30px;
  }
  .info-page__tabs-content-item {
   flex-direction: column;
   gap: 0;
  }
  .info-page__tabs-content-item p {
    margin-bottom: 20px;
  }
  .info-page__tabs-content-item ul,
  .info-page__tabs-content-item ol {
    margin: 10px 0 30px;
  }
  .info-page__tabs-content-image {
    width: 100%;
    max-height: 306px;
    object-fit: cover;
    border-radius: 40px;
    overflow: hidden;
    margin-top: 0;
  }
  .info-page__tabs-content-info {
    width: 100%;
  }
  .info-page__chars {
    margin: 36px 0 !important;
    padding-top: 36px;
  }
  .info-page__button {
    margin-bottom: 40px;
  }
  .info-page__contacts {
    padding: 24px 0;
  }
  .info-page__contacts-content {
    flex-direction: column;
    gap: 24px;
  }
  .info-page__contacts-item {
    width: 100%;
  }
  .info-page__impressum {
    margin: 20px 0;
  }
  .info-page__impressum p {
    margin-bottom: 20px;
  }
  .info-page__datenschutz {
    margin: 20px 0;
  }
  .info-page__datenschutz ul {
    margin: 20px 0;
  }
}
@media (max-width: 600px) {
  .info-page__content {
    margin: 20px 0;
  }
  .info-page__tabs-button {
    font-size: 16px;
  }
  .info-page__tabs-content-item p {
    margin-bottom: 12px;
  }
  .info-page__tabs-content-item ul,
  .info-page__tabs-content-item ol {
    margin: 0 0 12px;
  }
  .info-page__tabs-content-image {
    max-height: 222px;
  }
  .info-page__chars {
    margin: 30px 0 !important;
    padding-top: 30px;
    gap: 15px;
    justify-content: space-between;
  }
  .info-page__chars-item {
    width: auto;
  }
  .info-page__chars-item img {
    width: 40px;
  }
  .info-page__button {
    padding: 12px 0;
    width: 100%;
    margin-bottom: 30px;
  }
  .info-page__title {
    font-size: 22px;
    line-height: 28px;
  }
  .info-page__contacts-content {
    font-size: 16px;
  }
  .info-page__contacts-content p:last-child {
    margin-bottom: 0;
  }
  .info-page__contacts-item {
    width: 100%;
  }
  .info-page__impressum {
    font-size: 16px;
  }
  .info-page__datenschutz {
    font-size: 16px;
  }
  .info-page__datenschutz ul {
    margin: 12px 0 20px;
  }
  .info-page__datenschutz ol li::marker {
    font-size: 22px;
    line-height: 28px;
  }
}
.kontakt__content {
  padding: 60px;
  margin: 0 auto;
  max-width: 1495px;
  text-align: center;
}
.kontakt__title {
  font-size: 36px;
  line-height: 43px;
  color: var(--mainBlue);
  font-weight: 600;
  margin-bottom: 26px;
}
.kontakt__subtitle {
  max-width: 885px;
  font-size: 18px;
  line-height: 28px;
  color: var(--midGrey);
  padding-top: 24px;
  border-top: 1px solid var(--borderGrey2);
  margin: 0 auto;
  margin-bottom: 60px;
}
.kontakt__form {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 60px;
}
.kontakt__form-group {
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.kontakt__form-group--email {
  width: calc(40% - 60px);
}
.kontakt__form-group--message {
  width: 100%;
}
.kontakt__form-group.error .kontakt__form-label {
  color: red;
}
.kontakt__form-group.error .kontakt__form-input {
  border: 1px solid red;
}
.kontakt__form-label {
  color: var(--textColor);
  transition: color 0.3s ease;
}
.kontakt__form-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--midGrey);
  border-radius: 4px;
  font-size: 16px;
  line-height: 22px;
  color: var(--textColor);
  transition: border 0.3s ease;
}
.kontakt__form-textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--midGrey);
  border-radius: 4px;
  font-size: 16px;
  line-height: 22px;
  color: var(--textColor);
  height: 150px;
  resize: none;
  transition: border 0.3s ease;
}
.kontakt__form-button {
  padding: 12px 20px;
  margin: 0 auto;
}
.kontakt__info {
  padding: 46px 126px;
  background: var(--white);
  border-radius: 4px;
  box-shadow: 0 0 8px var(--shadowColor);
  margin-bottom: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.kontakt__info-item {
  max-width: 320px;
  width: 100%;
  display: flex;
  gap: 24px;
  align-items: center;
}
.kontakt__info-item div {
  text-align: left;
}
.kontakt__info-item img {
  width: 52px;
}
.kontakt__info-label {
  margin-bottom: 6px;
  font-weight: 600;
}
.kontakt__map-title {
  font-size: 26px;
  line-height: 43px;
  color: var(--mainBlue);
  font-weight: 600;
  margin-bottom: 26px;
}
.kontakt__map iframe {
  width: 100%;
  height: 373px;
}
@media (max-width: 1100px) {
  .kontakt__content {
    padding: 40px 20px;
  }
  .kontakt__title {
    font-size: 32px;
  }
  .kontakt__subtitle {
    max-width: 100%;
    font-size: 16px;
    padding-top: 28px;
    margin-bottom: 36px;
  }
  .kontakt__form {
    gap: 20px;
    margin-bottom: 40px;
    justify-content: space-between;
  }
  .kontakt__form-group {
    width: calc(33.33% - 14px);
    gap: 8px;
  }
  .kontakt__form-group--email {
    width: calc(33.33% - 14px);
  }
  .kontakt__form-group--message {
    width: 100%;
  }
  .kontakt__form-label {
    font-size: 16px;
    line-height: 22px;
  }
  .kontakt__form-input {
    font-size: 16px;
    line-height: 22px;
  }
  .kontakt__form-textarea {
    font-size: 16px;
    line-height: 22px;
    height: 120px;
  }
  .kontakt__info {
    padding: 32px 20px;
  }
  .kontakt__info-item div {
    font-size: 14px;
  }
  .kontakt__info-item img {
    width: 40px;
  }
  .kontakt__map-title {
    margin-bottom: 20px;
  }
  .kontakt__map iframe {
    height: 327px;
  }
}
@media (max-width: 600px) {
  .kontakt__content {
    padding: 20px;
  }
  .kontakt__title {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 20px;
  }
  .kontakt__subtitle {
    font-size: 12px;
    line-height: 16px;
    padding-top: 22px;
    margin-bottom: 20px;
    padding-top: 16px;
    text-align: left;
  }
  .kontakt__form {
    gap: 16px;
    margin-bottom: 20px;
    flex-direction: column;
  }
  .kontakt__form-group {
    width: 100%;
  }
  .kontakt__form-group--email {
    width: 100%;
  }
  .kontakt__form-label {
    font-size: 14px;
  }
  .kontakt__form-input {
    font-size: 14px;
  }
  .kontakt__form-textarea {
    font-size: 14px;
  }
  .kontakt__form__button {
    margin-top: 14px;
  }
  .kontakt__info {
    padding: 32px 22px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
  }
  .kontakt__map iframe {
    height: 178px;
  }
}
.error-page {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-self: center;
}
.error-page__wrapper {
  position: relative;
  max-width: 1224px;
  width: 100%;
  max-height: 778px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-self: center;
}
.error-page__title {
  font-size: 18px;
  line-height: 28px;
  color: var(--textColor);
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 36px;
}
.error-page__button {
  padding: 12px 56px;
  background-color: var(--darkGrey);
  font-weight: 400;
}
.error-page__content {
  position: absolute;
  bottom: 28%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
@media (max-width: 1100px) {
  .error-page__wrapper {
    max-height: 488px;
  }
  .error-page__title {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .error-page__content {
    position: absolute;
    bottom: 23%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }
}
@media (max-width: 750px) {
  .error-page__wrapper {
    max-height: 306px;
  }
  .error-page__title {
    font-size: 12px;
    margin-bottom: 110px;
  }
  .error-page__content {
    bottom: -18%;
  }
}
@media (max-width: 500px) {
  .error-page__title {
    font-size: 12px;
    line-height: 16px;
    max-width: 150px;
    text-align: center;
  }
  .error-page__content {
    left: 54%;
    text-align: center;
  }
}
@media (max-width: 400px) {
  .error-page__content {
    bottom: -11%;
  }
}
.modal {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black40);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.modal.active {
  opacity: 1;
  pointer-events: auto;
}
.modal.active .modal__form {
  opacity: 1;
  transform: translateY(0);
}
.modal.active .modal__success {
  opacity: 1;
  transform: translateY(0);
}
.modal__form {
  background: var(--white);
  border-radius: 30px;
  max-width: 1800px;
  width: 100%;
  padding: 85px 152px;
  transform: translateY(-40px);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  position: relative;
  text-align: center;
  margin: 0 60px;
}
.modal__form form {
  margin-bottom: 0;
}
.modal__success {
  background: var(--white);
  border-radius: 30px;
  max-width: 580px;
  width: 100%;
  padding: 60px;
  transform: translateY(-40px);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  position: relative;
  text-align: center;
  margin: 0 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.modal__success::before {
  content: '';
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translateX(-50%);
  width: 380px;
  height: 1px;
  background: var(--borderGrey2);
}
.modal__success img {
  margin-bottom: 32px;
}
.modal__success-title {
  font-size: 36px;
  line-height: normal;
  color: var(--textColor);
  font-weight: 600;
  margin-bottom: 43px;
}
.modal__success-text {
  color: var(--midGrey);
  margin-bottom: 30px;
}
.modal__success-button {
  padding: 12px 20px;
}
.modal__close {
  position: absolute;
  top: -20px;
  right: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--white);
  box-shadow: 0 0 8px var(--shadowColor);
}
.modal__close svg path {
  fill: var(--textGrey2);
  transition: fill 0.3s ease;
}
.modal__close:hover svg path {
  fill: var(--textColor);
}
@media (max-width: 1400px) {
  .modal__form {
    padding: 50px 85px;
  }
}
@media (max-width: 1200px) {
  .modal__form {
    padding: 48px 26px;
    margin: 0 20px;
  }
  .modal__success {
    max-width: 478px;
  }
}
@media (max-width: 600px) {
  .modal__form {
    padding: 24px 12px;
    margin: 0 15px;
    border-radius: 10px;
  }
  .modal__success {
    max-width: 100%;
    width: 100%;
    padding: 42px;
    margin: 0 15px;
  }
  .modal__success::before {
    width: calc(100% - 84px);
  }
  .modal__success img {
    width: 60px;
    margin-bottom: 20px;
  }
  .modal__success-title {
    font-size: 20px;
    margin-bottom: 39px;
  }
  .modal__success-text {
    color: var(--midGrey);
    margin-bottom: 24px;
    font-size: 12px;
    line-height: 16px;
  }
  .modal__success-button {
    padding: 10px 50px;
  }
}
/*# sourceMappingURL=style.css.map */



.modalBoxShadow{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.50);
  z-index: 9991;
}


.modalBox {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 580px;
  border-radius: 20px;
  background-color: #FFF;
  padding: 63px 50px;
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%,-50%);
  z-index: 9999;
}

.modalBoxText {
  margin-top: 36px;
  text-align: center;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  color: #114C6A;
}

.modalBoxClose {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 40px;
  height: 40px;
  border: none;
  background-color: white;
  border-radius: 100%;
  font-size: 0;
  line-height: 0;
    filter: drop-shadow(0 0 6px rgba(17, 76, 106, 0.25));
}

.modalBoxClose:hover {
  background-color: #114C6A;
  border-color: #114C6A;
}

.modalBoxClose:hover rect {
    fill: #114C6A;
}

.modalBoxClose:hover path {
  fill: white
}

@media screen and (max-width:620px) {
  .modalBox {
    width: calc(100% - 30px);
    padding: 50px 15px;
  }
   .modalBox img {
    max-height: 45px;
   }
  .modalBoxText { 
    font-size: 13px;
  }
  .modalBoxClose {
    top: -6px;
    right: -9px;
    width: 26px;
    height: 26px;
  }
}