@charset "UTF-8";
/* ---------------------------------- */
/* ----------- BASE CONFIG ---------- */
/* ---------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@700;800;900&display=swap");
@import url("http://fonts.cdnfonts.com/css/gotham");
@keyframes bounceAndRotate {
  0% {
    left: 100%;
  }
  100% {
    left: 0px;
    transform: rotate(90deg);
  }
}
@keyframes removeBounceAndRotate {
  0% {
    left: 0px;
  }
  100% {
    left: 100%;
    transform: rotate(90deg);
  }
}
/* -------------------------- */
/* --------- 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;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

html {
  overflow-x: hidden;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

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

img {
  vertical-align: middle;
}

a:hover {
  text-decoration: none !important;
}

* {
  box-sizing: border-box;
}

input,
textarea,
button {
  outline: none;
  border: none;
}

@supports (-webkit-appearance: none) or (-moz-appearance: none) {
  input[type=checkbox],
  input[type=radio] {
    --active: var(--bc-1);
    --active-inner: #69c1c1;
    --focus: 2px rgba(39, 94, 254, 0.3);
    --border: white;
    --disabled: #f6f8ff;
    --disabled-inner: #e1e6f9;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 21px;
    outline: none;
    display: inline-block;
    vertical-align: top;
    position: relative;
    margin: 0;
    cursor: pointer;
    border: 2px solid var(--bc, var(--border));
    background: var(--b, var(--background));
    transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
  }
  input[type=checkbox]:after,
  input[type=radio]:after {
    content: "";
    display: block;
    left: 0;
    top: 0;
    position: absolute;
    transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
  }
  input[type=checkbox]:checked,
  input[type=radio]:checked {
    --d-o: 0.3s;
    --d-t: 0.6s;
    --d-t-e: cubic-bezier(0.2, 0.85, 0.32, 1.2);
  }
  input[type=checkbox]:disabled,
  input[type=radio]:disabled {
    --b: var(--disabled);
    cursor: not-allowed;
    opacity: 0.9;
  }
  input[type=checkbox]:disabled:checked,
  input[type=radio]:disabled:checked {
    --b: var(--disabled-inner);
    --bc: var(--border);
  }
  input[type=checkbox]:disabled + label,
  input[type=radio]:disabled + label {
    cursor: not-allowed;
  }
  input[type=checkbox]:hover:not(:checked):not(:disabled),
  input[type=radio]:hover:not(:checked):not(:disabled) {
    --bc: var(--border-hover);
  }
  input[type=checkbox]:focus,
  input[type=radio]:focus {
    box-shadow: 0 0 0 var(--focus);
  }
  input[type=checkbox]:not(.switch),
  input[type=radio]:not(.switch) {
    width: 21px;
  }
  input[type=checkbox]:not(.switch):after,
  input[type=radio]:not(.switch):after {
    opacity: var(--o, 0);
  }
  input[type=checkbox]:not(.switch):checked,
  input[type=radio]:not(.switch):checked {
    --o: 0;
  }
  input[type=checkbox] + label,
  input[type=radio] + label {
    font-size: 14px;
    line-height: 21px;
    display: inline-block;
    vertical-align: top;
    cursor: pointer;
    margin-left: 4px;
  }
  input[type=radio]:not(.switch):after {
    width: 5px;
    height: 9px;
    border: 2px solid var(--active-inner);
    border-top: 0;
    border-left: 0;
    left: 7px;
    top: 4px;
    transform: rotate(var(--r, 20deg));
  }
  input[type=radio]:not(.switch):checked {
    --r: 43deg;
  }
  input[type=radio].switch {
    width: 38px;
  }
  input[type=radio].switch:after {
    left: 2px;
    top: 2px;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    background: var(--ab, var(--border));
    transform: translateX(var(--x, 0));
  }
  input[type=radio].switch:checked {
    --ab: var(--active-inner);
    --x: 17px;
  }
  input[type=radio].switch:disabled:not(:checked):after {
    opacity: 0.6;
  }
}
html {
  box-sizing: border-box;
}

* {
  box-sizing: inherit;
}
*:before, *:after {
  box-sizing: inherit;
}

/* -------------------------- */
:root {
  --space-m: 16px;
  --space-xxs: calc(var(--space-m) / 8);
  --space-xs: calc(var(--space-m) / 4);
  --space-s: calc(var(--space-m) / 2);
  --space-l: calc(var(--space-m) * 2);
  --space-xl: calc(var(--space-m) * 3);
  --space-xxl: calc(var(--space-m) * 8);
  --space-inset-m: var(--space-m) var(--space-m) var(--space-m) var(--space-m);
  --space-inset-xs: var(--space-xs) var(--space-xs) var(--space-xs) var(--space-xs);
  --space-inset-s: var(--space-s) var(--space-s) var(--space-s) var(--space-s);
  --space-inset-m: var(--space-m) var(--space-m) var(--space-m) var(--space-m);
  --space-inset-l: var(--space-l) var(--space-l) var(--space-l) var(--space-l);
  --space-inset-xl: var(--space-xl) var(--space-xl) var(--space-xl) var(--space-xl);
  --space-stretch-xs: var(--space-xs) var(--space-xxs);
  --space-stretch-s: var(--space-s) var(--space-xs);
  --space-stretch-m: var(--space-m) var(--space-s);
  --space-stretch-l: var(--space-l) var(--space-m);
  --space-stretch-xl: var(--space-xl) var(--space-l);
  --space-squish-xs: var(--space-xxs) var(--space-xs);
  --space-squish-s: var(--space-xs) var(--space-s);
  --space-squish-m: var(--space-s) var(--space-m);
  --space-squish-l: var(--space-m) var(--space-l);
  --space-squish-xl: var(--space-l) var(--space-xl);
  --space-stack-xs: 0 0 var(--space-xs) 0;
  --space-stack-s: 0 0 var(--space-s) 0;
  --space-stack-m: 0 0 var(--space-m) 0;
  --space-stack-l: 0 0 var(--space-l) 0;
  --space-stack-xl: 0 0 var(--space-xl) 0;
  --space-inline-m: 0 var(--space-m) 0 0;
  --space-inline-xs: 0 var(--space-xs) 0 0;
  --space-inline-s: 0 var(--space-s) 0 0;
  --space-inline-m: 0 var(--space-m) 0 0;
  --space-inline-l: 0 var(--space-l) 0 0;
  --space-inline-xl: 0 var(--space-xl) 0 0;
}

.ft--transparent {
  color: transparent;
}

.bg--transparent {
  background-color: transparent;
}

.bc--transparent {
  background-color: transparent;
}

:root {
  --transparent: transparent;
  --white: #ffffff;
  --black: #000000;
  --bc-1: #BD2D2C;
  --bc-1-lighter-30: #75cfee;
  --bc-2: #BD2D2C;
  --bc-2-lighter-30: #7fd3ef;
  --bc-3: #BD2D2C;
  --bc-3-lighter-30: #7feac8;
  --light-grey: #F6F6F6;
  --dark-grey: #4a4a4a;
  --gold: #FFB300;
  --red: #FF0000;
  --green: #42a62a;
}

.bg {
  --bg-color: transparent;
  background-color: var(--bg-color);
}
.bg--transparent {
  --bg-color: transparent;
}
.bg--white {
  --bg-color: #ffffff;
}
.bg--hov-white:hover {
  --bg-color: #ffffff;
}
.bg--black {
  --bg-color: #000000;
}
.bg--hov-black:hover {
  --bg-color: #000000;
}
.bg--bg-1, .top--articles {
  --bg-color: #39A736;
}
.bg--hov-bg-1:hover {
  --bg-color: #39A736;
}
.bg--bg-2 {
  --bg-color: #256323;
}
.bg--hov-bg-2:hover {
  --bg-color: #256323;
}
.bg--dark-grey {
  --bg-color: #4a4a4a;
}
.bg--hov-dark-grey:hover {
  --bg-color: #4a4a4a;
}
.bg--light-grey {
  --bg-color: #F6F6F6;
}
.bg--hov-light-grey:hover {
  --bg-color: #F6F6F6;
}
.bg--red {
  --bg-color: #FF0000;
}
.bg--hov-red:hover {
  --bg-color: #FF0000;
}
.bg--gold {
  --bg-color: #FFB300;
}
.bg--hov-gold:hover {
  --bg-color: #FFB300;
}
.bg--green {
  --bg-color: #42a62a;
}
.bg--hov-green:hover {
  --bg-color: #42a62a;
}

.ft {
  --ft-color: var(--black);
  color: var(--ft-color);
}
.ft--transparent {
  --ft-color: transparent;
}
.ft--white {
  --ft-color: #ffffff;
}
.ft--hov-white:hover {
  --ft-color: #ffffff;
}
.ft--black {
  --ft-color: #000000;
}
.ft--hov-black:hover {
  --ft-color: #000000;
}
.ft--ft-1 {
  --ft-color: #7956FC;
}
.ft--hov-ft-1:hover {
  --ft-color: #7956FC;
}
.ft--ft-2 {
  --ft-color: #7366fc;
}
.ft--hov-ft-2:hover {
  --ft-color: #7366fc;
}
.ft--dark-grey {
  --ft-color: #4a4a4a;
}
.ft--hov-dark-grey:hover {
  --ft-color: #4a4a4a;
}
.ft--light-grey {
  --ft-color: #F6F6F6;
}
.ft--hov-light-grey:hover {
  --ft-color: #F6F6F6;
}
.ft--red {
  --ft-color: #FF0000;
}
.ft--hov-red:hover {
  --ft-color: #FF0000;
}
.ft--gold {
  --ft-color: #FFB300;
}
.ft--hov-gold:hover {
  --ft-color: #FFB300;
}
.ft--green {
  --ft-color: #42a62a;
}
.ft--hov-green:hover {
  --ft-color: #42a62a;
}
.ft--bg-1 {
  --ft-color: #39A736;
}
.ft--hov-bg-1:hover {
  --ft-color: #39A736;
}

.bc {
  --bc-color: #ffffff;
  border-width: 1px;
  border-style: solid;
  border-color: var(--bc-color);
}
.bc--transparent {
  --bc-color: transparent;
}
.bc--white {
  --bc-color: #ffffff;
}
.bc--hov-white:hover {
  --bc-color: #ffffff;
}
.bc--black {
  --bc-color: #000000;
}
.bc--hov-black:hover {
  --bc-color: #000000;
}
.bc--bc-1 {
  --bc-color: #7956FC;
}
.bc--hov-bc-1:hover {
  --bc-color: #7956FC;
}
.bc--bc-2 {
  --bc-color: #7366fc;
}
.bc--hov-bc-2:hover {
  --bc-color: #7366fc;
}
.bc--dark-grey {
  --bc-color: #4a4a4a;
}
.bc--hov-dark-grey:hover {
  --bc-color: #4a4a4a;
}
.bc--light-grey {
  --bc-color: #F6F6F6;
}
.bc--hov-light-grey:hover {
  --bc-color: #F6F6F6;
}
.bc--red {
  --bc-color: #FF0000;
}
.bc--hov-red:hover {
  --bc-color: #FF0000;
}
.bc--gold {
  --bc-color: #FFB300;
}
.bc--hov-gold:hover {
  --bc-color: #FFB300;
}
.bc--green {
  --bc-color: #42a62a;
}
.bc--hov-green:hover {
  --bc-color: #42a62a;
}

:root {
  --content-max-width: 1420px;
  --content-medium-width: 1200px;
  --content-min-width: 950px;
  --top-large-height: 700px;
  --top-medium-height: 550px;
  --top-small-height: 350px;
  --header-height: 64px;
  --logo-width: 128px;
  --menu-width: 1280px;
  --block-max-height: 500px;
  --footer--logo-width: 100px;
  --z-index--modal: 20;
  --layer-viewport: 20;
  --z-index--overlay: 15;
  --z-index--dropdown: 10;
  --z-index--header: 5;
  --z-index--footer: 5;
  --z-index--highlight: 2;
  --z-index--body: 1;
  --z-index--background: 0;
  --z-index--hidden: -2;
  --distance-animation: 120px;
}

