/*
Theme Name: iunxi
Author: Diepcreative
Author URI: https://diepcreative.nl
Text Domain: iunxi
Version: 1.0
*/
/* Theme reset */
/* ************ */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline; }

body {
  line-height: 1; }

button {
  outline: 0; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none; }

q {
  display: inline;
  font-style: italic; }

q:before {
  content: '"';
  font-style: normal; }

q:after {
  content: '"';
  font-style: normal; }

textarea, input[type="text"], input[type="button"], input[type="submit"], input[type="reset"], input[type="search"], input[type="password"] {
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

th, td {
  padding: 2px; }

big {
  font-size: 120%; }

small, sup, sub {
  font-size: 80%; }

sup {
  vertical-align: super; }

sub {
  vertical-align: sub; }

dd {
  margin-left: 20px; }

kbd, tt {
  font-family: courier;
  font-size: 12px; }

ins {
  text-decoration: underline; }

del, strike, s {
  text-decoration: line-through; }

dt {
  font-weight: bold; }

address, cite, var {
  font-style: italic; }

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

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent; }

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important; }

/* Mediaqueries */
/* ************ */
/* General variables */
/* ************ */
/* Color variables */
/* ************ */
/* Shadow variables */
/* ************ */
/* Various variables */
/* ************ */
/* Fonts */
/* ************ */
@font-face {
  font-family: 'vw_headbold';
  src: url("assets/fonts/vwheadbold/vwheadbold-webfont.woff2") format("woff2"), url("assets/fonts/vwheadbold/vwheadbold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'vw_headregular';
  src: url("assets/fonts/vwheadregular/vwheadregular-webfont.woff2") format("woff2"), url("assets/fonts/vwheadregular/vwheadregular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'porticooutline';
  src: url("assets/fonts/portico_outline/portico_outline_400-webfont.woff2") format("woff2"), url("assets/fonts/portico_outline/portico_outline_400-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal; }
/* Mixins */
/* ************ */
/* Buttons */
/* ************ */
button {
  cursor: pointer; }

.button-general {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 8px 18px;
  background-color: #1792e1;
  border-radius: 200px;
  transition: all 150ms ease-in-out; }
  @media only screen and (max-width: 768px) {
    .button-general {
      gap: 14px; } }
  .button-general .button-text {
    font-family: "vw_headbold", sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    color: #fff; }
  .button-general .icon {
    display: flex;
    align-items: center;
    border-radius: 200px; }
    .button-general .icon svg {
      fill: #fff; }
      @media only screen and (max-width: 768px) {
        .button-general .icon svg {
          width: 19px;
          height: 19px; } }
  .button-general:hover {
    background-color: #445d98;
    text-decoration: none !important; }
    .button-general:hover .icon {
      animation: right_left 2s infinite; }
  .button-general.white {
    background-color: transparent;
    border: 1px solid #1792e1; }
    .button-general.white .button-text {
      color: #1792e1;
      transition: color 150ms ease-in-out; }
    .button-general.white .icon svg {
      fill: #1792e1;
      transition: fill 150ms ease-in-out; }
    .button-general.white:hover {
      border: 1px solid #445d98; }
      .button-general.white:hover .button-text {
        color: #445d98; }
      .button-general.white:hover .icon svg {
        fill: #445d98; }
  .button-general.white-border {
    background-color: transparent;
    border: 1px solid #fff; }
    .button-general.white-border .button-text {
      color: #fff;
      transition: color 150ms ease-in-out; }
    .button-general.white-border .icon svg {
      fill: #fff;
      transition: fill 150ms ease-in-out; }
    .button-general.white-border:hover {
      background-color: #fff; }
      .button-general.white-border:hover .button-text {
        color: #1792e1; }
      .button-general.white-border:hover .icon svg {
        fill: #1792e1; }
  .button-general.orange {
    background-color: #ffa600; }
    .button-general.orange .button-text {
      transition: color 150ms ease-in-out; }
    .button-general.orange .icon svg {
      transition: fill 150ms ease-in-out; }
    .button-general.orange:hover {
      background-color: #fff; }
      .button-general.orange:hover .button-text {
        color: #1792e1; }
      .button-general.orange:hover .icon svg {
        fill: #1792e1; }
  .button-general.right {
    float: right; }
    .button-general.right:first-of-type {
      margin-left: auto; }
  .button-general.center {
    position: relative;
    left: 50%;
    transform: translateX(-50%); }
  .button-general.loading .icon {
    width: 20px;
    height: 20px;
    background-image: url("assets/images/loading-spinner-2.0.png");
    background-repeat: no-repeat;
    background-position-x: 0;
    background-position-y: 0;
    background-size: 20px;
    animation: none; }
    .button-general.loading .icon svg {
      display: none; }
@keyframes right_left {
  0% {
    transform: translateX(0) translateY(0); }
  20% {
    transform: translateX(14px) translateY(0); }
  40% {
    transform: translateX(0) translateY(0); } }
.button-circle {
  display: flex;
  align-items: center;
  gap: 14px; }
  @media only screen and (max-width: 768px) {
    .button-circle {
      gap: 12px; } }
  .button-circle .button-text {
    font-family: "vw_headbold", sans-serif;
    text-transform: uppercase; }
  .button-circle .icon {
    display: block;
    border-radius: 200px;
    padding: 6px;
    background-color: #1792e1;
    transition: background-color 150ms ease-in-out; }
    @media only screen and (max-width: 768px) {
      .button-circle .icon {
        padding: 5px; } }
    .button-circle .icon svg {
      fill: #fff;
      width: 25px;
      height: 25px; }
  .button-circle:hover .icon {
    background-color: #445d98;
    animation: right_left 2s infinite; }
  .button-circle.right {
    float: right; }
    .button-circle.right:first-of-type {
      margin-left: auto; }
  .button-circle.bare {
    gap: 10px; }
    .button-circle.bare .button-text {
      font-family: "Roboto", sans-serif;
      font-weight: 500;
      text-transform: none;
      color: #000; }
    .button-circle.bare .icon {
      background-color: transparent; }
      .button-circle.bare .icon svg {
        fill: #000; }
@keyframes right_left {
  0% {
    transform: translateX(0) translateY(0); }
  20% {
    transform: translateX(14px) translateY(0); }
  40% {
    transform: translateX(0) translateY(0); } }
.button-circle-before {
  display: flex;
  align-items: center;
  gap: 16px; }
  @media only screen and (max-width: 768px) {
    .button-circle-before {
      gap: 14px; } }
  .button-circle-before .button-text {
    font-size: 16px;
    line-height: 1;
    order: 1;
    color: #1792e1; }
    @media only screen and (max-width: 768px) {
      .button-circle-before .button-text {
        font-size: 14px; } }
  .button-circle-before .icon {
    display: block;
    border-radius: 200px;
    padding: 6px;
    background-color: #fff;
    transition: background-color 150ms ease-in-out; }
    @media only screen and (max-width: 768px) {
      .button-circle-before .icon {
        padding: 4px; } }
    .button-circle-before .icon svg {
      fill: #747474;
      width: 20px;
      height: 20px; }
      @media only screen and (max-width: 768px) {
        .button-circle-before .icon svg {
          width: 16px;
          height: 16px; } }
  .button-circle-before:hover .icon {
    animation: right_left 1s; }
@keyframes right_left {
  0% {
    transform: translateX(0) translateY(0); }
  20% {
    transform: translateX(10px) translateY(0); }
  40% {
    transform: translateX(0) translateY(0); } }
.button-mobile-main-menu {
  display: block;
  position: relative;
  width: 26px;
  height: 16px;
  cursor: pointer;
  appearance: none;
  border: none;
  background-color: transparent;
  transform: scaleY(-1);
  z-index: 11; }
  .button-mobile-main-menu span {
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    background-color: #000;
    transition: 0.3s; }
    .button-mobile-main-menu span:first-of-type {
      width: 18px;
      margin-right: 10px; }
    .button-mobile-main-menu span:last-of-type {
      top: 12px;
      width: 28px; }
  .button-mobile-main-menu.active span {
    background-color: #000; }
    .button-mobile-main-menu.active span:first-of-type {
      margin: 0;
      transform: rotate(45deg);
      top: 8px;
      width: 28px; }
    .button-mobile-main-menu.active span:last-of-type {
      transform: rotate(-45deg);
      top: 8px; }

.slick-arrow {
  align-self: center;
  appearance: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
  padding: 0; }
  .slick-arrow img {
    width: 12px; }
  .slick-arrow.slick-prev {
    transform: rotate(180deg); }

.button-scroll-down {
  position: relative;
  display: inline-block;
  margin-right: 180px;
  color: #fff;
  letter-spacing: .1em;
  text-decoration: none;
  transition: opacity .3s; }
  @media only screen and (max-width: 768px) {
    .button-scroll-down {
      padding: 20px 0;
      margin-right: 0;
      order: 3; } }
  .button-scroll-down .scroll-down-text, .button-scroll-down .arrow {
    position: absolute; }
  .button-scroll-down .scroll-down-text {
    display: none;
    top: -26px;
    color: #000;
    transform: translateX(-50%);
    white-space: nowrap;
    animation: down_up2 2s infinite; }
    @media only screen and (max-width: 768px) {
      .button-scroll-down .scroll-down-text {
        top: 5px; } }
  .button-scroll-down .arrow {
    top: 0;
    left: 50%;
    width: 12px;
    height: 12px;
    margin-left: -12px;
    border-left: 3px solid #f2f7fc;
    border-bottom: 3px solid #f2f7fc;
    animation: down_up 2s infinite;
    box-sizing: border-box;
    transform: rotate(-45deg); }
    @media only screen and (max-width: 768px) {
      .button-scroll-down .arrow {
        top: 30px; } }
@keyframes down_up {
  0% {
    transform: rotate(-45deg) translate(0, 0); }
  20% {
    transform: rotate(-45deg) translate(-10px, 10px); }
  40% {
    transform: rotate(-45deg) translate(0, 0); } }
@keyframes down_up2 {
  0% {
    transform: translateX(-50%) translateY(0); }
  20% {
    transform: translateX(-50%) translateY(14px); }
  40% {
    transform: translateX(-50%) translateY(0); } }
.dropdown {
  position: relative; }
  .dropdown .button-dropdown {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    cursor: pointer;
    font-family: "Roboto", sans-serif;
    font-size: 15px; }
    .dropdown .button-dropdown span {
      text-transform: uppercase;
      transition: color 150ms ease-in-out; }
    .dropdown .button-dropdown svg {
      display: block;
      width: 7px;
      height: 7px;
      transition: fill 150ms ease-in-out; }
    .dropdown .button-dropdown:hover span {
      color: #1792e1; }
    .dropdown .button-dropdown:hover svg {
      fill: #1792e1; }
  .dropdown .tags {
    display: none;
    position: absolute;
    margin-top: 10px;
    min-width: 260px;
    right: 0;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    z-index: 1;
    background-color: #fff; }
    .dropdown .tags li {
      display: block;
      padding: 16px;
      text-decoration: none;
      border-bottom: 1px solid #e8e8e8;
      line-height: 1;
      cursor: pointer; }
      .dropdown .tags li:hover, .dropdown .tags li.active {
        background-color: #f2f2f2; }
      .dropdown .tags li:last-of-type {
        border-bottom: none; }
      .dropdown .tags li.loading .icon {
        background-image: url("assets/images/loading-spinner-2.0.png");
        background-repeat: no-repeat;
        background-position-x: 0;
        background-position-y: 0;
        background-size: 12px;
        filter: invert(1);
        animation: none; }
        .dropdown .tags li.loading .icon svg {
          display: none; }
      .dropdown .tags li .icon {
        display: inline-block;
        float: right;
        width: 12px;
        height: 12px; }
  .dropdown.show .tags {
    display: block; }
  .dropdown.dropdown-sort-by {
    float: right; }
    .dropdown.dropdown-sort-by .tags {
      padding: 20px;
      right: 0; }
      .dropdown.dropdown-sort-by .tags li a {
        text-align: right; }

.button-close {
  padding: 0;
  line-height: 1;
  cursor: pointer;
  border: none;
  background-color: transparent; }
  .button-close svg {
    width: 14px;
    transition: fill 100ms ease-in-out; }
  .button-close:hover svg {
    fill: #1792e1; }

.button-fold {
  position: absolute;
  right: 20px;
  appearance: none;
  border: none;
  background-color: transparent;
  padding: 0; }
  .button-fold img {
    width: 10px;
    height: 30px; }

.button-normal {
  padding: 0;
  border: none;
  background-color: transparent; }

.button-back {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-family: "vw_headbold", sans-serif;
  text-transform: uppercase; }
  .button-back .title {
    padding-left: 8px; }
  .button-back:before {
    content: '';
    width: 16px;
    height: 16px;
    transform: scale(-1, 1);
    background-image: url("assets/images/icons/icon-arrow-right-light-1.2.svg");
    background-repeat: no-repeat;
    background-position-x: 0;
    background-position-y: 0; }

/* General */
/* ************ */
html {
  overflow-x: hidden;
  scroll-behavior: smooth; }

body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: #333333;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  font-feature-settings: "lnum" 1; }
  @media only screen and (max-width: 768px) {
    body {
      line-height: 1.7; } }
  body:before {
    display: none; }

.overflow-hidden {
  overflow: hidden; }

.section {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px; }
  @media only screen and (max-width: 768px) {
    .section {
      padding-left: 25px;
      padding-right: 25px; } }
  .section .inner {
    max-width: 1200px;
    margin: 0 auto; }

.section-full {
  display: flex;
  justify-content: center; }
  .section-full .inner {
    max-width: none;
    width: 100%; }

.section-full-right {
  display: flex;
  justify-content: flex-start;
  max-width: none;
  padding-left: 0;
  padding-right: 0; }
  @media only screen and (max-width: 1350px) {
    .section-full-right {
      padding-left: 20px; } }
  @media only screen and (max-width: 768px) {
    .section-full-right {
      padding-left: 25px;
      padding-right: 25px; } }
  .section-full-right .inner {
    width: 100%;
    margin-left: max(0px, (100% - 1300px)/2); }
    @media only screen and (min-width: 2501px) {
      .section-full-right .inner {
        width: 100%;
        max-width: 2000px; } }
    @media only screen and (max-width: 1350px) {
      .section-full-right .inner {
        width: 100%;
        margin-left: auto; } }

a {
  color: inherit;
  text-decoration: none; }

/* Titles */
/* ************ */
h1, h2, h3, h4, .h1, .h2, .h3, .h4 {
  line-height: 1.2;
  font-family: "vw_headbold", sans-serif;
  font-weight: normal;
  color: #000;
  text-size-adjust: none; }

h1, .h1, h2, .h2, h3, .h3 {
  line-height: 1.2;
  color: #000; }

h1, .h1 {
  font-size: 56px;
  line-height: 1.1; }
  @media only screen and (max-width: 1350px) {
    h1, .h1 {
      font-size: 40px; } }
  @media only screen and (max-width: 768px) {
    h1, .h1 {
      font-size: 30px; } }

/* Used mainly for block titles */
h2, .h2 {
  font-size: 44px; }
  @media only screen and (max-width: 768px) {
    h2, .h2 {
      font-size: 30px; } }

h3, .h3 {
  font-size: 30px; }
  @media only screen and (max-width: 768px) {
    h3, .h3 {
      font-size: 24px; } }

h4, .h4 {
  font-size: 18px; }

svg {
  display: block;
  width: 20px;
  height: 20px; }

.circles {
  position: relative; }
  .circles:before {
    content: '';
    position: absolute;
    top: 0.4em;
    left: -30px;
    right: 0;
    bottom: 0;
    background-image: url("assets/images/icons/icon-circles-1.0.svg");
    background-repeat: no-repeat;
    background-size: 22px;
    pointer-events: none; }
    @media only screen and (max-width: 768px) {
      .circles:before {
        left: -18px;
        background-size: 16px; } }
  @media only screen and (max-width: 1350px) {
    .circles.at-border:before {
      left: -20px; } }

.checkmark {
  position: relative; }
  .checkmark:before {
    content: '';
    position: absolute;
    top: 2px;
    left: -34px;
    right: 0;
    bottom: 0;
    background-image: url("assets/images/icons/icon-checkmark-1.0.svg");
    background-repeat: no-repeat;
    background-size: 20px;
    pointer-events: none; }
    @media only screen and (max-width: 1024px) {
      .checkmark:before {
        top: 5px;
        left: -22px;
        background-size: 16px; } }
    @media only screen and (max-width: 768px) {
      .checkmark:before {
        top: 6px;
        left: -18px;
        background-size: 14px; } }

@media only screen and (max-width: 1024px) {
  .boxes .box-even {
    top: -50px !important;
    right: auto !important;
    left: 40px !important;
    width: calc(100% + -40px) !important; } }
@media only screen and (max-width: 1024px) {
  .boxes .box-border {
    width: calc(100% - 40px) !important;
    height: 100% !important;
    left: 20px !important;
    right: auto !important; } }
@media only screen and (max-width: 1024px) {
  .boxes .box-image, .boxes .box-google-maps {
    width: calc(100% - 40px) !important; } }
@media only screen and (max-width: 1024px) {
  .boxes .box-image img, .boxes .box-image iframe, .boxes .box-google-maps img, .boxes .box-google-maps iframe {
    min-height: 300px !important;
    aspect-ratio: 2/1; } }
@media only screen and (max-width: 768px) {
  .boxes .box-image img, .boxes .box-image iframe, .boxes .box-google-maps img, .boxes .box-google-maps iframe {
    aspect-ratio: 1/1; } }

.continuous-text {
  display: flex;
  align-items: center; }
  .continuous-text .scroll {
    white-space: nowrap;
    text-transform: uppercase; }
    .continuous-text .scroll div {
      display: flex;
      gap: 2em; }
      .continuous-text .scroll div p {
        font-family: "vw_headbold", sans-serif;
        font-size: 200px;
        font-weight: bold;
        line-height: 1;
        color: transparent;
        -webkit-text-stroke: 2px #fff;
        user-select: none; }
        @media only screen and (max-width: 1024px) {
          .continuous-text .scroll div p {
            font-size: 150px;
            font-family: "porticooutline", sans-serif;
            font-weight: normal;
            color: #aeaeae;
            -webkit-text-stroke: unset; } }
        @media only screen and (max-width: 768px) {
          .continuous-text .scroll div p {
            font-size: 100px; } }
      .continuous-text .scroll div.RightToLeft {
        animation: RightToLeft 60s infinite linear; }
      .continuous-text .scroll div.LeftToRight {
        animation: LeftToRight 60s infinite linear; }

.mark-up h1, .mark-up h2, .mark-up h3, .mark-up h4, .mark-up h5, .mark-up h6 {
  font-family: "vw_headbold", sans-serif;
  color: #333333;
  line-height: 1.5;
  margin-bottom: 1em; }
.mark-up h4 {
  font-size: 18px; }
.mark-up p {
  margin-bottom: 1em; }
  .mark-up p:last-of-type {
    margin-bottom: 0; }
.mark-up strong {
  font-weight: bold; }
.mark-up ul, .mark-up ol {
  padding-left: 0;
  margin-bottom: 1em;
  list-style-position: outside; }
  .mark-up ul li, .mark-up ol li {
    margin-bottom: 3px;
    line-height: 1.6; }
    @media only screen and (max-width: 768px) {
      .mark-up ul li, .mark-up ol li {
        margin-bottom: 6px;
        line-height: 1.4; } }
.mark-up ul {
  list-style-type: disc; }
  .mark-up ul ul {
    list-style-type: circle; }
.mark-up ol {
  list-style-type: decimal; }
.mark-up blockquote {
  margin-left: 3em; }
.mark-up a {
  color: #1792e1;
  text-decoration: none; }
  .mark-up a:hover {
    text-decoration: underline; }
.mark-up .alignleft {
  float: left;
  margin: 10px;
  margin-left: 0; }
  @media only screen and (max-width: 768px) {
    .mark-up .alignleft {
      float: none;
      margin: 5px auto; } }
.mark-up .alignright {
  float: right;
  margin: 10px;
  margin-right: 0; }
  @media only screen and (max-width: 768px) {
    .mark-up .alignright {
      float: none;
      margin: 5px auto; } }
.mark-up .wp-caption-text {
  margin-top: 10px;
  text-align: center;
  font-size: 15px; }
.mark-up img {
  display: block; }

[data-aos="curtain"] .effects .effect {
  transition: transform 1500ms ease-in-out; }
[data-aos="curtain"].aos-animate .effects .effect-left {
  transform: scaleX(0); }
[data-aos="curtain"].aos-animate .effects .effect-right {
  transform: scaleX(0); }

/* Wrapper-partners */
.wrapper-partners {
  display: flex; }
  .wrapper-partners .partner img {
    display: block;
    width: 180px;
    height: 180px;
    margin: 0 auto; }

/* Slick Slider */
.slick-slider .slick-arrow.slick-disabled {
  opacity: 0.2; }

/* General accordeon */
.general-accordeon {
  width: 100%; }
  .general-accordeon .row {
    width: 100%;
    padding: 0 20px;
    font-size: 20px;
    border-bottom: 1px solid #e8e8e8; }
    @media only screen and (max-width: 768px) {
      .general-accordeon .row {
        padding: 0;
        font-size: 18px; } }
    .general-accordeon .row .title-button {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin: 25px 0;
      cursor: pointer; }
      @media only screen and (max-width: 768px) {
        .general-accordeon .row .title-button {
          margin: 20px 0; } }
      .general-accordeon .row .title-button .title {
        display: block;
        padding-right: 20px;
        line-height: 1.4;
        transition: color 150ms ease-in-out; }
      .general-accordeon .row .title-button button {
        width: 16px;
        height: 16px;
        padding: 0;
        border: none;
        background-color: transparent; }
        .general-accordeon .row .title-button button svg {
          width: 16px;
          height: 16px;
          transform: rotate(90deg);
          transition: all 150ms ease-in-out; }
      .general-accordeon .row .title-button:hover .title {
        color: #1792e1; }
        @media only screen and (max-width: 768px) {
          .general-accordeon .row .title-button:hover .title {
            color: inherit; } }
      .general-accordeon .row .title-button:hover button svg {
        fill: #1792e1; }
        @media only screen and (max-width: 768px) {
          .general-accordeon .row .title-button:hover button svg {
            fill: inherit; } }
      .general-accordeon .row .title-button.minus button svg {
        transform: rotate(-90deg); }
    .general-accordeon .row .wrapper {
      display: none;
      padding: 0 0 20px 0;
      font-size: 16px; }
      @media only screen and (max-width: 768px) {
        .general-accordeon .row .wrapper {
          padding: 10px 0 10px 0; } }
      .general-accordeon .row .wrapper .area {
        margin-bottom: 20px; }
        .general-accordeon .row .wrapper .area .sub-title {
          display: block; }
    .general-accordeon .row:first-of-type {
      border-top: 1px solid #e8e8e8; }

html .mfp-bg {
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0.9; }
html .mfp-container {
  padding-left: 0;
  padding-right: 0; }
html .mfp-figure:after {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); }
html .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  color: #fff !important;
  cursor: auto; }
html .mfp-wrap.same-width-and-height .mfp-content {
  height: 800px;
  max-height: 90vh;
  width: 1000px;
  max-width: 90vw; }
  @media only screen and (max-width: 768px) {
    html .mfp-wrap.same-width-and-height .mfp-content {
      max-height: 60vh; } }
  html .mfp-wrap.same-width-and-height .mfp-content .mfp-figure {
    height: 100%; }
    html .mfp-wrap.same-width-and-height .mfp-content .mfp-figure figure {
      height: 100%; }
  html .mfp-wrap.same-width-and-height .mfp-content .mfp-img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    max-width: none !important;
    max-height: none !important; }
html .mfp-image-holder .mfp-close, html .mfp-iframe-holder .mfp-close {
  cursor: pointer; }
html .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: pointer;
  color: #000;
  opacity: 1; }
html .mfp-arrow {
  width: 24px;
  opacity: 1; }
  html .mfp-arrow:before, html .mfp-arrow:after {
    border: none; }
  html .mfp-arrow img {
    display: block;
    width: 70%;
    height: 100%;
    pointer-events: none; }
    @media only screen and (max-width: 768px) {
      html .mfp-arrow img {
        width: 80%; } }
  html .mfp-arrow.mfp-arrow-right {
    transform: scaleX(-1);
    right: 25px; }
    @media only screen and (max-width: 900px) {
      html .mfp-arrow.mfp-arrow-right {
        transform: scaleX(-1) scale(0.75);
        right: 45px; } }
    @media only screen and (max-width: 768px) {
      html .mfp-arrow.mfp-arrow-right {
        right: 60px; } }
  html .mfp-arrow.mfp-arrow-left {
    left: 25px; }
    @media only screen and (max-width: 768px) {
      html .mfp-arrow.mfp-arrow-left {
        left: 40px; } }
html .mfp-bottom-bar .mfp-title, html .mfp-bottom-bar .mfp-counter {
  display: none;
  color: #fff;
  font-size: 16px; }
  @media only screen and (max-width: 768px) {
    html .mfp-bottom-bar .mfp-title, html .mfp-bottom-bar .mfp-counter {
      font-size: 14px; } }
html .mfp-bottom-bar .mfp-title {
  padding-left: 30px; }
  @media only screen and (max-width: 768px) {
    html .mfp-bottom-bar .mfp-title {
      padding-left: 20px; } }
html .mfp-bottom-bar .mfp-counter {
  padding-right: 30px; }
  @media only screen and (max-width: 768px) {
    html .mfp-bottom-bar .mfp-counter {
      padding-right: 20px; } }

.parallax-vertical-element {
  transition: all 1.5s cubic-bezier(0, 0, 0, 1); }

.searchform .search-form {
  display: flex;
  align-items: center;
  height: 40px;
  width: 100%;
  max-width: 330px;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  padding-right: 10px;
  border: 1px solid #cacaca;
  background-color: #fff; }
  .searchform .search-form input[type='search'] {
    height: auto; }
  .searchform .search-form .search-field {
    font-size: 15px; }
  .searchform .search-form .search-field {
    width: 300px;
    height: inherit;
    padding: 5px 10px;
    border: none;
    font-size: 15px; }
    .searchform .search-form .search-field:focus {
      padding: 5px 10px;
      outline: none; }
  .searchform .search-form .search-submit {
    padding: 0;
    color: #000;
    font-weight: normal;
    appearance: none;
    border: none;
    background-color: transparent;
    cursor: pointer; }
    .searchform .search-form .search-submit svg {
      width: 30px;
      height: 30px; }

.wrapper-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap; }

.tile {
  width: 400px;
  min-width: 400px; }
  @media only screen and (max-width: 1350px) {
    .tile {
      width: 330px;
      min-width: 330px; } }
  @media only screen and (max-width: 768px) {
    .tile {
      width: 280px;
      min-width: 280px; } }
  .tile .inner-tile {
    position: relative;
    padding: 20px 20px 60px 20px;
    box-shadow: none;
    text-align: right;
    transition: box-shadow 150ms ease-in-out; }
    @media only screen and (max-width: 768px) {
      .tile .inner-tile {
        padding: 0; } }
    .tile .inner-tile .image .image-inner {
      overflow: hidden; }
      .tile .inner-tile .image .image-inner img {
        display: block;
        object-fit: cover;
        object-position: center;
        width: 100%;
        height: 100%;
        aspect-ratio: 1 / 1;
        transition: transform 150ms ease-in-out; }
    .tile .inner-tile .title {
      width: 100%;
      margin-top: 30px; }
      .tile .inner-tile .title h3 {
        font-family: 'Roboto', sans-serif;
        font-size: 22px;
        font-weight: 500;
        text-align: center; }
        @media only screen and (max-width: 768px) {
          .tile .inner-tile .title h3 {
            font-size: 20px; } }
    .tile .inner-tile .excerpt {
      margin-top: 10px;
      text-align: center;
      line-height: 1.5; }
      @media only screen and (max-width: 768px) {
        .tile .inner-tile .excerpt p {
          font-size: 14px; } }
    .tile .inner-tile .read-more {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      position: absolute;
      right: 20px;
      line-height: 1;
      padding-top: 0;
      visibility: hidden;
      opacity: 0;
      height: 0;
      color: #5e5e5e;
      transition: all 150ms ease-in-out; }
      @media only screen and (max-width: 768px) {
        .tile .inner-tile .read-more {
          display: none; } }
      .tile .inner-tile .read-more .icon {
        display: block;
        border-radius: 200px;
        padding: 6px;
        border: 1px solid #747474;
        transition: border 150ms ease-in-out; }
        .tile .inner-tile .read-more .icon svg {
          width: 20px;
          height: 20px;
          fill: #747474; }
          .tile .inner-tile .read-more .icon svg polygon {
            transition: fill 150ms ease-in-out; }
      .tile .inner-tile .read-more:hover {
        color: #ffa600; }
        .tile .inner-tile .read-more:hover .icon {
          border-color: #ffa600; }
          .tile .inner-tile .read-more:hover .icon polygon {
            fill: #ffa600; }
  .tile:hover .inner-tile {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); }
    @media only screen and (max-width: 768px) {
      .tile:hover .inner-tile {
        box-shadow: none; } }
    .tile:hover .inner-tile .image img {
      transform: scale(1.1); }
    .tile:hover .inner-tile .read-more {
      visibility: visible;
      opacity: 1;
      height: 54px; }

/* Contact Form 7 */
/* ************ */
.wpcf7 .wpcf7-response-output {
  background-color: #fff; }

/* Various */
/* ************ */
.click-area:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1; }

.slider-arrows {
  position: absolute;
  top: 50%;
  width: 100%; }
  @media only screen and (max-width: 768px) {
    .slider-arrows {
      top: 38%; } }
  .slider-arrows div {
    display: flex;
    position: absolute;
    top: 0; }
    .slider-arrows div svg {
      width: 25px;
      height: 25px; }
    .slider-arrows div.arrow-prev {
      left: 10px; }
    .slider-arrows div.arrow-next {
      transform: rotate(180deg);
      right: 10px; }

.wrapper-language-switcher {
  display: none;
  align-items: center; }
  .wrapper-language-switcher .wpml-ls {
    width: auto; }
    .wrapper-language-switcher .wpml-ls ul li a {
      padding: 0;
      border: none;
      background-color: transparent; }
      .wrapper-language-switcher .wpml-ls ul li a:after {
        display: none; }
      .wrapper-language-switcher .wpml-ls ul li a:hover, .wrapper-language-switcher .wpml-ls ul li a:focus {
        background-color: transparent !important; }
    .wrapper-language-switcher .wpml-ls ul li ul.js-wpml-ls-sub-menu {
      margin-top: 5px;
      padding-top: 5px; }
    .wrapper-language-switcher .wpml-ls ul li:hover a {
      background-color: transparent !important; }

/* Image before and after general class */
.image-before-after {
  position: relative;
  width: 100%;
  height: 100%; }
  .image-before-after .before, .image-before-after .after {
    width: 100%;
    height: 100%; }
    .image-before-after .before img, .image-before-after .after img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: left center; }
  .image-before-after .after {
    position: absolute;
    top: 0;
    width: 50%; }
    .image-before-after .after:after {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      right: 0;
      width: 6px;
      height: 100%;
      background-color: #fff;
      cursor: pointer; }
  .image-before-after .button-slider {
    position: absolute;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    appearance: none;
    width: 100%;
    height: 100%;
    background: transparent;
    outline: none;
    margin: 0;
    transition: all .2s;
    cursor: pointer;
    opacity: 0; }
    .image-before-after .button-slider:hover {
      background: rgba(242, 242, 242, 0.1); }
  .image-before-after .button-slider-visual {
    pointer-events: none;
    position: absolute;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: white;
    left: calc(50% - 21px);
    top: calc(50% - 21px);
    display: flex;
    justify-content: center;
    align-items: center; }
    @media only screen and (max-width: 768px) {
      .image-before-after .button-slider-visual {
        width: 26px;
        height: 26px;
        left: calc(50% - 16px);
        top: calc(50% - 16px); } }
    .image-before-after .button-slider-visual:after {
      content: '';
      padding: 3px;
      display: inline-block;
      border: solid #5D5D5D;
      border-width: 0 2px 2px 0;
      transform: rotate(-45deg); }
      @media only screen and (max-width: 768px) {
        .image-before-after .button-slider-visual:after {
          padding: 2px; } }
    .image-before-after .button-slider-visual:before {
      content: '';
      padding: 3px;
      display: inline-block;
      border: solid #5D5D5D;
      border-width: 0 2px 2px 0;
      transform: rotate(135deg); }
      @media only screen and (max-width: 768px) {
        .image-before-after .button-slider-visual:before {
          padding: 2px; } }

/* Indicators */
#mobile-indicator {
  display: none; }
  @media only screen and (max-width: 1024px) {
    #mobile-indicator {
      display: block; } }

#phone-indicator {
  display: none; }
  @media only screen and (max-width: 768px) {
    #phone-indicator {
      display: block; } }

/* Forms */
/* ************ */
form .rows {
  display: flex;
  flex-direction: column;
  gap: 26px; }
  @media only screen and (max-width: 1024px) {
    form .rows {
      gap: 20px; } }
  form .rows .row {
    display: flex;
    gap: 18px; }
    @media only screen and (max-width: 1024px) {
      form .rows .row {
        gap: 20px; } }
    @media only screen and (max-width: 768px) {
      form .rows .row {
        flex-wrap: wrap; } }
    form .rows .row .wpcf7-form-control-wrap {
      width: 100%; }
    form .rows .row p {
      width: 100%; }
    form .rows .row br {
      display: none; }
form input {
  border-radius: 30px !important; }
  form input::placeholder {
    color: #fff;
    text-transform: uppercase;
    font-family: 'vw_headbold', sans-serif;
    font-weight: 400; }
  form input:focus-visible {
    outline: none; }
form input[type='text'], form input[type='email'], form input[type='tel'], form input[type='date'], form input[type='submit'], form input[type='password'], form textarea, form .radio-buttons {
  width: 100%;
  padding: 1.1em 1.5em;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #fff;
  border: 1px solid #fff;
  background-color: transparent; }
form input[type='submit'] {
  display: block;
  margin: 30px 0 0 auto;
  width: auto;
  padding: 14px 50px 14px 20px;
  color: #fff;
  font-family: "vw_headbold", sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  background-color: #ffa600;
  border: none;
  cursor: pointer;
  transition: all 150ms ease-in-out;
  background-image: url("assets/images/icons/icon-arrow-right-light-white-1.2.svg");
  background-repeat: no-repeat;
  background-size: 20px;
  background-position-x: 90%;
  background-position-y: 50%; }
  form input[type='submit']:hover {
    background-color: #fff;
    color: #000;
    background-image: url("assets/images/icons/icon-arrow-right-light-1.2.svg"); }
form input[type='radio'] {
  margin: 3px 3px 1px 5px;
  vertical-align: text-bottom; }
form input[type="file"] {
  display: none; }
form .custom-file-upload {
  border: 1px solid #fff;
  display: inline-block;
  padding: 1.1em 1.5em;
  line-height: 1;
  font-size: 16px;
  font-family: 'vw_headbold', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  border-radius: 200px;
  cursor: pointer;
  color: #fff; }
form #file-selected {
  margin-left: 10px;
  color: #fff; }
  @media only screen and (max-width: 768px) {
    form #file-selected {
      font-size: 12px; } }
form textarea {
  height: 12em;
  border-radius: 30px;
  color: #fff; }
  form textarea::placeholder {
    color: #fff;
    text-transform: uppercase;
    font-family: 'vw_headbold', sans-serif;
    font-weight: 400; }
  form textarea:focus-visible {
    outline: none; }
form .asterix {
  color: #000;
  font-weight: bold; }
form .custom-styling-file-input {
  display: none; }
form .wpcf7-spinner {
  display: block;
  margin: 0 auto; }

.wpcf7 .wpcf7-not-valid-tip {
  color: #ffa600; }

/* Header */
/* ************ */
.admin-bar #header #section-logo-menu-desktop {
  top: 32px; }

#header {
  padding-top: 90px;
  /* Main menu - Mobile */ }
  @media only screen and (max-width: 1024px) {
    #header {
      padding-top: 0;
      padding-bottom: 82px; } }
  #header .mobile-only {
    display: none; }
    @media only screen and (max-width: 1024px) {
      #header .mobile-only {
        display: block; } }
  #header .bell-account-language {
    display: flex;
    gap: 26px; }
    #header .bell-account-language a {
      display: block;
      color: #000;
      font-size: 18px; }
      #header .bell-account-language a svg {
        width: 26px;
        height: 26px;
        transition: all 150ms ease-in-out; }
      #header .bell-account-language a:hover svg {
        fill: #1792e1; }
  #header .wrapper-language-switcher .wpml-ls ul li a {
    transition: color 150ms ease-in-out; }
    #header .wrapper-language-switcher .wpml-ls ul li a:hover {
      color: #1792e1 !important; }
  #header #section-logo-menu-desktop {
    position: fixed;
    top: 0;
    padding-left: 0;
    padding-right: 0;
    z-index: 2;
    box-shadow: 0px 0 12px rgba(0, 0, 0, 0.15);
    transition: all 1000ms ease-in-out; }
    #header #section-logo-menu-desktop .inner-wrapper {
      padding: 0 0;
      padding-left: 20px;
      padding-right: 20px;
      background-color: #fff; }
      @media only screen and (max-width: 768px) {
        #header #section-logo-menu-desktop .inner-wrapper {
          padding-left: 25px;
          padding-right: 25px; } }
      #header #section-logo-menu-desktop .inner-wrapper .inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        /* Main menu - Desktop */
        /* Section Search Header */ }
        #header #section-logo-menu-desktop .inner-wrapper .inner .block-logo {
          flex: 0 0 auto; }
          #header #section-logo-menu-desktop .inner-wrapper .inner .block-logo img {
            display: block;
            width: 150px;
            height: auto;
            transition: all 1000ms linear; }
        #header #section-logo-menu-desktop .inner-wrapper .inner .block-main-menu {
          margin-left: auto;
          margin-right: 40px;
          font-family: "Roboto", sans-serif; }
          @media only screen and (max-width: 1024px) {
            #header #section-logo-menu-desktop .inner-wrapper .inner .block-main-menu {
              padding-top: 9px;
              padding-bottom: 7px; } }
          #header #section-logo-menu-desktop .inner-wrapper .inner .block-main-menu.fixed {
            position: fixed;
            top: 87px;
            z-index: 3;
            padding-top: 18px;
            padding-bottom: 18px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.14); }
            @media only screen and (max-width: 1024px) {
              #header #section-logo-menu-desktop .inner-wrapper .inner .block-main-menu.fixed {
                top: 0;
                padding-top: 9px;
                padding-bottom: 7px; } }
          #header #section-logo-menu-desktop .inner-wrapper .inner .block-main-menu .menu .menu-item a {
            display: block;
            font-size: 15px;
            font-family: "Roboto", sans-serif;
            color: #000;
            transition: all 1000ms linear; }
          #header #section-logo-menu-desktop .inner-wrapper .inner .block-main-menu .menu .menu-item.faq .sub-menu .menu-item a, #header #section-logo-menu-desktop .inner-wrapper .inner .block-main-menu .menu .menu-item.menu-to-menu .sub-menu .menu-item a {
            color: #000;
            font-family: "Roboto", sans-serif !important; }
          #header #section-logo-menu-desktop .inner-wrapper .inner .block-main-menu .menu .menu-item.disabled {
            display: none; }
          @media only screen and (min-width: 1024px) {
            #header #section-logo-menu-desktop .inner-wrapper .inner .block-main-menu .menu .menu-item.disabled-desktop {
              display: none; } }
          #header #section-logo-menu-desktop .inner-wrapper .inner .block-main-menu .menu .menu-item:after {
            visibility: hidden;
            opacity: 0;
            content: '';
            position: absolute;
            top: 50%;
            left: -20px;
            right: auto;
            bottom: auto;
            width: 20px;
            height: 20px;
            z-index: 2;
            transform: translateY(-50%);
            background-image: url("assets/images/icons/icon-circles-1.0.svg");
            background-repeat: no-repeat;
            background-size: 20px;
            background-position-x: 0;
            background-position-y: 0;
            transition: all 1000ms ease-in-out; }
          #header #section-logo-menu-desktop .inner-wrapper .inner .block-main-menu .menu .menu-item.current-menu-item > a, #header #section-logo-menu-desktop .inner-wrapper .inner .block-main-menu .menu .menu-item.current-menu-parent > a, #header #section-logo-menu-desktop .inner-wrapper .inner .block-main-menu .menu .menu-item.current_page_parent > a, #header #section-logo-menu-desktop .inner-wrapper .inner .block-main-menu .menu .menu-item.active > a {
            color: #1792e1; }
          #header #section-logo-menu-desktop .inner-wrapper .inner .block-main-menu .menu .menu-item.current-menu-item svg, #header #section-logo-menu-desktop .inner-wrapper .inner .block-main-menu .menu .menu-item.current-menu-parent svg, #header #section-logo-menu-desktop .inner-wrapper .inner .block-main-menu .menu .menu-item.current_page_parent svg, #header #section-logo-menu-desktop .inner-wrapper .inner .block-main-menu .menu .menu-item.active svg {
            fill: #1792e1; }
          #header #section-logo-menu-desktop .inner-wrapper .inner .block-main-menu .menu .menu-item.active:after, #header #section-logo-menu-desktop .inner-wrapper .inner .block-main-menu .menu .menu-item:hover:after {
            visibility: visible;
            opacity: 1;
            transition: all 150ms ease-in-out; }
        @media only screen and (max-width: 1024px) {
          #header #section-logo-menu-desktop .inner-wrapper .inner #block-main-menu-desktop {
            display: none; } }
        #header #section-logo-menu-desktop .inner-wrapper .inner #block-main-menu-desktop .inner {
          display: flex;
          justify-content: space-between; }
          #header #section-logo-menu-desktop .inner-wrapper .inner #block-main-menu-desktop .inner #button-search-header {
            display: none;
            margin-left: 36px;
            z-index: 1; }
            @media only screen and (max-width: 1350px) {
              #header #section-logo-menu-desktop .inner-wrapper .inner #block-main-menu-desktop .inner #button-search-header {
                margin-left: 20px; } }
            #header #section-logo-menu-desktop .inner-wrapper .inner #block-main-menu-desktop .inner #button-search-header svg {
              width: 15px;
              fill: #000; }
        #header #section-logo-menu-desktop .inner-wrapper .inner #block-main-menu-desktop .menu {
          display: flex; }
          #header #section-logo-menu-desktop .inner-wrapper .inner #block-main-menu-desktop .menu .menu-item {
            position: relative;
            margin: 0 25px; }
            @media only screen and (max-width: 1350px) {
              #header #section-logo-menu-desktop .inner-wrapper .inner #block-main-menu-desktop .menu .menu-item {
                margin: 0 15px; } }
            #header #section-logo-menu-desktop .inner-wrapper .inner #block-main-menu-desktop .menu .menu-item a {
              position: relative;
              padding: 30px 5px;
              font-size: 18px;
              font-weight: 500;
              transition: color 1000ms ease-in-out;
              z-index: 2; }
            #header #section-logo-menu-desktop .inner-wrapper .inner #block-main-menu-desktop .menu .menu-item.current-menu-item:after, #header #section-logo-menu-desktop .inner-wrapper .inner #block-main-menu-desktop .menu .menu-item.current-menu-parent:after {
              width: 15px;
              border-color: #1792e1; }
            #header #section-logo-menu-desktop .inner-wrapper .inner #block-main-menu-desktop .menu .menu-item:hover > a {
              color: #1792e1;
              transition: color 150ms ease-in-out; }
            #header #section-logo-menu-desktop .inner-wrapper .inner #block-main-menu-desktop .menu .menu-item:hover .sub-menu {
              visibility: visible;
              opacity: 1;
              transition: opacity 150ms ease-in-out; }
            #header #section-logo-menu-desktop .inner-wrapper .inner #block-main-menu-desktop .menu .menu-item:hover svg {
              fill: #1792e1;
              transition: all 150ms ease-in-out; }
            #header #section-logo-menu-desktop .inner-wrapper .inner #block-main-menu-desktop .menu .menu-item.disabled {
              display: none; }
            #header #section-logo-menu-desktop .inner-wrapper .inner #block-main-menu-desktop .menu .menu-item button {
              display: none; }
            #header #section-logo-menu-desktop .inner-wrapper .inner #block-main-menu-desktop .menu .menu-item .sub-menu {
              visibility: hidden;
              position: absolute;
              opacity: 0;
              top: 0;
              left: -20px;
              min-width: 210px;
              max-width: 250px;
              margin-top: 42px;
              padding: 15px 0;
              background-color: #fff;
              z-index: 1;
              box-shadow: 0px 0 12px rgba(0, 0, 0, 0.15); }
              #header #section-logo-menu-desktop .inner-wrapper .inner #block-main-menu-desktop .menu .menu-item .sub-menu .menu-item {
                margin: 0;
                line-height: 1.2; }
                #header #section-logo-menu-desktop .inner-wrapper .inner #block-main-menu-desktop .menu .menu-item .sub-menu .menu-item:last-of-type {
                  margin-bottom: 0; }
                #header #section-logo-menu-desktop .inner-wrapper .inner #block-main-menu-desktop .menu .menu-item .sub-menu .menu-item:after {
                  display: none; }
                #header #section-logo-menu-desktop .inner-wrapper .inner #block-main-menu-desktop .menu .menu-item .sub-menu .menu-item a {
                  display: block;
                  padding: 10px 25px;
                  font-size: 13px;
                  color: #000; }
                #header #section-logo-menu-desktop .inner-wrapper .inner #block-main-menu-desktop .menu .menu-item .sub-menu .menu-item.current-menu-item a {
                  color: #1792e1; }
                #header #section-logo-menu-desktop .inner-wrapper .inner #block-main-menu-desktop .menu .menu-item .sub-menu .menu-item.menu-item-prominent > a {
                  padding: 20px 40px 8px 40px;
                  font-size: 15px; }
                #header #section-logo-menu-desktop .inner-wrapper .inner #block-main-menu-desktop .menu .menu-item .sub-menu .menu-item:hover a {
                  color: #1792e1; }
              #header #section-logo-menu-desktop .inner-wrapper .inner #block-main-menu-desktop .menu .menu-item .sub-menu:before {
                position: absolute;
                content: "";
                background-color: #fff;
                width: 14px;
                height: 14px;
                box-shadow: none;
                transform: rotate(45deg);
                top: -7px;
                left: 40px;
                z-index: 1; }
            #header #section-logo-menu-desktop .inner-wrapper .inner #block-main-menu-desktop .menu .menu-item .icon-arrow-down {
              position: absolute;
              top: 42px;
              right: 0;
              width: 10px;
              height: 10px;
              transition: all 1000ms ease-in-out; }
          #header #section-logo-menu-desktop .inner-wrapper .inner #block-main-menu-desktop .menu .menu-item-has-children:after {
            right: 20px; }
          #header #section-logo-menu-desktop .inner-wrapper .inner #block-main-menu-desktop .menu > .menu-item-has-children a, #header #section-logo-menu-desktop .inner-wrapper .inner #block-main-menu-desktop .menu > .parent-page a {
            padding-right: 20px; }
        @media only screen and (max-width: 1350px) {
          #header #section-logo-menu-desktop .inner-wrapper .inner #block-main-menu-desktop.fixed .inner .menu-item-has-children:after {
            right: 0; } }
        @media only screen and (max-width: 1350px) {
          #header #section-logo-menu-desktop .inner-wrapper .inner #block-main-menu-desktop.fixed .inner .menu-item-has-children .wrapper-svg {
            margin-left: 4px; } }
        @media only screen and (max-width: 1350px) {
          #header #section-logo-menu-desktop .inner-wrapper .inner #block-main-menu-desktop.fixed .inner .menu-item-has-children .wrapper-svg svg {
            vertical-align: baseline;
            width: 10px; } }
        #header #section-logo-menu-desktop .inner-wrapper .inner #section-search-header {
          display: none;
          position: fixed;
          top: 0;
          right: 0;
          bottom: 0;
          left: 0;
          background-color: rgba(0, 0, 0, 0.8);
          z-index: 2; }
          #header #section-logo-menu-desktop .inner-wrapper .inner #section-search-header .inner {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
            max-width: none; }
            #header #section-logo-menu-desktop .inner-wrapper .inner #section-search-header .inner .searchform {
              position: relative; }
              #header #section-logo-menu-desktop .inner-wrapper .inner #section-search-header .inner .searchform #button-close-search {
                display: flex;
                position: absolute;
                top: -30px;
                right: -30px; }
                #header #section-logo-menu-desktop .inner-wrapper .inner #section-search-header .inner .searchform #button-close-search svg {
                  width: 15px;
                  fill: #fff; }
          #header #section-logo-menu-desktop .inner-wrapper .inner #section-search-header.active {
            display: block; }
    #header #section-logo-menu-desktop.change {
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
      transition: all 150ms linear; }
      #header #section-logo-menu-desktop.change .inner-wrapper .inner .block-logo img {
        filter: none;
        transition: all 150ms ease-in-out; }
      #header #section-logo-menu-desktop.change .inner-wrapper .inner #block-secondary-menu .icon-black svg, #header #section-logo-menu-desktop.change .inner-wrapper .inner #block-secondary-menu .icon-black .change_color {
        fill: #000; }
      #header #section-logo-menu-desktop.change .inner-wrapper .inner #block-secondary-menu .icon-black:hover svg, #header #section-logo-menu-desktop.change .inner-wrapper .inner #block-secondary-menu .icon-black:hover .change_color {
        fill: #1792e1;
        transition: fill 150ms ease-in-out; }
    #header #section-logo-menu-desktop.no-shadow {
      box-shadow: none; }
    @media only screen and (max-width: 1024px) {
      #header #section-logo-menu-desktop {
        display: none; } }
  #header #section-main-menu-mobile {
    display: none;
    position: fixed;
    z-index: 2;
    padding-top: 20px;
    padding-bottom: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    background-color: #fff;
    visibility: visible;
    transition: opacity 500ms ease-in-out, visibility 500ms ease-in-out; }
    @media only screen and (max-width: 1024px) {
      #header #section-main-menu-mobile {
        display: block; } }
    #header #section-main-menu-mobile > .inner {
      display: flex;
      justify-content: space-between;
      align-items: center; }
      #header #section-main-menu-mobile > .inner .icon-search-mobile svg {
        display: block;
        width: 25px; }
        #header #section-main-menu-mobile > .inner .icon-search-mobile svg path {
          fill: #f2f7fc; }
      #header #section-main-menu-mobile > .inner .logo img {
        display: block;
        width: 120px;
        height: auto; }
    #header #section-main-menu-mobile.change {
      opacity: 0;
      visibility: hidden; }
    #header #section-main-menu-mobile #wrapper-main-menu-mobile {
      display: flex;
      justify-content: flex-end;
      position: fixed;
      visibility: hidden;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      z-index: 10;
      overflow-y: scroll;
      overflow-x: hidden;
      background-color: transparent;
      transition: background-color 200ms ease-in-out; }
      #header #section-main-menu-mobile #wrapper-main-menu-mobile .inner {
        width: 100%;
        margin: 0;
        background-color: #fff;
        transform: translate(100%, 0);
        transition: all 200ms ease-in-out; }
        #header #section-main-menu-mobile #wrapper-main-menu-mobile .inner .main-menu .menu {
          padding: 70px 20px 20px 20px;
          background-color: #fff; }
          #header #section-main-menu-mobile #wrapper-main-menu-mobile .inner .main-menu .menu .menu-item {
            display: block;
            width: 100%;
            float: left;
            position: relative;
            padding: 20px 5px 20px 20px;
            border-bottom: 1px solid #eee; }
            #header #section-main-menu-mobile #wrapper-main-menu-mobile .inner .main-menu .menu .menu-item a {
              float: left;
              margin-right: 6px;
              font-family: "Roboto", sans-serif;
              text-transform: capitalize;
              font-size: 18px;
              color: #000; }
            #header #section-main-menu-mobile #wrapper-main-menu-mobile .inner .main-menu .menu .menu-item > svg {
              width: 20px;
              height: 20px;
              padding: 5px;
              margin-top: 5px;
              transition: transform 150ms ease-in-out; }
              #header #section-main-menu-mobile #wrapper-main-menu-mobile .inner .main-menu .menu .menu-item > svg.active {
                transform: rotate(180deg); }
                #header #section-main-menu-mobile #wrapper-main-menu-mobile .inner .main-menu .menu .menu-item > svg.active + .sub-menu {
                  display: block; }
            #header #section-main-menu-mobile #wrapper-main-menu-mobile .inner .main-menu .menu .menu-item .sub-menu {
              display: none; }
              #header #section-main-menu-mobile #wrapper-main-menu-mobile .inner .main-menu .menu .menu-item .sub-menu .menu-item:first-of-type {
                padding: 30px 5px 20px 20px; }
              #header #section-main-menu-mobile #wrapper-main-menu-mobile .inner .main-menu .menu .menu-item .sub-menu .menu-item:last-of-type {
                padding-bottom: 0;
                border: none; }
            #header #section-main-menu-mobile #wrapper-main-menu-mobile .inner .main-menu .menu .menu-item.current-menu-item > a {
              color: #1792e1; }
            #header #section-main-menu-mobile #wrapper-main-menu-mobile .inner .main-menu .menu .menu-item.current-menu-item > svg {
              fill: #1792e1;
              transition: all 150ms ease-in-out; }
            #header #section-main-menu-mobile #wrapper-main-menu-mobile .inner .main-menu .menu .menu-item.current-menu-ancestor > svg {
              transform: rotate(180deg);
              transition: all 150ms ease-in-out; }
            #header #section-main-menu-mobile #wrapper-main-menu-mobile .inner .main-menu .menu .menu-item.current-menu-ancestor > .sub-menu {
              display: block; }
            #header #section-main-menu-mobile #wrapper-main-menu-mobile .inner .main-menu .menu .menu-item.prominent > a {
              font-weight: 600; }
          #header #section-main-menu-mobile #wrapper-main-menu-mobile .inner .main-menu .menu > .menu-item {
            visibility: hidden;
            opacity: 0;
            transition: all 500ms ease-in-out; }
            #header #section-main-menu-mobile #wrapper-main-menu-mobile .inner .main-menu .menu > .menu-item.show {
              visibility: visible;
              opacity: 1; }
          #header #section-main-menu-mobile #wrapper-main-menu-mobile .inner .main-menu .menu .menu-item-has-children .button-fold {
            transition: transform 150ms ease-in-out; }
            #header #section-main-menu-mobile #wrapper-main-menu-mobile .inner .main-menu .menu .menu-item-has-children .button-fold.active {
              transform: rotate(90deg); }
        #header #section-main-menu-mobile #wrapper-main-menu-mobile .inner .searchform {
          padding: 20px 40px 60px 40px;
          background-color: #fff; }
        #header #section-main-menu-mobile #wrapper-main-menu-mobile .inner .bell-account-language {
          justify-content: center;
          padding: 30px 20px 20px 20px;
          visibility: hidden;
          opacity: 0;
          transition: all 500ms ease-in-out; }
          #header #section-main-menu-mobile #wrapper-main-menu-mobile .inner .bell-account-language.show {
            visibility: visible;
            opacity: 1; }
      #header #section-main-menu-mobile #wrapper-main-menu-mobile.active {
        visibility: visible;
        background-color: #fff;
        transition: background-color 200ms ease-in-out; }
        #header #section-main-menu-mobile #wrapper-main-menu-mobile.active .inner {
          transform: translate(0, 0);
          transition: all 200ms ease-in-out; }
  #header .megamenu {
    display: none;
    position: fixed;
    top: 92px;
    left: 0;
    right: 0;
    bottom: auto;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); }
    @media only screen and (max-width: 1024px) {
      #header .megamenu {
        top: 0;
        height: 100%; } }
    @media only screen and (max-width: 768px) {
      #header .megamenu {
        display: none;
        overflow-y: auto; } }
    #header .megamenu .inner {
      overflow: hidden; }
      #header .megamenu .inner .wrapper-button {
        display: none; }
        @media only screen and (max-width: 1024px) {
          #header .megamenu .inner .wrapper-button {
            display: block;
            width: 100%;
            background-color: #eee;
            padding: 6px 20px; } }
        @media only screen and (max-width: 768px) {
          #header .megamenu .inner .wrapper-button {
            padding: 6px 25px; } }
      #header .megamenu .inner .menu-outer {
        height: 0; }
        #header .megamenu .inner .menu-outer .menu-default {
          display: flex;
          justify-content: center;
          gap: 40px;
          padding: 30px 30px 30px 30px;
          opacity: 0;
          transform: translateY(50px); }
          @media only screen and (max-width: 768px) {
            #header .megamenu .inner .menu-outer .menu-default {
              flex-direction: column;
              padding: 20px 25px 60px 25px; } }
          #header .megamenu .inner .menu-outer .menu-default .submenu {
            display: flex;
            flex-direction: column;
            width: calc(25% - 30px);
            flex: 0 0 calc(25% - 30px); }
            @media only screen and (max-width: 768px) {
              #header .megamenu .inner .menu-outer .menu-default .submenu {
                width: 100%;
                flex: 0 0 100%; } }
            #header .megamenu .inner .menu-outer .menu-default .submenu .menu-item-mm {
              display: flex;
              align-items: center;
              padding: 22px 0;
              border-bottom: 1px solid #e8e8e8;
              font-weight: 400;
              overflow: hidden; }
              #header .megamenu .inner .menu-outer .menu-default .submenu .menu-item-mm .icon-circles {
                display: flex;
                align-items: center;
                margin-left: -20px;
                margin-right: 6px;
                transition: margin-left 300ms ease-in-out; }
              #header .megamenu .inner .menu-outer .menu-default .submenu .menu-item-mm .icon-title {
                display: flex;
                align-items: center;
                gap: 10px;
                transition: margin-left 150ms ease-in-out; }
                #header .megamenu .inner .menu-outer .menu-default .submenu .menu-item-mm .icon-title .icon-custom {
                  transition: margin-left 150ms ease-in-out; }
                  #header .megamenu .inner .menu-outer .menu-default .submenu .menu-item-mm .icon-title .icon-custom img {
                    display: block;
                    width: 30px;
                    height: 30px; }
                  #header .megamenu .inner .menu-outer .menu-default .submenu .menu-item-mm .icon-title .icon-custom svg {
                    width: 30px;
                    height: 30px; }
                #header .megamenu .inner .menu-outer .menu-default .submenu .menu-item-mm .icon-title .title {
                  min-height: 1.8em; }
              #header .megamenu .inner .menu-outer .menu-default .submenu .menu-item-mm:hover {
                font-weight: 600; }
                #header .megamenu .inner .menu-outer .menu-default .submenu .menu-item-mm:hover .icon-circles {
                  margin-left: -6px; }
                #header .megamenu .inner .menu-outer .menu-default .submenu .menu-item-mm:hover .icon-title {
                  margin-left: 6px; }
              #header .megamenu .inner .menu-outer .menu-default .submenu .menu-item-mm.prominent {
                font-weight: 600; }
            #header .megamenu .inner .menu-outer .menu-default .submenu.text .info-text .title {
              display: block;
              padding-top: 22px;
              padding-bottom: 12px;
              font-weight: bold; }
            #header .megamenu .inner .menu-outer .menu-default .submenu.text .info-text .body-text {
              color: #808080;
              font-size: 14px; }
            #header .megamenu .inner .menu-outer .menu-default .submenu.text .info-text .button-circle {
              margin-top: 30px; }
            #header .megamenu .inner .menu-outer .menu-default .submenu.items {
              width: calc(50% - 20px);
              flex: 0 0 calc(50% - 20px);
              padding: 0 20px 30px 20px;
              background-color: #f8f8f8; }
              @media only screen and (max-width: 768px) {
                #header .megamenu .inner .menu-outer .menu-default .submenu.items {
                  width: 100%;
                  flex: 0 0 100%; } }
              #header .megamenu .inner .menu-outer .menu-default .submenu.items .title {
                display: block;
                padding-top: 22px;
                padding-left: 10px;
                padding-bottom: 12px;
                font-weight: bold; }
              #header .megamenu .inner .menu-outer .menu-default .submenu.items .items {
                display: flex;
                flex-direction: column; }
                #header .megamenu .inner .menu-outer .menu-default .submenu.items .items .item {
                  padding: 10px;
                  transition: background-color 150ms ease-in-out; }
                  #header .megamenu .inner .menu-outer .menu-default .submenu.items .items .item .image-title {
                    display: flex;
                    gap: 20px; }
                    #header .megamenu .inner .menu-outer .menu-default .submenu.items .items .item .image-title .image .image-inner {
                      aspect-ratio: 1.6 / 1;
                      width: 100px; }
                      #header .megamenu .inner .menu-outer .menu-default .submenu.items .items .item .image-title .image .image-inner img {
                        display: block;
                        width: 100%;
                        height: 100%;
                        object-fit: cover; }
                    #header .megamenu .inner .menu-outer .menu-default .submenu.items .items .item .image-title .item-title {
                      display: flex;
                      flex-direction: column;
                      justify-content: space-between;
                      width: 100%; }
                      #header .megamenu .inner .menu-outer .menu-default .submenu.items .items .item .image-title .item-title span {
                        display: block;
                        line-height: 1.5; }
                      #header .megamenu .inner .menu-outer .menu-default .submenu.items .items .item .image-title .item-title .read-more {
                        display: flex;
                        align-items: center;
                        gap: 10px;
                        margin-left: auto; }
                        #header .megamenu .inner .menu-outer .menu-default .submenu.items .items .item .image-title .item-title .read-more .value {
                          transition: color 150ms ease-in-out; }
                        #header .megamenu .inner .menu-outer .menu-default .submenu.items .items .item .image-title .item-title .read-more .icon svg {
                          transition: fill 150ms ease-in-out; }
                        #header .megamenu .inner .menu-outer .menu-default .submenu.items .items .item .image-title .item-title .read-more .value {
                          font-size: 14px; }
                        #header .megamenu .inner .menu-outer .menu-default .submenu.items .items .item .image-title .item-title .read-more .icon svg {
                          width: 16px;
                          height: 16px; }
                  #header .megamenu .inner .menu-outer .menu-default .submenu.items .items .item:hover {
                    background-color: #eaeaea; }
                    #header .megamenu .inner .menu-outer .menu-default .submenu.items .items .item:hover .read-more .value {
                      color: #1792e1; }
                    #header .megamenu .inner .menu-outer .menu-default .submenu.items .items .item:hover .read-more .icon svg {
                      fill: #1792e1; }
              #header .megamenu .inner .menu-outer .menu-default .submenu.items .button-class {
                gap: 10px;
                margin-top: 30px; }
                #header .megamenu .inner .menu-outer .menu-default .submenu.items .button-class .button-text {
                  font-size: 12px; }
                #header .megamenu .inner .menu-outer .menu-default .submenu.items .button-class .icon svg {
                  width: 16px;
                  height: 16px; }
        #header .megamenu .inner .menu-outer.animate-up {
          height: auto; }
          #header .megamenu .inner .menu-outer.animate-up .menu-default {
            opacity: 1;
            transform: translateY(0);
            transition: all 500ms ease-out; }

