/*
  This Stylesheet is written in BEM and 7 in 1 structure
  Block = .block
  Element = .block__element
  Modifier = .block__element--modifier
 */
/*
   0 - 600px      Phone
   600 - 900px    Tablet portrait
   900 - 1300px   Tablet landscape
   1300 - 1800px  Normal
   1800 +         Big Desktop

  $breakpoint argument choices:
  - phone
  - tab-port
  - tab-land
  - big-desktop
  ORDER: Base + typography layout + grid > page layout > components
  1rem = 10px;
*/
@-webkit-keyframes moveInLeft {
  0% {
    -webkit-transform: translate3d(-10rem, 0, 0);
            transform: translate3d(-10rem, 0, 0);
    visibility: visible;
    opacity: 0; }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1; } }
@keyframes moveInLeft {
  0% {
    -webkit-transform: translate3d(-10rem, 0, 0);
            transform: translate3d(-10rem, 0, 0);
    visibility: visible;
    opacity: 0; }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1; } }

@-webkit-keyframes moveInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(10rem);
            transform: translateX(10rem); }
  80% {
    -webkit-transform: translateX(-1rem);
            transform: translateX(-1rem); }
  100% {
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0); } }

@keyframes moveInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(10rem);
            transform: translateX(10rem); }
  80% {
    -webkit-transform: translateX(-1rem);
            transform: translateX(-1rem); }
  100% {
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0); } }

@-webkit-keyframes moveInBottom {
  0% {
    -webkit-transform: translate3d(0, 30px, 0);
            transform: translate3d(0, 30px, 0);
    visibility: visible;
    opacity: 0; }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1; } }

@keyframes moveInBottom {
  0% {
    -webkit-transform: translate3d(0, 30px, 0);
            transform: translate3d(0, 30px, 0);
    visibility: visible;
    opacity: 0; }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1; } }

/* /////////// IMAGE ZOOM /////////// */
@-webkit-keyframes zoomInImage {
  from {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1); }
  to {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1); } }
@keyframes zoomInImage {
  from {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1); }
  to {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1); } }

@-webkit-keyframes zoomOutImage {
  from {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1); } }

@keyframes zoomOutImage {
  from {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1); } }

.animate {
  opacity: 0;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards; }

.move-in-bottom {
  -webkit-animation-name: moveInBottom;
          animation-name: moveInBottom; }

.move-in-left {
  -webkit-animation-name: moveInLeft;
          animation-name: moveInLeft; }

/*
   0 - 600px      Phone
   600 - 900px    Tablet portrait
   900 - 1300px   Tablet landscape
   1300 - 1800px  Normal
   1800 +         Big Desktop

  $breakpoint argument choices:
  - phone
  - tab-port
  - tab-land
  - big-desktop
  ORDER: Base + typography layout + grid > page layout > components
  1rem = 10px;
*/
*,
*::after,
*::before {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: inherit;
     -moz-box-sizing: inherit;
          box-sizing: inherit;
  /* Better practice */ }

* {
  min-height: 0;
  min-width: 0;
  outline: none; }

.overlay {
  background-color: black;
  opacity: 0; }

.hidden-scroll {
  height: 100%; }
  @media (max-width: 720px) {
    .hidden-scroll {
      overflow: hidden; } }

img {
  max-width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex; }

.position-bottom {
  position: absolute;
  bottom: 0; }

p {
  margin: 1.5rem 0; }

strong {
  font-size: 2.4rem; }

h3 {
  font-size: 3rem;
  font-weight: 300; }

h4 {
  font-size: 2.4rem;
  font-weight: normal; }

/*10px / 16px = 0.625 * 100 = 62.5% */
html {
  font-size: 62.5% !important;
  scroll-behavior: smooth; }
  @media (max-width: 460px) {
    html {
      font-size: 56.5% !important; } }
  @media (max-width: 360px) {
    html {
      font-size: 46.5% !important; } }

body {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box; }

