html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  border: none;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary,
main {
  display: block;
}

audio,
canvas,
video {
  display: inline-block;
}

body {
  margin: 0;
}

a {
  background: transparent;
  text-decoration: none;
}

button,
input {
  line-height: normal;
}

input[type="search"] {
  -webkit-appearance: textfield;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

textarea:focus,
input:focus {
  outline: 0;
}

input {
  margin: 0;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Mixins, helpers and functions */
/* Global include*/
html,
body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fafbfc;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: #181c1f;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
}

.main {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
}

.title {
  font-weight: 600;
  color: #181c1f;
  font-size: 36px;
}

@media (max-width: 1920px) {
  .title {
    font-size: calc(18px + 18 * (100vw - 320px) / 1600);
  }
}

@media (max-width: 320px) {
  .title {
    font-size: 18px;
  }
}

.button-global {
  position: relative;
  display: inline-block;
  min-width: 250px;
  padding: 20px 50px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  overflow: hidden;
  border-radius: 40px;
  border: 2px solid transparent;
  -webkit-transition: border 0.5s ease;
  transition: border 0.5s ease;
  background: transparent;
}

@media (max-width: 560px) {
  .button-global {
    padding: 15px 20px;
    font-size: 15px;
  }
}

.button-global__text {
  position: relative;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.08rem;
  z-index: 1;
  -webkit-transition: color 0.5s ease;
  transition: color 0.5s ease;
}

.button-global__liquid {
  position: absolute;
  top: -80px;
  left: 0;
  width: 100%;
  height: 250px;
  background: linear-gradient(
    123deg,
    rgb(0, 79, 159) 0%,
    rgb(11, 187, 239) 44%,
    rgb(0, 112, 225) 80%,
    rgb(0, 131, 181) 100%
  );
  -webkit-transition: top 1s ease;
  transition: top 1s ease;
  z-index: 0;
}

.button-global__liquid::before,
.button-global__liquid::after {
  content: "";
  width: 200%;
  height: 200%;
  position: absolute;
  top: -15%;
  left: 50%;
  -webkit-transform: translate(-50%, -75%);
  transform: translate(-50%, -75%);
}

.button-global__liquid::before {
  border-radius: 45%;
  background: #0086b4;
  -webkit-animation: animate 5s linear infinite;
  animation: animate 5s linear infinite;
}

.button-global__liquid::after {
  border-radius: 40%;
  background: rgba(0, 79, 159, 0.1);
  -webkit-animation: animate 10s linear infinite;
  animation: animate 10s linear infinite;
}

@media (hover: hover) {
  .button-global:hover {
    border: 2px solid #004f9f;
  }

  .button-global:hover .button-global__liquid {
    top: -120px;
  }

  .button-global--white:hover {
    border: 2px solid #fff;
  }

  .button-global--white:hover .button-global__liquid {
    background: linear-gradient(
      123deg,
      rgb(0, 79, 159) 0%,
      rgb(11, 187, 239) 44%,
      rgb(0, 112, 225) 80%,
      rgb(0, 131, 181) 100%
    );
    top: -80px;
    opacity: 1;
  }

  .button-global--white:hover .button-global__text {
    color: #fff;
  }
}

.button-global--white {
  background: #fff;
  border: 2px solid #004f9f;
}

.button-global--white .button-global__text {
  color: #004f9f;
}

.button-global--white .button-global__liquid {
  background: linear-gradient(
    123deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.9) 44%,
    rgba(255, 255, 255, 0.8) 80%,
    rgba(255, 255, 255, 0.7) 100%
  );
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.button-global--main {
  border: 2px solid #0bbbef;
}

.button-global--main span.button-global__text {
  color: #0bbbef;
}

.button-global--lift {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@-webkit-keyframes animate {
  0% {
    -webkit-transform: translate(-50%, -75%) rotate(0deg);
    transform: translate(-50%, -75%) rotate(0deg);
  }

  100% {
    -webkit-transform: translate(-50%, -75%) rotate(360deg);
    transform: translate(-50%, -75%) rotate(360deg);
  }
}

@keyframes animate {
  0% {
    -webkit-transform: translate(-50%, -75%) rotate(0deg);
    transform: translate(-50%, -75%) rotate(0deg);
  }

  100% {
    -webkit-transform: translate(-50%, -75%) rotate(360deg);
    transform: translate(-50%, -75%) rotate(360deg);
  }
}

.btn-product {
  padding: 20px;
  text-align: start;
  text-decoration: none;
  overflow: hidden;
  border-radius: 40px;
  border: none;
  font-size: 16px;
  color: #181c1f;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  min-width: 250px;
}

@media (max-width: 560px) {
  .btn-product {
    padding: 15px 20px;
  }
}

.btn-product span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
}

.btn-product span svg {
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

@media (hover: hover) {
  .btn-product:hover {
    color: #004f9f;
  }

  .btn-product:hover span svg {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .altblock.altblock--alt .btn-product:hover span svg {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
}

.btn-product:focus {
  outline: none;
  color: #004f9f;
}

.btn-product:focus span svg {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.btn-product:active {
  color: #004f9f;
}

.btn-product:active span svg {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.btn-product--systems {
  padding: 0;
  border: none;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
}

.btn-product--solutions {
  padding: 8px 20px;
  max-width: 170px;
  min-width: 170px;
  font-size: 14px;
  border-color: #004f9f;
}

.btn-product--main {
  color: #444c56;
}

@media (hover: hover) {
  .btn-product--main:hover {
    border-color: #444c56;
  }
}

.sub-label {
  min-width: 220px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 13.5px 30px;
  display: block;
  background: #eaf6f9;
  color: #000;
  border-radius: 32px;
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 25px;
  text-align: center;
}

@media (max-width: 1024px) {
  .sub-label {
    padding: 7px 15px;
  }
}

@media (max-width: 560px) {
  .sub-label {
    padding: 4px 8px;
  }
}

.consultation {
  padding: 50px 0;
  color: #fff;
}

@media (max-width: 1024px) {
  .consultation {
    padding: 25px 0;
  }
}

.consultation__wrap {
  background-image: url(../8b012ce26fe392fc14f1.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 55px 0;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
}

.consultation__content {
  max-width: 640px;
}

.consultation__title {
  color: #fff;
  margin-bottom: 20px;
}

.consultation__text {
  margin-bottom: 30px;
}

.consultation__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 32px;
}

.consultation__note {
  position: relative;
  font-size: 0.9rem;
  margin-top: 10px;
  padding-left: 15px;
  font-style: italic;
}

.consultation__note::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 40px;
  background-color: #fff;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 50%;
  border-radius: 2px;
}

.faq {
  padding: 50px 0 100px;
}

@media (max-width: 1024px) {
  .faq {
    padding: 25px 0 50px;
  }
}

.faq__title {
  margin-bottom: 50px;
}

@media (max-width: 1024px) {
  .faq__title {
    margin-bottom: 25px;
  }
}

.faq__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

@media (max-width: 1024px) {
  .faq__tabs {
    margin-bottom: 25px;
  }
}

@media (max-width: 560px) {
  .faq__tabs {
    gap: 10px;
  }
}

.faq__tab {
  min-width: 245px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #fff;
  color: #7b7b7b;
  border: 1px solid transparent;
  border-radius: 16px;
  padding: 13.5px 10px;
  cursor: pointer;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media (hover: hover) {
  .faq__tab:hover {
    color: #004f9f;
    border-color: #004f9f;
  }
}

.faq__tab--active {
  color: #0070e1;
  border: 1px solid #0070e1;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq__content {
  max-width: 650px;
  margin: 0 auto;
  display: none;
}

.faq__content--active {
  display: block;
}

.faq__accordion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1rem;
}

.faq__item {
  background: #fafbfc;
  border-radius: 16px;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  overflow: hidden;
}

.faq__question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  padding: 10px 10px 15px 15px;
  font-size: 17px;
  font-weight: 500;
  color: #000;
  width: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq__question-text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  white-space: normal;
  word-break: break-word;
}

.faq__question .faq__icon {
  font-size: 28px;
  line-height: 1;
  -ms-flex-negative: 0;
  flex-shrink: 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;
}

.faq__question.active .faq__icon {
  content: "–";
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.faq .faq__answer {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  padding: 0 20px;
  opacity: 0;
}

.faq .faq__answer.open {
  opacity: 1;
  padding-bottom: 15px;
}

.faq .faq__answer.open p {
  margin: 0 0 15px 0;
}

.faq__item {
  border-radius: 16px;
  background: #fafbfc;
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.solutions {
  padding: 50px 0;
}

.solutions.solutions--home {
  padding: 50px 0;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#5dcae4),
    to(#0070e1)
  );
  background: linear-gradient(180deg, #5dcae4 0%, #0070e1 100%);
}

@media (max-width: 1024px) {
  .solutions {
    padding: 25px 0;
  }
}

.solutions.solutions--home .solutions__title {
  color: #fff;
}

.solutions__title {
  max-width: 700px;
  text-align: center;
  color: #2c2c2c;
  margin: 0 auto 50px;
}

@media (max-width: 1024px) {
  .solutions__title {
    margin-bottom: 25px;
  }
}

.solutions__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
}

.solutions__card {
  max-width: 307px;
  background: #fafbfc;
  border-radius: 32px;
  padding: 20px 15px;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .solutions__card:hover {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
    -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
}

.solutions__card.produkte {
  display: flex;
  flex-direction: column;
  min-height: 395px;
}

.solutions__card.produkte .solutions__card-text {
  flex-grow: 1;
}

.solutions__card.produkte a.btn-product.btn-product--solutions {
  margin-top: auto;
}

.solutions .solutions__secont-title,
.solutions .solutions__secont-description {
  max-width: 850px;
  margin: 0 auto;
}

.solutions .solutions__secont-title {
  text-align: center;
  line-height: 1.4;
  margin-bottom: 15px;
  font-weight: 700;
}

.solutions .solutions__secont-description {
  margin-bottom: 50px;
}

.solutions .solutions__secont-description p {
  margin: 0 0 15px 0;
}

.solutions .solutions__secont-description p:last-child {
  margin: 0;
}

@media (max-width: 1024px) {
  .solutions .solutions__secont-description {
    margin-bottom: 25px;
  }
}

.solutions__label {
  display: block;
  font-size: 13px;
  font-style: italic;
  margin-bottom: 15px;
  color: #2c2c2c;
}

.solutions__img {
  max-width: 100%;
  width: 100%;
  height: 110px;
  -o-object-fit: cover;
  object-fit: cover;
  margin-bottom: 17px;
}

.solutions__caption {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
}

.solutions__card-text {
  margin-bottom: 15px;
  margin-top: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-size: 13px;
}

.solutions__card-subcategories {
  list-style: none;
  padding: 0;
  margin: 0 -15px;
}

.solutions__card-subcategories .solutions__card-item a {
  display: flex;
  justify-content: space-between;
  color: #2c2c2c;
  transition: color 0.4s ease-in-out;
  font-size: 13px;
  font-weight: 600;
}

.solutions__card-subcategories .solutions__card-item {
  padding: 5px 15px;
  border: 1px solid #d7d7d7;
  transition: background-color 0.4s ease-in-out;
}

.solutions__card-subcategories .solutions__card-item a span {
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center;
}

.solutions__card-subcategories .solutions__card-item:hover {
  background-color: #0bbbef;
}

.solutions__card-subcategories .solutions__card-item:hover a {
  color: white;
}

.solutions__card-subcategories .solutions__card-item:hover a span {
  transform: rotate(45deg);
}

.news-section .button-global__wrapper {
  display: flex;
  justify-content: center;
}

.news-section .button-global__wrapper .button-global {
  margin-top: 40px;
}

/* litfanel quote */

.contact-section__top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.contact-section__top .sub-label {
  margin-bottom: 0;
}

.contact-section__quote {
  position: relative;
  font-weight: 500;
  font-style: italic;
  font-size: 13px;
  padding-left: 10px;
}

.contact-section__quote::before {
  content: "";
  position: absolute;
  height: 30px;
  width: 5px;
  border-radius: 2px;
  left: 0;
  background-color: #004f9f;
}

.contact-section__quote span {
  display: block;
  padding-top: 5px;
  color: #004f9f;
}

@media (max-width: 1024px) {
  .contact-section__top {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 25px;
  }
  .contact-section__quote::before {
    height: 100%;
  }
}