.admin-bar #header .megamenu {
  top: 124px; }
  @media only screen and (max-width: 1024px) {
    .admin-bar #header .megamenu {
      top: 32px; } }

/* Footer */
/* ************ */
#footer {
  border-top: 5px solid #ffa600;
  position: relative;
  z-index: 1; }
  #footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("assets/images/background-1.0.svg");
    background-repeat: no-repeat;
    background-position-x: 0;
    background-position-y: 100%;
    z-index: 1;
    opacity: 0.06;
    pointer-events: none; }
    @media only screen and (max-width: 768px) {
      #footer:before {
        background-position-x: 20%;
        background-size: cover; } }
  #footer a, #footer p, #footer span {
    color: #fff;
    font-weight: 500;
    transition: color 150ms ease-in-out; }
  #footer a {
    color: #fff; }
    #footer a:hover {
      text-decoration: none;
      color: #ffa600; }
      #footer a:hover span {
        color: #ffa600; }
  #footer .footer-top {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #1792e1; }
    @media only screen and (max-width: 1024px) {
      #footer .footer-top {
        padding-top: 60px;
        padding-bottom: 60px; } }
    @media only screen and (max-width: 768px) {
      #footer .footer-top {
        padding-top: 50px;
        padding-bottom: 50px; } }
    #footer .footer-top .inner {
      display: flex; }
      @media only screen and (max-width: 768px) {
        #footer .footer-top .inner {
          flex-direction: column;
          gap: 30px; } }
      #footer .footer-top .inner .block-slogan {
        width: 30%;
        flex: 0 0 30%; }
        @media only screen and (max-width: 1350px) {
          #footer .footer-top .inner .block-slogan {
            width: 25%;
            flex: 0 0 25%; } }
        #footer .footer-top .inner .block-slogan h2 {
          color: #fff; }
          @media only screen and (max-width: 1024px) {
            #footer .footer-top .inner .block-slogan h2 {
              font-size: 26px; } }
          @media only screen and (max-width: 768px) {
            #footer .footer-top .inner .block-slogan h2 {
              font-size: 30px; } }
          @media only screen and (max-width: 1024px) {
            #footer .footer-top .inner .block-slogan h2:before {
              background-size: 16px;
              top: 9px;
              left: -16px; } }
          @media only screen and (max-width: 768px) {
            #footer .footer-top .inner .block-slogan h2:before {
              left: -18px; } }
      #footer .footer-top .inner address {
        display: block;
        font-style: normal; }
      #footer .footer-top .inner .block-contact div, #footer .footer-top .inner .block-contact a {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 8px; }
        #footer .footer-top .inner .block-contact div svg, #footer .footer-top .inner .block-contact a svg {
          fill: #fff;
          width: 16px;
          height: 16px;
          margin-top: -2px; }
      #footer .footer-top .inner .block-contact a:last-of-type {
        margin-bottom: 0; }
      #footer .footer-top .inner .block-contact-2 div, #footer .footer-top .inner .block-contact-3 div {
        align-items: normal; }
        #footer .footer-top .inner .block-contact-2 div svg, #footer .footer-top .inner .block-contact-3 div svg {
          margin-top: 9px; }
        #footer .footer-top .inner .block-contact-2 div span, #footer .footer-top .inner .block-contact-3 div span {
          line-height: 2.25; }
      #footer .footer-top .inner .block-contact-1 {
        width: 30%;
        flex: 0 0 30%; }
        @media only screen and (max-width: 768px) {
          #footer .footer-top .inner .block-contact-1 {
            width: 100%;
            flex: 0 0 100%; } }
      #footer .footer-top .inner .block-contact-2 {
        width: 25%;
        flex: 0 0 25%; }
        @media only screen and (max-width: 768px) {
          #footer .footer-top .inner .block-contact-2 {
            width: 100%;
            flex: 0 0 100%; } }
        #footer .footer-top .inner .block-contact-2 .address {
          margin-bottom: 0; }
      #footer .footer-top .inner .block-contact-3 {
        width: 15%;
        flex: 0 0 15%; }
        @media only screen and (max-width: 768px) {
          #footer .footer-top .inner .block-contact-3 {
            width: 100%;
            flex: 0 0 100%;
            padding-left: 28px; } }
        #footer .footer-top .inner .block-contact-3 div span {
          line-height: 1.85; }
  #footer .footer-bottom {
    padding-top: 80px;
    background-color: #445d98; }
    @media only screen and (max-width: 1024px) {
      #footer .footer-bottom {
        padding-top: 60px; } }
    @media only screen and (max-width: 768px) {
      #footer .footer-bottom {
        padding-top: 50px; } }
    #footer .footer-bottom .inner .top {
      display: flex;
      min-height: 120px; }
      @media only screen and (max-width: 768px) {
        #footer .footer-bottom .inner .top {
          flex-direction: column;
          gap: 30px; } }
      #footer .footer-bottom .inner .top .block-logo-social-media {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30%;
        flex: 0 0 30%; }
        @media only screen and (max-width: 1350px) {
          #footer .footer-bottom .inner .top .block-logo-social-media {
            width: 25%;
            flex: 0 0 25%; } }
        @media only screen and (max-width: 768px) {
          #footer .footer-bottom .inner .top .block-logo-social-media {
            width: 100%;
            flex: 0 0 100%; } }
        @media only screen and (max-width: 768px) {
          #footer .footer-bottom .inner .top .block-logo-social-media .logo-footer {
            margin-bottom: 30px; } }
        #footer .footer-bottom .inner .top .block-logo-social-media .logo-footer img {
          width: 100%;
          max-width: 150px;
          height: auto; }
        #footer .footer-bottom .inner .top .block-logo-social-media .social-media {
          display: flex;
          justify-content: space-between;
          gap: 10px;
          width: 100%;
          max-width: 150px; }
          #footer .footer-bottom .inner .top .block-logo-social-media .social-media a svg {
            width: 34px;
            height: 34px;
            fill: #fff; }
      #footer .footer-bottom .inner .top .block-menu ul li {
        margin-bottom: 8px; }
        #footer .footer-bottom .inner .top .block-menu ul li:last-of-type {
          margin-bottom: 0; }
        #footer .footer-bottom .inner .top .block-menu ul li.menu-item-has-children a {
          font-size: 20px;
          font-family: "vw_headbold", sans-serif; }
      #footer .footer-bottom .inner .top .block-menu.block-menu1 {
        width: 30%;
        flex: 0 0 30%; }
        @media only screen and (max-width: 768px) {
          #footer .footer-bottom .inner .top .block-menu.block-menu1 {
            width: 100%;
            flex: 0 0 100%; } }
      #footer .footer-bottom .inner .top .block-menu.block-menu2 {
        width: 25%;
        flex: 0 0 25; }
        @media only screen and (max-width: 768px) {
          #footer .footer-bottom .inner .top .block-menu.block-menu2 {
            width: 100%;
            flex: 0 0 100%; } }
      #footer .footer-bottom .inner .top .block-menu.block-menu3 {
        width: 15%;
        flex: 0 0 15%; }
        @media only screen and (max-width: 768px) {
          #footer .footer-bottom .inner .top .block-menu.block-menu3 {
            width: 100%;
            flex: 0 0 100%; } }
    #footer .footer-bottom .inner .bottom {
      display: flex;
      padding: 50px 0;
      margin-top: 80px;
      border-top: 3px solid #fff; }
      @media only screen and (max-width: 1024px) {
        #footer .footer-bottom .inner .bottom {
          margin-top: 60px; } }
      @media only screen and (max-width: 768px) {
        #footer .footer-bottom .inner .bottom {
          flex-direction: column;
          margin-top: 50px; } }
      #footer .footer-bottom .inner .bottom .wrapper-language-switcher {
        width: 32.5%;
        flex: 0 0 32.5%; }
        @media only screen and (max-width: 1350px) {
          #footer .footer-bottom .inner .bottom .wrapper-language-switcher {
            width: 25%;
            flex: 0 0 25%; } }
        @media only screen and (max-width: 768px) {
          #footer .footer-bottom .inner .bottom .wrapper-language-switcher {
            width: 100%;
            flex: 0 0 100%;
            margin-bottom: 8px; } }
        @media only screen and (max-width: 768px) {
          #footer .footer-bottom .inner .bottom .wrapper-language-switcher .wpml-ls ul.js-wpml-ls-sub-menu {
            display: none;
            position: relative; } }
        @media only screen and (max-width: 768px) {
          #footer .footer-bottom .inner .bottom .wrapper-language-switcher .wpml-ls ul.js-wpml-ls-sub-menu.active {
            display: block; } }
      #footer .footer-bottom .inner .bottom .various-links {
        display: flex;
        justify-content: space-between;
        width: 100%;
        padding-right: 6%; }
        @media only screen and (max-width: 768px) {
          #footer .footer-bottom .inner .bottom .various-links {
            flex-direction: column; } }
        @media only screen and (max-width: 768px) {
          #footer .footer-bottom .inner .bottom .various-links a {
            margin-bottom: 8px; } }
        @media only screen and (max-width: 768px) {
          #footer .footer-bottom .inner .bottom .various-links .copyright {
            margin-top: 20px; } }