/*
   0 - 600px      Phone
   600 - 900px    Tablet portrait
   900 - 1300px   Tablet landscape
   1300 - 1800px  Normal
   1800 +         Big Desktop

  $breakpoint argument choices:
  - phone
  - tab-port
  - tab-land
  - big-desktop
  ORDER: Base + typography layout + grid > page layout > components
  1rem = 10px;
*/
@font-face {
  font-family: 'AkrobatRegular';
  src: url("../sass/fonts/Akrobat-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'AkrobatBold';
  src: url("../sass/fonts/Akrobat-Bold.otf") format("opentype");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'AkrobatLight';
  src: url("../sass/fonts/Akrobat-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal; }

@font-face {
  font-family: 'AkrobatExtraLight';
  src: url("../sass/fonts/Akrobat-ExtraLight.otf") format("opentype");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Grotesk';
  src: url("../sass/fonts/hkgrotesk-regular-webfont.eot");
  src: url("../sass/fonts/hkgrotesk-regular-webfont.eot?#iefix") format("embedded-opentype"), url("../sass/fonts/hkgrotesk-regular-webfont.woff2") format("woff2"), url("../sass/hkgrotesk-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Grotesk';
  src: url("../sass/fonts/hkgrotesk-light-webfont.eot");
  src: url("../sass/fonts/hkgrotesk-light-webfont.eot?#iefix") format("embedded-opentype"), url("../sass/fonts/hkgrotesk-light-webfont.woff2") format("woff2"), url("../sass/fonts/hkgrotesk-light-webfont.woff") format("woff");
  font-weight: 300;
  font-style: normal; }

body {
  font-family: 'AkrobatRegular', sans-serif;
  font-size: 1.8rem;
  line-height: 1.4;
  overflow-x: hidden; }

p {
  font-size: 2rem;
  font-family: 'Grotesk', sans-serif; }

h1, h2, h3, h4 {
  line-height: 1.1; }

h1 {
  width: 100%;
  font-size: 4.8rem;
  font-weight: normal;
  color: #008080;
  word-break: break-word;
  font-family: 'AkrobatRegular', sans-serif; }

h2 {
  font-size: 6rem;
  font-family: 'AkrobatLight', sans-serif;
  font-weight: normal;
  color: #008080;
  position: relative; }
  @media (max-width: 720px) {
    h2 {
      font-size: 5rem; } }
  h2:before {
    position: absolute;
    content: "\2022";
    top: -45px;
    font-size: 7rem;
    left: -10px; }
    @media (max-width: 1200px) {
      h2:before {
        left: auto; } }
    @media (max-width: 1200px) {
      h2:before {
        display: none; } }

h3 {
  color: #009aa0;
  font-size: 3.6rem;
  font-weight: 300; }

a,
a:link,
a:visited {
  color: #333333;
  text-decoration: none;
  border-bottom: 1px solid transparent; }

main a,
main a:link,
main a:visited {
  color: #008080;
  -webkit-transition: all ease-in .3s;
  -o-transition: all ease-in .3s;
  transition: all ease-in .3s;
  border-bottom: 1px solid transparent; }
  main a:hover,
  main a:link:hover,
  main a:visited:hover {
    -webkit-transition: all ease-in .3s;
    -o-transition: all ease-in .3s;
    transition: all ease-in .3s;
    border-bottom: 1px solid #ffaa00; }

.u-font-normal {
  font-weight: normal; }

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

.u-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .u-center .button-svg {
    left: 50% !important;
    -webkit-transform: translate(-50%);
        -ms-transform: translate(-50%);
            transform: translate(-50%); }

.cf:before, .cf:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0; }

.u-center-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center !important; }

.u-right-text {
  text-align: right !important; }

.u-left-text {
  text-align: left !important; }

.u-margin-bottom-small {
  margin-bottom: 1.5rem !important; }

.u-margin-bottom-medium {
  margin-bottom: 4rem !important; }

.u-margin-bottom-big {
  margin-bottom: 8rem !important; }

.u-margin-bottom-huge {
  margin-bottom: 22.5rem !important; }

.u-margin-top-small {
  margin-top: 4rem !important; }

.u-margin-top-medium {
  margin-top: 9rem !important; }

.u-margin-top-big {
  margin-top: 17rem !important; }
  @media (max-width: 900px) {
    .u-margin-top-big {
      margin-top: 6rem !important; } }

.u-margin-top-huge {
  margin-top: 24rem !important; }

.u-margin-top-bottom {
  margin-top: 5rem !important;
  margin-bottom: 5rem !important; }

@media (max-width: 1380px) {
  .u-margin-top-none {
    margin-top: 0 !important; } }

.u-margin-medium {
  margin: 10rem !important; }
  @media (max-width: 1300px) {
    .u-margin-medium {
      margin-top: 4rem !important; } }

.u-flex {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -moz-box !important;
  display: -ms-flexbox !important;
  display: flex !important; }

.u-align-end {
  -webkit-box-align: end !important;
  -webkit-align-items: flex-end !important;
     -moz-box-align: end !important;
      -ms-flex-align: end !important;
          align-items: flex-end !important; }

.order-1 {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
     -moz-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin-right: 0;
  margin-left: 4rem; }

.u-padding-left-right-small {
  padding: 0 4rem !important; }
  @media (max-width: 460px) {
    .u-padding-left-right-small {
      padding: 0 3rem !important; } }

.u-padding-top-bottom-big {
  padding-top: 8rem !important;
  padding-bottom: 8rem !important; }
  @media (max-width: 460px) {
    .u-padding-top-bottom-big {
      padding-top: 7rem !important;
      padding-bottom: 7rem !important; } }

.u-padding-bottom-big {
  padding-bottom: 8rem !important; }

.u-padding-bottom-small {
  padding-bottom: 4rem !important; }

.u-padding-small {
  padding: 5rem !important; }

.u-padding-medium {
  padding: 10rem !important; }

.u-padding-big {
  padding: 15rem !important; }

.u-no-padding-top {
  padding-top: 0 !important; }

.right {
  float: right !important; }

.left {
  float: left !important; }

.u-text-right {
  margin-right: 0 !important;
  float: right !important; }

.cf::before,
.cf::after {
  content: '';
  display: block;
  clear: both; }

.u-hidden {
  overflow: hidden; }

.background-grey-light {
  background-color: #e8eaeb; }

.background-green {
  background-color: #008080; }
  .background-green *:not(a) {
    color: #fff; }
  .background-green a,
  .background-green a:link,
  .background-green a:visited {
    color: #fff;
    border-bottom: 1px solid #fff;
    -webkit-transition: all ease-in .3s;
    -o-transition: all ease-in .3s;
    transition: all ease-in .3s; }
    .background-green a:hover,
    .background-green a:link:hover,
    .background-green a:visited:hover {
      -webkit-transition: all ease-in .3s;
      -o-transition: all ease-in .3s;
      transition: all ease-in .3s;
      border-bottom: 1px solid transparent; }

.background-orange {
  background-color: #ffaa00; }
  .background-orange * {
    color: #fff; }
  .background-orange a,
  .background-orange a:link,
  .background-orange a:visited {
    color: #fff;
    border-bottom: 1px solid #fff;
    -webkit-transition: all ease-in .3s;
    -o-transition: all ease-in .3s;
    transition: all ease-in .3s; }
    .background-orange a:hover,
    .background-orange a:link:hover,
    .background-orange a:visited:hover {
      -webkit-transition: all ease-in .3s;
      -o-transition: all ease-in .3s;
      transition: all ease-in .3s;
      border-bottom: 1px solid transparent; }

.background-white {
  background-color: #fff; }

.background-grey {
  background-color: #4d4d4d; }

.background-grey-dark {
  background-color: #333333; }

.background-circle {
  position: relative;
  overflow: hidden; }
  .background-circle .image-container::before {
    content: '';
    position: absolute;
    z-index: 0;
    top: -175px;
    left: -195px;
    width: 500px;
    height: 100%;
    min-height: 50rem;
    background: url("/kipo_front/themes/kipo/images/background-circle.svg") no-repeat; }
    @media (max-width: 960px) {
      .background-circle .image-container::before {
        display: none; } }
  .background-circle .image-container img {
    position: relative; }
  .background-circle--right:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    max-height: 80%;
    top: 80px;
    left: auto;
    background-position: 180% !important;
    background: url("/kipo_front/themes/kipo/images/background-circle.svg") no-repeat; }

.u-col-2 {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
  -webkit-column-width: auto;
     -moz-column-width: auto;
          column-width: auto; }
  @media (max-width: 720px) {
    .u-col-2 {
      -webkit-column-count: 1;
         -moz-column-count: 1;
              column-count: 1; } }

.u-grid-1,
.u-grid-2,
.u-grid-3,
.u-grid-4,
.u-grid-6,
.u-grid-5,
.u-grid-8,
.u-grid-10,
.u-grid-12 {
  display: grid; }

.u-grid-1 {
  grid-template-columns: 1fr; }

.u-grid-2 {
  grid-template-columns: repeat(2, 1fr); }

.u-grid-3 {
  grid-template-columns: repeat(3, 1fr); }

.u-grid-4 {
  grid-template-columns: 1fr 1fr 1fr 1.5fr; }

.u-grid-5 {
  grid-template-columns: repeat(5, 1fr); }

.u-grid-6 {
  grid-template-columns: repeat(6, 1fr); }

.u-grid-8 {
  grid-template-columns: repeat(8, 1fr); }

.u-grid-10 {
  grid-template-columns: repeat(10, 1fr); }

.u-grid-12 {
  grid-template-columns: repeat(12, 1fr); }

/*
   0 - 600px      Phone
   600 - 900px    Tablet portrait
   900 - 1300px   Tablet landscape
   1300 - 1800px  Normal
   1800 +         Big Desktop

  $breakpoint argument choices:
  - phone
  - tab-port
  - tab-land
  - big-desktop
  ORDER: Base + typography layout + grid > page layout > components
  1rem = 10px;
*/
.row {
  max-width: 117rem;
  margin: 0 auto; }
  .row:not(:last-child) {
    margin-bottom: 4rem; }
  .row::after {
    content: '';
    display: table;
    clear: both;
    height: 0; }
  .row [class^="col-"] {
    float: left; }
    .row [class^="col-"]:not(:last-child) {
      margin-right: 4rem; }
  .row .col-1-of-2 {
    width: calc((100% - 4rem) / 2); }
  .row .col-1-of-3 {
    width: calc((100% - 2 * 4rem) / 3); }
  .row .col-2-of-3 {
    width: calc((2 * (100% - 2 * 4rem) / 3) + 4rem); }
  .row .col-1-of-4 {
    width: calc((100% - 3 * 4rem) / 4); }
  .row .col-2-of-4 {
    width: calc(2 * ((100% - 3 * 4rem) / 4) + 4rem); }
  .row .col-3-of-4 {
    width: calc(3 * ((100% - 3 * 4rem) / 4) + 2 * 4rem); }
  .row .col-1-of-6 {
    width: calc((100% - 5 * 4rem) / 6); }
  .row .col-4 {
    width: 33.3%;
    float: left; }

/*
   0 - 600px      Phone
   600 - 900px    Tablet portrait
   900 - 1300px   Tablet landscape
   1300 - 1800px  Normal
   1800 +         Big Desktop

  $breakpoint argument choices:
  - phone
  - tab-port
  - tab-land
  - big-desktop
  ORDER: Base + typography layout + grid > page layout > components
  1rem = 10px;
*/
.navigation {
  position: relative; }

.navigation-box {
  z-index: 3;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 10rem;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in; }
  .navigation-box__logo-box {
    width: 20rem;
    height: 40px;
    min-width: 100px;
    z-index: 999999999;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in; }
    @media (max-width: 640px) {
      .navigation-box__logo-box {
        width: 20rem;
        position: absolute;
        left: 50%;
        -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
                transform: translateX(-50%); } }
    @media (max-width: 360px) {
      .navigation-box__logo-box {
        height: 30px;
        left: 46%; } }
    .navigation-box__logo-box__logo {
      max-width: 100%;
      width: 100%;
      height: 100%; }
  .navigation-box__nav {
    width: 100%;
    padding: 0 0 0 8rem;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: auto; }
    @media (max-width: 720px) {
      .navigation-box__nav {
        padding: 0 0 0 5rem; } }
    @media (max-width: 640px) {
      .navigation-box__nav {
        width: auto;
        padding: 0; } }
  .navigation-box .lang-box {
    color: #008080;
    font-family: AkrobatBold,sans-serif;
    font-size: 1.6rem; }
    @media (max-width: 640px) {
      .navigation-box .lang-box {
        display: none;
        opacity: 0; } }
    .navigation-box .lang-box__active {
      color: inherit;
      -webkit-transition: all 0.3s ease-in;
      -o-transition: all 0.3s ease-in;
      transition: all 0.3s ease-in;
      border-bottom: 1px solid #ffaa00; }
    .navigation-box .lang-box:hover .lang-box__active {
      border-bottom: 1px solid transparent;
      -webkit-transition: all 0.3s ease-in;
      -o-transition: all 0.3s ease-in;
      transition: all 0.3s ease-in; }
  .navigation-box__list {
    display: inline-block;
    list-style-type: none;
    text-align: right;
    margin-left: 0;
    font-size: 1.8rem; }
    @media (max-width: 640px) {
      .navigation-box__list {
        display: none; } }
  .navigation-box__item {
    display: inline-block;
    text-transform: uppercase; }
    .navigation-box__item:not(:last-child) {
      margin-right: 6rem; }
  .navigation-box__link, .navigation-box:link, .navigation-box:visited {
    text-decoration: none;
    color: #ffaa00; }
  .navigation-box .users {
    min-width: 90rem;
    color: #333333;
    cursor: pointer;
    padding-right: 8rem;
    font-size: 2.1rem;
    font-weight: 300;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 10rem;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in; }
    @media (max-width: 1380px) {
      .navigation-box .users {
        min-width: 90rem; } }
    @media (max-width: 1140px) {
      .navigation-box .users {
        min-width: 45rem; } }
    @media (max-width: 1080px) {
      .navigation-box .users {
        padding-right: 2rem; } }
    @media (max-width: 640px) {
      .navigation-box .users {
        min-width: 60rem;
        padding-right: 0; } }
    .navigation-box .users span {
      margin-right: 1rem; }
    @media (max-width: 1140px) {
      .navigation-box .users .search-content {
        display: none; } }
    .navigation-box .users .search-content__input {
      width: 300px;
      height: 40px;
      padding-left: 20px;
      color: #999;
      font-size: 1.4rem;
      outline: none;
      border-radius: 30px;
      background: #fff;
      font-family: "AkrobatRegular", sans-serif; }
      @media (max-width: 860px) {
        .navigation-box .users .search-content__input {
          font-size: 1.8rem; } }
      .navigation-box .users .search-content__input:focus {
        color: #333333; }
        .navigation-box .users .search-content__input:focus ::-webkit-input-placeholder {
          /* Chrome/Opera/Safari */
          color: #999; }
        .navigation-box .users .search-content__input:focus ::-moz-placeholder {
          /* Firefox 19+ */
          color: #999; }
        .navigation-box .users .search-content__input:focus :-ms-input-placeholder {
          /* IE 10+ */
          color: #999; }
        .navigation-box .users .search-content__input:focus :-moz-placeholder {
          /* Firefox 18- */
          color: #999; }
    .navigation-box .users .search-content__icon {
      position: absolute;
      top: 8px;
      right: 8px; }
    .navigation-box .users .search-content__button {
      background: #008080;
      position: absolute;
      right: 0;
      top: 0;
      cursor: pointer;
      height: 40px;
      width: 40px;
      border-radius: 50%;
      -webkit-transition: all 0.3s ease-in;
      -o-transition: all 0.3s ease-in;
      transition: all 0.3s ease-in; }
      .navigation-box .users .search-content__button:hover {
        background: rgba(0, 128, 128, 0.7);
        -webkit-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in; }
  .navigation-box .profile {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media (max-width: 640px) {
      .navigation-box .profile span {
        display: none; } }
    @media (max-width: 640px) {
      .navigation-box .profile {
        position: absolute;
        left: 2rem; } }
  .navigation-box__menu {
    position: absolute;
    overflow: hidden;
    opacity: 0;
    z-index: -1;
    height: 0;
    -webkit-transition: opacity 0.3s ease-in;
    -o-transition: opacity 0.3s ease-in;
    transition: opacity 0.3s ease-in; }
  .navigation-box .burger-menu {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    min-width: 120px;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media (max-width: 640px) {
      .navigation-box .burger-menu {
        position: absolute;
        right: 30px;
        min-width: unset; } }
    .navigation-box .burger-menu__container {
      position: relative;
      z-index: 999999999;
      width: 30px;
      height: 2.1rem;
      left: 15px; }
      @media (max-width: 640px) {
        .navigation-box .burger-menu__container {
          left: 0; } }
    .navigation-box .burger-menu span {
      opacity: 1;
      margin-right: 1rem;
      -webkit-transition: opacity 0.3s ease-in;
      -o-transition: opacity 0.3s ease-in;
      transition: opacity 0.3s ease-in;
      text-transform: uppercase; }
      @media (max-width: 640px) {
        .navigation-box .burger-menu span {
          display: none; } }
    .navigation-box .burger-menu__top, .navigation-box .burger-menu__middle, .navigation-box .burger-menu__bottom {
      position: absolute;
      width: 100%;
      background-color: #333333;
      height: 2px;
      top: 0;
      -webkit-transition: all 0.3s ease-in;
      -o-transition: all 0.3s ease-in;
      transition: all 0.3s ease-in;
      -webkit-transform: rotateZ(0);
          -ms-transform: rotate(0);
              transform: rotateZ(0); }
    .navigation-box .burger-menu__middle {
      top: 9px;
      opacity: 1; }
    .navigation-box .burger-menu__bottom {
      top: 18px; }
  .navigation-box .mobile-nav {
    position: fixed;
    z-index: -1;
    background-color: #fff;
    width: 100%; }
    .navigation-box .mobile-nav a {
      text-decoration: none; }
    .navigation-box .mobile-nav:before, .navigation-box .mobile-nav:after {
      content: "";
      position: fixed;
      width: 100vw;
      height: 100vh;
      background: rgba(234, 234, 234, 0.2);
      z-index: -1;
      -webkit-transition: -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s;
      transition: -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s;
      -o-transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s;
      transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s;
      transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s, -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s;
      -webkit-transform: translateX(0%) translateY(-100%);
          -ms-transform: translateX(0%) translateY(-100%);
              transform: translateX(0%) translateY(-100%); }
    .navigation-box .mobile-nav:after {
      background: white;
      -webkit-transition-delay: 0s;
           -o-transition-delay: 0s;
              transition-delay: 0s; }
    .navigation-box .mobile-nav:before {
      -webkit-transition-delay: .1s;
           -o-transition-delay: .1s;
              transition-delay: .1s; }
    .navigation-box .mobile-nav-content {
      position: fixed;
      top: 50%;
      -webkit-transform: translate(0%, -50%);
          -ms-transform: translate(0%, -50%);
              transform: translate(0%, -50%);
      width: 100%;
      text-align: center;
      cursor: pointer; }
    .navigation-box .mobile-nav-item {
      position: relative;
      display: block;
      text-align: left;
      -webkit-transition-delay: 0.8s;
           -o-transition-delay: 0.8s;
              transition-delay: 0.8s;
      opacity: 0;
      -webkit-transform: translate(0%, 100%);
          -ms-transform: translate(0%, 100%);
              transform: translate(0%, 100%);
      -webkit-transition: opacity .2s ease, -webkit-transform .3s ease;
      transition: opacity .2s ease, -webkit-transform .3s ease;
      -o-transition: opacity .2s ease, transform .3s ease;
      transition: opacity .2s ease, transform .3s ease;
      transition: opacity .2s ease, transform .3s ease, -webkit-transform .3s ease;
      margin-right: 25px; }
      .navigation-box .mobile-nav-item .mobile-inner {
        width: 100%; }
  .navigation-box form {
    position: relative; }
  .navigation-box.open .burger-menu {
    z-index: 999999999999999; }
    .navigation-box.open .burger-menu .burger-menu__top {
      -webkit-transform: rotateZ(-45deg);
          -ms-transform: rotate(-45deg);
              transform: rotateZ(-45deg);
      -webkit-transition: all 0.3s ease-in;
      -o-transition: all 0.3s ease-in;
      transition: all 0.3s ease-in; }
    .navigation-box.open .burger-menu .burger-menu__middle {
      opacity: 0;
      -webkit-transition: all 0.3s ease-in;
      -o-transition: all 0.3s ease-in;
      transition: all 0.3s ease-in; }
    .navigation-box.open .burger-menu .burger-menu__bottom {
      -webkit-transform: rotateZ(45deg);
          -ms-transform: rotate(45deg);
              transform: rotateZ(45deg);
      top: 0;
      -webkit-transition: all 0.3s ease-in;
      -o-transition: all 0.3s ease-in;
      transition: all 0.3s ease-in; }
    .navigation-box.open .burger-menu .burger-menu__container {
      height: 30px;
      left: 15px;
      top: 14px; }
  .navigation-box.open + .main-content .socials {
    z-index: 0; }
  .navigation-box.open .mobile-nav {
    visibility: visible;
    z-index: 4; }
    .navigation-box.open .mobile-nav:before, .navigation-box.open .mobile-nav:after {
      -webkit-transform: translateX(0%) translateY(0%);
          -ms-transform: translateX(0%) translateY(0%);
              transform: translateX(0%) translateY(0%); }
    .navigation-box.open .mobile-nav:after {
      -webkit-transition-delay: .1s;
           -o-transition-delay: .1s;
              transition-delay: .1s; }
    .navigation-box.open .mobile-nav:before {
      -webkit-transition-delay: 0s;
           -o-transition-delay: 0s;
              transition-delay: 0s; }
    .navigation-box.open .mobile-nav-item {
      opacity: 1;
      -webkit-transform: translateX(0%);
          -ms-transform: translateX(0%);
              transform: translateX(0%);
      -webkit-transition: opacity .3s ease, color .3s ease, -webkit-transform .3s ease;
      transition: opacity .3s ease, color .3s ease, -webkit-transform .3s ease;
      -o-transition: opacity .3s ease, transform .3s ease, color .3s ease;
      transition: opacity .3s ease, transform .3s ease, color .3s ease;
      transition: opacity .3s ease, transform .3s ease, color .3s ease, -webkit-transform .3s ease; }
      .navigation-box.open .mobile-nav-item:nth-child(0) {
        -webkit-transition-delay: 0.5s;
             -o-transition-delay: 0.5s;
                transition-delay: 0.5s; }
      .navigation-box.open .mobile-nav-item:nth-child(1) {
        -webkit-transition-delay: 0.6s;
             -o-transition-delay: 0.6s;
                transition-delay: 0.6s; }
      .navigation-box.open .mobile-nav-item:nth-child(2) {
        -webkit-transition-delay: 0.7s;
             -o-transition-delay: 0.7s;
                transition-delay: 0.7s; }
      .navigation-box.open .mobile-nav-item:nth-child(3) {
        -webkit-transition-delay: 0.8s;
             -o-transition-delay: 0.8s;
                transition-delay: 0.8s; }
      .navigation-box.open .mobile-nav-item:nth-child(4) {
        -webkit-transition-delay: 0.9s;
             -o-transition-delay: 0.9s;
                transition-delay: 0.9s; }
      .navigation-box.open .mobile-nav-item:nth-child(5) {
        -webkit-transition-delay: 1s;
             -o-transition-delay: 1s;
                transition-delay: 1s; }
      .navigation-box.open .mobile-nav-item:nth-child(6) {
        -webkit-transition-delay: 1.1s;
             -o-transition-delay: 1.1s;
                transition-delay: 1.1s; }
      .navigation-box.open .mobile-nav-item:nth-child(7) {
        -webkit-transition-delay: 1.2s;
             -o-transition-delay: 1.2s;
                transition-delay: 1.2s; }
      .navigation-box.open .mobile-nav-item:nth-child(8) {
        -webkit-transition-delay: 1.3s;
             -o-transition-delay: 1.3s;
                transition-delay: 1.3s; }
      .navigation-box.open .mobile-nav-item:nth-child(9) {
        -webkit-transition-delay: 1.4s;
             -o-transition-delay: 1.4s;
                transition-delay: 1.4s; }
      .navigation-box.open .mobile-nav-item:nth-child(10) {
        -webkit-transition-delay: 1.5s;
             -o-transition-delay: 1.5s;
                transition-delay: 1.5s; }
      .navigation-box.open .mobile-nav-item:nth-child(11) {
        -webkit-transition-delay: 1.6s;
             -o-transition-delay: 1.6s;
                transition-delay: 1.6s; }
      .navigation-box.open .mobile-nav-item:nth-child(12) {
        -webkit-transition-delay: 1.7s;
             -o-transition-delay: 1.7s;
                transition-delay: 1.7s; }
      .navigation-box.open .mobile-nav-item:nth-child(13) {
        -webkit-transition-delay: 1.8s;
             -o-transition-delay: 1.8s;
                transition-delay: 1.8s; }
      .navigation-box.open .mobile-nav-item:nth-child(14) {
        -webkit-transition-delay: 1.9s;
             -o-transition-delay: 1.9s;
                transition-delay: 1.9s; }
      .navigation-box.open .mobile-nav-item:nth-child(15) {
        -webkit-transition-delay: 2s;
             -o-transition-delay: 2s;
                transition-delay: 2s; }
  .navigation-box.open .navigation-box__menu {
    position: fixed;
    height: 100vh;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 99999999;
    opacity: 1;
    background-color: #e8eaeb;
    overflow: hidden; }
  .navigation-box.open .navigation-box__cont {
    position: fixed;
    height: 100%; }
    @media (max-width: 1200px) {
      .navigation-box.open .navigation-box__cont {
        overflow: scroll !important;
        overflow-x: hidden !important; } }
    .navigation-box.open .navigation-box__cont .services {
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
         -moz-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      padding: 10rem 0 5rem;
      height: auto; }
      @media (max-width: 1200px) {
        .navigation-box.open .navigation-box__cont .services {
          height: 100%; } }
      @media (max-width: 960px) {
        .navigation-box.open .navigation-box__cont .services {
          height: unset; } }
      @media (max-width: 960px) {
        .navigation-box.open .navigation-box__cont .services > .row {
          margin: 100px 0 0; } }
      .navigation-box.open .navigation-box__cont .services h2 {
        color: #4d4d4d; }
        @media (max-width: 860px) {
          .navigation-box.open .navigation-box__cont .services h2 {
            font-size: 4rem; } }
      @media (max-width: 960px) {
        .navigation-box.open .navigation-box__cont .services__box {
          padding-right: 0; } }
      @media (max-width: 860px) {
        .navigation-box.open .navigation-box__cont .services__box h3 {
          font-size: 2.4rem; } }
  .navigation-box.open .service-content {
    grid-template-columns: repeat(2, 1fr); }
    @media (max-width: 960px) {
      .navigation-box.open .service-content {
        grid-template-columns: 1fr; } }
    @media (max-width: 860px) {
      .navigation-box.open .service-content {
        padding: 0 6rem 0 2rem; } }
  .navigation-box.open .services__item .services__box a {
    width: 80%;
    display: block; }
  @media (max-width: 960px) {
    .navigation-box.open .services__item {
      min-height: unset;
      background: none;
      -webkit-box-shadow: none;
              box-shadow: none; }
      .navigation-box.open .services__item ul {
        display: none;
        position: static; } }
    @media (max-width: 960px) and (max-width: 960px) {
      .navigation-box.open .services__item ul {
        padding-left: 0 !important;
        -webkit-box-shadow: none;
                box-shadow: none; } }
    @media (max-width: 960px) and (max-width: 860px) {
      .navigation-box.open .services__item ul li {
        max-width: unset;
        margin: 1.5rem 0;
        font-size: 2rem;
        padding-left: 60px; } }
  @media (max-width: 460px) {
    .navigation-box.open .services__item {
      text-align: left; } }
  .navigation-box.open .services__item .rotate svg {
    -webkit-transform: rotateZ(90deg);
        -ms-transform: rotate(90deg);
            transform: rotateZ(90deg); }

@media (min-width: 961px) and (max-width: 960px) {
  .navigation-box.open .services__item:hover {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1); } }

@media (min-width: 961px) and (max-width: 960px) {
  .navigation-box.open .services__item:hover ul {
    position: static;
    background-color: transparent; } }
  @media (max-width: 960px) {
    .navigation-box.open .services__item ul {
      padding-left: 35px;
      padding-bottom: 0; } }
  .navigation-box.open .drop-down {
    position: static;
    opacity: 1;
    z-index: 1;
    -webkit-transition: opacity .2s;
    -o-transition: opacity .2s;
    transition: opacity .2s; }
    .navigation-box.open .drop-down li:nth-child(0) {
      -webkit-transition-delay: 0.05s;
           -o-transition-delay: 0.05s;
              transition-delay: 0.05s;
      opacity: 1; }
    .navigation-box.open .drop-down li:nth-child(1) {
      -webkit-transition-delay: 0.45s;
           -o-transition-delay: 0.45s;
              transition-delay: 0.45s;
      opacity: 1; }
    .navigation-box.open .drop-down li:nth-child(2) {
      -webkit-transition-delay: 0.85s;
           -o-transition-delay: 0.85s;
              transition-delay: 0.85s;
      opacity: 1; }
    .navigation-box.open .drop-down li:nth-child(3) {
      -webkit-transition-delay: 1.25s;
           -o-transition-delay: 1.25s;
              transition-delay: 1.25s;
      opacity: 1; }
    .navigation-box.open .drop-down li:nth-child(4) {
      -webkit-transition-delay: 1.65s;
           -o-transition-delay: 1.65s;
              transition-delay: 1.65s;
      opacity: 1; }
    .navigation-box.open .drop-down li:nth-child(5) {
      -webkit-transition-delay: 2.05s;
           -o-transition-delay: 2.05s;
              transition-delay: 2.05s;
      opacity: 1; }
    .navigation-box.open .drop-down li:nth-child(6) {
      -webkit-transition-delay: 2.45s;
           -o-transition-delay: 2.45s;
              transition-delay: 2.45s;
      opacity: 1; }
    .navigation-box.open .drop-down li:nth-child(7) {
      -webkit-transition-delay: 2.85s;
           -o-transition-delay: 2.85s;
              transition-delay: 2.85s;
      opacity: 1; }
    .navigation-box.open .drop-down li:nth-child(8) {
      -webkit-transition-delay: 3.25s;
           -o-transition-delay: 3.25s;
              transition-delay: 3.25s;
      opacity: 1; }
    .navigation-box.open .drop-down li:nth-child(9) {
      -webkit-transition-delay: 3.65s;
           -o-transition-delay: 3.65s;
              transition-delay: 3.65s;
      opacity: 1; }
    .navigation-box.open .drop-down li:nth-child(10) {
      -webkit-transition-delay: 4.05s;
           -o-transition-delay: 4.05s;
              transition-delay: 4.05s;
      opacity: 1; }
    .navigation-box.open .drop-down li:nth-child(11) {
      -webkit-transition-delay: 4.45s;
           -o-transition-delay: 4.45s;
              transition-delay: 4.45s;
      opacity: 1; }
    .navigation-box.open .drop-down li:nth-child(12) {
      -webkit-transition-delay: 4.85s;
           -o-transition-delay: 4.85s;
              transition-delay: 4.85s;
      opacity: 1; }
    .navigation-box.open .drop-down li:nth-child(13) {
      -webkit-transition-delay: 5.25s;
           -o-transition-delay: 5.25s;
              transition-delay: 5.25s;
      opacity: 1; }
    .navigation-box.open .drop-down li:nth-child(14) {
      -webkit-transition-delay: 5.65s;
           -o-transition-delay: 5.65s;
              transition-delay: 5.65s;
      opacity: 1; }
    .navigation-box.open .drop-down li:nth-child(15) {
      -webkit-transition-delay: 6.05s;
           -o-transition-delay: 6.05s;
              transition-delay: 6.05s;
      opacity: 1; }
  @media (max-width: 960px) {
    .navigation-box.open .services__img {
      width: auto;
      min-width: unset; } }
  @media (max-width: 960px) {
    .navigation-box.open .services__img img:first-child {
      display: none; } }
  .navigation-box.open .services__img svg {
    display: none; }
    @media (max-width: 960px) {
      .navigation-box.open .services__img svg {
        position: absolute;
        display: block;
        width: 30px;
        height: 30px;
        right: -40px;
        top: 10px; } }
    @media (max-width: 960px) {
      .navigation-box.open .services__img svg {
        top: 0; } }
  .navigation-box.open .lang-box {
    display: none;
    opacity: 0;
    position: relative;
    z-index: 999999999; }
    @media (max-width: 640px) {
      .navigation-box.open .lang-box {
        display: block;
        position: absolute;
        opacity: 1;
        font-size: 2rem;
        left: auto;
        right: 80px; } }
    .navigation-box.open .lang-box.lang-fixed {
      position: fixed;
      right: 200px; }
      @media (max-width: 960px) {
        .navigation-box.open .lang-box.lang-fixed {
          position: static; } }
  .navigation-box.open .navigation-box__logo-box {
    left: 40px;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0); }
  .navigation-box.open .logo-box-fixed {
    position: fixed;
    width: 20rem; }
  @media (max-width: 1140px) {
    .navigation-box.open form {
      position: absolute;
      z-index: 999999999;
      top: 120px;
      right: 30px; }
      .navigation-box.open form .search-content {
        display: block; } }
  @media (max-width: 480px) {
    .navigation-box.open form {
      top: 110px; } }
  @media (max-width: 360px) {
    .navigation-box.open form {
      top: 90px; } }
  .navigation-box .fixed {
    position: fixed;
    right: 90px;
    width: 60px;
    min-width: unset;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    z-index: 999999999999; }
    @media (max-width: 1080px) {
      .navigation-box .fixed {
        right: 10px; } }
    @media (max-width: 640px) {
      .navigation-box .fixed .burger-menu__container {
        left: 15px; } }
    .navigation-box .fixed span {
      position: absolute;
      opacity: 0;
      visibility: hidden;
      -webkit-transition: opacity 0.3s ease-in;
      -o-transition: opacity 0.3s ease-in;
      transition: opacity 0.3s ease-in; }

.sub-menu {
  width: 100%;
  bottom: 0;
  z-index: 9; }
  @media (max-width: 960px) {
    .sub-menu {
      position: fixed;
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
         -moz-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      height: 100%;
      left: 70%; } }
  @media (max-width: 860px) {
    .sub-menu {
      position: static;
      width: 100%;
      margin-left: 70px;
      left: 0;
      height: auto;
      margin-top: 20px; } }
  @media (max-width: 640px) {
    .sub-menu {
      margin-top: 30px;
      margin-bottom: 100px; } }
  @media (max-width: 460px) {
    .sub-menu {
      margin-left: 50px; } }
  .sub-menu__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
    -webkit-justify-content: space-evenly;
       -moz-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    list-style-type: none; }
    @supports (-ms-ime-align: auto) {
      .sub-menu__list {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
           -moz-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center; } }
    @media (max-width: 960px) {
      .sub-menu__list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
           -moz-box-orient: vertical;
           -moz-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
           -moz-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center; } }
    @media (max-width: 640px) {
      .sub-menu__list {
        display: grid;
        grid-row-gap: 30px;
        grid-template-columns: 1fr; } }
  .sub-menu__item a {
    font-size: 3rem;
    color: #008080;
    text-transform: uppercase;
    font-family: 'AkrobatBold', sans-serif; }
    @media (max-width: 860px) {
      .sub-menu__item a {
        font-size: 2rem; } }
    @media (max-width: 640px) {
      .sub-menu__item a {
        font-size: 1.8rem; } }
  @supports (-ms-ime-align: auto) {
    .sub-menu__item {
      margin: auto; } }

.mCS-minimal-dark.mCSB_scrollTools_vertical .mCSB_dragger {
  height: 150px !important; }

/*
   0 - 600px      Phone
   600 - 900px    Tablet portrait
   900 - 1300px   Tablet landscape
   1300 - 1800px  Normal
   1800 +         Big Desktop

  $breakpoint argument choices:
  - phone
  - tab-port
  - tab-land
  - big-desktop
  ORDER: Base + typography layout + grid > page layout > components
  1rem = 10px;
*/
.header--absolute {
  background-color: #333333;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 90%; }

.header__logo-box {
  position: relative;
  width: 340px;
  height: 340px; }
  @media (max-width: 1300px) {
    .header__logo-box {
      margin: 0 auto; } }
  @media (max-width: 460px) {
    .header__logo-box {
      width: 50rem;
      height: auto; } }
  @media (max-width: 720px) {
    .header__logo-box > svg {
      display: none; } }

.header__logo {
  width: 100%; }

.header__logo-mobile {
  display: none; }
  @media (max-width: 720px) {
    .header__logo-mobile {
      display: block; } }

.socials {
  position: fixed;
  z-index: 9999999999999;
  left: 2rem;
  bottom: 45rem; }
  @media (max-width: 1080px) {
    .socials {
      left: 6px;
      top: auto; } }
  @media (max-width: 640px) {
    .socials {
      width: 100%;
      left: 0;
      bottom: 0;
      background: #fff; } }
  .socials ul {
    list-style: none;
    margin-left: 0;
    height: 0; }
    @media (max-width: 640px) {
      .socials ul {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
           -moz-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        height: auto;
        padding: 1rem; } }
    .socials ul li:not(:last-of-type) {
      margin-bottom: 1rem; }
      @media (max-width: 640px) {
        .socials ul li:not(:last-of-type) {
          margin-bottom: 0;
          margin-left: 1.2rem; } }
    .socials ul li:last-of-type {
      position: relative;
      top: 110px;
      -webkit-transform-origin: left top;
          -ms-transform-origin: left top;
              transform-origin: left top;
      -webkit-transform: rotate(-90deg) translateX(-100%);
          -ms-transform: rotate(-90deg) translateX(-100%);
              transform: rotate(-90deg) translateX(-100%);
      text-transform: uppercase; }
      @media (max-width: 640px) {
        .socials ul li:last-of-type {
          position: static;
          -webkit-transform: rotate(0deg) translateX(0);
              -ms-transform: rotate(0deg) translateX(0);
                  transform: rotate(0deg) translateX(0);
          margin-left: auto;
          margin-right: 1rem;
          line-height: 26px; } }
      .socials ul li:last-of-type:before {
        content: '';
        position: absolute;
        width: 100px;
        bottom: 10px;
        left: 115px;
        border-bottom: 1px solid #333333; }
        @media (max-width: 640px) {
          .socials ul li:last-of-type:before {
            content: none; } }
      .socials ul li:last-of-type a {
        color: inherit; }
  .socials img {
    width: 30px; }

/*
   0 - 600px      Phone
   600 - 900px    Tablet portrait
   900 - 1300px   Tablet landscape
   1300 - 1800px  Normal
   1800 +         Big Desktop

  $breakpoint argument choices:
  - phone
  - tab-port
  - tab-land
  - big-desktop
  ORDER: Base + typography layout + grid > page layout > components
  1rem = 10px;
*/
.footer {
  width: 100%;
  font-size: 1.8rem;
  padding: 4rem 0; }
  @media (max-width: 1600px) {
    .footer {
      padding: 4rem 10rem; } }
  @media (max-width: 1300px) {
    .footer {
      padding-left: 4rem;
      padding-right: 4rem; } }
  @media (max-width: 640px) {
    .footer {
      padding-left: 2rem;
      padding-right: 2rem;
      padding-bottom: 6rem; } }

.footer-body .u-grid-4 {
  grid-template-columns: 2fr 1fr 1fr .5fr; }
  @media (max-width: 860px) {
    .footer-body .u-grid-4 {
      grid-template-columns: 1fr;
      grid-row-gap: 3rem;
      margin-bottom: 0; } }
  .footer-body .u-grid-4 .xs-u-grid-2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
    -webkit-justify-content: space-evenly;
       -moz-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    /* Fix MS Edge bug: https://github.com/elementor/elementor/issues/8181 */ }
    @supports (-ms-ime-align: auto) {
      .footer-body .u-grid-4 .xs-u-grid-2 {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
           -moz-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center; }
        @supports (-ms-ime-align: auto) {
          .footer-body .u-grid-4 .xs-u-grid-2 ul {
            margin: auto; } } }
    @media (max-width: 860px) {
      .footer-body .u-grid-4 .xs-u-grid-2 {
        display: grid;
        grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 460px) {
    .footer-body .u-grid-4 {
      grid-template-columns: 1fr;
      grid-row-gap: 2rem; } }

.footer-body p {
  margin-right: 2rem;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.8rem;
  color: #fff;
  font-weight: 300;
  font-family: 'AkrobatRegular', sans-serif; }
  @media (max-width: 460px) {
    .footer-body p {
      font-size: 2rem; } }
  @media (max-width: 360px) {
    .footer-body p {
      font-size: 2.4rem; } }
  .footer-body p a {
    color: #fff; }
    @media (max-width: 360px) {
      .footer-body p a {
        font-size: 2rem; } }

@media (max-width: 640px) {
  .footer-body .footer-cont {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; } }

.footer-body__logo {
  line-height: 0;
  margin-right: auto;
  width: 20rem; }
  @media (max-width: 640px) {
    .footer-body__logo {
      margin-right: 0;
      margin-bottom: 0rem; } }

.footer-body ul {
  list-style: none;
  margin-left: 0; }
  @media (max-width: 860px) {
    .footer-body ul {
      -webkit-box-pack: center;
      -webkit-justify-content: center;
         -moz-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; } }
  .footer-body ul li:not(:last-of-type) {
    margin-right: 1rem; }
  .footer-body ul a {
    font-size: 1.8rem;
    color: #fff;
    text-transform: none;
    font-weight: 300; }
    @media (max-width: 640px) {
      .footer-body ul a {
        font-size: 1.5rem; } }
    @media (max-width: 460px) {
      .footer-body ul a {
        font-size: 2rem; } }
    @media (max-width: 360px) {
      .footer-body ul a {
        font-size: 2.4rem; } }

.footer-body a:hover {
  border-bottom: 1px solid; }

.footer-body__header {
  text-transform: uppercase; }
  .footer-body__header h2 {
    font-weight: normal;
    padding-bottom: 2rem; }

.footer-body__contacts p {
  font-size: 2.2rem; }
  @media (max-width: 860px) {
    .footer-body__contacts p {
      margin: 2rem 0; } }

.footer-body__contacts ul {
  margin-top: 2rem; }

@media (max-width: 860px) {
  .footer-body__contacts {
    text-align: center;
    margin: 0 auto; } }

.footer-body__contacts img {
  width: 30px; }

.footer-body__copyright {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  max-width: 140rem;
  margin: 0 auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 9rem; }
  @media (max-width: 860px) {
    .footer-body__copyright {
      grid-template-columns: 1fr;
      grid-row-gap: 3rem;
      margin-top: 2rem; } }
  @media (max-width: 640px) {
    .footer-body__copyright {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
         -moz-box-orient: vertical;
         -moz-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }
  .footer-body__copyright p {
    margin-right: auto;
    color: #a3a3a3;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    @media (max-width: 640px) {
      .footer-body__copyright p {
        font-size: 1.8rem;
        margin-right: 0; } }
    @media (max-width: 460px) {
      .footer-body__copyright p {
        font-size: 2rem; } }
    @media (max-width: 360px) {
      .footer-body__copyright p {
        font-size: 2.4rem; } }
    .footer-body__copyright p:last-of-type {
      margin-left: auto;
      margin-right: 0; }
    .footer-body__copyright p a {
      color: inherit; }
  .footer-body__copyright li {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 40px;
       -moz-box-flex: 0;
        -ms-flex: 0 0 40px;
            flex: 0 0 40px; }

.footer-body .newsletter h3 {
  margin-bottom: 3rem;
  font-weight: bold; }

.footer-body .newsletter label {
  position: relative; }

.footer-body .newsletter img {
  position: absolute;
  width: 30px;
  right: 10px;
  top: -1px;
  cursor: pointer; }

.footer-body .newsletter input {
  width: 300px;
  height: 40px;
  padding-left: 20px;
  color: #fff;
  font-size: 1.8rem;
  outline: none;
  border: 2px solid #008080;
  border-radius: 30px;
  background: transparent;
  font-family: "AkrobatRegular", sans-serif; }
  .footer-body .newsletter input ::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    font-family: "AkrobatRegular", sans-serif; }
  .footer-body .newsletter input ::-moz-placeholder {
    /* Firefox 19+ */
    font-family: "AkrobatRegular", sans-serif; }
  .footer-body .newsletter input :-ms-input-placeholder {
    /* IE 10+ */
    font-family: "AkrobatRegular", sans-serif; }
  .footer-body .newsletter input :-moz-placeholder {
    /* Firefox 18- */
    font-family: "AkrobatRegular", sans-serif; }

@media (max-width: 1300px) {
  .footer-body .row [class^="col-"] {
    width: calc((100% - 4rem) / 2) !important; } }

.section-features {
  padding: 10rem; }
  @media (max-width: 1140px) {
    .section-features {
      padding: 10rem 5rem; } }
  @media (max-width: 460px) {
    .section-features {
      padding: 3rem; } }

.offices {
  padding: 6rem 0 6rem 0; }
  .offices header {
    margin-bottom: 1.5rem; }
  @media (max-width: 1200px) {
    .offices {
      padding: 6rem; } }
  @media (max-width: 640px) {
    .offices {
      padding: 3rem; } }
  .offices__content {
    grid-column-gap: 10rem;
    grid-row-gap: 3rem; }
    @media (max-width: 960px) {
      .offices__content {
        grid-column-gap: 5rem; } }
    @media (max-width: 640px) {
      .offices__content {
        grid-template-columns: 1fr; } }
  @media (max-width: 1080px) {
    .offices .list-box ul li {
      font-size: 1.8rem; } }

.intro {
  padding: 6rem 0; }
  .intro header a,
  .intro header a:link,
  .intro header a:visited {
    color: #008080;
    border-bottom: 1px solid #008080; }
  .intro__content {
    max-width: 117rem;
    margin: 0 auto; }
    @media (max-width: 1200px) {
      .intro__content {
        padding: 0 5rem; } }
    @media (max-width: 640px) {
      .intro__content {
        padding: 0 2rem;
        margin-top: 0; } }
    @media (max-width: 960px) {
      .intro__content h1 {
        width: 100%; } }
    @media (max-width: 640px) {
      .intro__content h1 {
        font-size: 4rem; } }
    .intro__content h3 {
      width: 60%;
      font-size: 4.8rem;
      font-weight: normal;
      line-height: 1.1; }
    .intro__content h4 {
      width: 50%;
      font-size: 2.4rem;
      font-weight: normal;
      color: #4d4d4d; }
      @media (max-width: 960px) {
        .intro__content h4 {
          width: 100%; } }
  .intro__description {
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 4rem; }
    @media (max-width: 960px) {
      .intro__description {
        grid-template-columns: 1fr; } }
    .intro__description header {
      grid-template-columns: repeat(2, 1fr); }
      @media (max-width: 1300px) {
        .intro__description header #anim {
          max-width: 63rem; } }
      @media (max-width: 1200px) {
        .intro__description header #anim {
          max-width: 50rem; } }
      @media (max-width: 1080px) {
        .intro__description header #anim {
          height: 100%;
          position: relative;
          top: unset; } }
      @media (max-width: 960px) {
        .intro__description header #anim {
          display: none; } }
      .intro__description header img, .intro__description header svg {
        position: absolute;
        top: 16rem;
        right: 0;
        max-width: 80rem;
        height: auto !important; }
        @media (min-width: 1600px) {
          .intro__description header img, .intro__description header svg {
            right: 5%; } }
        @media (max-width: 1300px) {
          .intro__description header img, .intro__description header svg {
            max-width: 63rem; } }
        @media (max-width: 1080px) {
          .intro__description header img, .intro__description header svg {
            top: 50%;
            -webkit-transform: translate3d(0px, -50%, 0px) !important;
                    transform: translate3d(0px, -50%, 0px) !important; } }
        @media (max-width: 960px) {
          .intro__description header img, .intro__description header svg {
            display: none; } }
      .intro__description header p {
        color: #666666; }

.heading-50 h1 {
  width: 60%; }
  @media (max-width: 960px) {
    .heading-50 h1 {
      width: 100%; } }

.into.background-green a,
.into.background-green a:link,
.into.background-green a:visited,
.into.background-orange a,
.into.background-orange a:link,
.into.background-orange a:visited {
  color: #fff;
  border-bottom: 1px solid #fff; }

.article-news {
  padding-bottom: 0; }
  .article-news p {
    font-size: 2.4rem; }
  .article-news h1 {
    width: 100%; }

.section-video {
  padding: 6rem 0; }
  .section-video h2 {
    padding-bottom: 2rem; }
  .section-video .youtube-container {
    overflow: hidden;
    position: relative;
    padding-bottom: 42.25%;
    height: 0; }
    .section-video .youtube-container iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }

.services {
  position: relative;
  z-index: 1;
  padding: 8rem 0 8rem; }
  @media (max-width: 640px) {
    .services {
      padding: 8rem 0 10rem; } }
  @media (max-width: 460px) {
    .services {
      padding: 2rem 0 4rem; } }
  .services h2 {
    color: #fff;
    margin-bottom: 2rem; }
    @media (max-width: 1200px) {
      .services h2 {
        padding: 0 4rem; } }
    @media (max-width: 460px) {
      .services h2 {
        padding: 0 2rem; } }
  .services h3 {
    color: #333333 !important;
    font-size: 3rem; }
    @media (max-width: 720px) {
      .services h3 {
        font-size: 2.3rem; } }
  .services .service-content {
    grid-gap: 2rem; }
    @media (max-width: 1200px) {
      .services .service-content {
        padding: 0 3rem; } }
    @media (max-width: 960px) {
      .services .service-content {
        grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 720px) {
      .services .service-content {
        padding: 0 5rem; } }
    @media (max-width: 640px) {
      .services .service-content {
        padding: 0 2rem; } }
  .services__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    cursor: pointer;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: space-evenly;
    -webkit-justify-content: space-evenly;
       -moz-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    height: auto;
    min-height: 150px;
    background: #fff;
    -webkit-box-shadow: 10px 10px 25px -5px rgba(0, 0, 0, 0.06);
            box-shadow: 10px 10px 25px -5px rgba(0, 0, 0, 0.06);
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out; }
    @media (max-width: 460px) {
      .services__item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
           -moz-box-orient: vertical;
           -moz-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        text-align: center; } }
    @media (max-width: 380px) {
      .services__item {
        min-height: 20rem; } }
    .services__item ul {
      font-size: 2.4rem;
      font-weight: 300;
      position: absolute;
      width: 100%;
      padding-bottom: 2rem;
      left: 0;
      opacity: 0;
      z-index: -1;
      overflow: hidden;
      list-style: none;
      -webkit-box-shadow: 10px 10px 25px -5px rgba(0, 0, 0, 0.06);
              box-shadow: 10px 10px 25px -5px rgba(0, 0, 0, 0.06); }
      @media (max-width: 460px) {
        .services__item ul {
          -webkit-transform: scale(1);
              -ms-transform: scale(1);
                  transform: scale(1); } }
      .services__item ul li {
        word-wrap: break-word;
        padding-left: 120px;
        -webkit-transition: all 0.2s ease-in;
        -o-transition: all 0.2s ease-in;
        transition: all 0.2s ease-in;
        opacity: 0; }
        @media (max-width: 960px) {
          .services__item ul li {
            display: none; } }
        .services__item ul li a {
          color: #333333 !important; }
        .services__item ul li:hover a {
          color: #008080 !important;
          -webkit-transition: all 0.2s ease-in;
          -o-transition: all 0.2s ease-in;
          transition: all 0.2s ease-in;
          text-decoration: underline;
          border-bottom: 1px solid transparent; }
      .services__item ul.drop-down li {
        display: block; }
    @media (min-width: 961px) {
      .services__item:hover {
        -webkit-transform: scale3d(1.04, 1.04, 1.04);
                transform: scale3d(1.04, 1.04, 1.04);
        z-index: 999999; } }
  @media (min-width: 961px) and (max-width: 460px) {
    .services__item:hover {
      -webkit-transform: scale(1);
          -ms-transform: scale(1);
              transform: scale(1); } }
    @media (min-width: 961px) {
        .services__item:hover ul {
          position: absolute;
          margin-top: 10px;
          left: 0;
          opacity: 1;
          overflow: visible;
          list-style: none;
          background: #fff; }
          .services__item:hover ul li:nth-child(0) {
            -webkit-transition-delay: 0.05s;
                 -o-transition-delay: 0.05s;
                    transition-delay: 0.05s;
            opacity: 1; }
          .services__item:hover ul li:nth-child(1) {
            -webkit-transition-delay: 0.15s;
                 -o-transition-delay: 0.15s;
                    transition-delay: 0.15s;
            opacity: 1; }
          .services__item:hover ul li:nth-child(2) {
            -webkit-transition-delay: 0.25s;
                 -o-transition-delay: 0.25s;
                    transition-delay: 0.25s;
            opacity: 1; }
          .services__item:hover ul li:nth-child(3) {
            -webkit-transition-delay: 0.35s;
                 -o-transition-delay: 0.35s;
                    transition-delay: 0.35s;
            opacity: 1; }
          .services__item:hover ul li:nth-child(4) {
            -webkit-transition-delay: 0.45s;
                 -o-transition-delay: 0.45s;
                    transition-delay: 0.45s;
            opacity: 1; }
          .services__item:hover ul li:nth-child(5) {
            -webkit-transition-delay: 0.55s;
                 -o-transition-delay: 0.55s;
                    transition-delay: 0.55s;
            opacity: 1; }
          .services__item:hover ul li:nth-child(6) {
            -webkit-transition-delay: 0.65s;
                 -o-transition-delay: 0.65s;
                    transition-delay: 0.65s;
            opacity: 1; }
          .services__item:hover ul li:nth-child(7) {
            -webkit-transition-delay: 0.75s;
                 -o-transition-delay: 0.75s;
                    transition-delay: 0.75s;
            opacity: 1; }
          .services__item:hover ul li:nth-child(8) {
            -webkit-transition-delay: 0.85s;
                 -o-transition-delay: 0.85s;
                    transition-delay: 0.85s;
            opacity: 1; }
          .services__item:hover ul li:nth-child(9) {
            -webkit-transition-delay: 0.95s;
                 -o-transition-delay: 0.95s;
                    transition-delay: 0.95s;
            opacity: 1; }
          .services__item:hover ul li:nth-child(10) {
            -webkit-transition-delay: 1.05s;
                 -o-transition-delay: 1.05s;
                    transition-delay: 1.05s;
            opacity: 1; }
          .services__item:hover ul li:nth-child(11) {
            -webkit-transition-delay: 1.15s;
                 -o-transition-delay: 1.15s;
                    transition-delay: 1.15s;
            opacity: 1; }
          .services__item:hover ul li:nth-child(12) {
            -webkit-transition-delay: 1.25s;
                 -o-transition-delay: 1.25s;
                    transition-delay: 1.25s;
            opacity: 1; } }
    .services__item img {
      position: relative;
      z-index: 2;
      width: 100%; }
  .services__img {
    min-width: 90px;
    margin-right: 10px;
    margin-left: 10px; }
    .services__img a {
      display: block; }
      .services__img a:hover {
        border-bottom: 1px solid transparent !important; }
    @media (max-width: 720px) {
      .services__img {
        min-width: 90px;
        margin-right: 10px; } }
    @media (max-width: 380px) {
      .services__img {
        width: 60px;
        min-width: 40px; } }
  .services__box {
    word-wrap: break-word;
    width: 120%;
    font-size: 3rem; }
    .services__box h3 a {
      color: #333333 !important;
      width: 95%;
      display: block; }
      .services__box h3 a:hover {
        border-bottom: 1px solid transparent !important; }
    @media (max-width: 1080px) {
      .services__box {
        width: calc(100% - 6rem); } }

/* SIBLING FADE: fade out siblings around a hovered item */
.service-content:hover .services__item {
  opacity: 0.5; }

.service-content .services__item:hover {
  opacity: 1; }

.brands {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  padding: 4rem 0; }
  @media (max-width: 480px) {
    .brands {
      padding: 3rem 0; } }
  .brands__content {
    grid-template-columns: repeat(5, 1fr);
    display: grid;
    grid-row-gap: 2rem; }
    @media (max-width: 720px) {
      .brands__content {
        display: grid;
        grid-template-columns: repeat(3, 1fr); } }
    @media (max-width: 480px) {
      .brands__content {
        grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 380px) {
      .brands__content {
        grid-row-gap: 1rem;
        grid-column-gap: 30px;
        margin: 30px 0;
        grid-template-columns: 1fr 1fr;
        grid-template-areas: "col-1 col-2" "col-3 col-4" "col-5 col-5"; } }
    .brands__content a {
      width: 100%; }
      @media (max-width: 380px) {
        .brands__content a:nth-of-type(1) {
          grid-area: col-2; }
        .brands__content a:nth-of-type(2) {
          grid-area: col-3; }
        .brands__content a:nth-of-type(3) {
          grid-area: col-4; }
        .brands__content a:nth-of-type(4) {
          grid-area: col-5; } }
      .brands__content a:hover {
        border-bottom: 1px solid transparent !important;
        -webkit-transform: scale(1.2);
            -ms-transform: scale(1.2);
                transform: scale(1.2); }
    .brands__content img {
      width: 100%; }

.partners {
  margin-bottom: 5rem !important; }
  @media (max-width: 460px) {
    .partners {
      margin-bottom: 5rem !important; } }
  .partners .u-grid-2,
  .partners .u-grid-3,
  .partners .u-grid-4,
  .partners .u-grid-5,
  .partners .u-grid-6,
  .partners .u-grid-8,
  .partners .u-grid-10 {
    grid-row-gap: 4rem; }
  @media (max-width: 960px) {
    .partners .u-grid-5 {
      grid-template-columns: repeat(4, 1fr); } }
  @media (max-width: 720px) {
    .partners .u-grid-5 {
      grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 540px) {
    .partners .u-grid-5 {
      grid-template-columns: repeat(2, 1fr); } }
  .partners__content {
    position: relative;
    max-width: 103rem;
    padding: 5rem;
    margin-top: -100px;
    margin-left: auto;
    margin-right: auto; }
    @media (max-width: 1080px) {
      .partners__content {
        max-width: calc(100% - 10rem); } }
    @media (max-width: 640px) {
      .partners__content {
        padding: 2rem;
        max-width: calc(100% - 4rem); } }
    @media (max-width: 460px) {
      .partners__content {
        margin-top: 5rem; } }
    .partners__content h2 {
      margin-bottom: 5rem; }
  .partners__images {
    grid-gap: 3rem;
    margin-bottom: 8rem; }
    @media (max-width: 860px) {
      .partners__images {
        grid-template-columns: repeat(2, 1fr); } }
    .partners__images img {
      margin: 0 auto; }
      @media (max-width: 720px) {
        .partners__images img {
          width: auto; } }
  .partners img {
    margin: 0 auto; }

#news-wrapper {
  grid-row-gap: 4rem; }
  #news-wrapper a {
    border-bottom: 1px solid transparent; }
    #news-wrapper a:hover {
      border-bottom: 1px solid transparent; }

.news {
  padding: 5rem; }
  @media (max-width: 640px) {
    .news {
      padding: 2rem; } }
  .news__content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 3rem; }
    @media (max-width: 960px) {
      .news__content {
        grid-template-columns: 1fr; } }
  .news__description {
    width: 80%; }
    @media (max-width: 460px) {
      .news__description {
        width: 100%; } }
    @media (max-width: 960px) {
      .news__description header {
        margin-top: 3rem; } }
    .news__description p {
      font-weight: 300; }

.news.background-green h2,
.news.background-orange h2 {
  color: #fff; }
  .news.background-green h2:before,
  .news.background-orange h2:before {
    color: #fff; }

.news.background-green h3,
.news.background-orange h3 {
  color: #fff; }

.news.background-green p,
.news.background-orange p {
  color: #fff; }

.section-article .article {
  max-width: 80rem;
  margin: 0 auto; }
  .section-article .article__header {
    font-size: 20px; }
  .section-article .article__background {
    background-size: cover;
    height: 35rem;
    border-radius: 10px; }
  .section-article .article__body {
    font-size: 1.8rem; }

.article__container {
  padding: 0 6rem; }
  @media (max-width: 640px) {
    .article__container {
      padding: 0 2rem; } }
  .article__container p, .article__container ul {
    color: #666666; }
  .article__container ul {
    font-size: 2rem;
    font-family: "Grotesk", sans-serif;
    margin-left: 6rem; }

.article__content {
  margin-bottom: 60px; }

@media (max-width: 640px) {
  .article .breadcrumbs {
    width: 100%; } }

.article .breadcrumbs__content {
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.article .ug-tiles-wrapper {
  margin-bottom: 0; }

.article .article-gallery {
  min-width: 600px !important;
  margin: 15px 0 15px 15px;
  float: right;
  opacity: 0;
  -webkit-transition: opacity 2s ease-in;
  -o-transition: opacity 2s ease-in;
  transition: opacity 2s ease-in; }
  @media (max-width: 960px) {
    .article .article-gallery {
      float: none;
      margin: 2rem 0; } }
  @media (max-width: 720px) {
    .article .article-gallery {
      min-width: unset !important; } }

.none {
  display: none !important; }

.ug-thumb-wrapper:last-of-type {
  position: relative;
  font-family: 'Grotesk', sans-serif;
  font-weight: 300; }
  .ug-thumb-wrapper:last-of-type:before {
    content: attr(data-remaining-img);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    font-size: 40px;
    color: #fff;
    text-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height: 100%;
    z-index: 999999; }

.article-gallery.blur-image.ug-gallery-wrapper.ug-theme-tiles .ug-thumb-wrapper:last-of-type:before {
  background: rgba(0, 0, 0, 0.4); }

.main-slider {
  overflow-x: hidden;
  background-position: 100% bottom; }
  @media (max-width: 1200px) {
    .main-slider {
      margin-top: 2rem; } }
  @media (max-width: 1080px) {
    .main-slider {
      overflow-x: visible; } }
  .main-slider .slick-slider {
    margin-bottom: 0; }
  .main-slider__content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    max-height: 680px;
    overflow: hidden; }
    @media (max-width: 1080px) {
      .main-slider__content {
        position: relative;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
           -moz-box-orient: vertical;
           -moz-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        max-height: none;
        max-width: 100%;
        margin: 0 5rem;
        overflow: visible; } }
    @media (max-width: 640px) {
      .main-slider__content {
        margin: 0; } }
    @media (max-width: 480px) {
      .main-slider__content {
        max-height: 600px; } }
    @media (max-width: 360px) {
      .main-slider__content {
        max-height: 560px; } }
    .main-slider__content h3 {
      font-size: 2.4rem;
      font-weight: normal;
      text-transform: uppercase;
      color: rgba(51, 51, 51, 0.25);
      max-width: 80%; }
      @media (max-width: 1080px) {
        .main-slider__content h3 {
          color: #333333; } }
      @media (max-width: 460px) {
        .main-slider__content h3 {
          font-size: 3.4rem; } }
    .main-slider__content p {
      font-size: 1.8rem;
      margin: 0;
      color: rgba(51, 51, 51, 0.25); }
      @media (max-width: 1080px) {
        .main-slider__content p {
          color: #333333;
          width: 90%; } }
      @media (max-width: 360px) {
        .main-slider__content p {
          font-size: 2rem; } }
    .main-slider__content .slider-for {
      -webkit-box-flex: 0;
      -webkit-flex: 0 0 680px;
         -moz-box-flex: 0;
          -ms-flex: 0 0 680px;
              flex: 0 0 680px; }
      @media (max-width: 1080px) {
        .main-slider__content .slider-for .slick-slide {
          background-position: center center; } }
      @media (max-width: 480px) {
        .main-slider__content .slider-for .slick-slide {
          height: 380px !important; } }
      @media (max-width: 1200px) {
        .main-slider__content .slider-for {
          -webkit-box-flex: 0;
          -webkit-flex: 0 0 480px;
             -moz-box-flex: 0;
              -ms-flex: 0 0 480px;
                  flex: 0 0 480px; } }
      @media (max-width: 1080px) {
        .main-slider__content .slider-for {
          max-width: 100%;
          left: 0;
          -webkit-box-flex: 0;
          -webkit-flex: 0 0 100%;
             -moz-box-flex: 0;
              -ms-flex: 0 0 100%;
                  flex: 0 0 100%; } }
      .main-slider__content .slider-for--right {
        -webkit-box-flex: 0;
        -webkit-flex: 0 1 100%;
           -moz-box-flex: 0;
            -ms-flex: 0 1 100%;
                flex: 0 1 100%;
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
           -moz-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2; }
        @media (max-width: 380px) {
          .main-slider__content .slider-for--right {
            -webkit-box-ordinal-group: 1 !important;
            -webkit-order: 0 !important;
               -moz-box-ordinal-group: 1 !important;
                -ms-flex-order: 0 !important;
                    order: 0 !important; } }
        .main-slider__content .slider-for--right .slick-slide {
          right: 0 !important; }
    .main-slider__content .slider-nav {
      max-width: 50%;
      left: -90px; }
      @media (max-width: 1200px) {
        .main-slider__content .slider-nav {
          max-width: 100%; } }
      @media (max-width: 1080px) {
        .main-slider__content .slider-nav {
          position: absolute;
          width: 90%;
          bottom: -4rem;
          left: 50%;
          -webkit-transform: translateX(-50%);
              -ms-transform: translateX(-50%);
                  transform: translateX(-50%); } }
      @media (max-width: 720px) {
        .main-slider__content .slider-nav {
          bottom: 0; } }
      @media (max-width: 480px) {
        .main-slider__content .slider-nav {
          position: relative;
          width: 100%;
          bottom: 100px;
          left: 0;
          -webkit-transform: translateX(0);
              -ms-transform: translateX(0);
                  transform: translateX(0); } }
      .main-slider__content .slider-nav__content {
        padding: 2rem 0 2rem 10rem;
        background: #fff; }
      .main-slider__content .slider-nav__item {
        position: relative;
        max-width: 100%;
        padding-bottom: 2rem;
        border-bottom: 1px solid transparent; }
        .main-slider__content .slider-nav__item:hover {
          border-bottom: 1px solid transparent; }
      .main-slider__content .slider-nav .active-slide:after {
        content: "";
        display: block;
        width: 0;
        height: 0;
        border-top: 12px solid transparent;
        border-bottom: 12px solid transparent;
        border-right: 12px solid #fff;
        border-left: transparent;
        position: absolute;
        top: 30px;
        left: -113px; }
      .main-slider__content .slider-nav .active-slide:before {
        content: "";
        display: block;
        position: absolute;
        top: -6px;
        left: -40px;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background-color: rgba(0, 128, 128, 0.2);
        z-index: -1; }
        @media (max-width: 1200px) {
          .main-slider__content .slider-nav .active-slide:before {
            top: -18px; } }
      .main-slider__content .slider-nav .active-slide h3 {
        color: #008080; }
      .main-slider__content .slider-nav .active-slide p {
        color: rgba(51, 51, 51, 0.8); }
      .main-slider__content .slider-nav .slick-list {
        height: auto !important;
        top: 50%;
        -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
                transform: translateY(-50%);
        padding: 4rem 10rem;
        background: #fff;
        overflow-y: auto;
        max-height: 650px;
        -webkit-box-shadow: 10px 10px 25px -5px rgba(0, 0, 0, 0.06);
                box-shadow: 10px 10px 25px -5px rgba(0, 0, 0, 0.06); }
        @media (max-width: 1080px) {
          .main-slider__content .slider-nav .slick-list {
            padding: 4rem 0 4rem 4rem; } }
        @media (max-width: 480px) {
          .main-slider__content .slider-nav .slick-list {
            -webkit-transform: translateY(0);
                -ms-transform: translateY(0);
                    transform: translateY(0);
            padding-bottom: 0; } }
        @media (max-width: 460px) {
          .main-slider__content .slider-nav .slick-list {
            padding: 4rem 0 0 2rem; } }
        @media (max-width: 380px) {
          .main-slider__content .slider-nav .slick-list {
            padding: 2rem 0 2rem 2rem; } }
        .main-slider__content .slider-nav .slick-list .slick-track {
          height: auto !important; }
      .main-slider__content .slider-nav--left {
        left: 70px;
        z-index: 9; }
        @media (max-width: 860px) {
          .main-slider__content .slider-nav--left {
            left: 50%; } }
        .main-slider__content .slider-nav--left .active-slide:after {
          border-top: 12px solid transparent;
          border-bottom: 12px solid transparent;
          border-right: transparent;
          border-left: 12px solid #fff;
          left: auto;
          right: -110px; }
    .main-slider__content .slick-prev,
    .main-slider__content .slick-next {
      position: absolute;
      bottom: 340px;
      z-index: 9;
      cursor: pointer; }
      @media (max-width: 480px) {
        .main-slider__content .slick-prev,
        .main-slider__content .slick-next {
          bottom: 240px; } }
    .main-slider__content .slick-next {
      right: 0; }
  .main-slider__buttons {
    margin-top: 4rem; }
    .main-slider__buttons a {
      text-transform: uppercase; }
  .main-slider .slick-list {
    overflow: visible; }
    @media (max-width: 1200px) {
      .main-slider .slick-list {
        overflow: hidden; } }
    @media (max-width: 480px) {
      .main-slider .slick-list {
        height: 480px; } }

.slick-dots {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  bottom: 140px;
  z-index: 2;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%; }
  @media (max-width: 860px) {
    .slick-dots {
      bottom: 2rem; } }
  @media (max-width: 460px) {
    .slick-dots {
      bottom: 3rem; } }
  .slick-dots li {
    display: inline-block;
    background-color: transparent;
    border: 1px solid #fff;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    padding: 0;
    cursor: pointer;
    margin-right: .5rem; }
    .slick-dots li.slick-active {
      background-color: #fff; }
    .slick-dots li button {
      display: none; }
      .slick-dots li button:before {
        content: ''; }

.horizontal-gallery,
.vertical-gallery {
  padding: 6rem; }
  @media (max-width: 640px) {
    .horizontal-gallery,
    .vertical-gallery {
      padding: 3rem; } }
  .horizontal-gallery header,
  .vertical-gallery header {
    padding-bottom: 3rem; }
    .horizontal-gallery header h3,
    .vertical-gallery header h3 {
      color: #333333;
      font-size: 3rem; }
      @media (max-width: 860px) {
        .horizontal-gallery header h3,
        .vertical-gallery header h3 {
          width: 80%; } }
      @media (max-width: 720px) {
        .horizontal-gallery header h3,
        .vertical-gallery header h3 {
          width: 100%; } }

.ug-tiles-wrapper {
  margin-bottom: 5rem; }

.horizontal-gallery.background-green .ug-tiles-wrapper,
.horizontal-gallery.background-orange .ug-tiles-wrapper {
  margin-bottom: 0; }

.horizontal-gallery.background-green h2,
.horizontal-gallery.background-orange h2 {
  color: #fff; }

#horizontal-gallery {
  margin: 0 auto; }

.timeline {
  position: relative;
  max-width: 130rem; }
  @media (max-width: 960px) {
    .timeline {
      margin: 0; } }
  .timeline__list, .timeline .slick-dots {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
    width: 100%;
    padding: 0;
    text-align: center;
    list-style: none; }
  .timeline li {
    position: relative;
    border: none; }
    .timeline li:after {
      content: attr(data-years);
      position: absolute;
      top: -40px;
      left: -10px;
      font-size: 3.6rem;
      color: #008080; }
    .timeline li.slick-active {
      background-color: transparent; }
    .timeline li.slick-current {
      font-size: 6rem; }
      @media (max-width: 480px) {
        .timeline li.slick-current {
          font-size: 4rem; } }
      .timeline li.slick-current:before {
        color: #000;
        background-color: #333333; }
      .timeline li.slick-current:after {
        color: initial;
        font-size: 5rem;
        top: -60px; }
        @media (max-width: 480px) {
          .timeline li.slick-current:after {
            font-size: 4rem;
            top: -50px; } }
    .timeline li:before {
      content: ' ';
      position: absolute;
      top: 4px;
      left: 0;
      width: 15px;
      height: 15px;
      font-size: 6px;
      line-height: 20px;
      text-align: center;
      color: #000;
      border: 2px solid #e8eaeb;
      background-color: #009aa0;
      border-radius: 50%;
      z-index: 5; }
  .timeline .slick-list.draggable {
    margin: 0 50px; }
    @media (max-width: 460px) {
      .timeline .slick-list.draggable {
        margin: 0; } }
    .timeline .slick-list.draggable:after {
      content: '';
      position: absolute;
      bottom: calc(50% - 6px);
      width: 100%;
      height: 1px;
      z-index: -1;
      background-color: #999; }
  .timeline .slick-list .slick-track {
    height: 120px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .timeline .slick-slide {
    width: 200px !important; }
  .timeline .prev-arrow,
  .timeline .next-arrow {
    outline: none;
    border: none;
    position: relative;
    cursor: pointer;
    color: #008080;
    font-family: "Grotesk", sans-serif;
    top: 61px;
    background: transparent; }
    .timeline .prev-arrow:after,
    .timeline .next-arrow:after {
      background: #008080;
      content: '';
      position: absolute;
      width: 60px;
      height: 1px;
      bottom: -10px;
      left: 0;
      cursor: pointer; }
  .timeline .next-arrow {
    right: -40px;
    position: absolute;
    text-align: right;
    width: 60px; }
    @media (max-width: 640px) {
      .timeline .next-arrow {
        right: -20px; } }
  .timeline .slick-disabled {
    cursor: not-allowed; }

.timeline.slick-dots {
  bottom: 0;
  display: block; }

.slick-list {
  overflow: hidden; }

.history {
  padding: 5rem; }
  @media (max-width: 960px) {
    .history {
      padding: 0 5rem; } }
  @media (max-width: 640px) {
    .history {
      padding: 0 3rem; } }
  @media (max-width: 460px) {
    .history .row {
      min-height: 20rem; } }
  @media (max-width: 360px) {
    .history .row {
      min-height: 50rem; } }
  .history .image-container {
    position: absolute;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 50rem; }
    @media (max-width: 1080px) {
      .history .image-container {
        position: static;
        min-height: unset;
        max-height: 50rem; } }
    @media (max-width: 960px) {
      .history .image-container {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
           -moz-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        margin-top: 4rem; } }
    @media (max-width: 480px) {
      .history .image-container {
        display: block; } }
  .history .text {
    margin-left: 4rem;
    width: 50%; }
    @media (max-width: 480px) {
      .history .text {
        width: 80%; } }
  .history img {
    max-width: 130px;
    -webkit-align-self: flex-start;
        -ms-flex-item-align: start;
            align-self: flex-start; }
    @media (max-width: 480px) {
      .history img {
        display: none; } }
  .history .slider-for {
    margin-bottom: 0; }

.history.background-green .timeline li:after {
  color: #333333; }

.history.background-green .timeline li.slick-current {
  font-size: 6rem; }
  .history.background-green .timeline li.slick-current:before {
    color: #fff;
    background-color: #333333; }
  .history.background-green .timeline li.slick-current:after {
    color: #fff; }

.history.background-green .timeline li:before {
  border: 2px solid #e8eaeb;
  background-color: #333333; }

.history.background-green .timeline .prev-arrow,
.history.background-green .timeline .next-arrow {
  color: #fff; }
  .history.background-green .timeline .prev-arrow:after,
  .history.background-green .timeline .next-arrow:after {
    background: #fff; }

.history.background-green .text h2, .history.background-green .text p {
  color: #fff; }

.upper {
  width: 50%;
  min-height: 30rem;
  background: #fff;
  border-radius: 50px 50px 50px 0;
  left: 50%;
  position: relative;
  padding: 3rem;
  margin-bottom: 3rem; }
  @media (max-width: 960px) {
    .upper {
      width: 100%;
      left: 0;
      border-radius: 50px; } }
  @media (max-width: 640px) {
    .upper {
      min-height: 20rem;
      margin-bottom: 6rem; } }
  .upper:before {
    content: '';
    width: 0;
    height: 0;
    position: absolute;
    bottom: -20px;
    left: 0;
    -webkit-transform: rotateZ(0deg);
        -ms-transform: rotate(0deg);
            transform: rotateZ(0deg);
    border-style: solid;
    border-width: 20px 30px 0 0;
    border-color: #ffffff transparent transparent transparent; }
    @media (max-width: 960px) {
      .upper:before {
        left: 50%; } }
  @media (max-width: 640px) {
    .upper p {
      font-size: 1.6rem; } }
  @media (max-width: 360px) {
    .upper p {
      font-size: 2rem; } }

.testimonials {
  overflow: hidden; }
  .testimonials .testimonial {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 60%;
    height: 100%;
    margin: 0 auto;
    font-size: 4.6rem;
    padding-bottom: 5rem; }
    @media (max-width: 960px) {
      .testimonials .testimonial {
        width: 80%; } }
    @media (max-width: 860px) {
      .testimonials .testimonial {
        padding-top: 5rem; } }
    @media (max-width: 480px) {
      .testimonials .testimonial {
        width: 90%;
        font-size: 3.6rem; } }
    .testimonials .testimonial .message {
      font-weight: 300;
      color: #fff; }
  .testimonials .slick-slide {
    position: relative; }
    @media (max-width: 860px) {
      .testimonials .slick-slide {
        height: auto; } }
  .testimonials .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center; }
  .testimonials .slick-prev,
  .testimonials .slick-next {
    position: absolute;
    left: 200px;
    z-index: 9;
    bottom: 50%;
    cursor: pointer;
    width: 30px;
    height: 30px; }
    @media (max-width: 1080px) {
      .testimonials .slick-prev,
      .testimonials .slick-next {
        left: 40px; } }
    @media (max-width: 1080px) {
      .testimonials .slick-prev,
      .testimonials .slick-next {
        left: 0; } }
  .testimonials .slick-next {
    left: auto;
    right: 200px; }
    @media (max-width: 1080px) {
      .testimonials .slick-next {
        right: 40px; } }
    @media (max-width: 1080px) {
      .testimonials .slick-next {
        right: 0; } }

.color-green.testimonials .message {
  font-weight: 300;
  color: #008080; }

.color-green.testimonials .slick-dots li {
  border: 1px solid #008080; }
  .color-green.testimonials .slick-dots li.slick-active {
    background-color: #008080; }

.live-in-neterra {
  position: relative;
  padding: 7rem; }
  .live-in-neterra .stroke:hover {
    color: #fff;
    background-color: "transparent"; }
  @media (max-width: 1300px) {
    .live-in-neterra {
      padding: 4rem 0; } }
  .live-in-neterra .row {
    position: relative; }
  .live-in-neterra header {
    margin-bottom: 3rem; }
  .live-in-neterra h2 {
    color: #fff;
    line-height: 1.1; }
  .live-in-neterra .row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr 1fr;
    grid-template-areas: "col-1 col-2 col-2 col-3" "col-4 col-4 col-5 col-6";
    grid-gap: 2rem; }
    .live-in-neterra .row:after {
      content: none; }
    @media (max-width: 1200px) {
      .live-in-neterra .row {
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas: "col-1 col-2" "col-3 col-4" "col-5 col-6";
        padding: 6rem; } }
    @media (max-width: 720px) {
      .live-in-neterra .row {
        padding: 5rem; } }
    @media (max-width: 640px) {
      .live-in-neterra .row {
        padding: 2rem; } }
    @media (max-width: 540px) {
      .live-in-neterra .row {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: none;
        grid-template-areas: "col-1 col-1" "col-2 col-3" "col-4 col-5" "col-6 col-6"; } }
    .live-in-neterra .row > div {
      grid-area: 1 / col-1; }
    .live-in-neterra .row > a {
      max-height: 280px;
      overflow: hidden;
      display: block; }
      .live-in-neterra .row > a > div {
        height: 30rem;
        background-size: cover;
        background-position: center, center;
        background-repeat: no-repeat;
        position: relative;
        z-index: 1;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
           -moz-box-orient: vertical;
           -moz-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
        -webkit-align-items: center;
           -moz-box-align: center;
            -ms-flex-align: center;
                align-items: center; }
        @media (max-width: 540px) {
          .live-in-neterra .row > a > div {
            height: 150px; } }
        .live-in-neterra .row > a > div:hover:before {
          background-color: rgba(0, 0, 0, 0.4); }
        .live-in-neterra .row > a > div:before {
          content: '';
          position: absolute;
          width: 100%;
          height: 100%;
          z-index: -1;
          top: 0;
          left: 0;
          -webkit-transition: all .3s ease-in;
          -o-transition: all .3s ease-in;
          transition: all .3s ease-in;
          background-color: rgba(0, 0, 0, 0); }
      .live-in-neterra .row > a:nth-of-type(1) {
        grid-area: col-2; }
      .live-in-neterra .row > a:nth-of-type(2) {
        grid-area: col-3; }
      .live-in-neterra .row > a:nth-of-type(3) {
        grid-area: col-4; }
      .live-in-neterra .row > a:nth-of-type(4) {
        grid-area: col-5; }
      .live-in-neterra .row > a:nth-of-type(5) {
        grid-area: col-6; }

.section-page {
  overflow: hidden;
  padding: 5rem;
  padding-top: 8rem;
  padding-bottom: 8rem;
  width: 100%; }
  .section-page--icon-right .image-container {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
       -moz-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2; }
    @media (max-width: 960px) {
      .section-page--icon-right .image-container {
        -webkit-box-ordinal-group: 1;
        -webkit-order: 0;
           -moz-box-ordinal-group: 1;
            -ms-flex-order: 0;
                order: 0; } }
    .section-page--icon-right .image-container:before {
      right: -175px;
      left: auto; }
  @media (max-width: 860px) {
    .section-page {
      padding-top: 6rem;
      padding-bottom: 6rem; } }
  @media (max-width: 640px) {
    .section-page {
      padding: 3rem; } }
  .section-page .row {
    position: relative;
    min-height: 30rem; }
  .section-page .image-container {
    width: 200px;
    -webkit-align-self: flex-start;
        -ms-flex-item-align: start;
            align-self: flex-start; }
    @media (max-width: 960px) {
      .section-page .image-container {
        margin: 0 auto; } }
    @media (max-width: 640px) {
      .section-page .image-container {
        width: 120px;
        min-width: 50px; } }
  .section-page article {
    width: 100%;
    margin: 0 6rem;
    margin-right: 10rem;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    word-break: break-word; }
    @media (max-width: 960px) {
      .section-page article {
        margin: 0; } }
    .section-page article > p {
      width: 100%;
      word-break: break-word; }
    @media (max-width: 1080px) {
      .section-page article {
        width: 100%;
        padding-left: 0; } }
    .section-page article.u-center-text {
      margin: 0 auto; }
  .section-page .right article p {
    width: 75%;
    word-break: break-word; }
    @media (max-width: 1080px) {
      .section-page .right article p {
        width: 100%;
        word-break: unset; } }
  @media (max-width: 960px) {
    .section-page .u-flex {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
         -moz-box-orient: vertical;
         -moz-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }
  .section-page ul {
    list-style: none;
    margin-left: 8rem; }
    @media (max-width: 720px) {
      .section-page ul {
        margin-left: 6rem; } }
    @media (max-width: 540px) {
      .section-page ul {
        margin-left: 4rem; } }
    .section-page ul li {
      position: relative; }
      @media (max-width: 720px) {
        .section-page ul li {
          width: 100%; } }
      .section-page ul li:before {
        content: '';
        position: absolute;
        width: 20px;
        height: 20px;
        top: 10px;
        left: -30px;
        background-image: url("/kipo_front/themes/kipo/images/sections/SVGs/icons-checkmark.svg"); }
  .section-page h2 {
    margin-bottom: 2rem; }
    @media (max-width: 720px) {
      .section-page h2 {
        font-size: 5rem; } }
    @media (max-width: 540px) {
      .section-page h2 {
        font-size: 4.2rem; } }
    @media (max-width: 360px) {
      .section-page h2 {
        font-size: 3.6rem; } }
  .section-page h3 {
    font-size: 3rem;
    font-family: AkrobatBold, sans-serif; }

.text-color-white ul li:before {
  background-image: url("/kipo_front/themes/kipo/images/sections/SVGs/icons-checkmark-white.svg"); }

.text-color-white ul li a {
  color: #fff; }

.text-color-black h3 {
  color: #333333; }

.section-page.background-orange h2, .section-page.background-orange p,
.section-page.background-green h2,
.section-page.background-green p {
  color: #fff; }

.section-page.background-orange ul li p,
.section-page.background-green ul li p {
  color: #fff; }

.section-page.background-orange ul li:before,
.section-page.background-green ul li:before {
  background-image: url("/kipo_front/themes/kipo/images/sections/SVGs/icons-checkmark-white.svg"); }

.section-page.background-circle-full {
  overflow: visible; }

.breadcrumbs {
  width: 48%;
  margin-top: 6rem; }
  .breadcrumbs__content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    font-family: "Grotesk", sans-serif;
    text-transform: uppercase;
    font-size: 1.2rem;
    font-weight: 300; }
  .breadcrumbs__links {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .breadcrumbs__links a, .breadcrumbs__links span {
      color: #009aa0; }
    .breadcrumbs__links svg .st0 {
      fill: #009aa0; }
    .breadcrumbs__links .active {
      color: #4d4d4d; }
  .breadcrumbs .date {
    color: #4d4d4d; }

.box .breadcrumbs {
  position: absolute;
  width: 100%;
  top: -40px;
  left: 0;
  margin-top: 0; }
  @media (max-width: 860px) {
    .box .breadcrumbs {
      position: static;
      top: 20px;
      left: 40px;
      margin-bottom: 20px; } }
  @media (max-width: 640px) {
    .box .breadcrumbs {
      position: static; } }
  .box .breadcrumbs__content {
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%; }

.box__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 0; }
  @media (max-width: 860px) {
    .box__container {
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
      -webkit-flex-direction: column-reverse;
         -moz-box-orient: vertical;
         -moz-box-direction: reverse;
          -ms-flex-direction: column-reverse;
              flex-direction: column-reverse;
      padding-bottom: 0; } }

.box__content {
  position: relative;
  width: 100%;
  z-index: 99999; }
  @media (max-width: 360px) {
    .box__content {
      top: 0; } }

.box__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  max-width: 800px;
  background: #fff;
  min-height: 500px;
  padding: 10rem;
  right: -100px;
  width: 100%;
  top: 50%;
  font-family: 'AkrobatExtraLight', sans-serif;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-box-shadow: 10px 10px 25px -5px rgba(0, 0, 0, 0.06);
          box-shadow: 10px 10px 25px -5px rgba(0, 0, 0, 0.06); }
  @media (max-width: 1200px) {
    .box__item {
      padding: 5rem; } }
  @media (max-width: 860px) {
    .box__item {
      position: static;
      padding-top: 3rem;
      max-width: calc(100%);
      min-height: initial;
      right: auto;
      margin: 0 auto;
      -webkit-transform: translateY(0);
          -ms-transform: translateY(0);
              transform: translateY(0); } }
  @media (max-width: 640px) {
    .box__item {
      max-width: 100%;
      padding: 3rem;
      margin: 0; } }
  @media (max-width: 540px) {
    .box__item {
      position: relative;
      max-width: none;
      -webkit-transform: none;
          -ms-transform: none;
              transform: none;
      top: 0;
      padding: 3rem;
      margin: 0; } }
  @media (max-width: 360px) {
    .box__item {
      padding: 2rem; } }
  .box__item h3 {
    text-align: center;
    font-size: 4.8rem; }
    @media (max-width: 1080px) {
      .box__item h3 {
        font-size: 4.2rem; } }
    @media (max-width: 460px) {
      .box__item h3 {
        font-size: 3.6rem; } }
  .box__item ul {
    list-style: none; }
    @media (max-width: 860px) {
      .box__item ul {
        margin-left: 30px; } }
    .box__item ul li {
      position: relative;
      font-size: 2rem;
      font-family: 'Grotesk', sans-serif; }
      .box__item ul li:before {
        content: '';
        position: absolute;
        width: 20px;
        height: 20px;
        top: 10px;
        left: -30px;
        background-image: url("/kipo_front/themes/kipo/images/sections/SVGs/icons-checkmark.svg"); }
  .box__item.office-item ul li:before {
    background-image: none; }

.box__image {
  width: 80%;
  height: 685px;
  background-size: cover;
  background-position: 70% center; }
  @media (max-width: 860px) {
    .box__image {
      width: 100%; } }
  @media (max-width: 460px) {
    .box__image {
      height: 50rem; } }

.box .list-box:not(:last-of-type) {
  margin-bottom: 6rem; }

.box--item-right .box__content {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
     -moz-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2; }

.box--item-right .box__item {
  right: auto;
  left: -100px; }

.box.background-orange .box__container,
.box.background-green .box__container {
  padding-top: 10rem; }

.box.background-orange .breadcrumbs__links a, .box.background-orange .breadcrumbs__links span,
.box.background-green .breadcrumbs__links a,
.box.background-green .breadcrumbs__links span {
  color: #fff; }

.box.background-orange .breadcrumbs__links svg .st0,
.box.background-green .breadcrumbs__links svg .st0 {
  fill: #fff;
  stroke: none; }

.box.background-green .breadcrumbs__links a, .box.background-green .breadcrumbs__links span {
  color: #fff; }

.list-box ul {
  list-style: none; }
  .list-box ul li {
    font-family: "Grotesk", sans-serif !important;
    font-weight: 300;
    font-size: 2.1rem;
    margin: 1rem 0; }
    @media (max-width: 860px) {
      .list-box ul li {
        font-size: 1.8rem; } }
    @media (max-width: 640px) {
      .list-box ul li {
        margin-left: 2rem; } }
    .list-box ul li span, .list-box ul li a {
      display: inline-block;
      vertical-align: middle;
      color: inherit; }
    .list-box ul li img {
      width: 25px; }

.list-box h4 {
  font-weight: bold;
  font-family: 'AkrobatExtraLight', sans-serif; }

.social-icons img {
  width: 25px; }

.card {
  position: relative;
  padding: 5rem;
  background: #fff;
  z-index: 999; }
  .card ul {
    font-family: 'Grotesk', sans-serif;
    grid-column-gap: 6rem;
    grid-row-gap: initial;
    list-style: none; }
    .card ul li {
      position: relative;
      margin-left: 4rem; }
      .card ul li:before {
        content: '';
        position: absolute;
        width: 2rem;
        height: 2rem;
        top: 1rem;
        left: -3rem;
        background-image: url("/kipo_front/themes/kipo/images/sections/SVGs/icons-checkmark.svg"); }

.mission {
  margin-top: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 5rem; }
  @media (max-width: 640px) {
    .mission {
      padding: 0 3rem; } }
  .mission__content {
    max-width: 117rem;
    margin: 0 auto;
    padding: 10rem 0; }
    @media (max-width: 720px) {
      .mission__content {
        grid-template-columns: 1fr; } }
  @media (max-width: 720px) {
    .mission img {
      width: 25rem;
      margin: 0 auto; } }
  .mission h3 {
    font-size: 6rem; }
    @media (max-width: 720px) {
      .mission h3 {
        font-size: 5rem; } }
  .mission div {
    margin: 0 auto; }

.about-us {
  min-height: 250px;
  position: relative;
  z-index: 999; }
  .about-us > .row {
    position: relative;
    top: 100px; }
    @media (max-width: 860px) {
      .about-us > .row {
        position: static; } }
  @media (max-width: 860px) {
    .about-us {
      height: auto; } }
  @media (max-width: 720px) {
    .about-us .u-grid-2 {
      grid-template-columns: 1fr; } }
  @media (max-width: 640px) {
    .about-us {
      height: auto; } }

.mission.background-green h3, .mission.background-green p,
.mission.background-orange h3,
.mission.background-orange p {
  color: #fff; }

.members {
  padding: 8rem 4rem; }
  .members h2 {
    color: #fff; }
  @media (max-width: 1080px) {
    .members {
      padding-left: 5rem;
      padding-right: 5rem; } }
  @media (max-width: 640px) {
    .members {
      padding-left: 3rem;
      padding-right: 3rem; } }
  @media (max-width: 540px) {
    .members {
      padding-left: 2rem;
      padding-right: 2rem; } }
  .members .row {
    position: relative; }
  .members__content {
    padding: 6rem 10rem;
    grid-column-gap: 5rem;
    grid-row-gap: 5rem; }
    @media (max-width: 1080px) {
      .members__content {
        padding: 4rem 0;
        grid-column-gap: 4rem;
        grid-row-gap: 4rem; } }
    @media (max-width: 720px) {
      .members__content {
        grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 640px) {
      .members__content {
        padding: 3rem 0;
        grid-column-gap: 3rem;
        grid-row-gap: 3rem; } }
    @media (max-width: 540px) {
      .members__content {
        grid-template-columns: 300px;
        padding: 2rem 0;
        grid-column-gap: 2rem;
        grid-row-gap: 2rem;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
           -moz-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center; } }
  .members__image {
    overflow: hidden;
    position: relative; }
  .members__description {
    padding: 2rem;
    background: #fff; }
    .members__description h3 {
      font-size: 2.4rem;
      color: #009aa0 !important; }
      @media (max-width: 540px) {
        .members__description h3 {
          font-size: 3.4rem; } }
    .members__description p {
      font-size: 1.6rem;
      color: #4d4d4d !important; }
    .members__description span {
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      display: flex; }
      .members__description span img {
        width: 30px; }
      .members__description span a {
        color: #008080 !important;
        text-decoration: underline; }
        .members__description span a:hover {
          border-bottom: none; }

.section-type-1,
.section-type-2,
.section-type-3 {
  padding: 6rem; }
  @media (max-width: 1080px) {
    .section-type-1,
    .section-type-2,
    .section-type-3 {
      padding: 5rem; } }
  @media (max-width: 640px) {
    .section-type-1,
    .section-type-2,
    .section-type-3 {
      padding: 3rem; } }
  @media (max-width: 540px) {
    .section-type-1,
    .section-type-2,
    .section-type-3 {
      padding: 2rem; } }
  .section-type-1 h3,
  .section-type-2 h3,
  .section-type-3 h3 {
    font-size: 2.4rem;
    font-family: AkrobatRegular, sans-serif;
    color: #333333; }
  .section-type-1 header h3,
  .section-type-2 header h3,
  .section-type-3 header h3 {
    font-weight: normal;
    font-size: 3rem;
    width: 50%; }
    @media (max-width: 860px) {
      .section-type-1 header h3,
      .section-type-2 header h3,
      .section-type-3 header h3 {
        width: 80%; } }
    @media (max-width: 640px) {
      .section-type-1 header h3,
      .section-type-2 header h3,
      .section-type-3 header h3 {
        width: 100%; } }

.section-type-1 .u-grid-4,
.section-type-1 .u-grid-3,
.section-type-1 .u-grid-2,
.section-type-1 .u-grid-1 {
  grid-gap: 3rem; }

.section-type-1 .u-grid-4 {
  grid-template-columns: 1fr 1fr 1fr 1fr; }

@media (max-width: 860px) {
  .section-type-1 .u-grid-3,
  .section-type-1 .u-grid-4 {
    grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 540px) {
  .section-type-1 .u-grid-3,
  .section-type-1 .u-grid-4 {
    grid-template-columns: 1fr; } }

@media (max-width: 540px) {
  .section-type-1 .u-grid-2 {
    grid-template-columns: 1fr; } }

.section-type-1 .background-image {
  height: 30rem;
  background-size: cover;
  background-position: center, center;
  background-repeat: no-repeat; }

.section-type-1__description {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  padding: 0 2rem;
  font-size: 2.1rem;
  text-align: center;
  color: #fff;
  text-transform: none;
  z-index: 1; }
  .section-type-1__description:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
    left: 0;
    -webkit-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    transition: all .3s ease-in;
    background-color: rgba(0, 0, 0, 0.6); }
  .section-type-1__description:hover:before {
    background-color: rgba(0, 0, 0, 0.4); }

.section-type-1 .background-white .section-type-1__description:before {
  background-color: rgba(0, 0, 0, 0); }

.section-type-1 .background-white .section-type-1__description:hover:before {
  background-color: rgba(0, 0, 0, 0.4); }

.section-type-2 .u-grid-3,
.section-type-2 .u-grid-2 {
  grid-column-gap: 3rem;
  grid-row-gap: 1rem;
  margin-bottom: 4rem; }
  @media (max-width: 860px) {
    .section-type-2 .u-grid-3,
    .section-type-2 .u-grid-2 {
      grid-row-gap: 2rem; } }
  .section-type-2 .u-grid-3 img,
  .section-type-2 .u-grid-2 img {
    margin: 1.5rem;
    width: 130px;
    height: 100px;
    margin-top: 0; }
    @media (max-width: 1200px) {
      .section-type-2 .u-grid-3 img,
      .section-type-2 .u-grid-2 img {
        float: none; } }

@media (max-width: 720px) {
  .section-type-2 .u-grid-3 {
    grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 540px) {
  .section-type-2 .u-grid-3 {
    grid-template-columns: 1fr; } }

@media (max-width: 1080px) {
  .section-type-2 .u-grid-3 .u-grid-2 {
    grid-template-columns: auto; } }

@media (max-width: 540px) {
  .section-type-2 .u-grid-2 {
    grid-template-columns: 1fr; } }

@media (max-width: 860px) {
  .section-type-2 .u-grid-2 .u-grid-2 {
    grid-template-columns: auto;
    display: block; } }

.section-type-2 h3 {
  font-size: 2.4rem;
  font-family: AkrobatBold, sans-serif;
  color: #333333; }
  @media (max-width: 460px) {
    .section-type-2 h3 {
      font-size: 3.2rem; } }

.section-type-2 h4 {
  font-size: 1.6rem;
  padding: 10px 0; }
  @media (max-width: 460px) {
    .section-type-2 h4 {
      font-size: 2rem; } }

.section-type-2 p {
  font-size: 1.6rem;
  margin-top: 0; }
  @media (max-width: 460px) {
    .section-type-2 p {
      font-size: 2rem; } }

.section-type-2 .u-font-normal h3 {
  font-weight: normal; }

.section-type-1 .normal-link,
.section-type-1 .normal-link:link,
.section-type-1 .normal-link:visited,
.section-type-2 .normal-link,
.section-type-2 .normal-link:link,
.section-type-2 .normal-link:visited,
.section-type-3 .normal-link,
.section-type-3 .normal-link:link,
.section-type-3 .normal-link:visited {
  color: inherit; }
  .section-type-1 .normal-link:hover,
  .section-type-1 .normal-link:link:hover,
  .section-type-1 .normal-link:visited:hover,
  .section-type-2 .normal-link:hover,
  .section-type-2 .normal-link:link:hover,
  .section-type-2 .normal-link:visited:hover,
  .section-type-3 .normal-link:hover,
  .section-type-3 .normal-link:link:hover,
  .section-type-3 .normal-link:visited:hover {
    color: #008080;
    border-bottom: 1px solid transparent; }

.image .u-grid-2 {
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 3rem;
  grid-row-gap: 2rem;
  margin-bottom: 0; }
  @media (max-width: 640px) {
    .image .u-grid-2 {
      display: block; } }
  .image .u-grid-2 img {
    width: 100%;
    height: auto;
    float: none;
    margin: 0; }
    @media (max-width: 1200px) {
      .image .u-grid-2 img {
        height: auto; } }
    @media (max-width: 640px) {
      .image .u-grid-2 img {
        width: auto; } }

.image .u-grid-1 img {
  margin: 0 0 1.5rem; }

.image .u-grid-4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 2rem; }
  .image .u-grid-4 .u-grid-2 {
    grid-template-columns: 1fr 1.2fr; }
    .image .u-grid-4 .u-grid-2.description-left {
      grid-template-columns: 1.2fr 1fr; }
    .image .u-grid-4 .u-grid-2 img {
      height: auto;
      width: auto; }

.description-left div:last-of-type {
  grid-row-start: 1; }
  @media (max-width: 860px) {
    .description-left div:last-of-type {
      margin-top: 2rem; } }

.description-left img {
  float: left; }

.description-right img {
  float: right; }

@media (max-width: 860px) {
  .description-right div:last-of-type {
    margin-top: 2rem; } }

@media (max-width: 860px) {
  .u-grid-1 .description-left div:last-of-type {
    margin-top: 0; } }

@media (max-width: 860px) {
  .u-grid-1 div:last-of-type {
    margin-top: 0; } }

.image img {
  float: none; }

.image-top {
  display: block; }
  .image-top div:last-of-type {
    margin-top: 2rem; }
  .image-top img {
    width: auto;
    height: auto; }

.section-type-3 a,
.section-type-3 a:link,
.section-type-3 a:visited {
  color: inherit; }
  .section-type-3 a:hover,
  .section-type-3 a:link:hover,
  .section-type-3 a:visited:hover {
    border-bottom: 1px solid transparent; }

.section-type-3 .u-grid-3, .section-type-3 .u-grid-2 {
  grid-column-gap: 4rem; }

@media (max-width: 860px) {
  .section-type-3 .u-grid-3 {
    grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 640px) {
  .section-type-3 .u-grid-3 {
    grid-template-columns: 1fr; } }

@media (max-width: 640px) {
  .section-type-3 .u-grid-2 {
    grid-template-columns: 1fr; } }

.section-type-3 header h3 {
  color: #ca3610; }

.section-type-3 h4 {
  font-size: 1.6rem; }
  @media (max-width: 460px) {
    .section-type-3 h4 {
      font-size: 2rem; } }

.section-type-3 p {
  margin-top: 0; }
  @media (max-width: 460px) {
    .section-type-3 p {
      font-size: 2rem; } }

.section-type-3.background-green .section-type-3__description h4,
.section-type-2.background-green .section-type-3__description h4 {
  color: #fff; }

.section-type-1.background-green h2,
.section-type-1.background-orange h2,
.section-type-3.background-orange h2,
.section-type-3.background-green h2 {
  color: #fff; }

.section-type-3.background-orange .section-type-3__description h4,
.section-type-2.background-orange .section-type-3__description h4 {
  color: #ca3610; }

.section-type-2.background-orange > .row header h2,
.section-type-2.background-green > .row header h2,
.section-type-3.background-orange > .row header h2,
.section-type-3.background-green > .row header h2 {
  color: #fff; }

.section-type-2.background-orange p, .section-type-2.background-orange h3,
.section-type-2.background-green p,
.section-type-2.background-green h3,
.section-type-3.background-orange p,
.section-type-3.background-orange h3,
.section-type-3.background-green p,
.section-type-3.background-green h3 {
  color: #fff !important; }

.section-type-1 ul,
.section-type-2 ul,
.section-type-3 ul {
  margin-left: 30px; }

.archive {
  position: relative;
  max-width: 117rem;
  margin: 6rem auto; }
  .archive__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
    width: 100%;
    padding: 0;
    text-align: center;
    list-style: none; }
    .archive__list:after {
      content: '';
      position: absolute;
      top: 10px;
      width: 100%;
      height: 1px;
      background-color: #999; }
  @media (max-width: 640px) {
    .archive li:first-child {
      display: none; } }
  .archive li:first-child span {
    font-size: 2rem;
    font-family: 'Grotesk', sans-serif;
    top: -24px; }
  .archive__item {
    position: relative;
    display: block;
    height: 20px;
    width: 20px;
    padding: 5px;
    border: 0;
    background: transparent;
    outline: none;
    line-height: 0;
    font-size: 0;
    color: transparent;
    cursor: pointer; }
  .archive span {
    font-family: 'AkrobatRegular', sans-serif;
    font-weight: 300;
    display: block;
    position: relative;
    top: -30px;
    left: -30px;
    font-size: 2.8rem;
    color: #009aa0; }
    @media (max-width: 640px) {
      .archive span {
        left: -20px; } }
  .archive button {
    border: 0;
    background: transparent;
    display: block;
    height: 20px;
    width: 20px;
    outline: none;
    line-height: 0px;
    font-size: 0px;
    color: transparent;
    padding: 5px;
    cursor: pointer; }
    .archive button:before {
      position: absolute;
      top: 4px;
      left: 0;
      content: ' ';
      width: 15px;
      height: 15px;
      font-size: 6px;
      line-height: 20px;
      text-align: center;
      color: #000;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      border: 2px solid #e8eaeb;
      background-color: #009aa0;
      border-radius: 50%;
      -webkit-transition: all 200ms ease;
      -o-transition: all 200ms ease;
      transition: all 200ms ease;
      z-index: 5; }

.careers {
  padding: 6rem; }
  @media (max-width: 640px) {
    .careers {
      padding: 3rem; } }
  .careers h2 {
    margin-bottom: 4rem; }
  .careers h4 {
    font-size: 3.6rem; }
  .careers h3 {
    font-size: 2.1rem;
    color: #008080; }
  .careers p, .careers ul {
    font-size: 1.6rem;
    font-family: 'Grotesk', sans-serif;
    font-weight: 300; }
  .careers p, .careers li {
    max-width: 96%; }
  .careers ul {
    margin-left: 2rem;
    list-style: none; }
    .careers ul li:before {
      content: "\2022";
      color: grey;
      display: inline-block;
      width: 20px;
      font-size: 26px; }
  .careers .vacancy {
    padding: 3rem;
    margin-bottom: 3rem;
    cursor: unset; }
    .careers .vacancy__content {
      display: none;
      margin-top: 2rem;
      overflow: hidden;
      -webkit-column-count: 2;
         -moz-column-count: 2;
              column-count: 2;
      -webkit-column-width: auto;
         -moz-column-width: auto;
              column-width: auto;
      opacity: 0; }
      @media (max-width: 860px) {
        .careers .vacancy__content {
          -webkit-column-count: 1;
             -moz-column-count: 1;
                  column-count: 1; } }
    .careers .vacancy__content.fade {
      opacity: 1;
      -webkit-transition: opacity .5s;
      -o-transition: opacity .5s;
      transition: opacity .5s; }
    .careers .vacancy .button-cont {
      margin-top: 6rem;
      display: none; }
    .careers .vacancy .accordion {
      position: relative;
      cursor: pointer; }
    .careers .vacancy .icon-expand {
      width: 30px;
      height: 30px;
      background-size: cover;
      position: absolute;
      right: 0;
      top: 8px; }

.show {
  display: block !important; }

.closed .vertical {
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg); }

.closed .horizontal {
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  opacity: 1; }

.opened {
  opacity: 1; }
  .opened .vertical {
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg); }
  .opened .horizontal {
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    opacity: 1; }
  .opened .circle::before {
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: rotate(-45deg) !important;
        -ms-transform: rotate(-45deg) !important;
            transform: rotate(-45deg) !important;
    opacity: 1; }
  .opened .circle::after {
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: rotate(45deg) !important;
        -ms-transform: rotate(45deg) !important;
            transform: rotate(45deg) !important;
    opacity: 1; }

.circle-plus {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  opacity: .7; }

.circle-plus .circle {
  display: inline-block;
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  border: solid 1px #009aa0; }
  .circle-plus .circle::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 0;
    border-bottom: solid 2px #009aa0;
    position: absolute;
    bottom: 18px;
    left: 9px;
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out; }
  .circle-plus .circle::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 0;
    border-bottom: solid 2px #009aa0;
    position: absolute;
    -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
            transform: rotate(0);
    bottom: 18px;
    left: 9px;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out; }

.search-result .accordion__content {
  -webkit-column-count: 1;
     -moz-column-count: 1;
          column-count: 1; }

.search-result .vacancy a {
  color: #fff; }

.search-result .circle-plus .circle {
  border-color: #fff; }
  .search-result .circle-plus .circle:before, .search-result .circle-plus .circle:after {
    border-color: #fff; }

.card-prices {
  padding: 4rem; }
  @media (max-width: 640px) {
    .card-prices {
      padding: 2rem;
      width: 100%; } }
  .card-prices .u-grid-3 {
    grid-column-gap: 6rem; }
  .card-prices header {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .card-prices header h2 {
      font-family: 'AkrobatBold', sans-serif;
      font-size: 3.6rem;
      color: #333333; }
      .card-prices header h2:before {
        content: none; }
    .card-prices header h3 {
      font-family: 'AkrobatBold', sans-serif;
      color: #ffaa00 !important;
      font-size: 2.4rem;
      text-transform: uppercase; }
    .card-prices header:after {
      content: '';
      position: absolute;
      width: 250px;
      bottom: -10px;
      left: 50%;
      -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
              transform: translateX(-50%);
      border-bottom: 1px solid #ffaa00; }
  .card-prices__item {
    display: inline-block;
    width: calc((100% - 2 * 6rem) / 3);
    padding: 1rem 3rem 3rem;
    background: #fff;
    -webkit-box-shadow: 10px 10px 25px -5px rgba(0, 0, 0, 0.06);
            box-shadow: 10px 10px 25px -5px rgba(0, 0, 0, 0.06); }
    .card-prices__item:not(:last-child) {
      margin-right: 6rem; }
      @media (max-width: 960px) {
        .card-prices__item:not(:last-child) {
          margin-bottom: 4rem; } }
      @media (max-width: 720px) {
        .card-prices__item:not(:last-child) {
          margin-right: 2rem;
          margin-bottom: 2rem; } }
    @media (max-width: 960px) {
      .card-prices__item:nth-child(2) {
        margin-right: 0;
        margin-bottom: 4rem; } }
    @media (max-width: 720px) {
      .card-prices__item:nth-child(2) {
        margin-bottom: 2rem; } }
    @media (max-width: 960px) {
      .card-prices__item {
        width: calc((100% - 2 * 4rem) / 2); } }
    @media (max-width: 720px) {
      .card-prices__item {
        width: calc((100% - 2 * 1rem) / 2); } }
    @media (max-width: 640px) {
      .card-prices__item {
        width: 100%; } }
  .card-prices__content {
    margin: 2rem 0; }
  .card-prices__row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    .card-prices__row p:first-of-type {
      color: #999; }
  .card-prices p {
    font-size: 1.6rem; }
  .card-prices strong {
    font-size: 3.6rem;
    color: #ffaa00; }
  .card-prices img {
    margin-bottom: 1rem; }

.card-prices.background-green > .row:first-of-type h2,
.card-prices.background-orange > .row:first-of-type h2 {
  color: #fff; }

.card-plans {
  padding: 4rem 0;
  -webkit-box-shadow: 10px 10px 25px -5px rgba(0, 0, 0, 0.06);
          box-shadow: 10px 10px 25px -5px rgba(0, 0, 0, 0.06); }
  @media (max-width: 640px) {
    .card-plans h2 {
      font-size: 4rem; } }
  .card-plans .u-grid-4 {
    grid-template-columns: repeat(4, 1fr); }
    @media (max-width: 960px) {
      .card-plans .u-grid-4 {
        display: block; } }
  .card-plans .u-grid-5 {
    grid-template-columns: repeat(5, 1fr); }
    @media (max-width: 960px) {
      .card-plans .u-grid-5 {
        display: block; } }
  .card-plans .u-grid-6 {
    grid-template-columns: repeat(6, minmax(120px, 1fr)); }
    @media (max-width: 960px) {
      .card-plans .u-grid-6 {
        display: block; } }
  .card-plans .u-grid-8 {
    grid-template-columns: repeat(8, minmax(100px, 1fr)); }
    @media (max-width: 960px) {
      .card-plans .u-grid-8 {
        display: block; } }
  .card-plans .u-grid-10 {
    grid-template-columns: repeat(10, minmax(100px, 1fr)); }
  @media (max-width: 960px) {
    .card-plans .row {
      padding: 0 4rem; } }
  @media (max-width: 640px) {
    .card-plans .row {
      padding: 0 2rem; } }
  .card-plans .icon {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 2rem;
    background-color: #fff; }
    @media (max-width: 720px) {
      .card-plans .icon {
        display: block; } }
  .card-plans p {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 1.6rem;
    margin: 0;
    height: 100%;
    width: 100%; }
    @media (max-width: 960px) {
      .card-plans p {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex; } }
  .card-plans__container {
    width: 80%; }
  .card-plans__content {
    background-color: #fff;
    width: 100%; }
  .card-plans__value {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 2rem; }
    .card-plans__value:nth-of-type(2n) {
      background-color: #f0f8fa; }
  .card-plans__fixed {
    background-color: #fff;
    width: 20%;
    position: relative; }
    @media (max-width: 960px) {
      .card-plans__fixed {
        width: 30%; } }
    @media (max-width: 540px) {
      .card-plans__fixed {
        width: 40%; } }
    @media (max-width: 480px) {
      .card-plans__fixed {
        width: 50%; } }
    .card-plans__fixed:after {
      content: '';
      position: absolute;
      top: 20px;
      right: 0;
      height: calc(100% - 40px);
      width: 1px; }
    .card-plans__fixed p:nth-of-type(2n) {
      background-color: #f0f8fa; }
  .card-plans__item {
    position: relative;
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -moz-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
       -moz-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto; }
    .card-plans__item p {
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
         -moz-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
         -moz-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
    .card-plans__item p:nth-of-type(2n) {
      background-color: #f0f8fa; }
    .card-plans__item:not(:last-child):after {
      content: '';
      position: absolute;
      height: calc(100% - 40px);
      width: 1px;
      z-index: 999;
      right: 0;
      background: rgba(153, 153, 153, 0.4);
      top: 20px; }
  .card-plans .slick-prev.slick-arrow,
  .card-plans .slick-next.slick-arrow {
    cursor: pointer;
    position: absolute;
    top: -40px;
    left: 0; }
    @media (max-width: 960px) {
      .card-plans .slick-prev.slick-arrow,
      .card-plans .slick-next.slick-arrow {
        left: 2rem; } }
    @media (max-width: 540px) {
      .card-plans .slick-prev.slick-arrow,
      .card-plans .slick-next.slick-arrow {
        top: -20px; } }
    @media (max-width: 460px) {
      .card-plans .slick-prev.slick-arrow,
      .card-plans .slick-next.slick-arrow {
        left: 9rem; } }
  .card-plans .slick-next.slick-arrow {
    left: 100px; }
    @media (max-width: 960px) {
      .card-plans .slick-next.slick-arrow {
        left: 7rem; } }
    @media (max-width: 540px) {
      .card-plans .slick-next.slick-arrow {
        left: 8rem; } }
    @media (max-width: 460px) {
      .card-plans .slick-next.slick-arrow {
        left: 15rem; } }
  .card-plans .slick-list {
    height: 100%;
    overflow: hidden; }
    .card-plans .slick-list .slick-track {
      height: 100%; }
  .card-plans .slick-disabled {
    pointer-events: none;
    cursor: unset;
    opacity: 0; }

.description {
  padding: 2rem; }
  .description p {
    font-size: 1.4rem; }
    .description p:not(:last-of-type) {
      margin-bottom: 1rem; }

.card-plans.background-green > .row:first-of-type h2,
.card-plans.background-orange > .row:first-of-type h2 {
  color: #fff; }

.card-plans.background-green .description p,
.card-plans.background-orange .description p {
  color: #fff; }

.btn,
.btn:link,
.btn:visited {
  display: block;
  position: relative;
  width: 200px;
  height: 40px;
  line-height: 40px;
  border-radius: 50px;
  text-align: center;
  font-size: 2.1rem;
  font-family: 'AkrobatBold', sans-serif;
  color: #008080;
  border: 1px solid transparent; }
  .btn:hover,
  .btn:link:hover,
  .btn:visited:hover {
    border: 1px solid transparent; }

.button-cont {
  position: relative; }
  .button-cont .button-svg .st1 {
    stroke: #e8eaeb; }
  .button-cont .button-svg.stroke.background-white .st1,
  .button-cont .button-svg.solid.background-white .st1 {
    stroke: #fff; }
  .button-cont .button-svg.stroke.background-white .st1,
  .button-cont .button-svg.solid.background-white .st1 {
    stroke: #fff; }
  .button-cont .button-svg {
    position: absolute;
    top: -7px;
    left: -7px;
    pointer-events: none; }
    .button-cont .button-svg .st0 {
      stroke: #008080; }
    .button-cont .button-svg .st2 {
      fill: #008080;
      stroke: #008080; }
  .button-cont .button-svg.stroke-white .st0,
  .button-cont .button-svg.stroke-white .st1,
  .button-cont .button-svg.stroke-white .st2 {
    stroke: #fff; }
  .button-cont .button-svg.stroke-white .st2 {
    fill: #fff; }
  .button-cont .button-svg.stroke-white.background-orange .st1 {
    fill: #fff;
    stroke: #ffaa00; }
  .button-cont .button-svg.solid {
    background-color: transparent;
    color: #008080; }
    .button-cont .button-svg.solid .st0 {
      stroke: #008080; }
    .button-cont .button-svg.solid .st1 {
      fill: #e8eaeb; }

.stroke {
  background-color: transparent;
  color: #008080;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  .stroke:hover {
    color: #ffaa00;
    background-color: "transparent";
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }

.solid {
  display: inline-block !important;
  background-color: #008080;
  color: #fff !important; }

.solid-white {
  display: inline-block !important;
  background-color: #fff;
  color: #008080 !important; }

.stroke-white,
.stroke-white:link,
.stroke-white:visited {
  position: relative;
  background-color: transparent;
  color: #fff !important; }
  .stroke-white:hover,
  .stroke-white:link:hover,
  .stroke-white:visited:hover {
    border-bottom: 1px solid transparent !important; }

/*
   0 - 600px      Phone
   600 - 900px    Tablet portrait
   900 - 1300px   Tablet landscape
   1300 - 1800px  Normal
   1800 +         Big Desktop

  $breakpoint argument choices:
  - phone
  - tab-port
  - tab-land
  - big-desktop
  ORDER: Base + typography layout + grid > page layout > components
  1rem = 10px;
*/
button, a, select, input {
  outline: none;
  border: none;
  -moz-appearance: none;
  -webkit-appearance: none; }

.section-map {
  height: 660px;
  background-size: cover;
  background-position: 70% center;
  position: relative;
  overflow: hidden; }

.maps {
  width: 100%;
  height: 100%; }

