:root {
  --sitecolor: #4BBBC8;
  --textcolor: #3E3E3E;
  --titlecolor: #3E3E3E;
  --linkcolor: #4BBBC8;
  --linkcolor-hov: #3E3E3E;
  --accentcolor: #4BBBC8;
  --headerHeight: 184px;
  --gridGap: 30px;
  --btnPrimaryColor: #3E3E3E;
  --btnPrimaryBgColor: #4BBBC8;
  --btnPrimaryColorHover: #3E3E3E;
  --btnPrimaryBgColorHover: #3E3E3E;
}
@media (max-width: 1279px) {
  :root {
    --headerHeight: 100px;
  }
}
.button {
  font-size: clamp(1rem, 0.22148394vw + 0.9480897rem, 1.125rem);
  line-height: clamp(1.5rem, 0.22148394vw + 1.4480897rem, 1.625rem);
  font-family: inherit;
  cursor: pointer;
  color: var(--textcolor);
  padding: 8px 40px 8px 40px;
  appearance: none;
  border-radius: 0;
  text-decoration: none;
  border: none;
  display: inline-block;
  padding-left: 50px;
  box-sizing: border-box;
  min-height: 40px;
  font-weight: 600;
  position: relative;
  transition: all 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  isolation: isolate;
}
.button:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  aspect-ratio: 1;
  background-color: var(--btnBubbleColor, var(--sitecolor));
  border-radius: 100%;
  z-index: -1;
  transition: all 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}
.button:after {
  content: '';
  position: absolute;
  left: 10px;
  top: 12px;
  width: 35px;
  height: 15px;
  background-color: #3E3E3E;
  mask-size: 100% 100%;
  mask-position: -15px 50%;
  mask-repeat: no-repeat;
  mask-image: url(/images/btn-arrow-long.svg);
  transition: all 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}
@media (hover: hover) and (pointer: fine) {
  .button:hover,
  .button:focus {
    padding-left: 75px;
    padding-right: 15px;
  }
  .button:hover:after,
  .button:focus:after {
    left: 20px;
    mask-position: 0 50%;
  }
}
.button-pdf {
  font-size: clamp(1rem, 0.22148394vw + 0.9480897rem, 1.125rem);
  line-height: clamp(1.5rem, 0.22148394vw + 1.4480897rem, 1.625rem);
  font-family: inherit;
  cursor: pointer;
  color: var(--textcolor);
  padding: 8px 0 8px 40px;
  appearance: none;
  border-radius: 0;
  text-decoration: none;
  border: none;
  display: inline-block;
  padding-left: 50px;
  box-sizing: border-box;
  min-height: 40px;
  font-weight: 600;
  position: relative;
  transition: all 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  isolation: isolate;
}
.button-pdf:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  aspect-ratio: 1;
  background-color: var(--btnBubbleColor, var(--sitecolor));
  border-radius: 100%;
  z-index: -1;
  transition: all 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}
.button-pdf:after {
  content: '';
  position: absolute;
  left: 12px;
  top: 9px;
  width: 15px;
  height: 24px;
  background-color: #3E3E3E;
  mask-size: 100% 100%;
  mask-position: 50% -4px;
  mask-repeat: no-repeat;
  mask-image: url(/images/arrow-down.svg);
  transition: all 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}
@media (hover: hover) and (pointer: fine) {
  .button-pdf:hover:after,
  .button-pdf:focus:after {
    mask-position: 50% 0 ;
  }
}
.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  display: table;
  content: '';
}
.clearfix:after {
  clear: both;
}
.navigation div.navi {
  float: left;
}
.navigation div.navi > .item {
  float: left;
}
.navigation div.navi > .item > .menu {
  display: block;
}
@media (min-width: 1280px) {
  .togglenavigation,
  .mobile-navigation {
    display: none;
  }
}
.navigation div.sub1 {
  --linkcolor: #fff;
  --linkcolor-hov: #fff;
  display: flex;
  gap: 40px;
  margin-top: 42px;
}
.navigation div.sub1 > .item > .menu {
  font-size: 20px;
  line-height: 1.3;
  position: relative;
  padding-bottom: 5px;
  box-sizing: border-box;
  font-weight: bold;
}
.navigation div.sub1 > .item > .menu:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #EFEFEF;
  transition: all 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}
@media (hover: hover) and (pointer: fine) {
  .navigation div.sub1 > .item > .menu:hover:after,
  .navigation div.sub1 > .item > .menu:focus:after {
    width: 100%;
  }
}
.navigation div.sub1 > .item > .menu.path:after {
  width: 100%;
}
.area--one {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0 var(--gridGap);
}
.area--one .unit {
  grid-column: span 12;
}
.area--one .unitOne--1-1-indentRight {
  padding-right: 17.1875%;
  box-sizing: border-box;
}
.area--one .unitTwo {
  grid-column: span 6;
  padding: 30px 55px;
}
.area--one .unitOne--1-2 {
  grid-column: span 6;
}
.area--one .unitOne--1-3 {
  grid-column: span 4;
}
.area--one .unit--form {
  grid-column: span 8;
}
.area--one .unit--form .unit__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px var(--gridGap);
}
.area--one .unit--form .part {
  grid-column: span 2;
}
.area--one .unit--form .part--slim {
  grid-column: span 1;
}
.area--one .unitThree {
  grid-column: span 4;
}
.area--one.areaMasonry .unitThree:nth-child(3n+4) {
  margin-top: calc(-80px + var(--spacePart));
}
.area--one.areaMasonry .unitThree:nth-child(3n+6) {
  margin-top: calc(-80px + var(--spacePart));
}
.area--one.areaMasonry .unitThree:nth-child(3n+2) {
  padding-top: 80px;
  box-sizing: border-box;
}
.unit--fold.unitFour div.more {
  padding-right: 80px;
  box-sizing: border-box;
}
.unit--fold.unitFour--variantOne {
  padding-right: 17.1875%;
  box-sizing: border-box;
}
.unit--fold.unitFour--variantTwo {
  padding-left: 20.3125%;
  box-sizing: border-box;
}
.area--one .unit--sideicon {
  padding-left: 20.3125%;
  box-sizing: border-box;
  margin-bottom: 0;
  min-height: 188px;
}
.area--one .unit--sideicon .unit__background {
  width: 14.6875%;
  position: absolute;
  left: 0;
  top: 0;
}
.area--intro .part.link.part--slim,
.area--one .part.link.part--slim {
  width: auto;
  margin-right: var(--gridGap);
}
/*# sourceMappingURL=./screen-large.css.map */