/* Modals */
/* ************ */
.modal-general {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 250ms ease-in-out; }
  @media only screen and (max-width: 768px) {
    .modal-general {
      padding: 25px; } }
  .modal-general .inner {
    position: relative;
    width: 100%;
    max-width: 600px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2); }
    .modal-general .inner .head .button-close {
      position: absolute;
      right: 15px;
      top: 15px; }
    .modal-general .inner .main-content {
      display: flex;
      align-items: center;
      gap: 20px;
      min-height: 400px; }
      @media only screen and (max-width: 768px) {
        .modal-general .inner .main-content {
          flex-wrap: wrap; } }
      .modal-general .inner .main-content .wrapper-image, .modal-general .inner .main-content .wrapper-text {
        flex: 0 0 calc(50% - 10px); }
        @media only screen and (max-width: 768px) {
          .modal-general .inner .main-content .wrapper-image, .modal-general .inner .main-content .wrapper-text {
            flex: 0 0 100%; } }
      .modal-general .inner .main-content img {
        width: 100%;
        height: auto; }
      .modal-general .inner .main-content .wrapper-text {
        text-align: center; }
        .modal-general .inner .main-content .wrapper-text h3 {
          margin-bottom: 10px;
          font-size: 24px; }
          @media only screen and (max-width: 768px) {
            .modal-general .inner .main-content .wrapper-text h3 {
              font-size: 20px; } }
        .modal-general .inner .main-content .wrapper-text p, .modal-general .inner .main-content .wrapper-text ul, .modal-general .inner .main-content .wrapper-text ol {
          text-align: center;
          font-size: 20px; }
          @media only screen and (max-width: 768px) {
            .modal-general .inner .main-content .wrapper-text p, .modal-general .inner .main-content .wrapper-text ul, .modal-general .inner .main-content .wrapper-text ol {
              font-size: 16px; } }
        .modal-general .inner .main-content .wrapper-text p {
          margin-bottom: 0.3em; }
        .modal-general .inner .main-content .wrapper-text .button-general {
          margin-top: 40px; }
  .modal-general.show {
    opacity: 1;
    visibility: visible;
    transition: all 250ms ease-in-out; }