@media (max-width: 1250px) {
  :root {
    --logo-width: 80px;
  }
}
@media (max-width: 900px, ) {
  :root {
    --content-max-width: 100%;
    --header-height: 64px;
    --menu-width: 100%;
    --top-small-height: 400px;
  }
}
@media (max-width: 768px, ) {
  :root {
    --content-medium-width: 100%;
    --top-small-height: 350px;
  }
}
@media (max-width: 480px, ) {
  :root {
    --content-min-width: 100%;
    --top-small-height: 350px;
    --top-large-height: 550px;
    --top-medium-height: 450px;
    --header-height: 48px;
  }
}
/* COPY ALL THIS CODE IN THE TINYMCE STYLES.CSS IN THE BACK */
@font-face {
  font-family: "Lato Regular";
  src: url("fonts/Lato-Regular.woff2") format("woff2"), url("fonts/Lato-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato Thin";
  src: url("fonts/Lato-Thin.woff2") format("woff2"), url("fonts/Lato-Thin.woff") format("woff");
  font-weight: normal;
  font-style: 100;
  font-display: swap;
}
@font-face {
  font-family: "Lato Thin Italic";
  src: url("fonts/Lato-ThinItalic.woff2") format("woff2"), url("fonts/Lato-ThinItalic.woff") format("woff");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Lato Black";
  src: url("fonts/Lato-Black.woff2") format("woff2"), url("fonts/Lato-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato Black Italic";
  src: url("fonts/Lato-BlackItalic.woff2") format("woff2"), url("fonts/Lato-BlackItalic.woff") format("woff");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Lato Bold";
  src: url("fonts/Lato-Bold.woff2") format("woff2"), url("fonts/Lato-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato Bold Italic";
  src: url("fonts/Lato-BoldItalic.woff2") format("woff2"), url("fonts/Lato-BoldItalic.woff") format("woff");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Lato Italic";
  src: url("fonts/Lato-Italic.woff2") format("woff2"), url("fonts/Lato-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Lato Light Italic";
  src: url("fonts/Lato-LightItalic.woff2") format("woff2"), url("fonts/Lato-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Lato Light";
  src: url("fonts/Lato-Light.woff2") format("woff2"), url("fonts/Lato-Light.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Book";
  src: url("fonts/GothamBook.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Bold";
  src: url("fonts/GothamBold.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Light";
  src: url("fonts/GothamLight.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Rounded Bold";
  src: url("fonts/GothamRnd-Bold.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Rounded Book";
  src: url("fonts/GothamRounded-Book.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Rounded Medium";
  src: url("fonts/GothamRounded-Medium.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nunito Bold";
  src: url("fonts/Nunito-Bold.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nunito Regular";
  src: url("fonts/Nunito-Regular.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto Bold";
  src: url("fonts/Roboto-Bold.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
html {
  font-size: 10px;
}
@media (max-width: 480px) {
  html {
    font-size: 9px;
  }
}
@media (max-width: 350px) {
  html {
    font-size: 8px;
  }
}

:root {
  /* DISPLAY L FONT FAMILY, FONT SIZE, FONT WEIGHT AND LINE HEIGHT */
  --display-l-ff: "ITCFranklinGothicStd";
  --display-l-fs: 7.2rem;
  --display-l-fw: bold;
  --display-l-lh: 8rem;
  /* DISPLAY M FONT FAMILY, FONT SIZE, FONT WEIGHT AND LINE HEIGHT */
  --display-m-ff: "ITCFranklinGothicStd";
  --display-m-fs: 5.2rem;
  --display-m-fw: bold;
  --display-m-lh: 6.4rem;
  /* DISPLAY S FONT FAMILY, FONT SIZE, FONT WEIGHT AND LINE HEIGHT */
  --display-s-ff: "ITCFranklinGothicStd";
  --display-s-fs: 4.3rem;
  --display-s-fw: bold;
  --display-s-lh: 4.8rem;
  /* HEADLINE FONT FAMILY, FONT SIZE, FONT WEIGHT AND LINE HEIGHT */
  --headline-ff: "ITCFranklinGothicStd";
  --headline-fs: 3rem;
  --headline-fw: bold;
  --headline-lh: 1.5;
  /* TITLE FONT FAMILY, FONT SIZE, FONT WEIGHT AND LINE HEIGHT */
  --title-ff: "ITCFranklinGothicStd";
  --title-fs: 2.5rem;
  --title-fw: 300;
  --title-lh: 3.5rem;
  /* TITLE FONT FAMILY, FONT SIZE, FONT WEIGHT AND LINE HEIGHT */
  --subtitle-ff: "ITCFranklinGothicStd";
  --subtitle-fs: 2rem;
  --subtitle-fw: normal;
  --subtitle-lh: 3rem;
  /* BUTTON FONT FAMILY, FONT SIZE, FONT WEIGHT AND LINE HEIGHT */
  --button-ff: "ITCFranklinGothicStd";
  --button-fs: 1.5rem;
  --button-fw: 300;
  --button-lh: 2.7rem;
  /* BODY FONT FAMILY, FONT SIZE, FONT WEIGHT AND LINE HEIGHT */
  --body-ff: "ITCFranklinGothicStd";
  --body-fs: 1.8rem;
  --body-fw: bold;
  --body-lh: 1.5;
  /* CAPTION FONT FAMILY, FONT SIZE, FONT WEIGHT AND LINE HEIGHT */
  --caption-ff: "ITCFranklinGothicStd";
  --caption-fs: 1.5rem;
  --caption-fw: bold;
  --caption-lh: 1.5;
  /* SMALL FONT FAMILY, FONT SIZE, FONT WEIGHT AND LINE HEIGHT */
  --small-ff: "ITCFranklinGothicStd";
  --small-fs: 1rem;
  --small-fw: bold;
  --small-lh: 1.5rem;
}
@media (max-width: 480px) {
  :root {
    --display-l-fs: 4.5rem;
    --display-l-lh: 5rem;
    --display-m-fs: 3.6rem;
    --display-m-lh: 5.4rem;
    --display-s-fs: 2rem;
    --display-s-lh: 2.7rem;
  }
}

.display-l {
  font-family: var(--display-l-ff);
  font-size: var(--display-l-fs);
  font-weight: var(--display-l-fw);
  line-height: var(--display-l-lh);
}
.display-l__bold {
  font-family: var(--display-l-ff);
}

.display-m {
  font-family: var(--display-m-ff);
  font-size: var(--display-m-fs);
  font-weight: var(--display-m-fw);
  line-height: var(--display-m-lh);
}
.display-m__bold {
  font-family: var(--display-m-ff);
}

.display-s {
  font-family: var(--display-s-ff);
  font-size: var(--display-s-fs);
  font-weight: var(--display-s-fw);
  line-height: var(--display-s-lh);
}
.display-s--bold {
  font-family: var(--display-s-ff);
}

.headline-font {
  font-family: var(--headline-ff);
  font-size: var(--headline-fs);
  font-weight: var(--headline-fw);
  line-height: var(--headline-lh);
}
.headline-font--light {
  font-weight: 300;
}

.title-font {
  font-family: var(--title-ff);
  font-size: var(--title-fs);
  font-weight: var(--title-fw);
  line-height: var(--title-lh);
}
@media laptop--non-retina {
  .title-font {
    font-size: 2.2rem;
  }
}

.subtitle-font {
  font-family: var(--subtitle-ff);
  font-size: var(--subtitle-fs);
  font-weight: var(--subtitle-fw);
  line-height: var(--subtitle-lh);
  color: var(--bc-2);
}

.button-font {
  font-family: var(--button-ff);
  font-size: var(--button-fs);
  font-weight: var(--button-fw);
  line-height: var(--button-lh);
}
.button-font--bold {
  font-weight: 700;
}
.button-font--light {
  font-weight: 400;
}

.body-font, .articles-related .content .articles-wrapper article .article-text p, .article__socials .date p, .langs a,
.langs span, .form .form-block input[type=text],
.form .form-block input[type=textarea],
.form .form-block input[type=email],
.form .form-block input[type=tel],
.form .form-block input[type=number],
.form .form-block input[type=date],
.form .form-block input[type=password],
.form .form-block textarea,
.form .form-block select, .form .form-block label, body,
p {
  font-family: var(--body-ff);
  font-size: var(--body-fs);
  font-style: normal;
  font-weight: var(--body-fw);
  line-height: var(--body-lh);
}

.quotes {
  position: relative;
}
.quotes:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='35' height='27' viewBox='0 0 35 27'%3E%3Cpath fill='%2300A7E0' d='M0 27h15V12.528H6.46c.217-2.518.714-3.677 1.967-4.731l.113-.093c1.485-1.224 2.97-1.8 5.866-2.232L11.139 0C7.574.792 5.866 1.584 3.936 3.384 1.336 5.616 0 8.784 0 12.528V27zm20 0V12.528c0-3.657 1.282-6.764 3.706-8.987l.175-.157C25.896 1.584 27.61.792 31.119 0l3.284 5.472c-2.91.432-4.403 1.008-5.82 2.232-1.419 1.08-1.867 2.232-2.09 4.824H35V27H20z' opacity='.402'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  width: 50px;
  height: 50px;
}
@media (max-width: 767px) {
  .quotes:before {
    top: -30px;
  }
}

.body-font--bold {
  font-family: var(--body-ff);
  font-size: var(--body-fs);
  font-style: normal;
  font-weight: 600;
  line-height: var(--body-lh);
}

strong,
b {
  font-weight: 600;
}

.body-font--italic,
.body-font em,
.articles-related .content .articles-wrapper article .article-text p em,
.article__socials .date p em,
.langs a em,
.langs span em,
.form .form-block input[type=text] em,
.form .form-block input[type=textarea] em,
.form .form-block input[type=email] em,
.form .form-block input[type=tel] em,
.form .form-block input[type=number] em,
.form .form-block input[type=date] em,
.form .form-block input[type=password] em,
.form .form-block textarea em,
.form .form-block select em,
.form .form-block label em,
body em {
  font-family: var(--body-ff);
  font-size: var(--body-fs);
  font-style: italic;
  font-weight: normal;
  line-height: var(--body-lh);
}

.caption-font, .form .form-block.legal, .alert__message {
  font-family: var(--caption-ff);
  font-size: var(--caption-fs);
  font-weight: var(--caption-fw);
  line-height: var(--caption-lh);
  letter-spacing: 1px;
}
.caption-font--light {
  font-weight: 300;
}

.small-font {
  font-family: var(--small-ff);
  font-size: var(--small-fs);
  font-weight: var(--small-fw);
  line-height: var(--small-lh);
  letter-spacing: 1px;
}
.small-font--light {
  font-weight: 300;
}

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

sup {
  font-size: 20px;
}

h4.display-m {
  color: var(--bc-2);
  font-size: 52px;
  font-weight: 300;
  position: relative;
}
@media (max-width: 767px) {
  h4.display-m {
    font-size: 30px;
  }
}

button {
  font-family: var(--body-ff);
}

/* -------------------------- */
/* ---------------------------------- */
/* ---------------------------------- */
/* --------- GENERAL LAYOUTS -------- */
/* ---------------------------------- */
/* -------------------------- */
/* ------ GENERAL GRID ------ */
/* ------ LAYOUT ------------ */
/* -------------------------- */
html,
body {
  overflow-x: hidden;
}

a {
  font-weight: bold;
  color: var(--bc-1);
  text-decoration: none;
  transition: all 0.2s ease-out;
}
a:hover {
  text-decoration: underline;
}
a.text-link {
  color: black;
  font-weight: 300;
  font-style: italic;
  /* text-decoration: underline; */
  /* line-height: 31px; */
  border-bottom: 1px solid black;
  height: -moz-fit-content;
  height: fit-content;
  text-decoration: none;
  transition: all 0.2s ease-out;
}
a.text-link:hover {
  color: #555;
  border-bottom-color: #555;
}

ul {
  list-style-type: disc;
  margin-bottom: var(--space-m);
}

ul li {
  list-style: none;
}

ul li::before {
  content: "•";
  color: var(--green);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

ol {
  counter-reset: ol-counter;
}

ol li {
  margin-bottom: var(--space-s);
  max-width: calc(100% - 50px);
  display: flex;
}

ol li:before {
  content: counter(ol-counter) ".";
  counter-increment: ol-counter;
  display: inline-block;
  width: 20px;
  margin-right: var(--space-s);
  font-style: normal;
  text-align: right;
}

img {
  max-width: 100%;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

h2 em {
  font-family: var(--headline-font-ff) !important;
  font-size: var(--headline-font-fs) !important;
  font-style: italic !important;
  font-weight: normal !important;
  line-height: var(--headline-font-lh) !important;
}

sup {
  vertical-align: super;
}

sub {
  vertical-align: sub;
}

.cover-video {
  position: relative;
  overflow: hidden;
}
.cover-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: 0.5s cubic-bezier(0.52, 0.01, 0.16, 1) 0s;
}
.cover-video video.loaded {
  opacity: 1;
}
.cover-video video.horizontal {
  width: 100%;
  height: none;
}
.cover-video video.vertical {
  width: none;
  height: 100%;
}

.block-assistant {
  position: fixed;
  top: 11%;
  right: 0%;
  z-index: 100;
}
@media (max-width: 767px) {
  .block-assistant {
    width: 104px;
    top: 13%;
  }
}
.block-assistant .block-chat {
  position: fixed;
  top: 22%;
  right: 1%;
  z-index: 101;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 767px) {
  .block-assistant .block-chat {
    top: 18%;
  }
}
.block-assistant .block-chat img {
  width: 70px;
}
@media (max-width: 767px) {
  .block-assistant .block-chat img {
    width: 40px;
  }
}
.block-assistant .block-chat a {
  width: 150px;
  color: white;
}
@media (max-width: 767px) {
  .block-assistant .block-chat a {
    width: 70px;
    font-size: 12px;
    line-height: 1.4rem;
  }
}

html {
  position: relative;
  min-height: 100%;
  background-color: var(--white);
}

body {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  margin: 0;
  color: var(--g-80);
}

.wrapper {
  flex-grow: 1;
}

.main {
  margin-top: 65px;
  position: relative;
}
.main .menu-talk-us {
  background-color: white;
  display: flex;
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translate(-50%, -300px);
  z-index: 0;
  width: 75%;
  transition: all 0.5s ease-out;
  opacity: 0;
}
.main .menu-talk-us.active {
  transition: all 0.5s ease-in;
  z-index: 2;
  transform: translate(-50%, 0%);
  opacity: 1;
}
.main .menu-talk-us__title {
  padding: 40px;
  background-color: #F5FAF4;
  height: 50%;
  width: 40%;
  border-right: 1px solid #adadad;
}
.main .menu-talk-us__title h3 {
  margin: 0 auto;
  width: 40%;
  font-style: italic;
  font-size: 1.5em;
  color: var(--bc-1);
}
.main .menu-talk-us__items {
  width: 60%;
  display: flex;
}
.main .menu-talk-us__items .menu-talk-us__item {
  width: 33.333%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #adadad;
}
.main .menu-talk-us__items .menu-talk-us__item .icon img {
  width: 75px;
}
.main .menu-talk-us__items .menu-talk-us__item .text {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.main .menu-talk-us__items .menu-talk-us__item .text span {
  font-weight: 800;
  font-size: 0.7em;
  text-transform: uppercase;
}
.main .menu-talk-us__items .menu-talk-us__item .text span:nth-child(2), .main .menu-talk-us__items .menu-talk-us__item .text span:nth-child(3) {
  color: var(--bc-1);
  font-weight: 500;
}
.main .block.carrousel-container {
  padding: var(--space-m) 0 0;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .main .block.carrousel-container {
    padding: 0;
  }
}

.full {
  width: 100% !important;
  max-width: none;
}

.no-padding {
  padding: 0;
}

.no-margin {
  margin: 0;
}

.rc-anchor-invisible {
  display: none;
}

/* -------------------------- */
/* -------------------------- */
/* ------ GRID LAYOUT ------- */
/* -------------------------- */
.flex {
  display: flex;
}
.flex.row {
  flex-direction: row;
}
.flex.row-reverse {
  flex-direction: row-reverse;
}
.flex.column {
  flex-direction: column;
}
.flex.column-reverse {
  flex-direction: column-reverse;
}
.flex.wrap {
  flex-wrap: wrap;
}
.flex.nowrap {
  flex-wrap: nowrap;
}
.flex.justify-start {
  justify-content: flex-start;
}
.flex.justify-end {
  justify-content: flex-end;
}
.flex.justify-center {
  justify-content: center;
}
.flex.justify-between {
  justify-content: space-between;
}
.flex.justify-around {
  justify-content: space-around;
}
.flex.items-start {
  align-items: flex-start;
}
.flex.items-end {
  align-items: flex-end;
}
.flex.items-center {
  align-items: center;
}
.flex.items-baseline {
  align-items: baseline;
}
.flex.items-stretch {
  align-items: stretch;
}
.flex.content-start {
  align-content: flex-start;
}
.flex.content-end {
  align-content: flex-end;
}
.flex.content-center {
  align-content: center;
}
.flex.content-between {
  align-content: space-between;
}
.flex.content-around {
  align-content: space-around;
}
.flex.content-stretch {
  align-content: stretch;
}
.flex .flex-oneoftwo {
  width: 50%;
}
@media (max-width: 767px) {
  .flex .flex-oneoftwo {
    width: 100%;
  }
}
.flex .flex-oneofthree {
  width: 33.33%;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .flex .flex-oneofthree {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .flex .flex-oneofthree {
    width: 100%;
  }
}
.flex .flex-oneoffour {
  width: 25%;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .flex .flex-oneoffour {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .flex .flex-oneoffour {
    width: 100%;
  }
}
.flex .flex-oneoffive {
  width: 20%;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .flex .flex-oneoffive {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .flex .flex-oneoffive {
    width: 100%;
  }
}
.flex .flex-oneofsix {
  width: 16.66%;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .flex .flex-oneofsix {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .flex .flex-oneofsix {
    width: 100%;
  }
}
.flex .item.grow {
  flex-grow: 1;
}
.flex .item.grow-2 {
  flex-grow: 2;
}
.flex .item.grow-3 {
  flex-grow: 3;
}
.flex .item.grow-4 {
  flex-grow: 4;
}
.flex .item.start {
  align-self: flex-start;
}
.flex .item.end {
  align-self: flex-end;
}
.flex .item.center {
  align-self: center;
}
.flex .item.baseline {
  align-self: baseline;
}
.flex .item.stretch {
  align-self: stretch;
}
.flex .item.full {
  width: 100%;
}
.flex .item.oneoftwo {
  width: 50%;
}
.flex .item.oneofthree {
  width: 33.3333333333%;
}
.flex .item.twoofthree {
  width: 66.6666666667%;
}
.flex .item.oneoffour {
  width: 25%;
}
.flex .item.twooffour {
  width: 50%;
}
.flex .item.threeoffour {
  width: 75%;
}
.flex .item.oneoffive {
  width: 20%;
}
.flex .item.twooffive {
  width: 40%;
}
.flex .item.threeoffive {
  width: 60%;
}
.flex .item.fouroffive {
  width: 80%;
}
.flex .item.oneofsix {
  width: 16.6666666667%;
}
.flex .item.twoofsix {
  width: 33.3333333333%;
}
.flex .item.threeofsix {
  width: 50%;
}
.flex .item.fourofsix {
  width: 66.6666666667%;
}
.flex .item.fiveofsix {
  width: 83.3333333333%;
}
.flex .item.oneofseven {
  width: 14.2857142857%;
}
.flex .item.twoofseven {
  width: 28.5714285714%;
}
.flex .item.threeofseven {
  width: 42.8571428571%;
}
.flex .item.fourofseven {
  width: 57.1428571429%;
}
.flex .item.fiveofseven {
  width: 71.4285714286%;
}
.flex .item.sixofseven {
  width: 85.7142857143%;
}
.flex .item.oneofeight {
  width: 12.5%;
}
.flex .item.twoofeight {
  width: 25%;
}
.flex .item.threeofeight {
  width: 37.5%;
}
.flex .item.fourofeight {
  width: 50%;
}
.flex .item.fiveofeight {
  width: 62.5%;
}
.flex .item.sixofeight {
  width: 75%;
}
.flex .item.sevenofeight {
  width: 87.5%;
}
.flex .item.oneofnine {
  width: 11.1111111111%;
}
.flex .item.twoofnine {
  width: 22.2222222222%;
}
.flex .item.threeofnine {
  width: 33.3333333333%;
}
.flex .item.fourofnine {
  width: 44.4444444444%;
}
.flex .item.fiveofnine {
  width: 55.5555555556%;
}
.flex .item.sixofnine {
  width: 66.6666666667%;
}
.flex .item.sevenofnine {
  width: 77.7777777778%;
}
.flex .item.eightofnine {
  width: 88.8888888889%;
}
.flex .item.oneoften {
  width: 10%;
}
.flex .item.twooften {
  width: 20%;
}
.flex .item.threeoften {
  width: 30%;
}
.flex .item.fouroften {
  width: 40%;
}
.flex .item.fiveoften {
  width: 50%;
}
.flex .item.sixoften {
  width: 60%;
}
.flex .item.sevenoften {
  width: 70%;
}
.flex .item.eightoften {
  width: 80%;
}
.flex .item.nineoften {
  width: 90%;
}
.flex .item.oneofeleven {
  width: 9.0909090909%;
}
.flex .item.twoofeleven {
  width: 18.1818181818%;
}
.flex .item.threeofeleven {
  width: 27.2727272727%;
}
.flex .item.fourofeleven {
  width: 36.3636363636%;
}
.flex .item.fiveofeleven {
  width: 45.4545454545%;
}
.flex .item.sixofeleven {
  width: 54.5454545455%;
}
.flex .item.sevenofeleven {
  width: 63.6363636364%;
}
.flex .item.eightofeleven {
  width: 72.7272727273%;
}
.flex .item.nineofeleven {
  width: 81.8181818182%;
}
.flex .item.tenofeleven {
  width: 90.9090909091%;
}
.flex .item.oneoftwelve {
  width: 8.3333333333%;
}
.flex .item.twooftwelve {
  width: 16.6666666667%;
}
.flex .item.threeoftwelve {
  width: 25%;
}
.flex .item.fouroftwelve {
  width: 33.3333333333%;
}
.flex .item.fiveoftwelve {
  width: 41.6666666667%;
}
.flex .item.sixoftwelve {
  width: 50%;
}
.flex .item.sevenoftwelve {
  width: 58.3333333333%;
}
.flex .item.eightoftwelve {
  width: 66.6666666667%;
}
.flex .item.nineoftwelve {
  width: 75%;
}
.flex .item.tenoftwelve {
  width: 83.3333333333%;
}
.flex .item.elevenoftwelve {
  width: 91.6666666667%;
}

/* -------------------------- */
.grid {
  display: grid;
}
.grid__item {
  min-height: calc(var(--space-xl) * 5);
  height: 100%;
}
.grid__item.no-min-height {
  min-height: unset;
}
.grid__item--auto-height {
  min-height: 0;
}
@media (min-width: 1200px) and (max-width: 1600px) {
  .grid__item {
    min-height: 0;
  }
}
.grid__item--cs-1 {
  grid-column-end: span 2;
}
@media (min-width: 1200px) and (max-width: 1600px) {
  .grid__item--cs-1 {
    grid-column-end: span 6;
  }
}
@media screen and (max-width: 1200px) {
  .grid__item--cs-1 {
    grid-column-end: span 6;
  }
}
.grid__item--cs-1-5 {
  grid-column-end: span 3;
}
@media (min-width: 1200px) and (max-width: 1600px) {
  .grid__item--cs-1-5 {
    grid-column-end: span 6;
  }
}
@media screen and (max-width: 1070px) {
  .grid__item--cs-1-5 {
    grid-column-end: span 6;
  }
}
.grid__item--cs-2 {
  grid-column-end: span 4;
}
@media (min-width: 1200px) and (max-width: 1600px) {
  .grid__item--cs-2 {
    grid-column-end: span 6;
  }
}
@media screen and (max-width: 1200px) {
  .grid__item--cs-2 {
    grid-column-end: span 6;
  }
}
.grid__item--cs-3 {
  grid-column-end: span 6;
}
@media (min-width: 1200px) and (max-width: 1600px) {
  .grid__item--cs-3 {
    grid-column-end: span 6;
  }
}
.grid__item--rs-1 {
  grid-row-end: span 1;
}
.grid__item--rs-2 {
  grid-row-end: span 2;
}
.grid__item--rs-3 {
  grid-row-end: span 3;
}

.grid-col-1 {
  grid-column-end: span 2;
}
@media (min-width: 1200px) and (max-width: 1600px) {
  .grid-col-1 {
    grid-column-end: span 6;
  }
}

.grid-col-1-5 {
  grid-column-end: span 3;
}
@media (min-width: 1200px) and (max-width: 1600px) {
  .grid-col-1-5 {
    grid-column-end: span 6;
  }
}

.grid-col-2 {
  grid-column-end: span 4;
}
@media (min-width: 1200px) and (max-width: 1600px) {
  .grid-col-2 {
    grid-column-end: span 6;
  }
}

.grid-col-3 {
  grid-column-end: span 6;
}
@media (min-width: 1200px) and (max-width: 1600px) {
  .grid-col-3 {
    grid-column-end: span 6;
  }
}

.grid-row-1 {
  grid-row-end: span 1;
}

.grid-row-2 {
  grid-row-end: span 2;
}

.grid-row-3 {
  grid-row-end: span 3;
}

.items {
  display: grid;
  grid-template-rows: none;
  grid-column-gap: var(--space-l);
  grid-row-gap: var(--space-l);
}
.items--gap-n {
  grid-column-gap: 0;
  grid-row-gap: 0;
}
.items--gap-xs {
  grid-column-gap: var(--space-xs);
  grid-row-gap: var(--space-xs);
}
@media (max-width: 767px) {
  .items--gap-xs {
    grid-row-gap: var(--space-m);
  }
}
.items--gap-s {
  grid-column-gap: var(--space-s);
  grid-row-gap: var(--space-s);
}
@media (max-width: 767px) {
  .items--gap-s {
    grid-row-gap: var(--space-m);
  }
}
.items--gap-m {
  grid-column-gap: var(--space-m);
  grid-row-gap: var(--space-m);
}
@media (max-width: 767px) {
  .items--gap-m {
    grid-row-gap: var(--space-m);
  }
}
.items--gap-l {
  grid-column-gap: var(--space-l);
  grid-row-gap: var(--space-l);
}
@media (max-width: 767px) {
  .items--gap-l {
    grid-row-gap: var(--space-m);
  }
}
.items--gap-xl {
  grid-column-gap: var(--space-xl);
  grid-row-gap: var(--space-xl);
}
@media (max-width: 767px) {
  .items--gap-xl {
    grid-row-gap: var(--space-m);
  }
}
.items--1 {
  grid-template-columns: 1fr;
}
.items--1 .item:last-child {
  margin-bottom: 0;
}
.items--2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767px) {
  .items--2 {
    grid-template-columns: 1fr;
  }
}
.items--3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (min-width: 768px) and (max-width: 1199px) {
  .items--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .items--3 {
    grid-template-columns: 1fr;
  }
}
.items--4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (min-width: 768px) and (max-width: 1199px) {
  .items--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .items--4 {
    grid-template-columns: 1fr;
  }
}
.items--5 {
  grid-template-columns: repeat(5, 1fr);
}
@media (min-width: 768px) and (max-width: 1199px) {
  .items--5 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .items--5 {
    grid-template-columns: 1fr;
  }
}
.items--6 {
  grid-template-columns: repeat(6, 1fr);
}
@media (min-width: 768px) and (max-width: 1199px) {
  .items--6 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .items--6 {
    grid-template-columns: 1fr;
  }
}

.js-animate {
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.42, 0.01, 0.23, 1), opacity 0.6s;
}
.js-animate--translate-up {
  transform: translateY(50%);
}
.js-animate--translate-right {
  transform: translateX(100%);
}
.js-animate--translate-left {
  transform: translateX(-100%);
}
.js-animate--fade-in {
  transform: none;
}
.js-animate--active {
  opacity: 1;
  transform: none;
}

/* -------------------------- */
/* ----- HEADER STYLES ------ */
/* -------------------------- */
.header {
  position: absolute;
  z-index: var(--z-index--header);
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.header .logo {
  position: absolute;
  top: 50%;
  left: 25px;
  transform: translate(0, -50%);
}
.header.scroll {
  background-color: var(--bc-1);
}
.header.scroll .logo {
  opacity: 1;
}
.header__top {
  background-color: var(--bc-1);
  width: 100%;
}
.header__top .top__items {
  display: flex;
  justify-content: flex-end;
}
.header__top .top__items .items__item {
  position: relative;
}
.header__top .top__items .items__item:nth-child(n+2):before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: white;
  height: 50%;
  width: 1px;
  transform: translate(0, 50%);
}
.header__top .top__items .items__item a {
  color: var(--white);
  font-size: 15px;
  margin: 0 20px;
  display: flex;
  align-items: center;
  padding: 3px 0;
  position: relative;
}
@media (max-width: 767px) {
  .header__top .top__items .items__item a {
    text-align: center;
    margin: 0;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 5px 5px;
  }
}
.header__top .top__items .items__item a span {
  position: relative;
}
@media (max-width: 767px) {
  .header__top .top__items .items__item a span {
    display: none;
  }
}
.header__top .top__items .items__item a span::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: white;
  transform: scaleX(0);
}
.header__top .top__items .items__item:hover > a, .header__top .top__items .items__item.current > a {
  text-decoration: none;
}
.header__top .top__items .items__item:hover > a span::after, .header__top .top__items .items__item.current > a span::after {
  transform: scaleX(1);
}
.header__top .top__items .items__item:hover > a .arrow, .header__top .top__items .items__item.current > a .arrow {
  width: 100px;
}

/* -------------------------- */
/* ----- FOOTER LAYOUT ------ */
/* -------------------------- */
.footer {
  background-color: #4A4A4A;
  position: relative;
}
.footer svg {
  position: absolute;
  top: -1px;
  z-index: 1;
  left: 0;
  right: 0;
}
.footer .content-menu-footer {
  width: 100%;
  display: grid;
  flex-direction: column;
  border-top: 1px solid #dedfe1;
  border-bottom: 1px solid #dedfe1;
}
.footer .content-menu-footer .block {
  display: flex;
  padding: 25px 0;
}
.footer .content-menu-footer .block .content-links {
  width: 25%;
}
.footer .content-menu-footer .block .content-links a {
  color: var(--bc-1);
  font-size: 15px;
  font-weight: 700;
  padding: 0;
  white-space: nowrap;
  overflow: hidden;
  transition: all 0.2s ease;
}
.footer .content-menu-footer .block .content-links a:hover {
  color: #000;
  transition: all 0.2s ease;
}
.footer .content-second-footer .block {
  display: flex;
  align-items: center;
  padding: 50px 0;
}
@media (max-width: 767px) {
  .footer .content-second-footer .block {
    flex-direction: column;
    grid-column: 1/13 !important;
  }
}
.footer .content-second-footer .block .content-left {
  width: 25%;
}
@media (max-width: 767px) {
  .footer .content-second-footer .block .content-left {
    width: 55%;
  }
}
.footer .content-second-footer .block .content-logo img {
  width: 300px;
}
.footer .content-second-footer .block .content-right {
  width: 75%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-bottom: var(--space-m);
  margin-left: var(--space-l);
}
@media (max-width: 767px) {
  .footer .content-second-footer .block .content-right {
    width: 100%;
    margin-left: 0;
    padding: 30px;
    grid-template-columns: 1fr;
  }
}
.footer .content-second-footer .block .content-right .social-media {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  border-bottom: 1px solid var(--green);
  align-items: flex-end;
}
@media (max-width: 767px) {
  .footer .content-second-footer .block .content-right .social-media {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-items: center;
  }
}
.footer .content-second-footer .block .content-right .social-media i {
  color: white;
  align-self: center;
}
.footer .content-second-footer .block .content-right .social-media a {
  border-radius: 50px;
  color: #3f345f;
  display: flex;
  flex-direction: row;
  width: 100%;
  font-size: 1.4rem;
  line-height: 52px;
  height: 50px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 15px 15px;
  font-size: 22px;
  text-decoration: none !important;
  position: relative;
  flex-grow: 0;
  flex-shrink: 0;
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
  color: white;
  transition: all 0.4s ease;
  align-items: center;
}
.footer .content-second-footer .block .content-right .social-media a:nth-child(4) {
  border: 1px solid var(--green);
  border-radius: 23px;
  padding: 0px 8px 0px 0px;
}
@media (max-width: 767px) {
  .footer .content-second-footer .block .content-right .social-media a:nth-child(4) {
    grid-column: 1/4;
    align-self: center;
  }
}
.footer .content-second-footer .block .content-right .social-media a:nth-child(4) i {
  margin: 10px 10px;
}
.footer .content-second-footer .block .content-right .social-media a:nth-child(4) p {
  font-size: 14px;
}
.footer .content-second-footer .block .content-right .social-media a:nth-child(4):hover {
  background-color: white;
  color: var(--green);
}
.footer .content-second-footer .block .content-right .social-media a:nth-child(4):hover i {
  color: var(--green);
}
@media (max-width: 767px) {
  .footer .content-second-footer .block .content-right .social-media a:nth-child(1) {
    justify-self: self-end;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .footer .content-second-footer .block .content-right .social-media a:nth-child(2) {
    justify-self: center;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .footer .content-second-footer .block .content-right .social-media a:nth-child(3) {
    justify-self: self-start;
    margin-bottom: 0;
  }
}
.footer .content-second-footer .block .content-right .info-pages {
  padding-top: var(--space-m);
}
.footer .content-second-footer .block .content-right .info-pages .info-pages-item {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.footer .content-second-footer .block .content-right .info-pages .info-pages-item p {
  font-size: 11px;
  color: white;
  margin: 8px;
}
@media (max-width: 767px) {
  .footer .content-second-footer .block .content-right .info-pages .info-pages-item p {
    display: none;
  }
}
.footer .content-second-footer .block .content-right .info-pages .info-pages-item a {
  font-size: 14px;
  color: white;
  font-weight: 400;
  margin: 8px;
  position: relative;
}
@media (max-width: 767px) {
  .footer .content-second-footer .block .content-right .info-pages .info-pages-item a {
    font-size: 12px;
  }
}
.footer .content-second-footer .block .content-right .info-pages .info-pages-item a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--bc-1);
  transition: all 0.15s cubic-bezier(0, 0, 0, 0.54);
  transform: scaleX(0);
}
.footer .content-second-footer .block .content-right .info-pages .info-pages-item a:hover > .main-link, .footer .content-second-footer .block .content-right .info-pages .info-pages-item a.current > .main-link {
  text-decoration: none;
}
.footer .content-second-footer .block .content-right .info-pages .info-pages-item a:hover > .main-link span, .footer .content-second-footer .block .content-right .info-pages .info-pages-item a.current > .main-link span {
  font-weight: 800;
}
.footer .content-second-footer .block .content-right .info-pages .info-pages-item a:hover > .main-link::after, .footer .content-second-footer .block .content-right .info-pages .info-pages-item a.current > .main-link::after {
  transform: scaleX(1);
}
.footer .content-second-footer .block .content-right .info-pages .info-pages-item a:hover > .main-link .arrow, .footer .content-second-footer .block .content-right .info-pages .info-pages-item a.current > .main-link .arrow {
  width: 100px;
}
.footer .content-second-footer .block .content-right .info-pages .info-pages-item a:hover::after {
  transform: scaleX(1);
}
.footer .content-second-footer .block .content-right .legal-menu {
  display: flex;
  justify-content: flex-end;
  padding-top: var(--space-m);
  align-self: center;
}
.footer .content-second-footer .block .content-right .legal-menu .legal-menu-item a {
  color: rgba(0, 0, 0, 0.6);
  font-size: 11px;
  font-weight: 400;
  color: white;
  padding: 0;
  white-space: nowrap;
  overflow: hidden;
  transition: all 0.2s ease;
  position: relative;
  margin: 8px;
}
.footer .content-second-footer .block .content-right .legal-menu .legal-menu-item a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--bc-1);
  transition: all 0.15s cubic-bezier(0, 0, 0, 0.54);
  transform: scaleX(0);
}
.footer .content-second-footer .block .content-right .legal-menu .legal-menu-item a:before {
  content: "|";
  margin: 0 25px 0 0;
  color: rgba(0, 0, 0, 0.4);
}
.footer .content-second-footer .block .content-right .legal-menu .legal-menu-item a:hover::after {
  transform: scaleX(1);
}
.footer .content-second-footer .block .content-right .legal-menu .legal-menu-item:first-child a:before {
  content: none;
}
.footer .content-second-footer .block .content-right .info-contact {
  display: flex;
  border-bottom: 1px solid var(--green);
  padding-bottom: var(--space-m);
}
@media (max-width: 767px) {
  .footer .content-second-footer .block .content-right .info-contact div {
    align-self: center;
  }
  .footer .content-second-footer .block .content-right .info-contact div p {
    text-align: center;
  }
}
.footer .content-second-footer .block .content-right .info-contact .info-contact__address {
  flex-direction: column;
}
.footer .content-second-footer .block .content-right .info-contact div {
  display: flex;
  justify-content: center;
  margin: 0 40px 0 0;
  align-items: start;
}
@media (max-width: 767px) {
  .footer .content-second-footer .block .content-right .info-contact div {
    margin: 0 0px 0 0;
    width: 150px;
  }
}
.footer .content-second-footer .block .content-right .info-contact div p,
.footer .content-second-footer .block .content-right .info-contact div a {
  color: white;
  white-space: nowrap;
  overflow: hidden;
  transition: all 0.2s ease;
  line-height: 2;
}
.footer .content-second-footer .block .content-right .info-contact div .subtitle-font {
  font-weight: bold;
}
.footer .content-second-footer .block .content-right .info-contact div .caption-font, .footer .content-second-footer .block .content-right .info-contact div .form .form-block.legal, .form .footer .content-second-footer .block .content-right .info-contact div .form-block.legal, .footer .content-second-footer .block .content-right .info-contact div .alert__message {
  font-weight: 400;
}
.footer .content-second-footer .block .content-right .info-contact div:first-child p:before {
  content: none;
}

@keyframes focuse {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  75% {
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
@keyframes jello-horizontal {
  0% {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
/* -------------------------- */
/* -------------------------- */
/* ----- SIDEBAR LAYOUT ----- */
/* -------------------------- */
/* -------------------------- */
/* --------------------------- */
/* ----- ANCHORS LAYOUT ------ */
/* --------------------------- */
.anchors-bottom-info {
  width: 100%;
  background-color: var(--g-10);
  position: sticky;
  top: 60px;
  z-index: var(--z-index--overlay);
}
.anchors-bottom-info.sticky .content .icon {
  height: 0;
  visibility: hidden;
}
.anchors-bottom-info .content {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  padding: 0;
}
.anchors-bottom-info .content .icon {
  padding: var(--space-xs) var(--space-s);
  display: flex;
  justify-content: center;
  align-items: center;
}
.anchors-bottom-info .content .icon img {
  max-height: 55px;
  max-width: 55px;
}
.anchors-bottom-info .content .anchors {
  display: flex;
  color: var(--white);
  align-items: center;
  justify-content: space-around;
  width: 100%;
}
.anchors-bottom-info .content .anchors .anchor {
  text-transform: uppercase;
  padding: var(--space-s);
  cursor: pointer;
  color: var(--bc-1);
}
@media (min-width: 768px) and (max-width: 1199px) {
  .anchors-bottom-info {
    top: 50px;
    padding: 0 var(--space-m);
  }
  .anchors-bottom-info .anchors .anchor {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .anchors-bottom-info {
    display: none;
  }
}

.alert {
  --ft-color: var(--white);
  --bg-color: var(--blue-alert);
  opacity: 1;
  visibility: visible;
  position: fixed;
  z-index: var(--layer-popup);
  top: 20%;
  left: 50%;
  transform: translate(-50%, 0);
  width: 400px;
  max-width: calc(100% - var(--space-l));
  padding: var(--space-l);
  border-radius: 0;
  background-color: var(--bg-color);
  color: var(--ft-color);
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  transition: all 0.5s var(--cubic-end-quick);
}
.alert--success {
  --bg-color: var(--green-alert);
}
.alert--error {
  --bg-color: var(--red-alert);
}
.alert--info {
  --bg-color: var(--blue-alert);
}
.alert--warning {
  --ft-color: var(--black);
  --bg-color: var(--yellow-alert);
}
.alert--hidden {
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -100%);
}
.alert__close {
  position: absolute;
  top: var(--space-m);
  right: var(--space-m);
}
.alert__message {
  margin-top: var(--space-s);
  text-align: center;
  font-size: 0.9rem;
}

article {
  position: relative;
  margin: 0;
  padding: 0;
  overflow: hidden;
  transition: all 0.4s;
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-template-rows: 40px auto;
}
article:hover .article-text .article-content .title-content a h3.headline-font {
  margin-bottom: var(--space-s);
}
article:hover .article-text .article-content .excerpt-content {
  opacity: 1;
  max-height: 500px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  article {
    width: 100%;
  }
}
article .article-image {
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  height: 100%;
  grid-row-end: span 2;
}
article .article-text {
  position: absolute;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  padding: var(--space-m);
  padding-top: 0;
  z-index: var(--z-index--highlight);
}
@media (max-width: 767px) {
  article .article-text {
    padding: var(--space-m);
  }
}
article .article-text .article-content {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  flex-grow: 1;
  color: var(--white);
  height: 100%;
  z-index: var(--z-index--highlight);
}
article .article-text .article-content .title-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 1;
  padding: var(--space-m) 0;
  transition: opacity 0.6s;
}
article .article-text .article-content .title-content h3.date {
  font-size: 1.5em;
  margin-bottom: var(--space-s);
}
article .article-text .article-content .title-content h3.headline-font {
  color: var(--white);
  margin-bottom: 0;
}
article .article-text .article-content .excerpt-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  opacity: 0;
  max-height: 0;
  transition: all 0.6s ease-in-out;
}
article .article-tag {
  display: flex;
  align-items: flex-end;
  background-color: var(--article-color);
  color: white;
  font-weight: 600;
  padding: var(--space-xs) var(--space-s);
  border-radius: 50px;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: var(--space-s) 0;
  margin-left: var(--space-m);
  cursor: default;
}
article .article-tag--float {
  position: absolute;
  z-index: 3;
  margin: 0;
  left: 0;
  top: 27px;
  border-radius: 0 50px 50px 0;
}
article .article-tag--text {
  background-color: transparent;
  color: var(--article-color);
  padding-left: 0;
  padding-right: 0;
}

.bm_featured .label {
  width: 100%;
  text-align: center;
  color: var(--green);
  padding-bottom: var(--space-l);
}
.bm_featured .article-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 767px) {
  .bm_featured .article-block {
    grid-template-columns: 1fr;
  }
}
.bm_featured .article-block a:hover img {
  transition: all 0.5s ease-out;
  transform: translateY(0%);
}
.bm_featured .article-block a:hover .text {
  display: none;
  transition: all 0.5s ease-out;
}
.bm_featured .article-block .article-item {
  max-height: 330px;
  background-color: #42A62A;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease-out;
}
.bm_featured .article-block .article-item img {
  height: 330px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translateY(100%);
  transition: all 0.5s ease-out;
}
@media (max-width: 767px) {
  .bm_featured .article-block .article-item img {
    height: 240px;
  }
}
.bm_featured .article-block .article-item .text {
  position: absolute;
  top: 20%;
  left: 6%;
  z-index: 4;
}
.bm_featured .article-block .article-item .text .display-s {
  color: white;
}
.bm_featured .article-block .article-item .text .subtitle-font {
  color: black;
  font-weight: 500;
  padding: var(--space-m);
  padding-left: unset;
}
.bm_featured .button-block {
  padding-top: var(--space-l);
}

/* -------------------------- */
/* --- ATTACHMENTS LAYOUT --- */
/* -------------------------- */
.attachs {
  padding: var(--space-m);
}
.attachs h3 {
  margin-bottom: var(--space-s);
  color: inherit;
  text-transform: uppercase;
}
.attachs a {
  padding: var(--space-s) var(--space-s) var(--space-xs) var(--space-xs);
  margin-bottom: var(--space-s);
  color: var(--bc-1);
  border-bottom: 1px solid var(--bc-1);
  transition: 0.5s cubic-bezier(0.52, 0.01, 0.16, 1) 0s;
}
.attachs a i {
  margin-left: var(--space-s);
  font-size: var(--headline-fs);
}
.attachs a:hover {
  color: var(--white);
}

/* -------------------------- */
.full-border {
  border: 2px solid var(--bc-color);
  border-radius: 5px;
}

.lines-grid {
  display: grid;
  height: 100vh;
  overflow: hidden;
  background: var(--transparent) !important;
  grid-template-columns: repeat(4, 2fr) !important;
  width: 100%;
  position: fixed;
  z-index: 2;
  grid-template-rows: 100%;
  pointer-events: none;
  opacity: 0.7;
  animation: dropdown 4s ease;
  animation-fill-mode: forwards;
}
.lines-grid span:not(:first-child) {
  border-left: 0.5px solid rgba(var(--bc-2), 0.16);
}

/* -------------------------- */
/* --- BREADCRUMBS LAYOUT --- */
/* -------------------------- */
.breadcrumbs {
  position: relative;
  z-index: var(--z-index--higlight);
  color: var(--black);
  background-color: var(--bc-1) -lighter-30;
  text-transform: uppercase;
}
.breadcrumbs .content {
  width: var(--content-max-width);
  padding: var(--space-s) 0;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .breadcrumbs .content {
    padding: var(--space-s) var(--space-m);
  }
}
.breadcrumbs .breadcrumb {
  font-size: var(--body-fs);
}
.breadcrumbs .breadcrumb br {
  display: none;
}
.breadcrumbs .breadcrumb:after {
  content: " / ";
  display: inline-block;
  margin: 0 var(--space-s);
}
.breadcrumbs .breadcrumb:last-child:after {
  display: none;
}
.breadcrumbs .breadcrumb:last-child {
  font-weight: bold;
}
.breadcrumbs a {
  color: inherit;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
@media (max-width: 767px) {
  .breadcrumbs {
    display: none;
  }
}

/* -------------------------- */
.button-block {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: var(--space-m) 0 0;
  justify-content: flex-end;
}
.button-block--center {
  justify-content: center;
}
.button-block--start {
  justify-content: flex-start;
}
.button-block--end {
  justify-content: flex-end;
}

.button {
  padding: 12px 20px;
  font-size: 1.2rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 0 0 1px inset rgba(236, 232, 225, 0.3);
  position: relative;
  margin: 10px 0;
  cursor: pointer;
  box-shadow: none;
  border-radius: 25px;
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  position: relative;
}
.button:before {
  content: "";
  position: absolute;
  border: #39a736 solid 2px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  animation-duration: 1s;
  border-radius: 30px;
}
.button:hover {
  color: var(--bc-1) !important;
}
.button p {
  margin: 0;
  height: 54px;
  line-height: 54px;
  box-sizing: border-box;
  z-index: 1;
  left: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.button p span.base {
  box-sizing: border-box;
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  left: 0;
  border-width: 1px;
  border-style: solid;
}
.button p span.bg {
  left: -5%;
  position: absolute;
  width: 0;
  height: 100%;
  z-index: 3;
  transition: 0.3s ease-out all;
  transform: skewX(-10deg);
}
.button p span.text {
  z-index: 4;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.button:hover {
  color: #ece8e1;
}
.button:hover span.text:after {
  background: #ece8e1;
}

/* Ripple Out */
@keyframes hvr-ripple-out {
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}
/* -------------------------- */
/* ----- COOKIES LAYOUT ----- */
/* -------------------------- */
.cookies-modal {
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 31;
  background-color: rgba(0, 0, 0, 0.7);
}
.cookies-modal .cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: var(--space-inset-m);
  background: rgba(0, 0, 0, 0.8);
  color: var(--white);
  text-align: center;
}
@media (max-width: 767px) {
  .cookies-modal .cookies {
    padding: var(--space-inset-l);
  }
}
.cookies-modal .cookies .cookies-options {
  display: flex;
  justify-content: center;
  padding: var(--space-inset-s);
  margin-top: var(--space-s);
  flex-direction: row;
}
.cookies-modal .cookies .cookies-options .button {
  margin-right: var(--space-m);
  border-radius: 25px;
  font-size: 1rem;
  padding: 13px;
}
.cookies-modal .cookies .cookies-options .button:hover {
  background-color: var(--green);
  border-radius: 25px;
}
.cookies-modal .cookies .cookies-options span {
  color: white;
}

/* -------------------------- */
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-l);
  width: 100%;
  margin: auto;
}
@media (max-width: 767px) {
  .form {
    display: flex;
    flex-direction: column;
    max-width: 90%;
  }
}
.form .form-block {
  grid-column-end: span 2;
  position: relative;
  width: 100%;
}
@media (max-width: 700px) {
  .form .form-block {
    grid-column-end: span 1;
  }
}
.form .form-block.file:after {
  content: none;
}
.form .form-block--half-width {
  grid-column-end: span 1;
}
.form .form-block label {
  transform-origin: left;
  top: 50%;
  left: 0;
  pointer-events: none;
  font-size: 20px;
  font-weight: bold;
  color: var(--bc-2);
  transform: translateY(-120%) scale(0.7);
}
@media (max-width: 580px) {
  .form .form-block label.label--large {
    font-size: 1.5rem;
    line-height: 1.8rem;
    top: 31%;
  }
}
.form .form-block.checkbox {
  align-items: center;
  display: flex;
}
.form .form-block.checkbox label {
  font-size: 0.8em;
  position: unset;
  top: unset;
  transform: unset;
  font-weight: normal;
  left: unset;
  color: rgba(0, 0, 0, 0.6);
  pointer-events: unset;
}
.form .form-block.checkbox label p {
  font-size: 1em;
}
.form .form-block input[type=text],
.form .form-block input[type=textarea],
.form .form-block input[type=email],
.form .form-block input[type=tel],
.form .form-block input[type=number],
.form .form-block input[type=date],
.form .form-block input[type=password],
.form .form-block textarea,
.form .form-block select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  margin-top: 5px;
  border: none;
  font-weight: normal;
  padding-left: var(--space-s);
  background-color: transparent;
}
.form .form-block input[type=text]:focus,
.form .form-block input[type=textarea]:focus,
.form .form-block input[type=email]:focus,
.form .form-block input[type=tel]:focus,
.form .form-block input[type=number]:focus,
.form .form-block input[type=date]:focus,
.form .form-block input[type=password]:focus,
.form .form-block textarea:focus,
.form .form-block select:focus {
  outline-color: var(--bc-1);
}
.form .form-block input[type=file] {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}
.form .form-block input[type=file] + label {
  font-size: 15px;
  pointer-events: all;
  max-width: 80%;
  /* 20px */
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  padding: 10px 15px;
  /* 10px 20px */
}
.form .form-block input[type=file]:focus + label,
.form .form-block input[type=file].has-focus + label {
  outline: 1px dotted #000;
  outline: -webkit-focus-ring-color auto 5px;
}
.form .form-block input[type=file] + label {
  color: #f1e5e6;
  background-color: var(--bc-1);
}
.form .form-block input[type=file]:focus + label,
.form .form-block input[type=file].has-focus + label,
.form .form-block input[type=file] + label:hover {
  background-color: var(--bc-2);
}
.form .form-block input::placeholder, .form .form-block input:-ms-input-placeholder, .form .form-block input::-ms-input-placeholder,
.form .form-block textarea::placeholder,
.form .form-block textarea:-ms-input-placeholder,
.form .form-block textarea::-ms-input-placeholder {
  color: var(--g-10);
  font-size: var(--body-fs);
}
.form .form-block.legal {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: flex-start;
  color: var(--black);
  width: 100%;
}
.form .form-block.legal p {
  margin-bottom: var(--space-m);
}
.form .form-block.legal p a {
  color: var(--black);
  margin-left: var(--space-xs);
}
.form .form-block .button {
  transform: translate(0px, 0px);
  opacity: 1;
}
.form .form-block textarea {
  transition: all 0.2s ease-out;
  height: 44px;
}
.form .form-block--textarea.form-block::after {
  bottom: 12px;
}
.form .form-block--textarea.form-block label {
  top: 0;
  transform: translateY(-80%) scale(0.7);
}
.form .form-block--textarea.form-block textarea {
  margin: 0;
}
.form .form-block .tooltip-content {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--bc-2);
  z-index: 2;
}
.form .form-block .tooltip-content .tooltip {
  display: none;
}
.form .form-block .tooltip-content:hover .tooltip {
  display: block;
  position: absolute;
  top: 50%;
  width: -moz-max-content;
  width: max-content;
  background: var(--bc-2);
  left: 30px;
  padding: 5px 10px;
  font-size: 12px;
  color: white;
  transform: translate(0px, -50%);
}
.form .form-block .tooltip-content:hover .tooltip:after {
  content: "";
  position: absolute;
  top: 50%;
  left: -6px;
  width: 7px;
  height: 7px;
  background: var(--bc-2);
  transform: rotate(45deg) translate(0, -50%);
}
.form .button-block {
  grid-column-end: 3;
  grid-column-start: 1;
}
.form .button-block .button {
  background: transparent;
}
.form .g-recaptcha {
  display: flex;
  justify-content: flex-start;
  padding-top: var(--space-m);
}
@media (max-width: 480px) {
  .form .g-recaptcha {
    width: 100%;
  }
}

.image {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  margin: auto;
  text-align: center;
}
.image .image__content {
  width: 15%;
  overflow: hidden;
}
.image .image__content--cover {
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .image .image__content--cover {
    height: 100%;
  }
}
@media (max-width: 767px) {
  .image .image__content--cover {
    height: 100%;
  }
}
.image .image__content--contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.lens {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 167, 224, 0);
}
.lens--solid-brand-color-1 {
  background-color: rgba(255, 204, 102, 0.6);
}
.lens--solid-brand-color-2 {
  background-color: rgba(158, 218, 211, 0.6);
}
.lens--solid-white {
  background-color: rgba(255, 255, 255, 0.6);
}
.lens--solid-black {
  background-color: rgba(0, 0, 0, 0.25);
}
.lens--solid-bc-1 {
  background-color: rgba(0, 69, 149, 0.4);
}
.lens--solid-bc-2 {
  background-color: rgba(0, 167, 224, 0.3);
}
.lens--gradient-brand-color-1 {
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(125, 185, 232, 0) 0%, var(--bc-1) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#007db9e8", 				endColorstr="#FFCC66", 				GradientType=0);
  /* IE6-9 */
}
.lens--gradient-brand-color-2 {
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(125, 185, 232, 0) 0%, var(--bc-2) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#007db9e8", 				endColorstr="#9EDAD3", 				GradientType=0);
  /* IE6-9 */
}
.lens--gradient-white {
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(125, 185, 232, 0) 0%, rgb(250, 252, 254) 96%, rgb(253, 254, 255) 98%, rgb(255, 255, 255) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#007db9e8", 				endColorstr="#ffffff", 				GradientType=0);
  /* IE6-9 */
}
.lens--gradient-black {
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(125, 185, 232, 0) 0%, var(--black) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#007db9e8", 				endColorstr="#000", 				GradientType=0);
  /* IE6-9 */
}

.visit-us-header {
  position: fixed;
  width: 100%;
  background-color: var(--dark-grey);
  padding: var(--space-s);
  top: 0;
  z-index: 102;
  text-align: end;
}
.visit-us-header a {
  color: white;
  font-size: 14px;
  position: relative;
}
.visit-us-header a:first-child() {
  border-left: 1px solid white;
  border-right: 1px solid white;
  padding: 5px 10px;
}
.visit-us-header a:last-child() {
  border-right: 1px solid white;
  padding: 5px 10px 5px 3px;
}
.visit-us-header a::after {
  color: var(--green);
}

.main-header {
  top: 15px;
  z-index: 102;
  position: absolute;
  display: flex;
  align-items: center;
  height: 65px;
  width: 100vw;
  padding: 0 10vw;
  color: black;
  transition: 0.4s ease-out;
  background-color: white;
}
@media (max-width: 767px) {
  .main-header {
    top: 4.5%;
  }
}
.main-header ul {
  margin: 0;
}
.main-header .nav-links {
  display: flex;
  list-style: none;
  margin-left: 30px;
  width: 100%;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .main-header .nav-links {
    margin-left: 0;
  }
  .main-header .nav-links ul {
    flex-direction: column;
  }
  .main-header .nav-links ul li a {
    color: white !important;
  }
}
.main-header .nav-links ul::before,
.main-header .nav-links li::before {
  display: none;
}
.main-header .nav-links .nav-link a {
  line-height: 1.47;
  text-decoration: none;
  color: black;
  text-transform: uppercase;
  font-weight: 800;
}
.main-header .nav-links .nav-link a.main-link {
  position: relative;
}
.main-header .nav-links .nav-link a.main-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--bc-1);
  transition: all 0.15s cubic-bezier(0, 0, 0, 0.54);
  transform: scaleX(0);
}
.main-header .nav-links .nav-link:hover > .main-link, .main-header .nav-links .nav-link.current > .main-link {
  text-decoration: none;
}
.main-header .nav-links .nav-link:hover > .main-link span, .main-header .nav-links .nav-link.current > .main-link span {
  font-weight: 800;
}
.main-header .nav-links .nav-link:hover > .main-link::after, .main-header .nav-links .nav-link.current > .main-link::after {
  transform: scaleX(1);
}
.main-header .nav-links .nav-link:hover > .main-link .arrow, .main-header .nav-links .nav-link.current > .main-link .arrow {
  width: 100px;
}
.main-header .nav-links ul {
  display: flex;
}
.main-header .nav-links ul li {
  margin: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-header .nav-links ul li:last-child {
  background-color: var(--bc-1);
  padding: 5px 20px;
  border-radius: 30px;
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  position: relative;
}
.main-header .nav-links ul li:last-child:after {
  content: "";
  position: absolute;
  border: #39a736 solid 2px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  animation-duration: 1s;
  border-radius: 30px;
}
.main-header .nav-links ul li:last-child:hover:after {
  animation-name: hvr-ripple-out;
}
.main-header .nav-links ul li:last-child a {
  z-index: 2;
  color: white;
}
.main-header .nav-links ul li:last-child a:hover:after {
  content: none;
}
.main-header .nav-links .talk-us {
  border: 1px solid var(--bc-1);
  padding: 5px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 25px;
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  position: relative;
  transition: all 0.15s cubic-bezier(0, 0, 0, 0.54);
}
.main-header .nav-links .talk-us:before {
  content: "";
  position: absolute;
  border: #39a736 solid 1px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  animation-duration: 1s;
  border-radius: 30px;
}
.main-header .nav-links .talk-us:hover:before {
  animation-name: hvr-ripple-out;
}
.main-header .nav-links .talk-us:hover {
  background: #39a736;
  transition: all 0.15s cubic-bezier(0, 0, 0, 0.54);
}
.main-header .nav-links .talk-us:hover span {
  color: white;
}
.main-header .nav-links .talk-us span {
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.8em;
}
.main-header .menu-icon {
  position: relative;
  padding: 26px 10px;
  cursor: pointer;
  z-index: 1;
  display: none;
}
.main-header .menu-icon__line {
  display: block;
  position: relative;
  background: #000;
  height: 2px;
  width: 20px;
  border-radius: 4px;
}
.main-header .menu-icon__line::before, .main-header .menu-icon__line::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 4px;
  background: #000;
  transition: background 0.8s ease;
}
.main-header .menu-icon__line::before {
  transform: translateY(-5px);
}
.main-header .menu-icon__line::after {
  transform: translateY(5px);
}
.main-header .menu-btn {
  display: none;
}
.main-header.scrolled {
  height: 75px;
  background: #fff;
  border-bottom: 1px solid #e4e4e4;
}

@media screen and (max-width: 767px) {
  .main-header .menu-icon {
    display: block;
  }
  .main-header .menu-icon__line {
    animation: closedMid 0.8s backwards;
    animation-direction: reverse;
  }
  .main-header .menu-icon__line::before {
    animation: closedTop 0.8s backwards;
    animation-direction: reverse;
  }
  .main-header .menu-icon__line::after {
    animation: closedBtm 0.8s backwards;
    animation-direction: reverse;
  }
  .main-header .nav-links {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    padding: 10rem 0;
    width: 100vw;
    height: 100vh;
    font-size: 2rem;
    color: #fff;
    background: #272727;
    transition: opacity 0.8s 0.5s, -webkit-clip-path 1s 0.5s;
    transition: opacity 0.8s 0.5s, clip-path 1s 0.5s;
    transition: opacity 0.8s 0.5s, clip-path 1s 0.5s, -webkit-clip-path 1s 0.5s;
    -webkit-clip-path: circle(200px at top right);
            clip-path: circle(200px at top right);
  }
  .main-header .nav-links .nav-link {
    opacity: 0;
    transform: translateX(100%);
    width: 100%;
    text-align: center;
    transition: opacity 0.4s ease-in-out, transform 0.6s cubic-bezier(0.175, 0.085, 0.32, 1.275);
  }
  .main-header .nav-links .nav-link a {
    display: block;
    padding: 2rem 0;
  }
  .main-header .menu-btn:checked ~ .nav-links {
    opacity: 1;
    -webkit-clip-path: circle(100% at center);
            clip-path: circle(100% at center);
  }
  .main-header .menu-btn:checked ~ .nav-links .nav-link {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.4s ease-in-out, transform 0.6s cubic-bezier(0.175, 0.085, 0.32, 1.275);
  }
  .main-header .menu-btn:checked ~ .nav-links .nav-link:nth-of-type(1) {
    transition-delay: 0.7s;
  }
  .main-header .menu-btn:checked ~ .nav-links .nav-link:nth-of-type(2) {
    transition-delay: 0.8s;
  }
  .main-header .menu-btn:checked ~ .nav-links .nav-link:nth-of-type(3) {
    transition-delay: 0.9s;
  }
  .main-header .menu-btn:checked ~ .nav-links .nav-link:nth-of-type(4) {
    transition-delay: 1s;
  }
  .main-header .menu-btn:checked ~ .menu-icon {
    border-radius: 50%;
    animation: pulse 1s;
  }
  .main-header .menu-btn:checked ~ .menu-icon .menu-icon__line {
    background: #fff;
    animation: openMid 0.8s forwards;
  }
  .main-header .menu-btn:checked ~ .menu-icon .menu-icon__line::before {
    background: white;
    animation: openTop 0.8s forwards;
  }
  .main-header .menu-btn:checked ~ .menu-icon .menu-icon__line::after {
    background: white;
    animation: openBtm 0.8s forwards;
  }
}
@keyframes pulse {
  from {
    box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.6);
  }
  to {
    box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0);
    background: rgba(255, 255, 255, 0);
  }
}
@keyframes openTop {
  0% {
    transform: translateY(-5px) rotate(0deg);
  }
  50% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(0px) rotate(90deg);
  }
}
@keyframes closedTop {
  0% {
    transform: translateY(-5px) rotate(0deg);
  }
  50% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(0px) rotate(90deg);
  }
}
@keyframes openMid {
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(45deg);
  }
}
@keyframes closedMid {
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(45deg);
  }
}
@keyframes openBtm {
  0% {
    transform: translateY(5px) rotate(0deg);
  }
  50% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(0px) rotate(90deg);
  }
}
@keyframes closedBtm {
  0% {
    transform: translateY(5px) rotate(0deg);
  }
  50% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(0px) rotate(90deg);
  }
}
.finder-mobile {
  display: none;
  animation: outFinderMobile 0.1s linear;
  height: calc(100vh - 42px);
}
.finder-mobile.active {
  animation: inFinderMobile 0.1s linear;
  display: block;
  position: absolute;
  top: 41px;
  left: 0;
  width: 100%;
  background: white;
  z-index: 1;
}
.finder-mobile.active .logo-mobile {
  position: absolute;
  top: 7px;
  left: 26px;
}
.finder-mobile.active .custom_finder {
  display: block;
  top: 50%;
  bottom: unset;
  left: 50%;
  transform: translate(-50%, -50%);
}
.finder-mobile.active .finder {
  display: block;
}
.finder-mobile.active .finder__tabs {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 300px;
}
.finder-mobile.active .finder__tab {
  width: 50%;
  flex: unset;
}
.finder-mobile.active .finder__tab:first-child {
  width: 100%;
}
.finder-mobile.active .close-finder-mobile {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes inFinderMobile {
  0% {
    transform: translate(0%, 100%);
  }
  100% {
    transform: translate(0, 0%);
  }
}
@keyframes outFinderMobile {
  0% {
    transform: translate(0%, 0%);
  }
  100% {
    ransform: translate(0%, 100%);
  }
}
.langs a,
.langs span {
  text-transform: uppercase;
  font-size: 2.5rem;
}
.langs a.current,
.langs span.current {
  font-weight: 600;
}
@media (max-height: 768px) {
  .langs {
    margin-top: var(--space-m);
  }
}
@media (max-width: 768px) {
  .langs {
    margin-top: var(--space-m);
  }
}

.material-shadow-1 {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.material-shadow-2 {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.material-shadow-3 {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

/* -------------------------- */
/* --- ARTICLES AND EVENTS -- */
/* ------- BODY LAYOUT ------ */
/* -------------------------- */
.article__socials {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--g-10);
  padding: var(--space-s) tretch-m;
  width: 100%;
}
.article__socials p {
  margin: var(--space-inline-s);
}
.article__socials .article-share {
  display: flex;
  justify-content: flex-start;
}
.article__socials .article-share .share-button {
  margin: var(--space-inline-xs);
}
.article__socials .article-share .share-button a {
  border: none;
  margin: 0 var(--space-s);
  padding: 0;
  text-align: center;
}
.article__socials .article-share .share-button a i {
  line-height: var(--space-m);
  color: var(--white);
  background-color: var(--bc-1);
  border-radius: 50%;
  text-decoration: none;
  width: calc(var(--space-m) * 1.25);
  height: calc(var(--space-m) * 1.25);
  transition: all 0.4s;
  padding: 2px 0;
  text-align: center;
  transition: all 0.4s;
}
.article__socials .article-share .share-button a i:hover {
  color: var(--bc-1);
  background-color: var(--white);
}
@media (max-width: 767px) {
  .articles-related {
    padding: 0 var(--space-m);
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .articles-related .content {
    padding: var(--space-l) var(--space-m);
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .articles-related .content {
    padding: var(--space-m);
  }
}
.articles-related .content .text {
  margin-bottom: var(--space-l);
}
.articles-related .content .text h3 {
  display: flex;
  font-size: var(--space-m);
  text-align: center;
  margin-bottom: var(--space-xs);
  width: 100%;
}
.articles-related .content .text h3:before {
  content: "";
  display: inline-block;
  border-top: 1px solid var(--black);
  flex-grow: 1;
  margin: calc(var(--space-s) * 1.2) var(--space-m) calc(var(--space-s) * 1.2) calc(var(--space-m) * 2);
}
.articles-related .content .text h3:after {
  content: "";
  display: inline-block;
  border-top: 1px solid var(--black);
  flex-grow: 1;
  margin: calc(var(--space-s) * 1.2) var(--space-l) calc(var(--space-s) * 1.2) var(--space-m);
}
@media (min-width: 768px) and (max-width: 1199px) {
  .articles-related .content .text h3 {
    margin-bottom: var(--space-m);
  }
}
@media (max-width: 767px) {
  .articles-related .content .text h3 {
    margin-bottom: 0;
  }
  .articles-related .content .text h3:before {
    border: none;
    margin: 0;
  }
  .articles-related .content .text h3:after {
    border: none;
    margin: 0;
  }
}
.articles-related .content .articles-wrapper {
  margin-bottom: var(--space-m);
}
.articles-related .content .articles-wrapper article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid black;
  margin: 0 var(--space-s);
  padding-bottom: var(--space-s);
}
.articles-related .content .articles-wrapper article .article-image {
  width: 100%;
  height: 175px;
  margin-bottom: var(--space-s);
}
.articles-related .content .articles-wrapper article .article-image a {
  width: 100%;
  height: 100%;
}
.articles-related .content .articles-wrapper article .article-image a img {
  width: 100%;
  height: 100%;
}
.articles-related .content .articles-wrapper article .article-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  min-height: 125px;
}
.articles-related .content .articles-wrapper article .article-text h3.date {
  text-transform: none;
  text-align: left;
  margin-bottom: var(--space-s);
}
.articles-related .content .articles-wrapper article .article-text a {
  text-decoration: none;
  margin-bottom: var(--space-s);
}
.articles-related .content .articles-wrapper article .article-text a h3.headline-font {
  line-height: 16px;
  text-align: left;
}
.articles-related .content .articles-wrapper article .article-text p {
  text-align: left;
  margin-bottom: var(--space-s);
  flex-grow: 1;
}
.articles-related .content .articles-wrapper article .article-text .article-links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
.articles-related .content .articles-wrapper article .article-text .article-links a {
  font-size: 10px;
  color: var(--bc-1);
  margin-bottom: var(--space-xs);
}
.articles-related .content .articles-wrapper article .article-text .article-links a i {
  margin-left: var(--space-xs);
}
.articles-related .content .articles-wrapper article .article-text .part-button {
  align-items: flex-end;
}
.articles-related .content .articles-wrapper article:first-child {
  margin-left: 0;
}
.articles-related .content .articles-wrapper article:nth-child(4) {
  margin-right: 0;
}

/* -------------------------- */
/* -------------------------- */
/* -- SHARE BUTTONS LAYOUT -- */
/* -------------------------- */
.share {
  display: flex;
  align-items: center;
  padding: var(--space-m);
  color: var(--bc-1);
}
.share p {
  margin: 0 var(--space-s);
  color: var(--white);
  letter-spacing: 0;
}
.share a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  padding: var(--space-xs);
  margin: 0 var(--space-xs);
  border-radius: 50%;
  background-color: transparent;
  color: var(--white);
  text-align: center;
  text-decoration: none;
}
.share a:hover {
  background-color: var(--white);
  color: var(--bc-1);
}

/* -------------------------- */
/* -------------------------- */
/* ------- TOP LAYOUT ------- */
/* -------------------------- */
.top {
  position: relative;
  overflow: inherit;
  height: var(--top-large-height);
}
.top svg {
  position: absolute;
  bottom: -1px;
  left: 0;
  z-index: 1;
}
.top h1 {
  font-weight: bold;
  margin: 20px 0;
  line-height: 1.1;
}
@media (max-width: 767px) {
  .top h1 {
    font-size: 30px;
  }
}
.top .icon {
  position: relative;
}
.top .icon:before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -140px;
  width: 90px;
  height: 120px;
}
@media (max-width: 767px) {
  .top .icon:before {
    transform: unset;
    left: 0px;
    top: -90px;
    width: 50px;
    height: 100px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .top .icon:before {
    transform: unset;
    left: 0px;
    top: -100px;
    width: 60px;
    height: 100px;
  }
}
.top h2 {
  font-size: 30px;
}
@media (max-width: 767px) {
  .top h2 {
    font-size: 23px;
  }
}
.top h4 {
  font-size: 17px;
  font-weight: bold;
  line-height: 1.47;
}
.top .top__slider .content-slider .top__foreground .top__content .display-5,
.top .top__slider .content-slider .top__foreground .top__content .display-4,
.top .top__slider .content-slider .top__foreground .top__content .display-3,
.top .top__slider .content-slider .top__foreground .top__content .display-2,
.top .top__slider .content-slider .top__foreground .top__content .article__socials p,
.article__socials .top .top__slider .content-slider .top__foreground .top__content p,
.top .top__slider .content-slider .top__foreground .top__content .articles-related .content .text h3,
.articles-related .content .text .top .top__slider .content-slider .top__foreground .top__content h3,
.top .top__slider .content-slider .top__foreground .top__content .headline-font,
.top .top__slider .content-slider .top__foreground .top__content .body-font,
.top .top__slider .content-slider .top__foreground .top__content body,
.top .top__slider .content-slider .top__foreground .top__content .form .form-block label,
.form .form-block .top .top__slider .content-slider .top__foreground .top__content label,
.top .top__slider .content-slider .top__foreground .top__content .form .form-block input[type=text],
.form .form-block .top .top__slider .content-slider .top__foreground .top__content input[type=text],
.top .top__slider .content-slider .top__foreground .top__content .form .form-block input[type=textarea],
.form .form-block .top .top__slider .content-slider .top__foreground .top__content input[type=textarea],
.top .top__slider .content-slider .top__foreground .top__content .form .form-block input[type=email],
.form .form-block .top .top__slider .content-slider .top__foreground .top__content input[type=email],
.top .top__slider .content-slider .top__foreground .top__content .form .form-block input[type=tel],
.form .form-block .top .top__slider .content-slider .top__foreground .top__content input[type=tel],
.top .top__slider .content-slider .top__foreground .top__content .form .form-block input[type=number],
.form .form-block .top .top__slider .content-slider .top__foreground .top__content input[type=number],
.top .top__slider .content-slider .top__foreground .top__content .form .form-block input[type=date],
.form .form-block .top .top__slider .content-slider .top__foreground .top__content input[type=date],
.top .top__slider .content-slider .top__foreground .top__content .form .form-block input[type=password],
.form .form-block .top .top__slider .content-slider .top__foreground .top__content input[type=password],
.top .top__slider .content-slider .top__foreground .top__content .form .form-block textarea,
.form .form-block .top .top__slider .content-slider .top__foreground .top__content textarea,
.top .top__slider .content-slider .top__foreground .top__content .form .form-block select,
.form .form-block .top .top__slider .content-slider .top__foreground .top__content select,
.top .top__slider .content-slider .top__foreground .top__content .langs a,
.langs .top .top__slider .content-slider .top__foreground .top__content a,
.top .top__slider .content-slider .top__foreground .top__content .langs span,
.langs .top .top__slider .content-slider .top__foreground .top__content span,
.top .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text p,
.articles-related .content .articles-wrapper article .article-text .top .top__slider .content-slider .top__foreground .top__content p,
.top .top__slider .content-slider .top__foreground .top__content .lead-font,
.top .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text h3.date,
.articles-related .content .articles-wrapper article .article-text .top .top__slider .content-slider .top__foreground .top__content h3.date,
.top .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text .article-links a,
.articles-related .content .articles-wrapper article .article-text .article-links .top .top__slider .content-slider .top__foreground .top__content a {
  margin-bottom: var(--space-m);
}
.top .top__slider .content-slider .top__foreground .top__content .display-5:last-child,
.top .top__slider .content-slider .top__foreground .top__content .display-4:last-child,
.top .top__slider .content-slider .top__foreground .top__content .display-3:last-child,
.top .top__slider .content-slider .top__foreground .top__content .display-2:last-child,
.top .top__slider .content-slider .top__foreground .top__content .article__socials p:last-child,
.article__socials .top .top__slider .content-slider .top__foreground .top__content p:last-child,
.top .top__slider .content-slider .top__foreground .top__content .articles-related .content .text h3:last-child,
.articles-related .content .text .top .top__slider .content-slider .top__foreground .top__content h3:last-child,
.top .top__slider .content-slider .top__foreground .top__content .headline-font:last-child,
.top .top__slider .content-slider .top__foreground .top__content .body-font:last-child,
.top .top__slider .content-slider .top__foreground .top__content body:last-child,
.top .top__slider .content-slider .top__foreground .top__content .form .form-block label:last-child,
.form .form-block .top .top__slider .content-slider .top__foreground .top__content label:last-child,
.top .top__slider .content-slider .top__foreground .top__content .form .form-block input[type=text]:last-child,
.form .form-block .top .top__slider .content-slider .top__foreground .top__content input[type=text]:last-child,
.top .top__slider .content-slider .top__foreground .top__content .form .form-block input[type=textarea]:last-child,
.form .form-block .top .top__slider .content-slider .top__foreground .top__content input[type=textarea]:last-child,
.top .top__slider .content-slider .top__foreground .top__content .form .form-block input[type=email]:last-child,
.form .form-block .top .top__slider .content-slider .top__foreground .top__content input[type=email]:last-child,
.top .top__slider .content-slider .top__foreground .top__content .form .form-block input[type=tel]:last-child,
.form .form-block .top .top__slider .content-slider .top__foreground .top__content input[type=tel]:last-child,
.top .top__slider .content-slider .top__foreground .top__content .form .form-block input[type=number]:last-child,
.form .form-block .top .top__slider .content-slider .top__foreground .top__content input[type=number]:last-child,
.top .top__slider .content-slider .top__foreground .top__content .form .form-block input[type=date]:last-child,
.form .form-block .top .top__slider .content-slider .top__foreground .top__content input[type=date]:last-child,
.top .top__slider .content-slider .top__foreground .top__content .form .form-block input[type=password]:last-child,
.form .form-block .top .top__slider .content-slider .top__foreground .top__content input[type=password]:last-child,
.top .top__slider .content-slider .top__foreground .top__content .form .form-block textarea:last-child,
.form .form-block .top .top__slider .content-slider .top__foreground .top__content textarea:last-child,
.top .top__slider .content-slider .top__foreground .top__content .form .form-block select:last-child,
.form .form-block .top .top__slider .content-slider .top__foreground .top__content select:last-child,
.top .top__slider .content-slider .top__foreground .top__content .langs a:last-child,
.langs .top .top__slider .content-slider .top__foreground .top__content a:last-child,
.top .top__slider .content-slider .top__foreground .top__content .langs span:last-child,
.langs .top .top__slider .content-slider .top__foreground .top__content span:last-child,
.top .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text p:last-child,
.articles-related .content .articles-wrapper article .article-text .top .top__slider .content-slider .top__foreground .top__content p:last-child,
.top .top__slider .content-slider .top__foreground .top__content .lead-font:last-child,
.top .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text h3.date:last-child,
.articles-related .content .articles-wrapper article .article-text .top .top__slider .content-slider .top__foreground .top__content h3.date:last-child,
.top .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text .article-links a:last-child,
.articles-related .content .articles-wrapper article .article-text .article-links .top .top__slider .content-slider .top__foreground .top__content a:last-child {
  margin-bottom: 0;
}
.top--home {
  overflow: inherit;
}
.top--home .top__slider .content-slider .top__foreground .top__content {
  width: var(--content-min-width);
}
@media (min-width: 768px) and (max-width: 1199px) {
  .top--home .top__slider .content-slider .top__foreground .top__content {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .top--home .top__slider .content-slider .top__foreground .top__content {
    padding: var(--space-m);
  }
}
.top--home .top__slider .content-slider .top__foreground .top__content .top__slide-icon {
  width: calc(var(--space-l) * 7);
  height: auto;
  margin-bottom: var(--space-xl);
}
@media laptop--retina {
  .top--home .top__slider .content-slider .top__foreground .top__content .top__slide-icon {
    margin-bottom: var(--space-l);
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .top--home .top__slider .content-slider .top__foreground .top__content .top__slide-icon {
    width: calc(var(--space-l) * 5);
  }
}
.top--home .top__slider .content-slider .top__foreground .top__content .top__slide-icon .top__slide-icon-image {
  width: 100%;
  height: auto;
}
.top--home .top__slider .content-slider .top__foreground .top__content .display-5,
.top--home .top__slider .content-slider .top__foreground .top__content .display-4,
.top--home .top__slider .content-slider .top__foreground .top__content .display-3,
.top--home .top__slider .content-slider .top__foreground .top__content .display-2,
.top--home .top__slider .content-slider .top__foreground .top__content .article__socials p,
.article__socials .top--home .top__slider .content-slider .top__foreground .top__content p,
.top--home .top__slider .content-slider .top__foreground .top__content .articles-related .content .text h3,
.articles-related .content .text .top--home .top__slider .content-slider .top__foreground .top__content h3 {
  padding-bottom: 0;
}
.top--home .top__slider .content-slider .top__foreground .top__content .display-5:last-child,
.top--home .top__slider .content-slider .top__foreground .top__content .display-4:last-child,
.top--home .top__slider .content-slider .top__foreground .top__content .display-3:last-child,
.top--home .top__slider .content-slider .top__foreground .top__content .display-2:last-child,
.top--home .top__slider .content-slider .top__foreground .top__content .article__socials p:last-child,
.article__socials .top--home .top__slider .content-slider .top__foreground .top__content p:last-child,
.top--home .top__slider .content-slider .top__foreground .top__content .articles-related .content .text h3:last-child,
.articles-related .content .text .top--home .top__slider .content-slider .top__foreground .top__content h3:last-child {
  padding-bottom: var(--space-m);
}
@media (max-width: 767px) {
  .top--home .top__slider .content-slider .top__foreground .top__content .display-5:last-child,
  .top--home .top__slider .content-slider .top__foreground .top__content .display-4:last-child,
  .top--home .top__slider .content-slider .top__foreground .top__content .display-3:last-child,
  .top--home .top__slider .content-slider .top__foreground .top__content .display-2:last-child,
  .top--home .top__slider .content-slider .top__foreground .top__content .article__socials p:last-child,
  .article__socials .top--home .top__slider .content-slider .top__foreground .top__content p:last-child,
  .top--home .top__slider .content-slider .top__foreground .top__content .articles-related .content .text h3:last-child,
  .articles-related .content .text .top--home .top__slider .content-slider .top__foreground .top__content h3:last-child {
    padding-bottom: 0;
  }
}
.top--home .top__slider .content-slider .top__foreground .top__content .headline-font {
  line-height: 0.6;
}
.top--home .top__slider .content-slider .top__foreground .top__content .body-font, .top--home .top__slider .content-slider .top__foreground .top__content body, .top--home .top__slider .content-slider .top__foreground .top__content .form .form-block label, .form .form-block .top--home .top__slider .content-slider .top__foreground .top__content label, .top--home .top__slider .content-slider .top__foreground .top__content .form .form-block input[type=text], .form .form-block .top--home .top__slider .content-slider .top__foreground .top__content input[type=text],
.top--home .top__slider .content-slider .top__foreground .top__content .form .form-block input[type=textarea],
.form .form-block .top--home .top__slider .content-slider .top__foreground .top__content input[type=textarea],
.top--home .top__slider .content-slider .top__foreground .top__content .form .form-block input[type=email],
.form .form-block .top--home .top__slider .content-slider .top__foreground .top__content input[type=email],
.top--home .top__slider .content-slider .top__foreground .top__content .form .form-block input[type=tel],
.form .form-block .top--home .top__slider .content-slider .top__foreground .top__content input[type=tel],
.top--home .top__slider .content-slider .top__foreground .top__content .form .form-block input[type=number],
.form .form-block .top--home .top__slider .content-slider .top__foreground .top__content input[type=number],
.top--home .top__slider .content-slider .top__foreground .top__content .form .form-block input[type=date],
.form .form-block .top--home .top__slider .content-slider .top__foreground .top__content input[type=date],
.top--home .top__slider .content-slider .top__foreground .top__content .form .form-block input[type=password],
.form .form-block .top--home .top__slider .content-slider .top__foreground .top__content input[type=password],
.top--home .top__slider .content-slider .top__foreground .top__content .form .form-block textarea,
.form .form-block .top--home .top__slider .content-slider .top__foreground .top__content textarea,
.top--home .top__slider .content-slider .top__foreground .top__content .form .form-block select,
.form .form-block .top--home .top__slider .content-slider .top__foreground .top__content select, .top--home .top__slider .content-slider .top__foreground .top__content .langs a, .langs .top--home .top__slider .content-slider .top__foreground .top__content a,
.top--home .top__slider .content-slider .top__foreground .top__content .langs span,
.langs .top--home .top__slider .content-slider .top__foreground .top__content span, .top--home .top__slider .content-slider .top__foreground .top__content .article__socials .date p, .article__socials .date .top--home .top__slider .content-slider .top__foreground .top__content p, .top--home .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text p, .articles-related .content .articles-wrapper article .article-text .top--home .top__slider .content-slider .top__foreground .top__content p,
.top--home .top__slider .content-slider .top__foreground .top__content .lead-font,
.top--home .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text h3.date,
.articles-related .content .articles-wrapper article .article-text .top--home .top__slider .content-slider .top__foreground .top__content h3.date,
.top--home .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text a h3.headline-font,
.articles-related .content .articles-wrapper article .article-text a .top--home .top__slider .content-slider .top__foreground .top__content h3.headline-font,
.top--home .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text .article-links a,
.articles-related .content .articles-wrapper article .article-text .article-links .top--home .top__slider .content-slider .top__foreground .top__content a {
  line-height: 1.6;
  margin-bottom: 0;
}
.top--home .top__slider .content-slider .top__foreground .top__content .body-font:first-child, .top--home .top__slider .content-slider .top__foreground .top__content body:first-child, .top--home .top__slider .content-slider .top__foreground .top__content .form .form-block label:first-child, .form .form-block .top--home .top__slider .content-slider .top__foreground .top__content label:first-child, .top--home .top__slider .content-slider .top__foreground .top__content .form .form-block input[type=text]:first-child, .form .form-block .top--home .top__slider .content-slider .top__foreground .top__content input[type=text]:first-child,
.top--home .top__slider .content-slider .top__foreground .top__content .form .form-block input[type=textarea]:first-child,
.form .form-block .top--home .top__slider .content-slider .top__foreground .top__content input[type=textarea]:first-child,
.top--home .top__slider .content-slider .top__foreground .top__content .form .form-block input[type=email]:first-child,
.form .form-block .top--home .top__slider .content-slider .top__foreground .top__content input[type=email]:first-child,
.top--home .top__slider .content-slider .top__foreground .top__content .form .form-block input[type=tel]:first-child,
.form .form-block .top--home .top__slider .content-slider .top__foreground .top__content input[type=tel]:first-child,
.top--home .top__slider .content-slider .top__foreground .top__content .form .form-block input[type=number]:first-child,
.form .form-block .top--home .top__slider .content-slider .top__foreground .top__content input[type=number]:first-child,
.top--home .top__slider .content-slider .top__foreground .top__content .form .form-block input[type=date]:first-child,
.form .form-block .top--home .top__slider .content-slider .top__foreground .top__content input[type=date]:first-child,
.top--home .top__slider .content-slider .top__foreground .top__content .form .form-block input[type=password]:first-child,
.form .form-block .top--home .top__slider .content-slider .top__foreground .top__content input[type=password]:first-child,
.top--home .top__slider .content-slider .top__foreground .top__content .form .form-block textarea:first-child,
.form .form-block .top--home .top__slider .content-slider .top__foreground .top__content textarea:first-child,
.top--home .top__slider .content-slider .top__foreground .top__content .form .form-block select:first-child,
.form .form-block .top--home .top__slider .content-slider .top__foreground .top__content select:first-child, .top--home .top__slider .content-slider .top__foreground .top__content .langs a:first-child, .langs .top--home .top__slider .content-slider .top__foreground .top__content a:first-child,
.top--home .top__slider .content-slider .top__foreground .top__content .langs span:first-child,
.langs .top--home .top__slider .content-slider .top__foreground .top__content span:first-child, .top--home .top__slider .content-slider .top__foreground .top__content .article__socials .date p:first-child, .article__socials .date .top--home .top__slider .content-slider .top__foreground .top__content p:first-child, .top--home .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text p:first-child, .articles-related .content .articles-wrapper article .article-text .top--home .top__slider .content-slider .top__foreground .top__content p:first-child,
.top--home .top__slider .content-slider .top__foreground .top__content .lead-font:first-child,
.top--home .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text h3.date:first-child,
.articles-related .content .articles-wrapper article .article-text .top--home .top__slider .content-slider .top__foreground .top__content h3.date:first-child,
.top--home .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text a h3.headline-font:first-child,
.articles-related .content .articles-wrapper article .article-text a .top--home .top__slider .content-slider .top__foreground .top__content h3.headline-font:first-child,
.top--home .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text .article-links a:first-child,
.articles-related .content .articles-wrapper article .article-text .article-links .top--home .top__slider .content-slider .top__foreground .top__content a:first-child {
  margin-top: var(--space-m);
}
.top--home .top__slider .content-slider .icon {
  position: absolute;
  bottom: 60px;
  right: 90px;
  z-index: 1;
  width: 200px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .top--home .top__slider .content-slider .icon {
    width: 150px;
    bottom: 150px;
    right: 50px;
  }
}
@media (max-width: 767px) {
  .top--home .top__slider .content-slider .icon {
    width: 100px;
    right: 50%;
    transform: translate(50%, 0px);
  }
}
.top--product .text-product {
  position: absolute;
  z-index: 20;
  color: white;
  top: 20%;
  left: 15%;
}
@media (max-width: 767px) {
  .top--product .text-product {
    left: 0%;
    text-align: center;
    top: 25%;
  }
}
@media (max-width: 767px) {
  .top--product .text-product .button-block {
    justify-content: center;
  }
}
.top--promotion {
  background-color: var(--light-grey);
}
.top--promotion .text-promotion {
  position: absolute;
  z-index: 20;
  color: white;
  top: 30%;
  left: 15%;
}
.top--promotion .text-promotion .subtitle-font {
  color: white;
}
.top--promotion .top-block-promotion {
  position: absolute;
  z-index: 20;
  top: 13%;
  right: 20%;
  background-color: var(--green);
  max-width: 500px;
  padding: calc(var(--space-xl) * 1.3);
  text-align: center;
}
@media (max-width: 767px) {
  .top--promotion .top-block-promotion {
    margin: auto;
    width: 90%;
    padding: var(--space-l);
    top: 45%;
    left: 6%;
  }
  .top--promotion .top-block-promotion .headline-font {
    font-size: 16px;
  }
  .top--promotion .top-block-promotion .button-block {
    margin: 0;
  }
  .top--promotion .top-block-promotion .button-block .button {
    margin: 0;
  }
}
.top--promotion .top-block-promotion .headline-font span {
  color: white !important;
}
.top--promotion .top-block-promotion .button span {
  border-color: white;
}
.top--articles {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 768px) {
  .top--articles {
    grid-template-columns: 1fr;
  }
}
.top--articles .top__slider {
  grid-column: 2/3;
  grid-row: 1/3;
}
@media mobile--portrait {
  .top--articles .top__slider {
    height: calc(var(--space-xl) * 4);
  }
}
@media (max-width: 768px) {
  .top--articles .top__slider {
    grid-column: unset;
    grid-row: unset;
  }
}
.top--articles .top__slider .content-slider .top__foreground {
  position: relative;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .top--articles .top__slider .content-slider .top__foreground .top__content {
    width: 100%;
  }
}
@media laptop--retina {
  .top--articles .top__slider .content-slider .top__foreground .top__content {
    padding-top: 0;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .top--articles .top__slider .content-slider .top__foreground .top__content {
    width: 100%;
  }
}
.top--articles .top__slider .content-slider .top__foreground .top__content .display-2, .top--articles .top__slider .content-slider .top__foreground .top__content .article__socials p, .article__socials .top--articles .top__slider .content-slider .top__foreground .top__content p, .top--articles .top__slider .content-slider .top__foreground .top__content .articles-related .content .text h3, .articles-related .content .text .top--articles .top__slider .content-slider .top__foreground .top__content h3,
.top--articles .top__slider .content-slider .top__foreground .top__content .display-3,
.top--articles .top__slider .content-slider .top__foreground .top__content .display-4 {
  color: var(--white);
  text-align: center;
}
.top--articles .top__slider .content-slider .top__foreground .top__content .lead-font, .top--articles .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text h3.date, .articles-related .content .articles-wrapper article .article-text .top--articles .top__slider .content-slider .top__foreground .top__content h3.date, .top--articles .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text a h3.headline-font, .articles-related .content .articles-wrapper article .article-text a .top--articles .top__slider .content-slider .top__foreground .top__content h3.headline-font, .top--articles .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text .article-links a, .articles-related .content .articles-wrapper article .article-text .article-links .top--articles .top__slider .content-slider .top__foreground .top__content a {
  color: var(--white);
  text-align: center;
}
.top--articles .top__foreground {
  position: relative;
  height: var(--top-large-height);
  background-color: var(--light-blue);
}
.top--articles .top__foreground .top__content {
  width: 50%;
  margin-left: auto;
  margin-right: 0;
}
@media (max-width: 768px) {
  .top--articles .top__foreground .top__content {
    width: 90%;
    justify-content: space-around;
  }
}
@media (max-width: 767px) {
  .top--articles .top__foreground .top__content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
}
.top--inner {
  background-color: var(--light-grey);
}
.top--inner .top__foreground .top__container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--content-min-width);
}
@media (min-width: 768px) and (max-width: 1199px) {
  .top--inner .top__foreground .top__container {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .top--inner .top__foreground .top__container {
    width: 100%;
  }
}
.top--inner .top__foreground .top__container .top__content {
  width: var(--content-min-width);
  padding-top: var(--space-m);
}
@media (min-width: 1200px) and (max-width: 1600px) {
  .top--inner .top__foreground .top__container .top__content {
    padding-top: 0;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .top--inner .top__foreground .top__container .top__content {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .top--inner .top__foreground .top__container .top__content {
    width: 80%;
    padding-top: var(--space-xl);
  }
  .top--inner .top__foreground .top__container .top__content .display-5,
  .top--inner .top__foreground .top__container .top__content .body-font,
  .top--inner .top__foreground .top__container .top__content body,
  .top--inner .top__foreground .top__container .top__content .form .form-block label,
  .form .form-block .top--inner .top__foreground .top__container .top__content label,
  .top--inner .top__foreground .top__container .top__content .form .form-block input[type=text],
  .form .form-block .top--inner .top__foreground .top__container .top__content input[type=text],
  .top--inner .top__foreground .top__container .top__content .form .form-block input[type=textarea],
  .form .form-block .top--inner .top__foreground .top__container .top__content input[type=textarea],
  .top--inner .top__foreground .top__container .top__content .form .form-block input[type=email],
  .form .form-block .top--inner .top__foreground .top__container .top__content input[type=email],
  .top--inner .top__foreground .top__container .top__content .form .form-block input[type=tel],
  .form .form-block .top--inner .top__foreground .top__container .top__content input[type=tel],
  .top--inner .top__foreground .top__container .top__content .form .form-block input[type=number],
  .form .form-block .top--inner .top__foreground .top__container .top__content input[type=number],
  .top--inner .top__foreground .top__container .top__content .form .form-block input[type=date],
  .form .form-block .top--inner .top__foreground .top__container .top__content input[type=date],
  .top--inner .top__foreground .top__container .top__content .form .form-block input[type=password],
  .form .form-block .top--inner .top__foreground .top__container .top__content input[type=password],
  .top--inner .top__foreground .top__container .top__content .form .form-block textarea,
  .form .form-block .top--inner .top__foreground .top__container .top__content textarea,
  .top--inner .top__foreground .top__container .top__content .form .form-block select,
  .form .form-block .top--inner .top__foreground .top__container .top__content select,
  .top--inner .top__foreground .top__container .top__content .langs a,
  .langs .top--inner .top__foreground .top__container .top__content a,
  .top--inner .top__foreground .top__container .top__content .langs span,
  .langs .top--inner .top__foreground .top__container .top__content span,
  .top--inner .top__foreground .top__container .top__content .article__socials .date p,
  .article__socials .date .top--inner .top__foreground .top__container .top__content p,
  .top--inner .top__foreground .top__container .top__content .articles-related .content .articles-wrapper article .article-text p,
  .articles-related .content .articles-wrapper article .article-text .top--inner .top__foreground .top__container .top__content p,
  .top--inner .top__foreground .top__container .top__content .body-font strong,
  .top--inner .top__foreground .top__container .top__content body strong,
  .top--inner .top__foreground .top__container .top__content .form .form-block label strong,
  .form .form-block .top--inner .top__foreground .top__container .top__content label strong,
  .top--inner .top__foreground .top__container .top__content .form .form-block input[type=text] strong,
  .form .form-block .top--inner .top__foreground .top__container .top__content input[type=text] strong,
  .top--inner .top__foreground .top__container .top__content .form .form-block input[type=textarea] strong,
  .form .form-block .top--inner .top__foreground .top__container .top__content input[type=textarea] strong,
  .top--inner .top__foreground .top__container .top__content .form .form-block input[type=email] strong,
  .form .form-block .top--inner .top__foreground .top__container .top__content input[type=email] strong,
  .top--inner .top__foreground .top__container .top__content .form .form-block input[type=tel] strong,
  .form .form-block .top--inner .top__foreground .top__container .top__content input[type=tel] strong,
  .top--inner .top__foreground .top__container .top__content .form .form-block input[type=number] strong,
  .form .form-block .top--inner .top__foreground .top__container .top__content input[type=number] strong,
  .top--inner .top__foreground .top__container .top__content .form .form-block input[type=date] strong,
  .form .form-block .top--inner .top__foreground .top__container .top__content input[type=date] strong,
  .top--inner .top__foreground .top__container .top__content .form .form-block input[type=password] strong,
  .form .form-block .top--inner .top__foreground .top__container .top__content input[type=password] strong,
  .top--inner .top__foreground .top__container .top__content .form .form-block textarea strong,
  .form .form-block .top--inner .top__foreground .top__container .top__content textarea strong,
  .top--inner .top__foreground .top__container .top__content .form .form-block select strong,
  .form .form-block .top--inner .top__foreground .top__container .top__content select strong,
  .top--inner .top__foreground .top__container .top__content .langs a strong,
  .langs .top--inner .top__foreground .top__container .top__content a strong,
  .top--inner .top__foreground .top__container .top__content .langs span strong,
  .langs .top--inner .top__foreground .top__container .top__content span strong,
  .top--inner .top__foreground .top__container .top__content .article__socials .date p strong,
  .article__socials .date .top--inner .top__foreground .top__container .top__content p strong,
  .top--inner .top__foreground .top__container .top__content .articles-related .content .articles-wrapper article .article-text p strong,
  .articles-related .content .articles-wrapper article .article-text .top--inner .top__foreground .top__container .top__content p strong {
    text-align: center !important;
  }
}
.top--inner.top--article {
  height: var(--top-small-height);
}
@media (max-width: 767px) {
  .top--inner.top--article {
    height: 235px;
  }
  .top--inner.top--article .top__foreground {
    max-width: 90%;
    margin: auto;
  }
}
.top--inner.top--article .top__foreground .top__container {
  width: var(--content-max-width);
  margin-top: var(--space-xxl);
}
@media (max-width: 767px) {
  .top--inner.top--article .top__foreground .top__container {
    margin-top: var(--space-m);
  }
}
.top--inner.top--article .top__foreground .top__container .top__content {
  width: var(--content-max-width);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.top--inner.top--article .top__foreground .top__container .top__content div .title-font {
  font-size: 16px;
  padding: var(--space-s);
}
.top--inner.top--article .top__foreground .top__container .top__content div .display-l {
  color: var(--green);
}
.top--inner.top--article .top__foreground .top__container .top__content div:nth-child(1), .top--inner.top--article .top__foreground .top__container .top__content div:nth-child(2) {
  border-bottom: 1px solid var(--dark-grey);
}
.top--inner.top--article .top__foreground .top__container .top__content div:nth-child(2) {
  height: 100%;
  position: relative;
}
.top--inner.top--article .top__foreground .top__container .top__content div:nth-child(2) .display-s {
  position: absolute;
  bottom: 0%;
  right: 0%;
  padding: var(--space-s);
}
.top--inner.top--article .top__foreground .top__container .top__content div.social-icons {
  text-align: end;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 15px;
}
@media (max-width: 500px) {
  .top--inner.top--article .top__foreground .top__container .top__content div.social-icons {
    top: 0px;
    margin-bottom: 10px;
  }
}
.top--inner.top--article .top__foreground .top__container .top__content div.social-icons p {
  color: var(--dark-grey);
  font-size: 14px;
}
.top--inner.top--article .top__foreground .top__container .top__content div.social-icons a {
  margin: 0 15px;
  color: var(--dark-grey);
  transition: all 0.2s ease-out;
}
.top--inner.top--article .top__foreground .top__container .top__content div.social-icons a:hover {
  color: var(--green);
  transition: all 0.2s ease-out;
}
.top--large {
  height: 100vh;
}
@media (max-width: 767px) {
  .top--large {
    height: 75vh;
  }
}
.top--small {
  height: var(--top-small-height);
}
.top--small {
  height: calc(var(--space-xl) * 6);
}
@media (min-width: 768px) and (max-width: 1199px) {
  .top--small {
    height: calc(var(--space-xl) * 5);
  }
}
@media (max-width: 767px) {
  .top--small {
    height: calc(var(--space-xl) * 4);
  }
}
.top--slider .top__cover-video {
  visibility: hidden;
}
.top--video .top__slider {
  visibility: hidden;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .top--video .top__slider {
    visibility: visible;
    height: 100%;
  }
}

.top__down {
  opacity: 0.8;
  position: absolute;
  bottom: var(--space-l);
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 50px;
  border-radius: 15px 15px;
  border: 2px solid var(--white);
  transition: 0.5s cubic-bezier(0.52, 0.01, 0.16, 1) 0s;
  z-index: var(--z-index--body);
  cursor: pointer;
}
.top__down:after {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 10px;
  border-left: 2px solid var(--white);
  animation-name: mouse-scroll;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-delay: 5s;
  animation-timing-function: cubic-bezier(0.52, 0.01, 0.16, 1);
}
.top__down:hover {
  opacity: 1;
}
@keyframes mouse-scroll {
  0% {
    top: 10px;
  }
  25% {
    top: 20px;
  }
  35% {
    top: 12px;
  }
  45% {
    top: 18px;
  }
  50% {
    top: 10px;
  }
  100% {
    top: 10px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .top__down {
    display: none;
  }
}

.top__slider {
  position: relative;
  height: 100%;
}

.top__cover-video {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.top__cover-video .top__video {
  min-width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .top__cover-video .top__video {
    height: 75vh;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .top__cover-video {
    display: none;
  }
}

.top__foreground {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 100%;
  z-index: var(--z-index--hightlight);
}
.top__foreground--absolute {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.top__foreground--relative {
  position: relative;
}

.top__container {
  width: var(--content-max-width);
  margin: auto;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .top__container {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .top__container {
    padding: 0 50px;
  }
}

.top__content {
  width: var(--content-min-width);
  margin: auto;
  z-index: var(--z-index--highlight);
}
@media (min-width: 768px) and (max-width: 1199px) {
  .top__content {
    padding: var(--space-s) quish-l;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .top__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .top__content {
    height: 100%;
  }
}

.top__background {
  position: absolute;
  z-index: var(--z-index--background);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
}
.top__background .image {
  height: 100%;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .top__background {
    min-height: 0;
    background-size: cover;
    transform: none;
  }
}

.top__buttons {
  position: absolute;
  display: flex;
  justify-content: space-evenly;
  left: 50%;
  bottom: var(--space-l);
  transform: translateX(-50%);
  z-index: var(--z-index--highlight);
  display: flex;
  align-items: center;
}
.top__buttons .slider__button {
  position: relative;
  display: inline-block;
  background-color: var(--bc-3);
  height: var(--space-m);
  width: var(--space-xl);
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.52, 0.01, 0.16, 1) 0s;
}
.top__buttons .slider__button.current {
  background-color: var(--bc-1);
}
@media (max-width: 767px) {
  .top__buttons .slider__button {
    width: 10px;
    height: 10px;
    border: 2px solid var(--white);
  }
}

.top__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(var(--space-xl) * 5);
  height: calc(var(--space-xl) * 5);
  z-index: var(--z-index--highlight);
}
@media laptop--non-retina {
  .top__logo {
    width: calc(var(--space-xl) * 4);
    height: calc(var(--space-xl) * 4);
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .top__logo {
    width: calc(var(--space-xl) * 2);
    height: calc(var(--space-xl) * 2);
  }
}
@media (max-width: 767px) {
  .top__logo {
    width: calc(var(--space-xl) * 1.5);
    height: calc(var(--space-xl) * 1.5);
  }
}
.top__logo a {
  width: 100%;
  height: 100%;
}
.top__logo a img {
  width: 100%;
  height: 100%;
}

.decoration-image {
  position: absolute;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .decoration-image {
    display: none;
  }
}
@media (max-width: 767px) {
  .decoration-image {
    display: none;
  }
}
.decoration-image--moved-bottom {
  transform: translateY(50%);
}
.decoration-image--moved-top {
  transform: translateY(-50%);
}
.decoration-image--bottom {
  bottom: 0;
}
.decoration-image--top {
  top: 0;
}
.decoration-image--left {
  left: 0;
}
.decoration-image--right {
  right: 0;
}
.decoration-image--middle-v {
  top: 50%;
  transform: translateY(-50%);
}
.decoration-image--middle-h {
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1250px) {
  .decoration-image--small-laptop {
    height: 240px !important;
  }
}
@media (max-width: 1600px) {
  .decoration-image--small-hd-laptop {
    height: 410px !important;
  }
}
@media (max-width: 1350px) {
  .decoration-image--small-hd-laptop {
    height: 340px !important;
  }
}
@media (max-width: 1600px) {
  .decoration-image--hide-hd-laptop {
    display: none;
  }
}
@media (max-width: $design-breakpoint) {
  .decoration-image--coffee, .decoration-image--cup {
    display: none;
  }
}
@media (max-width: 724px) {
  .decoration-image--the-roadster {
    display: none;
  }
}

.pm_list-featured .content {
  max-width: 60%;
  margin: auto;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .pm_list-featured .content {
    max-width: 90%;
  }
}
@media (max-width: 767px) {
  .pm_list-featured .content {
    max-width: 90%;
  }
}
.pm_list-featured .content .description {
  text-align: center;
}
.pm_list-featured .content .promotion-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: var(--space-m);
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}
@media (min-width: 768px) and (max-width: 1199px) {
  .pm_list-featured .content .promotion-block {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .pm_list-featured .content .promotion-block {
    display: flex;
    flex-direction: column;
  }
}
.pm_list-featured .content .promotion-block .promotion-item {
  position: relative;
  transition: all 2s ease-out;
  overflow: hidden;
}
.pm_list-featured .content .promotion-block .promotion-item .text {
  position: absolute;
  top: 70%;
  left: 5%;
  z-index: 30;
}
.pm_list-featured .content .promotion-block .promotion-item .text .title {
  font-weight: bold;
  color: white;
}
.pm_list-featured .content .promotion-block .promotion-item .text .resume {
  color: white;
}
.pm_list-featured .content .promotion-block .promotion-item a:hover img {
  transform: scale(1.1);
}
.pm_list-featured .content .promotion-block .promotion-item:first-child() {
  grid-row: 1/3;
}
.pm_list-featured .content .promotion-block .promotion-item:first-child() img {
  height: 550px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 1s ease-out;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .pm_list-featured .content .promotion-block .promotion-item:first-child() img {
    height: 267px;
  }
}
@media (max-width: 767px) {
  .pm_list-featured .content .promotion-block .promotion-item:first-child() img {
    height: 267px;
  }
}
.pm_list-featured .content .promotion-block .promotion-item:nth-child(2) img,
.pm_list-featured .content .promotion-block .promotion-item:nth-child(3) img {
  height: 267px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 1s ease-out;
}
.pm_list-featured .content .promotion-block .promotion-item:nth-child(2) .text,
.pm_list-featured .content .promotion-block .promotion-item:nth-child(3) .text {
  top: 55%;
  left: 5%;
}

.online-appointment {
  position: fixed;
  top: 30%;
  right: 0;
  z-index: 10;
  background-color: white;
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
  border: 3px solid transparent;
  border-right: none;
  padding: 20px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px 1px rgba(0, 0, 0, 0.2), 0 0 1px 1px rgba(0, 0, 0, 0.09);
  outline: 0 none;
  transition: all 0.75s ease-in-out 0s;
  cursor: pointer;
}
@media (max-width: 767px) {
  .online-appointment {
    top: unset;
    left: 0;
    right: unset;
    bottom: 0;
    width: 100%;
    border-right: 3px solid var(--bc-1);
    padding: 15px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
}
.online-appointment img {
  width: 45px;
  height: auto;
  margin-right: 15px;
}
.online-appointment__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.online-appointment__text .text__top {
  font-size: 23px;
  font-weight: bold;
  color: var(--bc-1);
  line-height: 1;
}
.online-appointment__text .text__bottom {
  font-size: 23px;
  font-weight: 300;
  color: var(--bc-2);
  line-height: 1;
}
.online-appointment span {
  transition: all 0.75s ease-in-out 0s;
}
.online-appointment:after, .online-appointment:before {
  content: "";
  height: 100%;
  left: -1px;
  position: absolute;
  top: -1px;
  transform: scale(0);
  transition: all 0.5s ease-in-out 0s;
  width: 100%;
  z-index: 3;
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
}
.online-appointment:before {
  border-bottom: 3px solidvar(--bc-2);
  border-left: 3px solidvar(--bc-2);
  transform-origin: 0 100% 0;
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
}
.online-appointment:after {
  border-top: 3px solidvar(--bc-2);
  transform-origin: 100% 0 0;
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
}
.online-appointment:hover:after, .online-appointment:hover:before {
  transform: scale(1);
}
.online-appointment:hover {
  background-color: var(--bc-1);
}
.online-appointment:hover span {
  color: white;
  transition: all 0.75s ease-in-out 0s;
}

/* -------------------------- */
/* ----- BLOCKS LAYOUT ------ */
/* -------------------------- */
/* -------------------------- */
.block-text-image__container--top {
  color: white;
}

.game-title {
  font-size: 6em !important;
  line-height: 1.1em;
  margin: 25px 0px 90px 0px;
  font-family: "Nunito Bold" !important;
  background: linear-gradient(315deg, #0082ff 25%, #00c8ff 75%) !important;
  -webkit-background-clip: text !important;
  color: transparent !important;
  font-weight: 500;
}

.inner-title {
  margin: 0px !important;
}

.game-subtitle {
  font-size: 2em !important;
  font-family: "Nunito Regular" !important;
  color: #374649 !important;
  font-weight: normal !important;
}

.medal img {
  width: 350px;
}

.correct_answer {
  font-family: "Nunito Bold" !important;
  color: #374649 !important;
  font-weight: 500;
}

.explanation {
  font-family: "Nunito Regular" !important;
  color: #374649 !important;
  font-weight: normal !important;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  padding: 0px 5%;
  margin-top: 40%;
}

.win-block {
  width: 50%;
  margin-right: 10%;
}
.win-block div:nth-child(1) {
  margin-bottom: 5%;
}
.win-block div:nth-child(1) h2 {
  font-family: "Gotham Bold";
  font-weight: normal;
  font-size: 4em;
}
.win-block div:nth-child(1) p {
  font-family: "Gotham Book";
  font-weight: normal;
  font-size: 1.5em;
}
.win-block div:nth-child(2) {
  margin-bottom: 5%;
}
.win-block div:nth-child(2) h3 {
  font-family: "Gotham Bold";
  font-weight: normal;
  font-size: 1.8em;
}
.win-block div:nth-child(3) p {
  font-family: "Gotham Book";
  font-weight: normal;
  font-size: 1.8em;
}

.form-block--legal input {
  margin-right: 10px;
}
.form-block--legal input:checked {
  background-color: white;
}
.form-block--legal p {
  font-family: "Nunito Bold" !important;
  font-size: 0.7em !important;
  font-weight: normal !important;
}
.form-block--legal .legal_info {
  margin-right: 10px;
  font-style: italic;
}
.form-block--legal .legal_info:hover {
  cursor: pointer;
  border-bottom: 1px solid black;
}

.button-block {
  display: flex;
  justify-content: flex-start;
}

.form-block label {
  font-family: "Gotham Book" !important;
  font-size: 1em !important;
  font-weight: normal !important;
  color: white !important;
}
.form-block input {
  color: white !important;
  font-family: "Gotham Light" !important;
}

.button-block--submit .button-quizs {
  margin: 0px !important;
}

.button-block--submit {
  display: flex;
  justify-content: center !important;
}

.thanks_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.thanks_wrapper h1 {
  font-family: "Gotham Bold" !important;
  font-size: 3em !important;
  font-weight: bold !important;
  color: white !important;
}
.thanks_wrapper h2 {
  font-family: "Gotham Book" !important;
  font-size: 2em !important;
  font-weight: normal !important;
  color: white !important;
}

.step-image_container {
  position: fixed;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 35%;
}
.step-image_container .step-image {
  width: 8%;
}

.progress_container {
  position: fixed;
  height: 20px;
  width: 100vw;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: flex-start;
  transition: all 0.7s ease-in-out;
  width: 0%;
  overflow: hidden;
  z-index: 20;
}
.progress_container .progress_bar {
  display: block;
  min-width: 100vw;
  width: 100vw;
  height: 100%;
  background: linear-gradient(90deg, rgb(255, 110, 0) 0%, rgb(255, 0, 0) 8%, rgb(70, 50, 255) 17%, rgb(0, 130, 255) 33%, rgb(0, 170, 255) 37%, rgb(0, 200, 175) 49%, rgb(60, 215, 0) 77%, rgb(255, 175, 0) 98%);
}

.correct-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.incorrect-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.question-content {
  width: 80%;
  text-align: center;
}

@font-face {
  font-family: "Skoda Pro";
  src: url("fonts/SkodaPro-Medium.woff2") format("woff2"), url("fonts/SkodaPro-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Skoda Pro";
  src: url("fonts/SkodaPro-LightItalic.woff2") format("woff2"), url("font/SkodaPro-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Skoda Pro";
  src: url("fonts/SkodaPro-MediumItalic.woff2") format("woff2"), url("fonts/SkodaPro-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Skoda Pro";
  src: url("fonts/SkodaPro.woff2") format("woff2"), url("fonts/SkodaPro.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Skoda Pro";
  src: url("fonts/SkodaPro-Italic.woff2") format("woff2"), url("fonts/SkodaPro-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Skoda Pro";
  src: url("fonts/SkodaPro-Bold.woff2") format("woff2"), url("fonts/SkodaPro-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Skoda Pro";
  src: url("fonts/SkodaPro-BoldItalic.woff2") format("woff2"), url("fonts/SkodaPro-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Skoda Pro";
  src: url("fonts/SkodaPro.woff2") format("woff2"), url("fonts/SkodaPro.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Skoda Pro";
  src: url("fonts/SkodaPro-Bold.woff2") format("woff2"), url("fonts/SkodaPro-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Skoda Pro";
  src: url("fonts/SkodaPro-Italic.woff2") format("woff2"), url("fonts/SkodaPro-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Skoda Pro";
  src: url("fonts/SkodaPro-BoldItalic.woff2") format("woff2"), url("fonts/SkodaPro-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Skoda Pro";
  src: url("fonts/SkodaPro-ExtraBoldItalic.woff2") format("woff2"), url("fonts/SkodaPro-ExtraBoldItalic.woff") format("woff");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Skoda Pro";
  src: url("fonts/SkodaPro-ExtraBold.woff2") format("woff2"), url("fonts/SkodaPro-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Skoda Pro";
  src: url("fonts/SkodaPro-Light.woff2") format("woff2"), url("fonts/SkodaPro-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Oswald";
  src: url("fonts/Oswald-ExtraLight.woff2") format("woff2"), url("fonts/Oswald-ExtraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Oswald";
  src: url("fonts/Oswald-Bold.woff2") format("woff2"), url("fonts/Oswald-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Oswald";
  src: url("fonts/Oswald-Regular.woff2") format("woff2"), url("fonts/Oswald-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Oswald";
  src: url("fonts/Oswald-Light.woff2") format("woff2"), url("fonts/Oswald-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Oswald";
  src: url("fonts/Oswald-Medium.woff2") format("woff2"), url("fonts/Oswald-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Oswald";
  src: url("fonts/Oswald-SemiBold.woff2") format("woff2"), url("fonts/Oswald-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ITCFranklinGothicStd";
  src: url("fonts/ITCFranklinGothicStd-Book.otf") format("otf"), url("fonts/ITCFranklinGothicStd-Book.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Book";
  src: url("fonts/GothamBook.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Bold";
  src: url("fonts/GothamBold.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Light";
  src: url("fonts/GothamLight.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
/* -------------------------- */
/* ----- ENTITY DESTACADOS EN PORTADA LAYOUT ----- */
/* -------------------------- */
.sm_home .content .sections-wrapper {
  display: flex;
}
@media (max-width: 767px) {
  .sm_home .content .sections-wrapper {
    display: grid;
    margin: 0px;
    margin-top: 300px;
    margin-bottom: var(--space-xxl);
  }
}
@media (max-width: 767px) {
  .sm_home .content .sections-wrapper {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .sm_home .content .sections-wrapper {
    flex-wrap: wrap;
  }
}
.sm_home .content .sections-wrapper.row {
  flex-direction: row;
}
.sm_home .content .sections-wrapper .section.item {
  padding: 0 50px;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 25%;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .sm_home .content .sections-wrapper .section.item {
    width: 50%;
    padding: 50px 50px;
  }
}
@media (max-width: 767px) {
  .sm_home .content .sections-wrapper .section.item {
    width: 100%;
    padding: 50px 50px;
  }
}
.sm_home .content .sections-wrapper .section .info {
  margin-bottom: 30px;
}
.sm_home .content .sections-wrapper .section .info .title {
  font-size: 30px;
  font-weight: 300;
  color: var(--bc-2);
  line-height: 1.27;
  margin-bottom: 30px;
}
.sm_home .content .sections-wrapper .section .info .description {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5;
}
.sm_home .content .sections-wrapper .section .btn-see-more {
  margin-top: auto;
}
.sm_home .content .sections-wrapper .section .btn-see-more a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  transition: all 0.2s ease-out;
}
.sm_home .content .sections-wrapper .section .btn-see-more a span {
  z-index: 1;
  color: white;
  transition: all 0.2s ease-out;
}
.sm_home .content .sections-wrapper .section .btn-see-more a:hover {
  text-decoration: none;
}
.sm_home .content .sections-wrapper .section .btn-see-more a:hover span {
  transition: all 0.2s ease-out;
  transform: scale(1.5);
  color: var(--bc-1);
}
.sm_home .content .sections-wrapper .section .btn-see-more a:hover:before {
  background: #91d8f1;
  transition: all 0.2s ease-out;
}
.sm_home .content .sections-wrapper .section .btn-see-more a:hover:after {
  background: #c0e9f7;
  transition: all 0.2s ease-out;
}
.sm_home .content .sections-wrapper .section .btn-see-more a:after {
  content: "";
  width: 45px;
  height: 45px;
  background: #91d8f1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  transition: all 0.2s ease-out;
}
.sm_home .content .sections-wrapper .section .btn-see-more a:before {
  content: "";
  width: 55px;
  height: 55px;
  background: #c0e9f7;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  transition: all 0.2s ease-out;
}

/* -------------------------- */
/* -------------------------- */
/* ----- ENTITY DESTACADOS EN PORTADA LAYOUT ----- */
/* -------------------------- */
.sm_children {
  padding-top: var(--space-xxl);
  padding-bottom: var(--space-xxl);
}
@media (max-width: 767px) {
  .sm_children .content {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.sm_children .content .sections-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.sm_children .content .sections-wrapper a {
  width: 45%;
  margin: 15px;
  display: flex;
}
@media (max-width: 767px) {
  .sm_children .content .sections-wrapper a {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .sm_children .content .sections-wrapper a {
    width: 50%;
  }
}
.sm_children .content .sections-wrapper a .item {
  display: flex;
  width: 100%;
  box-shadow: 0 16px 24px 0 rgba(0, 0, 0, 0.1), 0 0 8px 2px rgba(0, 0, 0, 0.03);
}
.sm_children .content .sections-wrapper a .item .info {
  padding: 20px;
  background-color: white;
  width: 50%;
  height: 100%;
}
.sm_children .content .sections-wrapper a .item .info h4,
.sm_children .content .sections-wrapper a .item .info div {
  color: black;
}
.sm_children .content .sections-wrapper a .item .info .line {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 10px 0;
  border-top: 1px solid var(--bc-1);
  font-weight: 400;
}
.sm_children .content .sections-wrapper a .item .info .line .left {
  font-size: 13px;
}
.sm_children .content .sections-wrapper a .item .info .line .right {
  font-size: 13px;
  font-weight: bold;
}
.sm_children .content .sections-wrapper a .item .info .line:last-of-type {
  border-bottom: 1px solid var(--bc-1);
}
.sm_children .content .sections-wrapper a .item .info .line:first-of-type {
  margin-top: 40px;
}
.sm_children .content .sections-wrapper a .item .image {
  height: 100%;
  width: 50%;
  background-size: cover;
}
.sm_children .content .sections-wrapper a .item:hover .info {
  background-color: var(--bc-1);
  transition: all 500ms ease-out 0.1s;
}
.sm_children .content .sections-wrapper a .item:hover .info h2 {
  color: white;
}
.sm_children .content .sections-wrapper a .item:hover .info .line {
  border-top: 1px solid white;
}
.sm_children .content .sections-wrapper a .item:hover .info .line:last-of-type {
  border-bottom: 1px solid white;
}

/* -------------------------- */
/* -------------------------- */
/* ----- ENTITY DESTACADOS EN PORTADA LAYOUT ----- */
/* -------------------------- */
.cm_list-products .content {
  align-items: flex-start !important;
  z-index: 3;
}
.cm_list-products .content .list-products {
  padding-left: 10%;
  margin-top: 115px;
  width: 100%;
  z-index: 2;
}
@media (max-width: 767px) {
  .cm_list-products .content .list-products {
    margin-top: 50px;
    padding: 0;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .cm_list-products .content .list-products {
    padding: 50px;
    margin-top: 0px;
  }
}
.cm_list-products .content .list-products__title {
  position: relative;
  font-size: 52px;
  color: var(--bc-2);
  line-height: 1.23;
  margin-bottom: 50px;
  max-width: 60%;
  margin-left: auto;
  color: white;
}
.cm_list-products .content .list-products__title h3 {
  width: 45%;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .cm_list-products .content .list-products__title {
    max-width: 100%;
  }
  .cm_list-products .content .list-products__title h3 {
    width: 70%;
  }
}
@media (max-width: 767px) {
  .cm_list-products .content .list-products__title {
    font-size: 30px;
    max-width: 90%;
    margin-top: 50px;
    margin: auto;
  }
  .cm_list-products .content .list-products__title h3 {
    width: 70%;
  }
}
.cm_list-products .content .list-products .button-block {
  max-width: 60%;
  margin-left: auto;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .cm_list-products .content .list-products .button-block {
    max-width: 90%;
    margin: auto;
  }
}
.cm_list-products .content .list-products .button-block span {
  background-color: white;
}
.cm_list-products .content .list-products__slider {
  overflow: hidden;
  padding-top: var(--space-xl);
}
.cm_list-products .content .list-products__slider .slider__items {
  display: flex;
  transition: all 500ms ease-out 0.1s;
}
.cm_list-products .content .list-products__slider .slider__items .items__item a {
  position: relative;
  height: 575px;
  width: 360px;
  display: flex;
  flex-direction: column;
  margin: 0 30px;
  z-index: 2;
  flex: 0 0 360px;
  transition: all 0.3s ease-in-out 0s;
}
@media (max-width: 767px) {
  .cm_list-products .content .list-products__slider .slider__items .items__item a {
    width: 300px;
    flex: 0 0 300px;
    margin: 0px 30px 0px 37px;
  }
}
.cm_list-products .content .list-products__slider .slider__items .items__item a:hover {
  transition: all 0.3s ease-in-out 0s;
  transform: translateY(-30px);
}
.cm_list-products .content .list-products__slider .slider__items .items__item a:hover img {
  filter: grayscale(0%);
}
.cm_list-products .content .list-products__slider .slider__items .items__item a .lens {
  position: absolute;
  background-color: grey;
  opacity: 0.3;
}
.cm_list-products .content .list-products__slider .slider__items .items__item a img {
  filter: grayscale(90%);
}
.cm_list-products .content .list-products__slider .slider__items .items__item .item__image {
  height: 100%;
}
.cm_list-products .content .list-products__slider .slider__items .items__item .item__image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.75s ease-in-out 0s;
}
.cm_list-products .content .list-products__slider .slider__items .items__item .item__content {
  position: absolute;
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  bottom: 0%;
}
.cm_list-products .content .list-products__slider .slider__items .items__item .item__content .content__title span {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.3;
  text-transform: uppercase;
  color: white;
}
.cm_list-products .content .list-products__slider .slider__items .items__item .item__content .content__date {
  flex: 1;
  display: flex;
  align-items: flex-end;
}
.cm_list-products .content .list-products__slider .slider__items .items__item .item__content .content__date span {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.07;
  color: var(--bc-2);
}
.cm_list-products .content .list-products__slider .slider__controller {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .cm_list-products .content .list-products__slider .slider__controller {
    flex-direction: column;
  }
}
.cm_list-products .content .list-products__slider .slider__controller .controller__paginate {
  z-index: 2;
  width: 5%;
}
@media (max-width: 767px) {
  .cm_list-products .content .list-products__slider .slider__controller .controller__paginate {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .cm_list-products .content .list-products__slider .slider__controller .controller__paginate {
    width: 10%;
  }
}
.cm_list-products .content .list-products__slider .slider__controller .controller__paginate span {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.07;
  letter-spacing: -3px;
}
.cm_list-products .content .list-products__slider .slider__controller .controller__line {
  width: 70%;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .cm_list-products .content .list-products__slider .slider__controller .controller__line {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .cm_list-products .content .list-products__slider .slider__controller .controller__line {
    width: 100%;
  }
}
.cm_list-products .content .list-products__slider .slider__controller .controller__line .line {
  z-index: 2;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.25);
  position: relative;
}
.cm_list-products .content .list-products__slider .slider__controller .controller__line .line__current {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0px, -50%);
  height: 4px;
  background: var(--bc-2);
  transition: all 500ms ease-out 0.1s;
}
.cm_list-products .content .list-products__slider .slider__controller .controller__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  width: 100%;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .cm_list-products .content .list-products__slider .slider__controller .controller__buttons {
    width: 30%;
  }
}
@media (max-width: 767px) {
  .cm_list-products .content .list-products__slider .slider__controller .controller__buttons {
    width: 100%;
    margin-top: 30px;
  }
}
.cm_list-products .content .list-products__slider .slider__controller .controller__buttons .buttons__slider {
  display: flex;
  margin-right: 15%;
}
@media (max-width: 767px) {
  .cm_list-products .content .list-products__slider .slider__controller .controller__buttons .buttons__slider {
    margin-right: 0;
  }
}
.cm_list-products .content .list-products__slider .slider__controller .controller__buttons .buttons__slider .left,
.cm_list-products .content .list-products__slider .slider__controller .controller__buttons .buttons__slider .right {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  outline: none;
  position: relative;
  background-color: var(--green);
}
.cm_list-products .content .list-products__slider .slider__controller .controller__buttons .buttons__slider .left:hover,
.cm_list-products .content .list-products__slider .slider__controller .controller__buttons .buttons__slider .right:hover {
  border-color: var(--bc-2);
}
.cm_list-products .content .list-products__slider .slider__controller .controller__buttons .buttons__slider .left {
  margin-right: 10px;
}
.cm_list-products .content .list-products__slider .slider__controller .controller__buttons .buttons__see-more a span {
  position: relative;
  font-size: 12px;
  font-weight: 300;
  color: black;
}
.cm_list-products .content .list-products__slider .slider__controller .controller__buttons .buttons__see-more a span:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: black;
  transition: all 0.15s cubic-bezier(0, 0, 0, 0.54);
  transform: scaleX(0);
}
.cm_list-products .content .list-products__slider .slider__controller .controller__buttons .buttons__see-more a span:hover::after, .cm_list-products .content .list-products__slider .slider__controller .controller__buttons .buttons__see-more a span.current::after {
  transform: scaleX(1);
}
.cm_list-products .content .arrow-left.icon {
  color: white;
  position: absolute;
  margin-left: 3px;
  margin-top: 10px;
  width: 16px;
  height: 1px;
  background-color: currentColor;
  top: 23%;
  left: 21%;
}
.cm_list-products .content .arrow-left.icon:before {
  content: "";
  position: absolute;
  left: 1px;
  top: -5px;
  width: 10px;
  height: 10px;
  border-top: solid 1px currentColor;
  border-right: solid 1px currentColor;
  transform: rotate(-135deg);
  color: white;
}
.cm_list-products .content .arrow-right.icon {
  color: white;
  position: absolute;
  margin-left: 2px;
  margin-top: 10px;
  width: 16px;
  height: 1px;
  background-color: currentColor;
  top: 23%;
  left: 21%;
}
.cm_list-products .content .arrow-right.icon:before {
  content: "";
  position: absolute;
  right: 1px;
  top: -5px;
  width: 10px;
  height: 10px;
  border-top: solid 1px currentColor;
  border-right: solid 1px currentColor;
  transform: rotate(45deg);
  color: white;
}

/* -------------------------- */
/* -------------------------- */
/* ----- ENTITY DESTACADOS EN PORTADA LAYOUT ----- */
/* -------------------------- */
.bm_featured {
  /* The animation code */
  /* The element to apply the animation to */
}
.bm_featured .content {
  align-items: flex-start !important;
}
.bm_featured .content .first-line-articles {
  margin-bottom: 225px;
}
@media (max-width: 767px) {
  .bm_featured .content .first-line-articles {
    margin-bottom: var(--space-xl);
    z-index: 3;
  }
}
.bm_featured .content .first-line-articles .label {
  width: 100%;
  margin-left: 33.33%;
  padding-left: 40px;
  margin-bottom: 50px;
  z-index: 2;
}
@media (max-width: 767px) {
  .bm_featured .content .first-line-articles .label {
    margin-left: 0px;
    margin-bottom: 10px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .bm_featured .content .first-line-articles .label {
    margin-left: 0px;
  }
}
.bm_featured .content .first-line-articles .label span {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.47;
}
@media (max-width: 767px) {
  .bm_featured .content .first-line-articles .label span {
    font-size: 30px;
  }
}
.bm_featured .content .first-line-articles .big-article {
  display: flex;
  flex-direction: row;
  width: 100%;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .bm_featured .content .first-line-articles .big-article {
    display: grid;
    row-gap: var(--space-l);
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .bm_featured .content .first-line-articles .big-article {
    flex-direction: column;
  }
}
.bm_featured .content .first-line-articles .big-article .image-featured {
  width: 33.333%;
  z-index: 2;
  overflow: hidden;
}
@media (max-width: 767px) {
  .bm_featured .content .first-line-articles .big-article .image-featured {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .bm_featured .content .first-line-articles .big-article .image-featured {
    width: 100%;
  }
}
.bm_featured .content .first-line-articles .big-article .image-featured img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.75s ease-in-out 0s;
}
.bm_featured .content .first-line-articles .big-article .image-featured img.zoom-effect {
  transition: all 0.75s ease-in-out 0s;
  transform: scale(1.5);
}
.bm_featured .content .first-line-articles .big-article .content {
  width: 66.666%;
  padding: 0 40px !important;
}
@media (max-width: 767px) {
  .bm_featured .content .first-line-articles .big-article .content {
    width: 100%;
    padding: 0 50px !important;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .bm_featured .content .first-line-articles .big-article .content {
    width: 100%;
  }
}
.bm_featured .content .first-line-articles .big-article .content__title {
  width: 65%;
}
@media (max-width: 767px) {
  .bm_featured .content .first-line-articles .big-article .content__title {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .bm_featured .content .first-line-articles .big-article .content__title {
    width: 100%;
    margin-top: 50px;
  }
}
.bm_featured .content .first-line-articles .big-article .content__title span {
  font-size: 43px;
  font-weight: 300;
  color: var(--bc-2);
}
@media (max-width: 767px) {
  .bm_featured .content .first-line-articles .big-article .content__title span {
    font-size: 30px;
  }
}
.bm_featured .content .first-line-articles .big-article .content__excerpt {
  width: 65%;
  margin: 60px 0;
}
@media (max-width: 767px) {
  .bm_featured .content .first-line-articles .big-article .content__excerpt {
    width: 100%;
    margin: 30px 0;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .bm_featured .content .first-line-articles .big-article .content__excerpt {
    width: 100%;
  }
}
.bm_featured .content .first-line-articles .big-article .content__excerpt span {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5;
}
.bm_featured .content .first-line-articles .big-article .content__btn-see-more a {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.47;
  color: black;
  position: relative;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bm_featured .content .first-line-articles .big-article .content__btn-see-more a:before {
  content: "";
  background: rgba(var(--bc-2), 0.25);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 35px;
  transition: width 500ms ease-out 0.1s;
}
.bm_featured .content .first-line-articles .big-article .content__btn-see-more a:hover:before {
  width: 100%;
  transition: width 500ms ease-out 0.1s;
}
.bm_featured .content .first-line-articles .big-article .content__btn-see-more a span {
  margin-right: 10px;
}
.bm_featured .content .second-line-articles .label {
  width: 100%;
  margin-left: 620px;
  margin-bottom: 50px;
  z-index: 2;
}
@media (min-width: 1200px) and (max-width: 1600px) {
  .bm_featured .content .second-line-articles .label {
    margin-left: 420px;
  }
}
@media (max-width: 767px) {
  .bm_featured .content .second-line-articles .label {
    margin-left: 0px;
    margin-bottom: 10px;
    text-align: center;
  }
}
.bm_featured .content .second-line-articles .label span {
  font-size: 17px;
  font-weight: bold;
  line-height: 1.47;
}
@media (max-width: 767px) {
  .bm_featured .content .second-line-articles .label span {
    font-size: 30px;
  }
}
.bm_featured .content .second-line-articles .grid-articles {
  position: relative;
  display: flex;
  z-index: 2;
}
.bm_featured .content .second-line-articles .grid-articles:before {
  content: "";
  background-color: #f2fafd;
  position: absolute;
  right: 0;
  top: 0;
  width: 75%;
  height: 175%;
  transform: translateY(-150px);
}
@media (min-width: 768px) and (max-width: 1199px) {
  .bm_featured .content .second-line-articles .grid-articles {
    flex-direction: column;
  }
}
.bm_featured .content .second-line-articles .grid-articles .first-article {
  width: 50%;
  display: flex;
  padding-left: 250px;
}
@media (min-width: 1200px) and (max-width: 1600px) {
  .bm_featured .content .second-line-articles .grid-articles .first-article {
    padding-left: 50px;
  }
}
@media (min-width: 1600px) and (max-width: 1750px) {
  .bm_featured .content .second-line-articles .grid-articles .first-article {
    padding-left: 50px;
  }
}
@media (max-width: 767px) {
  .bm_featured .content .second-line-articles .grid-articles .first-article {
    width: 100%;
    flex-direction: column;
    padding-left: 0px;
  }
  .bm_featured .content .second-line-articles .grid-articles .first-article .image {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .bm_featured .content .second-line-articles .grid-articles .first-article {
    width: 100%;
    padding: 50px;
  }
}
.bm_featured .content .second-line-articles .grid-articles .first-article .image {
  height: 350px;
  width: 350px;
  margin: inherit;
}
@media (max-width: 767px) {
  .bm_featured .content .second-line-articles .grid-articles .first-article .image {
    width: 100%;
  }
}
.bm_featured .content .second-line-articles .grid-articles .first-article .image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.bm_featured .content .second-line-articles .grid-articles .first-article .content {
  margin: 0;
  padding: 0 20px !important;
  flex: 1;
}
@media (max-width: 767px) {
  .bm_featured .content .second-line-articles .grid-articles .first-article .content {
    margin: 30px 0;
    padding: 0 50px !important;
  }
}
.bm_featured .content .second-line-articles .grid-articles .first-article .content__title span {
  font-size: 25px;
  font-weight: 300;
  color: var(--bc-2);
  line-height: 1.4;
}
.bm_featured .content .second-line-articles .grid-articles .first-article .content__excerpt {
  margin: 15px 0;
}
.bm_featured .content .second-line-articles .grid-articles .first-article .content__excerpt span {
  font-size: 17px;
  font-weight: 300;
}
.bm_featured .content .second-line-articles .grid-articles .first-article .content__btn-see-more a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.bm_featured .content .second-line-articles .grid-articles .first-article .content__btn-see-more a span {
  margin-right: 10px;
  font-size: 12px;
  font-weight: 300;
}
.bm_featured .content .second-line-articles .grid-articles .plus-articles {
  display: flex;
  flex-wrap: wrap;
  width: 50%;
}
@media (max-width: 767px) {
  .bm_featured .content .second-line-articles .grid-articles .plus-articles {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .bm_featured .content .second-line-articles .grid-articles .plus-articles {
    width: 100%;
    padding: 50px;
  }
}
.bm_featured .content .second-line-articles .grid-articles .plus-articles .plus-articles__item {
  width: 50%;
  display: flex;
  margin: 15px 0;
}
@media (max-width: 767px) {
  .bm_featured .content .second-line-articles .grid-articles .plus-articles .plus-articles__item {
    width: 100%;
    flex-direction: row;
    min-height: 170px;
  }
}
.bm_featured .content .second-line-articles .grid-articles .plus-articles .plus-articles__item .image {
  width: 130px;
  height: 130px;
  margin: 0;
}
.bm_featured .content .second-line-articles .grid-articles .plus-articles .plus-articles__item .image img {
  width: 130px;
  height: 130px;
  -o-object-fit: cover;
     object-fit: cover;
}
.bm_featured .content .second-line-articles .grid-articles .plus-articles .plus-articles__item .content {
  margin: 0;
  padding: 0 20px;
  flex: 1;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .bm_featured .content .second-line-articles .grid-articles .plus-articles .plus-articles__item .content__title {
    line-height: 2.3rem;
  }
}
.bm_featured .content .second-line-articles .grid-articles .plus-articles .plus-articles__item .content__title span {
  font-weight: 300;
  font-size: 20px;
  color: var(--bc-2);
  line-height: 1.5;
}
.bm_featured .content .second-line-articles .grid-articles .plus-articles .plus-articles__item .content__btn-see-more a {
  font-size: 12px;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bm_featured .content .second-line-articles .grid-articles .plus-articles .plus-articles__item .content__btn-see-more a span {
  margin-right: 10px;
}
.bm_featured .content .second-line-articles .image.lens-rotate-effect:after {
  animation: bounceAndRotate 0.6s linear forwards !important;
}
.bm_featured .content .second-line-articles .image:after {
  position: absolute;
  content: "";
  left: 100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 167, 224, 0.4);
  animation: removeBounceAndRotate 0.6s linear forwards;
}
.bm_featured .content .second-line-articles .image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@keyframes example {
  0% {
    transform: translate(0, -50%);
  }
  50% {
    transform: translate(5px, -50%);
  }
  100% {
    transform: translate(0, -50%);
  }
}
.bm_featured .content__btn-see-more .button:hover:after {
  animation-name: example;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
}

/* -------------------------- */
/* -------------------------- */
/* ----- ENTITY DESTACADOS EN PORTADA LAYOUT ----- */
/* -------------------------- */
.bm_latest-news .content {
  align-items: flex-start !important;
}
.bm_latest-news .content .latest-news {
  padding-left: 25%;
  margin-top: 115px;
  width: 100%;
  z-index: 2;
}
@media (max-width: 767px) {
  .bm_latest-news .content .latest-news {
    margin-top: 0px;
    padding: 0;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .bm_latest-news .content .latest-news {
    padding: 50px;
    margin-top: 0px;
  }
}
.bm_latest-news .content .latest-news:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #f2f2f2;
  z-index: 0;
}
.bm_latest-news .content .latest-news__title {
  position: relative;
  font-size: 52px;
  color: var(--bc-2);
  line-height: 1.23;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .bm_latest-news .content .latest-news__title {
    font-size: 30px;
  }
}
.bm_latest-news .content .latest-news__title:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
  left: 0;
  width: 2px;
  height: 52px;
  background-color: var(--bc-2);
}
.bm_latest-news .content .latest-news__title h3 {
  margin-left: 50px;
}
.bm_latest-news .content .latest-news__slider {
  overflow: hidden;
}
.bm_latest-news .content .latest-news__slider .slider__items {
  display: flex;
  transition: all 500ms ease-out 0.1s;
}
.bm_latest-news .content .latest-news__slider .slider__items .items__item a {
  height: 575px;
  width: 360px;
  display: flex;
  flex-direction: column;
  margin: 0 5px;
  z-index: 2;
  flex: 0 0 360px;
  transition: all 0.5s ease-in-out 0s;
}
.bm_latest-news .content .latest-news__slider .slider__items .items__item a:hover {
  transition: all 0.5s ease-in-out 0s;
  transform: scale(1.1);
}
.bm_latest-news .content .latest-news__slider .slider__items .items__item .item__image {
  height: 55%;
}
.bm_latest-news .content .latest-news__slider .slider__items .items__item .item__image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.75s ease-in-out 0s;
}
.bm_latest-news .content .latest-news__slider .slider__items .items__item .item__content {
  background: white;
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
}
.bm_latest-news .content .latest-news__slider .slider__items .items__item .item__content .content__title span {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
}
.bm_latest-news .content .latest-news__slider .slider__items .items__item .item__content .content__date {
  flex: 1;
  display: flex;
  align-items: flex-end;
}
.bm_latest-news .content .latest-news__slider .slider__items .items__item .item__content .content__date span {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.07;
  color: var(--bc-2);
}
.bm_latest-news .content .latest-news__slider .slider__controller {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .bm_latest-news .content .latest-news__slider .slider__controller {
    flex-direction: column;
  }
}
.bm_latest-news .content .latest-news__slider .slider__controller .controller__paginate {
  z-index: 2;
  width: 5%;
}
@media (max-width: 767px) {
  .bm_latest-news .content .latest-news__slider .slider__controller .controller__paginate {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .bm_latest-news .content .latest-news__slider .slider__controller .controller__paginate {
    width: 10%;
  }
}
.bm_latest-news .content .latest-news__slider .slider__controller .controller__paginate span {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.07;
  letter-spacing: -3px;
}
.bm_latest-news .content .latest-news__slider .slider__controller .controller__line {
  width: 70%;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .bm_latest-news .content .latest-news__slider .slider__controller .controller__line {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .bm_latest-news .content .latest-news__slider .slider__controller .controller__line {
    width: 100%;
  }
}
.bm_latest-news .content .latest-news__slider .slider__controller .controller__line .line {
  z-index: 2;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.25);
  position: relative;
}
.bm_latest-news .content .latest-news__slider .slider__controller .controller__line .line__current {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0px, -50%);
  height: 4px;
  background: var(--bc-2);
  transition: all 500ms ease-out 0.1s;
}
.bm_latest-news .content .latest-news__slider .slider__controller .controller__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  width: 25%;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .bm_latest-news .content .latest-news__slider .slider__controller .controller__buttons {
    width: 30%;
  }
}
@media (max-width: 767px) {
  .bm_latest-news .content .latest-news__slider .slider__controller .controller__buttons {
    width: 100%;
    margin-top: 30px;
  }
}
.bm_latest-news .content .latest-news__slider .slider__controller .controller__buttons .buttons__slider {
  display: flex;
  margin-right: 30px;
}
.bm_latest-news .content .latest-news__slider .slider__controller .controller__buttons .buttons__slider .left,
.bm_latest-news .content .latest-news__slider .slider__controller .controller__buttons .buttons__slider .right {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.25);
  cursor: pointer;
  outline: none;
}
.bm_latest-news .content .latest-news__slider .slider__controller .controller__buttons .buttons__slider .left:hover,
.bm_latest-news .content .latest-news__slider .slider__controller .controller__buttons .buttons__slider .right:hover {
  border-color: var(--bc-2);
}
.bm_latest-news .content .latest-news__slider .slider__controller .controller__buttons .buttons__slider .left {
  margin-right: 10px;
}
.bm_latest-news .content .latest-news__slider .slider__controller .controller__buttons .buttons__see-more a span {
  position: relative;
  font-size: 12px;
  font-weight: 300;
  color: black;
}
.bm_latest-news .content .latest-news__slider .slider__controller .controller__buttons .buttons__see-more a span:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: black;
  transition: all 0.15s cubic-bezier(0, 0, 0, 0.54);
  transform: scaleX(0);
}
.bm_latest-news .content .latest-news__slider .slider__controller .controller__buttons .buttons__see-more a span:hover::after, .bm_latest-news .content .latest-news__slider .slider__controller .controller__buttons .buttons__see-more a span.current::after {
  transform: scaleX(1);
}

/* -------------------------- */
/* -------------------------- */
/* ----- ENTITY DESTACADOS EN PORTADA LAYOUT ----- */
/* -------------------------- */
.bm_home .content {
  align-items: flex-start !important;
}
.bm_home .content .all-news__content-title {
  width: 100%;
  display: flex;
  justify-content: center;
}
.bm_home .content .all-news {
  width: 100%;
  z-index: 2;
  max-width: 75%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .bm_home .content .all-news {
    margin-top: 0px;
    padding: 0px;
    max-width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .bm_home .content .all-news {
    max-width: 100%;
  }
}
.bm_home .content .all-news__title {
  position: relative;
  font-size: 52px;
  color: var(--green);
  line-height: 1.23;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .bm_home .content .all-news__title {
    font-size: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.bm_home .content .all-news__title h3 {
  margin-left: 20px;
}
.bm_home .content .all-news__slider {
  overflow: hidden;
}
.bm_home .content .all-news__slider .slider__items {
  display: flex;
  transition: all 500ms ease-out 0.1s;
}
.bm_home .content .all-news__slider .slider__items .page {
  display: flex;
  flex: 0 0 100%;
  flex-wrap: wrap;
}
.bm_home .content .all-news__slider .slider__items .page .items__item {
  display: flex;
  flex-direction: column;
  width: 30%;
  margin: 15px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .bm_home .content .all-news__slider .slider__items .page .items__item {
    width: 45%;
  }
}
@media (max-width: 767px) {
  .bm_home .content .all-news__slider .slider__items .page .items__item {
    width: 100%;
  }
}
.bm_home .content .all-news__slider .slider__items .page .items__item a {
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.5s ease-in-out 0s;
}
.bm_home .content .all-news__slider .slider__items .page .items__item a .caption-font, .bm_home .content .all-news__slider .slider__items .page .items__item a .alert__message, .bm_home .content .all-news__slider .slider__items .page .items__item a .form .form-block.legal, .form .bm_home .content .all-news__slider .slider__items .page .items__item a .form-block.legal {
  font-weight: 300;
}
.bm_home .content .all-news__slider .slider__items .page .items__item a .title-font {
  font-weight: bold;
}
.bm_home .content .all-news__slider .slider__items .page .items__item a:hover {
  transition: all 0.5s ease-in-out 0s;
}
.bm_home .content .all-news__slider .slider__items .page .items__item a:hover .item__content {
  background-color: var(--green);
}
.bm_home .content .all-news__slider .slider__items .page .items__item a:hover .item__content .content__title p,
.bm_home .content .all-news__slider .slider__items .page .items__item a:hover .item__content .content__date p {
  color: white;
}
.bm_home .content .all-news__slider .slider__items .page .items__item .item__image {
  height: 200px;
}
.bm_home .content .all-news__slider .slider__items .page .items__item .item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.bm_home .content .all-news__slider .slider__items .page .items__item .item__content {
  flex: 1;
  padding: 40px;
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.bm_home .content .all-news__slider .slider__items .page .items__item .item__content .content__title {
  height: 100%;
  margin-top: var(--space-m);
}
.bm_home .content .all-news__slider .slider__items .page .items__item .item__content .content__title span {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
}
.bm_home .content .all-news__slider .slider__items .page .items__item .item__content .content__date span {
  font-size: 15px;
  font-weight: 300;
  color: var(--bc-1);
}
.bm_home .content .all-news__slider .slider__controller {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .bm_home .content .all-news__slider .slider__controller {
    flex-direction: column;
    margin-top: 0;
    margin-bottom: 30px;
  }
}
.bm_home .content .all-news__slider .slider__controller .controller__paginate {
  z-index: 2;
  width: 5%;
}
@media (max-width: 767px) {
  .bm_home .content .all-news__slider .slider__controller .controller__paginate {
    display: none;
  }
}
.bm_home .content .all-news__slider .slider__controller .controller__paginate span {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.07;
  letter-spacing: -3px;
}
.bm_home .content .all-news__slider .slider__controller .controller__line {
  width: 70%;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .bm_home .content .all-news__slider .slider__controller .controller__line {
    width: 100%;
  }
}
.bm_home .content .all-news__slider .slider__controller .controller__line .line {
  z-index: 2;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.25);
  position: relative;
}
.bm_home .content .all-news__slider .slider__controller .controller__line .line__current {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0px, -50%);
  height: 4px;
  background: var(--bc-2);
  transition: all 500ms ease-out 0.1s;
}
.bm_home .content .all-news__slider .slider__controller .controller__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  width: 25%;
}
@media (max-width: 767px) {
  .bm_home .content .all-news__slider .slider__controller .controller__buttons {
    width: 100%;
    margin-top: 30px;
  }
}
.bm_home .content .all-news__slider .slider__controller .controller__buttons .buttons__slider {
  display: flex;
  margin-right: 30px;
}
.bm_home .content .all-news__slider .slider__controller .controller__buttons .buttons__slider .left,
.bm_home .content .all-news__slider .slider__controller .controller__buttons .buttons__slider .right {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.25);
  cursor: pointer;
  outline: none;
}
.bm_home .content .all-news__slider .slider__controller .controller__buttons .buttons__slider .left:hover,
.bm_home .content .all-news__slider .slider__controller .controller__buttons .buttons__slider .right:hover {
  border-color: var(--bc-2);
}
.bm_home .content .all-news__slider .slider__controller .controller__buttons .buttons__slider .left {
  margin-right: 10px;
}
.bm_home .content .all-news__slider .slider__controller .controller__buttons .buttons__see-more a {
  font-size: 12px;
  font-weight: 300;
  color: black;
}

/* -------------------------- */
/* -------------------------- */
/* ----- ENTITY DESTACADOS EN PORTADA LAYOUT ----- */
/* -------------------------- */
.block-gallery {
  position: unset !important;
}
.block-gallery .content {
  align-items: flex-start !important;
}
.block-gallery .content .carrousel-gallery {
  padding-bottom: 50px;
  margin-top: 115px;
  width: 100%;
  z-index: 2;
}
@media (max-width: 767px) {
  .block-gallery .content .carrousel-gallery {
    margin-top: 0px;
    padding: 0;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .block-gallery .content .carrousel-gallery {
    padding: 50px;
    margin-top: 0px;
  }
}
.block-gallery .content .carrousel-gallery__title {
  position: relative;
  font-size: 52px;
  color: var(--bc-2);
  line-height: 1.23;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .block-gallery .content .carrousel-gallery__title {
    font-size: 30px;
  }
}
.block-gallery .content .carrousel-gallery__title:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
  left: 0;
  width: 2px;
  height: 52px;
  background-color: var(--bc-2);
}
.block-gallery .content .carrousel-gallery__title h3 {
  margin-left: 50px;
}
.block-gallery .content .carrousel-gallery__slider {
  overflow: hidden;
}
.block-gallery .content .carrousel-gallery__slider .slider__items {
  display: flex;
  transition: all 500ms ease-out 0.1s;
}
.block-gallery .content .carrousel-gallery__slider .slider__items .items__item .item__image {
  width: 360px;
  display: flex;
  flex-direction: column;
  margin: 0 5px;
  z-index: 2;
  flex: 0 0 360px;
  transition: all 0.5s ease-in-out 0s;
}
.block-gallery .content .carrousel-gallery__slider .slider__items .items__item .item__image:hover {
  transition: all 0.5s ease-in-out 0s;
  transform: scale(1.1);
}
.block-gallery .content .carrousel-gallery__slider .slider__items .items__item .item__image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.75s ease-in-out 0s;
}
.block-gallery .content .carrousel-gallery__slider .slider__items .items__item .item__content {
  background: white;
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
}
.block-gallery .content .carrousel-gallery__slider .slider__items .items__item .item__content .content__title span {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
}
.block-gallery .content .carrousel-gallery__slider .slider__items .items__item .item__content .content__date {
  flex: 1;
  display: flex;
  align-items: flex-end;
}
.block-gallery .content .carrousel-gallery__slider .slider__items .items__item .item__content .content__date span {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.07;
  color: var(--bc-2);
}
.block-gallery .content .carrousel-gallery__slider .slider__controller {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .block-gallery .content .carrousel-gallery__slider .slider__controller {
    flex-direction: column;
  }
}
.block-gallery .content .carrousel-gallery__slider .slider__controller .controller__paginate {
  z-index: 2;
  width: 5%;
}
@media (max-width: 767px) {
  .block-gallery .content .carrousel-gallery__slider .slider__controller .controller__paginate {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .block-gallery .content .carrousel-gallery__slider .slider__controller .controller__paginate {
    width: 10%;
  }
}
.block-gallery .content .carrousel-gallery__slider .slider__controller .controller__paginate span {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.07;
  letter-spacing: -3px;
}
.block-gallery .content .carrousel-gallery__slider .slider__controller .controller__line {
  width: 70%;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .block-gallery .content .carrousel-gallery__slider .slider__controller .controller__line {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .block-gallery .content .carrousel-gallery__slider .slider__controller .controller__line {
    width: 100%;
  }
}
.block-gallery .content .carrousel-gallery__slider .slider__controller .controller__line .line {
  z-index: 2;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.25);
  position: relative;
}
.block-gallery .content .carrousel-gallery__slider .slider__controller .controller__line .line__current {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0px, -50%);
  height: 4px;
  background: var(--bc-2);
  transition: all 500ms ease-out 0.1s;
}
.block-gallery .content .carrousel-gallery__slider .slider__controller .controller__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  width: 25%;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .block-gallery .content .carrousel-gallery__slider .slider__controller .controller__buttons {
    width: 30%;
  }
}
@media (max-width: 767px) {
  .block-gallery .content .carrousel-gallery__slider .slider__controller .controller__buttons {
    width: 100%;
    margin-top: 30px;
  }
}
.block-gallery .content .carrousel-gallery__slider .slider__controller .controller__buttons .buttons__slider {
  display: flex;
  margin-right: 30px;
}
.block-gallery .content .carrousel-gallery__slider .slider__controller .controller__buttons .buttons__slider .left,
.block-gallery .content .carrousel-gallery__slider .slider__controller .controller__buttons .buttons__slider .right {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.25);
  cursor: pointer;
  outline: none;
}
.block-gallery .content .carrousel-gallery__slider .slider__controller .controller__buttons .buttons__slider .left:hover,
.block-gallery .content .carrousel-gallery__slider .slider__controller .controller__buttons .buttons__slider .right:hover {
  border-color: var(--bc-2);
}
.block-gallery .content .carrousel-gallery__slider .slider__controller .controller__buttons .buttons__slider .left {
  margin-right: 10px;
}
.block-gallery .content .carrousel-gallery__slider .slider__controller .controller__buttons .buttons__see-more a span {
  position: relative;
  font-size: 12px;
  font-weight: 300;
  color: black;
}
.block-gallery .content .carrousel-gallery__slider .slider__controller .controller__buttons .buttons__see-more a span:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: black;
  transition: all 0.15s cubic-bezier(0, 0, 0, 0.54);
  transform: scaleX(0);
}
.block-gallery .content .carrousel-gallery__slider .slider__controller .controller__buttons .buttons__see-more a span:hover::after, .block-gallery .content .carrousel-gallery__slider .slider__controller .controller__buttons .buttons__see-more a span.current::after {
  transform: scaleX(1);
}

/* -------------------------- */
.block-quiz {
  min-height: 750px;
}

.check-list {
  margin-top: 100px;
  display: flex;
  flex-wrap: wrap;
}
.check-list__topic {
  width: 85%;
  border-bottom: 1px solid transparent;
  border-left: 1px solid transparent;
}
@media (max-width: 767px) {
  .check-list__topic {
    width: 100%;
  }
}
.check-list__topic:nth-child(odd) {
  background: rgba(190, 46, 45, 0);
}
.check-list__topic:nth-child(3n) {
  border-right: 1px solid transparent;
}
.check-list__topic:nth-child(1), .check-list__topic:nth-child(2), .check-list__topic:nth-child(3) {
  border-top: 1px solid transparent;
}
.check-list__topic:last-child() {
  border-right: 1px solid transparent;
}
.check-list__topic h2 {
  font-size: 30px;
  color: transparent;
}
.check-list__topic .topic__questions {
  display: flex;
  flex-wrap: wrap;
  height: 100vh;
}
.check-list__topic .topic__questions h3 {
  font-family: "Nunito Bold";
  line-height: 1.1em;
  font-weight: normal;
  font-size: 2.5em;
  color: white;
}
@media (min-width: 1200px) and (max-width: 1600px) {
  .check-list__topic .topic__questions h3 {
    font-size: 3.5rem;
  }
}
@media (max-width: 767px) {
  .check-list__topic .topic__questions h3 {
    font-size: 3.5rem;
    line-height: normal;
  }
}
.check-list__topic .topic__questions .answers-wrapper {
  width: 90%;
  display: flex;
  flex-direction: column;
}
.check-list__topic .topic__questions .answers-wrapper.two-answers {
  width: 70%;
}
.check-list__topic .topic__questions .answers-wrapper .answers__content {
  cursor: pointer;
  display: flex;
  flex-direction: row !important;
  justify-content: center;
  background-color: white;
  border-radius: 50px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.check-list__topic .topic__questions .answers-wrapper .answers__content.correct {
  background-color: green !important;
}
.check-list__topic .topic__questions .answers-wrapper .answers__content.incorrect {
  background-color: red !important;
}
.check-list__topic .topic__questions .answers-wrapper .answers__content img {
  width: 100px;
}
.check-list__topic .topic__questions .answers-wrapper .answers__content span {
  padding: 15PX;
  text-align: center;
  border-radius: 60px;
}
.check-list__topic .topic__questions .answers-wrapper .input-hidden {
  display: none;
}
.check-list__topic .topic__questions p {
  font-family: "Nunito Bold";
  font-weight: normal;
  font-size: 1.5em;
  color: white;
}
.check-list__topic .topic__questions h4 {
  font-size: 1.5em;
  text-align: center;
  color: white;
}
.check-list__topic .topic__questions .questions__answers {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  position: absolute;
  top: 0;
  transform: translateX(100%);
  width: 100%;
  gap: 50px;
  margin-top: 140px !important;
}
.check-list__topic .topic__questions .questions__answers .banner {
  margin-top: 70px;
}
.check-list__topic .topic__questions .questions__answers.active {
  position: absolute;
  transform: translateX(-50%) translateY(-50%);
  z-index: 1;
  top: 50%;
  left: 50%;
  text-align: left;
  width: 85%;
  margin: 0 auto;
}
.check-list__topic .topic__questions .questions__answers.correct {
  gap: 150px !important;
  margin-top: 90px !important;
}
.check-list__topic .topic__questions .questions__answers.incorrect {
  gap: 75px !important;
  margin-top: 75px !important;
}
.check-list__topic .topic__questions .questions__answers.win {
  margin-top: 80px !important;
  gap: 0px !important;
}
.check-list__topic .topic__questions .questions__answers.prev {
  transform: translateX(-100%);
  z-index: 1;
}
.check-list__topic .topic__questions .questions__answers label {
  position: relative;
  font-family: "Gotham Book";
  font-weight: normal;
  font-size: 2em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: black;
  background: linear-gradient(-45deg, var(--color-1) 20%, var(--color-2) 80%);
  border-radius: 40px;
}
.check-list__topic .topic__questions .questions__answers label span {
  font-family: "Nunito Bold";
  z-index: 2;
  cursor: pointer;
  font-size: 1.1em;
  line-height: 1em;
}
.check-list__topic .topic__questions .questions__answers label img {
  z-index: 2;
}
.check-list__topic .topic__questions .questions__answers label.two-cols {
  min-width: 350px !important;
}
@media (min-width: 1200px) and (max-width: 1600px) {
  .check-list__topic .topic__questions .questions__answers label {
    font-size: 3rem;
  }
}
.check-list__topic .topic__questions .questions__answers input[type=radio] {
  height: 45px !important;
  width: 45px !important;
  margin-right: 30px;
}
@media (min-width: 1200px) and (max-width: 1600px) {
  .check-list__topic .topic__questions .questions__answers input[type=radio] {
    height: 25px !important;
    width: 25px !important;
  }
}
@media (max-width: 767px) {
  .check-list__topic .topic__questions .questions__answers input[type=radio] {
    height: 35px !important;
    width: 35px !important;
  }
}
.check-list__topic .topic__questions .questions__answers__content {
  width: 70% !important;
  align-items: left;
}
.check-list__topic .topic__questions .questions__answers textarea {
  border: 1px solid transparent;
  background-color: 1px solid transparent;
  padding: 5px;
}
@media (max-width: 767px) {
  .check-list__topic .topic__questions .questions__answers {
    transition: unset;
  }
  .check-list__topic .topic__questions .questions__answers label {
    font-size: 2.5rem;
  }
  .check-list__topic .topic__questions .questions__answers.active {
    width: 80%;
    transition: unset;
  }
  .check-list__topic .topic__questions .questions__answers.prev {
    transition: unset;
  }
}
@media (max-width: 375px) {
  .check-list__topic .topic__questions .questions__answers.active {
    width: 90%;
  }
}

@media (max-width: 767px) {
  .answers__content {
    margin-bottom: 10px;
  }
}

.block-fixed-top {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}
.block-fixed-top.opacity {
  opacity: 0;
}
.block-fixed-top.no-opacity {
  opacity: 1;
  z-index: 2;
  background-size: cover;
}

.buttons__content {
  display: flex;
}

.button-init {
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 50px auto;
}

.button-quizs,
.disabled {
  transition: all 0.5s ease-in-out;
  font-size: 2em;
  font-family: "Roboto Bold";
  padding: 15px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #0B5288;
  background: white;
  text-transform: uppercase;
  border-radius: 0px 30px 0px 30px;
}
@media (max-width: 767px) {
  .button-quizs,
  .disabled {
    margin: 35px auto;
  }
  .button-quizs:hover,
  .disabled:hover {
    transition: unset;
  }
}

.disabled {
  cursor: default;
  opacity: 0;
}

.correct_answers {
  text-align: center;
}

@media (min-width: 1200px) and (max-width: 1600px) {
  .button-init-quiz {
    margin: 5px auto;
  }
}

.close {
  position: absolute;
  opacity: 0;
}

.close:before, .close:after {
  position: absolute;
  left: 21px;
  top: -24px;
  content: " ";
  height: 49px;
  width: 2px;
  background-color: white;
}

.close:before {
  transform: rotate(45deg);
}

.close:after {
  transform: rotate(-45deg);
}

.selected .close {
  opacity: 1 !important;
}

.age_container {
  display: flex;
  justify-content: center;
}
.age_container .inner_container {
  background-color: white;
  height: 400px;
  width: 600px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  color: black;
}
.age_container .inner_container p {
  font-family: "Nunito Bold";
  font-size: 1.5em;
}
.age_container .inner_container .buttons_container {
  display: flex;
  justify-content: space-around;
}
.age_container .inner_container .buttons_container .age_button {
  font-family: "Nunito Bold";
  color: white;
  background-color: #0B5288;
  border-radius: 15px;
  width: 200px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-weight: bold;
  font-size: 5em;
}

.age_modal,
.email-modal,
.time-modal {
  font-family: "Nunito Bold" !important;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
}
.age_modal .modal_container,
.email-modal .modal_container,
.time-modal .modal_container {
  color: black;
  background-color: white;
  border-radius: 15px;
  width: 600px;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 20px;
}
.age_modal .modal_container a,
.email-modal .modal_container a,
.time-modal .modal_container a {
  align-self: flex-end;
  color: white;
  background-color: black;
  padding: 5px 10px;
  border-radius: 10px;
  cursor: pointer;
}
.age_modal .modal_container p,
.email-modal .modal_container p,
.time-modal .modal_container p {
  font-family: "Nunito Bold" !important;
}

.question-info {
  align-self: flex-start;
}
.question-info .circles {
  display: flex;
}
.question-info .circles div {
  width: 40px;
  height: 40px;
  background-size: contain;
}
.question-info .circles div.active {
  background-image: url("https://quiz.alimerka.neozinkdevs.com/resources/quiz/tracking/00-tracking-azul.png");
}
.question-info .circles div.correct {
  background-image: url("https://quiz.alimerka.neozinkdevs.com/resources/quiz/tracking/00-tracking-verde.png");
}
.question-info .circles div.incorrect {
  background-image: url("https://quiz.alimerka.neozinkdevs.com/resources/quiz/tracking/00-tracking-rojo.png");
}
.question-info .circles div.empty {
  background-image: url("https://quiz.alimerka.neozinkdevs.com/resources/quiz/tracking/00-tracking-gris.png");
}

.last-step-container {
  display: flex;
  flex-direction: column;
}
.last-step-container h3, .last-step-container p {
  color: white !important;
  text-align: center;
}
.last-step-container h3 {
  font-size: 2em !important;
}

.circle-container {
  position: relative;
  width: 100px;
  height: 100px;
}
.circle-container .progress-circle {
  width: 100px;
  height: 100px;
  transform: rotate(-90deg);
}
.circle-container .circle-bg {
  fill: none;
  stroke: #eee;
  stroke-width: 3.8;
}
.circle-container .circle {
  fill: none;
  stroke-width: 3.8;
  stroke: #4caf50;
  stroke-linecap: round;
  stroke-dasharray: 100, 100;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1s linear;
}
.circle-container .time {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5em;
  font-weight: bold;
  color: white;
}

.text {
  font-family: "Nunito Bold" !important;
}

input.email {
  background: white !important;
  border: 2px solid white !important;
  border-radius: 15px !important;
  color: black !important;
}

.legal-check p,
.legal_info {
  color: black !important;
}

.form-block--legal {
  display: flex;
  flex-direction: column;
}
.form-block--legal .legal-div {
  display: flex;
  align-items: center;
}
.form-block--legal .legal-div label {
  color: white !important;
}
.form-block--legal .legal-div label span {
  border-bottom: 1px solid white;
}
.form-block--legal .legal-div input {
  border: 2px solid white !important;
}

.form-block .email {
  width: 375px !important;
}

.list-block {
  padding-top: var(--space-l);
  padding-bottom: var(--space-xxl);
  margin: auto;
  max-width: var(--content-medium-width);
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}
@media (max-width: 767px) {
  .list-block {
    display: flex;
    flex-direction: column;
    max-width: 90%;
  }
}
.list-block .model {
  position: relative;
  height: 100%;
  min-height: 250px;
  overflow: hidden;
}
.list-block .model .model-image {
  position: absolute;
  height: 100%;
}
.list-block .model .model-image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  transition: all 1s ease-out;
}
.list-block .model a:hover img {
  transform: scale(1.1);
}
.list-block .model .model-info {
  position: absolute;
  top: 50%;
  padding: var(--space-m);
  z-index: 30;
}
.list-block .model .model-info p {
  color: white;
}
.list-block .model:nth-child(1) {
  grid-row: 1/3;
  height: 100%;
}
.list-block .model:nth-child(2) {
  grid-column: 2/4;
  grid-row: 1/2;
}
.list-block .model:nth-child(3) {
  grid-column: 2/4;
  grid-row: 2/3;
}
.list-block .model:nth-child(4) {
  grid-row: 1/3;
  height: 100%;
}
.list-block .model:nth-child(5) {
  grid-row: 3/4;
  grid-column: 1/3;
}
.list-block .model:nth-child(6) {
  grid-row: 4/5;
  grid-column: 1/3;
}
.list-block .model:nth-child(7) {
  grid-row: 3/5;
}
.list-block .model:nth-child(8) {
  grid-row: 3/5;
}

.list-categories {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: center;
  padding-top: var(--space-l);
}
@media (max-width: 767px) {
  .list-categories {
    flex-direction: column;
    align-items: center;
  }
}
.list-categories span {
  margin: 20px;
  cursor: pointer;
  position: relative;
}
@media (max-width: 767px) {
  .list-categories span {
    margin: 5px;
  }
}
.list-categories span::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--bc-1);
  transition: all 0.15s cubic-bezier(0, 0, 0, 0.54);
  transform: scaleX(0);
}
.list-categories span.active {
  font-size: smaller;
}
.list-categories span.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--bc-1);
  transform: scaleX(1);
}
.list-categories span:hover::after {
  transform: scaleX(1);
}

.top-models-section {
  text-align: center;
  padding-top: var(--space-xl);
  color: var(--bc-1);
}

.promotions-block {
  padding-top: var(--space-xxl);
  padding-bottom: var(--space-xxl);
  margin: auto;
  max-width: var(--content-medium-width);
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .promotions-block {
    max-width: 90%;
  }
}
.promotions-block .promotion {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-bottom: var(--space-xxl);
}
@media (max-width: 767px) {
  .promotions-block .promotion {
    grid-template-columns: 1fr;
  }
}
.promotions-block .promotion .promotion-info {
  box-shadow: 10px 10px 5px 0px #bdbdbd;
  padding: calc(var(--space-xl) * 1);
}
.promotions-block .promotion .promotion-info .offer,
.promotions-block .promotion .promotion-info .description {
  padding-bottom: var(--space-l);
}
@media (max-width: 767px) {
  .promotions-block .promotion .promotion-info .offer .headline-font {
    font-size: 20px;
  }
}
.promotions-block .promotion .promotion-info .description {
  max-width: 80%;
}
@media (max-width: 767px) {
  .promotions-block .promotion .promotion-info .description {
    max-width: 100%;
  }
}
.promotions-block .promotion .promotion-info .description .subtitle-font:first-child() {
  padding-bottom: var(--space-m);
}
.promotions-block .promotion .promotion-image img {
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .promotions-block .promotion .promotion-image img {
    height: 300px;
  }
}
.promotions-block .promotion.left-image .promotion-image {
  grid-column: 2/3;
}
@media (max-width: 767px) {
  .promotions-block .promotion.left-image .promotion-image {
    grid-column: 1/3;
  }
}
.promotions-block .promotion.left-image .promotion-info {
  grid-column: 1/2;
  grid-row: 1;
  box-shadow: unset;
  background-color: var(--dark-grey);
}
@media (max-width: 767px) {
  .promotions-block .promotion.left-image .promotion-info {
    grid-column: 1/3;
    grid-row: 2;
  }
}

.cm_custom2 h2 {
  max-width: 63%;
  padding: var(--space-xl);
}
@media (max-width: 767px) {
  .cm_custom2 h2 {
    max-width: 100%;
  }
}
.cm_custom2 .related-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 767px) {
  .cm_custom2 .related-block {
    max-width: 100%;
    grid-template-columns: 1fr;
  }
}
.cm_custom2 .related-block .model {
  display: grid;
  grid-template-rows: 1fr 0.4fr;
}
.cm_custom2 .related-block .model .model-image {
  max-height: 375px;
}
@media (max-width: 767px) {
  .cm_custom2 .related-block .model .model-image {
    max-height: 280px;
  }
}
.cm_custom2 .related-block .model .model-image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cm_custom2 .related-block .model .model-info {
  padding: var(--space-xl);
  box-shadow: 0 16px 24px 0 rgba(0, 0, 0, 0.1), 0 0 8px 2px rgba(0, 0, 0, 0.03);
}
.cm_custom2 .related-block .model .model-info p {
  text-align: center;
  color: var(--green);
}

.lds-circle {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 3;
  background: rgba(255, 255, 255, 0.6196078431);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lds-circle.hidden {
  display: none;
}

.lds-circle > div {
  display: inline-block;
  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  background: #1576BB;
  animation: lds-circle 2.4s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

@keyframes lds-circle {
  0%, 100% {
    animation-timing-function: cubic-bezier(0.5, 0, 1, 0.5);
  }
  0% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(1800deg);
    animation-timing-function: cubic-bezier(0, 0.5, 0.5, 1);
  }
  100% {
    transform: rotateY(3600deg);
  }
}
.alert-modal.hidden {
  display: none;
}

.alert-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 3;
  background: rgba(255, 255, 255, 0.6196078431);
}
.alert-modal .content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 250px;
  border: solid 1px #1576BB;
  border-radius: 5px;
  z-index: 10;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  padding: 20px;
  text-align: center;
  font-weight: 200;
}
.alert-modal .content p {
  font-weight: 300;
}
.alert-modal .content button {
  border: 2px solid #0081C6;
  background: #1576BB;
  color: white;
  padding: 10px 50px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1em;
  margin: 10px;
}

.zindex-2 {
  z-index: 2;
}

.politics {
  width: 100%;
  align-items: center;
  justify-content: center;
  display: flex;
  position: fixed;
  bottom: 0;
  height: 4vh;
  background-color: rgba(100, 100, 100, 0.7);
}

.politics a {
  color: white;
  font-weight: 700;
}

.privacity-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 12;
  background-color: rgba(100, 100, 100, 0.7);
}

.privacity-modal .content {
  font-family: "Gotham Book";
  color: black;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 650px !important;
  border: solid 2px black;
  border-radius: 5px;
  z-index: 10;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  font-weight: 200;
}
@media (max-width: 767px) {
  .privacity-modal .content {
    width: auto;
    height: auto;
    font-size: 0.8em;
  }
  .privacity-modal .content .content {
    width: auto;
    height: auto;
    font-size: 0.7em;
  }
}

.privacity-modal .content .close-modal {
  font-size: 1.5em;
  font-family: "Gotham Light";
  font-weight: normal;
  color: black;
  padding: 0px 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 50px auto;
  cursor: pointer;
  border: 2px solid black;
  background: transparent;
  border-radius: 50px;
}

.open-modal {
  cursor: pointer;
}

.open-modal:hover {
  color: #1576BB !important;
  font-weight: 700 !important;
}

.privacity-modal .content .privacity__title {
  font-family: "Gotham Bold";
  font-size: 1.5em;
  text-align: center;
}

.privacity-modal .content .privacity__content {
  text-align: left;
  padding: 10px;
}

.privacity-modal .content .privacity__content p {
  font-weight: normal;
  font-size: 0.8em;
  margin: 0px;
  margin-bottom: 5px;
}

.privacity-modal .content .privacity__content strong {
  font-weight: bold;
}

.privacity-modal .content .privacity__content a {
  color: #1576BB;
}

.hidden {
  display: none;
}

/* ---------------------------------- */
/* ---------------------------------- */
/* ------ PAGE SPECIFIC STYLES ------ */
/* ---------------------------------- */
/* -------------------------- */
/* ----- BLOCKS LAYOUT ------ */
/* -------------------------- */
.blocks {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  background-color: var(--bg-color);
}
.blocks .grid__item .block {
  position: relative;
  display: flex;
  align-self: stretch;
  flex: 1;
  width: 100%;
  height: 100%;
  padding: 0;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .blocks .grid__item .block {
    min-height: 0;
  }
}
.blocks .grid__item .block__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.blocks .grid__item .block__cup {
  position: absolute;
  right: 0;
  top: var(--space-xxl);
}
.blocks .grid__item .block .content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: left;
  width: 100%;
}
@media (max-width: 767px) {
  .blocks .grid__item .block .content {
    padding: 0;
  }
}
.blocks .grid__item .block .content--item {
  display: flex;
}
.blocks .grid__item .block .content--item.items-center {
  justify-content: center;
}
.blocks .grid__item .block .content--item.full-centered {
  align-items: center;
}
.blocks .grid__item .block .content.items-start {
  justify-content: flex-start;
}
.blocks .grid__item .block .content.items-center {
  justify-content: center;
}
.blocks .grid__item .block .content.items-end {
  justify-content: flex-end;
}
.blocks .grid__item .block .bg-image,
.blocks .grid__item .block .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: var(--z-index-background);
  width: 100%;
  height: 100%;
  background-size: cover;
}
.blocks .grid__item .block .bg-image.fixed,
.blocks .grid__item .block .bg-video.fixed {
  background-attachment: fixed;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .blocks .grid__item .block .bg-image.fixed,
  .blocks .grid__item .block .bg-video.fixed {
    background-attachment: scroll;
  }
}
.blocks .grid__item .block.bg--height-1-2 .block__bg {
  transform: scaleY(1.2);
  transform-origin: top;
}
.blocks .grid__item .block.bg--height-medium-bottom .block__bg {
  height: 40%;
  bottom: 0;
  top: unset;
}
.blocks .grid__item .block.bg--height-65 .block__bg {
  height: 65%;
}
@media (min-width: $design-breakpoint,) {
  .blocks .grid__item .block.bg--left .block__bg {
    left: -33%;
  }
  .blocks .grid__item .block.bg--bottom .block__bg {
    top: 18%;
  }
  .blocks .grid__item .block.bg--right .block__bg {
    right: -33%;
    left: auto;
  }
  .blocks .grid__item .block.bg--right-small .block__bg {
    right: -23%;
    left: auto;
  }
  .blocks .grid__item .block.bg--height-double .block__bg {
    transform: scaleY(2);
    transform-origin: bottom;
  }
  .blocks .grid__item .block.bg--height-1-5 .block__bg {
    transform: scaleY(1.5);
  }
}
.blocks .grid__item .block.bg-mid-wh.bg--light-blue .block__bg {
  background-color: #f2fafd;
  top: unset;
  left: unset;
  bottom: 0;
  right: 0;
  width: 60%;
  height: 50%;
}
.blocks .grid__item .block--width-fit-content .content {
  width: -moz-fit-content;
  width: fit-content;
}
.blocks .grid__item .block--wrapped .content {
  max-width: var(--content-min-width);
  margin: 0 auto;
}
@media (max-width: 1000px,) {
  .blocks .grid__item .block--wrapped .content {
    padding-left: var(--space-l);
    padding-right: var(--space-l);
  }
}
@media (max-width: $padding-breakpoint,) {
  .blocks .grid__item .block--wrapped .content {
    padding-left: var(--space-m);
    padding-right: var(--space-m);
  }
}
@media (max-width: 767px) {
  .blocks .grid__item .block--wrapped .content {
    padding-left: 0;
    padding-right: 0;
  }
}
.blocks .grid__item .block--wrapped-medium .content {
  max-width: var(--content-medium-width);
  margin: 0 auto;
}
@media (max-width: 1400px,) {
  .blocks .grid__item .block--wrapped-medium .content {
    padding-left: var(--space-l);
    padding-right: var(--space-l);
  }
}
@media (max-width: $padding-breakpoint,) {
  .blocks .grid__item .block--wrapped-medium .content {
    padding-left: var(--space-m);
    padding-right: var(--space-m);
  }
}
.blocks .grid__item .block--wrapped-max .content {
  max-width: var(--content-max-width);
  margin: 0 auto;
}
@media (max-width: 1700px,) {
  .blocks .grid__item .block--wrapped-max .content {
    padding-left: var(--space-l);
    padding-right: var(--space-l);
  }
}
@media (max-width: $padding-breakpoint,) {
  .blocks .grid__item .block--wrapped-max .content {
    padding-left: var(--space-m);
    padding-right: var(--space-m);
  }
}
@media (min-width: 1024px,) {
  .blocks .grid__item .block--no-padding-top-desktop-block {
    padding-top: 0;
  }
}
@media (min-width: 1024px,) {
  .blocks .grid__item .block--no-padding-top-desktop .content {
    padding-top: 0;
  }
}
@media (max-width: $design-breakpoint,) {
  .blocks .grid__item .block--brown-mobile .text span {
    color: var(--brown) !important;
  }
  .blocks .grid__item .block--white-mobile .text span {
    color: var(--white) !important;
  }
}
@media (min-width: $design-breakpoint,) {
  .blocks .grid__item .block--xl-padding-top .content {
    padding-top: var(--space-xl);
  }
  .blocks .grid__item .block--xl-padding-bottom .content {
    padding-bottom: var(--space-xl);
  }
  .blocks .grid__item .block--xxl-padding-top .content {
    padding-top: var(--space-xxl);
  }
  .blocks .grid__item .block--xxl-padding-bottom .content {
    padding-bottom: var(--space-xxl);
  }
  .blocks .grid__item .block--no-padding .content {
    padding: 0;
  }
  .blocks .grid__item .block--no-padding-top .content {
    padding-top: 0;
  }
  .blocks .grid__item .block--no-padding-left .content {
    padding-left: 0;
  }
  .blocks .grid__item .block--no-padding-right .content {
    padding-right: 0;
  }
  .blocks .grid__item .block--no-padding-bottom .content {
    padding-bottom: 0;
  }
  .blocks .grid__item .block--no-padding-top-block {
    padding-top: 0;
  }
  .blocks .grid__item .block--no-padding-left-block {
    padding-left: 0;
  }
  .blocks .grid__item .block--no-padding-right-block {
    padding-right: 0;
  }
  .blocks .grid__item .block--no-padding-bottom-block {
    padding-bottom: 0;
  }
  .blocks .grid__item .block--xxl-padding-left .content {
    padding-left: var(--space-xxl);
  }
  .blocks .grid__item .block--xxl-padding-right .content {
    padding-right: var(--space-xxl);
  }
  .blocks .grid__item .block--xxl-padding-bottom .content {
    padding-bottom: var(--space-xxl);
  }
  .blocks .grid__item .block--xxl-padding-bottom-half .content {
    padding-bottom: calc(var(--space-xxl) * 1.5);
  }
  .blocks .grid__item .block--2xxl-padding-top .content {
    padding-top: calc(var(--space-xxl) * 2);
  }
  .blocks .grid__item .block--2xxl-padding-bottom .content {
    padding-bottom: calc(var(--space-xxl) * 2);
  }
  .blocks .grid__item .block--2xxl-padding-left .content {
    padding-left: calc(var(--space-xxl) * 2);
  }
  .blocks .grid__item .block--2xxl-padding-right .content {
    padding-right: calc(var(--space-xxl) * 2);
  }
  .blocks .grid__item .block--margin-right-auto .content {
    margin-right: auto;
    margin-left: 0;
  }
  .blocks .grid__item .block--margin-left-auto .content {
    margin-left: auto;
    margin-right: 0;
  }
  .blocks .grid__item .block--margin-right-l .content {
    margin-right: var(--space-l);
  }
  .blocks .grid__item .block--margin-left-l .content {
    margin-left: var(--space-l);
  }
  .blocks .grid__item .block--margin-left-xl .content {
    margin-left: var(--space-xl);
  }
  .blocks .grid__item .block--margin-right-xl .content {
    margin-right: var(--space-xl);
  }
  .blocks .grid__item .block--margin-left-xxl .content {
    margin-left: var(--space-xxl);
  }
  .blocks .grid__item .block--margin-right-xxl .content {
    margin-right: var(--space-xxl);
  }
  .blocks .grid__item .block--margin-left-2xxl .content {
    margin-left: calc(var(--space-xxl) * 2);
  }
  .blocks .grid__item .block--margin-right-2xxl .content {
    margin-right: calc(var(--space-xxl) * 2);
  }
  .blocks .grid__item .block--moved-top .content {
    margin-top: calc(-1 * var(--space-xl));
  }
  .blocks .grid__item .block--moved-top-xxl-half .content {
    margin-top: calc(-0.5 * var(--space-xxl));
  }
  .blocks .grid__item .block--moved-top-xxl .content {
    margin-top: calc(-1 * var(--space-xxl));
  }
  .blocks .grid__item .block--moved-top-2xxl .content {
    margin-top: calc(-2 * var(--space-xxl));
  }
  .blocks .grid__item .block--moved-top-3xxl .content {
    margin-top: calc(-3 * var(--space-xxl));
  }
}
@media (min-width: $design-breakpoint,) and (max-width: 1600px,) {
  .blocks .grid__item .block--moved-top-2xxl-hd-laptop .content {
    margin-top: calc(-2 * var(--space-xxl));
  }
}
@media (min-width: $design-breakpoint,) and (max-width: 1300px,) {
  .blocks .grid__item .block--moved-top-xxl-laptop .content {
    margin-top: calc(-1 * var(--space-xxl));
  }
}
@media (min-width: $design-breakpoint,) {
  .blocks .grid__item .block--moved-bottom .content {
    margin-bottom: calc(-1 * var(--space-xl));
  }
  .blocks .grid__item .block--moved-bottom-xxl-half .content {
    margin-bottom: calc(-0.5 * var(--space-xxl));
  }
  .blocks .grid__item .block--moved-bottom-xxl .content {
    margin-bottom: calc(-1 * var(--space-xxl));
  }
  .blocks .grid__item .block--moved-bottom-2xxl .content {
    margin-bottom: calc(-2 * var(--space-xxl));
  }
  .blocks .grid__item .block--moved-bottom-3xxl .content {
    margin-bottom: calc(-3 * var(--space-xxl));
  }
  .blocks .grid__item .block--moved-left .content {
    margin-left: calc(-1 * var(--space-xl));
  }
  .blocks .grid__item .block--moved-left-xxl-half .content {
    margin-left: calc(-0.5 * var(--space-xxl));
  }
  .blocks .grid__item .block--moved-left-xxl .content {
    margin-left: calc(-1 * var(--space-xxl));
  }
  .blocks .grid__item .block--moved-left-2xxl .content {
    margin-left: calc(-2 * var(--space-xxl));
  }
  .blocks .grid__item .block--moved-right .content {
    margin-right: calc(-1 * var(--space-xl));
  }
  .blocks .grid__item .block--moved-right-xxl-half .content {
    margin-right: calc(-0.5 * var(--space-xxl));
  }
  .blocks .grid__item .block--moved-right-xxl .content {
    margin-right: calc(-1 * var(--space-xxl));
  }
  .blocks .grid__item .block--moved-right-2xxl .content {
    margin-right: calc(-2 * var(--space-xxl));
  }
  .blocks .grid__item .block--negative-margin-bottom {
    margin-bottom: -90px;
  }
}
@media (max-width: 767px) {
  .blocks .grid__item .block--xl-padding-top .content {
    padding-top: var(--space-l);
  }
  .blocks .grid__item .block--xl-padding-bottom .content {
    padding-bottom: var(--space-l);
  }
  .blocks .grid__item .block--xxl-padding-top .content {
    padding-top: var(--space-xl);
  }
  .blocks .grid__item .block--xxl-padding-bottom .content {
    padding-bottom: var(--space-xl);
  }
}
.blocks .grid__item .block.fourth-max-width {
  max-width: 75%;
  margin: 0 auto;
}
@media (max-width: 500px,) {
  .blocks .grid__item .block.fourth-max-width {
    max-width: 100%;
  }
}
.blocks .grid__item .block .content--image-align-start .flex-content .image {
  justify-content: flex-start;
}
.blocks .grid__item .block .content--padding-right-xl {
  padding-right: var(--space-xl);
}
@media (max-width: 600px,) {
  .blocks .grid__item .block .content--padding-right-xl {
    padding-right: 0;
  }
}
.blocks .grid__item .block .content--text-padding-left-xl .flex-content .text {
  padding-left: var(--space-xl);
}
@media (max-width: 780px,) {
  .blocks .grid__item .block .content--text-padding-left-xl .flex-content .text {
    padding-left: 0;
  }
}
@media (max-width: 1200px,) {
  .blocks .grid__item .block .content--margin-bottom-mobile-xl {
    margin-bottom: var(--space-xl);
  }
}
.blocks .grid__item .block .content.grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}
.blocks .grid__item .block.articles_small_six .content, .blocks .grid__item .block.articles_small_four .content {
  display: grid;
  grid-template-columns: 2fr 1fr;
}
.blocks .grid__item .block.articles_small_six .content .text, .blocks .grid__item .block.articles_small_four .content .text {
  padding-left: var(--space-xl);
  grid-column-start: 2 !important;
  grid-row-start: 1;
}
.blocks .grid__item .block.articles_small_four .content {
  grid-template-columns: 1fr 2fr;
}
.blocks .grid__item .block.articles_small_four .content .text {
  padding-right: var(--space-xl);
  grid-column-start: 1 !important;
  grid-row-start: 1;
}
@media (max-width: 768px,) {
  .blocks .grid__item .block.articles_small_six .content, .blocks .grid__item .block.articles_small_four .content {
    grid-template-columns: 1fr;
    row-gap: var(--space-xl);
  }
}
@media (max-width: 768px,) {
  .blocks .grid__item .block.articles_small_six .content .text, .blocks .grid__item .block.articles_small_four .content .text {
    padding: 0;
    grid-column-start: 1 !important;
  }
}
.blocks .grid__item .block.car-configurator .content .flex-content {
  grid-template-columns: 0.5fr 1fr;
}
.blocks .grid__item .block.car-configurator .content .flex-content .image {
  padding: var(--space-xl);
}
.blocks .grid__item .block.block--logo-skoda .content .image {
  padding: var(--space-xxl);
}
@media (max-width: 767px) {
  .blocks .grid__item .block.block--logo-skoda .content .image {
    padding: var(--space-xl);
  }
}
.blocks .grid__item .block.our-concessionaire .content .flex-content {
  gap: 0px;
}
.blocks .grid__item .block.our-concessionaire .content .flex-content .text {
  padding: var(--space-xxl);
}
@media (max-width: 767px) {
  .blocks .grid__item .block.our-concessionaire .content .flex-content .text {
    padding: calc(var(--space-xl) * 1);
  }
}
.blocks .grid__item .block.our-concessionaire .display-m,
.blocks .grid__item .block.our-concessionaire .display-s {
  margin-bottom: var(--space-l);
}
.blocks .grid__item .block.our-concessionaire .block-text-image__content {
  box-shadow: 0 16px 24px 0 rgba(0, 0, 0, 0.1), 0 0 8px 2px rgba(0, 0, 0, 0.03);
}
.blocks .grid__item .block.our-concessionaire.block--post-sell .flex-content {
  grid-template-columns: 1.8fr 1fr;
}
.blocks .grid__item .block.our-concessionaire.block--post-sell .flex-content .text {
  padding: var(--space-xl);
}
.blocks .grid__item .block.our-concessionaire.block--post-sell .flex-content .button-block {
  margin-top: 0;
  padding: var(--space-l);
}
.blocks .grid__item .block.image-contain .content img {
  -o-object-fit: contain;
     object-fit: contain;
}
.blocks .grid__item .block.image-contain .display-m,
.blocks .grid__item .block.image-contain .display-s {
  margin-bottom: var(--space-l);
}
.blocks .grid__item .block.block--model-grey .content .flex-content {
  gap: 0;
}
.blocks .grid__item .block.block--model-grey .content .block-text-image__content {
  background-color: var(--dark-grey);
  padding: var(--space-xxl);
}
@media (max-width: 767px) {
  .blocks .grid__item .block.block--model-grey .content .block-text-image__content {
    padding: calc(var(--space-xl) * 1);
  }
}
.blocks .grid__item .block.block--model-grey .display-m,
.blocks .grid__item .block.block--model-grey .display-s {
  margin-bottom: var(--space-l);
}
.blocks .grid__item .block.block--model-white .content .flex-content {
  gap: 0;
}
.blocks .grid__item .block.block--model-white .content .block-text-image__content {
  background-color: var(--white);
  padding: var(--space-xxl);
}
@media (max-width: 767px) {
  .blocks .grid__item .block.block--model-white .content .block-text-image__content {
    padding: calc(var(--space-xl) * 1);
  }
}
.blocks .grid__item .block.block--model-white .display-m,
.blocks .grid__item .block.block--model-white .display-s {
  margin-bottom: var(--space-l);
}
.blocks .grid__item .block.block--gallery-promotion .content .gallery .thumbs {
  grid-template-rows: 1fr 1fr;
  height: 500px;
  gap: 20px;
}
@media (max-width: 767px) {
  .blocks .grid__item .block.block--gallery-promotion .content .gallery .thumbs {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    height: 630px;
  }
  .blocks .grid__item .block.block--gallery-promotion .content .gallery .thumbs .thumb {
    height: 500px;
  }
}
.blocks .grid__item .block.block--gallery-promotion .content .gallery .thumbs .thumb {
  background-size: cover;
  box-shadow: 0 16px 24px 0 rgba(0, 0, 0, 0.1), 0 0 8px 2px rgba(0, 0, 0, 0.03);
}
.blocks .grid__item .block.block--gallery-promotion .content .gallery .thumbs .thumb:nth-child(1) {
  grid-row: 1/3;
  grid-column: 1/2;
}
.blocks .grid__item .block.block--gallery-promotion .content .gallery .thumbs .thumb:nth-child(2) {
  grid-row: 1/2;
  grid-column: 2/4;
}
.blocks .grid__item .block.block--gallery-promotion .content .gallery .thumbs .thumb:nth-child(3) {
  grid-row: 2/3;
  grid-column: 2/4;
}
.blocks .grid__item .block.block--gallery-promotion .content .gallery .thumbs .thumb:nth-child(4) {
  grid-row: 1/3;
  grid-column: 4/5;
}
.blocks .grid__item .block.block--car-meet .content .text {
  width: 40%;
  margin: auto;
  padding-bottom: var(--space-xl);
}
@media (max-width: 767px) {
  .blocks .grid__item .block.block--car-meet .content .text {
    width: 90%;
  }
}
.blocks .grid__item .block.block--car-meet .content .multiple--featured.items--2 .multiple__item {
  width: unset;
  box-shadow: 0 16px 24px 0 rgba(0, 0, 0, 0.1), 0 0 8px 2px rgba(0, 0, 0, 0.03);
}
.blocks .grid__item .block.block--car-meet .content .multiple--featured.items--2 .multiple__item .headline-font {
  width: 40%;
  margin-bottom: var(--space-m);
  text-align: left;
  margin-right: auto;
}
.blocks .grid__item .block.block--car-meet .content .multiple--featured.items--2 .multiple__item li {
  font-family: var(--subtitle-ff);
  font-size: var(--subtitle-fs);
  font-weight: var(--subtitle-fw);
  line-height: var(--subtitle-lh);
  color: black;
  margin-left: var(--space-m);
}
.blocks .grid__item .block.block--car-meet .content .multiple--featured.items--2 .multiple__item .serie-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 767px) {
  .blocks .grid__item .block.block--car-meet .content .multiple--featured.items--2 .multiple__item .serie-features {
    display: flex;
    flex-direction: column;
  }
}
.blocks .grid__item .block.block--car-meet .content .multiple--featured.items--2 .multiple__item img {
  height: 130px;
  position: absolute;
  right: 10%;
  top: -3%;
}
.blocks .grid__item .block.block--form-section.form-green .text .display-m {
  color: white;
}
.blocks .grid__item .block.block--form-section.form-green form .form-block::after {
  background-color: white;
}
.blocks .grid__item .block.block--form-section.form-green form button.submit {
  padding: 17px 33px 17px 33px;
  border-radius: 25px;
  border: solid 1px var(--fills-white-default);
}
.blocks .grid__item .block.block--form-section.form-green form button.submit span {
  font-size: 13px;
}
.blocks .grid__item .block.block--form-section.form-green form button.submit:hover {
  background-color: white;
}
.blocks .grid__item .block.block--form-section.form-green form button.submit:hover span {
  color: var(--green);
}
.blocks .grid__item .block.block--form-section .display-m {
  max-width: 40%;
  text-align: end;
  color: var(--green);
  margin-left: auto;
}
@media (max-width: 767px) {
  .blocks .grid__item .block.block--form-section .display-m {
    max-width: 70%;
    padding-right: 10%;
  }
}
.blocks .grid__item .block.block--form-section form label {
  color: black;
}
.blocks .grid__item .block.block--form-section form .form-block::after {
  background-color: var(--green);
}
.blocks .grid__item .block.block--form-section button.submit {
  padding: 17px 33px 17px 33px;
  border-radius: 25px;
  border: solid 1px var(--green);
  background-color: var(--green);
}
.blocks .grid__item .block.block--form-section button.submit span {
  font-size: 13px;
  color: white;
}
.blocks .grid__item .block.block--form-section button.submit:hover {
  background-color: white;
}
.blocks .grid__item .block.block--form-section button.submit:hover span {
  color: var(--green);
}
.blocks .grid__item .block.block--horarios .content .multiple__icon {
  display: none;
}
.blocks .grid__item .block.block--horarios .content .multiple__item {
  box-shadow: 0 16px 24px 0 rgba(0, 0, 0, 0.1), 0 0 8px 2px rgba(0, 0, 0, 0.03);
}
.blocks .grid__item .block.block--horarios .content .multiple__item .multiple__content {
  padding: var(--space-xl);
  margin-top: 0;
  margin-bottom: var(--space-m);
}
.blocks .grid__item .block.block--horarios .content .multiple__item .multiple__content .headline-font {
  text-align: left;
  width: 100%;
  padding-bottom: var(--space-m);
}
.blocks .grid__item .block.block--horarios .content .multiple__item .multiple__content .subtitle-font {
  width: 100%;
  text-align: left;
}
@media (max-width: 767px) {
  .blocks .grid__item .block.block--horarios .content .multiple {
    max-width: 90%;
    margin: auto;
  }
}
.blocks .grid__item .block.block--visit .content .image img {
  height: 650px;
}
.blocks .grid__item .block.block--visit .content .text .display-s {
  margin-bottom: var(--space-l);
  max-width: 50%;
}
.blocks .grid__item .block.block--visit .content .visit-us {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  margin-bottom: var(--space-xl);
}
.blocks .grid__item .block.block--visit .content .visit-us .subtitle-font {
  margin-bottom: var(--space-s);
  font-weight: bold;
}
.blocks .grid__item .block.block--visit .content .visit-us div {
  padding-left: var(--space-m);
  position: relative;
}
.blocks .grid__item .block.block--visit .content .visit-us div::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 2px;
  background-color: var(--green);
  left: 0;
}
.blocks .grid__item .block.block--visit.block--no-image-visit .text {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 767px) {
  .blocks .grid__item .block.block--visit.block--no-image-visit .text {
    display: flex;
    flex-direction: column;
  }
}
.blocks .grid__item .block.block--visit.block--no-image-visit .visit-us div:first-child() {
  grid-column: 1/3;
}
.blocks .grid__item .block.block--visit.block--no-image-visit .visit-us .title::before {
  display: none;
}
.blocks .grid__item .block.block--visit.block--no-image-visit .visit-us:last-child() div:first-child() {
  grid-column: 1/3;
}
.blocks .grid__item .block.block--extras-car .content .multiple .multiple__item {
  background-color: transparent;
}
.blocks .grid__item .block.block--extras-car .content .multiple .multiple__item .multiple__icon {
  height: 250px;
}
.blocks .grid__item .block.block--extras-car .content .multiple .multiple__item p,
.blocks .grid__item .block.block--extras-car .content .multiple .multiple__item h1,
.blocks .grid__item .block.block--extras-car .content .multiple .multiple__item h2,
.blocks .grid__item .block.block--extras-car .content .multiple .multiple__item h3,
.blocks .grid__item .block.block--extras-car .content .multiple .multiple__item h4 {
  color: black;
}
.blocks .grid__item .block.block--attachs .content {
  padding-top: var(--space-l);
}
.blocks .grid__item .block.block--attachs .headline-font {
  text-align: center;
  padding-bottom: var(--space-xl);
}
.blocks .grid__item .block.block--attachs .pdf-block {
  display: flex;
  background-color: #4a4a4a;
  padding: var(--space-m);
  align-items: center;
}
@media (max-width: 767px) {
  .blocks .grid__item .block.block--attachs .pdf-block {
    flex-direction: column;
  }
  .blocks .grid__item .block.block--attachs .pdf-block img {
    margin-bottom: var(--space-m);
  }
  .blocks .grid__item .block.block--attachs .pdf-block p {
    text-align: center;
  }
  .blocks .grid__item .block.block--attachs .pdf-block .button-block {
    justify-content: center;
    margin: 0;
  }
}
.blocks .grid__item .block.block--attachs .pdf-block img {
  height: 70px;
}
.blocks .grid__item .block.block--attachs .pdf-block .title-font {
  width: 100%;
  align-self: center;
  padding-left: var(--space-xl);
  padding-right: var(--space-xl);
}
.blocks .grid__item .block.block--model-video .content .text {
  text-align: center;
}
.blocks .grid__item .block.block--model-video .content .text .display-m {
  max-width: 37%;
  margin: auto;
  padding-bottom: var(--space-xl);
}
@media (max-width: 767px) {
  .blocks .grid__item .block.block--model-video .content .text .display-m {
    max-width: 90%;
  }
}
.blocks .grid__item .block.block--model-video .content .player {
  max-width: 100%;
}
.blocks .grid__item:first-child {
  height: 100vh;
}
@media (max-width: 767px) {
  .blocks .grid__item:first-child .block {
    margin: 0 !important;
    padding: 0 !important;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .blocks .grid__item:first-child .block {
    margin: 0 !important;
    padding: 0 !important;
  }
}
.blocks--article {
  position: relative;
  background-color: var(--light-grey);
  padding-bottom: var(--space-xxl);
}
@media (max-width: 767px) {
  .blocks--article .grid__item .block {
    max-width: 90%;
    margin: auto !important;
  }
  .blocks--article .grid__item:first-child() .block {
    margin: auto !important;
  }
}
.blocks--article .social-icons {
  text-align: center;
  position: absolute;
  top: -50px;
  height: 50px;
  right: 25%;
  z-index: 2;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
}
@media (max-width: 500px,) {
  .blocks--article .social-icons {
    top: 0px;
    margin-bottom: 10px;
  }
}
.blocks--article .social-icons p {
  margin-bottom: var(--space-m);
}
@media (max-width: 767px) {
  .blocks--article .social-icons p {
    margin-bottom: 0;
  }
}
.blocks--article .social-icons a {
  margin: 0 15px;
  color: white;
  transition: all 0.2s ease-out;
}
.blocks--article .social-icons a:hover {
  color: var(--bc-2);
  transition: all 0.2s ease-out;
}
.blocks--article .block.block-text-image .content {
  max-width: 75%;
  margin: auto;
}
@media (max-width: 768px,) {
  .blocks--article .block.block-text-image .content {
    max-width: 100%;
    margin-left: 0;
  }
}
.blocks--article .block.block-text-image .image img {
  height: 300px;
}
.blocks--article .block.block-text-image .text .body-font, .blocks--article .block.block-text-image .text body, .blocks--article .block.block-text-image .text .form .form-block label, .form .form-block .blocks--article .block.block-text-image .text label, .blocks--article .block.block-text-image .text .form .form-block input[type=text], .form .form-block .blocks--article .block.block-text-image .text input[type=text],
.blocks--article .block.block-text-image .text .form .form-block input[type=textarea],
.form .form-block .blocks--article .block.block-text-image .text input[type=textarea],
.blocks--article .block.block-text-image .text .form .form-block input[type=email],
.form .form-block .blocks--article .block.block-text-image .text input[type=email],
.blocks--article .block.block-text-image .text .form .form-block input[type=tel],
.form .form-block .blocks--article .block.block-text-image .text input[type=tel],
.blocks--article .block.block-text-image .text .form .form-block input[type=number],
.form .form-block .blocks--article .block.block-text-image .text input[type=number],
.blocks--article .block.block-text-image .text .form .form-block input[type=date],
.form .form-block .blocks--article .block.block-text-image .text input[type=date],
.blocks--article .block.block-text-image .text .form .form-block input[type=password],
.form .form-block .blocks--article .block.block-text-image .text input[type=password],
.blocks--article .block.block-text-image .text .form .form-block textarea,
.form .form-block .blocks--article .block.block-text-image .text textarea,
.blocks--article .block.block-text-image .text .form .form-block select,
.form .form-block .blocks--article .block.block-text-image .text select, .blocks--article .block.block-text-image .text .langs a, .langs .blocks--article .block.block-text-image .text a,
.blocks--article .block.block-text-image .text .langs span,
.langs .blocks--article .block.block-text-image .text span, .blocks--article .block.block-text-image .text .article__socials .date p, .article__socials .date .blocks--article .block.block-text-image .text p, .blocks--article .block.block-text-image .text .articles-related .content .articles-wrapper article .article-text p, .articles-related .content .articles-wrapper article .article-text .blocks--article .block.block-text-image .text p {
  font-weight: normal;
}
.blocks--article .block.block-text-image .text p,
.blocks--article .block.block-text-image .text h4 {
  padding-bottom: var(--space-m);
}
.blocks--article .block.block-image .content {
  max-width: 50%;
  margin: auto;
  margin-left: 25%;
}
@media (max-width: 768px,) {
  .blocks--article .block.block-image .content {
    max-width: 100%;
    margin-left: 0;
  }
}
.blocks--article .block.block-image .content .flex-content {
  width: 100%;
}
.blocks--thanks {
  height: 200px;
}
.blocks--legal ul {
  list-style: disc;
  margin-left: var(--space-l);
  margin-top: var(--space-s);
}
.blocks--legal ul li {
  list-style: disc;
}
.blocks.contact .image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: calc(100% - 40px);
  height: 100%;
  background-color: rgba(0, 167, 224, 0.3);
}
.blocks.contact .subtitle {
  position: relative;
  padding-left: 40px;
  font-weight: 700;
}
.blocks.contact .subtitle:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' %3F%3E%3Csvg enable-background='new 0 0 32 32' id='Layer_1' version='1.1' viewBox='0 0 32 32' xml:space='preserve' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg%3E%3Cg%3E%3Cpath d='M16,31.625c-8.615,0-15.625-7.01-15.625-15.625C0.375,7.384,7.385,0.375,16,0.375S31.625,7.384,31.625,16 C31.625,24.615,24.615,31.625,16,31.625z' fill='%23FFFFFF'/%3E%3Cpath d='M16,0.75c8.409,0,15.25,6.841,15.25,15.25S24.409,31.25,16,31.25S0.75,24.409,0.75,16S7.591,0.75,16,0.75 M16,0C7.163,0,0,7.163,0,16c0,8.836,7.163,16,16,16s16-7.164,16-16C32,7.163,24.837,0,16,0L16,0z' fill='%2300a7e0'/%3E%3C/g%3E%3C/g%3E%3Cg id='style_4_1_'%3E%3Cg%3E%3Crect fill='%23004595' height='5.88' transform='matrix(0.7879 -0.6158 0.6158 0.7879 -7.8033 18.273)' width='2.4' x='21.425' y='17.524'/%3E%3Cpath d='M22.513,24.284l-3.621-4.633c0,0-2.361-0.553-4.043-2.704c-1.681-2.151-1.647-4.576-1.647-4.576 L9.581,7.738c0,0-3.431,4.915,1.951,11.801S22.513,24.284,22.513,24.284z' fill='%23004595'/%3E%3Crect fill='%23004595' height='5.88' transform='matrix(0.7879 -0.6158 0.6158 0.7879 -2.4428 10.0124)' width='2.4' x='12.113' y='5.612'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.grid__item {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  position: relative;
}
.grid__item .block.wrapped-from-1 {
  grid-column-start: 1;
}
.grid__item .block.wrapped-from-2 {
  grid-column-start: 2;
}
.grid__item .block.wrapped-from-3 {
  grid-column-start: 3;
}
.grid__item .block.wrapped-from-4 {
  grid-column-start: 4;
}
.grid__item .block.wrapped-from-5 {
  grid-column-start: 5;
}
.grid__item .block.wrapped-from-6 {
  grid-column-start: 6;
}
.grid__item .block.wrapped-from-7 {
  grid-column-start: 7;
}
.grid__item .block.wrapped-from-8 {
  grid-column-start: 8;
}
.grid__item .block.wrapped-from-9 {
  grid-column-start: 9;
}
.grid__item .block.wrapped-from-10 {
  grid-column-start: 10;
}
.grid__item .block.wrapped-from-11 {
  grid-column-start: 11;
}
.grid__item .block.wrapped-to-2 {
  grid-column-end: 2;
}
.grid__item .block.wrapped-to-3 {
  grid-column-end: 3;
}
.grid__item .block.wrapped-to-4 {
  grid-column-end: 4;
}
.grid__item .block.wrapped-to-5 {
  grid-column-end: 5;
}
.grid__item .block.wrapped-to-6 {
  grid-column-end: 6;
}
.grid__item .block.wrapped-to-7 {
  grid-column-end: 7;
}
.grid__item .block.wrapped-to-8 {
  grid-column-end: 8;
}
.grid__item .block.wrapped-to-9 {
  grid-column-end: 9;
}
.grid__item .block.wrapped-to-10 {
  grid-column-end: 10;
}
.grid__item .block.wrapped-to-11 {
  grid-column-end: 11;
}
.grid__item .block.wrapped-to-12 {
  grid-column-end: 12;
}
.grid__item .block.wrapped-to-13 {
  grid-column-end: 13;
}

/* -------------------------- */
.loader {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: var(--white);
  z-index: 9999;
  transition: all 0.4s linear;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader.loaded {
  opacity: 0;
}
.loader .wrapper {
  width: 200px;
  height: 60px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.loader .wrapper span {
  position: absolute;
  top: 75px;
  font-family: "Lato";
  font-size: 20px;
  letter-spacing: 12px;
  color: var(--bc-1);
  left: 15%;
}
.loader .wrapper .circle {
  width: 20px;
  height: 20px;
  position: absolute;
  border-radius: 50%;
  background-color: var(--bc-1);
  left: 15%;
  transform-origin: 50%;
  animation: circle 0.5s alternate infinite ease;
}
.loader .wrapper .circle:nth-child(2) {
  left: 45%;
  animation-delay: 0.2s;
}
.loader .wrapper .circle:nth-child(3) {
  left: auto;
  right: 15%;
  animation-delay: 0.3s;
}
.loader .wrapper .shadow {
  width: 20px;
  height: 4px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 62px;
  transform-origin: 50%;
  z-index: -1;
  left: 15%;
  filter: blur(1px);
  animation: shadow 0.5s alternate infinite ease;
}
.loader .wrapper .shadow:nth-child(4) {
  left: 45%;
  animation-delay: 0.2s;
}
.loader .wrapper .shadow:nth-child(5) {
  left: auto;
  right: 15%;
  animation-delay: 0.3s;
}

@keyframes shadow {
  0% {
    transform: scaleX(1.5);
  }
  40% {
    transform: scaleX(1);
    opacity: 0.7;
  }
  100% {
    transform: scaleX(0.2);
    opacity: 0.4;
  }
}
@keyframes circle {
  0% {
    top: 60px;
    height: 5px;
    border-radius: 50px 50px 25px 25px;
    transform: scaleX(1.7);
  }
  40% {
    height: 20px;
    border-radius: 50%;
    transform: scaleX(1);
  }
  100% {
    top: 0%;
  }
}
/* -------------------------- */
/* ----- 404 LAYOUT ----- */
/* -------------------------- */
/* -------------------------- */
#particles-js {
  width: 100vw;
  height: 100vh;
  background-color: var(--bc-2);
}

.content.not-found {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}
.content.not-found h3, .content.not-found p {
  color: white;
}
.content.not-found h3 {
  font-size: 6em;
}
.content.not-found p {
  font-size: 1.5em;
}

/* -------------------------- */
/* ----- 404 LAYOUT ----- */
/* -------------------------- */
/* -------------------------- */
.container {
  margin: auto;
  max-width: 1024px;
  width: 100%;
  height: 100%;
  text-align: center;
  position: relative;
}

.box {
  margin: 100px;
}

.animation {
  margin-top: 20%;
  display: inline-block;
  margin-bottom: 5%;
}

.one, .two, .three {
  display: block;
  float: left;
}

.one {
  background: url("data:image/svg+xml,%3Csvg%20version%3D%221.1%22%0A%09%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20xmlns%3Aa%3D%22http%3A%2F%2Fns.adobe.com%2FAdobeSVGViewerExtensions%2F3.0%2F%22%0A%09%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2281px%22%20height%3D%2280.5px%22%20viewBox%3D%220%200%2081%2080.5%22%20style%3D%22overflow%3Ascroll%3Benable-background%3Anew%200%200%2081%2080.5%3B%22%0A%09%20xml%3Aspace%3D%22preserve%22%3E%0A%3Cstyle%20type%3D%22text%2Fcss%22%3E%0A%09.st0%7Bfill%3A%23383838%3B%7D%0A%3C%2Fstyle%3E%0A%3Cdefs%3E%0A%3C%2Fdefs%3E%0A%3Cpath%20class%3D%22st0%22%20d%3D%22M30.3%2C68.2c1.2%2C0.2%2C2.3%2C0.9%2C3.8%2C1.2c1.6%2C0.3%2C2.7%2C0.6%2C4%2C0.4l4.9%2C9.6c0.6%2C0.9%2C1.4%2C1.1%2C2.3%2C0.9l15.3-4.9%0A%09c0.5-0.3%2C1-1%2C0.9-2.3l-1.8-10.6c2-1.6%2C3.6-3.7%2C5.3-5.8l10.5%2C0.6c1.1%2C0.6%2C2.1-0.4%2C2.3-1.1L81%2C40.7c0.2-0.8-0.4-2.1-1.1-2.3l-10.2-3.8%0A%09c-0.3-2.5-1.4-4.8-2.5-7.5l5.9-8.5c0.6-1.1%2C0.4-1.9-0.2-2.9l-12-10.7c-0.3-0.5-1.6-0.3-2.5%2C0.3l-8%2C6.9c-1.2-0.2-2.3-0.9-3.8-1.2%0A%09c-1.6-0.3-2.7-0.6-4-0.4L37.7%2C1c-0.6-0.9-1.4-1.1-2.3-0.9L20.1%2C5c-0.5%2C0.3-1%2C1-0.9%2C2.3l1.8%2C10.6c-2%2C1.6-3.6%2C3.7-5.3%2C5.8L5.3%2C23%0A%09c-0.8-0.2-1.7%2C0.4-2%2C1.6L0%2C40.2c-0.2%2C0.8%2C0.4%2C2.1%2C1.1%2C2.3l9.8%2C3.7c0.7%2C2.6%2C1.4%2C5.2%2C2.5%2C7.5l-6%2C8.9c-0.6%2C0.7-0.4%2C2%2C0.3%2C2.5l12%2C10.7%0A%09c0.7%2C0.5%2C1.9%2C0.8%2C2.4%2C0.1L30.3%2C68.2z%20M26.7%2C37.3c1.6-7.4%2C9.1-12.3%2C16.5-10.8S55.6%2C35.7%2C54%2C43.1c-1.6%2C7.4-9.1%2C12.3-16.5%2C10.7%0A%09C30.1%2C52.3%2C25.1%2C44.7%2C26.7%2C37.3L26.7%2C37.3z%22%2F%3E%0A%3C%2Fsvg%3E");
  width: 80px;
  height: 80px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  margin-top: -10px;
  margin-right: 8px;
}

.two {
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:a='http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/' x='0px' y='0px' width='103px' height='103.7px' viewBox='0 0 103 103.7' style='overflow:scroll;enable-background:new 0 0 103 103.7;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23004595;%7D%0A%3C/style%3E%3Cdefs%3E%3C/defs%3E%3Cpath class='st0' d='M87.3,64.8c0.3-1.5,1.1-2.9,1.6-4.9c0.4-2,0.7-3.5,0.5-5.1l12.3-6.3c1.2-0.8,1.4-1.8,1.1-2.9l-6.3-19.6 c-0.4-0.6-1.3-1.3-2.9-1.1l-13.5,2.3c-2.1-2.5-4.7-4.7-7.4-6.8l0.8-13.4C74.3,5.8,73,4.5,72,4.3L52.1,0c-1-0.2-2.7,0.5-2.9,1.5 l-4.8,13c-3.2,0.4-6.1,1.8-9.5,3.2l-10.9-7.5c-1.4-0.8-2.5-0.5-3.7,0.3L6.5,25.8c-0.6,0.4-0.4,2,0.4,3.2l8.8,10.2 c-0.3,1.5-1.1,2.9-1.5,4.9c-0.4,2-0.7,3.5-0.6,5.1L1.2,55.4c-1.2,0.8-1.4,1.8-1.1,2.9l6.3,19.6c0.4,0.6,1.3,1.3,2.9,1.1l13.5-2.3 c2.1,2.5,4.7,4.7,7.4,6.8l-0.8,13.4c-0.2,1,0.6,2.2,2.1,2.5l20,4.2c1,0.2,2.7-0.5,2.9-1.5l4.7-12.6c3.3-0.9,6.6-1.7,9.5-3.2L80.1,94 c0.9,0.7,2.5,0.5,3.2-0.4L97,78.3c0.7-0.9,1-2.4,0.1-3.1L87.3,64.8z M47.8,69.5C38.3,67.5,32,57.8,34,48.3 c2-9.5,11.7-15.8,21.2-13.8c9.5,2,15.7,11.7,13.7,21.2C66.9,65.2,57.3,71.5,47.8,69.5L47.8,69.5z'/%3E%3C/svg%3E");
  width: 100px;
  height: 100px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.three {
  background: url("data:image/svg+xml,%3Csvg%20version%3D%221.1%22%0A%09%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20xmlns%3Aa%3D%22http%3A%2F%2Fns.adobe.com%2FAdobeSVGViewerExtensions%2F3.0%2F%22%0A%09%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2281px%22%20height%3D%2280.5px%22%20viewBox%3D%220%200%2081%2080.5%22%20style%3D%22overflow%3Ascroll%3Benable-background%3Anew%200%200%2081%2080.5%3B%22%0A%09%20xml%3Aspace%3D%22preserve%22%3E%0A%3Cstyle%20type%3D%22text%2Fcss%22%3E%0A%09.st0%7Bfill%3A%23383838%3B%7D%0A%3C%2Fstyle%3E%0A%3Cdefs%3E%0A%3C%2Fdefs%3E%0A%3Cpath%20class%3D%22st0%22%20d%3D%22M30.3%2C68.2c1.2%2C0.2%2C2.3%2C0.9%2C3.8%2C1.2c1.6%2C0.3%2C2.7%2C0.6%2C4%2C0.4l4.9%2C9.6c0.6%2C0.9%2C1.4%2C1.1%2C2.3%2C0.9l15.3-4.9%0A%09c0.5-0.3%2C1-1%2C0.9-2.3l-1.8-10.6c2-1.6%2C3.6-3.7%2C5.3-5.8l10.5%2C0.6c1.1%2C0.6%2C2.1-0.4%2C2.3-1.1L81%2C40.7c0.2-0.8-0.4-2.1-1.1-2.3l-10.2-3.8%0A%09c-0.3-2.5-1.4-4.8-2.5-7.5l5.9-8.5c0.6-1.1%2C0.4-1.9-0.2-2.9l-12-10.7c-0.3-0.5-1.6-0.3-2.5%2C0.3l-8%2C6.9c-1.2-0.2-2.3-0.9-3.8-1.2%0A%09c-1.6-0.3-2.7-0.6-4-0.4L37.7%2C1c-0.6-0.9-1.4-1.1-2.3-0.9L20.1%2C5c-0.5%2C0.3-1%2C1-0.9%2C2.3l1.8%2C10.6c-2%2C1.6-3.6%2C3.7-5.3%2C5.8L5.3%2C23%0A%09c-0.8-0.2-1.7%2C0.4-2%2C1.6L0%2C40.2c-0.2%2C0.8%2C0.4%2C2.1%2C1.1%2C2.3l9.8%2C3.7c0.7%2C2.6%2C1.4%2C5.2%2C2.5%2C7.5l-6%2C8.9c-0.6%2C0.7-0.4%2C2%2C0.3%2C2.5l12%2C10.7%0A%09c0.7%2C0.5%2C1.9%2C0.8%2C2.4%2C0.1L30.3%2C68.2z%20M26.7%2C37.3c1.6-7.4%2C9.1-12.3%2C16.5-10.8S55.6%2C35.7%2C54%2C43.1c-1.6%2C7.4-9.1%2C12.3-16.5%2C10.7%0A%09C30.1%2C52.3%2C25.1%2C44.7%2C26.7%2C37.3L26.7%2C37.3z%22%2F%3E%0A%3C%2Fsvg%3E");
  width: 80px;
  height: 80px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  margin-top: -50px;
  margin-left: -10px;
}

@keyframes spin-one {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-359deg);
  }
}
.spin-one {
  animation: spin-one 1.5s infinite linear;
}

@keyframes spin-two {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
.spin-two {
  animation: spin-two 2s infinite linear;
}

.block-gallery {
  padding: 0 !important;
}
.block-gallery .content {
  height: 100%;
}
.block-gallery .content .block-text {
  padding: 0;
  margin: 0 auto 30px;
}
.block-gallery .gallery {
  height: 100%;
  width: 100%;
}
.block-gallery .gallery .item {
  height: 100%;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .block-gallery .gallery .item {
    width: calc(50% - var(--space-m));
  }
}
@media (max-width: 767px) {
  .block-gallery .gallery .item {
    width: calc(100% - var(--space-m));
    margin-bottom: var(--space-xs);
  }
}
.block-gallery .carrousel {
  max-width: var(--content-max-width);
  margin: auto;
  height: 350px;
}
.block-gallery .carrousel .content-carrousel .viewport .item {
  padding: 0 var(--space-m) var(--space-m);
}
.block-gallery .carrousel .content-carrousel .viewport .item .image {
  width: calc(16% - 20px);
  height: auto;
  margin: 0 var(--space-s);
}
.block-gallery .carrousel .content-carrousel .viewport .item .image img {
  filter: grayscale(1);
}
@media (min-width: 768px) and (max-width: 1199px) {
  .block-gallery .carrousel .content-carrousel .viewport .item .image {
    width: calc(25% - 20px);
  }
}
.block-gallery .carrousel .buttons {
  bottom: 0;
}
.block-gallery .carrousel .buttons span {
  border-color: var(--g-10);
  background-color: var(--g-10);
}
.block-gallery .carrousel .buttons span.current {
  border-color: var(--g-10);
  background-color: var(--g-10);
}
@media (max-width: 767px) {
  .block-gallery .content .block-text {
    padding: 0 var(--space-m);
  }
  .block-gallery .carrousel {
    height: calc(100vh - 50px);
    margin-bottom: var(--space-m);
  }
  .block-gallery .carrousel .content-carrousel .viewport .item .image {
    width: calc(50% - 20px);
  }
}

#resource-slider {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 13em;
  margin: auto;
  background: #fff;
  overflow: hidden;
}
#resource-slider .slider__controller {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}
@media (max-width: 767px) {
  #resource-slider .slider__controller {
    flex-direction: column;
  }
}
#resource-slider .slider__controller .controller__paginate {
  z-index: 2;
  width: 5%;
}
@media (max-width: 767px) {
  #resource-slider .slider__controller .controller__paginate {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  #resource-slider .slider__controller .controller__paginate {
    width: 10%;
  }
}
#resource-slider .slider__controller .controller__paginate span {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.07;
  letter-spacing: -3px;
}
#resource-slider .slider__controller .controller__line {
  width: 70%;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) and (max-width: 1199px) {
  #resource-slider .slider__controller .controller__line {
    width: 60%;
  }
}
@media (max-width: 767px) {
  #resource-slider .slider__controller .controller__line {
    width: 100%;
  }
}
#resource-slider .slider__controller .controller__line .line {
  z-index: 2;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.25);
  position: relative;
}
#resource-slider .slider__controller .controller__line .line__current {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0px, -50%);
  height: 4px;
  background: var(--bc-2);
  transition: all 500ms ease-out 0.1s;
}
#resource-slider .slider__controller .controller .buttons__slider {
  display: flex;
}
#resource-slider .slider__controller .controller .buttons__slider .arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.25);
  cursor: pointer;
  outline: none;
}
#resource-slider .slider__controller .controller .buttons__slider .arrow:hover {
  background: rgba(0, 0, 0, 0.1);
}
#resource-slider .slider__controller .controller .buttons__slider .arrow:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 0.75em;
  height: 0.75em;
  margin: auto;
  border-style: solid;
}
#resource-slider .slider__controller .controller .buttons__slider .arrow.prev:before {
  left: 0.25em;
  border-width: 3px 0 0 3px;
  border-color: #333 transparent transparent #333;
  transform: rotate(-45deg);
}
#resource-slider .slider__controller .controller .buttons__slider .arrow.next:before {
  right: 0.25em;
  border-width: 3px 3px 0 0;
  border-color: #333 #333 transparent transparent;
  transform: rotate(45deg);
}
#resource-slider .resource-slider-frame {
  position: absolute;
  top: 0;
  left: 2em;
  right: 2em;
  bottom: 0;
  border-left: 0.25em solid transparent;
  border-right: 0.25em solid transparent;
  overflow: hidden;
}
#resource-slider .resource-slider-item {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 25%;
  height: 100%;
}
#resource-slider .resource-slider-inset {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0.5em 0.25em;
  overflow: hidden;
}

@media (max-width: 60em) {
  #resource-slider .resource-slider-item {
    width: 33.33%;
  }
  #resource-slider {
    height: 16em;
  }
}
@media (max-width: 45em) {
  #resource-slider .resource-slider-item {
    width: 50%;
  }
}
@media (max-width: 30em) {
  #resource-slider .resource-slider-item {
    width: 100%;
  }
  #resource-slider {
    height: 19em;
  }
}
.block-form .content {
  padding: var(--space-l) var(--space-xl);
}
@media (min-width: 768px) and (max-width: 1199px) {
  .block-form .content {
    padding: var(--space-l);
  }
}
@media (max-width: 767px) {
  .block-form .content {
    padding: var(--space-m);
  }
}
.block-form .content .flex-content {
  width: 100%;
}
.block-form .content .flex-content .text {
  width: 100%;
  height: auto;
}
.block-form .content .flex-content .text h3 {
  line-height: inherit;
  margin-top: 50px;
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .block-form .content .flex-content .text h3 {
    margin-top: 30px;
    margin-bottom: 10px;
  }
}
.block-form .content .flex-content .text h4.subtitle {
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .block-form .content .flex-content .text h4.subtitle {
    margin-bottom: 0px;
  }
}
@media (max-width: 767px) {
  .block-form .content .flex-content .text {
    margin-top: 20px;
  }
}
.block-form.block--grid .content .flex-content .form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
  -moz-column-gap: 40px;
       column-gap: 40px;
  margin: 20px;
}
@media (max-width: 900px) {
  .block-form.block--grid .content .flex-content .form {
    display: flex;
    flex-direction: column;
  }
}
.block-form.block--grid .content .flex-content .form .form-block.form-block--textarea {
  grid-column: 2/3;
  grid-row: 1/5;
}
.block-form.block--grid .content .flex-content .form .button-block {
  grid-column-end: 3;
  grid-column-start: 1;
}
.block-form.block--grid .content .flex-content .form .button-block.button-block--end {
  grid-column: 2/3;
  grid-row: 4/5;
}
.block-form.block--grid .content .flex-content .form .g-recaptcha {
  justify-content: left;
}
.block-form.block--grid .content .flex-content .form .button-block .button {
  color: white;
}

.block-image .content .flex-content {
  display: flex;
  align-items: center;
  height: 100%;
}
.block-image .content .flex-content .image {
  width: 100%;
}
@media (max-width: 700px) {
  .block-image .content .flex-content .image {
    width: 100% !important;
  }
}

.block-map .content--item {
  height: 700px;
}
.block-map .content--item .flex-content {
  width: 100%;
  height: 100%;
}
.block-map .content--item .flex-content .text {
  margin-bottom: var(--space-m);
}
.block-map .content--item .flex-content .map-multi {
  height: 100%;
}

@media (max-width: 1650px) {
  #interactive-map .blob:not(.blob--visible-on-laptop) {
    display: none;
  }
}
#interactive-map .content .flex-content .map-multi {
  min-height: 650px;
}
@media (max-width: 610px) {
  #interactive-map .content .flex-content .map-multi {
    min-height: 400px;
  }
}
#interactive-map .content .flex-content .text {
  margin-bottom: 0;
}

.contacts_map .content .map-multi {
  min-height: 700px;
}
@media (max-width: 610px) {
  .contacts_map .content .map-multi {
    min-height: 400px;
  }
}

.block-multiple .text {
  text-align: center;
}
.block-multiple h3 {
  line-height: 1.23;
  position: relative;
}
.block-multiple .bg-image {
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: contain !important;
}
.block-multiple .content .flex-content {
  width: 100%;
  height: -moz-min-content;
  height: min-content;
}
.block-multiple .content .flex-content .text {
  width: 100%;
  height: auto;
}
.block-multiple.mosaic {
  margin: 50px 0;
}

.multiple--mosaic.items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.multiple--mosaic.items .multiple__item {
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  margin: 20px 0;
  transition: 0.3s ease-out all;
  padding: 20px;
}
.multiple--mosaic.items .multiple__item:hover {
  background: rgba(231, 216, 255, 0.5);
  transition: 0.3s ease-out all;
}
.multiple--mosaic.items .multiple__item:hover .multiple__icon {
  transition: 0.3s ease-out all;
}
.multiple--mosaic.items .multiple__item:hover .multiple__icon:before {
  transition: 0.3s ease-out all;
  background: rgba(231, 216, 255, 0.5);
}
.multiple--mosaic.items .multiple__item:hover .multiple__icon:after {
  transition: 0.3s ease-out all;
  border: 5px solid rgb(213, 190, 251);
}
.multiple--mosaic.items .multiple__item:hover .multiple__icon img {
  transition: 0.3s ease-out all;
  transform: rotate(5deg) scale(1.2);
}
.multiple--mosaic.items .multiple__item .multiple__icon {
  height: 200px;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  transition: 0.3s ease-out all;
  padding: 20px;
}
.multiple--mosaic.items .multiple__item .multiple__icon:before {
  transition: 0.3s ease-out all;
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  background: rgba(133, 58, 253, 0.2);
  z-index: 1;
}
.multiple--mosaic.items .multiple__item .multiple__icon:after {
  transition: 0.3s ease-out all;
  content: "";
  height: 102%;
  width: 102%;
  position: absolute;
  top: 0;
  left: 0;
  border: 7px solid #D5BEFB;
  border-radius: 50%;
  z-index: 1;
}
.multiple--mosaic.items .multiple__item .multiple__icon img {
  transition: 0.3s ease-out all;
  width: 75%;
  height: auto;
  z-index: 1;
}
.multiple--mosaic.items .multiple__item .multiple__content {
  height: 50%;
  text-align: center;
  margin-top: 15px;
}
.multiple--mosaic.items .multiple__item .multiple__content h4.title-font {
  color: var(--bc-1);
  font-style: italic;
  margin-bottom: 1px;
}
.multiple--mosaic.items .multiple__item .multiple__content p {
  font-size: 0.8em;
}
.multiple--mosaic.items--1 .multiple__item {
  width: 100%;
}
.multiple--mosaic.items--2 .multiple__item {
  width: 48%;
}
.multiple--mosaic.items--3 .multiple__item {
  width: 30%;
}
.multiple--mosaic.items--4 .multiple__item {
  width: 22%;
}
.multiple--mosaic.items--5 .multiple__item {
  width: 18%;
}
.multiple--mosaic.items--6 .multiple__item {
  width: 15%;
}
.multiple--featured {
  display: flex;
  margin-top: 50px;
  margin-bottom: 50px;
  flex-direction: column;
}
.multiple--featured.items--1 .multiple__item {
  width: 100%;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .multiple--featured.items--1 .multiple__item {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .multiple--featured.items--1 .multiple__item {
    width: 100%;
  }
}
.multiple--featured.items--2 .multiple__item {
  width: 50%;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .multiple--featured.items--2 .multiple__item {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .multiple--featured.items--2 .multiple__item {
    width: 100%;
  }
}
.multiple--featured.items--3 .multiple__item {
  width: 33.3333333333%;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .multiple--featured.items--3 .multiple__item {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .multiple--featured.items--3 .multiple__item {
    width: 100%;
  }
}
.multiple--featured.items--4 .multiple__item {
  width: 25%;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .multiple--featured.items--4 .multiple__item {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .multiple--featured.items--4 .multiple__item {
    width: 100%;
  }
}
.multiple--featured.items--5 .multiple__item {
  width: 20%;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .multiple--featured.items--5 .multiple__item {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .multiple--featured.items--5 .multiple__item {
    width: 100%;
  }
}
.multiple--featured.items--6 .multiple__item {
  width: 16.6666666667%;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .multiple--featured.items--6 .multiple__item {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .multiple--featured.items--6 .multiple__item {
    width: 100%;
  }
}
.multiple--featured .multiple__item--featured {
  display: flex;
  flex-direction: column;
  background-color: white;
  padding: 20px;
  position: relative;
}
@media (max-width: 767px) {
  .multiple--featured .multiple__item--featured {
    margin-bottom: var(--space-l);
  }
  .multiple--featured .multiple__item--featured:last-child {
    margin-bottom: 0;
  }
}
.multiple--featured .multiple__item--featured .multiple__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  width: 100%;
}
.multiple--featured .multiple__item--featured .multiple__icon .multiple__icon-img {
  height: 100%;
  width: auto;
}
.multiple--featured .multiple__item--featured .multiple__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  flex-grow: 1;
  width: 100%;
  margin-top: var(--space-m);
}
.multiple--featured .multiple__item--featured .multiple__content p {
  text-align: left;
}

.block-slider .content .flex-content {
  display: flex;
  justify-content: center;
  height: 100%;
  width: 100%;
  overflow: hidden;
  margin: 50px 0;
}
.block-slider .content .flex-content.no-padding {
  padding: 0;
}
.block-slider .content .flex-content .slider {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
.block-slider .content .flex-content .slider--height-1 {
  min-height: 500px;
}
.block-slider .content .flex-content .slider--height-2 {
  min-height: calc(var(--space-xl) * 10);
}
.block-slider .content .flex-content .slider .content-slider {
  display: flex;
  align-items: center;
  flex: 1;
}
.block-slider .content .flex-content .slider .content-slider .slide {
  top: auto;
  left: auto;
}
.block-slider .content .flex-content .slider .content-slider .slide .slide__element {
  position: relative;
  width: 100%;
  height: 100%;
}
.block-slider .content .flex-content .slider .content-slider .slide .slide__element .slide__background {
  position: absolute;
  z-index: var(--z-index--background);
}
.block-slider .content .flex-content .slider .content-slider .slide .slide__element .slide__foreground {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: var(--z-index--body);
  width: 100%;
  height: 100%;
}
.block-slider .content .flex-content .slider .content-slider .slide.items--1 {
  min-height: 500px;
}
.block-slider .content .flex-content .slider .content-slider .slide.items--1 .slide__element {
  min-height: 500px;
  display: flex;
}
.block-slider .content .flex-content .slider .content-slider .slide.items--1 .slide__element .slide__background {
  opacity: 0;
  position: relative;
}
.block-slider .content .flex-content .slider .content-slider .slide.items--1 .slide__element .slide__background.image {
  height: auto;
}
.block-slider .content .flex-content .slider .content-slider .slide.items--1 .slide__element .slide__foreground {
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 100px;
}
.block-slider .content .flex-content .slider .content-slider .slide.items--1.current .slide__background {
  opacity: 1;
}
.block-slider .content .flex-content .slider .content-slider .slide.items--1.current .text p {
  font-weight: 800;
  justify-content: flex-start;
}
.block-slider .content .flex-content .slider .content-slider .slide.items--1:nth-child(1) .text {
  transform: translateY(50px);
}
.block-slider .content .flex-content .slider .content-slider .slide.items--1:nth-child(2) .text {
  transform: translateY(100px);
}
.block-slider .content .flex-content .slider .content-slider .slide.items--1:nth-child(3) .text {
  transform: translateY(150px);
}
.block-slider .content .flex-content .slider .content-slider .slide.items--1:nth-child(4) .text {
  transform: translateY(200px);
}
.block-slider .content .flex-content .slider .content-slider .slide.items--1:nth-child(5) .text {
  transform: translateY(250px);
}
.block-slider .content .flex-content .slider .content-slider .slide.items--1:nth-child(6) .text {
  transform: translateY(300px);
}
.block-slider .content .flex-content .slider .content-slider .slide.items--1:nth-child(7) .text {
  transform: translateY(350px);
}
.block-slider .content .flex-content .slider .content-slider .slide.items--1:nth-child(8) .text {
  transform: translateY(400px);
}
.block-slider .content .flex-content .slider .content-slider .slide.items--2 {
  min-height: calc(var(--space-xl) * 4);
}
.block-slider .content .flex-content .slider .content-slider .slide.items--3 {
  min-height: calc(var(--space-xl) * 3);
}
.block-slider .content .flex-content .slider .slider__buttons {
  position: absolute;
  display: flex;
  align-items: center;
  bottom: var(--space-m);
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--z-index--body);
}
.block-slider .content .flex-content .slider .slider__buttons .slider__button {
  position: relative;
  display: inline-block;
  width: var(--space-m);
  height: var(--space-m);
  margin-left: var(--space-m);
  border: 2px solid var(--white);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.5s cubic-bezier(0.52, 0.01, 0.16, 1) 0s;
}
.block-slider .content .flex-content .slider .slider__buttons .slider__button:first-child {
  margin-left: 0;
}
.block-slider .content .flex-content .slider .slider__buttons .slider__button.current:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 3px solid var(--white);
  border-radius: 50%;
}
@media (max-width: 767px) {
  .block-slider .content .flex-content .slider .slider__buttons .slider__button {
    width: 10px;
    height: 10px;
    border: 2px solid var(--white);
  }
}

.blocks .block.block-text-image .content .flex-content {
  position: relative;
  width: 100%;
  height: -moz-min-content;
  height: min-content;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}
@media (max-width:$design-breakpoint, ) {
  .blocks .block.block-text-image .content .flex-content {
    grid-template-columns: 1fr;
    gap: var(--space-l);
  }
}
@media (max-width: 767px) {
  .blocks .block.block-text-image .content .flex-content {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
}
.blocks .block.block-text-image .content .flex-content.block-text-image__container h3 {
  margin-top: 50px;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .blocks .block.block-text-image .content .flex-content.block-text-image__container h3 {
    margin-top: 25px;
    margin-bottom: 25px !important;
  }
}
.blocks .block.block-text-image .content .flex-content.block-text-image__container p.title-font {
  color: var(--bc-2);
  font-weight: 500;
  line-height: 1.27;
}
.blocks .block.block-text-image .content .flex-content.block-text-image__container--right .image {
  grid-column-start: 2;
}
@media (max-width:$design-breakpoint, ) {
  .blocks .block.block-text-image .content .flex-content.block-text-image__container--right .image {
    grid-column-start: 1;
    grid-row-start: 2;
  }
}
.blocks .block.block-text-image .content .flex-content.block-text-image__container--right .block-text-image__content {
  grid-column-start: 1;
  grid-row-start: 1;
}
.blocks .block.block-text-image .content .flex-content.block-text-image__container--top {
  grid-template-columns: 1fr;
}
.blocks .block.block-text-image .content .flex-content.block-text-image__container--bottom {
  grid-template-columns: 1fr;
}
.blocks .block.block-text-image .content .flex-content.block-text-image__container--bottom .image {
  grid-row-start: 2;
}
.blocks .block.block-text-image .content .flex-content.block-text-image__container--bottom .block-text-image__content {
  grid-row-start: 1;
}
.blocks .block.block-text-image .content .flex-content .image {
  z-index: 1;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .blocks .block.block-text-image .content .flex-content .image__content {
    max-height: none;
    width: 100%;
  }
}
.blocks .block.block-text-image .content .flex-content .text {
  width: 100%;
  height: auto;
  z-index: 2;
}
.blocks .block.block-text-image .content .flex-content .text .paragraphs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: var(--space-l);
}
@media (max-width:600px, ) {
  .blocks .block.block-text-image .content .flex-content .text .paragraphs {
    grid-template-columns: 1fr;
  }
}
.blocks .block.block-text-image .content .flex-content .button-block {
  margin-top: calc(var(--space-l) * 1.5);
}
@media (max-width: 767px) {
  .blocks .block.block-text-image .content .flex-content .button-block {
    margin-top: var(--space-xs);
  }
}

.block-video .content .flex-content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .block-video .content .flex-content {
    min-height: calc(var(--space-xl) * 6);
  }
}
@media (max-width: 767px) {
  .block-video .content .flex-content {
    min-height: calc(var(--space-xl) * 4);
  }
}
.block-video .content .flex-content .play-button .play {
  font-size: 90px;
  color: var(--bc-1);
}
.block-video.embed .content {
  padding: var(--space-l) var(--space-xl);
}
@media (min-width: 768px) and (max-width: 1199px) {
  .block-video.embed .content {
    padding: var(--space-l);
  }
}
@media (max-width: 767px) {
  .block-video.embed .content {
    padding: var(--space-m);
  }
}
.block-video.embed .content .flex-content .video__container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}
.block-video.embed .content .flex-content .video__container .player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.block-video.embed .content .flex-content .video__caption {
  margin-top: var(--space-m);
}
.block-video.fullscreen .content .flex-content {
  position: relative;
}
.block-video.fullscreen .content .flex-content .video__background {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-index--background);
}
.block-video.fullscreen .content .flex-content .video__play {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  z-index: var(--z-index--highlight);
}
.block-video.fullscreen .content .flex-content .video__play .video__play-button {
  font-size: 90px;
  color: var(--bc-1);
  transition: all 0.4s;
  cursor: pointer;
}
.block-video.fullscreen .content .flex-content .video__play .video__play-button:hover {
  color: var(--bc-2);
}
@media (max-width: 767px) {
  .block-video.fullscreen .content .flex-content .video__play .video__play-button {
    font-size: 70px;
  }
}
.block-video.fullscreen .content .flex-content .video__viewport {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  height: 100vh;
  width: 100vw;
  transition: z-index 0.1s, opacity 0.4s, visibility 0.4s;
  z-index: var(--z-index--hidden);
}
.block-video.fullscreen .content .flex-content .video__viewport .video__container {
  position: relative;
  width: 50%;
  height: 0;
  padding-bottom: 28.12%;
}
.block-video.fullscreen .content .flex-content .video__viewport .video__container .player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.block-video.fullscreen .content .flex-content .video__viewport .video__close-button {
  position: absolute;
  top: var(--space-l);
  right: calc(var(--space-l) * 1.5);
  font-size: var(--space-l);
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .block-video.fullscreen .content .flex-content .video__viewport .video__close-button {
    top: var(--space-m);
    right: calc(var(--space-m) * 1.5);
    font-size: var(--space-m);
  }
}
.block-video.fullscreen .content .flex-content .video__viewport .video__close-button:hover {
  color: var(--bc-1);
}
.block-video.fullscreen .content .flex-content .video__viewport.active {
  opacity: 1;
  visibility: visible;
  z-index: var(--z-index--overlay);
  transition: z-index 0.6s, opacity 0.4s, visibility 0.4s;
}
.block-video.fullscreen .content .flex-content .video__viewport.active .video__container {
  z-index: var(--z-index--highlight);
}
.block-video.fullscreen .content .flex-content .video__viewport.active .video__close-button {
  z-index: var(--z-index--highlight);
}

.grid__item--cs-3 .block-video.embed .content .flex-content {
  max-width: var(--content-medium-width);
}

.grid__item--cs-2 .block-video.embed .content .flex-content,
.grid__item--cs-1 .block-video.embed .content .flex-content {
  max-width: 100%;
}

/* ---------------------------------- */
/* -------------------------- */
/* ------- NEO GALLERY ------ */
/* -------------------------- */
.gallery .thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-rows: calc(var(--space-xl) * 2);
  height: 100%;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .gallery .thumbs {
    grid-auto-rows: calc(var(--space-l) * 3);
  }
}
@media (max-width: 767px) {
  .gallery .thumbs {
    display: flex;
  }
}
.gallery .thumbs .thumb {
  display: flex;
  position: relative;
  cursor: pointer;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  margin: 0;
  grid-row-end: span 2;
}
.gallery .thumbs .thumb:nth-child(2), .gallery .thumbs .thumb:nth-child(4), .gallery .thumbs .thumb:nth-child(6n+10), .gallery .thumbs .thumb:nth-child(6n+8) {
  grid-row-end: span 2;
  height: 100%;
}
@media (max-width: 767px) {
  .gallery .thumbs .thumb:nth-child(2), .gallery .thumbs .thumb:nth-child(4), .gallery .thumbs .thumb:nth-child(6n+10), .gallery .thumbs .thumb:nth-child(6n+8) {
    height: 175px;
  }
}
.gallery .thumbs .thumb:first-child, .gallery .thumbs .thumb:nth-child(4n+1) {
  margin-left: 0;
}
.gallery .thumbs .thumb:nth-child(4n) {
  margin-right: 0;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .gallery .thumbs .thumb:nth-child(odd) {
    margin-left: 0;
  }
  .gallery .thumbs .thumb:nth-child(even) {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .gallery .thumbs .thumb {
    width: 100%;
    margin: 0;
  }
}
.gallery .thumbs .thumb .lens {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  background-image: url("../js/plugins/neo/neo-gallery/maximize.png");
  background-size: 40px 20px;
  background-position: center center;
  background-repeat: no-repeat;
  transition: all 0.2s ease-out;
}
.gallery .thumbs .thumb:hover .lens {
  opacity: 0.3;
  background-color: var(--bc-1);
}
.gallery.video .thumbs {
  display: flex;
  width: 100%;
  height: 100%;
}
.gallery.video .thumbs .thumb-container {
  height: 100%;
  flex-grow: 1;
}
.gallery.video .thumbs .thumb-container .thumb {
  height: 100%;
  width: 100%;
}
.gallery.video .thumbs .thumb-container .thumb .lens .playbutton {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.gallery.video .thumbs .thumb-container .thumb .lens .playbutton img {
  width: var(--space-l);
  height: var(--space-l);
}
@media (max-width: 600px) {
  .gallery .thumbs {
    flex-wrap: wrap;
  }
  .gallery .thumbs .item.oneofthree {
    width: 100%;
    margin-bottom: 0 !important;
  }
  .gallery .thumbs .item.oneofthree .full {
    width: 100%;
    height: 300px;
  }
  .gallery .thumbs .item.oneofthree .oneoftwo {
    width: 50%;
  }
  .gallery .thumbs .item.oneofthree .thumb-4,
  .gallery .thumbs .item.oneofthree .thumb-6 {
    height: 150px;
  }
  .gallery .thumbs .item.oneofthree .thumb-4 {
    width: 50%;
  }
  .gallery .thumbs .item.oneofthree .thumb-6 {
    width: 33.3333%;
  }
}
.gallery .viewport {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  opacity: 0;
  z-index: var(--z-index--hidden);
  height: 100vh;
  width: 100%;
  transition: opacity 0.4s;
  background-image: radial-gradient(rgba(0, 0, 0, 0.7), rgb(0, 0, 0));
  transition: all 0.2s ease-out;
}
.gallery .viewport.active {
  z-index: 200;
  opacity: 1;
}
.gallery .viewport .close-button {
  position: absolute;
  top: var(--space-m);
  right: var(--space-m);
  left: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 200;
}
.gallery .viewport .close-button .text {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: var(--space-s);
}
.gallery .viewport .close-button .text .close {
  margin-bottom: 0;
  color: var(--white);
  font-weight: 400;
}
.gallery .viewport .close-button .button_ {
  display: table-cell;
  vertical-align: middle;
}
.gallery .viewport .close-button .lines {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 3px;
  margin-top: -10px;
  background-color: transparent;
  transition: all 0.3s ease-out;
}
.gallery .viewport .close-button .lines:before, .gallery .viewport .close-button .lines:after {
  position: absolute;
  right: 0;
  content: "";
  display: inline-block;
  width: 40px;
  height: 3px;
  background: var(--white);
  transform-origin: 50% 50%;
  transition: all 0.3s ease-out;
}
.gallery .viewport .close-button .lines:before {
  top: 0px;
  transform: rotate3d(0, 0, 1, 45deg);
}
.gallery .viewport .close-button .lines:after {
  top: 0px;
  transform: rotate3d(0, 0, 1, -45deg);
}
.gallery .viewport .images {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70%;
  height: 70%;
  transform: translate(-50%, -50%);
}
.gallery .viewport .images .before,
.gallery .viewport .images .after {
  z-index: 1;
  width: 60px;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
  transform: translateY(-50%);
}
.gallery .viewport .images .before {
  position: absolute;
  top: 50%;
  left: 0;
  background-image: url("../js/plugins/neo/neo-gallery/prev.png");
}
.gallery .viewport .images .after {
  position: absolute;
  top: 50%;
  right: 0;
  background-image: url("../js/plugins/neo/neo-gallery/next.png");
}
.gallery .viewport .images .loader-gallery {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 16px solid #f3f3f3;
  /* Light grey */
  border-top: 16px solid var(--bc-1);
  /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
}
@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.gallery .viewport .images .image {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.gallery .viewport .images .image.current {
  opacity: 1;
  transition: opacity 1s;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .gallery .viewport .images .before {
    left: -50px;
  }
  .gallery .viewport .images .after {
    right: -50px;
  }
}
@media (max-width: 767px) {
  .gallery .viewport .images {
    height: 100%;
    width: 100%;
  }
  .gallery .viewport .images .before {
    left: 0;
  }
  .gallery .viewport .images .after {
    right: 0;
  }
}

/* -------------------------- */
/* -------------------------- */
/* -------- NEO SLIDER ------ */
/* -------------------------- */
.slider {
  width: 100%;
}
.slider .content-slider {
  position: relative;
  width: 100%;
  height: 100%;
  margin: auto;
}
.slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-index--background);
  transition: opacity 1s ease-out;
}
.slider .slide .background {
  width: 100%;
  height: 100%;
}
.slider .slide .background > * {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.slider .slide .background .responsive {
  display: none;
}
.slider .slide.current {
  z-index: var(--z-index--body);
  opacity: 1;
}
.slider .prev,
.slider .next {
  position: absolute;
  bottom: 50%;
  width: 75px;
  height: 75px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  padding: var(--space-xs);
  z-index: var(--z-index--highlight);
  cursor: pointer;
  transition: all 0.5s ease-out;
  transform: translateY(50%);
}
.slider .prev {
  background-image: url("../js/plugins/neo/neo-slider/prev.png");
  left: 0;
}
.slider .next {
  background-image: url("../js/plugins/neo/neo-slider/next.png");
  right: 0;
}
.slider:hover .prev,
.slider:hover .next {
  opacity: 1;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .slider .prev {
    left: var(--space-s);
  }
  .slider .next {
    right: var(--space-s);
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .slider .slide .background > * {
    background-attachment: scroll;
  }
}
@media (max-width: 767px) {
  .slider .slide .background .responsive {
    display: block;
  }
  .slider .prev,
  .slider .next {
    width: 30px;
    background-size: 100% 80%;
  }
  .slider .prev {
    display: none;
  }
  .slider .next {
    display: none;
  }
}
/* -------------------------- */
@media screen and (min-width: 0\0 ) {
  .ie-alert {
    display: table;
  }
  .ie-alert .message {
    display: table-cell;
    vertical-align: middle;
  }
}/*# sourceMappingURL=style.css.map */