/* Variables */
/* Media queries */
/* Box shadow */
/* Icons */
/* Base colors */
/* App colors */
/* Font size */
/* Line height */
/* Unit */
/* Offset */
/* Radius */
/* Ease */
/* Global */
*,
::before,
::after {
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  width: 100%;
}

html {
  font-size: 62.5%;
}

body {
  background-color: #fff;
  color: #585c5f;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  -webkit-touch-callout: none;
}
@media (min-width: 960px) {
  body {
    font-size: 14px;
  }
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
.\--title {
  color: #585c5f;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
  padding: 0;
  text-align: left;
  margin: 35px 0 25px;
}

h1,
.\--title-h1 {
  font-size: 4.2rem;
  font-weight: 700;
}
@media (min-width: 1260px) {
  h1,
  .\--title-h1 {
    font-size: 37px;
  }
}

h2,
.\--title-h2 {
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
}
@media (min-width: 1260px) {
  h2,
  .\--title-h2 {
    font-size: 22px;
    text-align: left;
  }
}

h3,
.\--title-h3 {
  font-weight: bold;
}

h4,
.\--title-h4 {
  font-size: 14px;
}
@media (min-width: 1260px) {
  h4,
  .\--title-h4 {
    font-size: 14px;
  }
}

h5,
.\--title-h5 {
  font-size: 1.6rem;
}
@media (min-width: 1260px) {
  h5,
  .\--title-h5 {
    font-size: 1.6rem;
  }
}

p {
  margin: 0;
}

a {
  color: #027eac;
  text-decoration: none;
}
a:hover, a:focus {
  color: #0072B1;
  outline: 0;
}

i {
  font-style: normal;
}

strong {
  font-weight: 700;
}

small {
  font-size: 1.2rem;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

::selection {
  background: rgb(138.1967213115, 143.1147540984, 146.8032786885);
  color: #585c5f;
}

/* List */
li,
ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Table */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

th,
td {
  padding: 0;
  text-align: left;
  vertical-align: top;
}

/* Media */
figure,
picture {
  display: block;
  margin: 0;
}

img {
  border: 0;
  max-width: 100%;
  vertical-align: middle;
}

video {
  display: block;
  margin: 0;
  max-width: 100%;
  outline: 0;
  padding: 0;
}

iframe {
  display: block;
  margin: 0;
  max-width: 100%;
  outline: 0;
  padding: 0;
}

/* Form */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

form,
button,
[role=button] {
  user-select: none;
}

button,
input,
select,
textarea {
  appearance: none;
  background: transparent;
  border-radius: 5px;
  box-shadow: none;
  color: inherit;
  display: block;
  font-family: inherit;
  font-size: 1.8rem;
  line-height: 1.4;
  margin: 0;
  outline: 0;
  border: 1px solid #e4e4e4;
}

button,
[role=button],
label[for],
select {
  cursor: pointer;
  outline: 0;
}

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

label {
  cursor: pointer;
}

input:focus {
  outline: 0;
}

input::-ms-check {
  display: none;
}

select::-ms-expand {
  display: none;
}

textarea {
  overflow: auto;
  max-width: 100%;
  resize: vertical;
}

/* Background */
.\--bg-light {
  background: #e7eaee;
}

.\--bg-white {
  background: #fff;
}

.\--bg-info {
  background: #2a7298;
}

/* Block */
.\--block {
  display: block;
}

/* Column grid system */
.\--content {
  display: block;
  margin: 0 auto;
  /*	min-width: $min;*/
  padding: 0 1.2rem;
  position: relative;
  width: 100%;
  max-width: 724px;
}
@media (min-width: 1260px) {
  .\--content {
    max-width: 1164px;
  }
}
@media (min-width: 1580px) {
  .\--content {
    max-width: 1164px;
  }
}

.\--row {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 2.4rem); /* 8px column offset */
  margin: 0 -1.2rem; /* 8px column offset */
}

.\--column {
  display: flex;
  flex-direction: column;
  padding: 0 1.2rem; /* 8px column offset */
}

/* Position */
.\--absolute {
  position: absolute;
}

.\--relative {
  position: relative;
}

.\--fixed {
  position: fixed;
}

.\--cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.\--absolute-cover {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}

/* Flex */
.\--flex {
  display: flex;
  width: 100%;
}

.\--flex-inline {
  display: inline-flex;
}

.\--flex-column {
  display: flex;
  flex-direction: column;
}

.\--flex-row {
  display: flex;
  flex-direction: row;
}

.\--flex-wrap {
  flex-wrap: wrap;
}

.\--flex-nowrap {
  flex-wrap: nowrap;
}

.\--flex-end {
  align-items: flex-end;
}

.\--flex-centre,
.\--flex-centre-x {
  justify-content: center;
}

.\--flex-centre,
.\--flex-centre-y {
  align-items: center;
}

.\--flex-end-x {
  justify-content: flex-end;
}

.\--flex-space {
  justify-content: space-between;
}

.\--flex-stretch {
  align-items: stretch;
}

.\--flex-start {
  align-items: flex-start;
}

.\--flex-start-x {
  justify-content: flex-start;
}

/* Hide */
.\--hide {
  display: none;
}

.\--hide-text {
  font-size: 0;
  line-height: 0;
}

.\--sr-only {
  position: absolute;
  width: 0.1rem;
  height: 0.1rem;
  padding: 0;
  margin: -0.1rem;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Link */
.\--link,
.\--link-rev {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.\--link::after,
.\--link-rev::after {
  background: #585c5f;
  bottom: 0;
  content: "";
  height: 0.1rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  z-index: -1;
}
.\--link, .\--link::after,
.\--link-rev,
.\--link-rev::after {
  transition: 0.3s cubic-bezier(0.25, 0.45, 0.65, 1.75);
}

.\--link::after {
  width: 100%;
}
.\--link:hover::after, .\--link:focus::after {
  width: 0;
}

.\--link-rev::after {
  width: 0;
}

.\--link-rev:hover::after, .\--link-rev:focus::after {
  width: 100%;
}

.\--link-underline {
  text-decoration: underline;
}

/* Shadow */
.\--shadow {
  box-shadow: 0px 3px 24px rgba(0, 36, 79, 0.15);
}

/* Sticker */
.\--sticker,
.\--sticker-small,
.\--sticker-round {
  color: #fff;
  display: inline-block;
  line-height: 1.1;
  padding: 0.4rem 1.2rem;
  position: relative;
  z-index: 1;
}
.\--sticker::after,
.\--sticker-small::after,
.\--sticker-round::after {
  background: #585c5f;
  border-radius: 0.3rem;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.\--sticker {
  font-size: 1.8rem;
  padding: 0.4rem 1.2rem;
}

.\--sticker-small {
  font-size: 1.4rem;
  height: 2.4rem;
  padding: 0.5rem 1.2rem;
}

.\--sticker-round {
  font-size: 1.4rem;
  height: 2.6rem;
  padding: 0.6rem 1.4rem;
}
.\--sticker-round::after {
  border-radius: 1.3rem;
}

/* Text alignment */
.\--text-center {
  text-align: center;
}

.\--text-right {
  text-align: right;
}

.\--text-left {
  text-align: left;
}

/* Text */
.\--text-line-through {
  text-decoration: line-through;
}

.\--text-brand {
  color: #585c5f;
}

.\--text-dark {
  color: #000;
}

.\--text-underline {
  text-decoration: underline;
}

.\--bold {
  font-weight: bold;
}

/* Columns */
.\--w-hide {
  display: none;
}
.\--w-1 {
  width: 8.333333%;
}
.\--w-2 {
  width: 16.666667%;
}
.\--w-3 {
  width: 25%;
}
.\--w-4 {
  width: 33.333333%;
}
.\--w-5 {
  width: 41.666667%;
}
.\--w-6 {
  width: 50%;
}
.\--w-7 {
  width: 58.333333%;
}
.\--w-8 {
  width: 66.666667%;
}
.\--w-9 {
  width: 75%;
}
.\--w-10 {
  width: 83.333333%;
}
.\--w-11 {
  width: 91.666667%;
}
.\--w-12 {
  width: 100%;
}
@media (min-width: 480px) {
  .\--w-t-3 {
    width: 25%;
  }
  .\--w-t-6 {
    width: 50%;
  }
  .\--w-t-9 {
    width: 75%;
  }
}
@media (min-width: 640px) {
  .\--w-s-auto {
    width: auto;
  }
  .\--w-s-hide {
    display: none;
  }
  .\--w-s-show {
    display: flex;
  }
  .\--w-s-1 {
    width: 8.333333%;
  }
  .\--w-s-3 {
    width: 25%;
  }
  .\--w-s-4 {
    width: 33.333333%;
  }
  .\--w-s-5 {
    width: 41.666667%;
  }
  .\--w-s-6 {
    width: 50%;
  }
  .\--w-s-7 {
    width: 58.333333%;
  }
  .\--w-s-8 {
    width: 66.666667%;
  }
  .\--w-s-9 {
    width: 75%;
  }
  .\--w-s-10 {
    width: 83.333333%;
  }
  .\--w-s-12 {
    width: 100%;
  }
}
@media (min-width: 960px) {
  .\--w-m-show {
    display: block;
  }
  .\--w-m-1 {
    width: 8.333333%;
  }
  .\--w-m-3 {
    width: 25%;
  }
  .\--w-m-4 {
    width: 33.333333%;
  }
  .\--w-m-5 {
    width: 41.666667%;
  }
  .\--w-m-6 {
    width: 50%;
  }
  .\--w-m-7 {
    width: 58.333333%;
  }
  .\--w-m-8 {
    width: 66.666667%;
  }
  .\--w-m-9 {
    width: 75%;
  }
  .\--w-m-12 {
    width: 100%;
  }
}
@media (min-width: 1260px) {
  .\--w-l-2 {
    width: 16.666667%;
  }
  .\--w-l-3 {
    width: 25%;
  }
  .\--w-l-4 {
    width: 33.333333%;
  }
  .\--w-l-5 {
    width: 41.666667%;
  }
  .\--w-l-6 {
    width: 50%;
  }
  .\--w-l-7 {
    width: 58.333333%;
  }
  .\--w-l-8 {
    width: 66.666667%;
  }
  .\--w-l-9 {
    width: 75%;
  }
  .\--w-l-12 {
    width: 100%;
  }
}
/* Column offset */
.\--offset-1 {
  margin-left: 8.333333%;
}
.\--offset-2 {
  margin-left: 16.666667%;
}
@media (min-width: 640px) {
  .\--offset-s-1 {
    margin-left: 8.333333%;
  }
}
@media (min-width: 960px) {
  .\--offset-m-1 {
    margin-left: 8.333333%;
  }
  .\--offset-m-6 {
    margin-left: 50%;
  }
}
@media (min-width: 1260px) {
  .\--offset-l-1 {
    margin-left: 8.333333%;
  }
  .\--offset-l-2 {
    margin-left: 16.666667%;
  }
}
/* Flex direction */
@media (min-width: 640px) {
  .\--flex-s-column {
    flex-direction: column;
  }
  .\--flex-s-row {
    flex-direction: row;
  }
}
@media (min-width: 960px) {
  .\--flex-m-column {
    flex-direction: column;
  }
}
@media (min-width: 960px) {
  .\--flex-m-column {
    flex-direction: column;
  }
  .\--flex-m-row {
    flex-direction: row;
  }
}
@media (min-width: 1260px) {
  .\--flex-l-column {
    flex-direction: column;
  }
  .\--flex-l-row {
    flex-direction: row;
  }
}
@media (min-width: 1580px) {
  .\--flex-xl-column {
    flex-direction: column;
  }
}
@media (min-width: 1920px) {
  .\--flex-max-column {
    flex-direction: column;
  }
}
[class*=__button-wrap] {
  margin: -0.4rem;
}
@media (min-width: 640px) {
  [class*=__button-wrap] {
    margin: -0.4rem;
  }
}

.button {
  align-items: center;
  display: inline-flex;
  font-size: 1.5rem;
  font-weight: 700;
  min-height: 5rem;
  justify-content: center;
  line-height: 1.1;
  overflow: hidden;
  padding: 0.8rem 3.2rem;
  position: relative;
  text-align: center;
  transition: 0.2s ease-in-out;
  z-index: 1;
  cursor: pointer;
}
@media (min-width: 480px) {
  .button {
    font-size: 1.6rem;
  }
}
.button, .button::before, .button::after,
.button .button__counter {
  transition: 0.2s ease-in-out;
}
.button [class*=__button-wrap] {
  margin: 0.4rem;
}

.button--brand {
  background: #00244F;
  color: #fff;
}
.button--brand:hover, .button--brand:focus {
  background: #0a336a;
  color: #fff;
}

/* Aspect ratio -- 21 by 9 */
.\--aspect-ratio-21by9 {
  aspect-ratio: 21/9;
}

/* Aspect ratio -- 16 by 9 */
.\--aspect-ratio-16by9 {
  aspect-ratio: 16/9;
}

/* Aspect ratio -- 4 by 3 */
.\--aspect-ratio-4by3 {
  aspect-ratio: 4/3;
}

/* Aspect ratio -- 1 by 1 */
.\--aspect-ratio-1by1 {
  aspect-ratio: 1/1;
}

/* Aspect ratio -- 9 by 16 */
.\--aspect-ratio-9by16 {
  aspect-ratio: 9/16;
}

/* Modules */
.product-icons h2 {
  font-weight: bold;
}

.table-item {
  border-radius: 5px;
}
.table-item .table-item__no-zigzag td, .table-item .table-item__no-zigzag th {
  padding: 5px 0;
}
.table-item .table-item__no-zigzag .table_item__value {
  padding-left: 20px;
}
.table-item table {
  margin-bottom: 0 !important;
}
.table-item .table_header_first {
  color: #585c5f !important;
  font-size: 22px;
}
.table-item .table_header_second {
  color: #585c5f !important;
}
.table-item .hidden {
  display: none;
}
.table-item .show-more-wrapper {
  justify-content: center;
  display: flex;
  flex-direction: column;
}
.table-item .btn-show-more {
  border: none;
  color: #027EAC;
  text-decoration: underline;
  font-size: 14px;
  font-weight: normal;
}
.table-item .icon-up {
  width: 23px;
  height: 23px;
  display: block;
  position: relative;
  background-color: #027EAC;
  border-radius: 50%;
  transform: rotate(270deg) translate(50%, 0px);
  left: 50%;
  pointer-events: auto;
  cursor: pointer;
}
.table-item .icon-up::before {
  content: "";
  width: 12px;
  height: 14px;
  position: absolute;
  left: 4px;
  top: 5px;
  display: block;
  background: url(/userfiles/images/icons.svg) -50px -41px no-repeat;
}
.table-item .icon-down {
  min-width: 23px;
  height: 23px;
  display: block;
  position: relative;
  background-color: #027EAC;
  border-radius: 50%;
  bottom: 0;
  cursor: pointer;
  z-index: 10;
  align-self: center;
  margin: auto;
  transform: rotate(90deg) translate(50%, 0px);
}
.table-item .icon-down::before {
  content: "";
  width: 12px;
  height: 14px;
  position: relative;
  left: 4px;
  top: 5px;
  display: block;
  background: url(/userfiles/images/icons.svg) -50px -41px no-repeat;
}

.topline-big {
  min-width: unset;
}

.tabs-scroll__next {
  display: none;
}

@media (max-width: 640px) {
  .top-line .nav.nav-tabs {
    flex-wrap: nowrap;
    overflow-x: scroll;
    overflow-scrolling: touch;
    scrollbar-width: thin;
    margin: 0;
    padding: 0;
    justify-content: start;
  }
  .top-line .nav.nav-tabs li {
    border: 1px solid #E4E4E4;
  }
  .top-line .nav.nav-tabs li a {
    width: 105px;
    padding: 0 !important;
    font-size: 13px;
    font-weight: normal;
  }
  .top-line .nav.nav-tabs .active {
    border-bottom: unset !important;
  }
  .tabs-scroll__next {
    display: block;
    border: 1px solid #E4E4E4;
    margin-bottom: 5px;
    border-radius: unset;
  }
  .tabs-scroll__next button {
    margin: auto;
  }
  .tabs-scroll__next button img {
    width: 35px;
  }
  .tabs-scroll {
    display: flex;
  }
  .top-line.topline-big {
    border-bottom: unset;
    border-top: unset;
  }
  .top-line.topline-big .\--column {
    padding: unset !important;
  }
  .top-line.topline-big .image, .top-line.topline-big p {
    display: none;
  }
}
.product__sale-info-text.product__sale-info-text-red {
  color: #C4161C;
  font-size: 13px;
  background: #F9DEDB 0% 0% no-repeat padding-box;
  border: 1px dashed #D72312;
  border-radius: 5px;
  font-weight: normal;
  padding: 2px 10px;
}
.product__sale-info-text.product__sale-info-text-red span {
  padding: 0;
  background: unset;
  color: #C4161C;
  font-weight: bold;
}
.product__sale-info-text.product__sale-info-text--big {
  font-size: 16px;
  padding: 10px;
}

.trips-list .price .old-price {
  font-size: 17px;
}
.trips-list .price .current-price-red {
  color: #C4161C;
}

.vyhodna-nabidka {
  border: 2px solid #027EAC;
}

.vyhodna-nabidka-tag {
  position: absolute;
  right: -2px;
  left: -2px;
  color: white;
  background-color: #027EAC;
  top: -22px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  font-weight: bold;
  padding: 2px 0;
}

.product .image--relative {
  position: relative;
}
.product .image--relative .img-responsive.second {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.product .image--relative:hover .img-responsive.second {
  display: block;
}

.product-detail-info .files-small {
  padding: 10px 30px !important;
}
.product-detail-info .files-small h3 {
  margin-top: 20px;
}

.zig-zag {
  padding-top: 50px;
}

.zig-zag__content-row {
  row-gap: 30px;
}

@media (min-width: 960px) {
  .zig-zag__row--reverse {
    flex-direction: row-reverse;
  }
}

@media (max-width: 640px) {
  .zig-zag__title {
    text-align: left;
    margin-top: 0;
  }
}

.zig-zag__text {
  font-weight: normal;
}

.zig-zag__text-wrapper p {
  font-weight: normal;
}

.zig-zag__column {
  row-gap: 10px;
}

.zig-zag__row {
  row-gap: 50px;
  padding-top: 25px;
  padding-bottom: 25px;
}
@media (max-width: 640px) {
  .zig-zag__row {
    row-gap: unset;
    flex-direction: column-reverse;
    padding-top: unset;
  }
}

.zig-zag__figure {
  height: 100%;
}
.zig-zag__figure .zig-zag__img {
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

@media (max-width: 960px) {
  .zig-zag__row--reverse {
    flex-direction: column-reverse;
  }
}

@media (max-width: 640px) {
  .zig-zag__box {
    padding-top: 50px;
  }
}

.estate-video__img {
  display: block;
  width: 100%;
  height: 370px;
  object-fit: cover;
}

.js--lazy-video {
  height: 100%;
}

.zig-zag__box--video .zig-zag__row {
  background-color: #ECF6FB;
  border-radius: 5px;
}

.estate-video__figure {
  position: relative;
  display: inline-block;
  border-radius: 5px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.estate-video__figure::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.estate-video__video--zig-zag {
  position: relative;
  height: 100%;
}

.estate-video__play-icon-wrap {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.estate-video__play-icon-wrap .estate-video__icon-text {
  color: white;
  font-size: 28px;
  margin-top: 5px;
  text-align: center;
}
@media (max-width: 640px) {
  .estate-video__play-icon-wrap .estate-video__icon-text {
    font-size: 20px;
  }
}
.estate-video__play-icon-wrap .play-white-video {
  margin: auto;
  width: 40px;
  display: flex;
}

.zig-zag__img {
  width: 100%;
  max-height: 370px;
  border-radius: 5px;
}

.zig-zag__gallery {
  gap: 20px;
  padding-top: 10px;
}
@media (max-width: 640px) {
  .zig-zag__gallery {
    gap: 10px;
    padding-top: 5px;
  }
}

.zig-zag_gallery__item img {
  width: 100px;
  height: 80px;
  object-fit: cover;
  border-radius: 5px;
}

.zig-zag_gallery__column {
  width: 100px;
  height: 80px;
  justify-content: center;
  display: flex;
  align-items: center;
  border: 1px solid #E4E4E4;
  border-radius: 5px;
  text-align: center;
}

.zig-zag_gallery__item.\--hide {
  display: none;
}

.zig-zag .glide__slide {
  height: 370px !important;
}
.zig-zag .glide__slide .img-responsive {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.zig-zag .glide__arrows {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 640px) {
  .zig-zag .glide__arrows {
    justify-content: center;
    position: relative;
    top: -20px;
    height: 50px;
  }
}
.zig-zag .glide__arrow-icon {
  background-color: white;
  padding: 10px;
  border-radius: 30px;
  box-shadow: 0px 3px 15px rgba(2, 126, 172, 0.1490196078);
  top: 50%;
  cursor: pointer;
}
@media (max-width: 640px) {
  .zig-zag .glide__arrow-icon {
    position: relative;
  }
}
.zig-zag .glide__arrow--left .glide__arrow-icon {
  left: -20px;
  transform: rotate(180deg);
}
.zig-zag .glide__arrow--right .glide__arrow-icon {
  right: -20px;
}

.glide__bullet--active::before {
  width: 15px;
  height: 15px;
  left: 0;
  top: 0;
  background: #027EAC;
}

.glide__bullet {
  width: 15px;
  height: 15px;
}

.video-slider__item {
  margin-bottom: 5px;
  margin-right: -15px;
  color: #fff;
  cursor: pointer;
  min-height: 90px;
  background-color: transparent;
  border-radius: 5px;
  opacity: 0.8;
  display: flex;
}
.video-slider__item::before {
  content: none;
}

.tab-play {
  stroke: #0072B1;
  fill: #0072B1;
  min-width: 43px;
  height: 43px;
  display: flex;
  align-self: center;
}

.video-slider__video-title {
  display: flex;
  align-items: center;
  font-size: 1.7rem;
  padding-left: 15px;
  color: #0072B1;
}

.video-slider__item--active {
  background-color: #ECF6FB;
}
.video-slider__item--active .video-slider__video-title {
  color: #585c5f;
}
.video-slider__item--active .tab-play {
  stroke: #585c5f;
  fill: #585c5f;
}

.video-slider__menu.left {
  padding-left: 0;
}

.video-slider__frame {
  background-color: #ECF6FB;
  border-radius: 5px;
}

.video-slider__video {
  display: none;
  border: none;
  width: 100%;
  height: 100%;
  padding: 15px;
}
.video-slider__video iframe {
  border-radius: 5px;
  height: 100%;
}

.video-slider__video--active {
  display: block;
}

@media (max-width: 640px) {
  .video-slider__content {
    min-width: unset;
  }
}

.video-slider__frame {
  height: 470px;
}

.video-slider--desktop {
  display: block;
}

.video-accordion {
  display: none;
}

@media (max-width: 640px) {
  .video-slider--desktop {
    display: none;
  }
  .video-accordion {
    display: block;
    margin: 0 -25px;
    overflow: hidden;
    margin: auto;
  }
  .video-acc__list {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .video-acc__item {
    border-bottom: 1px solid #e5e5e5;
  }
  .video-acc__toggle {
    width: 100%;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0.5rem;
    background: none;
    border: 0;
    cursor: pointer;
    text-align: left;
  }
  .video-acc__title {
    flex: 1;
    font-weight: 600;
  }
  .video-acc__chev {
    width: 0.75rem;
    height: 0.75rem;
    transform: rotate(0deg);
    transition: transform 0.2s;
  }
  .video-acc__toggle[aria-expanded=true] .video-acc__chev {
    transform: rotate(180deg);
  }
  .video-acc__panel {
    padding: 0.5rem 0.5rem 1rem;
  }
  .video-acc__iframe iframe {
    width: 100%;
    height: 210px;
    border: 0;
    border-radius: 8px;
  }
  .video-acc__toggle {
    padding-left: 0;
  }
  .video-acc__toggle::before {
    display: none;
  }
  .video-acc__toggle button {
    border: unset;
    height: 65px;
  }
  .video-acc__toggle .video-acc__title {
    text-align: left;
    display: flex;
    align-self: center;
    padding-left: 10px;
  }
  .video-acc__toggle .tab-play {
    overflow: visible;
  }
  .video-acc__toggle.\--active {
    background-color: #ECF6FB;
  }
  .video-acc__toggle.\--active .video-acc__list {
    background-color: #ECF6FB;
  }
}
.case-studies-zigzag {
  /*  .glide__track {
  		 @include media($xlarge) {
  			 overflow: visible !important;
  		 }
    }*/
}
.case-studies-zigzag .glide__track {
  position: relative;
  /*    @media (max-width: 768px) {
        overflow: hidden;
      }*/
}
.case-studies-zigzag .glide__track::after, .case-studies-zigzag .glide__track::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 390px;
  height: 101%;
  pointer-events: none;
  background: linear-gradient(to right, #e7eaee, rgba(231, 234, 238, 0.8));
  z-index: 2;
}
.case-studies-zigzag .glide__track::before {
  background: linear-gradient(to left, white, white);
}
.case-studies-zigzag .glide__track::after {
  right: -400px;
}
.case-studies-zigzag .glide__track::before {
  left: -400px;
}
.case-studies-zigzag .glide__arrows {
  display: flex;
  justify-content: space-between;
  z-index: 200;
  position: relative;
  top: -380px;
}
@media (max-width: 1260px) {
  .case-studies-zigzag .glide__arrows {
    top: 0;
    justify-content: space-evenly;
  }
}
.case-studies-zigzag .glide__arrow-icon {
  background-color: white;
  padding: 10px;
  border-radius: 30px;
  box-shadow: 0px 3px 15px rgba(2, 126, 172, 0.1490196078);
  cursor: pointer;
}
@media (max-width: 1260px) {
  .case-studies-zigzag .glide__arrow-icon {
    position: relative;
    top: 0;
  }
}
.case-studies-zigzag .glide__arrow--left .glide__arrow-icon {
  transform: rotate(180deg);
}
@media (min-width: 960px) {
  .case-studies-zigzag .glide__arrow--left .glide__arrow-icon {
    left: -50px;
  }
}
@media (max-width: 1260px) {
  .case-studies-zigzag .glide__arrow--left .glide__arrow-icon {
    position: relative;
    left: 0;
  }
}
@media (min-width: 960px) {
  .case-studies-zigzag .glide__arrow--right .glide__arrow-icon {
    right: -50px;
  }
}
@media (max-width: 1260px) {
  .case-studies-zigzag .glide__arrow--right .glide__arrow-icon {
    position: relative;
    right: 0;
  }
}
.case-studies-zigzag .case-studies-slider__figure {
  border-radius: 5px;
  min-height: 710px;
}
@media (max-width: 1260px) {
  .case-studies-zigzag .case-studies-slider__figure::after {
    content: none;
  }
  .case-studies-zigzag .case-studies-slider__figure .case-studies-slider__img {
    display: none;
  }
}
@media (min-width: 640px) {
  .case-studies-zigzag .case-studies-slider__figure {
    min-height: 580px;
  }
}
@media (min-width: 1260px) {
  .case-studies-zigzag .case-studies-slider__figure {
    min-height: unset;
  }
  .case-studies-zigzag .case-studies-slider__figure .case-studies-slider__img {
    display: block;
  }
}
@media (max-width: 1260px) {
  .case-studies-zigzag .case-studies-autor__figure {
    position: relative;
    justify-content: center;
    display: flex;
  }
}
.case-studies-zigzag .case-studies-slider__img-mobile {
  display: block;
}
@media (min-width: 1260px) {
  .case-studies-zigzag .case-studies-slider__img-mobile {
    display: none;
  }
}
.case-studies-zigzag .case-studies-zigzag-text {
  margin: auto;
}
.case-studies-zigzag .case-studies-zigzag-text p {
  font-weight: normal;
}
.case-studies-zigzag .case-studies-zigzag-text h2 {
  margin-bottom: 0;
  color: #4A4A49;
}
@media (max-width: 1260px) {
  .case-studies-zigzag .case-studies-zigzag-text h2 {
    text-align: center !important;
  }
}
.case-studies-zigzag .case-studies-slider__box {
  height: 100%;
  justify-content: space-between;
}
@media (max-width: 1260px) {
  .case-studies-zigzag .case-studies-slider__box {
    flex-direction: column;
    padding: 0;
  }
}
.case-studies-zigzag .case-studies-slider__box .case-studies-slider__main-title {
  padding-bottom: 30px;
  padding-left: 20px;
  align-self: end;
  display: flex;
  font-size: 36px;
}
@media (max-width: 1260px) {
  .case-studies-zigzag .case-studies-slider__box .case-studies-slider__main-title {
    text-align: center;
    color: #4A4A49;
    padding: 0;
    margin-top: 20px;
    margin-bottom: -40px;
  }
}
.case-studies-zigzag .case-studies-slider__box .right {
  width: 400px;
}
.case-studies-zigzag .case-studies-slider__box .right .case-studies-autor__img {
  padding: 10px;
  background-color: white;
  border-radius: 80px;
  width: 80px;
  position: relative;
  right: -40%;
  top: 40px;
}
@media (max-width: 1260px) {
  .case-studies-zigzag .case-studies-slider__box .right .case-studies-autor__img {
    top: 40px;
    right: unset;
  }
}
.case-studies-zigzag .case-studies-slider__box .right .case-studies-slider__text {
  background-color: white;
  padding: 20px;
  color: #585c5f;
  font-weight: normal;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  font-size: 16px;
  font-style: italic;
}
@media (max-width: 1260px) {
  .case-studies-zigzag .case-studies-slider__box .right .case-studies-slider__text {
    padding: 5px;
    box-shadow: 0px 3px 50px rgba(0, 0, 0, 0.1607843137);
    padding-top: 50px;
    max-width: unset;
  }
}
.case-studies-zigzag .case-studies-slider__box .right .case-studies-slider__text_name {
  background-color: white;
  color: #585c5f;
  font-weight: normal;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  font-size: 16px;
  font-style: italic;
}
.case-studies-zigzag .case-studies-slider__box .right .case-studies-slider__text_name span {
  font-style: normal;
  font-size: 16px;
  font-weight: bold;
  color: #4A4A49;
}
.case-studies-zigzag .case-studies-slider__box .right .case-studies-slider__text_name p {
  margin-top: 0;
}
@media (max-width: 1260px) {
  .case-studies-zigzag .case-studies-slider__box .right {
    width: 100%;
    margin-left: 0;
    box-shadow: 0px 3px 50px rgba(0, 0, 0, 0.1607843137);
    padding-top: 40px;
    padding: 5px;
  }
}
.case-studies-zigzag .case-studies-slider__text_bottom {
  background-color: #027EAC;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  padding: 30px;
}
.case-studies-zigzag .case-studies-slider__text_bottom h3 {
  color: white;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
}
.case-studies-zigzag .case-studies-slider__text_bottom .case-studies-slider__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.case-studies-zigzag .case-studies-slider__text_bottom .case-studies-slider__icon::before {
  font-size: 36px;
  color: white;
}
.case-studies-zigzag .case-studies-slider__text_bottom .case-studies-zigzag__item {
  color: white;
  text-align: center;
  font-size: 13px;
}
.case-studies-zigzag .case-studies-slider__text_bottom .case-studies-zigzag__item:hover {
  color: #ccc2ba;
}
.case-studies-zigzag .case-studies-slider__text_bottom .case-studies-zigzag__button {
  margin-left: auto;
  display: flex;
  margin-top: 20px;
}
.case-studies-zigzag .case-studies-slider__text_bottom .case-studies-zigzag__button.desktop {
  display: none;
}
@media (min-width: 1260px) {
  .case-studies-zigzag .case-studies-slider__text_bottom .case-studies-zigzag__button.desktop {
    display: block;
  }
}
@media (min-width: 1260px) {
  .case-studies-zigzag .case-studies-slider__text_bottom .case-studies-zigzag__button.mobile {
    display: none;
  }
}

/* New banner */
.new-banner {
  border-radius: 5px;
  position: relative;
  display: flex;
  align-items: flex-end;
  z-index: 1;
  overflow: hidden;
  margin: 20px 0;
  /*  @media all and (max-width: @screen-md-min) {
      justify-content: flex-start;
      align-items: flex-start;
      flex-direction: column;
    }*/
}

.new-banner--color {
  background: #027EAC;
}

.new-banner--large {
  padding: 35px 25px;
  min-height: 260px;
}
@media (max-width: 640px) {
  .new-banner--large {
    min-height: unset;
  }
}

.new-banner--small {
  padding: 20px;
  min-height: 170px;
  /*  @media (max-width: @screen-md) {
      padding: 10px;
      min-height: unset;
    }*/
}

.new-banner--left {
  justify-content: space-between;
  display: flex;
  min-height: 120px;
  /*  @media (max-width: @screen-md) {
      max-width: 50%;
      justify-content: unset;
      min-height: unset;
      row-gap: 5px;
    }*/
}

/* New banner | Button */
.new-banner__button {
  position: relative;
  z-index: 5;
  font-size: 14px;
  height: auto;
  min-height: 30px;
  line-height: normal;
  display: flex;
  align-items: center;
  text-align: center;
  max-width: 100px;
  justify-content: center;
  /*  .content &.btn {
      padding: 4px 18px;
    }*/
}
.new-banner__button, .new-banner__button.btn, .content .new-banner__button.btn {
  /*    margin: 3px 5px 3px 5px;*/
  /*    @media (max-width: @screen-md) {
        margin-left: 0;
      }*/
}

.new-banner__buttons {
  margin: 0 -5px;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 640px) {
  .new-banner__buttons {
    justify-content: end;
  }
}

.new-banner__btn-group {
  row-gap: 15px;
  /*  @media (max-width: 690px) {
      column-gap: 10px;
    }*/
}
.new-banner__btn-group .qr__figure {
  display: none;
}
@media (min-width: 640px) {
  .new-banner__btn-group .qr__figure {
    display: flex;
  }
}
.new-banner__btn-group .qr__figure .button__qr {
  width: 100px;
}
.new-banner__btn-group .new-banner__button {
  padding: 5px 8px;
  margin-top: 10px;
}
.new-banner__btn-group .qr__text {
  flex-basis: 100%;
  color: #fff;
}
@media (max-width: 640px) {
  .new-banner__btn-group .qr__text {
    display: none;
  }
}

.new-banner__app {
  max-width: 105px;
}

.new-banner__app-img {
  max-width: 100%;
}

/* New banner | Figure */
.new-banner__figure {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  bottom: -35px;
  position: relative;
}
@media (max-width: 640px) {
  .new-banner__figure {
    position: absolute;
    right: 10px;
  }
}
.new-banner--large .new-banner__figure {
  /*    width: 100%;*/
  height: 125%;
  /*    margin: 0 0 -27px 0;

      @media all and (max-width: @screen-md-min) {
        margin: 12px 0px -35px 0;
      }*/
}
.new-banner--small .new-banner__figure {
  width: 160px;
  height: 105px;
  margin: -15px 20px -20px 0;
  /*
      @media all and (max-width: @screen-md-min) {
        margin: 12px 0px -20px 0;
      }*/
}

.new-banner__img {
  max-width: 100%;
  max-height: 100%;
}
.new-banner__img.desktop {
  display: none;
}
@media (min-width: 640px) {
  .new-banner__img.desktop {
    display: block;
  }
}
.new-banner__img.mobile {
  bottom: -45px;
  position: relative;
  right: -15px;
  width: 160px;
  height: 60%;
}
@media (min-width: 640px) {
  .new-banner__img.mobile {
    display: none;
  }
}
.new-banner__background .new-banner__img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.new-banner__background {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.new-banner__background::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: linear-gradient(to top, rgb(0, 0, 0) 0%, transparent 100%);
  /*    @media all and (max-width: @screen-md-min) {
        background: linear-gradient(to left, rgba(0, 0, 0, 0.76) 0%, transparent 160%);
      }*/
}
@media (max-width: 640px) {
  .new-banner__background::after {
    background: linear-gradient(to right, rgb(0, 0, 0) 0%, transparent 100%);
  }
}

/* New banner | Title */
.new-banner__title {
  color: #fff;
  margin: 0 0 10px 0;
  text-align: left;
  font-weight: bold;
}
.product-detail-info .new-banner__title {
  text-align: left;
}

.new-banner__desc {
  margin: 0 0 15px 0;
  font-size: 13px;
  color: #fff;
}
@media (max-width: 480px) {
  .new-banner__desc {
    width: 155px;
  }
}

/*Product specific after banner*/
.product-specifics {
  display: flex;
  flex-wrap: wrap;
}

.product-specifics--item {
  width: 50%;
  display: flex;
  padding-bottom: 5px;
  /*  @media (max-width: @screen-md) {
      width: 100%;
    }*/
}
@media (max-width: 640px) {
  .product-specifics--item {
    width: 100%;
  }
}
.product-specifics--item p:first-child {
  width: 45%;
}
.product-specifics--item p {
  margin: 0;
}

.qr__figure {
  width: 100%;
  height: 100px;
}

.new-banner__buttons.small {
  justify-content: unset;
}
.new-banner__buttons.small .new-banner__btn-group {
  gap: 15px;
}
.new-banner__buttons.small .new-banner__btn-group .qr__figure {
  display: none;
}
@media (min-width: 640px) {
  .new-banner__buttons.small .new-banner__btn-group .qr__figure {
    display: flex;
  }
}
.new-banner__buttons.small .new-banner__button {
  padding: 5px;
}
.new-banner__buttons.small .qr__figure {
  width: 100%;
  height: 90px;
  display: none;
}
@media (min-width: 640px) {
  .new-banner__buttons.small .qr__figure {
    display: flex;
  }
}

.new-banner--small {
  padding-top: 5px;
}
.new-banner--small .new-banner__figure {
  width: 115px;
  height: 180px;
  bottom: -20px;
  position: absolute;
  right: 0;
}
@media (min-width: 640px) {
  .new-banner--small .new-banner__figure {
    position: relative;
    right: unset;
  }
}
@media (max-width: 640px) {
  .new-banner--small .new-banner__figure {
    width: 140px;
    right: -10px;
    bottom: 0;
  }
}
@media (max-width: 640px) {
  .new-banner--small {
    flex-direction: column;
    justify-content: center;
    align-items: baseline;
  }
  .new-banner--small .new-banner__buttons {
    width: 100%;
    margin-top: 10px;
  }
  .new-banner--small .new-banner--left {
    align-self: baseline;
    min-height: unset;
  }
  .new-banner--small .new-banner__button {
    margin-top: unset;
  }
  .new-banner--small .new-banner__title {
    width: 50%;
  }
}

.slider--intro h1 {
  text-align: center;
}
@media (min-width: 960px) {
  .slider--intro h1 {
    text-align: left;
  }
}

.faq-nahled--detail li {
  text-align: left;
}
@media (max-width: 640px) {
  .faq-nahled--detail li {
    text-align: left;
  }
}
.faq-nahled--detail .btn {
  width: 155px !important;
}

footer h3 {
  font-weight: bold;
  text-align: center;
}
@media (min-width: 960px) {
  footer h3 {
    text-align: left;
  }
}

.about-us h1 {
  text-align: center;
}

.counselling h2 {
  text-align: left;
}
.counselling h3 {
  font-weight: bold;
}

.article h2 {
  text-align: center;
}
@media (min-width: 960px) {
  .article h2 {
    text-align: left;
  }
}

.download-section h1 {
  text-align: center;
}
@media (min-width: 960px) {
  .download-section h1 {
    text-align: left;
  }
}

.tp-table h3 {
  font-weight: bold;
}

.content h2 {
  text-align: left;
}

.career h2 {
  text-align: center;
}

.references .glide__slides {
  overflow: visible;
  min-height: 650px;
}
.references .references__title {
  font-size: 26px;
}
@media (max-width: 640px) {
  .references .references__title {
    text-align: center;
  }
}
.references .references__perex {
  font-size: 16px;
  width: 50%;
  text-align: center;
  font-weight: normal;
  padding-bottom: 30px;
}
@media (max-width: 640px) {
  .references .references__perex {
    width: 100%;
  }
}
.references .glide_slide__figure {
  height: 250px;
}
.references .glide_slide__figure img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.references .glide_slide__box {
  background-color: #ECF6FB;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  min-height: 420px;
  position: relative;
  padding: 0 15px;
  margin-bottom: 15px;
}
.references .glide_slide__box h2 {
  margin: 0;
  padding-top: 10px;
  text-align: center;
  color: #027EAC;
}
.references .glide_slide__box p {
  text-align: center;
  font-weight: normal;
  margin-top: 0;
}
.references .subitem {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 100;
}
.references .subitem .text {
  text-decoration: underline;
}
.references .icon-down {
  min-width: 23px;
  height: 23px;
  display: block;
  position: relative;
  background-color: #027EAC;
  border-radius: 50%;
  transform: rotate(90deg) translate(50%, 0px);
  cursor: pointer;
  z-index: 10;
}
.references .icon-down::before {
  content: "";
  width: 12px;
  height: 14px;
  position: absolute;
  left: 4px;
  top: 5px;
  display: block;
  background: url(/userfiles/images/icons.svg) -50px -41px no-repeat;
}
.references .icon-up {
  width: 23px;
  height: 23px;
  display: block;
  position: relative;
  background-color: #027EAC;
  border-radius: 50%;
  transform: rotate(270deg) translate(-50%, 0px);
  left: 45%;
  pointer-events: auto;
  cursor: pointer;
}
.references .icon-up::before {
  content: "";
  width: 12px;
  height: 14px;
  position: absolute;
  left: 4px;
  top: 5px;
  display: block;
  background: url(/userfiles/images/icons.svg) -50px -41px no-repeat;
}
.references .subitem.bottom {
  position: relative;
  max-height: 0;
  opacity: 0;
  transition: 0.4s ease, opacity 0.4s ease;
  z-index: 50;
}
.references .subitem.bottom span {
  position: absolute;
  bottom: 0;
}
.references .subitem.bottom.show {
  max-height: 400px;
  opacity: 1;
}
.references .glide__arrows {
  display: flex;
  justify-content: space-between;
  z-index: 200;
  position: relative;
  top: -380px;
}
@media (max-width: 640px) {
  .references .glide__arrows {
    top: 0;
    justify-content: space-evenly;
  }
}
.references .glide__arrow-icon {
  background-color: white;
  padding: 10px;
  border-radius: 30px;
  box-shadow: 0px 3px 15px rgba(2, 126, 172, 0.1490196078);
  cursor: pointer;
}
@media (max-width: 640px) {
  .references .glide__arrow-icon {
    position: relative;
    top: 0;
  }
}
.references .glide__arrow--left .glide__arrow-icon {
  transform: rotate(180deg);
}
@media (min-width: 960px) {
  .references .glide__arrow--left .glide__arrow-icon {
    left: -50px;
  }
}
@media (max-width: 640px) {
  .references .glide__arrow--left .glide__arrow-icon {
    position: relative;
    left: 0;
  }
}
@media (min-width: 960px) {
  .references .glide__arrow--right .glide__arrow-icon {
    right: -50px;
  }
}
@media (max-width: 640px) {
  .references .glide__arrow--right .glide__arrow-icon {
    position: relative;
    right: 0;
  }
}
.references .references_box {
  display: flex;
  padding: 10px;
  margin-bottom: 20px;
  padding-bottom: 30px;
}
.references .references_box .references__figure {
  background: #fff;
  border-radius: 5px;
  flex-shrink: 0;
  height: auto;
  margin-right: 10px;
  overflow: hidden;
  padding: 13px;
  width: 100px;
  align-self: center;
}
.references .references_box .references__bottom p {
  text-align: left;
  margin: 0;
}
.references .references_box .references__bottom h2 {
  font-size: 1.8rem;
  text-align: left;
}
.references .references_box .references__bottom .reference-item__item-button {
  line-height: unset;
  padding: 0 20px;
  display: flex;
  align-items: center;
}

.quote.big {
  background-color: #ECF6FB;
  max-width: unset;
  max-height: unset;
  overflow: visible;
}
@media (min-width: 960px) {
  .quote.big {
    margin-top: 50px;
  }
}
.quote.big .quote__figure {
  max-width: 430px;
  flex-shrink: 0;
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
}
@media (max-width: 640px) {
  .quote.big .quote__figure {
    max-width: 100%;
  }
}
.quote.big .quote__figure img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  transition: transform 0.3s;
  position: absolute;
  left: 0;
  top: 0;
}
.quote.big .quote__box {
  background-color: #ECF6FB;
  position: relative;
  align-self: end;
  justify-content: space-between;
  padding: 40px;
}
@media (min-width: 1260px) {
  .quote.big .quote__box {
    height: 265px;
  }
}
.quote.big .quote__box.quote__box--small {
  height: 260px;
  padding: 40px 20px 20px;
}
@media (min-width: 640px) {
  .quote.big .quote__box.quote__box--small {
    padding: 0 20px 20px;
  }
}
.quote.big .quote__box.quote__box--small .quote__text {
  margin: 0;
  padding: 0;
}
.quote.big .quote__box.quote__box--small .quote__text:before {
  font-size: 50px;
  top: -10px;
}
@media (max-width: 640px) {
  .quote.big .quote__box.quote__box--small .quote__text:before {
    top: -60px;
  }
}
.quote.big .quote__box.quote__box--small .quote__wrap {
  padding-left: 0;
}
.quote.big .quote__box .quote__text {
  font-size: 14px;
  font-weight: normal;
  color: #585c5f;
}
.quote.big .quote__box .quote__text::before {
  font-size: 75px;
  top: -90px;
  color: #027EAC;
}
.quote.big .quote__box .quote__wrap {
  position: relative;
  padding-left: 30px;
}
@media (max-width: 640px) {
  .quote.big .quote__box .quote__wrap {
    padding-left: 0;
    align-items: start;
  }
}
.quote.big .quote__box .quote__person {
  font-weight: normal;
}
.quote.big .quote__box .quote__person > div:first-child {
  font-weight: bold;
  color: #027EAC;
  font-size: 14px;
  font-style: normal;
}
.quote.big .quote__box .btn-primary.red {
  background: #027EAC;
}
@media (max-width: 640px) {
  .quote.big .quote__box {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
  }
}
.quote.big .quote__icon__figure {
  position: absolute;
  transform: translate(0, -125%);
}
.quote.small {
  background-color: #ECF6FB;
  max-width: unset;
  max-height: unset;
  overflow: visible;
}
@media (min-width: 960px) {
  .quote.small {
    margin-top: 50px;
  }
}
.quote.small .quote__figure {
  max-width: 370px;
  flex-shrink: 0;
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
}
@media (max-width: 640px) {
  .quote.small .quote__figure {
    max-width: 100%;
  }
}
.quote.small .quote__figure img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  transition: transform 0.3s;
  position: absolute;
  left: 0;
  top: 0;
}
.quote.small .quote__box {
  background-color: #ECF6FB;
  position: relative;
  height: 310px;
  align-self: end;
  justify-content: space-between;
  padding: 40px;
}
.quote.small .quote__box.quote__box--small {
  height: 260px;
  padding: 40px 20px 20px;
}
@media (min-width: 640px) {
  .quote.small .quote__box.quote__box--small {
    padding: 0 20px 20px;
  }
}
.quote.small .quote__box.quote__box--small .quote__text {
  margin: 0;
  padding: 0;
}
.quote.small .quote__box.quote__box--small .quote__text:before {
  font-size: 50px;
  top: -10px;
}
@media (max-width: 640px) {
  .quote.small .quote__box.quote__box--small .quote__text:before {
    top: -60px;
  }
}
.quote.small .quote__box.quote__box--small .quote__wrap {
  padding-left: 0;
}
.quote.small .quote__box .quote__text {
  font-size: 14px;
  font-weight: normal;
  color: #585c5f;
}
.quote.small .quote__box .quote__text::before {
  font-size: 75px;
  top: -90px;
  color: #027EAC;
}
.quote.small .quote__box .quote__wrap {
  position: relative;
  padding-left: 30px;
}
@media (max-width: 640px) {
  .quote.small .quote__box .quote__wrap {
    padding-left: 0;
    align-items: start;
  }
}
.quote.small .quote__box .quote__person {
  font-weight: normal;
}
.quote.small .quote__box .quote__person > div:first-child {
  font-weight: bold;
  color: #027EAC;
  font-size: 14px;
  font-style: normal;
}
.quote.small .quote__box .btn-primary.red {
  background: #027EAC;
}
@media (max-width: 640px) {
  .quote.small .quote__box {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
  }
}
.quote.small .quote__icon__figure {
  position: absolute;
  transform: translate(0, -125%);
}

@media (max-width: 640px) {
  .contact-box-custom .icon--small {
    display: none;
  }
  .contact-box-custom .product-contact__title {
    display: none;
  }
  .contact-box-custom .contact-box__texts {
    flex-wrap: unset;
    gap: 10px;
  }
  .contact-box-custom .contact-box__texts a {
    font-size: 14px;
  }
}
@media (max-width: 640px) and (max-width: 350px) {
  .contact-box-custom .contact-box__texts a {
    font-size: 11px;
  }
}
@media (max-width: 640px) {
  .contact-box-custom .contact {
    padding-left: 10px;
  }
  .contact-box-custom .contact::before {
    width: 25px;
    height: 25px;
    background: url(/userfiles/images/icons.svg) -276px -78px no-repeat;
    left: -15px;
  }
  .contact-box-custom .contact.mail::before {
    background: url(/userfiles/images/icons.svg) -283px -104px no-repeat;
    left: -10px;
  }
  .contact-box-custom .contact-box--product {
    padding: 10px !important;
  }
}