.modal-search .inner .main-content {
  justify-content: center;
  min-height: 200px; }
  @media only screen and (max-width: 768px) {
    .modal-search .inner .main-content {
      min-height: 140px; } }

/* Blocks */
/* ************ */
.section-block.margin_default {
  padding-top: 100px;
  padding-bottom: 100px; }
  @media only screen and (max-width: 1350px) {
    .section-block.margin_default {
      padding-top: 80px;
      padding-bottom: 80px; } }
  @media only screen and (max-width: 1024px) {
    .section-block.margin_default {
      padding-top: 70px;
      padding-bottom: 70px; } }
  @media only screen and (max-width: 768px) {
    .section-block.margin_default {
      padding-top: 50px;
      padding-bottom: 50px; } }
.section-block.margin_top {
  padding-top: 100px;
  padding-bottom: 0; }
  @media only screen and (max-width: 1350px) {
    .section-block.margin_top {
      padding-top: 80px; } }
  @media only screen and (max-width: 1024px) {
    .section-block.margin_top {
      padding-top: 70px; } }
  @media only screen and (max-width: 768px) {
    .section-block.margin_top {
      padding-top: 50px; } }
.section-block.margin_bottom {
  padding-top: 0;
  padding-bottom: 100px; }
  @media only screen and (max-width: 1024px) {
    .section-block.margin_bottom {
      padding-bottom: 80px; } }
  @media only screen and (max-width: 768px) {
    .section-block.margin_bottom {
      padding-bottom: 50px; } }
