/*!*******************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/scss/main.scss ***!
  \*******************************************************************************************************************************************************/
:root {
  --color-default: #2F3437;
  --color-primary: #009688;
  --color-secondary: #21403B;
  --color-blue: #0072CE;
  --color-dark: #454B4E;
  --color-medium: #EDEBE8;
  --color-light: #F5F4F1;
  --color-inactive: #9D9FB4;
  --color-error: #BE4040;
  --color-success: #009688;
  --color-border: #D4D2CA;
  --font-primary: "Montserrat", sans-serif;
  --border-radius: 16px;
  --border-radius-medium: 24px;
  --border-radius-large: 32px;
  --site-width: 1440px;
  --gutters: 24px;
}

/* General */
html,
body {
  font-kerning: auto;
}

body {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.site-wrap {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  min-height: 100vh;
  width: 100%;
  z-index: 1;
}

.site-content {
  flex: 1 1 auto;
}

/* Images */
img {
  width: auto;
  height: auto;
}

/* Bootstrap overrides */
.container {
  max-width: calc(var(--site-width) + var(--gutters) * 2);
  padding-left: var(--gutters);
  padding-right: var(--gutters);
}

.row {
  margin-left: calc(0px - var(--gutters) / 2);
  margin-right: calc(0px - var(--gutters) / 2);
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, .col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl, .col-xl-auto, .col-lg-one-fifth {
  padding-left: calc(var(--gutters) / 2);
  padding-right: calc(var(--gutters) / 2);
}

/* Full width blocks. */
.blocks {
  overflow: hidden;
}

.full-width {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
}

/* Remove margins from last elements */
.no-last-mg-y > *:last-child {
  margin-bottom: 0 !important;
}

.no-last-mg-x > *:last-child {
  margin-right: 0 !important;
}

/* Positioning */
.relative {
  position: relative;
}

.abs-c {
  position: absolute;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  transform: translate(-50%, -50%);
}

.abs-c-y {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.abs-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Display */
.flex {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.flex--col {
  flex-direction: column;
}

@media (min-width: 768px) {
  .flex-md {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media (min-width: 1100px) {
  .flex-lg {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
/* Backgrounds */
.bg-cover {
  background-size: cover;
  background-position: center;
}

.bgc-default {
  background-color: var(--color-default);
}

.bgc-primary {
  background-color: var(--color-primary);
}

.bgc-secondary {
  background-color: var(--color-secondary);
}

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

.bgc-light {
  background-color: var(--color-light);
}

.bgc-dark {
  background-color: var(--color-dark);
}

.bgc-medium {
  background-color: var(--color-medium);
}

/* Background picture */
.background-picture {
  position: absolute;
  top: 0;
  left: 0;
}

.background-picture,
.background-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Aspect ratio */
.ar {
  display: block;
  width: 100%;
  height: 0;
  overflow: hidden;
}

/* Misc. */
.on-top {
  position: relative;
  z-index: 1;
}

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

.m-x-auto {
  margin-left: auto;
  margin-right: auto;
}

.img-cover {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text */
.ta-center,
.text-center,
.aligncenter,
.has-text-align-center {
  text-align: center;
}

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

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

.fw-regular {
  font-weight: 400;
}

.fw-medium {
  font-weight: 500;
}

.fw-semibold {
  font-weight: 600;
}

.fw-bold {
  font-weight: 700;
}

.tt-upp {
  text-transform: uppercase;
}

.tt-cap {
  text-transform: capitalize;
}

.c-white {
  color: #fff;
}

.c-default {
  color: var(--color-default);
}

.c-primary {
  color: var(--color-primary);
}

.c-secondary {
  color: var(--color-secondary);
}

.c-light {
  color: var(--color-light);
}

.c-medium {
  color: var(--color-medium);
}

.c-dark {
  color: var(--color-dark);
}

.c-blue {
  color: var(--color-blue);
}

.letter--063 {
  letter-spacing: -0.63px;
}

.letter-008 {
  letter-spacing: 0.8px;
}

.letter-16 {
  letter-spacing: 1.6px;
}

@font-face {
  font-family: "Montserrat";
  src: url(../fonts/Montserrat-Regular.ttf) format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url(../fonts/Montserrat-Medium.ttf) format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url(../fonts/Montserrat-SemiBold.ttf) format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url(../fonts/Montserrat-Bold.ttf) format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url(../fonts/Montserrat-ExtraBold.ttf) format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
/* General */
.btn,
.cm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 22px 40px;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  line-height: 1 !important;
  white-space: nowrap;
  text-decoration: none !important;
  background: transparent;
  text-transform: uppercase;
  border-radius: var(--border-radius-large);
  letter-spacing: 0.8px;
  transition: all 0.3s ease;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.btn[disabled] {
  cursor: not-allowed;
}

/* Styles */
.btn--primary,
.cm-btn {
  color: #fff;
  background-color: var(--color-blue);
  transition: all 0.3s ease;
}

.btn--primary:hover,
.cm-btn:hover {
  background: var(--color-primary);
}

.btn--secondary {
  color: var(--color-secondary);
  background: var(--color-white);
  transition: all 0.3s ease;
}

.btn--secondary:hover {
  color: #fff;
  background: var(--color-primary);
}

.btn--tetriary {
  color: var(--color-secondary);
  background: #fff;
  transition: all 0.3s ease;
}

.btn--tetriary svg path {
  fill: var(--color-secondary);
  transition: all 0.3s ease;
}

.btn--tetriary:hover {
  color: #fff;
  background: var(--color-primary);
}

.btn--tetriary:hover svg path {
  fill: #fff;
}

.btn--arrow svg {
  padding-left: 14px;
  width: 38px;
  height: 14px;
  transition: all 0.3s ease;
}

.btn--arrow:hover svg {
  transform: translateX(8px);
}

@media (max-width: 767px) {
  .btn {
    font-size: 14px;
    padding-bottom: 20px;
  }
}
/* General */
body {
  font-family: var(--font-primary);
  color: var(--color-dark);
}

/* Headings */
.h1,
.editor > h1,
.h2,
.editor > h2,
.h3,
.editor > h3,
.h4,
.editor > h4,
.h5,
.editor > h5,
.h6,
.editor > h6 {
  color: var(--color-default);
}

.h1.c-dark,
.h2.c-dark,
.h3.c-dark,
.h4.c-dark,
.h5.c-dark,
.h6.c-dark {
  color: var(--color-dark);
}

.h1,
.editor > h1 {
  font-size: 96px;
  font-weight: 400;
  line-height: 100px;
  letter-spacing: -2.88px;
}

.editor > h1 {
  margin-bottom: 32px;
}

.h2,
.editor > h2 {
  font-size: 58px;
  font-weight: 400;
  line-height: 74px;
  letter-spacing: -1.74px;
}

.editor > h2 {
  margin-bottom: 24px;
}

.h2-lg .h2 {
  font-size: 64px;
  line-height: 72px;
  font-weight: 400;
  letter-spacing: -1.92px;
}

.h3,
.editor > h3 {
  font-size: 42px;
  font-weight: 400;
  line-height: 51px;
  letter-spacing: -1.26px;
}

.editor > h3 {
  margin-bottom: 24px;
}

.h4,
.editor > h4 {
  font-size: 32px;
  font-weight: 600;
  line-height: 39px;
  letter-spacing: -0.32px;
}

.editor > h4 {
  margin-bottom: 16px;
}

.h5,
.editor > h5 {
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -0.72px;
}

.editor > h5,
.editor > h6 {
  margin-bottom: 16px;
}

.subtitle {
  border-radius: var(--border-radius-large);
  border: 1px solid #676E72;
  color: #676E72;
  opacity: 0.8;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  width: fit-content;
  margin-bottom: 32px;
}

/* Font sizes */
body,
.fs-md,
.hs-md-font-size {
  font-size: 18px;
  line-height: 24px;
}

.fs-sm,
.has-sm-font-size {
  font-size: 16px;
  line-height: 20px;
}

.fs-lg,
.has-lg-font-size {
  font-size: 21px;
  line-height: 32px;
  letter-spacing: -0.63px;
}

sub,
sup {
  font-size: 60%;
}

@media (max-width: 1099px) {
  .h1,
.editor > h1 {
    font-size: 48px;
    line-height: 54px;
    letter-spacing: -1.44px;
  }

  .h2,
.editor > h2,
.h2-lg .h2 {
    font-size: 28px;
    line-height: 34px;
    letter-spacing: -0.84px;
  }

  .h3,
.editor > h3,
.h4,
.editor > h4 {
    font-size: 24px;
    line-height: 29px;
    letter-spacing: -0.24px;
  }

  .h5,
.editor > h5 {
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.54px;
  }

  .subtitle {
    padding: 8px 16px;
    font-size: 12px;
    line-height: 15px;
    margin-bottom: 15px;
  }

  body,
.fs-md,
.hs-md-font-size {
    font-size: 16px;
    line-height: 22px;
  }

  .fs-sm,
.has-sm-font-size {
    font-size: 14px;
    line-height: 17px;
  }

  .fs-lg,
.has-lg-font-size {
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.54px;
  }
}
/* General */
.editor > p:last-child,
.editor > ul:last-child,
.editor > ol:last-child {
  margin-bottom: 0 !important;
}

.editor > p {
  margin-bottom: 16px;
}

/* Links */
.editor > * > a,
.edutir > ul a,
.editor > ol a {
  color: var(--color-primary);
}

.editor > * > a:hover,
.edutir > ul a:hover,
.editor > ol a:hover {
  text-decoration: underline;
  color: var(--color-secondary);
}

/* Lists */
.editor > ul,
.editor > ol {
  margin-bottom: 24px;
}

.editor > ol {
  margin-left: 17px;
}

.editor > ul {
  list-style: none;
}

.editor > ul:not(:first-child),
.editor > ol:not(:first-child) {
  margin-top: 24px;
}

.editor > ul li,
.editor > ol li {
  margin-bottom: 12px;
}

.editor > ul li {
  position: relative;
  display: block;
  padding-left: 36px;
}

.editor > ul > li:last-child,
.editor > ol > li:last-child {
  margin-bottom: 0;
}

.editor > ul li:before {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
  content: "";
}

@media (max-width: 767px) {
  .editor > ul, .editor > ol {
    margin-bottom: 16px;
  }

  .editor > ul:not(:first-child), .editor > ol:not(:first-child) {
    margin-top: 17px;
  }
}
/* Tables */
.wp-block-table table {
  width: 100%;
}

.wp-block-table table,
.wp-block-table th,
.wp-block-table td {
  border: 1px solid var(--color-dark);
}

.wp-block-table th,
.wp-block-table td {
  padding: 8px 12px;
}

.wp-block-table th {
  border-bottom-width: 3px;
}

/**
* Header
*/
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}
.site-header .top {
  padding: 14px 0 11px;
}
.site-header .top li {
  margin-left: 16px;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.7px;
}
.site-header .top a:not(.is-active) {
  opacity: 0.7;
}
.site-header__inner {
  padding: 12px 0 24px;
  transition: all 0.3s ease;
}
.site-header .site-logo {
  display: inline-block;
  width: 100%;
  max-width: 170px;
  margin-top: auto;
  margin-bottom: auto;
}
.site-header .site-logo img {
  display: block;
  width: 100%;
}
.site-header .main-menu > ul > .menu-item {
  margin-left: 46px;
}
.site-header .main-menu > ul > .menu-item a {
  letter-spacing: 0.8px;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  position: relative;
  transition: all 0.3s ease;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  z-index: 9999;
}
.site-header .main-menu > ul > .menu-item .sub-menu a {
  width: 100%;
  display: block;
  padding: 4px 0;
}
.site-header .main-menu > ul {
  flex-wrap: nowrap;
}
.site-header .main-menu > ul > .menu-item:hover > a,
.site-header .main-menu > ul > .current_page_item:not(.not-at-section) > a,
.site-header .main-menu > ul > .current-menu-parent > a {
  font-weight: 800;
}
.site-header .menu-indicator svg {
  width: 10px;
  height: 6px;
  margin-left: 8px;
}
.site-header .menu-item-has-children {
  position: relative;
}
.site-header .menu-item-has-children > a {
  display: flex;
  margin-top: 3px;
}
.site-header .btn {
  margin-left: 46px;
  padding: 18px 32px;
}

.is-scrolled .site-header .top {
  display: none;
}
.is-scrolled .site-header__inner {
  padding-top: 16px;
  padding-bottom: 16px;
  background: var(--color-light);
  box-shadow: 0 5px 30px 0 rgba(47, 52, 55, 0.05);
}
.is-scrolled .site-header .btn {
  color: #fff !important;
}

.first-block-acf-hero.is-scrolled .site-header .main-menu > ul > li > a,
.is-scrolled .site-header a,
.first-block-acf-hero.is-scrolled .site-header .lang-switch__link {
  color: var(--color-default);
}

.first-block-acf-hero .site-header .main-menu > ul > li > a,
.first-block-acf-hero .site-header .lang-switch__link {
  color: #fff;
}

.is-scrolled .site-header .main-menu > ul > .menu-item:hover > a,
.first-block-acf-hero.is-scrolled .site-header .main-menu > ul > li:hover > a,
body:not(.first-block-acf-hero) .site-header .main-menu > ul > .menu-item:hover > a {
  color: var(--color-blue);
}

.is-scrolled .site-header .menu-item svg path,
body:not(.first-block-acf-hero) .site-header .menu-item svg path {
  fill: var(--color-default);
}

.is-scrolled .site-header .menu-item:hover svg path,
body:not(.first-block-acf-hero) .site-header .menu-item:hover svg path {
  fill: var(--color-blue);
}

@media (min-width: 1099px) {
  .site-header .menu-item-has-children > .sub-menu {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    background: #fff;
    z-index: 999;
    margin-top: 32px;
    border-radius: 18px;
    min-width: 300px;
    padding: 12px 24px;
    box-shadow: 0 5px 20px 0 rgba(27, 25, 37, 0.05);
  }
  .site-header .menu-item-has-children > .sub-menu::before {
    content: "";
    position: absolute;
    top: -70px;
    left: 0;
    width: 100%;
    height: 70px;
  }
  .site-header .menu-item-has-children > .sub-menu .menu-item a:hover, .site-header .menu-item-has-children > .sub-menu .menu-item.current-menu-item > a {
    color: var(--color-blue);
  }
  .site-header .menu-item-has-children.services .sub-menu {
    max-width: var(--site-width);
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 22px;
    flex-wrap: wrap;
    padding: 24px 0 0 24px;
  }
  .site-header .menu-item-has-children.services .sub-menu .menu-item {
    flex-wrap: nowrap;
    display: flex;
    width: 24%;
    align-items: center;
    margin-right: 1%;
    padding: 12px 16px;
    border-radius: 16px;
    transition: all 0.3s ease;
  }
  .site-header .menu-item-has-children.services .sub-menu .menu-item:hover {
    background: var(--color-light);
  }
  .site-header .menu-item-has-children.services .sub-menu .menu-item svg {
    height: 48px;
    width: 48px;
    margin-right: 16px;
  }
  .site-header .menu-item-has-children.sectors {
    position: relative;
  }
  .site-header .menu-item-has-children.sectors .sub-menu {
    padding: 24px 40px 8px 48px;
  }
  .site-header .menu-item-has-children.sectors .sub-menu .menu-item a {
    position: relative;
  }
  .site-header .menu-item-has-children.sectors .sub-menu .menu-item a::after {
    content: "";
    position: absolute;
    right: 0;
    top: 4px;
    width: 24px;
    height: 12px;
    background-size: contain;
    display: inline-block;
    vertical-align: middle;
    opacity: 0;
    transition: all 0.3s ease;
  }
  .site-header .menu-item-has-children.sectors .sub-menu .menu-item a:hover {
    padding-right: 50px;
  }
  .site-header .menu-item-has-children.sectors .sub-menu .menu-item a:hover::after {
    opacity: 1;
  }
  .site-header .menu-item-has-children:hover > .sub-menu,
.site-header .menu-item-has-children.open > .sub-menu {
    display: block;
  }
  .site-header .menu-item-has-children.services:hover > .sub-menu {
    display: flex;
  }
  .site-header .menu-item a:before {
    display: block;
    height: 0;
    font-weight: 800;
    overflow: hidden;
    visibility: hidden;
    content: attr(data-title);
  }

  .is-scrolled .site-header .menu-item-has-children.services:hover > .sub-menu {
    top: 82px;
  }
}
@media (max-width: 1099px) {
  .site-header__inner,
.is-scrolled .site-header__inner {
    padding: 15px 0;
  }

  .nav-open a {
    color: var(--color-dark) !important;
  }

  .site-header .top {
    display: none;
  }
  .site-header .site-logo {
    max-width: 152px;
  }
  .site-header .nav-main {
    position: fixed;
    top: 64px;
    left: 200vw;
    right: 0;
    background: var(--color-light);
    z-index: 999;
    padding: 42px 32px 48px;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
    transition: all 0.3s ease;
  }
  .site-header .main-menu {
    width: 100%;
  }
  .site-header .main-menu .flex {
    flex-direction: column;
    gap: 48px;
  }
  .site-header .main-menu > ul > .menu-item {
    margin-left: 0;
  }
  .site-header .main-menu > ul > .menu-item > a {
    text-transform: uppercase;
    font-size: 21px;
    line-height: 26px;
  }
  .site-header .main-menu .menu-item-has-children {
    padding-right: 32px;
  }
  .site-header .main-menu > ul > .menu-item .sub-menu a {
    line-height: 22px;
    font-size: 18px;
    width: 100%;
    display: block;
    opacity: 0.8;
  }
  .site-header .main-menu > ul > .menu-item .sub-menu .current_page_item a,
.site-header .main-menu > ul > .menu-item .sub-menu a:hover {
    color: var(--color-blue) !important;
  }
  .site-header .main-menu .menu-indicator {
    display: none !important;
  }
  .site-header .main-menu .sub-menu {
    display: flex;
    flex-direction: column;
    margin: 19px 0 -3px;
    gap: 8px;
  }
  .site-header .nav-bottom {
    margin-top: 24px;
  }
  .site-header .login {
    align-self: flex-start;
    color: var(--color-medium);
  }
  .site-header .login svg {
    margin-right: 5px;
  }
  .site-header .login svg path {
    fill: var(--color-medium);
  }
  .site-header .header-link {
    margin: 21px 0 0;
    width: 100%;
    padding: 24px;
    font-size: 16px;
  }
  .site-header .menu-item-has-children.open > .sub-menu {
    display: block;
  }
  .site-header .menu-item-has-children.services .sub-menu a {
    line-height: 48px;
  }
  .site-header .menu-item-has-children.sectors .sub-menu a {
    line-height: 40px;
  }
  .site-header .sub-menu {
    display: none;
    margin-top: -8px;
    margin-bottom: 8px;
  }
  .site-header .sub-menu .menu-item {
    display: flex;
    align-items: center;
    border-bottom: none;
  }
  .site-header .sub-menu a {
    text-transform: none;
    letter-spacing: 0;
    font-weight: 300 !important;
  }
  .site-header .sub-menu svg {
    height: 32px;
    width: 32px;
    margin-right: 16px;
  }
  .site-header .nav-bottom,
.site-header .btn {
    width: 100%;
  }
  .site-header .btn {
    margin: 0;
    font-size: 18px;
    padding: 26px;
    color: #fff !important;
  }

  .language-switcher svg.globe {
    margin-right: 8px;
  }
  .language-switcher svg.globe path {
    fill: var(--color-medium);
  }

  .nav-open .site-header__inner {
    background: var(--color-light);
  }
  .nav-open .site-header .nav-main {
    left: 0;
    bottom: 0;
    opacity: 1;
  }
}
/**
* Language switcher
*/
.language-switcher {
  margin-left: 10px;
  cursor: pointer;
}

.lang-switch {
  position: relative;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  padding-left: 4px;
}
.lang-switch__current {
  position: relative;
  padding-right: 16px;
  opacity: 0.8;
  cursor: default;
}
.lang-switch__arrow {
  position: absolute;
  top: 5px;
  right: 3px;
}
.lang-switch__dropdown {
  display: none;
}
.lang-switch__caret {
  left: 20px;
}
.lang-switch__caret svg {
  vertical-align: middle !important;
}

.language-switcher:hover .lang-switch__dropdown {
  display: block;
  position: absolute;
  top: 20px;
  left: -26px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 20px 0 rgba(27, 25, 37, 0.05);
  padding: 8px 24px;
}
.language-switcher:hover .lang-switch__dropdown .lang-switch__link {
  margin-right: 0;
  color: var(--color-dark);
  font-size: 14px;
}
.language-switcher:hover .lang-switch__dropdown .lang-switch__link:hover {
  color: var(--color-default);
  text-decoration: none;
}
.language-switcher:hover .lang-switch__caret svg {
  transform: scale(-1);
}

.lang-switch__link.is-active {
  font-weight: 600;
}

.lang-switch__link.is-active,
.lang-switch__link:hover {
  opacity: 1 !important;
}

@media (max-width: 1099px) {
  .lang-switch {
    padding-left: 0;
    margin-left: 0;
  }

  .lang-switch__item {
    font-size: 14px;
    margin-left: 14px;
  }

  .lang-switch__link {
    opacity: 0.8;
    transition: all 0.3s ease;
  }

  .lang-switch__link.is-active {
    opacity: 1;
  }
}
/**
* Social network
*/
.site-header .social-nav__wrapper {
  padding-left: 20px;
  border-left: 1px solid #fff;
  margin-left: 22px;
}

/**
 * Burger menu
 */
.burger {
  position: relative;
  display: block;
  width: 44px;
  height: 44px;
  margin-left: 16px;
  background: var(--color-blue);
  border-radius: 32px;
}
.burger__part {
  position: absolute;
  left: 13px;
  width: 18px;
  height: 1px;
  background: #fff;
}
.burger__part--top {
  top: 15px;
}
.burger__part--mid {
  top: 21px;
}
.burger__part--bot {
  top: 27px;
}

.nav-open .site-header .burger {
  background: var(--color-secondary);
}
.nav-open .site-header .burger__part {
  width: 18px;
}
.nav-open .site-header .burger__part--top {
  transform: translate(0px, 6px) rotate(45deg);
}
.nav-open .site-header .burger__part--mid {
  opacity: 0;
}
.nav-open .site-header .burger__part--bot {
  transform: translate(0px, -6px) rotate(-45deg);
}

/* Developer */
.pdg-developer__label {
  margin-right: 16px;
}

.pdg-developer__logo {
  width: 68px;
  height: 26px;
  background-size: 100% 100%;
}

.site-footer .inner {
  padding-top: 90px;
}
.site-footer__logo-wrap {
  width: 170px;
  margin-bottom: 42px;
}
.site-footer .title {
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 1.4px;
  margin-bottom: 13px;
}
.site-footer .link {
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.7px;
  margin-top: 12px;
  display: inline-block;
  margin-right: 7px;
}
.site-footer .legal-links,
.site-footer .pdg-developer__label {
  opacity: 0.7;
}
.site-footer .legal-links a,
.site-footer .pdg-developer__label,
.site-footer .copyright {
  font-size: 16px;
  line-height: 20px;
}
.site-footer .legal-links a,
.site-footer .contacts a {
  margin-right: 16px;
  color: #fff;
}
.site-footer a {
  transition: all 0.3s ease;
}
.site-footer a:hover {
  text-decoration: underline;
}
.site-footer .legal-links li:last-child a {
  margin-right: 0;
}
.site-footer__bottom {
  padding-top: 25px;
  padding-bottom: 23px;
  margin-top: 44px;
  border-top: 1px solid #40464a;
}

@media (max-width: 767px) {
  .site-footer .inner {
    padding-top: 56px;
  }
  .site-footer .inner .fs-sm {
    font-size: 16px;
    line-height: 20px;
  }
  .site-footer__logo-wrap {
    max-width: 134px;
    margin-bottom: 32px;
  }
  .site-footer .contacts {
    margin-top: 30px;
  }
  .site-footer__bottom {
    margin-top: 26px;
    padding-bottom: 25px;
  }
  .site-footer__bottom .order-sm-1 {
    order: -1;
  }
  .site-footer__bottom .legal-links a,
.site-footer__bottom .pdg-developer__label,
.site-footer__bottom .copyright {
    font-size: 14px;
    line-height: 17px;
  }
  .site-footer__bottom .justify-content-end,
.site-footer__bottom .flex {
    justify-content: center !important;
  }
  .site-footer__bottom .copyright,
.site-footer__bottom .legal-links {
    margin-bottom: 9px;
  }
}
.site-wrap {
  background: var(--color-light);
}

span.spec {
  color: var(--color-primary);
  font-weight: 600;
}

.bg-image span.spec,
.bgc-secondary span.spec {
  color: inherit;
}

.bg-image,
.bgc-secondary {
  color: #fff;
}

.bg-image .subtitle,
.bgc-secondary .subtitle {
  color: #fff;
  border-color: #fff;
}

.section {
  padding-top: 150px;
  padding-bottom: 150px;
}

.section-sm {
  padding-top: 100px;
  padding-bottom: 100px;
}

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

.text p {
  margin-bottom: 8px;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.text-center .subtitle {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1099px) {
  .section,
.section-sm {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
#klaro {
  opacity: 0;
}

body:not(.first-block-custom) .site-content {
  padding-top: 150px;
}

body:not(.last-block-custom) .site-content {
  padding-bottom: 150px;
}

@media (max-width: 767px) {
  body:not(.first-block-custom) .site-content {
    padding-top: 80px;
  }

  body:not(.last-block-custom) .site-content {
    padding-bottom: 80px;
  }
}