.section-block.margin_top_bottom {
  padding-top: 100px;
  padding-bottom: 100px; }
  @media only screen and (max-width: 1024px) {
    .section-block.margin_top_bottom {
      padding-top: 80px;
      padding-bottom: 80px; } }
  @media only screen and (max-width: 768px) {
    .section-block.margin_top_bottom {
      padding-top: 50px;
      padding-bottom: 50px; } }

.section-title.margin_default {
  padding-top: 60px;
  padding-bottom: 70px; }
  @media only screen and (max-width: 1024px) {
    .section-title.margin_default {
      padding-top: 50px;
      padding-bottom: 90px; } }
  @media only screen and (max-width: 768px) {
    .section-title.margin_default {
      padding-top: 40px;
      padding-bottom: 40px; } }

.section-breadcrumbs.margin_top {
  padding-top: 60px; }
  @media only screen and (max-width: 768px) {
    .section-breadcrumbs.margin_top {
      padding-top: 30px; } }
.section-breadcrumbs .inner .breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap; }
  @media only screen and (max-width: 768px) {
    .section-breadcrumbs .inner .breadcrumbs {
      align-items: flex-start; } }
  .section-breadcrumbs .inner .breadcrumbs a, .section-breadcrumbs .inner .breadcrumbs span {
    font-size: 14px;
    text-transform: uppercase;
    line-height: 1;
    color: #808080; }
    @media only screen and (max-width: 768px) {
      .section-breadcrumbs .inner .breadcrumbs a, .section-breadcrumbs .inner .breadcrumbs span {
        font-size: 12px; } }
  .section-breadcrumbs .inner .breadcrumbs .button-home svg {
    width: 20px;
    height: 20px;
    margin-top: -4px;
    fill: #1792e1;
    transition: fill 150ms ease-in-out; }
    @media only screen and (max-width: 1024px) {
      .section-breadcrumbs .inner .breadcrumbs .button-home svg {
        z-index: 1;
        width: 20px;
        height: 20px; } }
    @media only screen and (max-width: 768px) {
      .section-breadcrumbs .inner .breadcrumbs .button-home svg {
        margin-top: -3px;
        width: 16px;
        height: 16px; } }
  .section-breadcrumbs .inner .breadcrumbs .button-home:hover svg {
    fill: #ffa600; }
  .section-breadcrumbs .inner .breadcrumbs .button-cpt {
    color: #1792e1;
    transition: color 150ms ease-in-out; }
    .section-breadcrumbs .inner .breadcrumbs .button-cpt:hover {
      color: #ffa600; }

/* Posts / Pages */
/* ************ */
.error404 #content .section {
  padding-top: 270px;
  padding-bottom: 160px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center; }
  @media only screen and (max-width: 1024px) {
    .error404 #content .section {
      padding-top: 120px;
      padding-bottom: 120px; } }
  @media only screen and (max-width: 768px) {
    .error404 #content .section {
      padding-top: 100px;
      padding-bottom: 100px; } }
  .error404 #content .section h1 {
    margin-bottom: 10px; }
  .error404 #content .section .searchform {
    display: flex;
    justify-content: center; }
    .error404 #content .section .searchform .search-form {
      width: 100%;
      max-width: 330px;
      margin-top: 30px;
      margin-left: auto;
      margin-right: auto;
      border: 1px solid #cacaca; }
      .error404 #content .section .searchform .search-form input[type='search'] {
        height: auto; }
      .error404 #content .section .searchform .search-form .search-field {
        font-size: 15px; }

.search .section-search {
  padding-top: 270px;
  padding-bottom: 160px;
  padding-left: 20px;
  padding-right: 20px; }
  @media only screen and (max-width: 1024px) {
    .search .section-search {
      padding-top: 120px;
      padding-bottom: 120px; } }
  @media only screen and (max-width: 768px) {
    .search .section-search {
      padding-top: 100px;
      padding-bottom: 100px; } }
  .search .section-search .inner {
    display: flex; }
    @media only screen and (max-width: 768px) {
      .search .section-search .inner {
        flex-wrap: wrap; } }
    .search .section-search .inner .left {
      flex: 0 0 360px;
      margin-right: 15%; }
      @media only screen and (max-width: 1024px) {
        .search .section-search .inner .left {
          flex: 0 0 300px;
          margin-right: 12%; } }
      @media only screen and (max-width: 768px) {
        .search .section-search .inner .left {
          flex: auto;
          margin-right: 0;
          border-bottom: 3px solid #000;
          padding-bottom: 20px;
          margin-bottom: 40px; } }
      .search .section-search .inner .left h1 {
        font-size: 34px;
        margin-bottom: 30px; }
      .search .section-search .inner .left .search-term {
        display: block;
        color: #1792e1; }
    .search .section-search .inner .right article {
      margin-bottom: 30px; }
      .search .section-search .inner .right article a .entry-header h2 {
        font-size: 20px;
        color: #000;
        transition: color 150ms ease-in-out; }
        @media only screen and (max-width: 768px) {
          .search .section-search .inner .right article a .entry-header h2 {
            font-size: 20px; } }
      .search .section-search .inner .right article a .entry-content {
        margin-top: 8px;
        transition: color 150ms ease-in-out;
        font-size: 14px;
        line-height: 1.6; }
      .search .section-search .inner .right article a:hover h2, .search .section-search .inner .right article a:hover .entry-content {
        color: #1792e1; }

/*# sourceMappingURL=style.css.map */
