@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700&display=swap');

/* ---------------------------------- */
/* ----------- BASE CONFIG ---------- */
/* ---------------------------------- */
@-webkit-keyframes bounceAndRotate {
  0% {
    left: 100%;
  }
  100% {
    left: 0px;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
@keyframes bounceAndRotate {
  0% {
    left: 100%;
  }
  100% {
    left: 0px;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}

@-webkit-keyframes removeBounceAndRotate {
  0% {
    left: 0px;
  }
  100% {
    left: 100%;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}

@keyframes removeBounceAndRotate {
  0% {
    left: 0px;
  }
  100% {
    left: 100%;
    -webkit-transform: rotate(90deg);
            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;
  background-color: #F5F5EC;
}

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;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}


.text p, .text li,
.top__content p {
    font-size: 1.7rem !important;
}
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: #fff;
    --focus: 2px rgba(39, 94, 254, .3);
    --border: #BBC1E1;
    --border-hover: #275EFE;
    --background: #fff;
    --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: 1px solid var(--bc, var(--border));
    background: var(--b, var(--background));
    -webkit-transition: background .3s, border-color .3s, -webkit-box-shadow .2s;
    transition: background .3s, border-color .3s, -webkit-box-shadow .2s;
    transition: background .3s, border-color .3s, box-shadow .2s;
    transition: background .3s, border-color .3s, box-shadow .2s, -webkit-box-shadow .2s;
  }
  input[type='checkbox']:after,
  input[type='radio']:after {
    content: '';
    display: block;
    left: 0;
    top: 0;
    position: absolute;
    -webkit-transition: opacity var(--d-o, 0.2s), -webkit-transform var(--d-t, 0.3s) var(--d-t-e, ease);
    transition: opacity var(--d-o, 0.2s), -webkit-transform var(--d-t, 0.3s) var(--d-t-e, ease);
    transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
    transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s), -webkit-transform var(--d-t, 0.3s) var(--d-t-e, ease);
  }
  input[type='checkbox']:checked,
  input[type='radio']:checked {
    --b: var(--active);
    --bc: var(--active);
    --d-o: .3s;
    --d-t: .6s;
    --d-t-e: cubic-bezier(.2, .85, .32, 1.2);
  }
  input[type='checkbox']:disabled,
  input[type='radio']:disabled {
    --b: var(--disabled);
    cursor: not-allowed;
    opacity: .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 {
    -webkit-box-shadow: 0 0 0 var(--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: 1;
  }
  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='checkbox']:not(.switch) {
    border-radius: 7px;
  }
  input[type='checkbox']:not(.switch):after {
    width: 5px;
    height: 9px;
    border: 2px solid var(--active-inner);
    border-top: 0;
    border-left: 0;
    left: 7px;
    top: 4px;
    -webkit-transform: rotate(var(--r, 20deg));
            transform: rotate(var(--r, 20deg));
  }
  input[type='checkbox']:not(.switch):checked {
    --r: 43deg;
  }
  input[type='checkbox'].switch {
    width: 38px;
    border-radius: 11px;
  }
  input[type='checkbox'].switch:after {
    left: 2px;
    top: 2px;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    background: var(--ab, var(--border));
    -webkit-transform: translateX(var(--x, 0));
            transform: translateX(var(--x, 0));
  }
  input[type='checkbox'].switch:checked {
    --ab: var(--active-inner);
    --x: 17px;
  }
  input[type='checkbox'].switch:disabled:not(:checked):after {
    opacity: .6;
  }
  input[type='radio'] {
    border-radius: 50%;
  }
  input[type='radio']:after {
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: var(--active-inner);
    opacity: 0;
    -webkit-transform: scale(var(--s, 0.7));
            transform: scale(var(--s, 0.7));
  }
  input[type='radio']:checked {
    --s: .5;
  }
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

* {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

*:before, *:after {
  -webkit-box-sizing: inherit;
          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: #2F2F2E;
  --bc-1: #C41F25;
  --bc-1-lighter-30: #75cfee;
  --bc-2: #2f2f2e;
  --bc-2-lighter-30: #7fd3ef;
  --bc-3: #00d592;
  --bc-3-lighter-30: #7feac8;
  --light-grey: #f6f6f6;
  --dark-grey: #6d6d6d;
  --beige: #EDEDDF;
  --beige-claro: #F5F5EC;
  --beige-oscuro: #e0e0d3;
  --azul: #225384;
  --naranja: #f17c24;
  --turquesa: #3da4a1;
}

.bg {
  --bg-color: transparent;
  background-color: var(--bg-color);
}

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

.bg--white {
    background-color: var(--beige-claro);
  --bg-color: #ffffff;
}

.bg--hov-white:hover {
  --bg-color: #ffffff;
}

.bg--hov-white {
  --bg-color: #ffffff;
}

.bg--black {
  --bg-color: #2F2F2E;
}

.bg--hov-black:hover {
  --bg-color: #000000;
}

.bg--hov-black {
  --bg-color: #000000;
}

.bg--bg-1, .top--article {
  --bg-color: #C41F25;
}

.bg--light-grey {
  --bg-color: #ffffff;/*f6f6f6*/
}

.bg--hov-bg-1:hover {
  --bg-color: #00908C;
}

.bg--hov-bg-1 {
  --bg-color: #00908C;
}

.bg--bg-2 {
  --bg-color: #7366fc;
}

.bg--hov-bg-2:hover {
  --bg-color: #7366fc;
}

.bg--hov-bg-2 {
  --bg-color: #7366fc;
}

.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--hov-white {
  --ft-color: #ffffff;
}

.ft--black {
  --ft-color: #000000;
}

.ft--hov-black:hover {
  --ft-color: #000000;
}

.ft--hov-black {
  --ft-color: #000000;
}

.ft--ft-1 {
  --ft-color: #00908C;
}

.ft--hov-ft-1:hover {
  --ft-color: #00908C;
}

.ft--hov-ft-1 {
  --ft-color: #00908C;
}

.ft--ft-2 {
  --ft-color: #7366fc;
}

.ft--hov-ft-2:hover {
  --ft-color: #7366fc;
}

.ft--hov-ft-2 {
  --ft-color: #7366fc;
}

.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--hov-white {
  --bc-color: #ffffff;
}

.bc--black {
  --bc-color: #000000;
}

.bc--hov-black:hover {
  --bc-color: #000000;
}

.bc--hov-black {
  --bc-color: #000000;
}

.bc--bc-1 {
  --bc-color: #00908C;
}

.bc--hov-bc-1:hover {
  --bc-color: #00908C;
}

.bc--hov-bc-1 {
  --bc-color: #00908C;
}

.bc--bc-2 {
  --bc-color: #7366fc;
}

.bc--hov-bc-2:hover {
  --bc-color: #7366fc;
}

.bc--hov-bc-2 {
  --bc-color: #7366fc;
}

:root {
  --content-max-width: 1420px;
  --content-medium-width: 1200px;
  --content-min-width: 950px;
  --top-large-height: 700px;
  --top-medium-height: 550px;
  --top-small-height: 400px;
  --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;
  --height-header-private-area: 210px;
}

@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: 'Montserrat';
  src: url("fonts/Montserrat-Medium.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat-Light';
  src: url("fonts/Montserrat-Light.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat-Bold';
  src: url("fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: bold;
  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: 'Degular';
  --display-l-fs: 6rem;
  --display-l-fw: 300;
  --display-l-lh: 8rem;
  /* DISPLAY M FONT FAMILY, FONT SIZE, FONT WEIGHT AND LINE HEIGHT */
  --display-m-ff: 'Degular';
  --display-m-fs: 5.2rem;
  --display-m-fw: 300;
  --display-m-lh: 6.4rem;
  /* DISPLAY S FONT FAMILY, FONT SIZE, FONT WEIGHT AND LINE HEIGHT */
  --display-s-ff: 'Degular';
  --display-s-fs: 4.3rem;
  --display-s-fw: 300;
  --display-s-lh: 4.8rem;
  /* HEADLINE FONT FAMILY, FONT SIZE, FONT WEIGHT AND LINE HEIGHT */
  --headline-ff: 'Degular';
  --headline-fs: 2.5rem;
  --headline-fw: 300;
  --headline-lh: 1.2;
  /* TITLE FONT FAMILY, FONT SIZE, FONT WEIGHT AND LINE HEIGHT */
  --title-ff: 'Degular';
  --title-fs: 2.5rem;
  --title-fw: 300;
  --title-lh: 3.5rem;
  /* TITLE FONT FAMILY, FONT SIZE, FONT WEIGHT AND LINE HEIGHT */
  --subtitle-ff: 'Degular';
  --subtitle-fs: 2rem;
  --subtitle-fw: 300;
  --subtitle-lh: 3rem;
  /* BUTTON FONT FAMILY, FONT SIZE, FONT WEIGHT AND LINE HEIGHT */
  --button-ff: 'Degular';
  --button-fs: 1.5rem;
  --button-fw: 300;
  --button-lh: 2.7rem;
  /* BODY FONT FAMILY, FONT SIZE, FONT WEIGHT AND LINE HEIGHT */
  --body-ff: 'Degular';
  --body-fs: 1.8rem;
  --body-fw: 300;
  --body-lh: 1.2;
  /* CAPTION FONT FAMILY, FONT SIZE, FONT WEIGHT AND LINE HEIGHT */
  --caption-ff: 'Degular';
  --caption-fs: 1.5rem;
  --caption-fw: 300;
  --caption-lh: 1.2;
  /* SMALL FONT FAMILY, FONT SIZE, FONT WEIGHT AND LINE HEIGHT */
  --small-ff: 'Degular';
  --small-fs: 1rem;
  --small-fw: 300;
  --small-lh: 3.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: 3rem;
    --display-s-lh: 2.7rem;
  }
}

.display-l {
  font-family: var(--display-l-ff);
  font-size: var(--display-l-fs);
  font-weight: 600;
  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, .categoria-recambios__item h3, .filtro-recambios h3, .ecommerce .user__name {
  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);
  font-style: italic;
  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, body, .form .form-block label, .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, .langs a,
.langs span, .article__socials .date p, .articles-related .content .articles-wrapper article .article-text p,
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, .listado-productos__item h3, .listado-productos__item__precio {
  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;
  font-family: 'Montserrat-Bold';*/
}

.body-font--italic, .amount__title,
.body-font em,
body em,
.form .form-block label 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,
.langs a em,
.langs span em,
.article__socials .date p em,
.articles-related .content .articles-wrapper article .article-text p em {
  font-family: var(--body-ff);
  font-size: var(--body-fs);
  font-style: italic;
  font-weight: normal;
  line-height: var(--body-lh);
}

.caption-font, .aside__item-name, .alert__message, .form .form-block.legal {
  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;
}

h3.display-m {
  color: #225384;
  font-size: 52px;
  font-weight: 300;
  position: relative;
  line-height: 1.23;
}

@media (min-width: 768px) and (max-width: 1199px) {
  h3.display-m {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  h3.display-m {
    font-size: 40px !important;
  }
}

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;
}

/* -------------------------- /
/ Works on Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: white;
}

/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 12px;
}

*::-webkit-scrollbar-track {
  background: white;
}

*::-webkit-scrollbar-thumb {
  background-color: var(--bc-1);
  border-radius: 20px;
  border: 2px solid white;
}

a {
  font-weight: bold;
  color: var(--bc-1);
  text-decoration: none;
  -webkit-transition: all 0.2s ease-out;
  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: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-out;
  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: "\2022";
  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: -webkit-box;
  display: -ms-flexbox;
  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;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.5s cubic-bezier(0.52, 0.01, 0.16, 1) 0s;
  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%;
}

@-webkit-keyframes swing {
  15% {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
  }
  30% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  50% {
    -webkit-transform: translateX(3px);
    transform: translateX(3px);
  }
  65% {
    -webkit-transform: translateX(-3px);
    transform: translateX(-3px);
  }
  80% {
    -webkit-transform: translateX(2px);
    transform: translateX(2px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes swing {
  15% {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
  }
  30% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  50% {
    -webkit-transform: translateX(3px);
    transform: translateX(3px);
  }
  65% {
    -webkit-transform: translateX(-3px);
    transform: translateX(-3px);
  }
  80% {
    -webkit-transform: translateX(2px);
    transform: translateX(2px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.block-assistant {
  position: fixed;
  top: 11%;
  right: 0%;
  z-index: 110;
}

@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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          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;
  }
}

.block-assistant.swing:hover .background {
  -webkit-animation: swing 1s ease;
  animation: swing 1s ease;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0;
  color: var(--g-80);
}

.wrapper {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.main {
  margin-top: 65px;
  position: relative;
}
@media (min-width: 768px) {
  .main {
    margin-top: 200px !important;
  }

}
@media (min-width: 1200px) {
  .main {
    margin-top: 250px !important;/*120*/
  }
}
.main .submenu:hover {
  -webkit-transform: translateY(0%) !important;
          transform: translateY(0%) !important;
  z-index: 4 !important;
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
}

.main .submenu {
  -webkit-transform: translateY(-150%);
          transform: translateY(-150%);
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
  z-index: 0;
  position: fixed;
  top: 80px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background-color: var(--bc-1);
  width: 100%;
  left: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  padding: 50px 20%;
  gap: 50px;
}

.main .submenu .mcategorie {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.main .submenu .mcategorie a span {
  color: white !important;
  font-weight: normal;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.main .submenu .mcategorie a:hover span {
  color: lightgray !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.main .submenu .mcategorie .submenu-link span {
  color: lightgray !important;
  font-size: 1.5rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.main .submenu .mcategorie .submenu-link:hover span {
  color: white !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media (min-width: 1200px) and (max-width: 1600px) {
  .main .submenu {
    -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
    padding: 50px 10%;
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .main {
    margin-top: 0;
  }
}

.main__private-area {
  margin-top: var(--height-header-private-area);
  background-color: #eaeaea;
}

@media (max-width: 767px) {
  .main__private-area {
    margin-top: 0px;
  }
}

.main .menu-talk-us {
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  top: 80px;
  left: 50%;
  -webkit-transform: translate(-50%, -300px);
          transform: translate(-50%, -300px);
  z-index: 0;
  width: 75%;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  opacity: 0;
}

.main .menu-talk-us.active {
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
  z-index: 2;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  opacity: 1;
}

@media (max-width: 767px) {
  .main .menu-talk-us.active {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 90%;
    z-index: 101;
  }
  .main .menu-talk-us.active .menu-talk-us__title {
    width: 100%;
  }
  .main .menu-talk-us.active .menu-talk-us__title h3 {
    text-align: center;
  }
  .main .menu-talk-us.active .menu-talk-us__items {
    width: 100%;
  }
  .main .menu-talk-us.active .menu-talk-us__items .text {
    text-align: center;
  }
}

.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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.main .menu-talk-us__items .menu-talk-us__item {
  width: 33.333%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: 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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex.row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.flex.row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.flex.column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex.column-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

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

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

.flex.justify-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.flex.justify-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.flex.justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex.justify-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex.justify-around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.flex.items-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.flex.items-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

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

.flex.items-baseline {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.flex.items-stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.flex.content-start {
  -ms-flex-line-pack: start;
      align-content: flex-start;
}

.flex.content-end {
  -ms-flex-line-pack: end;
      align-content: flex-end;
}

.flex.content-center {
  -ms-flex-line-pack: center;
      align-content: center;
}

.flex.content-between {
  -ms-flex-line-pack: justify;
      align-content: space-between;
}

.flex.content-around {
  -ms-flex-line-pack: distribute;
      align-content: space-around;
}

.flex.content-stretch {
  -ms-flex-line-pack: 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 {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.flex .item.grow-2 {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
}

.flex .item.grow-3 {
  -webkit-box-flex: 3;
      -ms-flex-positive: 3;
          flex-grow: 3;
}

.flex .item.grow-4 {
  -webkit-box-flex: 4;
      -ms-flex-positive: 4;
          flex-grow: 4;
}

.flex .item.start {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.flex .item.end {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.flex .item.center {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.flex .item.baseline {
  -ms-flex-item-align: baseline;
      align-self: baseline;
}

.flex .item.stretch {
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
}

.flex .item.full {
  width: 100%;
}

.flex .item.oneoftwo {
  width: 50%;
}

.flex .item.oneofthree {
  width: 33.33333%;
}

.flex .item.twoofthree {
  width: 66.66667%;
}

.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.66667%;
}

.flex .item.twoofsix {
  width: 33.33333%;
}

.flex .item.threeofsix {
  width: 50%;
}

.flex .item.fourofsix {
  width: 66.66667%;
}

.flex .item.fiveofsix {
  width: 83.33333%;
}

.flex .item.oneofseven {
  width: 14.28571%;
}

.flex .item.twoofseven {
  width: 28.57143%;
}

.flex .item.threeofseven {
  width: 42.85714%;
}

.flex .item.fourofseven {
  width: 57.14286%;
}

.flex .item.fiveofseven {
  width: 71.42857%;
}

.flex .item.sixofseven {
  width: 85.71429%;
}

.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.11111%;
}

.flex .item.twoofnine {
  width: 22.22222%;
}

.flex .item.threeofnine {
  width: 33.33333%;
}

.flex .item.fourofnine {
  width: 44.44444%;
}

.flex .item.fiveofnine {
  width: 55.55556%;
}

.flex .item.sixofnine {
  width: 66.66667%;
}

.flex .item.sevenofnine {
  width: 77.77778%;
}

.flex .item.eightofnine {
  width: 88.88889%;
}

.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.09091%;
}

.flex .item.twoofeleven {
  width: 18.18182%;
}

.flex .item.threeofeleven {
  width: 27.27273%;
}

.flex .item.fourofeleven {
  width: 36.36364%;
}

.flex .item.fiveofeleven {
  width: 45.45455%;
}

.flex .item.sixofeleven {
  width: 54.54545%;
}

.flex .item.sevenofeleven {
  width: 63.63636%;
}

.flex .item.eightofeleven {
  width: 72.72727%;
}

.flex .item.nineofeleven {
  width: 81.81818%;
}

.flex .item.tenofeleven {
  width: 90.90909%;
}

.flex .item.oneoftwelve {
  width: 8.33333%;
}

.flex .item.twooftwelve {
  width: 16.66667%;
}

.flex .item.threeoftwelve {
  width: 25%;
}

.flex .item.fouroftwelve {
  width: 33.33333%;
}

.flex .item.fiveoftwelve {
  width: 41.66667%;
}

.flex .item.sixoftwelve {
  width: 50%;
}

.flex .item.sevenoftwelve {
  width: 58.33333%;
}

.flex .item.eightoftwelve {
  width: 66.66667%;
}

.flex .item.nineoftwelve {
  width: 75%;
}

.flex .item.tenoftwelve {
  width: 83.33333%;
}

.flex .item.elevenoftwelve {
  width: 91.66667%;
}

/* -------------------------- */
.grid {
  display: -ms-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 {
  -ms-grid-column-span: 2;
      grid-column-end: span 2;
}

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

@media screen and (max-width: 1200px) {
  .grid__item--cs-1 {
    -ms-grid-column-span: 6;
        grid-column-end: span 6;
  }
}

.grid__item--cs-1-5 {
  -ms-grid-column-span: 3;
      grid-column-end: span 3;
}

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

@media screen and (max-width: 1070px) {
  .grid__item--cs-1-5 {
    -ms-grid-column-span: 6;
        grid-column-end: span 6;
  }
}

.grid__item--cs-2 {
  -ms-grid-column-span: 4;
      grid-column-end: span 4;
}

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

@media screen and (max-width: 1200px) {
  .grid__item--cs-2 {
    -ms-grid-column-span: 6;
        grid-column-end: span 6;
  }
}

.grid__item--cs-3 {
  -ms-grid-column-span: 6;
      grid-column-end: span 6;
}

.content--item.grid__item--cs-3.grid__item--rs-1items-start hr {
    border: none !important;
    margin-bottom: 0 !important;
}

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

.grid__item--rs-1 {
  -ms-grid-row-span: 1;
      grid-row-end: span 1;
}

.grid__item--rs-2 {
  -ms-grid-row-span: 2;
      grid-row-end: span 2;
}

.grid__item--rs-3 {
  -ms-grid-row-span: 3;
      grid-row-end: span 3;
}

.grid-col-1 {
  -ms-grid-column-span: 2;
      grid-column-end: span 2;
}

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

.grid-col-1-5 {
  -ms-grid-column-span: 3;
      grid-column-end: span 3;
}

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

.grid-col-2 {
  -ms-grid-column-span: 4;
      grid-column-end: span 4;
}

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

.grid-col-3 {
  -ms-grid-column-span: 6;
      grid-column-end: span 6;
}

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

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

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

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

.items {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: none;
      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 {
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
}

.items--1 .item:last-child {
  margin-bottom: 0;
}

.items--2 {
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 767px) {
  .items--2 {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.items--3 {
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
}

@media (min-width: 768px) and (max-width: 1199px) {
  .items--3 {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .items--3 {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.items--4 {
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
}

@media (min-width: 768px) and (max-width: 1199px) {
  .items--4 {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .items--4 {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.items--5 {
  -ms-grid-columns: (1fr)[5];
      grid-template-columns: repeat(5, 1fr);
}

@media (min-width: 768px) and (max-width: 1199px) {
  .items--5 {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .items--5 {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.items--6 {
  -ms-grid-columns: (1fr)[6];
      grid-template-columns: repeat(6, 1fr);
}

@media (min-width: 768px) and (max-width: 1199px) {
  .items--6 {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .items--6 {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.js-animate {
  opacity: 0;
  -webkit-transition: opacity 0.6s, -webkit-transform 0.6s cubic-bezier(0.42, 0.01, 0.23, 1);
  transition: opacity 0.6s, -webkit-transform 0.6s cubic-bezier(0.42, 0.01, 0.23, 1);
  transition: transform 0.6s cubic-bezier(0.42, 0.01, 0.23, 1), opacity 0.6s;
  transition: transform 0.6s cubic-bezier(0.42, 0.01, 0.23, 1), opacity 0.6s, -webkit-transform 0.6s cubic-bezier(0.42, 0.01, 0.23, 1);
}

.js-animate--translate-up {
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}

.js-animate--translate-right {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.js-animate--translate-left {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

.js-animate--fade-in {
  -webkit-transform: none;
          transform: none;
}

.js-animate--active {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

/* -------------------------- */
/* ----- HEADER STYLES ------ */
/* -------------------------- */
.header {
  position: absolute;
  z-index: var(--z-index--header);
  width: 100%;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.header .logo {
  position: absolute;
  top: 50%;
  left: 25px;
  -webkit-transform: translate(0, -50%);
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          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;
  -webkit-transform: translate(0, 50%);
          transform: translate(0, 50%);
}

.header__top .top__items .items__item a {
  color: var(--white);
  font-size: 15px;
  margin: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 3px 0;
  position: relative;
}

@media (max-width: 767px) {
  .header__top .top__items .items__item a {
    text-align: center;
    margin: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: 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;
  -webkit-transform: scaleX(0);
          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 {
  -webkit-transform: scaleX(1);
          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 {
  height: 400px;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .footer {
    height: unset;
  }
}

.footer .mobile {
  display: none;
}

.footer .content-menu-footer {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-top: 1px solid #dedfe1;
  border-bottom: 1px solid #dedfe1;
}

.footer .content-menu-footer .block {
  display: -webkit-box;
  display: -ms-flexbox;
  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;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.footer .content-menu-footer .block .content-links a:hover {
  color: #000;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.footer .content-second-footer .block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .footer .content-second-footer .block {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    -ms-grid-rows: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
    height: 100%;
  }
}

.footer .content-second-footer .block .content-center {
  height: 100%;
  width: 25%;
  position: relative;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .footer .content-second-footer .block .content-center {
    width: 100%;
  }
}

.footer .content-second-footer .block .content-center .content-img {
  height: 100%;
  width: 100%;
  background-size: cover;
}

.footer .content-second-footer .block .content-center .lens {
  display: block;
  background-color: rgba(0, 144, 140, 0.8);
  mix-blend-mode: multiply;
  z-index: 0;
  position: absolute;
  width: 100%;
  height: 100%;
}

.footer .content-second-footer .block .content-center2 {
  width: 25%;
  background-color: #ececec;
  height: 100%;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .footer .content-second-footer .block .content-center2 {
    width: 100%;
  }
}

.footer .content-second-footer .block .content-center2 .content-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  padding: 10%;
}

.footer .content-second-footer .block .content-center2 .content-text .title {
  color: var(--bc-1);
  font-weight: bold;
  margin-bottom: 5%;
}

.footer .content-second-footer .block .content-center2 .content-text .subtitle {
  font-size: 1.6rem;
}

.footer .content-second-footer .block .content-center2 .content-text form {
  margin-top: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  width: 100%;
}

.footer .content-second-footer .block .content-center2 .content-text form .button-block {
  margin: 0;
}

.footer .content-second-footer .block .content-center2 .content-text form input[type="email"] {
  background-color: transparent;
  border-bottom: 1px solid var(--bc-1);
}

.footer .content-second-footer .block .content-center2 .content-text form input[type="email"]::-webkit-input-placeholder {
  color: var(--bc-1);
  font-style: italic;
  font-size: 1.5rem;
}

.footer .content-second-footer .block .content-center2 .content-text form input[type="email"]:-ms-input-placeholder {
  color: var(--bc-1);
  font-style: italic;
  font-size: 1.5rem;
}

.footer .content-second-footer .block .content-center2 .content-text form input[type="email"]::-ms-input-placeholder {
  color: var(--bc-1);
  font-style: italic;
  font-size: 1.5rem;
}

.footer .content-second-footer .block .content-center2 .content-text form input[type="email"]::placeholder {
  color: var(--bc-1);
  font-style: italic;
  font-size: 1.5rem;
}

.footer .content-second-footer .block .content-center2 .content-text form input[type="submit"] {
  background-color: var(--bc-1);
  border-radius: 50px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 30px;
  color: white;
  text-transform: uppercase;
  font-weight: 600;
}

.footer .content-second-footer .block .content-left {
  width: 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: var(--bc-1);
  height: 100%;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .footer .content-second-footer .block .content-left {
    width: 100%;
  }
  .footer .content-second-footer .block .content-left .content-logo {
    padding: 10%;
    height: unset !important;
  }
  .footer .content-second-footer .block .content-left .content-bottom {
    height: unset !important;
    gap: 20px !important;
  }
}

.footer .content-second-footer .block .content-left .content-logo {
  height: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer .content-second-footer .block .content-left .content-bottom {
  height: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 5% 10%;
  gap: 50px;
}

.footer .content-second-footer .block .content-left .content-bottom .address .title {
  font-weight: bold;
}

.footer .content-second-footer .block .content-left .content-bottom .address p {
  color: white;
  font-size: 1.5rem;
}

.footer .content-second-footer .block .content-left .content-bottom .legal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer .content-second-footer .block .content-left .content-bottom .legal a {
  color: white;
  font-size: 1.2rem;
  font-weight: 500;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-align: center;
}

.footer .content-second-footer .block .content-left .content-bottom .legal a:hover {
  color: lightgray;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.footer .content-second-footer .block .content-right {
  height: 100%;
  background-color: #198d94;
  width: 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .footer .content-second-footer .block .content-right {
    width: 100%;
  }
}
.footer__logo-img {
    width: 100%;
    max-width: 220px;
}
.footer .content-second-footer .block .content-right .footer-menu a {
  color: var(--beige-claro);
  text-transform: uppercase;
  font-weight: normal;
  font-size: 1.5rem;
}

.footer .content-second-footer .block .content-right .social-media a {
  color: #198d94;
  background-color: #124b61;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  width: 30px;
  font-size: 16px;
  text-decoration: none !important;
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.footer .content-second-footer .block .content-right .social-media a:hover {
    opacity: .6;
}
.footer .content-second-footer .block .content-right .social-media a:hover i {
  /*-webkit-animation: jello-horizontal 0.9s both;
  animation: jello-horizontal 0.9s both;*/
}

.footer .content-second-footer .block .content-right .footer-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  width: 60%;
}

.footer .content-second-footer .block .content-right .footer-menu a {
  font-weight: normal;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.footer .content-second-footer .block .content-right .footer-menu a:hover {
  color: #004b48;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.footer .content-second-footer .block .content-right .social-media {
  width: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
}

@-webkit-keyframes focuse {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 1;
  }
  75% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0;
  }
}

@keyframes focuse {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 1;
  }
  75% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0;
  }
}

@-webkit-keyframes jello-horizontal {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes jello-horizontal {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

/* --------------MOBILE------------ */
@media (max-width: 767px) {
  .footer {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .footer .content-second-footer {
    display: none;
  }
  .footer .mobile {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: var(--bc-1);
  }
  .footer .mobile .content-bottom {
    padding: 20px;
    width: 100%;
  }
  .footer .mobile .content-bottom .address {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
  }
  .footer .mobile .content-bottom .address p {
    color: white;
  }
  .footer .mobile .content-bottom .address p:first-child {
    font-weight: bold;
  }
  .footer .mobile .content-logo {
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
  .footer .mobile .content-logo .legal {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
  .footer .mobile .content-logo .legal a {
    color: white;
    text-align: center;
  }
}

/* -------------------------- */
/* -------------------------- */
/* ----- SIDEBAR LAYOUT ----- */
/* -------------------------- */
/* -------------------------- */
.private-area {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.private-area__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 25% 75%;
      grid-template-columns: 25% 75%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: var(--content-max-width);
  width: 100%;
  min-height: calc(100vh - 160px);
  height: 100%;
  margin: auto;
  z-index: 2;
}

@media (max-width: 767px) {
  .private-area__wrapper {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    min-height: -webkit-fit-content;
    min-height: -moz-fit-content;
    min-height: fit-content;
    padding: var(--space-m);
  }
}

.private-area__wrapper-main {
  position: relative;
  display: -ms-grid;
  display: grid;
  grid-gap: var(--space-l);
  z-index: 3;
  margin-bottom: var(--space-l);
  -webkit-transform: translateY(-60px);
          transform: translateY(-60px);
  -ms-grid-column: 2;
      grid-column-start: 2;
}

@media (max-width: 767px) {
  .private-area__wrapper-main {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    margin-bottom: 0;
  }
}

.private-area__wrapper-main.grid-1-2 {
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
}

@media (max-width: 767px) {
  .private-area__wrapper-main.grid-1-2 {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.private-area__wrapper-main.grid-1-2 .main__full-width {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
}

@media (max-width: 767px) {
  .private-area__wrapper-main.grid-1-2.home .main__full-width {
    display: none;
  }
}

.private-area__wrapper-main.grid-one-col {
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
}

.private-area__wrapper-main.grid-two-col {
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
}

.private-area__wrapper-main.grid-two-col.big-left {
  -ms-grid-columns: 1fr 33%;
      grid-template-columns: 1fr 33%;
}

@media (max-width: 767px) {
  .private-area__wrapper-main.grid-two-col.big-left {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.private-area__wrapper-main.grid-two-col.big-right {
  -ms-grid-columns: 33% 1fr;
      grid-template-columns: 33% 1fr;
}

@media (max-width: 767px) {
  .private-area__wrapper-main.grid-two-col.big-right {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .private-area__wrapper-main.grid-two-col {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.private-area__wrapper-main.grid-three-col {
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
}

.private-area__wrapper-main .home .main__full-width {
  position: relative;
  background: rgba(0, 0, 0, 0.5);
}

.private-area__wrapper-main .home__video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: brightness(0.5);
          filter: brightness(0.5);
}

.private-area__wrapper-main .home__title {
  position: absolute;
  top: 50%;
  padding: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: var(--white);
}

.private-area__wrapper-main .home__title p {
  position: relative;
  display: inline-block;
  padding: 0 var(--space-m);
  margin-bottom: var(--space-s);
}

.private-area__wrapper-main .home__title p span {
  position: relative;
  z-index: 2;
  color: var(--dark-blue-lighter-5);
}

.private-area__wrapper-main .home__title p:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 3%;
  width: 87%;
  height: 43%;
  background-color: var(--dark-salmon-lighter-50);
}

.private-area__wrapper-main .home__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15), 0 10px 10px rgba(0, 0, 0, 0.12);
          box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15), 0 10px 10px rgba(0, 0, 0, 0.12);
  background: white;
  padding: var(--space-l);
}

.private-area__wrapper-main .home__block i {
  position: relative;
  font-size: 1.5em;
  background: #14114a;
  width: 70px;
  border-radius: 50%;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: white;
  margin-bottom: 20px;
}

.private-area__wrapper-main .home__block i:after {
  content: "";
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  border: 2px solid #1C1C45;
  top: -3px;
  left: -3px;
  position: absolute;
  border-radius: 50%;
}

.private-area__wrapper-main .home__block .buttons {
  margin-top: var(--space-s);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.private-area__wrapper-main .hidden {
  display: none;
}

.private-area__wrapper-main .results.loading {
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.private-area__wrapper-main .select-new-construction {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.private-area__wrapper-main .select-new-construction__options {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.private-area__wrapper-main .select-new-construction__options select {
  width: 50%;
}

.private-area__wrapper-main .select-new-construction__options select#options {
  margin: var(--space-m);
  padding: 10px 5px;
}

.private-area__wrapper-main .select-new-construction__options input {
  width: 50%;
  border-bottom: 1px solid #1C1C45;
  padding: 10px 5px;
}

.private-area__wrapper-main .select-new-construction__options .add-new-construction {
  width: 100%;
}

.private-area__wrapper-main .select-new-construction #constructions {
  margin-top: 20px;
  margin-left: auto;
  cursor: pointer;
  text-transform: uppercase;
  background-color: white;
  color: #1C1C45;
  white-space: nowrap;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  border: 1px solid #1C1C45;
  padding: 5px 7px;
}

.private-area__wrapper-main .select-new-construction #constructions:hover {
  background-color: #1C1C45;
  color: white;
  border: 1px solid #1C1C45;
}

.private-area__wrapper-main.no-padding {
  padding: 0 !important;
}

.private-area__wrapper-main .form {
  padding-top: 0;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
}

.private-area__wrapper-main .form form {
  width: 100%;
}

.private-area__wrapper-main .form h4 + p {
  margin-bottom: var(--space-m);
}

.private-area__wrapper-main .form__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: var(--space-m);
  position: relative;
}

.private-area__wrapper-main .form__block .input-effect,
.private-area__wrapper-main .form__block select {
  background-color: #f4f3f3;
  border: 0;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  -webkit-transition: .3s box-shadow;
  transition: .3s box-shadow;
}

.private-area__wrapper-main .form__block .input-effect:focus,
.private-area__wrapper-main .form__block select:focus {
  border: 2px solid #1C1C45 !important;
}

.private-area__wrapper-main .form__block select:focus {
  outline: #1C1C45;
}

.private-area__wrapper-main .form__block .input-effect:hover {
  -webkit-box-shadow: 0 0 4px #3f2d2d;
          box-shadow: 0 0 4px #3f2d2d;
}

.private-area__wrapper-main .form__block input[type="email"],
.private-area__wrapper-main .form__block input[type="text"],
.private-area__wrapper-main .form__block input[type="password"],
.private-area__wrapper-main .form__block select {
  padding: var(--space-s) var(--space-s);
  min-width: 13.75rem;
  font-size: large;
  margin-left: var(--space-s);
}

@media tablet--portrait {
  .private-area__wrapper-main .form__block input[type="email"],
  .private-area__wrapper-main .form__block input[type="text"],
  .private-area__wrapper-main .form__block input[type="password"],
  .private-area__wrapper-main .form__block select {
    font-size: var(--headline-fs);
  }
}

@media tablet--landscape {
  .private-area__wrapper-main .form__block input[type="email"],
  .private-area__wrapper-main .form__block input[type="text"],
  .private-area__wrapper-main .form__block input[type="password"],
  .private-area__wrapper-main .form__block select {
    font-size: var(--headline-fs);
  }
}

@media mobile--portrait {
  .private-area__wrapper-main .form__block input[type="email"],
  .private-area__wrapper-main .form__block input[type="text"],
  .private-area__wrapper-main .form__block input[type="password"],
  .private-area__wrapper-main .form__block select {
    min-width: 0;
    font-size: var(--headline-fs);
  }
}

@media mobile-s--portrait {
  .private-area__wrapper-main .form__block input[type="email"],
  .private-area__wrapper-main .form__block input[type="text"],
  .private-area__wrapper-main .form__block input[type="password"],
  .private-area__wrapper-main .form__block select {
    min-width: 0;
    font-size: var(--headline-fs);
  }
}

@media mobile-s--landscape {
  .private-area__wrapper-main .form__block input[type="email"],
  .private-area__wrapper-main .form__block input[type="text"],
  .private-area__wrapper-main .form__block input[type="password"],
  .private-area__wrapper-main .form__block select {
    min-width: 0;
    font-size: var(--headline-fs);
  }
}

.private-area__wrapper-main .form__block select {
  -webkit-appearance: none;
  border: unset;
  border-bottom: 2px solid grey;
  background-color: white;
  min-height: var(--space-l);
  border-radius: 0;
  font-size: 14px;
}

@media mobile--portrait {
  .private-area__wrapper-main .form__block select {
    font-size: var(--headline-fs);
  }
}

@media mobile-s--portrait {
  .private-area__wrapper-main .form__block select {
    font-size: var(--headline-fs);
  }
}

@media mobile-s--landscape {
  .private-area__wrapper-main .form__block select {
    font-size: var(--headline-fs);
  }
}

@media mobile--portrait {
  .private-area__wrapper-main .form__block label {
    font-size: var(--headline-fs);
  }
}

@media mobile-s--portrait {
  .private-area__wrapper-main .form__block label {
    font-size: var(--headline-fs);
  }
}

@media mobile-s--landscape {
  .private-area__wrapper-main .form__block label {
    font-size: var(--headline-fs);
  }
}

.private-area__wrapper-main .form__block .form__label {
  width: 15%;
  text-align: right;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  margin-right: var(--space-m);
  font-weight: bold;
}

.private-area__wrapper-main .form__block .form__select {
  width: 71%;
}

.private-area__wrapper-main .form__block select {
  width: 100% !important;
  padding: 10px;
  font-size: var(--body-font);
  margin-left: 0px;
  border: 1px solid white;
  background: #f4f3f3 url(https://www.freeiconspng.com/uploads/arrow-up-icon-23.png) no-repeat;
  background-size: 15px;
  background-position: right 10px center;
}

.private-area__wrapper-main .form .form__input {
  width: 86%;
  border: 2px solid transparent;
}

.private-area__wrapper-main .form input[type="submit"] {
  text-transform: uppercase;
}

.private-area__wrapper-main.selector, .private-area__wrapper-main#search-result, .private-area__wrapper-main .resume {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.private-area__wrapper-main .filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: var(--space-m);
}

@media (max-width: 767px) {
  .private-area__wrapper-main .filters {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.private-area__wrapper-main .filters.flex-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.private-area__wrapper-main .filters #searcher, .private-area__wrapper-main .filters .categories-filter {
  width: 48%;
}

@media (max-width: 767px) {
  .private-area__wrapper-main .filters #searcher, .private-area__wrapper-main .filters .categories-filter {
    width: 100%;
  }
}

.private-area__wrapper-main .filters #select-category {
  width: 100%;
  padding: 10px;
}

.private-area__wrapper-main .filters.hidden {
  display: none;
}

.private-area__wrapper-main .filters #searcher {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.private-area__wrapper-main .filters #searcher.hidden {
  display: none;
}

.private-area__wrapper-main .selectable-items-list {
  width: 100%;
}

.private-area__wrapper-main .selectable-items-list.two-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 767px) {
  .private-area__wrapper-main .selectable-items-list.two-columns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.private-area__wrapper-main .selectable-items-list.two-columns .column {
  width: 50%;
}

@media (max-width: 767px) {
  .private-area__wrapper-main .selectable-items-list.two-columns .column {
    width: 100%;
  }
}

.private-area__wrapper-main .selectable-items-list .column .select-address {
  padding-top: var(--space-s);
  padding-left: var(--space-xl);
}

@media (max-width: 767px) {
  .private-area__wrapper-main .selectable-items-list .column .select-address {
    padding: var(--space-l) 0;
  }
}

.private-area__wrapper-main .selectable-items-list .column .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-bottom: 1px dashed #617bc0;
  padding: var(--space-s);
}

@media (max-width: 767px) {
  .private-area__wrapper-main .selectable-items-list .column .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.private-area__wrapper-main .selectable-items-list .column .item__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
      align-self: center;
  width: 70%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 767px) {
  .private-area__wrapper-main .selectable-items-list .column .item__info {
    width: 100%;
  }
}

.private-area__wrapper-main .selectable-items-list .column .item__selector {
  width: 30%;
  text-align: end;
}

@media (max-width: 767px) {
  .private-area__wrapper-main .selectable-items-list .column .item__selector {
    width: 100%;
  }
}

.private-area__wrapper-aside {
  position: fixed;
}

@media (max-width: 767px) {
  .private-area__wrapper-aside {
    display: none;
  }
}

.private-area__wrapper .wrapper__main-content {
  display: -ms-grid;
  display: grid;
  grid-gap: var(--space-s);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.private-area__wrapper .wrapper__main-content.full-width {
  grid-column-end: 3;
  -ms-grid-column: 1;
      grid-column-start: 1;
}

@media (max-width: 767px) {
  .private-area__wrapper .wrapper__main-content.full-width {
    grid-column-end: unset;
    -ms-grid-column: unset;
        grid-column-start: unset;
  }
}

.private-area__wrapper .wrapper__main-content.hidden {
  display: none;
}

.private-area__wrapper .wrapper__aside {
  padding: var(--space-l) 0px;
}

.private-area .card {
  background: white;
  padding: var(--space-m);
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 1px 0px #9c9c9c;
          box-shadow: 0px 0px 1px 0px #9c9c9c;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.private-area .card__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 767px) {
  .private-area .card__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.private-area .card__row-full {
  width: 100%;
}

.private-area .card__row-third {
  width: 33.333%;
}

@media (max-width: 767px) {
  .private-area .card__row-third {
    width: 100%;
  }
}

.private-area .card__row-third.blue {
  background-color: rgba(28, 28, 69, 0.1);
}

.private-area .card__row-third.gray {
  background-color: rgba(169, 169, 169, 0.1);
}

.private-area .card__row-small {
  padding: var(--space-s);
  width: 15%;
}

@media (max-width: 767px) {
  .private-area .card__row-small {
    width: 100%;
  }
}

.private-area .card__row-small.blue {
  background-color: rgba(28, 28, 69, 0.1);
}

.private-area .card__row-small.gray {
  background-color: rgba(169, 169, 169, 0.1);
}

.private-area .card__row-medium {
  padding: var(--space-s);
  width: 20%;
  background-color: rgba(28, 28, 69, 0.1);
}

@media (max-width: 767px) {
  .private-area .card__row-medium {
    width: 100%;
  }
}

.private-area .card__row-big {
  padding: var(--space-s);
  width: 35%;
  background-color: rgba(169, 169, 169, 0.1);
}

@media (max-width: 767px) {
  .private-area .card__row-big {
    width: 100%;
  }
}

.private-area .card__row-title {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: var(--space-s);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.private-area .card__row-title .row__title-text {
  width: 90%;
}

.private-area .card__row-title .row__title-text h3 {
  color: #1C1C45;
  margin-bottom: 10px;
  font-size: 1.5em;
}

.private-area .card__row-title .row__title-text h4 {
  color: #444;
  font-size: .9em;
}

.private-area .card__row-title .row__title-icon {
  width: 10%;
  text-align: right;
}

.private-area .card__row-title .row__title-icon i {
  color: #1C1C45;
  font-size: 2em;
}

.private-area .card__row-title .row__title-filters {
  width: 100%;
}

.private-area .card__row-header {
  position: relative;
}

.private-area .card__row .row__body-line {
  padding: var(--space-s);
  background-color: #f1f1f1;
  margin: var(--space-s) 0;
  line-height: 1.2;
}

.private-area .card__row .row__body-line:first-child {
  margin-top: 0;
}

.private-area .card__row .row__body-line:last-child {
  margin-bottom: 0;
}

.private-area .card__row .list-products {
  width: 100%;
  padding: var(--space-s);
}

.private-area .card__col-title {
  width: 100%;
  padding: var(--space-s);
}

.private-area .card__col.card-profile .card__col-header {
  position: relative;
  min-height: 130px;
}

.private-area .card__col.card-profile .card__col-header.bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #8d8db9;
  z-index: 1;
}

.private-area .card__col.card-profile .card__col-header .header-code {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
}

.private-area .card__col.card-profile .card__col-header .icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #14114a;
  position: absolute;
  bottom: -40px;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.private-area .card__col.card-profile .card__col-header .icon i {
  font-size: 2em;
  color: white;
}

.private-area .card__col.card-profile .card__col-header .icon:before {
  content: "";
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  border: 2px solid #1C1C45;
  top: -3px;
  left: -3px;
  position: absolute;
  border-radius: 50%;
}

.private-area .card__col.card-profile .card__col-body {
  padding: 50px var(--space-m) var(--space-m);
}

.private-area .card__col.card-profile .card__col-body .body-line {
  margin: var(--space-s) 0;
  line-height: 1.2;
}

.private-area .card__col.card-profile .card__col-body .body-line:first-child {
  margin-top: 0;
}

.private-area .card__col.card-profile .card__col-body .body-line:last-child {
  margin-bottom: 0;
}

.private-area .card__col.card-profile .card__col-body .body-line.title {
  text-align: center;
  margin-bottom: var(--space-m);
}

.private-area .card__col.card-profile .card__col-body .body-line.title .value {
  font-size: .9em;
}

.private-area .card__col.card-profile .card__col-body .body-line .label {
  font-size: .9em;
}

.private-area .card__col.card-profile .card__col-body .body-line .value {
  font-size: .7em;
}

.private-area .card__col.list .card__col-line:nth-child(odd) {
  background-color: rgba(169, 169, 169, 0.1);
}

.private-area .card__col.list .card__col-line:nth-child(even) {
  background-color: rgba(28, 28, 69, 0.1);
}

.private-area .card__col.list .card__col-line .line__header-title {
  padding: var(--space-s) var(--space-s) 0 var(--space-s);
}

.private-area .card__col.list .card__col-line .line__header-title span {
  font-weight: 800;
}

.private-area .card__col.list .card__col-line .line__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 767px) {
  .private-area .card__col.list .card__col-line .line__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.private-area .card__col.list .card__col-line .line__body-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 48%;
  padding: var(--space-s);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.private-area .card__col.list .separator {
  padding: 30px 0px;
  position: relative;
}

.private-area .card__col.list .separator:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translatey(-50%);
          transform: translatey(-50%);
  width: 100%;
  height: 1px;
  background: #1C1C45;
}

.private-area .card__col.list .separator:after {
  content: "";
  position: absolute;
  top: 60%;
  left: 0;
  -webkit-transform: translatey(-50%);
          transform: translatey(-50%);
  width: 100%;
  height: 1px;
  background: #1C1C45;
}

.private-area .card__col-table {
  padding: 10px;
}

@media (max-width: 767px) {
  .private-area .card__col-table {
    padding: 0px;
  }
}

.private-area .card__col-table .amount {
  width: 10%;
  margin: unset;
  -webkit-box-align: unset;
      -ms-flex-align: unset;
          align-items: unset;
  display: unset;
}

@media (max-width: 767px) {
  .private-area .card__col-table .amount {
    display: none;
  }
}

.private-area .card__col-table .name {
  width: 40%;
}

@media (max-width: 767px) {
  .private-area .card__col-table .name {
    display: none;
  }
}

.private-area .card__col-table .name.mobile {
  display: none;
}

@media (max-width: 767px) {
  .private-area .card__col-table .name.mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 60%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.private-area .card__col-table .name.mobile .line__item-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.private-area .card__col-table .name.mobile .line__item-top span {
  margin: 0 3px;
}

.private-area .card__col-table .code {
  width: 10%;
}

@media (max-width: 767px) {
  .private-area .card__col-table .code {
    display: none;
  }
}

.private-area .card__col-table .vehicle {
  width: 20%;
}

@media (max-width: 767px) {
  .private-area .card__col-table .vehicle {
    display: none;
  }
}

.private-area .card__col-table .discount {
  width: 10%;
}

@media (max-width: 767px) {
  .private-area .card__col-table .discount {
    display: none;
  }
}

.private-area .card__col-table .discount.mobile {
  display: none;
}

@media (max-width: 767px) {
  .private-area .card__col-table .discount.mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 40%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.private-area .card__col-table .discount.mobile .line__item-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.private-area .card__col-table .price {
  width: 10%;
}

@media (max-width: 767px) {
  .private-area .card__col-table .price {
    display: none;
  }
}

.private-area .card__col-table .table__headers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #617bc0;
}

@media (max-width: 767px) {
  .private-area .card__col-table .table__headers {
    display: none;
  }
}

.private-area .card__col-table .table__headers-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: rgba(0, 0, 0, 0.03);
  padding: 10px;
}

@media (max-width: 767px) {
  .private-area .card__col-table .table__headers-item {
    padding: 0px;
  }
}

.private-area .card__col-table .table__headers-item .label {
  font-size: 0.8em;
  font-weight: 700;
  cursor: unset;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.private-area .card__col-table .table__body-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-bottom: 1px dashed #617bc0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.private-area .card__col-table .table__body-line .line__item {
  padding: 10px;
}

.private-area .card.no-padding {
  padding: 0 !important;
}

.private-area .card .label {
  color: #1C1C45;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: unset;
  font-size: 0.8em;
}

.private-area .card .value {
  cursor: unset;
  font-weight: 600;
  font-size: 1em;
}

.private-area a.button, .private-area button.button, .private-area input[type=submit].button, .private-area span.button {
  border-radius: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  border-radius: 25px;
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
          transform: perspective(1px) translateZ(0);
  position: relative;
  -webkit-transition: all 0.15s cubic-bezier(0, 0, 0, 0.54);
  transition: all 0.15s cubic-bezier(0, 0, 0, 0.54);
  background-color: transparent;
  font-weight: 500;
  text-transform: inherit !important;
  padding: 8px 15px;
  font-size: .8em;
}

.private-area a.button:before, .private-area button.button:before, .private-area input[type=submit].button:before, .private-area span.button:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  border-radius: 30px;
}

.private-area a.button:hover, .private-area button.button:hover, .private-area input[type=submit].button:hover, .private-area span.button:hover {
  -webkit-transition: all 0.15s cubic-bezier(0, 0, 0, 0.54);
  transition: all 0.15s cubic-bezier(0, 0, 0, 0.54);
}

.private-area a.button:hover:before, .private-area button.button:hover:before, .private-area input[type=submit].button:hover:before, .private-area span.button:hover:before {
  -webkit-animation-name: hvr-ripple-out;
          animation-name: hvr-ripple-out;
}

.private-area a.button__absolute, .private-area button.button__absolute, .private-area input[type=submit].button__absolute, .private-area span.button__absolute {
  position: absolute;
  margin: 0;
  top: 50%;
  right: var(--space-l);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-box-align: unset;
      -ms-flex-align: unset;
          align-items: unset;
  -webkit-box-pack: unset;
      -ms-flex-pack: unset;
          justify-content: unset;
  width: unset;
}

.private-area a.button__positive, .private-area button.button__positive, .private-area input[type=submit].button__positive, .private-area span.button__positive {
  background-color: #1C1C45;
  color: white;
  border: 1px solid white;
}

.private-area a.button__positive:hover, .private-area button.button__positive:hover, .private-area input[type=submit].button__positive:hover, .private-area span.button__positive:hover {
  background-color: white;
  color: #1C1C45;
  border: #1C1C45 solid 1px;
}

.private-area a.button__positive:before, .private-area button.button__positive:before, .private-area input[type=submit].button__positive:before, .private-area span.button__positive:before {
  border: #1C1C45 solid 1px;
}

.private-area a.button__negative, .private-area button.button__negative, .private-area input[type=submit].button__negative, .private-area span.button__negative {
  background-color: white;
  color: #1C1C45;
  border: 1px solid #1C1C45;
}

.private-area a.button__negative:hover, .private-area button.button__negative:hover, .private-area input[type=submit].button__negative:hover, .private-area span.button__negative:hover {
  background-color: #1C1C45;
  color: white;
  border: 1px solid #1C1C45;
}

.private-area a.button__negative:before, .private-area button.button__negative:before, .private-area input[type=submit].button__negative:before, .private-area span.button__negative:before {
  border: white solid 1px;
}

.private-area a.button__full-width, .private-area button.button__full-width, .private-area input[type=submit].button__full-width, .private-area span.button__full-width {
  width: 100%;
}

.private-area .input-field {
  max-width: 380px;
  width: 100%;
  background-color: #f0f0f0;
  margin: 10px 0;
  height: 55px;
  border-radius: 55px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 15% 85%;
      grid-template-columns: 15% 85%;
  padding: 0 0.4rem;
  position: relative;
}

.private-area .input-field.full-width {
  max-width: 100%;
  -ms-grid-columns: 5% 95%;
      grid-template-columns: 5% 95%;
}

@media (max-width: 767px) {
  .private-area .input-field.full-width {
    -ms-grid-columns: 15% 85%;
        grid-template-columns: 15% 85%;
  }
}

.private-area .input-field:nth-of-type(1) {
  margin-top: 0;
}

.private-area .input-field.search {
  -ms-grid-columns: 85% 15%;
      grid-template-columns: 85% 15%;
  padding: 0 .4rem 0 1em;
  max-width: 100%;
}

.private-area .input-field.search span.submit-search {
  color: #1C1C45;
  cursor: pointer;
  text-align: center;
  position: relative;
}

.private-area .input-field.search span.submit-search:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #1C1C45;
  width: 2px;
  height: 55%;
}

.private-area .input-field.search span.submit-search:hover i {
  color: #1C1C45;
}

.private-area .input-field.search select {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: '';
  color: #1C1C45;
}

.private-area .input-field.search select option {
  color: #1C1C45;
}

.private-area .input-field.search .search-input {
  background: none;
  color: #1C1C45;
}

.private-area .input-field.search .search-input::-webkit-input-placeholder {
  color: #1C1C45;
}

.private-area .input-field.search .search-input:-ms-input-placeholder {
  color: #1C1C45;
}

.private-area .input-field.search .search-input::-ms-input-placeholder {
  color: #1C1C45;
}

.private-area .input-field.search .search-input::placeholder {
  color: #1C1C45;
}

.private-area .input-field.search .search-input#search-by-date, .private-area .input-field.search .search-input#select-category {
  border: none;
  outline: none;
  padding: 5px 0;
}

.private-area .input-field i {
  text-align: center;
  line-height: 55px;
  color: #acacac;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.private-area .input-field input {
  font-family: var(--body-ff);
  background: none;
  outline: none;
  border: none;
  line-height: 1;
  font-weight: 600;
  color: #333;
}

.private-area .input-field input:placeholder {
  color: #aaa;
  font-weight: 500;
}

.private-area form label {
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.private-area form label a {
  color: #1C1C45;
}

.private-area form label input {
  margin-right: 10px;
}

.private-area form .form__submit {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.grecaptcha-badge {
  display: none !important;
}

.private-area__login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #1c1c4514;
}

.private-area__login .private-area__wrapper {
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
}

.private-area__login .private-area__wrapper .login {
  -ms-grid-column: unset;
      grid-column-start: unset;
}

.login {
  position: relative;
  background-color: #fff;
  min-height: 90vh;
  overflow: hidden;
  width: 65%;
  margin: 20px auto;
}

.login:before {
  content: "";
  position: absolute;
  height: 2000px;
  width: 2000px;
  top: -10%;
  right: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #1C1C45;
  -webkit-transition: 1.8s ease-in-out;
  transition: 1.8s ease-in-out;
  z-index: 6;
}

.login .forms-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.login .forms-container .signin-signup {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 75%;
  width: 50%;
  -webkit-transition: .5s 0.7s ease-in-out;
  transition: .5s 0.7s ease-in-out;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  z-index: 3;
  padding: 0 50px;
}

.login .forms-container .signin-signup .login__recover {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.login .forms-container .signin-signup .login__recover a {
  color: #444;
  padding: 0 20px;
  font-weight: 200;
  font-size: .8em;
}

.login .forms-container .signin-signup form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: all 0.2s 0.7s;
  transition: all 0.2s 0.7s;
  overflow: hidden;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1 / 2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1 / 2;
}

.login .forms-container .signin-signup form.sign-up-form {
  opacity: 0;
  z-index: 1;
}

.login .forms-container .signin-signup form.sign-in-form {
  opacity: 1;
  z-index: 2;
}

.login .forms-container .signin-signup form .title {
  color: #444;
  margin-bottom: 10px;
  font-size: 1.5em;
}

.login .forms-container .signin-signup form input {
  font-family: var(--body-ff);
}

.login .forms-container .signin-signup form .input-field {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.login .forms-container .signin-signup form .social-text {
  padding: 0.7rem 0;
}

.login .forms-container .signin-signup form .social-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.login .forms-container .signin-signup form .social-media .social-icon {
  height: 46px;
  width: 46px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0.45rem;
  color: #333;
  border-radius: 50%;
  border: 1px solid #333;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.login .forms-container .signin-signup form .social-media .social-icon:hover {
  color: #4481eb;
  border-color: #4481eb;
}

.login .panels-container {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
}

.login .panels-container .image {
  width: 100%;
  -webkit-transition: -webkit-transform 1.1s ease-in-out;
  transition: -webkit-transform 1.1s ease-in-out;
  transition: transform 1.1s ease-in-out;
  transition: transform 1.1s ease-in-out, -webkit-transform 1.1s ease-in-out;
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.login .panels-container .panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  text-align: center;
  z-index: 7;
}

.login .panels-container .panel.left-panel {
  pointer-events: all;
  padding: 3rem 17% 2rem 12%;
}

.login .panels-container .panel.right-panel {
  pointer-events: none;
  padding: 3rem 12% 2rem 17%;
}

.login .panels-container .panel.right-panel .image,
.login .panels-container .panel.right-panel .content {
  -webkit-transform: translateX(800px);
          transform: translateX(800px);
}

.login .panels-container .panel .content {
  color: #fff;
  -webkit-transition: -webkit-transform 0.9s ease-in-out;
  transition: -webkit-transform 0.9s ease-in-out;
  transition: transform 0.9s ease-in-out;
  transition: transform 0.9s ease-in-out, -webkit-transform 0.9s ease-in-out;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.login .panels-container .panel h3 {
  font-weight: 600;
  line-height: 1;
  font-size: 1.3em;
}

.login .panels-container .panel p {
  padding: 0.7rem 0;
}

.login .panels-container .btn {
  padding: 10px 30px;
  border-radius: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  border-radius: 25px;
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
          transform: perspective(1px) translateZ(0);
  position: relative;
  -webkit-transition: all 0.15s cubic-bezier(0, 0, 0, 0.54);
  transition: all 0.15s cubic-bezier(0, 0, 0, 0.54);
  background-color: transparent;
  color: white;
  font-weight: 500;
  font-size: 1.2em;
}

.login .panels-container .btn:before {
  content: '';
  position: absolute;
  border: white solid 1px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  border-radius: 30px;
}

.login .panels-container .btn:hover {
  background: white;
  -webkit-transition: all 0.15s cubic-bezier(0, 0, 0, 0.54);
  transition: all 0.15s cubic-bezier(0, 0, 0, 0.54);
  color: black;
}

.login .panels-container .btn:hover:before {
  -webkit-animation-name: hvr-ripple-out;
          animation-name: hvr-ripple-out;
}

.login.sign-up-mode:before {
  -webkit-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
  right: 50%;
}

.login.sign-up-mode .forms-container .signin-signup {
  left: 25%;
}

.login.sign-up-mode .forms-container .signin-signup form.sign-up-form {
  opacity: 1;
  z-index: 2;
}

.login.sign-up-mode .forms-container .signin-signup form.sign-in-form {
  opacity: 0;
  z-index: 1;
}

.login.sign-up-mode .panels-container .left-panel {
  pointer-events: none;
}

.login.sign-up-mode .panels-container .left-panel .image, .login.sign-up-mode .panels-container .left-panel .content {
  -webkit-transform: translateX(-800px);
          transform: translateX(-800px);
}

.login.sign-up-mode .panels-container .right-panel {
  pointer-events: all !important;
}

.login.sign-up-mode .panels-container .right-panel .image, .login.sign-up-mode .panels-container .right-panel .content {
  -webkit-transform: translateX(0%) !important;
          transform: translateX(0%) !important;
}

@media (max-width: 870px) {
  .login {
    min-height: 800px;
    height: 100vh;
  }
  .login .signin-signup {
    width: 100%;
    top: 95%;
    -webkit-transform: translate(-50%, -100%);
            transform: translate(-50%, -100%);
    -webkit-transition: 1s 0.8s ease-in-out;
    transition: 1s 0.8s ease-in-out;
  }
  .login .signin-signup,
  .login.sign-up-mode .signin-signup {
    left: 50%;
  }
  .login .panels-container {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -ms-grid-rows: 1fr 2fr 1fr;
        grid-template-rows: 1fr 2fr 1fr;
  }
  .login .panel {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 2.5rem 8%;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / 2;
  }
  .login .right-panel {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3 / 4;
  }
  .login .left-panel {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1 / 2;
  }
  .login .image {
    width: 200px;
    -webkit-transition: -webkit-transform 0.9s ease-in-out;
    transition: -webkit-transform 0.9s ease-in-out;
    transition: transform 0.9s ease-in-out;
    transition: transform 0.9s ease-in-out, -webkit-transform 0.9s ease-in-out;
    -webkit-transition-delay: 0.6s;
            transition-delay: 0.6s;
  }
  .login .panel .content {
    padding-right: 15%;
    -webkit-transition: -webkit-transform 0.9s ease-in-out;
    transition: -webkit-transform 0.9s ease-in-out;
    transition: transform 0.9s ease-in-out;
    transition: transform 0.9s ease-in-out, -webkit-transform 0.9s ease-in-out;
    -webkit-transition-delay: 0.8s;
            transition-delay: 0.8s;
  }
  .login .panel p {
    padding: 0.5rem 0;
  }
  .login .btn.transparent {
    width: 110px;
    height: 35px;
  }
  .login:before {
    width: 1500px;
    height: 1500px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    left: 30%;
    bottom: 68%;
    right: initial;
    top: initial;
    -webkit-transition: 2s ease-in-out;
    transition: 2s ease-in-out;
  }
  .login.sign-up-mode:before {
    -webkit-transform: translate(-50%, 100%);
            transform: translate(-50%, 100%);
    bottom: 32%;
    right: initial;
  }
  .login.sign-up-mode .left-panel .image,
  .login.sign-up-mode .left-panel .content {
    -webkit-transform: translateY(-300px);
            transform: translateY(-300px);
  }
  .login.sign-up-mode .right-panel .image,
  .login.sign-up-mode .right-panel .content {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  .login .right-panel .image,
  .login .right-panel .content {
    -webkit-transform: translateY(300px);
            transform: translateY(300px);
  }
  .login.sign-up-mode .signin-signup {
    top: 5%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}

@media (max-width: 570px) {
  .login {
    padding: 1.5rem;
  }
  .login form {
    padding: 0 1.5rem;
  }
  .login .image {
    display: none;
  }
  .login .panel .content {
    padding: 0.5rem 1rem;
  }
  .login:before {
    bottom: 72%;
    left: 50%;
  }
  .login.sign-up-mode:before {
    bottom: 28%;
    left: 50%;
  }
}

.aside a {
  color: #1C1C45;
}

.aside a.current span {
  font-weight: 800;
}

.aside__block {
  margin-bottom: var(--space-s);
  padding: var(--space-m);
  border-radius: 10px;
}

.aside__block:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.aside__block--end {
  padding: 0;
}

.aside__block.active .aside__submenu {
  max-height: -webkit-fit-content !important;
  max-height: -moz-fit-content !important;
  max-height: fit-content !important;
}

.aside__item {
  margin-bottom: var(--space-s);
  position: relative;
}

.aside__item-name {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.aside__item-effect {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.aside__item-effect:hover {
  color: #1C1C45;
  outline: none;
}

.aside__item-effect span {
  position: relative;
  cursor: pointer;
}

.aside__item-effect span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  color: transparent;
  content: "•";
  text-shadow: transparent 0px 0px;
  font-size: 1.5em;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  pointer-events: none;
  -webkit-transition: text-shadow 0.3s ease 0s, color 0.3s ease 0s;
  transition: text-shadow 0.3s ease 0s, color 0.3s ease 0s;
}

.aside__item-effect span:hover::before {
  color: #1C1C45;
  text-shadow: 15px 0 #1C1C45, -15px 0 #1C1C45;
}

.aside__item:last-child {
  margin-bottom: 0;
}

.aside__item:last-child .aside__item-name {
  border-bottom: none;
}

.aside__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  text-decoration: none;
}

.aside__item-counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 5px;
}

.aside__item-icon {
  margin-left: var(--space-s);
  margin-right: var(--space-s);
  font-size: 20px;
}

.aside__item-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: calc(var(--space-s)*1.2) 0;
  border-bottom: 1px solid var(--white-pure);
  color: black;
}

.aside__item-name i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
      align-self: center;
  color: #1C1C45;
  padding-right: var(--space-s);
  font-size: 21px;
  width: 40px;
}

.aside__item:hover {
  border-color: var(--azure);
}

.aside__item--current, .aside__item--current:hover {
  border-color: var(--azure);
}

.aside__submenu {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.2s ease-out;
  transition: max-height 0.2s ease-out;
  padding-left: var(--space-m);
}

/* --------------------------- */
/* ----- ANCHORS LAYOUT ------ */
/* --------------------------- */
.anchors-bottom-info {
  width: 100%;
  background-color: var(--g-10);
  position: -webkit-sticky;
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  padding: 0;
}

.anchors-bottom-info .content .icon {
  padding: var(--space-xs) var(--space-s);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.anchors-bottom-info .content .icon img {
  max-height: 55px;
  max-width: 55px;
}

.anchors-bottom-info .content .anchors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: var(--white);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      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: 125;
  top: 0%;
  width: 100%;
  padding: var(--space-s);
  border-radius: 0;
  background-color: var(--bg-color);
  color: var(--ft-color);
  -webkit-box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
          box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  -webkit-transition: all 0.5s var(--cubic-end-quick);
  transition: all 0.5s var(--cubic-end-quick);
}

.alert--success {
  --bg-color: #2D9935;
}

.alert--error {
  --bg-color: #BE0411;
}

.alert--info {
  --bg-color: var(--blue-alert);
}

.alert--warning {
  --ft-color: var(--black);
  --bg-color: var(--yellow-alert);
}

.alert--hidden {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
}

.alert__close {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.alert__message {
  text-align: center;
  font-size: 1.3rem;
}

.alert__message span {
  font-size: 1.1em;
  font-weight: 700;
}

.scrollTop {
  position: fixed;
  background-color: var(--bc-1);
  width: 50px;
  height: 50px;
  z-index: 10;
  bottom: 30px;
  right: 30px;
  border-radius: 50%;
  color: white;
  text-align: center;
  line-height: 46px;
  font-size: 20px;
  -webkit-box-shadow: 0px 0px 5.3px rgba(0, 0, 0, 0.069), 0px 0px 17.9px rgba(0, 0, 0, 0.101), 0px 0px 80px rgba(0, 0, 0, 0.17);
          box-shadow: 0px 0px 5.3px rgba(0, 0, 0, 0.069), 0px 0px 17.9px rgba(0, 0, 0, 0.101), 0px 0px 80px rgba(0, 0, 0, 0.17);
  cursor: pointer;
  -webkit-transform: translateX(1000%);
          transform: translateX(1000%);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.scrollTop.active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

article {
  position: relative;
  margin: 0;
  padding: 0;
  overflow: hidden;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2fr;
      grid-template-columns: 1fr 2fr;
  -ms-grid-rows: 40px auto;
      grid-template-rows: 40px auto;
}

article:hover .article-text .article-content .title-content a h3.headline-font, article:hover .article-text .article-content .title-content a .categoria-recambios__item h3, .categoria-recambios__item article:hover .article-text .article-content .title-content a h3, article:hover .article-text .article-content .title-content a .filtro-recambios h3, .filtro-recambios article:hover .article-text .article-content .title-content a h3, article:hover .article-text .article-content .title-content a .ecommerce h3.user__name, .ecommerce article:hover .article-text .article-content .title-content a h3.user__name {
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  height: 100%;
  -ms-grid-row-span: 2;
      grid-row-end: span 2;
}

article .article-text {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          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 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  color: var(--white);
  height: 100%;
  z-index: var(--z-index--highlight);
}

article .article-text .article-content .title-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  opacity: 1;
  padding: var(--space-m) 0;
  -webkit-transition: opacity 0.6s;
  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, article .article-text .article-content .title-content .categoria-recambios__item h3, .categoria-recambios__item article .article-text .article-content .title-content h3, article .article-text .article-content .title-content .filtro-recambios h3, .filtro-recambios article .article-text .article-content .title-content h3, article .article-text .article-content .title-content .ecommerce h3.user__name, .ecommerce article .article-text .article-content .title-content h3.user__name {
  color: var(--white);
  margin-bottom: 0;
}

article .article-text .article-content .excerpt-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  opacity: 0;
  max-height: 0;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

article .article-tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          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: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-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;
}

/* -------------------------- */
/* --- 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);
  -webkit-transition: 0.5s cubic-bezier(0.52, 0.01, 0.16, 1) 0s;
  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: -ms-grid;
  display: grid;
  height: 100vh;
  overflow: hidden;
  background: var(--transparent) !important;
  -ms-grid-columns: 2fr [4] !important;
  grid-template-columns: repeat(4, 2fr) !important;
  width: 100%;
  position: fixed;
  z-index: 2;
  -ms-grid-rows: 100%;
  grid-template-rows: 100%;
  pointer-events: none;
  opacity: 0.7;
  -webkit-animation: dropdown 4s ease;
  animation: dropdown 4s ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.lines-grid span:not(:first-child) {
  border-left: 0.5px solid rgba(var(--bc-2), 0.16);
}

/* -------------------------- */
/* --- BREADCRUMBS LAYOUT --- */
/* -------------------------- */
.breadcrumbs {
  z-index: var(--z-index--higlight);
  color: white;
  position: relative;
  left: 0px;
  width: 100%;
}

.breadcrumbs .breadcrumbs__content {
  width: var(--content-max-width);
  padding: var(--space-s) 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .breadcrumbs .breadcrumbs__content {
    padding: var(--space-s) var(--space-m);
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
}

@media (max-width: 767px) {
  .breadcrumbs .breadcrumbs__content {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
}

.breadcrumbs .breadcrumb {
  font-size: var(--body-fs);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.breadcrumbs .breadcrumb:hover {
  color: var(--bc-2);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.breadcrumbs .breadcrumb br {
  display: none;
}

.breadcrumbs .breadcrumb:after {
  content: " / ";
  display: inline-block;
  margin: 0 3px;
  font-weight: lighter;
  color: white;
}

@media (max-width: 767px) {
  .breadcrumbs .breadcrumb:after {
    /*display: none;*/
  }
}

.breadcrumbs .breadcrumb:last-child:after {
  display: none;
}

.breadcrumbs .breadcrumb:last-child {
  font-weight: bold;
}

@media (max-width: 767px) {
  .breadcrumbs .breadcrumb:after {
    display: none;
  }
  .breadcrumbs .breadcrumb:nth-child(2)::before {
    content: " ";
    display: inline-block;
    margin-left: 5px;
    font-weight: lighter;
    color: white;
  }
  .breadcrumbs .breadcrumb:nth-child(3)::before {
    content: " ";
    display: inline-block;
    margin-left: 10px;
    font-weight: lighter;
    color: white;
  }
  .breadcrumbs .breadcrumb:nth-child(4)::before {
    content: " ";
    display: inline-block;
    margin-left: 15px;
    font-weight: lighter;
    color: white;
  }
  .breadcrumbs .breadcrumb:nth-child(5)::before {
    content: " ";
    display: inline-block;
    margin-left: 20px;
    font-weight: lighter;
    color: white;
  }
}

.breadcrumbs a {
  color: white;
  font-weight: lighter;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-shadow: none !important;
}

.breadcrumbs a:hover {
  text-decoration: underline;
  color: var(--bc-1);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/* -------------------------- */
.button-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

.button-block--center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.button-block--start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.button-block--end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.button-block .button {
  width: 100%;
  max-width: 200px;
  padding: 8px;
  font-size: 1.2rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  margin: 10px 0;
  cursor: pointer;
}

.button-block .button p {
  margin: 0;
  height: 44px;
  line-height: 44px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 1;
  left: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  border: 2px solid var(--bc-1);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: var(--bc-1);
}

.button-block .button p span.base {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  left: 0;
  border-width: 0px;
  border-style: solid;
}

.button-block .button p span.bg {
  left: 0;
  position: absolute;
  display: none;
  width: 100%;
  height: 100%;
  z-index: 2;
  -webkit-transition: 0.3s ease-out all;
  transition: 0.3s ease-out all;
}

.button-block .button p span.text {
  z-index: 4;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: -2px;
  font-size: 1.3rem;
  font-family: var(--degular) !important;
  font-weight: 500 !important;
}

.button-block .button:hover {
  color: #ece8e1;
}

.button-block .button:hover p {
  background-color: white;
  border: 2px solid var(--bc-1);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.button-block .button:hover span.text {
  color: var(--bc-1);
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

.button-block .button:hover span.text:after {
  background: #ece8e1;
}

/* -------------------------- */
/* ----- COOKIES LAYOUT ----- */
/* -------------------------- */
.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  text-align: center;
  font-size: 11px;
  z-index: 200;
}

@media (max-width: 767px) {
  .cookies {
    padding: 20;
  }
}

.cookies .content {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cookies .content .cookie-info {
  width: 70%;
}

@media (max-width: 767px) {
  .cookies .content .cookie-info {
    width: 100%;
  }
}

.cookies .content #popup1-cookies {
  display: none;
}

.cookies .close {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
}

.cookies a {
  color: white;
}

.cookies a:hover {
  text-decoration: underline;
}

.cookies .cookies-options {
  padding: 10px 0;
  width: 100%;
  margin: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 768px) {
  .cookies .cookies-options {
    width: 100%;
  }
}

.cookies .cookies-options .button {
  font-size: larger;
  border-radius: 30px;
  border: 1px solid white;
  padding: 15px;
  margin-bottom: 0;
  cursor: pointer;
  background-color: white;
  color: black;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 768px) {
  .cookies .cookies-options .button {
    margin-left: 0 !important;
  }
}

.cookies .cookies-options .button.cookies-accept {
  background-color: transparent;
  color: white;
}

.cookies .cookies-options .button.cookies-accept:hover {
  background-color: white;
  color: black !important;
}

.cookies .cookies-options .button.cookies-cancel {
  background-color: transparent;
  color: white;
  margin-left: var(--space-m);
}

@media (max-width: 768px) {
  .cookies .cookies-options .button.cookies-cancel {
    margin-left: 0;
  }
}

.cookies .cookies-options .button.cookies-cancel:hover {
  background-color: white;
  color: black !important;
}

.cookies .cookies-options .button.cookies-config {
  background-color: transparent;
  color: white;
  margin-left: var(--space-m);
}

@media (max-width: 768px) {
  .cookies .cookies-options .button.cookies-config {
    margin-left: 0;
  }
}

.cookies .cookies-options .button.cookies-config:hover {
  background-color: white;
  color: black !important;
}

.cookies .cookies-options .button.cookies-info {
  background-color: white;
  color: black;
}

.cookies .cookies-options .button.cookies-info:hover {
  background-color: transparent;
  color: white !important;
}

@media screen and (max-width: 700px) {
  .cookies .cookies-options {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

.cookies .popup-cookies {
  max-height: 100vh;
  height: auto;
  margin: 10px auto;
  padding: 20px;
  overflow-y: scroll;
  background: #fff;
  border-radius: 5px;
  width: 40%;
  position: relative;
  -webkit-transition: all 5s ease-in-out;
  transition: all 5s ease-in-out;
}

@media screen and (max-width: 700px) {
  .cookies .popup-cookies {
    width: 80%;
  }
}

.cookies .popup-cookies .content {
  font-size: 2rem;
  color: black;
  overflow: auto;
  line-height: 3rem;
}

.cookies #popup1-cookies {
  height: 100vh;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.cookies .configure-Cookie h2 {
  color: black;
  font-size: 20px;
  margin-bottom: 20px;
  margin-top: 20px;
}

.cookies .configure-Cookie div {
  color: black;
}

.cookies .configure-Cookie div a {
  color: transparent;
}

.cookies .container-button {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  margin-top: 10px;
  gap: 20px;
}

.cookies .container-button .button {
  cursor: pointer;
  color: var(--bc-1);
  margin-bottom: 0px;
  background-color: transparent;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.cookies .container-button .button:hover {
  background-color: var(--bc-1);
  color: white;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 700px) {
  .cookies .box {
    width: 70%;
  }
  .cookies .popup {
    width: 70%;
  }
}

/* -------------------------- */
.form {
  width: 70%;
  z-index: 1;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: var(--space-l);
  margin: auto;
}

@media (max-width: 767px) {
  .form {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}

.form .form-block {
  -ms-grid-column-span: 2;
      grid-column-end: span 2;
  position: relative;
  width: 100%;
}

@media (max-width: 767px) {
  .form .form-block {
    grid-column-end: 1 !important;
  }
}

.form .form-block:not(.checkbox)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #979797;
}

.form .form-block.file:after {
  content: none;
}

.form .form-block--half-width {
  -ms-grid-column-span: 1;
      grid-column-end: span 1;
}

.form .form-block label {
  -webkit-transform-origin: left;
          transform-origin: left;
  position: absolute;
  top: 50%;
  left: 0;
  pointer-events: none;
  font-size: 20px;
  font-weight: bold;
  color: var(--bc-2);
  -webkit-transform: translateY(-120%) scale(0.7);
          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 {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form .form-block.checkbox label {
  font-size: .8em;
  position: unset;
  top: unset;
  -webkit-transform: 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--focused:not(.checkbox) label {
  -webkit-transform-origin: left;
          transform-origin: left;
  font-weight: 600;
  left: 0;
  -webkit-transform: translateY(-120%) scale(0.7);
          transform: translateY(-120%) scale(0.7);
}

.form .form-block--focused.file label {
  -webkit-transform-origin: unset;
          transform-origin: unset;
  position: absolute;
  top: 50%;
  left: var(--space-s);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.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;
  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:-ms-input-placeholder, .form .form-block input:-ms-input-placeholder, .form .form-block input::-ms-input-placeholder,
.form .form-block textarea:-ms-input-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 input::-ms-input-placeholder, .form .form-block input:-ms-input-placeholder, .form .form-block input::-ms-input-placeholder,
.form .form-block textarea::-ms-input-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 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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          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 {
  -webkit-transform: translate(0px, 0px);
          transform: translate(0px, 0px);
  opacity: 1;
}

.form .form-block textarea {
  -webkit-transition: all 0.2s ease-out;
  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;
  -webkit-transform: translateY(-80%) scale(0.7);
          transform: translateY(-80%) scale(0.7);
}

.form .form-block--textarea.form-block textarea {
  margin: 0;
}

.form .form-block--textarea.form-block.form-block--focused label {
  top: 0;
  -webkit-transform: translateY(-80%) scale(0.7);
          transform: translateY(-80%) scale(0.7);
}

.form .form-block--textarea.form-block.form-block--focused textarea {
  height: 200px;
}

.form .form-block .tooltip-content {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: 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: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background: var(--bc-2);
  left: 30px;
  padding: 5px 10px;
  font-size: 12px;
  color: white;
  -webkit-transform: translate(0px, -50%);
          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);
  -webkit-transform: rotate(45deg) translate(0, -50%);
          transform: rotate(45deg) translate(0, -50%);
}

.form .button-block {
  grid-column-end: 3;
  -ms-grid-column: 1;
      grid-column-start: 1;
}

.form .button-block .button {
  background: transparent;
}

.form .button-block .button .text {
  width: 100% !important;
  padding-left: 0 !important;
}

.form .g-recaptcha {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          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: 100%;
  overflow: hidden;
}

.image .image__content--cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.image .image__content--contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.backgroundlens--block-map {
  display: block !important;
  position: absolute;
  width: 90%;
  height: 60%;
  right: 0;
  background-color: rgba(159, 159, 158, 0.2);
}

@media (max-width: 767px) {
  .backgroundlens--block-map {
    width: 95%;
  }
}

.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.4);
}

.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: -webkit-gradient(linear, left top, left bottom, from(rgba(125, 185, 232, 0)), to(var(--bc-1)));
  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: -webkit-gradient(linear, left top, left bottom, from(rgba(125, 185, 232, 0)), to(var(--bc-2)));
  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: -webkit-gradient(linear, left top, left bottom, from(rgba(125, 185, 232, 0)), color-stop(96%, #fafcfe), color-stop(98%, #fdfeff), to(white));
  background: linear-gradient(to bottom, rgba(125, 185, 232, 0) 0%, #fafcfe 96%, #fdfeff 98%, white 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: -webkit-gradient(linear, left top, left bottom, from(rgba(125, 185, 232, 0)), to(var(--black)));
  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 */
}

.newsletter-header {
  width: 100vw;
  background-color: #EDEDDF;
  height: 40px;
  position: fixed;
  z-index: 5;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[12];
      grid-template-columns: repeat(12, 1fr);
}

.newsletter-header .content {
  -ms-grid-column: 2;
  -ms-grid-column-span: 10;
  grid-column: 2/12;/*2 / 12*/
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 992px) {
    .newsletter-header .content {
        /*margin-top: 20px;*/
    }
    
}
.newsletter-header .content .contact .langs img {
    width: 22px;
    height: auto;
}
.newsletter-header .content .contact .langs a:nth-child(3),
.newsletter-header .content .contact .langs a:nth-child(4) {
    display: none;
}
@media (max-width: 767px) {
    .newsletter-header .content .contact .langs img {
        width: 18px;
        height: auto;
    }

  .newsletter-header .content p {
    display: none;
  }
  .newsletter-header .content .contact {
    width: 100%;
  }
  .newsletter-header .content .contact a {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .newsletter-header .content .contact .langs {
    width: 70%;
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
    margin: 0;
  }
}
.newsletter-header .content p, .newsletter-header .content a {
    color: black !important;
}

.newsletter-header .content .newsletter-url {
  border: none !important;
  font-weight: bold;
  padding: 0;
}

.newsletter-header .content .contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}

.newsletter-header .content .contact a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.newsletter-header .content .contact .langs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.newsletter-header .content .contact .langs a {
  border: none;
  padding: 0 5px;
}

.newsletter-header .content p,
.newsletter-header .content a {
  color: white;
  font-size: 1.5rem;
  font-weight: normal;
}

.newsletter-header .content a {
  border-left: 1px solid white;
  border-right: 1px solid white;
  padding: 0px 10px;
}

.main-header {
  top: 40px;
  z-index: 5;
  position: fixed;
  width: 100vw;
  padding: 0; /*padding: 0 10vw;*/
  color: black;
  -webkit-transition: 0.4s ease-out;
  transition: 0.4s ease-out;
  height: 150px;/*130px*/
  background-color: #EDEDDF;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr; /*1fr 1fr 1fr*/
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr; /*1fr 1fr 1fr*/
  -ms-grid-rows: 1fr 1fr;
      grid-template-rows: 1fr 1fr;
  justify-items: flex-start;
}

.main-header .logo {
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: center;
  align-items: flex-start;
  -ms-grid-column: 2;
  grid-column: 2/2;
  -ms-grid-row: 1;
  grid-row: 1/1;
  height: 100%;
  /**/
  white-space: nowrap;
  /*overflow: hidden;*/
  text-overflow: ellipsis;
  position: relative;
}
.main-header .logo p {
  color: #B2312D;
  margin-top: 10px;
  display: block;
  poition: absolute;
  top: 14px;
  /*display: none;*/
}



@media (min-width: 992px) {
  .main-header .logo p {
    top: 55px;
  }
}

@media (max-width: 560px) {
  .main-header .logo p {
      color: #B2312D;
      margin-top: 10px;
      display: block;
      position: absolute;
      width: 280px;
      height: 44px;
      top: 35px;
      word-wrap: break-word;
      overflow-wrap: break-word;
      line-height: 1;
      font-size: 7px !important;
  }
  .logo-marquee {
      position: relative;
      top: -2px !important;
      margin: 0 3px;
      width: 22px;
  }
}

.logo g#texto {
    transform: translate(142px, 0);
}
.logo g#imago {
    transform: translate(-334px, 0px);
}

.logo-marquee {
  position: relative;
  top: -5px;
  margin: 0 3px;
}
.logo-parrafo {
  position: relative;
  top: -5px;
  margin: 0 3px;
}
.logo-banner {
  margin: 0 3px;
width: 190px;
    position: relative;
    top: -10px;
}

@media (max-width: 767px) {
  .main-header {
    height: 60%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    list-style: none;
    width: 100%;
  }
}

.main-header .phone {
  -ms-grid-column: 1;
  grid-column: 1/1;
  -ms-grid-row: 1;
  grid-row: 1/1;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.main-header .phone i {
  color: red;
  font-size: 1.5rem;
}

.main-header .phone a {
  color: black;
  font-size: 1.5rem;
  font-weight: bold;
}

.main-header .social-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  -ms-grid-column: 3;
  grid-column: 8/12; /* 3/3 */
  -ms-grid-row: 1;
  grid-row: 1/1;
  height: 100%;
  margin-left: auto;
}

.main-header .social-media .social-item i,
.main-header .social-media .social-item img {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.main-header .social-media .social-item img {
    width: 12px !important;
}
a.social-item {
    width: 24px;
    height: 24px;
    color: #EDEDDF;
    background-color: #244A5F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}
a.social-item img {
    fill: #EDEDDF;
}

@media (max-width: 767px) {
    a.social-item {
        width: 20px;
        height: 20px;
        color: #EDEDDF;
        background-color: #244A5F;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
    }
}

.main-header .social-media .social-item:hover i,
.main-header .social-media .social-item:hover img {
  opacity: .8;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 767px) {
  .main-header {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    height: 100%;
  }
  .main-header .logo {
    -ms-grid-column: 1;
    grid-column: 1/1;
    -ms-grid-row: 1;
    grid-row: 1/1;
    padding: 0 !important;
    width: 100%;
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .main-header .logo a {
    width: 170px;
  }
  .main-header .menu-icon {
    -ms-grid-column: 2;
    grid-column: 2/2;
    -ms-grid-row: 1;
    grid-row: 1/1;
    padding: 0 !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
    width: 100%;
  }
  .main-header .menu-icon .menu-icon__line {
    position: fixed;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    background: var(--azul);
  }
  .main-header .menu-icon .menu-icon__line::before {
    width: 100%;
    background: var(--azul) !important;
  }
  .main-header .menu-icon .menu-icon__line::after {
    width: 100%;
    background: var(--azul) !important;
  }
  .main-header .phone {
    -ms-grid-column: 1;
    grid-column: 1/1;
    -ms-grid-row: 2;
    grid-row: 2/2;
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    height: unset;
  }
  .main-header .social-media {
    -ms-grid-column: 2;
    grid-column: 2/2;
    -ms-grid-row: 2;
    grid-row: 2/2;
    gap: 5px !important;
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
    width: 100%;
  }

}

@media (max-width: 767px) {
  .main-header {
    position: relative;
    z-index: 5;
  }
}

.main-header ul {
  margin: 0;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.main-header .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: flex-start;
      -ms-flex-pack: flex-start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  width: 100%;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 2/6; /* 1/4 */
  -ms-grid-row: 2;
  grid-row: 2/2;
  height: 100%;
}

@media (max-width: 767px) {
  .main-header .nav-links {
    margin-left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .main-header .nav-links ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.main-header .nav-links ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  gap: 30px;
}

.main-header .nav-links ul li a {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-header .nav-links ul::before,
.main-header .nav-links li::before {
  display: none;
}

.main-header .nav-links .nav-link a {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 1.6rem;
  line-height: 1.47;
  text-decoration: none;
  color: black;
  font-weight: 500;
}

.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: -6px;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--azul);
  -webkit-transition: all 0.15s cubic-bezier(0, 0, 0, 0.54);
  transition: all 0.15s cubic-bezier(0, 0, 0, 0.54);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

@media (max-width: 767px) {
  .main-header .nav-links .nav-link a.main-link::after {
    bottom: 15px;
  }
}

.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,
.main-header .nav-links .nav-link.active > .main-link::after {
  -webkit-transform: scaleX(1);
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.main-header .nav-links ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.main-header .nav-links .aside__item-name {
  color: white !important;
}

.main-header .nav-links .aside__item-name i {
  color: white !important;
}

.main-header .nav-links .aside__item-counter {
  background-color: white !important;
  color: #272727 !important;
  margin-left: 5px;
}

.main-header .nav-links .aside__item-effect span:hover::before {
  color: white !important;
  text-shadow: 15px 0 white, -15px 0 white !important;
}

.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: 3px;
  width: 25px;
}

.main-header .menu-icon__line::before, .main-header .menu-icon__line::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 4px;
  background: #000;
  -webkit-transition: background 0.8s ease;
  transition: background 0.8s ease;
}

.main-header .menu-icon__line::before {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
}

.main-header .menu-icon__line::after {
  -webkit-transform: translateY(6px);
          transform: translateY(6px);
}

.main-header .menu-btn {
  display: none;
}

@media screen and (max-width: 767px) {
  .main-header {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 10px 40px 0 40px;
    gap: 0px;
    position: fixed;
    height: 90px;
  }
  .main-header .menu-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 50%;
    z-index: 10;
  }
  .main-header .menu-icon__line {
    -webkit-animation: closedMid 0.8s backwards;
            animation: closedMid 0.8s backwards;
    animation-direction: reverse;
  }
  .main-header .menu-icon__line::before {
    -webkit-animation: closedTop 0.8s backwards;
            animation: closedTop 0.8s backwards;
    animation-direction: reverse;
  }
  .main-header .menu-icon__line::after {
    -webkit-animation: closedBtm 0.8s backwards;
            animation: closedBtm 0.8s backwards;
    animation-direction: reverse;
  }
  .main-header .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10rem 0;
    width: 100vw;
    height: 100vh;
    font-size: 2rem;
    color: var(--bc-1);
    background: white;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  .main-header .nav-links ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .main-header .nav-links .nav-link {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    width: 100%;
    text-align: center;
    -webkit-transition: opacity 0.4s ease-in-out, -webkit-transform 0.6s cubic-bezier(0.175, 0.085, 0.32, 1.275);
    transition: opacity 0.4s ease-in-out, -webkit-transform 0.6s cubic-bezier(0.175, 0.085, 0.32, 1.275);
    transition: opacity 0.4s ease-in-out, transform 0.6s cubic-bezier(0.175, 0.085, 0.32, 1.275);
    transition: opacity 0.4s ease-in-out, transform 0.6s cubic-bezier(0.175, 0.085, 0.32, 1.275), -webkit-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;
    font-size: 2rem;
  }
  .main-header .menu-btn:checked ~ .nav-links {
    opacity: 1;
    display: block;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  .main-header .menu-btn:checked ~ .nav-links .nav-link {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-transition: opacity 0.4s ease-in-out, -webkit-transform 0.6s cubic-bezier(0.175, 0.085, 0.32, 1.275);
    transition: opacity 0.4s ease-in-out, -webkit-transform 0.6s cubic-bezier(0.175, 0.085, 0.32, 1.275);
    transition: opacity 0.4s ease-in-out, transform 0.6s cubic-bezier(0.175, 0.085, 0.32, 1.275);
    transition: opacity 0.4s ease-in-out, transform 0.6s cubic-bezier(0.175, 0.085, 0.32, 1.275), -webkit-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) {
    -webkit-transition-delay: 0.4s;
            transition-delay: 0.4s;
  }
  .main-header .menu-btn:checked ~ .nav-links .nav-link:nth-of-type(2) {
    -webkit-transition-delay: 0.5s;
            transition-delay: 0.5s;
  }
  .main-header .menu-btn:checked ~ .nav-links .nav-link:nth-of-type(3) {
    -webkit-transition-delay: 0.6s;
            transition-delay: 0.6s;
  }
  .main-header .menu-btn:checked ~ .nav-links .nav-link:nth-of-type(4) {
    -webkit-transition-delay: 0.7s;
            transition-delay: 0.7s;
  }
  .main-header .menu-btn:checked ~ .nav-links .nav-link:nth-of-type(5) {
    -webkit-transition-delay: 0.8s;
            transition-delay: 0.8s;
  }
  .main-header .menu-btn:checked ~ .nav-links .nav-link:nth-of-type(6) {
    -webkit-transition-delay: 0.9s;
            transition-delay: 0.9s;
  }
  .main-header .menu-btn:checked ~ .nav-links .nav-link:nth-of-type(7) {
    -webkit-transition-delay: 1s;
            transition-delay: 1s;
  }
  .main-header .menu-btn:checked ~ .nav-links .nav-link:nth-of-type(8) {
    -webkit-transition-delay: 1.1s;
            transition-delay: 1.1s;
  }
  .main-header .menu-btn:checked ~ .menu-icon {
    border-radius: 50%;
    -webkit-animation: pulse 1s;
            animation: pulse 1s;
  }
  .main-header .menu-btn:checked ~ .menu-icon .menu-icon__line {
    background: var(--azul);
    -webkit-animation: openMid 0.8s forwards;
            animation: openMid 0.8s forwards;
  }
  .main-header .menu-btn:checked ~ .menu-icon .menu-icon__line::before {
    background: var(--azul);
    -webkit-animation: openTop 0.8s forwards;
            animation: openTop 0.8s forwards;
  }
  .main-header .menu-btn:checked ~ .menu-icon .menu-icon__line::after {
    background: var(--azul);
    -webkit-animation: openBtm 0.8s forwards;
            animation: openBtm 0.8s forwards;
  }
}

@-webkit-keyframes pulse {
  from {
    -webkit-box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.6);
            box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.6);
  }
  to {
    -webkit-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0);
    background: rgba(255, 255, 255, 0);
  }
}

@keyframes pulse {
  from {
    -webkit-box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.6);
            box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.6);
  }
  to {
    -webkit-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0);
    background: rgba(255, 255, 255, 0);
  }
}

@-webkit-keyframes openTop {
  0% {
    -webkit-transform: translateY(-5px) rotate(0deg);
            transform: translateY(-5px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
            transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(0px) rotate(90deg);
            transform: translateY(0px) rotate(90deg);
  }
}

@keyframes openTop {
  0% {
    -webkit-transform: translateY(-5px) rotate(0deg);
            transform: translateY(-5px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
            transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(0px) rotate(90deg);
            transform: translateY(0px) rotate(90deg);
  }
}

@-webkit-keyframes closedTop {
  0% {
    -webkit-transform: translateY(-5px) rotate(0deg);
            transform: translateY(-5px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
            transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(0px) rotate(90deg);
            transform: translateY(0px) rotate(90deg);
  }
}

@keyframes closedTop {
  0% {
    -webkit-transform: translateY(-5px) rotate(0deg);
            transform: translateY(-5px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
            transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(0px) rotate(90deg);
            transform: translateY(0px) rotate(90deg);
  }
}

@-webkit-keyframes openMid {
  50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}

@keyframes openMid {
  50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}

@-webkit-keyframes closedMid {
  50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}

@keyframes closedMid {
  50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}

@-webkit-keyframes openBtm {
  0% {
    -webkit-transform: translateY(5px) rotate(0deg);
            transform: translateY(5px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
            transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(0px) rotate(90deg);
            transform: translateY(0px) rotate(90deg);
  }
}

@keyframes openBtm {
  0% {
    -webkit-transform: translateY(5px) rotate(0deg);
            transform: translateY(5px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
            transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(0px) rotate(90deg);
            transform: translateY(0px) rotate(90deg);
  }
}

@-webkit-keyframes closedBtm {
  0% {
    -webkit-transform: translateY(5px) rotate(0deg);
            transform: translateY(5px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
            transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(0px) rotate(90deg);
            transform: translateY(0px) rotate(90deg);
  }
}

@keyframes closedBtm {
  0% {
    -webkit-transform: translateY(5px) rotate(0deg);
            transform: translateY(5px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
            transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(0px) rotate(90deg);
            transform: translateY(0px) rotate(90deg);
  }
}

@-webkit-keyframes inFinderMobile {
  0% {
    -webkit-transform: translate(0%, 100%);
            transform: translate(0%, 100%);
  }
  100% {
    -webkit-transform: translate(0, 0%);
            transform: translate(0, 0%);
  }
}

@keyframes inFinderMobile {
  0% {
    -webkit-transform: translate(0%, 100%);
            transform: translate(0%, 100%);
  }
  100% {
    -webkit-transform: translate(0, 0%);
            transform: translate(0, 0%);
  }
}

@-webkit-keyframes outFinderMobile {
  0% {
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
  }
  100% {
    ransform: translate(0%, 100%);
  }
}

@keyframes outFinderMobile {
  0% {
    -webkit-transform: translate(0%, 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;
}

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

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

.material-shadow-3 {
  -webkit-box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: 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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          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);
  -webkit-transition: all 0.4s;
  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: -webkit-box;
  display: -ms-flexbox;
  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);
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          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);
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: 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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          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, .articles-related .content .articles-wrapper article .article-text a .categoria-recambios__item h3, .categoria-recambios__item .articles-related .content .articles-wrapper article .article-text a h3, .articles-related .content .articles-wrapper article .article-text a .filtro-recambios h3, .filtro-recambios .articles-related .content .articles-wrapper article .article-text a h3, .articles-related .content .articles-wrapper article .article-text a .ecommerce h3.user__name, .ecommerce .articles-related .content .articles-wrapper article .article-text a h3.user__name {
  line-height: 16px;
  text-align: left;
}

.articles-related .content .articles-wrapper article .article-text p {
  text-align: left;
  margin-bottom: var(--space-s);
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.articles-related .content .articles-wrapper article .article-text .article-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          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 {
  -webkit-box-align: end;
      -ms-flex-align: end;
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: 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 ------- */
/* -------------------------- */
@media (max-width: 767px) {
  .top {
    top: 0 !important;
    padding: 0 !important;
  }
  .top--home {
    top: 0 !important;
    height: -webkit-fit-content !important;
    height: -moz-fit-content !important;
    height: fit-content !important;
  }
  .top--home .slider .content-slider .slide .top__background .image img {
    height: 100%;
  }
}

.top {
  position: relative;
  overflow: inherit;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  top: 148px;
}

@media (min-width: 1200px) and (max-width: 1600px) {
  .top {
    padding: var(--space-xl) 0;
  }
}

.top-articles {
  height: -webkit-fit-content !important;
  height: -moz-fit-content !important;
  height: fit-content !important;
}

.top-articles .top__foreground {
  display: none;
}

.top-articles .top__slider {
  -ms-grid-column: 1 !important;
  -ms-grid-column-span: 12 !important;
  grid-column: 1/13 !important;
}

.top-articles .title-article {
  -ms-grid-column: 3;
  -ms-grid-column-span: 8;
  grid-column: 3/11;
}

.top-articles .background .image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.top-articles .background .image .lens {
  -ms-grid-column: 2;
  -ms-grid-column-span: 10;
  grid-column: 2/12;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.top-articles .background .image img {
  -ms-grid-column: 1;
  -ms-grid-column-span: 12;
  grid-column: 1/13;
  width: 1200px;
  height: 630px;
  z-index: 1;
}

.top .top__container .search {
  z-index: var(--z-index--hightlight);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px var(--bc-1) solid;
  border-bottom: 1px var(--bc-1) solid;
  padding: 10px;
  margin: 50px 0px 30px 0px;
}

.top .top__container .search .form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
}

.top .top__container .search .form input[type="text"] {
  background-color: transparent;
  width: 80%;
  line-height: 2rem;
  color: black;
  font-size: 2rem;
  font-weight: bold;
  line-height: 2rem;
}

.top .top__container .search .form input[type="text"]::-webkit-input-placeholder {
  color: black;
  font-size: 2rem;
  font-weight: bold;
  line-height: 2rem;
}

.top .top__container .search .form input[type="text"]:-ms-input-placeholder {
  color: black;
  font-size: 2rem;
  font-weight: bold;
  line-height: 2rem;
}

.top .top__container .search .form input[type="text"]::-ms-input-placeholder {
  color: black;
  font-size: 2rem;
  font-weight: bold;
  line-height: 2rem;
}

.top .top__container .search .form input[type="text"]::placeholder {
  color: black;
  font-size: 2rem;
  font-weight: bold;
  line-height: 2rem;
}

.top .top__container .search .form .submit {
  background-color: var(--bc-1);
  width: 11%;
  border-radius: 50px;
  padding: 10px 30px;
  color: white;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.5rem;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: 2px solid var(--bc-1);
  text-align: center;
}

@media (min-width: 1200px) and (max-width: 1600px) {
  .top .top__container .search .form .submit {
    width: 16%;
  }
}

@media (max-width: 767px) {
  .top .top__container .search .form .submit {
    width: 100%;
  }
}

.top .top__container .search .form .submit:hover {
  background-color: white;
  color: var(--bc-1);
  border: 2px solid var(--bc-1);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 767px) {
  .top .top__container .search .form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    padding: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
  .top .top__container .search .form input[type="text"] {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .top .top__container .search {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .top .top__container .search .title {
    width: 100%;
    padding: 0;
    border-right: none;
    text-align: center;
  }
  .top .top__container .search form {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    width: 100% !important;
    padding: 0 !important;
  }
  .top .top__container .search form input {
    width: 100% !important;
  }
}

.top h1 {
  font-size: 65px;
  font-weight: bold;
  margin: 20px 0;
  line-height: 1.1;
}

@media (max-width: 767px) {
  .top h1 {
    font-size: 2.5rem;
    margin: 5px 0;
  }
}

.top .icon {
  position: relative;
}

.top .icon:before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -140px;
  width: 90px;
  height: 120px;
}

@media (max-width: 767px) {
  .top .icon:before {
    -webkit-transform: unset;
            transform: unset;
    left: 0px;
    top: -90px;
    width: 50px;
    height: 100px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .top .icon:before {
    -webkit-transform: unset;
            transform: unset;
    left: 0px;
    top: -100px;
    width: 60px;
    height: 100px;
  }
}

.top .icon.medical-chart:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' viewBox='0 0 94 100'%3E%3Cg fill='%23FFF' fill-rule='evenodd'%3E%3Cpath d='M35.443 3.637c-5.507 0-9.988 4.49-9.988 10.008 0 5.52 4.481 10.01 9.988 10.01 5.51 0 9.992-4.49 9.992-10.01 0-5.518-4.482-10.008-9.992-10.008m0 21.716c-6.441 0-11.68-5.25-11.68-11.708 0-6.454 5.239-11.707 11.68-11.707 6.443 0 11.686 5.253 11.686 11.707 0 6.458-5.243 11.708-11.686 11.708M16.567 51.146h37.758V39.69c0-6.316-5.126-11.455-11.428-11.455h-.002l-6.719 11.666c-.15.263-.43.424-.733.424-.302 0-.58-.161-.733-.424l-6.718-11.666c-6.3.002-11.425 5.14-11.425 11.455v11.455zm38.605 1.699H15.72c-.468 0-.847-.38-.847-.85V39.691c0-7.252 5.886-13.154 13.12-13.154h.488c.303 0 .581.164.734.426l6.228 10.817 6.23-10.817c.151-.262.43-.426.733-.426h.491c7.235 0 13.121 5.902 13.121 13.154v12.304c0 .47-.38.85-.846.85z' transform='translate(0 -1)'/%3E%3Cpath d='M22.663 52.844c-.468 0-.847-.38-.847-.85V41.138c0-.469.38-.85.847-.85.468 0 .847.381.847.85v10.858c0 .469-.38.85-.847.85M48.227 52.844c-.466 0-.847-.38-.847-.85V41.138c0-.469.38-.85.847-.85.47 0 .848.381.848.85v10.858c0 .469-.379.85-.848.85M32.53 92.56h5.831v-8.507c0-.47.38-.85.846-.85H47.7v-5.839h-8.492c-.466 0-.846-.38-.846-.85v-8.507H32.53v8.508c0 .469-.38.85-.847.85h-8.49v5.838h8.49c.468 0 .847.38.847.85v8.506zm6.677 1.698h-7.524c-.468 0-.847-.38-.847-.85v-8.506h-8.49c-.468 0-.848-.38-.848-.85v-7.537c0-.47.38-.85.848-.85h8.49V67.16c0-.47.38-.85.847-.85h7.524c.47 0 .85.38.85.85v8.506h8.489c.466 0 .846.38.846.85v7.538c0 .469-.38.85-.846.85h-8.49v8.506c0 .469-.379.85-.849.85zM59.52 2.82c-.706 0-1.279.578-1.279 1.288V24.21c0 .706.573 1.28 1.278 1.28h3.234c.442 0 .81.341.845.783l.038.508.254 3.598 6.987-4.743c.14-.095.306-.146.475-.146h19.094c.703 0 1.276-.574 1.276-1.28V4.108c0-.71-.573-1.287-1.276-1.287H59.52zm3.628 29.936c-.125 0-.251-.027-.37-.085-.272-.133-.453-.4-.473-.704l-.338-4.778h-2.448c-1.638 0-2.97-1.337-2.97-2.979V4.108c0-1.647 1.332-2.986 2.97-2.986h30.927c1.639 0 2.972 1.339 2.972 2.986V24.21c0 1.642-1.333 2.979-2.972 2.979H71.613l-7.99 5.421c-.142.097-.307.146-.475.146z' transform='translate(0 -1)'/%3E%3Cpath d='M86.665 7.435H63.529c-.468 0-.847-.38-.847-.85 0-.468.379-.849.847-.849h23.136c.468 0 .847.38.847.849 0 .47-.38.85-.847.85M80.878 12.645h-17.35c-.467 0-.846-.38-.846-.85 0-.468.379-.849.847-.849h17.35c.468 0 .848.38.848.85 0 .469-.38.85-.849.85M83.241 17.848H63.53c-.468 0-.847-.38-.847-.85 0-.468.38-.849.847-.849h19.712c.468 0 .847.38.847.849 0 .47-.379.85-.847.85M76.504 23.05H63.529c-.468 0-.848-.38-.848-.849s.38-.85.848-.85h12.975c.468 0 .847.381.847.85 0 .468-.38.849-.847.849M6.038 98.731h58.818V61.837H6.038V98.73zm59.664 1.7H5.189c-.467 0-.846-.381-.846-.85V60.987c0-.47.38-.85.846-.85h60.513c.467 0 .847.38.847.85v38.594c0 .469-.38.85-.847.85z' transform='translate(0 -1)'/%3E%3Cpath d='M1.694 60.137h67.5v-7.294h-67.5v7.294zm68.347 1.699H.847c-.468 0-.847-.38-.847-.849v-8.992c0-.47.38-.85.847-.85h69.194c.468 0 .847.38.847.85v8.992c0 .468-.379.849-.847.849z' transform='translate(0 -1)'/%3E%3C/g%3E%3C/svg%3E%0A");
}

@media (max-width: 767px) {
  .top .icon.medical-chart:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' viewBox='0 0 94 100'%3E%3Cg fill='%23FFF' fill-rule='evenodd'%3E%3Cpath d='M35.443 3.637c-5.507 0-9.988 4.49-9.988 10.008 0 5.52 4.481 10.01 9.988 10.01 5.51 0 9.992-4.49 9.992-10.01 0-5.518-4.482-10.008-9.992-10.008m0 21.716c-6.441 0-11.68-5.25-11.68-11.708 0-6.454 5.239-11.707 11.68-11.707 6.443 0 11.686 5.253 11.686 11.707 0 6.458-5.243 11.708-11.686 11.708M16.567 51.146h37.758V39.69c0-6.316-5.126-11.455-11.428-11.455h-.002l-6.719 11.666c-.15.263-.43.424-.733.424-.302 0-.58-.161-.733-.424l-6.718-11.666c-6.3.002-11.425 5.14-11.425 11.455v11.455zm38.605 1.699H15.72c-.468 0-.847-.38-.847-.85V39.691c0-7.252 5.886-13.154 13.12-13.154h.488c.303 0 .581.164.734.426l6.228 10.817 6.23-10.817c.151-.262.43-.426.733-.426h.491c7.235 0 13.121 5.902 13.121 13.154v12.304c0 .47-.38.85-.846.85z' transform='translate(0 -1)'/%3E%3Cpath d='M22.663 52.844c-.468 0-.847-.38-.847-.85V41.138c0-.469.38-.85.847-.85.468 0 .847.381.847.85v10.858c0 .469-.38.85-.847.85M48.227 52.844c-.466 0-.847-.38-.847-.85V41.138c0-.469.38-.85.847-.85.47 0 .848.381.848.85v10.858c0 .469-.379.85-.848.85M32.53 92.56h5.831v-8.507c0-.47.38-.85.846-.85H47.7v-5.839h-8.492c-.466 0-.846-.38-.846-.85v-8.507H32.53v8.508c0 .469-.38.85-.847.85h-8.49v5.838h8.49c.468 0 .847.38.847.85v8.506zm6.677 1.698h-7.524c-.468 0-.847-.38-.847-.85v-8.506h-8.49c-.468 0-.848-.38-.848-.85v-7.537c0-.47.38-.85.848-.85h8.49V67.16c0-.47.38-.85.847-.85h7.524c.47 0 .85.38.85.85v8.506h8.489c.466 0 .846.38.846.85v7.538c0 .469-.38.85-.846.85h-8.49v8.506c0 .469-.379.85-.849.85zM59.52 2.82c-.706 0-1.279.578-1.279 1.288V24.21c0 .706.573 1.28 1.278 1.28h3.234c.442 0 .81.341.845.783l.038.508.254 3.598 6.987-4.743c.14-.095.306-.146.475-.146h19.094c.703 0 1.276-.574 1.276-1.28V4.108c0-.71-.573-1.287-1.276-1.287H59.52zm3.628 29.936c-.125 0-.251-.027-.37-.085-.272-.133-.453-.4-.473-.704l-.338-4.778h-2.448c-1.638 0-2.97-1.337-2.97-2.979V4.108c0-1.647 1.332-2.986 2.97-2.986h30.927c1.639 0 2.972 1.339 2.972 2.986V24.21c0 1.642-1.333 2.979-2.972 2.979H71.613l-7.99 5.421c-.142.097-.307.146-.475.146z' transform='translate(0 -1)'/%3E%3Cpath d='M86.665 7.435H63.529c-.468 0-.847-.38-.847-.85 0-.468.379-.849.847-.849h23.136c.468 0 .847.38.847.849 0 .47-.38.85-.847.85M80.878 12.645h-17.35c-.467 0-.846-.38-.846-.85 0-.468.379-.849.847-.849h17.35c.468 0 .848.38.848.85 0 .469-.38.85-.849.85M83.241 17.848H63.53c-.468 0-.847-.38-.847-.85 0-.468.38-.849.847-.849h19.712c.468 0 .847.38.847.849 0 .47-.379.85-.847.85M76.504 23.05H63.529c-.468 0-.848-.38-.848-.849s.38-.85.848-.85h12.975c.468 0 .847.381.847.85 0 .468-.38.849-.847.849M6.038 98.731h58.818V61.837H6.038V98.73zm59.664 1.7H5.189c-.467 0-.846-.381-.846-.85V60.987c0-.47.38-.85.846-.85h60.513c.467 0 .847.38.847.85v38.594c0 .469-.38.85-.847.85z' transform='translate(0 -1)'/%3E%3Cpath d='M1.694 60.137h67.5v-7.294h-67.5v7.294zm68.347 1.699H.847c-.468 0-.847-.38-.847-.849v-8.992c0-.47.38-.85.847-.85h69.194c.468 0 .847.38.847.85v8.992c0 .468-.379.849-.847.849z' transform='translate(0 -1)'/%3E%3C/g%3E%3C/svg%3E%0A");
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .top .icon.medical-chart:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' viewBox='0 0 94 100'%3E%3Cg fill='%23FFF' fill-rule='evenodd'%3E%3Cpath d='M35.443 3.637c-5.507 0-9.988 4.49-9.988 10.008 0 5.52 4.481 10.01 9.988 10.01 5.51 0 9.992-4.49 9.992-10.01 0-5.518-4.482-10.008-9.992-10.008m0 21.716c-6.441 0-11.68-5.25-11.68-11.708 0-6.454 5.239-11.707 11.68-11.707 6.443 0 11.686 5.253 11.686 11.707 0 6.458-5.243 11.708-11.686 11.708M16.567 51.146h37.758V39.69c0-6.316-5.126-11.455-11.428-11.455h-.002l-6.719 11.666c-.15.263-.43.424-.733.424-.302 0-.58-.161-.733-.424l-6.718-11.666c-6.3.002-11.425 5.14-11.425 11.455v11.455zm38.605 1.699H15.72c-.468 0-.847-.38-.847-.85V39.691c0-7.252 5.886-13.154 13.12-13.154h.488c.303 0 .581.164.734.426l6.228 10.817 6.23-10.817c.151-.262.43-.426.733-.426h.491c7.235 0 13.121 5.902 13.121 13.154v12.304c0 .47-.38.85-.846.85z' transform='translate(0 -1)'/%3E%3Cpath d='M22.663 52.844c-.468 0-.847-.38-.847-.85V41.138c0-.469.38-.85.847-.85.468 0 .847.381.847.85v10.858c0 .469-.38.85-.847.85M48.227 52.844c-.466 0-.847-.38-.847-.85V41.138c0-.469.38-.85.847-.85.47 0 .848.381.848.85v10.858c0 .469-.379.85-.848.85M32.53 92.56h5.831v-8.507c0-.47.38-.85.846-.85H47.7v-5.839h-8.492c-.466 0-.846-.38-.846-.85v-8.507H32.53v8.508c0 .469-.38.85-.847.85h-8.49v5.838h8.49c.468 0 .847.38.847.85v8.506zm6.677 1.698h-7.524c-.468 0-.847-.38-.847-.85v-8.506h-8.49c-.468 0-.848-.38-.848-.85v-7.537c0-.47.38-.85.848-.85h8.49V67.16c0-.47.38-.85.847-.85h7.524c.47 0 .85.38.85.85v8.506h8.489c.466 0 .846.38.846.85v7.538c0 .469-.38.85-.846.85h-8.49v8.506c0 .469-.379.85-.849.85zM59.52 2.82c-.706 0-1.279.578-1.279 1.288V24.21c0 .706.573 1.28 1.278 1.28h3.234c.442 0 .81.341.845.783l.038.508.254 3.598 6.987-4.743c.14-.095.306-.146.475-.146h19.094c.703 0 1.276-.574 1.276-1.28V4.108c0-.71-.573-1.287-1.276-1.287H59.52zm3.628 29.936c-.125 0-.251-.027-.37-.085-.272-.133-.453-.4-.473-.704l-.338-4.778h-2.448c-1.638 0-2.97-1.337-2.97-2.979V4.108c0-1.647 1.332-2.986 2.97-2.986h30.927c1.639 0 2.972 1.339 2.972 2.986V24.21c0 1.642-1.333 2.979-2.972 2.979H71.613l-7.99 5.421c-.142.097-.307.146-.475.146z' transform='translate(0 -1)'/%3E%3Cpath d='M86.665 7.435H63.529c-.468 0-.847-.38-.847-.85 0-.468.379-.849.847-.849h23.136c.468 0 .847.38.847.849 0 .47-.38.85-.847.85M80.878 12.645h-17.35c-.467 0-.846-.38-.846-.85 0-.468.379-.849.847-.849h17.35c.468 0 .848.38.848.85 0 .469-.38.85-.849.85M83.241 17.848H63.53c-.468 0-.847-.38-.847-.85 0-.468.38-.849.847-.849h19.712c.468 0 .847.38.847.849 0 .47-.379.85-.847.85M76.504 23.05H63.529c-.468 0-.848-.38-.848-.849s.38-.85.848-.85h12.975c.468 0 .847.381.847.85 0 .468-.38.849-.847.849M6.038 98.731h58.818V61.837H6.038V98.73zm59.664 1.7H5.189c-.467 0-.846-.381-.846-.85V60.987c0-.47.38-.85.846-.85h60.513c.467 0 .847.38.847.85v38.594c0 .469-.38.85-.847.85z' transform='translate(0 -1)'/%3E%3Cpath d='M1.694 60.137h67.5v-7.294h-67.5v7.294zm68.347 1.699H.847c-.468 0-.847-.38-.847-.849v-8.992c0-.47.38-.85.847-.85h69.194c.468 0 .847.38.847.85v8.992c0 .468-.379.849-.847.849z' transform='translate(0 -1)'/%3E%3C/g%3E%3C/svg%3E%0A");
  }
}

.top .icon.specialties:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='90' height='120' viewBox='0 0 149 120'%3E%3Cdefs%3E%3Cpath id='m4jlpgntda' d='M0 0L88.552 0 88.552 73.055 0 73.055z'/%3E%3C/defs%3E%3Cg fill='none' fill-rule='evenodd' transform='translate(16 23)'%3E%3Ccircle cx='41' cy='46' r='41' fill='%23FFFFFF' fill-opacity='.15'/%3E%3Cg transform='translate(27)'%3E%3Cmask id='v5f5hhwwbb' fill='%23fff'%3E%3Cuse xlink:href='%23m4jlpgntda'/%3E%3C/mask%3E%3Cpath fill='%23FFFFFF' d='M15.236 71.542h7.844v-5.8h-7.844v5.8zm8.601 1.513H14.48c-.417 0-.757-.34-.757-.756v-7.312c0-.417.34-.756.757-.756h9.357c.417 0 .756.339.756.756v7.312c0 .417-.339.756-.756.756zM65.475 71.542h7.843v-5.8h-7.843v5.8zm8.6 1.513h-9.357c-.417 0-.756-.34-.756-.756v-7.312c0-.417.339-.756.756-.756h9.357c.419 0 .758.339.758.756v7.312c0 .417-.339.756-.758.756zM44.276 23.811c-9.37 0-16.994 7.622-16.994 16.989 0 9.364 7.624 16.982 16.994 16.982 9.373 0 16.997-7.618 16.997-16.982 0-9.367-7.624-16.988-16.997-16.988m0 35.483c-10.206 0-18.508-8.297-18.508-18.495 0-10.202 8.302-18.503 18.508-18.503 10.208 0 18.511 8.3 18.511 18.503 0 10.199-8.303 18.495-18.51 18.495' mask='url(%23v5f5hhwwbb)'/%3E%3Cpath fill='%23FFFFFF' d='M9.542 64.23h69.473V17.37H9.542v46.86zm70.229 1.513H8.786c-.418 0-.759-.338-.759-.756V16.614c0-.418.341-.757.759-.757h70.985c.417 0 .756.339.756.757v48.373c0 .418-.339.756-.756.756z' mask='url(%23v5f5hhwwbb)'/%3E%3Cpath fill='%23FFFFFF' d='M18.419 65.743c-.419 0-.758-.339-.758-.757V16.613c0-.418.34-.757.758-.757s.756.34.756.757v48.373c0 .418-.338.757-.756.757M70.137 65.743c-.418 0-.757-.339-.757-.757V16.613c0-.418.34-.757.757-.757.418 0 .757.34.757.757v48.373c0 .418-.339.757-.757.757M87.795 73.055H.755c-.417 0-.755-.34-.755-.756 0-.418.338-.757.755-.757h87.04c.418 0 .757.339.757.757 0 .417-.339.756-.757.756M21.772 15.857h45.013V1.515H21.772v14.342zm45.77 1.512H21.014c-.417 0-.756-.338-.756-.755V.758c0-.42.339-.758.756-.758h46.528c.417 0 .756.339.756.758v15.856c0 .417-.339.755-.756.755z' mask='url(%23v5f5hhwwbb)'/%3E%3Cpath fill='%23FFFFFF' d='M25.752 15.857H62.8V5.38H25.752v10.477zm37.805 1.512H24.995c-.418 0-.757-.338-.757-.755V4.62c0-.417.339-.755.757-.755h38.562c.418 0 .757.338.757.755v11.993c0 .417-.339.755-.757.755zM41.858 51.392h5.211v-7.58c0-.419.339-.757.756-.757h7.588v-5.203h-7.588c-.417 0-.756-.339-.756-.757v-7.581h-5.211v7.581c0 .418-.339.757-.757.757h-7.587v5.203h7.587c.418 0 .757.338.757.757v7.58zm5.967 1.514h-6.724c-.418 0-.757-.339-.757-.757v-7.58h-7.587c-.418 0-.757-.339-.757-.757v-6.717c0-.418.339-.757.757-.757h7.587v-7.58c0-.419.339-.758.757-.758h6.724c.42 0 .759.339.759.758v7.58h7.586c.417 0 .756.339.756.757v6.717c0 .418-.339.757-.756.757h-7.586v7.58c0 .418-.339.757-.759.757z' mask='url(%23v5f5hhwwbb)'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}

@media (max-width: 767px) {
  .top .icon.specialties:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='50' height='120' viewBox='0 0 149 120'%3E%3Cdefs%3E%3Cpath id='m4jlpgntda' d='M0 0L88.552 0 88.552 73.055 0 73.055z'/%3E%3C/defs%3E%3Cg fill='none' fill-rule='evenodd' transform='translate(16 23)'%3E%3Ccircle cx='41' cy='46' r='41' fill='%23FFFFFF' fill-opacity='.15'/%3E%3Cg transform='translate(27)'%3E%3Cmask id='v5f5hhwwbb' fill='%23fff'%3E%3Cuse xlink:href='%23m4jlpgntda'/%3E%3C/mask%3E%3Cpath fill='%23FFFFFF' d='M15.236 71.542h7.844v-5.8h-7.844v5.8zm8.601 1.513H14.48c-.417 0-.757-.34-.757-.756v-7.312c0-.417.34-.756.757-.756h9.357c.417 0 .756.339.756.756v7.312c0 .417-.339.756-.756.756zM65.475 71.542h7.843v-5.8h-7.843v5.8zm8.6 1.513h-9.357c-.417 0-.756-.34-.756-.756v-7.312c0-.417.339-.756.756-.756h9.357c.419 0 .758.339.758.756v7.312c0 .417-.339.756-.758.756zM44.276 23.811c-9.37 0-16.994 7.622-16.994 16.989 0 9.364 7.624 16.982 16.994 16.982 9.373 0 16.997-7.618 16.997-16.982 0-9.367-7.624-16.988-16.997-16.988m0 35.483c-10.206 0-18.508-8.297-18.508-18.495 0-10.202 8.302-18.503 18.508-18.503 10.208 0 18.511 8.3 18.511 18.503 0 10.199-8.303 18.495-18.51 18.495' mask='url(%23v5f5hhwwbb)'/%3E%3Cpath fill='%23FFFFFF' d='M9.542 64.23h69.473V17.37H9.542v46.86zm70.229 1.513H8.786c-.418 0-.759-.338-.759-.756V16.614c0-.418.341-.757.759-.757h70.985c.417 0 .756.339.756.757v48.373c0 .418-.339.756-.756.756z' mask='url(%23v5f5hhwwbb)'/%3E%3Cpath fill='%23FFFFFF' d='M18.419 65.743c-.419 0-.758-.339-.758-.757V16.613c0-.418.34-.757.758-.757s.756.34.756.757v48.373c0 .418-.338.757-.756.757M70.137 65.743c-.418 0-.757-.339-.757-.757V16.613c0-.418.34-.757.757-.757.418 0 .757.34.757.757v48.373c0 .418-.339.757-.757.757M87.795 73.055H.755c-.417 0-.755-.34-.755-.756 0-.418.338-.757.755-.757h87.04c.418 0 .757.339.757.757 0 .417-.339.756-.757.756M21.772 15.857h45.013V1.515H21.772v14.342zm45.77 1.512H21.014c-.417 0-.756-.338-.756-.755V.758c0-.42.339-.758.756-.758h46.528c.417 0 .756.339.756.758v15.856c0 .417-.339.755-.756.755z' mask='url(%23v5f5hhwwbb)'/%3E%3Cpath fill='%23FFFFFF' d='M25.752 15.857H62.8V5.38H25.752v10.477zm37.805 1.512H24.995c-.418 0-.757-.338-.757-.755V4.62c0-.417.339-.755.757-.755h38.562c.418 0 .757.338.757.755v11.993c0 .417-.339.755-.757.755zM41.858 51.392h5.211v-7.58c0-.419.339-.757.756-.757h7.588v-5.203h-7.588c-.417 0-.756-.339-.756-.757v-7.581h-5.211v7.581c0 .418-.339.757-.757.757h-7.587v5.203h7.587c.418 0 .757.338.757.757v7.58zm5.967 1.514h-6.724c-.418 0-.757-.339-.757-.757v-7.58h-7.587c-.418 0-.757-.339-.757-.757v-6.717c0-.418.339-.757.757-.757h7.587v-7.58c0-.419.339-.758.757-.758h6.724c.42 0 .759.339.759.758v7.58h7.586c.417 0 .756.339.756.757v6.717c0 .418-.339.757-.756.757h-7.586v7.58c0 .418-.339.757-.759.757z' mask='url(%23v5f5hhwwbb)'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .top .icon.specialties:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='60' height='120' viewBox='0 0 149 120'%3E%3Cdefs%3E%3Cpath id='m4jlpgntda' d='M0 0L88.552 0 88.552 73.055 0 73.055z'/%3E%3C/defs%3E%3Cg fill='none' fill-rule='evenodd' transform='translate(16 23)'%3E%3Ccircle cx='41' cy='46' r='41' fill='%23FFFFFF' fill-opacity='.15'/%3E%3Cg transform='translate(27)'%3E%3Cmask id='v5f5hhwwbb' fill='%23fff'%3E%3Cuse xlink:href='%23m4jlpgntda'/%3E%3C/mask%3E%3Cpath fill='%23FFFFFF' d='M15.236 71.542h7.844v-5.8h-7.844v5.8zm8.601 1.513H14.48c-.417 0-.757-.34-.757-.756v-7.312c0-.417.34-.756.757-.756h9.357c.417 0 .756.339.756.756v7.312c0 .417-.339.756-.756.756zM65.475 71.542h7.843v-5.8h-7.843v5.8zm8.6 1.513h-9.357c-.417 0-.756-.34-.756-.756v-7.312c0-.417.339-.756.756-.756h9.357c.419 0 .758.339.758.756v7.312c0 .417-.339.756-.758.756zM44.276 23.811c-9.37 0-16.994 7.622-16.994 16.989 0 9.364 7.624 16.982 16.994 16.982 9.373 0 16.997-7.618 16.997-16.982 0-9.367-7.624-16.988-16.997-16.988m0 35.483c-10.206 0-18.508-8.297-18.508-18.495 0-10.202 8.302-18.503 18.508-18.503 10.208 0 18.511 8.3 18.511 18.503 0 10.199-8.303 18.495-18.51 18.495' mask='url(%23v5f5hhwwbb)'/%3E%3Cpath fill='%23FFFFFF' d='M9.542 64.23h69.473V17.37H9.542v46.86zm70.229 1.513H8.786c-.418 0-.759-.338-.759-.756V16.614c0-.418.341-.757.759-.757h70.985c.417 0 .756.339.756.757v48.373c0 .418-.339.756-.756.756z' mask='url(%23v5f5hhwwbb)'/%3E%3Cpath fill='%23FFFFFF' d='M18.419 65.743c-.419 0-.758-.339-.758-.757V16.613c0-.418.34-.757.758-.757s.756.34.756.757v48.373c0 .418-.338.757-.756.757M70.137 65.743c-.418 0-.757-.339-.757-.757V16.613c0-.418.34-.757.757-.757.418 0 .757.34.757.757v48.373c0 .418-.339.757-.757.757M87.795 73.055H.755c-.417 0-.755-.34-.755-.756 0-.418.338-.757.755-.757h87.04c.418 0 .757.339.757.757 0 .417-.339.756-.757.756M21.772 15.857h45.013V1.515H21.772v14.342zm45.77 1.512H21.014c-.417 0-.756-.338-.756-.755V.758c0-.42.339-.758.756-.758h46.528c.417 0 .756.339.756.758v15.856c0 .417-.339.755-.756.755z' mask='url(%23v5f5hhwwbb)'/%3E%3Cpath fill='%23FFFFFF' d='M25.752 15.857H62.8V5.38H25.752v10.477zm37.805 1.512H24.995c-.418 0-.757-.338-.757-.755V4.62c0-.417.339-.755.757-.755h38.562c.418 0 .757.338.757.755v11.993c0 .417-.339.755-.757.755zM41.858 51.392h5.211v-7.58c0-.419.339-.757.756-.757h7.588v-5.203h-7.588c-.417 0-.756-.339-.756-.757v-7.581h-5.211v7.581c0 .418-.339.757-.757.757h-7.587v5.203h7.587c.418 0 .757.338.757.757v7.58zm5.967 1.514h-6.724c-.418 0-.757-.339-.757-.757v-7.58h-7.587c-.418 0-.757-.339-.757-.757v-6.717c0-.418.339-.757.757-.757h7.587v-7.58c0-.419.339-.758.757-.758h6.724c.42 0 .759.339.759.758v7.58h7.586c.417 0 .756.339.756.757v6.717c0 .418-.339.757-.756.757h-7.586v7.58c0 .418-.339.757-.759.757z' mask='url(%23v5f5hhwwbb)'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
  }
}

.top .icon.treatments:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='120' viewBox='0 0 148 120'%3E%3Cg fill='none' fill-rule='evenodd' transform='translate(16 12)'%3E%3Cg transform='translate(19)'%3E%3Cpath stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M32.89 71.382c-7.496 7.49-19.767 7.49-27.266 0-7.5-7.49-7.5-19.753.003-27.246L44.529 6.025c7.496-7.49 19.767-7.49 27.266 0 7.502 7.493 7.502 19.756 0 27.25L32.89 71.381z'/%3E%3Cellipse cx='51.217' cy='11.738' fill='%23FFFFFF' rx='1.41' ry='1.409'/%3E%3Cellipse cx='25.791' cy='65.435' fill='%23FFFFFF' rx='1.41' ry='1.409' transform='rotate(-178 25.79 65.435)'/%3E%3Cellipse cx='65.313' cy='24.884' fill='%23FFFFFF' rx='1.41' ry='1.409'/%3E%3Cellipse cx='12.162' cy='51.805' fill='%23FFFFFF' rx='1.41' ry='1.409' transform='rotate(-178 12.162 51.805)'/%3E%3Cellipse cx='65.313' cy='11.738' fill='%23FFFFFF' rx='1.41' ry='1.409'/%3E%3Cellipse cx='11.703' cy='64.944' fill='%23FFFFFF' rx='1.41' ry='1.409' transform='rotate(-178 11.703 64.944)'/%3E%3Cg transform='matrix(-1 0 0 1 79 0)'%3E%3Cpath stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M32.89 71.382c-7.496 7.49-19.767 7.49-27.266 0-7.5-7.49-7.5-19.753.003-27.246L44.529 6.025c7.496-7.49 19.767-7.49 27.266 0 7.502 7.493 7.502 19.756 0 27.25L32.89 71.381z'/%3E%3Cellipse cx='51.217' cy='11.738' fill='%23FFFFFF' rx='1.41' ry='1.409'/%3E%3Cellipse cx='25.791' cy='65.435' fill='%23FFFFFF' rx='1.41' ry='1.409' transform='rotate(-178 25.79 65.435)'/%3E%3Cellipse cx='65.313' cy='24.884' fill='%23FFFFFF' rx='1.41' ry='1.409'/%3E%3Cellipse cx='12.162' cy='51.805' fill='%23FFFFFF' rx='1.41' ry='1.409' transform='rotate(-178 12.162 51.805)'/%3E%3Cellipse cx='65.313' cy='11.738' fill='%23FFFFFF' rx='1.41' ry='1.409'/%3E%3Cellipse cx='11.703' cy='64.944' fill='%23FFFFFF' rx='1.41' ry='1.409' transform='rotate(-178 11.703 64.944)'/%3E%3C/g%3E%3C/g%3E%3Ccircle cx='41' cy='55' r='41' fill='%23FFFFFF' fill-opacity='.15'/%3E%3C/g%3E%3C/svg%3E%0A");
}

@media (max-width: 767px) {
  .top .icon.treatments:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='120' viewBox='0 0 148 120'%3E%3Cg fill='none' fill-rule='evenodd' transform='translate(16 12)'%3E%3Cg transform='translate(19)'%3E%3Cpath stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M32.89 71.382c-7.496 7.49-19.767 7.49-27.266 0-7.5-7.49-7.5-19.753.003-27.246L44.529 6.025c7.496-7.49 19.767-7.49 27.266 0 7.502 7.493 7.502 19.756 0 27.25L32.89 71.381z'/%3E%3Cellipse cx='51.217' cy='11.738' fill='%23FFFFFF' rx='1.41' ry='1.409'/%3E%3Cellipse cx='25.791' cy='65.435' fill='%23FFFFFF' rx='1.41' ry='1.409' transform='rotate(-178 25.79 65.435)'/%3E%3Cellipse cx='65.313' cy='24.884' fill='%23FFFFFF' rx='1.41' ry='1.409'/%3E%3Cellipse cx='12.162' cy='51.805' fill='%23FFFFFF' rx='1.41' ry='1.409' transform='rotate(-178 12.162 51.805)'/%3E%3Cellipse cx='65.313' cy='11.738' fill='%23FFFFFF' rx='1.41' ry='1.409'/%3E%3Cellipse cx='11.703' cy='64.944' fill='%23FFFFFF' rx='1.41' ry='1.409' transform='rotate(-178 11.703 64.944)'/%3E%3Cg transform='matrix(-1 0 0 1 79 0)'%3E%3Cpath stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M32.89 71.382c-7.496 7.49-19.767 7.49-27.266 0-7.5-7.49-7.5-19.753.003-27.246L44.529 6.025c7.496-7.49 19.767-7.49 27.266 0 7.502 7.493 7.502 19.756 0 27.25L32.89 71.381z'/%3E%3Cellipse cx='51.217' cy='11.738' fill='%23FFFFFF' rx='1.41' ry='1.409'/%3E%3Cellipse cx='25.791' cy='65.435' fill='%23FFFFFF' rx='1.41' ry='1.409' transform='rotate(-178 25.79 65.435)'/%3E%3Cellipse cx='65.313' cy='24.884' fill='%23FFFFFF' rx='1.41' ry='1.409'/%3E%3Cellipse cx='12.162' cy='51.805' fill='%23FFFFFF' rx='1.41' ry='1.409' transform='rotate(-178 12.162 51.805)'/%3E%3Cellipse cx='65.313' cy='11.738' fill='%23FFFFFF' rx='1.41' ry='1.409'/%3E%3Cellipse cx='11.703' cy='64.944' fill='%23FFFFFF' rx='1.41' ry='1.409' transform='rotate(-178 11.703 64.944)'/%3E%3C/g%3E%3C/g%3E%3Ccircle cx='41' cy='55' r='41' fill='%23FFFFFF' fill-opacity='.15'/%3E%3C/g%3E%3C/svg%3E%0A");
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .top .icon.treatments:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='120' viewBox='0 0 148 120'%3E%3Cg fill='none' fill-rule='evenodd' transform='translate(16 12)'%3E%3Cg transform='translate(19)'%3E%3Cpath stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M32.89 71.382c-7.496 7.49-19.767 7.49-27.266 0-7.5-7.49-7.5-19.753.003-27.246L44.529 6.025c7.496-7.49 19.767-7.49 27.266 0 7.502 7.493 7.502 19.756 0 27.25L32.89 71.381z'/%3E%3Cellipse cx='51.217' cy='11.738' fill='%23FFFFFF' rx='1.41' ry='1.409'/%3E%3Cellipse cx='25.791' cy='65.435' fill='%23FFFFFF' rx='1.41' ry='1.409' transform='rotate(-178 25.79 65.435)'/%3E%3Cellipse cx='65.313' cy='24.884' fill='%23FFFFFF' rx='1.41' ry='1.409'/%3E%3Cellipse cx='12.162' cy='51.805' fill='%23FFFFFF' rx='1.41' ry='1.409' transform='rotate(-178 12.162 51.805)'/%3E%3Cellipse cx='65.313' cy='11.738' fill='%23FFFFFF' rx='1.41' ry='1.409'/%3E%3Cellipse cx='11.703' cy='64.944' fill='%23FFFFFF' rx='1.41' ry='1.409' transform='rotate(-178 11.703 64.944)'/%3E%3Cg transform='matrix(-1 0 0 1 79 0)'%3E%3Cpath stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M32.89 71.382c-7.496 7.49-19.767 7.49-27.266 0-7.5-7.49-7.5-19.753.003-27.246L44.529 6.025c7.496-7.49 19.767-7.49 27.266 0 7.502 7.493 7.502 19.756 0 27.25L32.89 71.381z'/%3E%3Cellipse cx='51.217' cy='11.738' fill='%23FFFFFF' rx='1.41' ry='1.409'/%3E%3Cellipse cx='25.791' cy='65.435' fill='%23FFFFFF' rx='1.41' ry='1.409' transform='rotate(-178 25.79 65.435)'/%3E%3Cellipse cx='65.313' cy='24.884' fill='%23FFFFFF' rx='1.41' ry='1.409'/%3E%3Cellipse cx='12.162' cy='51.805' fill='%23FFFFFF' rx='1.41' ry='1.409' transform='rotate(-178 12.162 51.805)'/%3E%3Cellipse cx='65.313' cy='11.738' fill='%23FFFFFF' rx='1.41' ry='1.409'/%3E%3Cellipse cx='11.703' cy='64.944' fill='%23FFFFFF' rx='1.41' ry='1.409' transform='rotate(-178 11.703 64.944)'/%3E%3C/g%3E%3C/g%3E%3Ccircle cx='41' cy='55' r='41' fill='%23FFFFFF' fill-opacity='.15'/%3E%3C/g%3E%3C/svg%3E%0A");
  }
}

.top .icon.diagnostic-test:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='90' height='120' viewBox='0 0 148 120'%3E%3Cdefs%3E%3Cpath id='y1p1ixwjra' d='M0.379 0.137L41.853 0.137 41.853 41.582 0.379 41.582z'/%3E%3C/defs%3E%3Cg fill='none' fill-rule='evenodd' transform='translate(17 17)'%3E%3Ccircle cx='41' cy='52' r='41' fill='%23FFFFFF' fill-opacity='.15'/%3E%3Cg%3E%3Cpath fill='%23FFFFFF' d='M68.895 26.783l13.002 12.995 8.227-8.22c1.73-1.728 2.683-4.035 2.683-6.497 0-2.462-.954-4.77-2.683-6.499-1.727-1.727-4.036-2.677-6.5-2.677-2.463 0-4.771.95-6.501 2.677l-8.228 8.221zm13.002 14.822c-.195 0-.388-.074-.535-.22L67.29 27.317c-.143-.142-.222-.334-.222-.535 0-.2.08-.394.222-.535l8.762-8.757c2.015-2.01 4.704-3.12 7.572-3.12 2.869 0 5.558 1.11 7.57 3.12 2.016 2.016 3.126 4.705 3.126 7.57 0 2.868-1.11 5.554-3.125 7.567l-8.763 8.756c-.148.147-.341.221-.535.221zM34.873 65.1l8.686 8.677 29.602-29.58-8.69-8.678-29.598 29.58zm8.686 10.504c-.193 0-.387-.074-.535-.222l-9.757-9.747c-.143-.141-.223-.334-.223-.535s.08-.394.223-.535l30.668-30.651c.296-.295.775-.295 1.07 0l9.762 9.748c.142.14.222.334.222.535 0 .2-.08.392-.22.536L44.094 75.382c-.148.148-.342.222-.536.222z' transform='translate(17)'/%3E%3Cpath fill='%23FFFFFF' d='M67.187 51.996c-.418 0-.757-.339-.757-.756V37.161c0-.419.339-.758.757-.758s.757.34.757.758v14.08c0 .416-.339.755-.757.755M58.407 60.767c-.418 0-.757-.34-.757-.756V40.508c0-.417.339-.756.757-.756s.757.339.757.756V60.01c0 .417-.34.756-.757.756M49.627 69.545c-.419 0-.758-.34-.758-.757l-.002-19.502c0-.418.339-.757.757-.757.417 0 .756.339.756.756l.003 19.503c0 .418-.339.757-.757.757M40.846 72.892c-.417 0-.756-.338-.756-.757l-.004-14.08c0-.416.34-.755.757-.755.418 0 .756.339.756.756l.005 14.08c0 .418-.339.757-.758.757' transform='translate(17)'/%3E%3Cpath fill='%23FFFFFF' d='M60.264 29.176L79.509 48.4l4.438-4.43-19.242-19.232-4.441 4.437zm19.245 21.05c-.193 0-.386-.072-.534-.22L58.659 29.71c-.142-.14-.223-.334-.223-.535s.08-.394.223-.535l5.512-5.508c.294-.295.774-.295 1.069 0l20.313 20.302c.14.142.22.335.22.536 0 .2-.08.393-.221.535l-5.507 5.5c-.148.149-.341.22-.536.22zM36.423 68.789l-6.63 6.622c-1.208 1.205-1.416 2.962-.467 3.913.483.484 1.097.584 1.525.584.845 0 1.715-.383 2.384-1.052l6.633-6.628-3.445-3.439zM30.85 81.422c-1.011 0-1.932-.364-2.596-1.029-1.54-1.542-1.33-4.257.467-6.054l7.165-7.155c.296-.295.776-.295 1.07 0l4.517 4.508c.14.142.22.335.22.536s-.08.393-.22.536l-7.17 7.163c-.95.95-2.21 1.495-3.453 1.495z' transform='translate(17)'/%3E%3Cpath fill='%23FFFFFF' d='M79.329 38.682c-.198 0-.394-.076-.543-.23-.291-.3-.283-.78.016-1.07l7.597-7.37c1.02-1.018 1.584-2.391 1.584-3.854s-.564-2.832-1.592-3.858c-1.027-1.028-2.398-1.594-3.864-1.594-1.464 0-2.836.566-3.863 1.594l-7.707 7.626c-.296.295-.775.29-1.07-.005-.294-.297-.292-.776.006-1.07l7.703-7.623c1.31-1.313 3.062-2.035 4.93-2.035 1.87 0 3.623.722 4.936 2.037 1.312 1.309 2.035 3.06 2.035 4.928 0 1.868-.722 3.62-2.036 4.934l-7.604 7.377c-.148.143-.338.213-.528.213M71.848 37.067c-.193 0-.387-.073-.534-.222l-9.9-9.888c-.295-.296-.295-.774 0-1.07.295-.297.774-.297 1.07-.002l9.9 9.89c.295.295.295.775 0 1.07-.148.15-.342.222-.536.222' transform='translate(17)'/%3E%3Cg transform='translate(17) translate(9 .863)'%3E%3Cmask id='2rnynnfkqb' fill='%23fff'%3E%3Cuse xlink:href='%23y1p1ixwjra'/%3E%3C/mask%3E%3Cpath fill='%23FFFFFF' d='M11.124 1.651c-5.09 0-9.231 4.141-9.231 9.23 0 9.497 9.681 19.34 19.225 28.874 9.543-9.539 19.22-19.384 19.22-28.874 0-5.089-4.14-9.23-9.231-9.23-4.265 0-6.702 1.851-9.311 7.07-.128.256-.39.418-.676.418-.288 0-.549-.16-.677-.417-2.616-5.22-5.055-7.07-9.319-7.07m9.996 39.93c-.195 0-.388-.074-.536-.222C10.651 31.441.379 21.183.379 10.881.379 4.957 5.199.136 11.124.136c5.077 0 7.719 2.498 9.994 6.617 2.27-4.119 4.909-6.617 9.989-6.617 5.925 0 10.746 4.821 10.746 10.745 0 10.296-10.269 20.556-20.199 30.48-.148.147-.341.221-.534.221' mask='url(%232rnynnfkqb)'/%3E%3C/g%3E%3Cpath fill='%23FFFFFF' d='M39.462 24.061h-6.234c-.288 0-.552-.163-.68-.424l-2.112-4.306-1.947 3.954c-.128.259-.39.422-.679.422h-.019c-.296-.006-.559-.186-.677-.457l-3.289-7.643-4.06 7.262c-.154.271-.459.422-.769.378-.31-.044-.56-.274-.63-.581l-1.643-7.197-3.315 6.754c-.128.259-.39.424-.68.424H.758c-.42 0-.758-.34-.758-.758s.338-.756.757-.756h11.5l4.05-8.25c.14-.286.447-.454.766-.416.32.035.58.268.65.582l1.68 7.364 3.85-6.885c.141-.252.412-.4.7-.386.287.014.542.19.655.456l3.248 7.545 1.902-3.864c.127-.258.391-.422.68-.422h.001c.288 0 .551.165.678.422l2.584 5.268h5.761c.418 0 .757.34.757.758s-.339.756-.757.756' transform='translate(17)'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}

@media (max-width: 767px) {
  .top .icon.diagnostic-test:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='50' height='120' viewBox='0 0 148 120'%3E%3Cdefs%3E%3Cpath id='y1p1ixwjra' d='M0.379 0.137L41.853 0.137 41.853 41.582 0.379 41.582z'/%3E%3C/defs%3E%3Cg fill='none' fill-rule='evenodd' transform='translate(17 17)'%3E%3Ccircle cx='41' cy='52' r='41' fill='%23FFFFFF' fill-opacity='.15'/%3E%3Cg%3E%3Cpath fill='%23FFFFFF' d='M68.895 26.783l13.002 12.995 8.227-8.22c1.73-1.728 2.683-4.035 2.683-6.497 0-2.462-.954-4.77-2.683-6.499-1.727-1.727-4.036-2.677-6.5-2.677-2.463 0-4.771.95-6.501 2.677l-8.228 8.221zm13.002 14.822c-.195 0-.388-.074-.535-.22L67.29 27.317c-.143-.142-.222-.334-.222-.535 0-.2.08-.394.222-.535l8.762-8.757c2.015-2.01 4.704-3.12 7.572-3.12 2.869 0 5.558 1.11 7.57 3.12 2.016 2.016 3.126 4.705 3.126 7.57 0 2.868-1.11 5.554-3.125 7.567l-8.763 8.756c-.148.147-.341.221-.535.221zM34.873 65.1l8.686 8.677 29.602-29.58-8.69-8.678-29.598 29.58zm8.686 10.504c-.193 0-.387-.074-.535-.222l-9.757-9.747c-.143-.141-.223-.334-.223-.535s.08-.394.223-.535l30.668-30.651c.296-.295.775-.295 1.07 0l9.762 9.748c.142.14.222.334.222.535 0 .2-.08.392-.22.536L44.094 75.382c-.148.148-.342.222-.536.222z' transform='translate(17)'/%3E%3Cpath fill='%23FFFFFF' d='M67.187 51.996c-.418 0-.757-.339-.757-.756V37.161c0-.419.339-.758.757-.758s.757.34.757.758v14.08c0 .416-.339.755-.757.755M58.407 60.767c-.418 0-.757-.34-.757-.756V40.508c0-.417.339-.756.757-.756s.757.339.757.756V60.01c0 .417-.34.756-.757.756M49.627 69.545c-.419 0-.758-.34-.758-.757l-.002-19.502c0-.418.339-.757.757-.757.417 0 .756.339.756.756l.003 19.503c0 .418-.339.757-.757.757M40.846 72.892c-.417 0-.756-.338-.756-.757l-.004-14.08c0-.416.34-.755.757-.755.418 0 .756.339.756.756l.005 14.08c0 .418-.339.757-.758.757' transform='translate(17)'/%3E%3Cpath fill='%23FFFFFF' d='M60.264 29.176L79.509 48.4l4.438-4.43-19.242-19.232-4.441 4.437zm19.245 21.05c-.193 0-.386-.072-.534-.22L58.659 29.71c-.142-.14-.223-.334-.223-.535s.08-.394.223-.535l5.512-5.508c.294-.295.774-.295 1.069 0l20.313 20.302c.14.142.22.335.22.536 0 .2-.08.393-.221.535l-5.507 5.5c-.148.149-.341.22-.536.22zM36.423 68.789l-6.63 6.622c-1.208 1.205-1.416 2.962-.467 3.913.483.484 1.097.584 1.525.584.845 0 1.715-.383 2.384-1.052l6.633-6.628-3.445-3.439zM30.85 81.422c-1.011 0-1.932-.364-2.596-1.029-1.54-1.542-1.33-4.257.467-6.054l7.165-7.155c.296-.295.776-.295 1.07 0l4.517 4.508c.14.142.22.335.22.536s-.08.393-.22.536l-7.17 7.163c-.95.95-2.21 1.495-3.453 1.495z' transform='translate(17)'/%3E%3Cpath fill='%23FFFFFF' d='M79.329 38.682c-.198 0-.394-.076-.543-.23-.291-.3-.283-.78.016-1.07l7.597-7.37c1.02-1.018 1.584-2.391 1.584-3.854s-.564-2.832-1.592-3.858c-1.027-1.028-2.398-1.594-3.864-1.594-1.464 0-2.836.566-3.863 1.594l-7.707 7.626c-.296.295-.775.29-1.07-.005-.294-.297-.292-.776.006-1.07l7.703-7.623c1.31-1.313 3.062-2.035 4.93-2.035 1.87 0 3.623.722 4.936 2.037 1.312 1.309 2.035 3.06 2.035 4.928 0 1.868-.722 3.62-2.036 4.934l-7.604 7.377c-.148.143-.338.213-.528.213M71.848 37.067c-.193 0-.387-.073-.534-.222l-9.9-9.888c-.295-.296-.295-.774 0-1.07.295-.297.774-.297 1.07-.002l9.9 9.89c.295.295.295.775 0 1.07-.148.15-.342.222-.536.222' transform='translate(17)'/%3E%3Cg transform='translate(17) translate(9 .863)'%3E%3Cmask id='2rnynnfkqb' fill='%23fff'%3E%3Cuse xlink:href='%23y1p1ixwjra'/%3E%3C/mask%3E%3Cpath fill='%23FFFFFF' d='M11.124 1.651c-5.09 0-9.231 4.141-9.231 9.23 0 9.497 9.681 19.34 19.225 28.874 9.543-9.539 19.22-19.384 19.22-28.874 0-5.089-4.14-9.23-9.231-9.23-4.265 0-6.702 1.851-9.311 7.07-.128.256-.39.418-.676.418-.288 0-.549-.16-.677-.417-2.616-5.22-5.055-7.07-9.319-7.07m9.996 39.93c-.195 0-.388-.074-.536-.222C10.651 31.441.379 21.183.379 10.881.379 4.957 5.199.136 11.124.136c5.077 0 7.719 2.498 9.994 6.617 2.27-4.119 4.909-6.617 9.989-6.617 5.925 0 10.746 4.821 10.746 10.745 0 10.296-10.269 20.556-20.199 30.48-.148.147-.341.221-.534.221' mask='url(%232rnynnfkqb)'/%3E%3C/g%3E%3Cpath fill='%23FFFFFF' d='M39.462 24.061h-6.234c-.288 0-.552-.163-.68-.424l-2.112-4.306-1.947 3.954c-.128.259-.39.422-.679.422h-.019c-.296-.006-.559-.186-.677-.457l-3.289-7.643-4.06 7.262c-.154.271-.459.422-.769.378-.31-.044-.56-.274-.63-.581l-1.643-7.197-3.315 6.754c-.128.259-.39.424-.68.424H.758c-.42 0-.758-.34-.758-.758s.338-.756.757-.756h11.5l4.05-8.25c.14-.286.447-.454.766-.416.32.035.58.268.65.582l1.68 7.364 3.85-6.885c.141-.252.412-.4.7-.386.287.014.542.19.655.456l3.248 7.545 1.902-3.864c.127-.258.391-.422.68-.422h.001c.288 0 .551.165.678.422l2.584 5.268h5.761c.418 0 .757.34.757.758s-.339.756-.757.756' transform='translate(17)'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .top .icon.diagnostic-test:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='60' height='120' viewBox='0 0 148 120'%3E%3Cdefs%3E%3Cpath id='y1p1ixwjra' d='M0.379 0.137L41.853 0.137 41.853 41.582 0.379 41.582z'/%3E%3C/defs%3E%3Cg fill='none' fill-rule='evenodd' transform='translate(17 17)'%3E%3Ccircle cx='41' cy='52' r='41' fill='%23FFFFFF' fill-opacity='.15'/%3E%3Cg%3E%3Cpath fill='%23FFFFFF' d='M68.895 26.783l13.002 12.995 8.227-8.22c1.73-1.728 2.683-4.035 2.683-6.497 0-2.462-.954-4.77-2.683-6.499-1.727-1.727-4.036-2.677-6.5-2.677-2.463 0-4.771.95-6.501 2.677l-8.228 8.221zm13.002 14.822c-.195 0-.388-.074-.535-.22L67.29 27.317c-.143-.142-.222-.334-.222-.535 0-.2.08-.394.222-.535l8.762-8.757c2.015-2.01 4.704-3.12 7.572-3.12 2.869 0 5.558 1.11 7.57 3.12 2.016 2.016 3.126 4.705 3.126 7.57 0 2.868-1.11 5.554-3.125 7.567l-8.763 8.756c-.148.147-.341.221-.535.221zM34.873 65.1l8.686 8.677 29.602-29.58-8.69-8.678-29.598 29.58zm8.686 10.504c-.193 0-.387-.074-.535-.222l-9.757-9.747c-.143-.141-.223-.334-.223-.535s.08-.394.223-.535l30.668-30.651c.296-.295.775-.295 1.07 0l9.762 9.748c.142.14.222.334.222.535 0 .2-.08.392-.22.536L44.094 75.382c-.148.148-.342.222-.536.222z' transform='translate(17)'/%3E%3Cpath fill='%23FFFFFF' d='M67.187 51.996c-.418 0-.757-.339-.757-.756V37.161c0-.419.339-.758.757-.758s.757.34.757.758v14.08c0 .416-.339.755-.757.755M58.407 60.767c-.418 0-.757-.34-.757-.756V40.508c0-.417.339-.756.757-.756s.757.339.757.756V60.01c0 .417-.34.756-.757.756M49.627 69.545c-.419 0-.758-.34-.758-.757l-.002-19.502c0-.418.339-.757.757-.757.417 0 .756.339.756.756l.003 19.503c0 .418-.339.757-.757.757M40.846 72.892c-.417 0-.756-.338-.756-.757l-.004-14.08c0-.416.34-.755.757-.755.418 0 .756.339.756.756l.005 14.08c0 .418-.339.757-.758.757' transform='translate(17)'/%3E%3Cpath fill='%23FFFFFF' d='M60.264 29.176L79.509 48.4l4.438-4.43-19.242-19.232-4.441 4.437zm19.245 21.05c-.193 0-.386-.072-.534-.22L58.659 29.71c-.142-.14-.223-.334-.223-.535s.08-.394.223-.535l5.512-5.508c.294-.295.774-.295 1.069 0l20.313 20.302c.14.142.22.335.22.536 0 .2-.08.393-.221.535l-5.507 5.5c-.148.149-.341.22-.536.22zM36.423 68.789l-6.63 6.622c-1.208 1.205-1.416 2.962-.467 3.913.483.484 1.097.584 1.525.584.845 0 1.715-.383 2.384-1.052l6.633-6.628-3.445-3.439zM30.85 81.422c-1.011 0-1.932-.364-2.596-1.029-1.54-1.542-1.33-4.257.467-6.054l7.165-7.155c.296-.295.776-.295 1.07 0l4.517 4.508c.14.142.22.335.22.536s-.08.393-.22.536l-7.17 7.163c-.95.95-2.21 1.495-3.453 1.495z' transform='translate(17)'/%3E%3Cpath fill='%23FFFFFF' d='M79.329 38.682c-.198 0-.394-.076-.543-.23-.291-.3-.283-.78.016-1.07l7.597-7.37c1.02-1.018 1.584-2.391 1.584-3.854s-.564-2.832-1.592-3.858c-1.027-1.028-2.398-1.594-3.864-1.594-1.464 0-2.836.566-3.863 1.594l-7.707 7.626c-.296.295-.775.29-1.07-.005-.294-.297-.292-.776.006-1.07l7.703-7.623c1.31-1.313 3.062-2.035 4.93-2.035 1.87 0 3.623.722 4.936 2.037 1.312 1.309 2.035 3.06 2.035 4.928 0 1.868-.722 3.62-2.036 4.934l-7.604 7.377c-.148.143-.338.213-.528.213M71.848 37.067c-.193 0-.387-.073-.534-.222l-9.9-9.888c-.295-.296-.295-.774 0-1.07.295-.297.774-.297 1.07-.002l9.9 9.89c.295.295.295.775 0 1.07-.148.15-.342.222-.536.222' transform='translate(17)'/%3E%3Cg transform='translate(17) translate(9 .863)'%3E%3Cmask id='2rnynnfkqb' fill='%23fff'%3E%3Cuse xlink:href='%23y1p1ixwjra'/%3E%3C/mask%3E%3Cpath fill='%23FFFFFF' d='M11.124 1.651c-5.09 0-9.231 4.141-9.231 9.23 0 9.497 9.681 19.34 19.225 28.874 9.543-9.539 19.22-19.384 19.22-28.874 0-5.089-4.14-9.23-9.231-9.23-4.265 0-6.702 1.851-9.311 7.07-.128.256-.39.418-.676.418-.288 0-.549-.16-.677-.417-2.616-5.22-5.055-7.07-9.319-7.07m9.996 39.93c-.195 0-.388-.074-.536-.222C10.651 31.441.379 21.183.379 10.881.379 4.957 5.199.136 11.124.136c5.077 0 7.719 2.498 9.994 6.617 2.27-4.119 4.909-6.617 9.989-6.617 5.925 0 10.746 4.821 10.746 10.745 0 10.296-10.269 20.556-20.199 30.48-.148.147-.341.221-.534.221' mask='url(%232rnynnfkqb)'/%3E%3C/g%3E%3Cpath fill='%23FFFFFF' d='M39.462 24.061h-6.234c-.288 0-.552-.163-.68-.424l-2.112-4.306-1.947 3.954c-.128.259-.39.422-.679.422h-.019c-.296-.006-.559-.186-.677-.457l-3.289-7.643-4.06 7.262c-.154.271-.459.422-.769.378-.31-.044-.56-.274-.63-.581l-1.643-7.197-3.315 6.754c-.128.259-.39.424-.68.424H.758c-.42 0-.758-.34-.758-.758s.338-.756.757-.756h11.5l4.05-8.25c.14-.286.447-.454.766-.416.32.035.58.268.65.582l1.68 7.364 3.85-6.885c.141-.252.412-.4.7-.386.287.014.542.19.655.456l3.248 7.545 1.902-3.864c.127-.258.391-.422.68-.422h.001c.288 0 .551.165.678.422l2.584 5.268h5.761c.418 0 .757.34.757.758s-.339.756-.757.756' transform='translate(17)'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
  }
}

.top h2 {
  font-size: 30px;
  font-weight: 300;
  line-height: 1.1;
}

@media (max-width: 767px) {
  .top h2 {
    font-size: 23px;
  }
}

.top h4 {
  font-size: 17px;
  font-weight: bold;
  line-height: 1.47;
}

@media (max-width: 767px) {
  .top .top__slider .content-slider .top__foreground .top__content {
    margin: 0 !important;
  }
}

.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 .private-area__wrapper-main .home__title,
.private-area__wrapper-main .top .top__slider .content-slider .top__foreground .top__content .home__title,
.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 .categoria-recambios__item h3,
.categoria-recambios__item .top .top__slider .content-slider .top__foreground .top__content h3,
.top .top__slider .content-slider .top__foreground .top__content .filtro-recambios h3,
.filtro-recambios .top .top__slider .content-slider .top__foreground .top__content h3,
.top .top__slider .content-slider .top__foreground .top__content .ecommerce .user__name,
.ecommerce .top .top__slider .content-slider .top__foreground .top__content .user__name,
.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 .article__socials .date p,
.article__socials .date .top .top__slider .content-slider .top__foreground .top__content p,
.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 a h3.headline-font,
.articles-related .content .articles-wrapper article .article-text a .top .top__slider .content-slider .top__foreground .top__content h3.headline-font,
.top .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text a .categoria-recambios__item h3,
.articles-related .content .articles-wrapper article .article-text a .categoria-recambios__item .top .top__slider .content-slider .top__foreground .top__content h3,
.top .top__slider .content-slider .top__foreground .top__content .categoria-recambios__item .articles-related .content .articles-wrapper article .article-text a h3,
.categoria-recambios__item .articles-related .content .articles-wrapper article .article-text a .top .top__slider .content-slider .top__foreground .top__content h3,
.top .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text a .filtro-recambios h3,
.articles-related .content .articles-wrapper article .article-text a .filtro-recambios .top .top__slider .content-slider .top__foreground .top__content h3,
.top .top__slider .content-slider .top__foreground .top__content .filtro-recambios .articles-related .content .articles-wrapper article .article-text a h3,
.filtro-recambios .articles-related .content .articles-wrapper article .article-text a .top .top__slider .content-slider .top__foreground .top__content h3,
.top .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text a .ecommerce h3.user__name,
.articles-related .content .articles-wrapper article .article-text a .ecommerce .top .top__slider .content-slider .top__foreground .top__content h3.user__name,
.top .top__slider .content-slider .top__foreground .top__content .ecommerce .articles-related .content .articles-wrapper article .article-text a h3.user__name,
.ecommerce .articles-related .content .articles-wrapper article .article-text a .top .top__slider .content-slider .top__foreground .top__content h3.user__name,
.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 .private-area__wrapper-main .home__title:last-child,
.private-area__wrapper-main .top .top__slider .content-slider .top__foreground .top__content .home__title: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 .categoria-recambios__item h3:last-child,
.categoria-recambios__item .top .top__slider .content-slider .top__foreground .top__content h3:last-child,
.top .top__slider .content-slider .top__foreground .top__content .filtro-recambios h3:last-child,
.filtro-recambios .top .top__slider .content-slider .top__foreground .top__content h3:last-child,
.top .top__slider .content-slider .top__foreground .top__content .ecommerce .user__name:last-child,
.ecommerce .top .top__slider .content-slider .top__foreground .top__content .user__name: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:last-child[type="text"],
.form .form-block .top .top__slider .content-slider .top__foreground .top__content input:last-child[type="text"],
.top .top__slider .content-slider .top__foreground .top__content .form .form-block input:last-child[type="textarea"],
.form .form-block .top .top__slider .content-slider .top__foreground .top__content input:last-child[type="textarea"],
.top .top__slider .content-slider .top__foreground .top__content .form .form-block input:last-child[type="email"],
.form .form-block .top .top__slider .content-slider .top__foreground .top__content input:last-child[type="email"],
.top .top__slider .content-slider .top__foreground .top__content .form .form-block input:last-child[type="tel"],
.form .form-block .top .top__slider .content-slider .top__foreground .top__content input:last-child[type="tel"],
.top .top__slider .content-slider .top__foreground .top__content .form .form-block input:last-child[type="number"],
.form .form-block .top .top__slider .content-slider .top__foreground .top__content input:last-child[type="number"],
.top .top__slider .content-slider .top__foreground .top__content .form .form-block input:last-child[type="date"],
.form .form-block .top .top__slider .content-slider .top__foreground .top__content input:last-child[type="date"],
.top .top__slider .content-slider .top__foreground .top__content .form .form-block input:last-child[type="password"],
.form .form-block .top .top__slider .content-slider .top__foreground .top__content input:last-child[type="password"],
.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 .article__socials .date p:last-child,
.article__socials .date .top .top__slider .content-slider .top__foreground .top__content p: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 a h3.headline-font:last-child,
.articles-related .content .articles-wrapper article .article-text a .top .top__slider .content-slider .top__foreground .top__content h3.headline-font:last-child,
.top .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text a .categoria-recambios__item h3:last-child,
.articles-related .content .articles-wrapper article .article-text a .categoria-recambios__item .top .top__slider .content-slider .top__foreground .top__content h3:last-child,
.top .top__slider .content-slider .top__foreground .top__content .categoria-recambios__item .articles-related .content .articles-wrapper article .article-text a h3:last-child,
.categoria-recambios__item .articles-related .content .articles-wrapper article .article-text a .top .top__slider .content-slider .top__foreground .top__content h3:last-child,
.top .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text a .filtro-recambios h3:last-child,
.articles-related .content .articles-wrapper article .article-text a .filtro-recambios .top .top__slider .content-slider .top__foreground .top__content h3:last-child,
.top .top__slider .content-slider .top__foreground .top__content .filtro-recambios .articles-related .content .articles-wrapper article .article-text a h3:last-child,
.filtro-recambios .articles-related .content .articles-wrapper article .article-text a .top .top__slider .content-slider .top__foreground .top__content h3:last-child,
.top .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text a .ecommerce h3.user__name:last-child,
.articles-related .content .articles-wrapper article .article-text a .ecommerce .top .top__slider .content-slider .top__foreground .top__content h3.user__name:last-child,
.top .top__slider .content-slider .top__foreground .top__content .ecommerce .articles-related .content .articles-wrapper article .article-text a h3.user__name:last-child,
.ecommerce .articles-related .content .articles-wrapper article .article-text a .top .top__slider .content-slider .top__foreground .top__content h3.user__name: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--carreer {
  height: 60vh;
  padding: 0;
}

.top--carreer .top__foreground .breadcrumbs .breadcrumb {
  color: white !important;
}

.top--carreer .top__background {
  overflow: hidden;
}

.top--carreer .top__background .lens {
  background-color: rgba(0, 144, 140, 0.5);
  z-index: 0;
  position: absolute;
  width: 100%;
  height: 100%;
}

.top--carreer .top__background img {
  -o-object-fit: cover;
     object-fit: cover;
  max-width: none;
}

.top--home {
  overflow: inherit;
  padding: 0 !important;
  height: 600px;
  margin-top: 200px;
  top: 0;
}

.top--home .top__slider {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[12];
      grid-template-columns: repeat(12, 1fr);
}

.top--home .top__slider .content-slider {
  -ms-grid-column: 3;
  -ms-grid-column-span: 8;
  grid-column: 3/11;
}

.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 .private-area__wrapper-main .home__title,
.private-area__wrapper-main .top--home .top__slider .content-slider .top__foreground .top__content .home__title,
.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 .private-area__wrapper-main .home__title:last-child,
.private-area__wrapper-main .top--home .top__slider .content-slider .top__foreground .top__content .home__title: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 .private-area__wrapper-main .home__title:last-child,
  .private-area__wrapper-main .top--home .top__slider .content-slider .top__foreground .top__content .home__title: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, .top--home .top__slider .content-slider .top__foreground .top__content .categoria-recambios__item h3, .categoria-recambios__item .top--home .top__slider .content-slider .top__foreground .top__content h3, .top--home .top__slider .content-slider .top__foreground .top__content .filtro-recambios h3, .filtro-recambios .top--home .top__slider .content-slider .top__foreground .top__content h3, .top--home .top__slider .content-slider .top__foreground .top__content .ecommerce .user__name, .ecommerce .top--home .top__slider .content-slider .top__foreground .top__content .user__name {
  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 a .categoria-recambios__item h3,
.articles-related .content .articles-wrapper article .article-text a .categoria-recambios__item .top--home .top__slider .content-slider .top__foreground .top__content h3,
.top--home .top__slider .content-slider .top__foreground .top__content .categoria-recambios__item .articles-related .content .articles-wrapper article .article-text a h3,
.categoria-recambios__item .articles-related .content .articles-wrapper article .article-text a .top--home .top__slider .content-slider .top__foreground .top__content h3,
.top--home .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text a .filtro-recambios h3,
.articles-related .content .articles-wrapper article .article-text a .filtro-recambios .top--home .top__slider .content-slider .top__foreground .top__content h3,
.top--home .top__slider .content-slider .top__foreground .top__content .filtro-recambios .articles-related .content .articles-wrapper article .article-text a h3,
.filtro-recambios .articles-related .content .articles-wrapper article .article-text a .top--home .top__slider .content-slider .top__foreground .top__content h3,
.top--home .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text a .ecommerce h3.user__name,
.articles-related .content .articles-wrapper article .article-text a .ecommerce .top--home .top__slider .content-slider .top__foreground .top__content h3.user__name,
.top--home .top__slider .content-slider .top__foreground .top__content .ecommerce .articles-related .content .articles-wrapper article .article-text a h3.user__name,
.ecommerce .articles-related .content .articles-wrapper article .article-text a .top--home .top__slider .content-slider .top__foreground .top__content h3.user__name,
.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:first-child[type="text"], .form .form-block .top--home .top__slider .content-slider .top__foreground .top__content input:first-child[type="text"],
.top--home .top__slider .content-slider .top__foreground .top__content .form .form-block input:first-child[type="textarea"], .form .form-block .top--home .top__slider .content-slider .top__foreground .top__content input:first-child[type="textarea"],
.top--home .top__slider .content-slider .top__foreground .top__content .form .form-block input:first-child[type="email"], .form .form-block .top--home .top__slider .content-slider .top__foreground .top__content input:first-child[type="email"],
.top--home .top__slider .content-slider .top__foreground .top__content .form .form-block input:first-child[type="tel"], .form .form-block .top--home .top__slider .content-slider .top__foreground .top__content input:first-child[type="tel"],
.top--home .top__slider .content-slider .top__foreground .top__content .form .form-block input:first-child[type="number"], .form .form-block .top--home .top__slider .content-slider .top__foreground .top__content input:first-child[type="number"],
.top--home .top__slider .content-slider .top__foreground .top__content .form .form-block input:first-child[type="date"], .form .form-block .top--home .top__slider .content-slider .top__foreground .top__content input:first-child[type="date"],
.top--home .top__slider .content-slider .top__foreground .top__content .form .form-block input:first-child[type="password"], .form .form-block .top--home .top__slider .content-slider .top__foreground .top__content input:first-child[type="password"],
.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 a .categoria-recambios__item h3:first-child,
.articles-related .content .articles-wrapper article .article-text a .categoria-recambios__item .top--home .top__slider .content-slider .top__foreground .top__content h3:first-child,
.top--home .top__slider .content-slider .top__foreground .top__content .categoria-recambios__item .articles-related .content .articles-wrapper article .article-text a h3:first-child,
.categoria-recambios__item .articles-related .content .articles-wrapper article .article-text a .top--home .top__slider .content-slider .top__foreground .top__content h3:first-child,
.top--home .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text a .filtro-recambios h3:first-child,
.articles-related .content .articles-wrapper article .article-text a .filtro-recambios .top--home .top__slider .content-slider .top__foreground .top__content h3:first-child,
.top--home .top__slider .content-slider .top__foreground .top__content .filtro-recambios .articles-related .content .articles-wrapper article .article-text a h3:first-child,
.filtro-recambios .articles-related .content .articles-wrapper article .article-text a .top--home .top__slider .content-slider .top__foreground .top__content h3:first-child,
.top--home .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text a .ecommerce h3.user__name:first-child,
.articles-related .content .articles-wrapper article .article-text a .ecommerce .top--home .top__slider .content-slider .top__foreground .top__content h3.user__name:first-child,
.top--home .top__slider .content-slider .top__foreground .top__content .ecommerce .articles-related .content .articles-wrapper article .article-text a h3.user__name:first-child,
.ecommerce .articles-related .content .articles-wrapper article .article-text a .top--home .top__slider .content-slider .top__foreground .top__content h3.user__name: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%;
    -webkit-transform: translate(50%, 0px);
            transform: translate(50%, 0px);
  }
}

@media (max-width: 767px) {
  .top--home {
    margin-top: 150px;
  }
}

.top--article {
  margin-top: 200px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
}

@media (max-width: 767px) {
  .top--article {
    margin-top: 150px;
  }
}

@media (max-width: 768px) {
  .top--article {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.top--article .top__slider {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1/3;
}

@media mobile--portrait {
  .top--article .top__slider {
    height: calc(var(--space-xl) * 4);
  }
}

@media (max-width: 768px) {
  .top--article .top__slider {
    grid-column: unset;
    grid-row: unset;
  }
}

.top--article .top__slider .content-slider .top__foreground {
  position: relative;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .top--article .top__slider .content-slider .top__foreground .top__content {
    width: 100%;
  }
}

@media laptop--retina {
  .top--article .top__slider .content-slider .top__foreground .top__content {
    padding-top: 0;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .top--article .top__slider .content-slider .top__foreground .top__content {
    width: 100%;
  }
}

.top--article .top__slider .content-slider .top__foreground .top__content .display-2, .top--article .top__slider .content-slider .top__foreground .top__content .article__socials p, .article__socials .top--article .top__slider .content-slider .top__foreground .top__content p, .top--article .top__slider .content-slider .top__foreground .top__content .articles-related .content .text h3, .articles-related .content .text .top--article .top__slider .content-slider .top__foreground .top__content h3,
.top--article .top__slider .content-slider .top__foreground .top__content .display-3,
.top--article .top__slider .content-slider .top__foreground .top__content .private-area__wrapper-main .home__title,
.private-area__wrapper-main .top--article .top__slider .content-slider .top__foreground .top__content .home__title,
.top--article .top__slider .content-slider .top__foreground .top__content .display-4 {
  color: var(--white);
  text-align: center;
}

.top--article .top__slider .content-slider .top__foreground .top__content .lead-font, .top--article .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--article .top__slider .content-slider .top__foreground .top__content h3.date, .top--article .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--article .top__slider .content-slider .top__foreground .top__content h3.headline-font, .top--article .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text a .categoria-recambios__item h3, .articles-related .content .articles-wrapper article .article-text a .categoria-recambios__item .top--article .top__slider .content-slider .top__foreground .top__content h3, .top--article .top__slider .content-slider .top__foreground .top__content .categoria-recambios__item .articles-related .content .articles-wrapper article .article-text a h3, .categoria-recambios__item .articles-related .content .articles-wrapper article .article-text a .top--article .top__slider .content-slider .top__foreground .top__content h3, .top--article .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text a .filtro-recambios h3, .articles-related .content .articles-wrapper article .article-text a .filtro-recambios .top--article .top__slider .content-slider .top__foreground .top__content h3, .top--article .top__slider .content-slider .top__foreground .top__content .filtro-recambios .articles-related .content .articles-wrapper article .article-text a h3, .filtro-recambios .articles-related .content .articles-wrapper article .article-text a .top--article .top__slider .content-slider .top__foreground .top__content h3, .top--article .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text a .ecommerce h3.user__name, .articles-related .content .articles-wrapper article .article-text a .ecommerce .top--article .top__slider .content-slider .top__foreground .top__content h3.user__name, .top--article .top__slider .content-slider .top__foreground .top__content .ecommerce .articles-related .content .articles-wrapper article .article-text a h3.user__name, .ecommerce .articles-related .content .articles-wrapper article .article-text a .top--article .top__slider .content-slider .top__foreground .top__content h3.user__name, .top--article .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--article .top__slider .content-slider .top__foreground .top__content a {
  color: var(--white);
  text-align: center;
}

.top--article .top__foreground {
  position: relative;
  height: var(--top-large-height);
  background-color: var(--light-blue);
}

.top--article .top__foreground .top__content {
  width: 50%;
  margin-left: auto;
  margin-right: 0;
}

@media (max-width: 768px) {
  .top--article .top__foreground .top__content {
    width: 90%;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}

@media (max-width: 767px) {
  .top--article .top__foreground .top__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.top--pub {
  margin-top: 200px;
}

.top--pub .top__foreground .top__container {
  margin-left: 8% !important;
}

@media (max-width: 767px) {
  .top--pub .top__foreground .top__container {
    margin-left: 8% !important;
  }
}

.top--inner {
  margin-top: 200px;
  overflow: hidden;
  top: auto;
  height: 600px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[12];
      grid-template-columns: repeat(12, 1fr);
}

.top--inner.top-articles img {
  width: auto !important;
}

@media (max-width: 767px) {
  .top--inner.top-articles img {
    width: 100% !important;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .top--inner .background .image .image__content {
    max-width: none;
  }
}

@media (max-width: 767px) {
  .top--inner {
    height: 300px;
    margin-top: 150px;
  }
  .top--inner .background .image .image__content {
    max-width: none;
  }
}

.top--inner.small {
  height: 600px !important;
}

.top--inner.small .lens {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

.top--inner .button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.top--inner .button a {
  margin: 20px 0;
  color: white;
  padding: 15px 10px;
  background-color: var(--bc-1);
  border: 1px solid var(--bc-1);
  text-transform: uppercase;
  font-size: 1.3rem;
  font-weight: normal;
  border-radius: 0;
  width: 200px;
  text-align: center;
}

@media (max-width: 767px) {
  .top--inner .button a {
    margin: 10px 0;
    padding: 10px 5px;
  }
}

.top--inner .button a:hover {
  background-color: white;
  color: var(--bc-1);
}

.top--inner .top__foreground {
  -ms-grid-column: 3;
  -ms-grid-column-span: 8;
  grid-column: 2/12;
  position: absolute;
}

@media (max-width: 767px) {
  .top--inner .top__foreground {
    -ms-grid-column: 1;
    -ms-grid-column-span: 12;
    grid-column: 1/13;
  }
}

.top--inner .top__foreground .top__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[12];
      grid-template-columns: repeat(12, 1fr);
  width: 100%;
  margin: 0;
}

@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 {
  -ms-grid-column: 2;
  -ms-grid-column-span: 9;
  grid-column: 2/11;
  width: 100%;
  margin: 0;
}

.top--inner .top__foreground .top__container .top__content .top-special {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media (max-width: 767px) {
  .top--inner .top__foreground .top__container .top__content .top-special {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: var(--space-l);
  }
}

.top--inner .top__foreground .top__container .top__content .top-special > .top-special__lens {
  position: absolute;
  width: 86%;
  height: 70%;
  background-color: rgba(159, 159, 158, 0.2);
  bottom: 0;
  right: 0;
  z-index: 0;
}

@media (max-width: 767px) {
  .top--inner .top__foreground .top__container .top__content .top-special > .top-special__lens {
    width: 96%;
    height: 84%;
  }
}

.top--inner .top__foreground .top__container .top__content .top-special > .top-special__left {
  z-index: 1;
  width: 50%;
}

.top--inner .top__foreground .top__container .top__content .top-special > .top-special__left p {
  width: 80%;
}

@media (max-width: 767px) {
  .top--inner .top__foreground .top__container .top__content .top-special > .top-special__left {
    width: 100%;
  }
  .top--inner .top__foreground .top__container .top__content .top-special > .top-special__left p {
    width: 100%;
  }
}

.top--inner .top__foreground .top__container .top__content .top-special > .top-special__right {
  z-index: 1;
  gap: 20px;
  padding-left: 10%;
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media (max-width: 767px) {
  .top--inner .top__foreground .top__container .top__content {
    width: 90% !important;
    padding-left: 10%;
    padding-top: 0 !important;
  }
  .top--inner .top__foreground .top__container .top__content .top-special > .top-special__right {
    padding-left: 0;
    width: 100%;
  }
}

.top--inner .top__foreground .top__container .top__content .top-special > .top-special__right > .right__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.top--inner .top__foreground .top__container .top__content .top-special > .top-special__right > .right__title p {
  font-size: 1.5rem;
}

@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: 100%;
    padding-top: var(--space-xl);
    margin: 0 !important;
    -ms-grid-column: 2 !important;
    -ms-grid-column-span: 10 !important;
    grid-column: 2/12 !important;
  }
  .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__slider {
  -ms-grid-column: 3;
  -ms-grid-column-span: 8;
  grid-column: 2/12; /*3/11;*/
  position: relative;
}

@media (max-width: 767px) {
  .top--inner .top__slider {
    -ms-grid-column: 1;
    -ms-grid-column-span: 12;
    grid-column: 1/13;
  }
}

.top--inner .top__slider .top__slide {
  position: relative;
}

.top--inner .top__slider .top__slide .image {
  position: relative;
}

.top--inner .top__slider .top__slide .image img {
  height: 100%;
  width: 100%;
}

.top--inner .top__slider .image__content {
  width: auto;
}

.top--cat {
  margin-top: 200px;
}

.top--cat .top__foreground .top__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 84%;
  margin-left: 8%;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .top--cat .top__foreground .top__container {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .top--cat .top__foreground .top__container {
    width: 100%;
    margin-left: 0;
  }
}

.top--cat .top__foreground .top__container .top__content {
  width: 79%;
  padding-top: var(--space-m);
}

.top--cat .top__foreground .top__container .top__content h1 {
  width: 60% !important;
}

.top--cat .top__foreground .top__container .top__content .top-special {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.top--cat .top__foreground .top__container .top__content .top-special > .top-special__lens {
  position: absolute;
  width: 85%;
  height: 66%;
  background-color: rgba(159, 159, 158, 0.2);
  bottom: 0;
  right: 0;
  z-index: 0;
}

.top--cat .top__foreground .top__container .top__content .top-special > .top-special__left {
  z-index: 1;
  width: 50%;
}

.top--cat .top__foreground .top__container .top__content .top-special > .top-special__left p {
  width: 80%;
}

.top--cat .top__foreground .top__container .top__content .top-special > .top-special__right {
  z-index: 1;
  gap: 20px;
  padding-left: 10%;
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.top--cat .top__foreground .top__container .top__content .top-special > .top-special__right > .right__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.top--cat .top__foreground .top__container .top__content .top-special > .top-special__right > .right__title p {
  font-size: 1.5rem;
}

@media (min-width: 1200px) and (max-width: 1600px) {
  .top--cat .top__foreground .top__container .top__content {
    padding-top: 0;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .top--cat .top__foreground .top__container .top__content {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .top--cat .top__foreground .top__container .top__content {
    width: 80%;
    padding-top: var(--space-xl);
  }
  .top--cat .top__foreground .top__container .top__content .display-5,
  .top--cat .top__foreground .top__container .top__content .body-font,
  .top--cat .top__foreground .top__container .top__content body,
  .top--cat .top__foreground .top__container .top__content .form .form-block label,
  .form .form-block .top--cat .top__foreground .top__container .top__content label,
  .top--cat .top__foreground .top__container .top__content .form .form-block input[type="text"],
  .form .form-block .top--cat .top__foreground .top__container .top__content input[type="text"],
  .top--cat .top__foreground .top__container .top__content .form .form-block input[type="textarea"],
  .form .form-block .top--cat .top__foreground .top__container .top__content input[type="textarea"],
  .top--cat .top__foreground .top__container .top__content .form .form-block input[type="email"],
  .form .form-block .top--cat .top__foreground .top__container .top__content input[type="email"],
  .top--cat .top__foreground .top__container .top__content .form .form-block input[type="tel"],
  .form .form-block .top--cat .top__foreground .top__container .top__content input[type="tel"],
  .top--cat .top__foreground .top__container .top__content .form .form-block input[type="number"],
  .form .form-block .top--cat .top__foreground .top__container .top__content input[type="number"],
  .top--cat .top__foreground .top__container .top__content .form .form-block input[type="date"],
  .form .form-block .top--cat .top__foreground .top__container .top__content input[type="date"],
  .top--cat .top__foreground .top__container .top__content .form .form-block input[type="password"],
  .form .form-block .top--cat .top__foreground .top__container .top__content input[type="password"],
  .top--cat .top__foreground .top__container .top__content .form .form-block textarea,
  .form .form-block .top--cat .top__foreground .top__container .top__content textarea,
  .top--cat .top__foreground .top__container .top__content .form .form-block select,
  .form .form-block .top--cat .top__foreground .top__container .top__content select,
  .top--cat .top__foreground .top__container .top__content .langs a,
  .langs .top--cat .top__foreground .top__container .top__content a,
  .top--cat .top__foreground .top__container .top__content .langs span,
  .langs .top--cat .top__foreground .top__container .top__content span,
  .top--cat .top__foreground .top__container .top__content .article__socials .date p,
  .article__socials .date .top--cat .top__foreground .top__container .top__content p,
  .top--cat .top__foreground .top__container .top__content .articles-related .content .articles-wrapper article .article-text p,
  .articles-related .content .articles-wrapper article .article-text .top--cat .top__foreground .top__container .top__content p,
  .top--cat .top__foreground .top__container .top__content .body-font strong,
  .top--cat .top__foreground .top__container .top__content body strong,
  .top--cat .top__foreground .top__container .top__content .form .form-block label strong,
  .form .form-block .top--cat .top__foreground .top__container .top__content label strong,
  .top--cat .top__foreground .top__container .top__content .form .form-block input[type="text"] strong,
  .form .form-block .top--cat .top__foreground .top__container .top__content input[type="text"] strong,
  .top--cat .top__foreground .top__container .top__content .form .form-block input[type="textarea"] strong,
  .form .form-block .top--cat .top__foreground .top__container .top__content input[type="textarea"] strong,
  .top--cat .top__foreground .top__container .top__content .form .form-block input[type="email"] strong,
  .form .form-block .top--cat .top__foreground .top__container .top__content input[type="email"] strong,
  .top--cat .top__foreground .top__container .top__content .form .form-block input[type="tel"] strong,
  .form .form-block .top--cat .top__foreground .top__container .top__content input[type="tel"] strong,
  .top--cat .top__foreground .top__container .top__content .form .form-block input[type="number"] strong,
  .form .form-block .top--cat .top__foreground .top__container .top__content input[type="number"] strong,
  .top--cat .top__foreground .top__container .top__content .form .form-block input[type="date"] strong,
  .form .form-block .top--cat .top__foreground .top__container .top__content input[type="date"] strong,
  .top--cat .top__foreground .top__container .top__content .form .form-block input[type="password"] strong,
  .form .form-block .top--cat .top__foreground .top__container .top__content input[type="password"] strong,
  .top--cat .top__foreground .top__container .top__content .form .form-block textarea strong,
  .form .form-block .top--cat .top__foreground .top__container .top__content textarea strong,
  .top--cat .top__foreground .top__container .top__content .form .form-block select strong,
  .form .form-block .top--cat .top__foreground .top__container .top__content select strong,
  .top--cat .top__foreground .top__container .top__content .langs a strong,
  .langs .top--cat .top__foreground .top__container .top__content a strong,
  .top--cat .top__foreground .top__container .top__content .langs span strong,
  .langs .top--cat .top__foreground .top__container .top__content span strong,
  .top--cat .top__foreground .top__container .top__content .article__socials .date p strong,
  .article__socials .date .top--cat .top__foreground .top__container .top__content p strong,
  .top--cat .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--cat .top__foreground .top__container .top__content p strong {
    text-align: center !important;
  }
}

.top.products {
  margin-top: 200px;
}

.top.products .top__container {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
}

@media (max-width: 767px) {
  .top.products .top__container {
    margin-left: 0 !important;
  }
}

.top.products .top__container .search {
  z-index: var(--z-index--hightlight);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 80%;
  margin: auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px var(--bc-1) solid;
  border-bottom: 1px var(--bc-1) solid;
  padding: 10px;
  margin: 20px 0px;
}

.top.products .top__container .search .title {
  width: 50%;
  font-weight: bold;
  font-size: 2.5rem;
  padding-left: 20px;
  border-right: 1px var(--bc-1) solid;
}

.top.products .top__container .search form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0;
}

.top.products .top__container .search form input[type="text"] {
  background-color: transparent;
  width: 50%;
}

.top.products .top__container .search form input[type="text"]::-webkit-input-placeholder {
  color: black;
  font-size: 2rem;
  font-weight: bold;
  line-height: 2rem;
}

.top.products .top__container .search form input[type="text"]:-ms-input-placeholder {
  color: black;
  font-size: 2rem;
  font-weight: bold;
  line-height: 2rem;
}

.top.products .top__container .search form input[type="text"]::-ms-input-placeholder {
  color: black;
  font-size: 2rem;
  font-weight: bold;
  line-height: 2rem;
}

.top.products .top__container .search form input[type="text"]::placeholder {
  color: black;
  font-size: 2rem;
  font-weight: bold;
  line-height: 2rem;
}

.top.products .top__container .search form input[type="submit"] {
  background-color: var(--bc-1);
  border-radius: 50px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 30px;
  color: white;
  text-transform: uppercase;
  font-weight: 600;
}

.top.products-inner {
  margin-top: 200px;
}

.top.products-inner .top__container {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
}

@media (max-width: 767px) {
  .top.products-inner .top__container {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
}

.top.products-inner .top__container .top__content {
  margin: 0 !important;
  padding-left: 10%;
  width: 50%;
}

@media (max-width: 767px) {
  .top.products-inner .top__container .top__content {
    padding-left: 00%;
    width: 100%;
  }
}

.top.products-inner .top__container .top__image {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.top.products-inner .top__container .top__image .main-image {
  z-index: 2;
  -webkit-transform: translateX(-20%);
          transform: translateX(-20%);
  max-width: 300px;
}

@media (max-width: 767px) {
  .top.products-inner .top__container .top__image .main-image {
    max-width: 200px;
  }
}

.top.products-inner .top__container .top__image .blob {
  z-index: 1;
  position: absolute;
  max-width: 500px;
}

@media (max-width: 767px) {
  .top.products-inner .top__container .top__image .blob {
    -webkit-transform: translateX(-16%);
            transform: translateX(-16%);
    max-width: 728px;
    width: 300px;
  }
}

@media (max-width: 767px) {
  .top.products-inner .top__container .top__image {
    width: 100%;
    padding: 20px;
  }
}

.top--large {
  height: 80vh;
}

@media (max-width: 767px) {
  .top--large {
    height: 75vh !important;
  }
}

.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%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 30px;
  height: 50px;
  border-radius: 15px 15px;
  border: 2px solid var(--white);
  -webkit-transition: 0.5s cubic-bezier(0.52, 0.01, 0.16, 1) 0s;
  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%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 10px;
  border-left: 2px solid var(--white);
  -webkit-animation-name: mouse-scroll;
          animation-name: mouse-scroll;
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
  -webkit-animation-timing-function: cubic-bezier(0.52, 0.01, 0.16, 1);
          animation-timing-function: cubic-bezier(0.52, 0.01, 0.16, 1);
}

.top__down:hover {
  opacity: 1;
}

@-webkit-keyframes mouse-scroll {
  0% {
    top: 10px;
  }
  25% {
    top: 20px;
  }
  35% {
    top: 12px;
  }
  45% {
    top: 18px;
  }
  50% {
    top: 10px;
  }
  100% {
    top: 10px;
  }
}

@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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: 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 {
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 100%;
  z-index: 2;
}

.top__foreground--relative {
  position: relative;
}

.top__container {
  width: 100%;
  z-index: 2;
  margin: 0;
}

@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: 100%;
  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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .top__content {
    height: 100%;
  }
}

.top__background {
  position: absolute;
  z-index: 1;
  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;
    -webkit-transform: none;
            transform: none;
  }
}

.top__buttons {
  position: absolute;
  right: 1%;
  top: 50%;
  bottom: var(--space-l);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: var(--z-index--highlight);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.top__buttons .slider__button {
  border-radius: 150px;
  position: relative;
  display: inline-block;
  background-color: transparent;
  border: 2px solid var(--bc-3);
  height: var(--space-m);
  width: 16px;
  cursor: pointer;
  -webkit-transition: all 0.5s cubic-bezier(0.52, 0.01, 0.16, 1) 0s;
  transition: all 0.5s cubic-bezier(0.52, 0.01, 0.16, 1) 0s;
}

.top__buttons .slider__button:hover::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 150px;
  background-color: var(--bc-3);
  top: 15%;
  left: 15%;
}

@media (max-width: 767px) {
  .top__buttons .slider__button:hover::after {
    top: 10%;
    left: 10%;
    width: 5px;
    height: 5px;
  }
}

.top__buttons .slider__button.current {
  border: 2px solid var(--bc-1);
}

.top__buttons .slider__button.current::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 150px;
  background-color: var(--bc-1);
  top: 15%;
  left: 15%;
}

@media (max-width: 767px) {
  .top__buttons .slider__button.current::after {
    top: 10%;
    left: 10%;
    width: 5px;
    height: 5px;
  }
}

@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%;
  -webkit-transform: translate(-50%, -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;
}

.decoration-image.hoja-ahorra {
  top: auto;
  bottom: -80px;
  left: auto;
  right: 50px;
  z-index: 1;
  height: auto;
  width: 250px;
}

@media (max-width: 767px) {
  .decoration-image.hoja-ahorra {
    right: 0px;
    bottom: 0;
    width: 200px;
  }
}

.decoration-image--moved-bottom {
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}

.decoration-image--moved-top {
  -webkit-transform: translateY(-50%);
          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%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.decoration-image--middle-h {
  left: 50%;
  -webkit-transform: translateX(-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: 1100px) {
  .decoration-image--coffee, .decoration-image--cup {
    display: none;
  }
}

@media (max-width: 724px) {
  .decoration-image--the-roadster {
    display: none;
  }
}

.filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  margin-top: 20px;
}

@media (max-width: 767px) {
  .filters {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    padding-bottom: 20px;
  }
  .filters .filters__search {
    width: 100% !important;
  }
  .filters .finder {
    width: 100% !important;
  }
  .filters .finder__filters {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .filters .finder__filters .filters__category {
    width: 100% !important;
    border: none !important;
  }
}

.filters .filter-novedades {
  z-index: 3;
  background: transparent;
  color: black;
  padding: 10px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: flex-start;
  font-weight: normal;
  font-size: 1.8rem;
}

.filters .filter-novedades.special {
  background: var(--light-grey);
  color: #999;
  border-right: 1px solid #aaa;
}

@media (max-width: 767px) {
  .filters .filter-novedades {
    width: 100%;
    padding: 10px;
  }
  .filters .finder.ecm .filter-novedades.novedades span {
    margin-bottom: 0 !important;
  }
  .filters .filter-novedades img,
  .categorie .categorie-link img {
    display: none;
  }
}

.filters__search {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.filters__search .finder__title {
  height: 50%;
}

.filters__search .finder__searchterm {
  height: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
}

.filters__search .finder__searchterm input {
  width: 90%;
  background: var(--light-grey);
}

@media (max-width: 767px) {
  .filters__search .finder__searchterm input {
    padding: 7px;
  }
}

.filters__search .finder__searchterm button {
  width: 5%;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.filters__search .finder__searchterm button:hover {
  background-color: var(--bc-1);
  color: white;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 767px) {
  .filters__search .finder__searchterm button {
    width: 10%;
  }
}

.filters .finder {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.filters .finder__title p {
  font-weight: bold;
}

.filters .finder__filters {
  width: 100%;
  margin-top: 10px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 767px) {
  .filters .finder__filters {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
}

.filters .finder.ecm {
  margin-top: 20px;
}



@media (max-width: 767px) {
  .filters .finder.ecm .filter-novedades {
    width: 100% !important;
  }
}

.filters .finder.ecm .filter-novedades.novedades {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.filters .finder.ecm .filter-novedades.novedades img {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  height: 75px;
  width: auto;
}

.filters .finder.ecm .filter-novedades.novedades span {
  font-style: normal;
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-size: 2rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.filters .finder.ecm .filter-novedades.novedades:hover {
    background: rgba(0,0,0,.02);
}
.filters .finder.ecm .filter-novedades.novedades:hover span {
  /*-webkit-transform: scale(1.1);
          transform: scale(1.1);*/
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.filters .finder.ecm .filter-novedades.novedades:hover img {
  height: 75px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.filters .finder.ecm .finder__filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2px;
}



.filters .finder.ecm .finder__filters .filter-novedades {
  width: 16.66%;
  align-items: center;
}

@media (max-width: 767px) {
  .filters .finder.ecm .finder__filters {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
.filters .finder.ecm .finder__filters .filter-novedades {
    align-items: flex-start;
  }
}

.filters .finder.ecm .finder__filters .finder_finders {
  width: 83.34%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 2px;
  align-items: flex-start;
}

@media (max-width: 767px) {
  .filters .finder.ecm .finder__filters .finder_finders {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100% !important;
  }
}

.filters .finder.ecm .finder__filters .finder_finders .filters__category {
  padding: 5px 0px;
  background-color: #50504f;
  -webkit-box-flex: 1 !important;
      -ms-flex: 1 0 33% !important;
          flex: 1 0 33% !important;
  height: auto !important;
  color: white !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

.filters .finder.ecm .finder__filters .finder_finders .filters__category:nth-child(1) {
  -webkit-box-flex: 1 !important;
      -ms-flex: 1 0 49% !important;
          flex: 1 0 49% !important;
}

.filters .finder.ecm .finder__filters .finder_finders .filters__category:nth-child(2) {
  -webkit-box-flex: 1 !important;
      -ms-flex: 1 0 49% !important;
          flex: 1 0 49% !important;
}

.filters .finder.ecm .finder__filters .finder_finders .filters__category:hover {
  background-color: var(--bc-1);
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

.filters .finder.ecm .finder__filters .finder_finders .filters__category:hover .select2 .select2-selection {
  background-color: var(--bc-1);
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

.filters .finder.ecm .finder__filters .finder_finders .filters__category:hover img {
  -webkit-filter: grayscale(1) brightness(4);
          filter: grayscale(1) brightness(4);
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

.filters .finder.ecm .finder__filters .finder_finders .filters__category img {
  -webkit-filter: grayscale(0%) brightness(1);
          filter: grayscale(0%) brightness(1);
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

.filters .finder.ecm .finder__filters .finder_finders .filters__category .name {
  padding: 0 10px;
  font-size: 1.8rem;
  text-transform: uppercase;
  font-style: normal;
}

.filters .finder.ecm .finder__filters .finder_finders .filters__category .select2-selection__placeholder {
  font-size: 1.8rem;
  text-transform: uppercase;
  margin-left: 10px;
  font-style: normal;
}

.filters .finder.ecm .finder__filters .finder_finders .filters__category .select2 .select2-selection {
  background-color: #50504f;
  border: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.filters .finder.ecm .finder__filters .finder_finders .filters__category .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: white !important;
}

.filters .finder.ecm .finder__filters .finder_finders .categorie {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-box-flex: 1 !important;
      -ms-flex: 1 0 20% !important;
          flex: 1 0 20% !important;
  background-color: transparent;
  gap: 10px;
  padding: 10px;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.filters .finder.ecm .finder__filters .finder_finders .categorie:nth-child(1) {
  -webkit-box-flex: 1 !important;
      -ms-flex: 1 0 20% !important;
          flex: 1 0 20% !important;
}

.filters .finder.ecm .finder__filters .finder_finders .categorie:nth-child(2) {
  -webkit-box-flex: 1 !important;
      -ms-flex: 1 0 20% !important;
          flex: 1 0 20% !important;
}

.filters .finder.ecm .finder__filters .finder_finders .categorie .categorie-link {
  text-align: center;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  -webkit-box-align: center;
  gap: 0;
  color: black;
  width: 100%;
  font-weight: bold;
  font-size: 2rem;
}

.filters .finder.ecm .finder__filters .finder_finders .categorie .categorie-link img {
    width: 75px;
    height: auto;
    margin: 0 auto;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.filters .finder.ecm .finder__filters .finder_finders .categorie .subcategories {
  position: absolute;
  width: 100%;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  bottom: 0;
  z-index: 999;
  max-height: 0px;
  overflow: hidden;
}

.filters .finder.ecm .finder__filters .finder_finders .categorie .subcategories .subcategorie {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--beige);
  padding: 10px;
  color: black;
  font-weight: normal;
  font-size: 1.6rem;
  border-bottom: 2px solid #F6F6F6;
}

.filters .finder.ecm .finder__filters .finder_finders .categorie .subcategories .subcategorie:hover {
  background-color: #e0e0d3;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.filters .finder.ecm .finder__filters .finder_finders .categorie .subcategories .subcategorie:first-child {
    border-top: 5px solid var(--azul);
}

.filters .finder.ecm .finder__filters .finder_finders .categorie:hover {
  background-color: rgba(0,0,0,.02);
}

.filters .finder.ecm .finder__filters .finder_finders .categorie:hover .categorie-link img {
  /*-webkit-filter: grayscale(1) brightness(4);
          filter: grayscale(1) brightness(4);*/
}

.filters .finder.ecm .finder__filters .finder_finders .categorie:hover .subcategories {
  max-height: 500px;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.filters .finder .filters__category:last-child.filter-novedades.special {
  border-right: unset !important;
}

.filters .finder .filters__category:last-child .select2-selection {
  border-right: unset !important;
}

.filters .finder .filters__category {
  width: 100%;
}

.filters .finder .filters__category:nth-child(6n) .select2-selection {
  border-right: none !important;
}

.filters .finder .filters__category .select2 {
  width: 100% !important;
}

.filters .finder .filters__category .select2 .no-search .select2-search {
  display: none;
}

.filters .finder .filters__category .select2 .select2-selection {
  background: var(--light-grey);
  border: unset;
  border-right: 1px solid #aaa;
}

@media (max-width: 767px) {
  .filters .finder .filters__category .select2 .select2-selection {
    border-right: none;
  }
}

.filters .finder .filters__category .select2 span.select2-selection.select2-selection--single {
  border-radius: unset !important;
  height: 40px;
}

.filters .finder .filters__category .select2 .select2-selection__rendered {
  text-align: center;
  padding: 0 8px;
  line-height: 40px;
}

.filters .finder .filters__category .select2 .select2-selection__arrow {
  opacity: 0;
}

.filters .finder .filters__category .select2 .select2-selection__placeholder {
  font-family: var(--degular);
  font-weight: 600;
  font-size: 1.4rem;
}

.filters .finder__search-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 33%;
  position: relative;
}

@media (max-width: 1024px) {
  .filters .finder__search-content {
    width: 80%;
    margin: auto;
  }
}

.filters .finder__search-content .search-content__title {
  width: 100%;
}

.filters .finder__search-content .search-content__title h3 {
  color: white;
  height: 20px;
  font-size: 0.8em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 1024px) {
  .filters .finder__search-content .search-content__title h3 {
    color: black;
  }
}

.filters .finder__search-content .search-content__select {
  width: 50%;
}

.filters .finder__search-content .search-content__select.last {
  position: relative;
}

.filters .finder__search-content .search-content__select.last::before {
  content: "";
  height: 75%;
  width: 2px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: var(--bc-3);
  z-index: 2;
}

.filters .finder__search-content .search-content__select.full-width {
  width: 100%;
}

.filters .finder__search-content .search-content__select .select2-container {
  width: 100% !important;
}

.filters .finder__search-content .search-content__select .select2-container .selection .select2-selection {
  background-color: transparent;
  border: none;
  padding: 10px 20px;
  background-color: var(--bc-1);
  height: auto;
  border-radius: 5px !important;
}

.filters .finder__search-content .search-content__select .select2-container .selection .select2-selection__arrow {
  display: none;
}

.filters .finder__search-content .search-content__select .select2-container .selection .select2-selection__placeholder {
  color: white !important;
  font-size: 0.8em;
}

.filters .finder__search-content .search-content__select .select2-container .selection .select2-selection__rendered {
  padding: 0 !important;
}

.filters .finder__search-content .search-content__select.no-radius-left .select2-container .selection .select2-selection {
  border-bottom-left-radius: 0px !important;
  border-top-left-radius: 0px !important;
}

.filters .finder__search-content .search-content__select.no-radius-right .select2-container .selection .select2-selection {
  border-bottom-right-radius: 0px !important;
  border-top-right-radius: 0px !important;
}

@media (max-width: 1024px) {
  .filters .finder__search-content .search-content__select.no-radius-right .select2-container .selection .select2-selection {
    border-bottom-right-radius: unset !important;
    border-top-right-radius: unset !important;
  }
}

.filters .finder__search-content .select2-container {
  bottom: 0 !important;
  top: unset !important;
  left: 0 !important;
  width: 100% !important;
}

.filters .finder__search-content .select2-container .select2-selection--clearable {
  background-color: var(--bc-2) !important;
}

.filters .finder__search-content .select2-container .select2-selection--clearable span {
  color: white !important;
  font-size: 0.8em;
  padding: 0 !important;
  height: 30px;
}

.filters .finder__search-content .select2-container .select2-selection__clear {
  margin-right: 0 !important;
  font-size: 1.5em !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.filters .finder input[type="submit"] {
  cursor: pointer;
  background-color: var(--bc-2);
  color: white;
  font-family: "Font Awesome 5 Pro";
  font-size: 0.8em;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

@media (max-width: 1024px) {
  .filters .finder input[type="submit"] {
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
  }
}

.filters .finder input[type="submit"]:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background-color: var(--bc-3);
}

.filters .select2-results__options {
  max-height: unset !important;
}

.filters .select2-dropdown {
  width: 212px;
  margin: 0;
  border-radius: 0px !important;
  color: black;
  background: var(--beige);

  border: unset;
}

.filters .select2-dropdown .select2-search__field {
  border-radius: 5px;
  padding: 10px 20px !important;
  border-color: var(--bc-2) !important;
  background-color: var(--bc-1-lighter-30) !important;
  color: var(--bc-3);
}

.filters .select2-dropdown ul li {
  position: relative;
  font-size: 0.8em;
  text-align: left;
  padding: 10px 20px;
  text-align: center;
}

.filters .select2-dropdown ul li:before {
  content: none;
}

.filters .select2-dropdown ul li:after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: var(--light-grey);
}

.filters .select2-dropdown ul li.select2-results__option--selected {
  background-color: var(--beige) !important;
  font-weight: 700;
}

.filters .select2-dropdown ul li.select2-results__option--highlighted {
  background-color: var(--beige) !important;
  color: var(--azul) !important;
}

.filters .select2-dropdown ul li.select2-results__option:hover {
  background-color: var(--beige) !important;
  color: var(--bc-1);
}

.filters .select2-dropdown ul li:last-child:after {
  content: none;
}

.slider-novelties {
  position: relative;
  height: 700px;
  overflow: hidden;
  margin-top: 30px;
}

@media (max-width: 767px) {
  .slider-novelties {
    height: 150px;
  }
}

.slider-novelties .slide {
  position: absolute;
  width: 100%;
  height: auto;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  opacity: 0;
  z-index: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.slider-novelties .slide img {
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.slider-novelties .slide.active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  opacity: 1;
  z-index: 2;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.slider-novelties .slide.active.out {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  opacity: 0;
  z-index: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.blocks.medical-chart {
  position: relative;
}

.blocks.medical-chart .grid__item:nth-child(odd) {
  background: white;
}

.blocks.medical-chart .grid__item:nth-child(even) {
  background: rgba(var(--bc-2), 0.05);
}

.blocks.medical-chart .grid__item:first-child {
  margin-top: 75px;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .blocks.medical-chart .grid__item:first-child {
    margin-top: 50px;
  }
}

@media (max-width: 767px) {
  .blocks.medical-chart .grid__item:first-child {
    margin-top: 50px;
  }
}

@media (max-width: 767px) {
  .blocks.medical-chart .grid__item .block .text {
    padding: 0 40px;
  }
}

.blocks.medical-chart .icon-search-top {
  position: absolute;
  height: 50px;
  background: rgba(0, 0, 0, 0.5);
  top: -50px;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
}

.blocks.medical-chart .doctors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.blocks.medical-chart .doctors__item {
  width: 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-top: 20px;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .blocks.medical-chart .doctors__item {
    width: 50%;
    padding: 0 50px;
  }
}

@media (max-width: 767px) {
  .blocks.medical-chart .doctors__item {
    width: 100%;
    padding: 0 25px;
  }
}

.blocks.medical-chart .doctors__item .item__image {
  width: 140px;
  height: 140px;
  position: relative;
  overflow: hidden;
}

.blocks.medical-chart .doctors__item .item__image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.blocks.medical-chart .doctors__item .item__image:hover:after {
  -webkit-animation: bounceAndRotate .6s linear forwards;
          animation: bounceAndRotate .6s linear forwards;
}

.blocks.medical-chart .doctors__item .item__image:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 167, 224, 0.4);
  -webkit-animation: removeBounceAndRotate .6s linear forwards;
          animation: removeBounceAndRotate .6s linear forwards;
}

.blocks.medical-chart .doctors__item .item__info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.blocks.medical-chart .doctors__item .item__info .info__name a p:after {
  content: '';
  position: absolute;
  top: 50%;
  left: -10px;
  width: 2px;
  height: 100%;
  background-color: var(--bc-1);
  -webkit-transition: all 0.15s cubic-bezier(0, 0, 0, 0.54);
  transition: all 0.15s cubic-bezier(0, 0, 0, 0.54);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

.blocks.medical-chart .doctors__item .item__info .info__name a:hover p {
  text-decoration: none;
}

.blocks.medical-chart .doctors__item .item__info .info__name a:hover p::after {
  -webkit-transform: scaleX(1) translate(0, -50%);
          transform: scaleX(1) translate(0, -50%);
}

.blocks.medical-chart .doctors__item .item__info .info__name p {
  font-size: 20px;
  font-weight: 300;
  color: var(--bc-2);
}

.blocks.medical-chart .doctors__item .item__info .btn-see-more {
  margin-top: auto;
}

.blocks.medical-chart .doctors__item .item__info .btn-see-more a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.blocks.medical-chart .doctors__item .item__info .btn-see-more a span {
  z-index: 1;
  color: white;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.blocks.medical-chart .doctors__item .item__info .btn-see-more a:hover {
  text-decoration: none;
}

.blocks.medical-chart .doctors__item .item__info .btn-see-more a:hover span {
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  color: var(--bc-1);
}

.blocks.medical-chart .doctors__item .item__info .btn-see-more a:hover:before {
  background: #91d8f1;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.blocks.medical-chart .doctors__item .item__info .btn-see-more a:hover:after {
  background: #c0e9f7;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.blocks.medical-chart .doctors__item .item__info .btn-see-more a:after {
  content: "";
  width: 25px;
  height: 25px;
  background: #91d8f1;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.blocks.medical-chart .doctors__item .item__info .btn-see-more a:before {
  content: "";
  width: 35px;
  height: 35px;
  background: #c0e9f7;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.blocks.medical-chart h3 {
  position: relative;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}

.blocks.medical-chart h3:after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--bc-1);
  -webkit-transition: all 0.15s cubic-bezier(0, 0, 0, 0.54);
  transition: all 0.15s cubic-bezier(0, 0, 0, 0.54);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

.blocks.medical-chart h3:hover::after, .blocks.medical-chart h3.current::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.top--doctor-file {
  background: rgba(var(--bc-2), 0.25);
  overflow: inherit;
}

@media (max-width: 767px) {
  .top--doctor-file {
    height: auto;
  }
}

.top--doctor-file__details {
  width: 75%;
  margin: 0 auto;
  position: absolute;
  top: 200px;
  left: 12.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 3;
}

@media (max-width: 767px) {
  .top--doctor-file__details {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
    top: unset;
    left: unset;
    width: 90%;
    padding: 150px 0px;
  }
}

.top--doctor-file__details .details__image {
  width: 25%;
}

.top--doctor-file__details .details__image img {
  width: 100%;
}

.top--doctor-file__details .details__info {
  padding-left: 80px;
  width: 50%;
}

@media (max-width: 767px) {
  .top--doctor-file__details .details__info {
    width: 100%;
    padding-left: 0;
    margin-top: 20px;
  }
}

.top--doctor-file__details .details__info .info__title a {
  position: relative;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}

.top--doctor-file__details .details__info .info__title a:after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--bc-1);
  -webkit-transition: all 0.15s cubic-bezier(0, 0, 0, 0.54);
  transition: all 0.15s cubic-bezier(0, 0, 0, 0.54);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

.top--doctor-file__details .details__info .info__title a:hover::after, .top--doctor-file__details .details__info .info__title a.current::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.top--doctor-file__details .details__info .info__title span {
  font-size: 17px;
  font-weight: bold;
  color: var(--bc-2);
}

.top--doctor-file__details .details__info .info__name {
  margin: 20px 0;
}

.top--doctor-file__details .details__info .info__name span {
  font-size: 52px;
  line-height: 1.23;
  font-weight: bold;
  color: var(--bc-2);
}

@media (max-width: 767px) {
  .top--doctor-file__details .details__info .info__name span {
    font-size: 30px;
  }
}

.top--doctor-file__details .details__info .info__specialties {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.top--doctor-file__details .details__info .info__specialties a {
  font-size: 30px;
  font-weight: 300;
  color: black;
  position: relative;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}

.top--doctor-file__details .details__info .info__specialties a:after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--bc-1);
  -webkit-transition: all 0.15s cubic-bezier(0, 0, 0, 0.54);
  transition: all 0.15s cubic-bezier(0, 0, 0, 0.54);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

.top--doctor-file__details .details__info .info__specialties a:hover::after, .top--doctor-file__details .details__info .info__specialties a.current::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.top--doctor-file__details .details__info .info__specialties a:before {
  content: "";
  position: absolute;
  top: 50%;
  right: -40px;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  height: 100%;
  width: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath fill='%2300a7e0' fill-rule='nonzero' d='M13.3 5.3L11.9 6.7 16.2 11 4 11 4 13 16.2 13 11.9 17.3 13.3 18.7 20 12z'/%3E%3C/g%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
}

.top--doctor-file__details .details__info .info__online-appointment {
  margin-top: 60px;
}

.top--doctor-file__details .details__info .info__online-appointment a .online-appointment {
  position: relative;
  top: unset;
  left: unset;
  right: unset;
  padding: 12px 20px;
  border: 1px solid transparent;
  display: block;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  border: 1px solid transparent;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.top--doctor-file__details .details__info .info__online-appointment a .online-appointment span {
  margin-right: 20px;
}

.top--doctor-file__details .details__info .info__online-appointment a .online-appointment img {
  margin: 0;
  padding: 0;
}

.top--doctor-file__details .details__info .info__online-appointment a .online-appointment:after {
  border-right: 3px solidvar(--bc-2);
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.top--doctor-file__details .details__info .info__online-appointment a .online-appointment:before {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.top--doctor-file__details .details__info .info__online-appointment.select {
  position: relative;
}

.top--doctor-file__details .details__info .info__online-appointment.select .content-select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 2;
  position: relative;
  top: unset;
  left: unset;
  right: unset;
  padding: 20px;
  border: 1px solid transparent;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  background-color: white;
  outline: 0 none;
  -webkit-transition: all 0.75s ease-in-out 0s;
  transition: all 0.75s ease-in-out 0s;
  cursor: pointer;
}

.top--doctor-file__details .details__info .info__online-appointment.select .content-select:hover {
  background: #6199c7;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.top--doctor-file__details .details__info .info__online-appointment.select .content-select span {
  font-weight: bold;
  color: var(--bc-1);
  text-decoration: none;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.top--doctor-file__details .details__info .info__online-appointment.select .content-select img {
  margin-left: 15px;
  width: 15px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.top--doctor-file__details .details__info .info__online-appointment.select .content-select.active img {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.top--doctor-file__details .details__info .info__online-appointment.select .content-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: white;
  position: absolute;
  width: 100%;
  top: 0;
  opacity: 0;
  z-index: -1;
  -webkit-transition: all 0.75s ease-in-out 0s;
  transition: all 0.75s ease-in-out 0s;
}

.top--doctor-file__details .details__info .info__online-appointment.select .content-options.active {
  position: absolute;
  width: 100%;
  top: 75px;
  bottom: unset;
  opacity: 1;
  z-index: 1;
  -webkit-transition: all 0.75s ease-in-out 0s;
  transition: all 0.75s ease-in-out 0s;
}

.top--doctor-file__details .details__info .info__online-appointment.select .content-options a {
  font-weight: bold;
  color: var(--bc-1);
  text-decoration: none;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  padding: 20px;
  border-bottom: 1px dashed;
}

.top--doctor-file__details .details__info .info__online-appointment.select .content-options a:hover {
  background: #6199c7;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.top--doctor-file__details .details__info .info__online-appointment.select .content-options a:last-child {
  border: none;
}

.treatments-tests .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 90px 0;
}

.treatments-tests .text .column {
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 50%;
  padding: 0 20px;
}

@media (max-width: 767px) {
  .treatments-tests .text .column {
    width: 100%;
  }
}

.treatments-tests .text .column:nth-child(2) {
  border-left: solid 2pxvar --bc-2;
}

.treatments-tests .text .column__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.treatments-tests .text .column__title p.title-font {
  width: 100% !important;
}

.treatments-tests .text .column__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.treatments-tests .text .column__content a {
  font-size: 20px;
  font-weight: 300;
  color: black;
  margin: 10px 0;
  position: relative;
}

.treatments-tests .text .column__content a:after {
  content: '';
  position: absolute;
  top: 50%;
  left: -10px;
  width: 2px;
  height: 100%;
  background-color: var(--bc-1);
  -webkit-transition: all 0.15s cubic-bezier(0, 0, 0, 0.54);
  transition: all 0.15s cubic-bezier(0, 0, 0, 0.54);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

.treatments-tests .text .column__content a:hover:after {
  -webkit-transform: scaleX(1) translate(0, -50%);
          transform: scaleX(1) translate(0, -50%);
}

.treatments-tests .text .column__content a:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0px;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  height: 100%;
  width: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath fill='%2300a7e0' fill-rule='nonzero' d='M13.3 5.3L11.9 6.7 16.2 11 4 11 4 13 16.2 13 11.9 17.3 13.3 18.7 20 12z'/%3E%3C/g%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
}

.diagnostic-test .bg--light-blue {
  background-color: #f2fafd;
}

.diagnostic-test__block .content {
  padding: 150px 0 !important;
}

.diagnostic-test__block .text {
  width: 40%;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .diagnostic-test__block .text {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .diagnostic-test__block .text {
    width: 100%;
  }
}

.diagnostic-test__block .bg--light-grey {
  background-color: #F2F2F2;
}

.diagnostic-test__block .bg--light-blue {
  background: #f2fafd;
}

.diagnostic-test .image {
  overflow: inherit;
}

.diagnostic-test .image__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 3;
  position: absolute;
  bottom: -200px;
  left: 0;
  width: 100%;
  height: calc(100% + 200px);
  background: #f2fafd;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .diagnostic-test .image__block {
    position: relative;
    left: 0;
    top: 0;
    height: auto;
    display: none;
  }
}

@media (max-width: 767px) {
  .diagnostic-test .image__block {
    position: relative;
    left: 0;
    top: 0;
    height: auto;
    display: none;
  }
}

.diagnostic-test .image__block img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.diagnostic-test__specialties, .diagnostic-test__doctors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .diagnostic-test__specialties, .diagnostic-test__doctors {
    padding: 0 50px;
  }
}

@media (max-width: 767px) {
  .diagnostic-test__specialties, .diagnostic-test__doctors {
    padding: 0 50px;
  }
}

.diagnostic-test__specialties .specialties__item, .diagnostic-test__specialties .doctors__item, .diagnostic-test__doctors .specialties__item, .diagnostic-test__doctors .doctors__item {
  width: 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin: 20px 0;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .diagnostic-test__specialties .specialties__item, .diagnostic-test__specialties .doctors__item, .diagnostic-test__doctors .specialties__item, .diagnostic-test__doctors .doctors__item {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .diagnostic-test__specialties .specialties__item, .diagnostic-test__specialties .doctors__item, .diagnostic-test__doctors .specialties__item, .diagnostic-test__doctors .doctors__item {
    width: 100%;
  }
}

.diagnostic-test__specialties .specialties__item .item__image, .diagnostic-test__specialties .doctors__item .item__image, .diagnostic-test__doctors .specialties__item .item__image, .diagnostic-test__doctors .doctors__item .item__image {
  width: 140px;
  height: 140px;
}

.diagnostic-test__specialties .specialties__item .item__info, .diagnostic-test__specialties .doctors__item .item__info, .diagnostic-test__doctors .specialties__item .item__info, .diagnostic-test__doctors .doctors__item .item__info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.diagnostic-test__specialties .specialties__item .item__info .info__name p, .diagnostic-test__specialties .doctors__item .item__info .info__name p, .diagnostic-test__doctors .specialties__item .item__info .info__name p, .diagnostic-test__doctors .doctors__item .item__info .info__name p {
  font-size: 20px;
  font-weight: 300;
  color: var(--bc-2);
}

.diagnostic-test__specialties .specialties__item .item__info .btn-see-more, .diagnostic-test__specialties .doctors__item .item__info .btn-see-more, .diagnostic-test__doctors .specialties__item .item__info .btn-see-more, .diagnostic-test__doctors .doctors__item .item__info .btn-see-more {
  margin-top: auto;
}

.diagnostic-test__specialties .specialties__item .item__info .btn-see-more a, .diagnostic-test__specialties .doctors__item .item__info .btn-see-more a, .diagnostic-test__doctors .specialties__item .item__info .btn-see-more a, .diagnostic-test__doctors .doctors__item .item__info .btn-see-more a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.diagnostic-test__specialties .specialties__item .item__info .btn-see-more a span, .diagnostic-test__specialties .doctors__item .item__info .btn-see-more a span, .diagnostic-test__doctors .specialties__item .item__info .btn-see-more a span, .diagnostic-test__doctors .doctors__item .item__info .btn-see-more a span {
  z-index: 1;
  color: white;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.diagnostic-test__specialties .specialties__item .item__info .btn-see-more a:hover, .diagnostic-test__specialties .doctors__item .item__info .btn-see-more a:hover, .diagnostic-test__doctors .specialties__item .item__info .btn-see-more a:hover, .diagnostic-test__doctors .doctors__item .item__info .btn-see-more a:hover {
  text-decoration: none;
}

.diagnostic-test__specialties .specialties__item .item__info .btn-see-more a:hover span, .diagnostic-test__specialties .doctors__item .item__info .btn-see-more a:hover span, .diagnostic-test__doctors .specialties__item .item__info .btn-see-more a:hover span, .diagnostic-test__doctors .doctors__item .item__info .btn-see-more a:hover span {
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  color: var(--bc-1);
}

.diagnostic-test__specialties .specialties__item .item__info .btn-see-more a:hover:before, .diagnostic-test__specialties .doctors__item .item__info .btn-see-more a:hover:before, .diagnostic-test__doctors .specialties__item .item__info .btn-see-more a:hover:before, .diagnostic-test__doctors .doctors__item .item__info .btn-see-more a:hover:before {
  background: #91d8f1;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.diagnostic-test__specialties .specialties__item .item__info .btn-see-more a:hover:after, .diagnostic-test__specialties .doctors__item .item__info .btn-see-more a:hover:after, .diagnostic-test__doctors .specialties__item .item__info .btn-see-more a:hover:after, .diagnostic-test__doctors .doctors__item .item__info .btn-see-more a:hover:after {
  background: #c0e9f7;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.diagnostic-test__specialties .specialties__item .item__info .btn-see-more a:after, .diagnostic-test__specialties .doctors__item .item__info .btn-see-more a:after, .diagnostic-test__doctors .specialties__item .item__info .btn-see-more a:after, .diagnostic-test__doctors .doctors__item .item__info .btn-see-more a:after {
  content: "";
  width: 25px;
  height: 25px;
  background: #91d8f1;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.diagnostic-test__specialties .specialties__item .item__info .btn-see-more a:before, .diagnostic-test__specialties .doctors__item .item__info .btn-see-more a:before, .diagnostic-test__doctors .specialties__item .item__info .btn-see-more a:before, .diagnostic-test__doctors .doctors__item .item__info .btn-see-more a:before {
  content: "";
  width: 35px;
  height: 35px;
  background: #c0e9f7;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.specialities .grid__item:nth-child(odd) {
  background: white;
}

.specialities .grid__item:nth-child(even) {
  background: rgba(var(--bc-2), 0.05);
}

.specialities__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.specialities__group .group__item {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.specialities__group .group__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 767px) {
  .specialities__group .group__item {
    width: 100%;
    margin: 20px;
  }
}

.specialities__group .group__item .item__image {
  width: 185px;
  height: 185px;
}

@media (max-width: 767px) {
  .specialities__group .group__item .item__image {
    width: 90px;
    height: 90px;
  }
}

.specialities__group .group__item .item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.specialities__group .group__item .item__info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.specialities__group .group__item .item__info .info__name {
  position: relative;
  width: 100%;
  padding: 0 20px;
}

.specialities__group .group__item .item__info .info__name span {
  font-size: 30px;
  font-weight: 300;
  color: var(--bc-2);
}

@media (max-width: 767px) {
  .specialities__group .group__item .item__info .info__name span {
    font-size: 20px;
  }
}

.specialities__group .group__item .item__info .info__name a span:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 10px;
  width: 2px;
  height: 100%;
  background-color: var(--bc-1);
  -webkit-transition: all 0.15s cubic-bezier(0, 0, 0, 0.54);
  transition: all 0.15s cubic-bezier(0, 0, 0, 0.54);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

.specialities__group .group__item .item__info .info__name a:hover > span {
  text-decoration: none;
}

.specialities__group .group__item .item__info .info__name a:hover > span::after {
  -webkit-transform: scaleX(1) translate(0, -50%);
          transform: scaleX(1) translate(0, -50%);
}

.specialities__group .group__item .item__info .info__unities {
  padding: 0 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.specialities__group .group__item .item__info .info__unities .unities_item {
  position: relative;
}

.specialities__group .group__item .item__info .info__unities .unities_item a span:after {
  content: '';
  position: absolute;
  top: 50%;
  left: -10px;
  width: 2px;
  height: 100%;
  background-color: var(--bc-1);
  -webkit-transition: all 0.15s cubic-bezier(0, 0, 0, 0.54);
  transition: all 0.15s cubic-bezier(0, 0, 0, 0.54);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

.specialities__group .group__item .item__info .info__unities .unities_item a:hover span {
  text-decoration: none;
}

.specialities__group .group__item .item__info .info__unities .unities_item a:hover span::after {
  -webkit-transform: scaleX(1) translate(0, -50%);
          transform: scaleX(1) translate(0, -50%);
}

.specialities__group .group__item .item__info .info__unities .unities_item a .item__name span {
  font-size: 17px;
  font-weight: 300;
  color: black;
}

.diagnostics-test-block .grid__item:nth-child(odd) {
  background: white;
}

.diagnostics-test-block .grid__item:nth-child(even) {
  background: rgba(var(--bc-2), 0.05);
}

.diagnostics-test-block .diagnostics-test {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .diagnostics-test-block .diagnostics-test {
    padding: 0 50px;
  }
}

@media (max-width: 767px) {
  .diagnostics-test-block .diagnostics-test {
    padding: 0 50px;
  }
}

.diagnostics-test-block .diagnostics-test__item {
  width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin: 20px 0;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .diagnostics-test-block .diagnostics-test__item {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .diagnostics-test-block .diagnostics-test__item {
    width: 100%;
  }
}

.diagnostics-test-block .diagnostics-test__item .item__image {
  width: 140px;
  height: 140px;
  position: relative;
  overflow: hidden;
}

.diagnostics-test-block .diagnostics-test__item .item__image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.diagnostics-test-block .diagnostics-test__item .item__image:hover:after {
  -webkit-animation: bounceAndRotate .6s linear forwards;
          animation: bounceAndRotate .6s linear forwards;
}

.diagnostics-test-block .diagnostics-test__item .item__image:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 167, 224, 0.4);
  -webkit-animation: removeBounceAndRotate .6s linear forwards;
          animation: removeBounceAndRotate .6s linear forwards;
}

.diagnostics-test-block .diagnostics-test__item .item__info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.diagnostics-test-block .diagnostics-test__item .item__info .info__name a p:after {
  content: '';
  position: absolute;
  top: 50%;
  left: -10px;
  width: 2px;
  height: 100%;
  background-color: var(--bc-1);
  -webkit-transition: all 0.15s cubic-bezier(0, 0, 0, 0.54);
  transition: all 0.15s cubic-bezier(0, 0, 0, 0.54);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

.diagnostics-test-block .diagnostics-test__item .item__info .info__name a:hover p {
  text-decoration: none;
}

.diagnostics-test-block .diagnostics-test__item .item__info .info__name a:hover p::after {
  -webkit-transform: scaleX(1) translate(0, -50%);
          transform: scaleX(1) translate(0, -50%);
}

.diagnostics-test-block .diagnostics-test__item .item__info .info__name p {
  font-size: 20px;
  font-weight: 300;
  color: var(--bc-2);
}

.diagnostics-test-block .diagnostics-test__item .item__info .btn-see-more {
  margin-top: auto;
}

.diagnostics-test-block .diagnostics-test__item .item__info .btn-see-more a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.diagnostics-test-block .diagnostics-test__item .item__info .btn-see-more a span {
  z-index: 1;
  color: white;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.diagnostics-test-block .diagnostics-test__item .item__info .btn-see-more a:hover {
  text-decoration: none;
}

.diagnostics-test-block .diagnostics-test__item .item__info .btn-see-more a:hover span {
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  color: var(--bc-1);
}

.diagnostics-test-block .diagnostics-test__item .item__info .btn-see-more a:hover:before {
  background: #91d8f1;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.diagnostics-test-block .diagnostics-test__item .item__info .btn-see-more a:hover:after {
  background: #c0e9f7;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.diagnostics-test-block .diagnostics-test__item .item__info .btn-see-more a:after {
  content: "";
  width: 25px;
  height: 25px;
  background: #91d8f1;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.diagnostics-test-block .diagnostics-test__item .item__info .btn-see-more a:before {
  content: "";
  width: 35px;
  height: 35px;
  background: #c0e9f7;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.treatments-block .grid__item:nth-child(odd) {
  background: white;
}

.treatments-block .grid__item:nth-child(even) {
  background: rgba(var(--bc-2), 0.05);
}

.treatments-block .treatments {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .treatments-block .treatments {
    padding: 0 50px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .treatments-block .treatments {
    padding: 0 50px;
  }
}

.treatments-block .treatments__item {
  width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin: 20px 0;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .treatments-block .treatments__item {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .treatments-block .treatments__item {
    width: 100%;
  }
}

.treatments-block .treatments__item .item__image {
  width: 140px;
  height: 140px;
  position: relative;
  overflow: hidden;
}

.treatments-block .treatments__item .item__image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.treatments-block .treatments__item .item__image:hover:after {
  -webkit-animation: bounceAndRotate .6s linear forwards;
          animation: bounceAndRotate .6s linear forwards;
}

.treatments-block .treatments__item .item__image:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 167, 224, 0.4);
  -webkit-animation: removeBounceAndRotate .6s linear forwards;
          animation: removeBounceAndRotate .6s linear forwards;
}

.treatments-block .treatments__item .item__info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.treatments-block .treatments__item .item__info .info__name a p:after {
  content: '';
  position: absolute;
  top: 50%;
  left: -10px;
  width: 2px;
  height: 100%;
  background-color: var(--bc-1);
  -webkit-transition: all 0.15s cubic-bezier(0, 0, 0, 0.54);
  transition: all 0.15s cubic-bezier(0, 0, 0, 0.54);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

.treatments-block .treatments__item .item__info .info__name a:hover p {
  text-decoration: none;
}

.treatments-block .treatments__item .item__info .info__name a:hover p::after {
  -webkit-transform: scaleX(1) translate(0, -50%);
          transform: scaleX(1) translate(0, -50%);
}

.treatments-block .treatments__item .item__info .info__name p {
  font-size: 20px;
  font-weight: 300;
  color: var(--bc-2);
}

.treatments-block .treatments__item .item__info .btn-see-more {
  margin-top: auto;
}

.treatments-block .treatments__item .item__info .btn-see-more a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.treatments-block .treatments__item .item__info .btn-see-more a span {
  z-index: 1;
  color: white;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.treatments-block .treatments__item .item__info .btn-see-more a:hover {
  text-decoration: none;
}

.treatments-block .treatments__item .item__info .btn-see-more a:hover span {
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  color: var(--bc-1);
}

.treatments-block .treatments__item .item__info .btn-see-more a:hover:before {
  background: #91d8f1;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.treatments-block .treatments__item .item__info .btn-see-more a:hover:after {
  background: #c0e9f7;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.treatments-block .treatments__item .item__info .btn-see-more a:after {
  content: "";
  width: 25px;
  height: 25px;
  background: #91d8f1;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.treatments-block .treatments__item .item__info .btn-see-more a:before {
  content: "";
  width: 35px;
  height: 35px;
  background: #c0e9f7;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.results-block .grid__item:nth-child(odd) {
  background: white;
}

.results-block .grid__item:nth-child(even) {
  background: rgba(var(--bc-2), 0.05);
}

.results-block .results {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 768px) {
  .results-block .results {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.results-block .results__item {
  width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin: 20px 0;
}

@media (max-width: 768px) {
  .results-block .results__item {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

.results-block .results__item .item__image {
  width: 140px;
  height: 140px;
  position: relative;
  overflow: hidden;
}

.results-block .results__item .item__image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.results-block .results__item .item__image:hover:after {
  -webkit-animation: bounceAndRotate .6s linear forwards;
          animation: bounceAndRotate .6s linear forwards;
}

.results-block .results__item .item__image:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 167, 224, 0.4);
  -webkit-animation: removeBounceAndRotate .6s linear forwards;
          animation: removeBounceAndRotate .6s linear forwards;
}

.results-block .results__item .item__info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.results-block .results__item .item__info .info__name a p:after {
  content: '';
  position: absolute;
  top: 50%;
  left: -10px;
  width: 2px;
  height: 100%;
  background-color: var(--bc-1);
  -webkit-transition: all 0.15s cubic-bezier(0, 0, 0, 0.54);
  transition: all 0.15s cubic-bezier(0, 0, 0, 0.54);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

.results-block .results__item .item__info .info__name a:hover p {
  text-decoration: none;
}

.results-block .results__item .item__info .info__name a:hover p::after {
  -webkit-transform: scaleX(1) translate(0, -50%);
          transform: scaleX(1) translate(0, -50%);
}

.results-block .results__item .item__info .info__name p {
  font-size: 20px;
  font-weight: 300;
  color: var(--bc-2);
}

.results-block .results__item .item__info .btn-see-more {
  margin-top: auto;
}

.results-block .results__item .item__info .btn-see-more a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.results-block .results__item .item__info .btn-see-more a span {
  z-index: 1;
  color: white;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.results-block .results__item .item__info .btn-see-more a:hover {
  text-decoration: none;
}

.results-block .results__item .item__info .btn-see-more a:hover span {
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  color: var(--bc-1);
}

.results-block .results__item .item__info .btn-see-more a:hover:before {
  background: #91d8f1;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.results-block .results__item .item__info .btn-see-more a:hover:after {
  background: #c0e9f7;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.results-block .results__item .item__info .btn-see-more a:after {
  content: "";
  width: 25px;
  height: 25px;
  background: #91d8f1;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.results-block .results__item .item__info .btn-see-more a:before {
  content: "";
  width: 35px;
  height: 35px;
  background: #c0e9f7;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.results-block .results .section-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .results-block .results .section-page {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.results-block .results .section-page:first-child {
  margin-top: 60px;
}

.results-block .results .section-page h3 {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.results-block .results .section-page h3:after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--bc-1);
  -webkit-transition: all 0.15s cubic-bezier(0, 0, 0, 0.54);
  transition: all 0.15s cubic-bezier(0, 0, 0, 0.54);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

.results-block .results .section-page h3:hover::after, .results-block .results .section-page h3.current::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0 4px 6px 1px rgba(0, 0, 0, 0.2), 0 0 1px 1px rgba(0, 0, 0, 0.09);
          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;
  -webkit-transition: all 0.75s ease-in-out 0s;
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: 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 {
  -webkit-transition: all 0.75s ease-in-out 0s;
  transition: all 0.75s ease-in-out 0s;
}

.online-appointment:after, .online-appointment:before {
  content: "";
  height: 100%;
  left: -1px;
  position: absolute;
  top: -1px;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.5s ease-in-out 0s;
  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);
  -webkit-transform-origin: 0 100% 0;
          transform-origin: 0 100% 0;
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
}

.online-appointment:after {
  border-top: 3px solidvar(--bc-2);
  -webkit-transform-origin: 100% 0 0;
          transform-origin: 100% 0 0;
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
}

.online-appointment:hover:after, .online-appointment:hover:before {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.online-appointment:hover {
  background-color: var(--bc-1);
}

.online-appointment:hover span {
  color: white;
  -webkit-transition: all 0.75s ease-in-out 0s;
  transition: all 0.75s ease-in-out 0s;
}

/* -------------------------- */
/* ----- BLOCKS LAYOUT ------ */
/* -------------------------- */
.blocks .grid__item .block.width-40 {
  padding-bottom: 150px;
  padding-top: 150px;
}

.blocks .grid__item .block.width-40 .content .content--item .lens {
  opacity: 1;
  background-color: rgba(0, 144, 140, 0.2);
  top: -10%;
  bottom: 0;
  width: 50%;
  left: 27%;
  height: 120%;
}

@media (max-width: 767px) {
  .blocks .grid__item .block.width-40 .content .content--item .lens {
    width: 70%;
    left: 15%;
  }
}

@media (max-width: 767px) {
  .blocks .grid__item .block.width-40 .content .content--item .flex-content .image__content {
    width: 80%;
    height: auto;
  }
}

.blocks .grid__item .block.width-40 .content .content--item .flex-content .block-text-image__content {
  width: 40%;
  z-index: 2;
}

@media (max-width: 767px) {
  .blocks .grid__item .block.width-40 .content .content--item .flex-content .block-text-image__content {
    width: 100%;
  }
}

.blocks .grid__item .block.width-40 .content .content--item .flex-content .block-text-image__content .text h3 {
  margin-bottom: 30px !important;
}

.blocks .grid__item .block.width-40 .content .content--item .flex-content .block-text-image__content .text p {
  margin: 0 !important;
}

@media (max-width: 767px) {
  .blocks .grid__item .block.width-40 .content .content--item .flex-content .block-text-image__content .text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .blocks .grid__item .block.width-40 .content .content--item .flex-content .block-text-image__content .text h3 {
    text-align: center;
  }
  .blocks .grid__item .block.width-40 .content .content--item .flex-content .block-text-image__content .text p {
    text-align: center;
  }
}

.blocks .grid__item .block.width-40 .content .content--item .flex-content .block-text-image__content .button-block {
  margin-top: 0 !important;
}

@media (max-width: 767px) {
  .blocks .grid__item .block.width-40 .content .content--item .flex-content .block-text-image__content .button-block {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
}

.blocks .grid__item .block.width-40 .content .content--item .flex-content .block-text-image__content .button-block .button p {
  margin: 0 !important;
}

.blocks .grid__item .block.lens-help {
  padding-bottom: 150px;
  padding-top: 150px;
}

@media (max-width: 767px) {
  .blocks .grid__item .block.lens-help {
    padding-bottom: 100px;
    padding-top: 0;
  }
}

.blocks .grid__item .block.lens-help .content .content--item .flex-content div.text {
  -webkit-transform: translateX(13%);
          transform: translateX(13%);
  padding: 50px 0px;
}

.blocks .grid__item .block.lens-help .content .content--item .flex-content div.text h3::after {
  content: "";
  height: 5%;
  width: 3%;
  background-color: var(--bc-1);
  position: absolute;
  bottom: -20px;
  left: 0px;
}

.blocks .grid__item .block.lens-help .content .content--item .lens {
  display: block !important;
  opacity: 1;
  background-color: rgba(0, 144, 140, 0.09);
  top: -2%;
  bottom: 0;
  width: 90%;
  left: 0;
  height: 110%;
  z-index: 0;
}

@media (max-width: 767px) {
  .blocks .grid__item .block.lens-help .content .content--item .lens {
    width: 100%;
  }
}

.blocks .grid__item .block.company-first .content .content--item .flex-content .block-text-image__content {
  -webkit-box-align: end !important;
      -ms-flex-align: end !important;
          align-items: flex-end !important;
}

.blocks .grid__item .block.company-first .content .content--item .flex-content .block-text-image__content .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 64% !important;
  -ms-flex-line-pack: end;
      align-content: flex-end;
}

.blocks .grid__item .block.company-first .content .content--item .lens {
  display: block !important;
  opacity: 1;
  background-color: rgba(159, 159, 158, 0.2);
  top: 0;
  bottom: 0;
  width: 300%;
  left: 30%;
  height: 125%;
  z-index: 0;
}

@media (max-width: 767px) {
  .blocks .grid__item .block.company-first .content .content--item .lens {
    left: 10%;
    height: 100%;
  }
}

.blocks .grid__item .block.image-padding {
  padding: 50px 0;
}

@media (min-width: 1200px) and (max-width: 1600px) {
  .blocks .grid__item .block.cocina {
    -ms-grid-column: 2;
    -ms-grid-column-span: 10;
    grid-column: 2/12;
  }
}

.blocks .grid__item .block.cocina .block-text-image__content {
  padding-left: 50px;
  width: 80%;
}

.blocks .grid__item .block.cocina .lens {
  position: absolute;
  top: 12.5%;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 75%;
  background-color: var(--azul);
}

@media (max-width: 767px) {
  .blocks .grid__item .block.cocina .lens {
    height: 90%;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .blocks .grid__item .block.cocina .lens {
    top: 0;
    height: 100%;
  }
}

.blocks .grid__item .block.diviertete .block-text-image__content {
  padding-left: 50px;
  width: 80%;
}

@media (max-width: 767px) {
  .blocks .grid__item .block.diviertete .block-text-image__content {
    padding-bottom: 50px;
  }
}

.blocks .grid__item .block.diviertete .lens {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bc-2);
}

.blocks .grid__item .block.newsletter .block-text-image__content {
  padding-left: 50px;
    width: 80%;
    padding-bottom: 8%;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: center;
    align-items: center;
}

.blocks .grid__item .block.newsletter .image__content {
  height: auto;
  max-height: 400px;
  width: auto;
}

@media (max-width: 767px) {
  .blocks .grid__item .block.newsletter .image__content {
    height: auto;
    width: 80%;
    padding-top: 30px;
  }
}

.blocks .grid__item .block.newsletter .lens {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;/*85*/
  background-color: var(--azul);
}
.newsletter input::placeholder {
    color: #f5f5ec;
}
.newsletter input {
    color: white;
}

@media (max-width: 767px) {
  .blocks .grid__item .block.newsletter .lens {
    height: 100%;
  }
}

.blocks .grid__item .block.home-compromiso {
  height: 800px;
}

.blocks .grid__item .block.home-compromiso .block-text-image__content {
  -ms-grid-column: 2;
  grid-column: 2/2;
  width: 70%;
}

@media (max-width: 767px) {
  .blocks .grid__item .block.home-compromiso {
    height: 500px;
    -ms-grid-column: 1 !important;
    -ms-grid-column-span: 12 !important;
    grid-column: 1/13 !important;
  }
  .blocks .grid__item .block.home-compromiso .block-text-image__content {
    width: 100%;
    padding: 5%;
  }
}

.blocks .grid__item .block.home-diviertete .flex-content {
  -ms-grid-columns: 1fr 2fr !important;
      grid-template-columns: 1fr 2fr !important;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .blocks .grid__item .block.home-diviertete .flex-content {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

/* -------------------------- */
.custom_custom1 .form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
}

.custom_custom1 .form .form-block-item {
  width: 50% !important;
}

.custom_custom1 .form .form-block-item button {
  margin: 0;
  padding: 0;
}

.custom_custom1 .form .form-block-item button p {
  margin: 0 !important;
  padding: 0;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .custom_custom1 .block-text-image .lens {
    top: 0 !important;
    height: 100% !important;
  }
  .custom_custom1 .block-text-image .flex-content .block-text-image__content {
    width: 90% !important;
    padding-bottom: 0px !important;
  }
}

@media (max-width: 767px) {
  .custom_custom1 {
    -ms-grid-column: 1 !important;
    -ms-grid-column-span: 12 !important;
    grid-column: 1/13 !important;
    padding: 0 !important;
  }
  .custom_custom1 .block-text-image {
    padding: 0px !important;
  }
  .custom_custom1 .block-text-image .lens {
    top: 0 !important;
    height: 100% !important;
  }
  .custom_custom1 .block-text-image .flex-content {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .custom_custom1 .block-text-image .flex-content .block-text-image__content {
    width: 100% !important;
    padding: 0px 50px !important;
  }
  .custom_custom1 .block-text-image .flex-content .block-text-image__content .form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .custom_custom1 .block-text-image .flex-content .block-text-image__content .form .form-block-item {
    width: 100% !important;
  }
}

/* -------------------------- */
/* ----- ENTITY DESTACADOS EN PORTADA LAYOUT ----- */
/* -------------------------- */
.sm_home .content .sections-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 767px) {
  .sm_home .content .sections-wrapper {
    display: -ms-grid;
    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 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.sm_home .content .sections-wrapper.row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.sm_home .content .sections-wrapper .section.item {
  padding: 0 50px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.sm_home .content .sections-wrapper .section .btn-see-more a span {
  z-index: 1;
  color: white;
  -webkit-transition: all 0.2s ease-out;
  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 {
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  color: var(--bc-1);
}

.sm_home .content .sections-wrapper .section .btn-see-more a:hover:before {
  background: #91d8f1;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.sm_home .content .sections-wrapper .section .btn-see-more a:hover:after {
  background: #c0e9f7;
  -webkit-transition: all 0.2s ease-out;
  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%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  -webkit-transition: all 0.2s ease-out;
  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%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

/* -------------------------- */
/* -------------------------- */
/* ----- ENTITY DESTACADOS EN PORTADA LAYOUT ----- */
/* -------------------------- */
@media (max-width: 767px) {
  .sm_children .content {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

.sm_children .content .sections-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sm_children .content .sections-wrapper a {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  overflow: hidden;
  height: 220px;
}

@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 .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 500ms ease-out .1s;
  transition: all 500ms ease-out .1s;
}

.sm_children .content .sections-wrapper a .image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.sm_children .content .sections-wrapper a .image .lens {
  -webkit-transition: all 500ms ease-out .1s;
  transition: all 500ms ease-out .1s;
}

.sm_children .content .sections-wrapper a .info .description {
  z-index: 1;
  color: white;
}

.sm_children .content .sections-wrapper a .info .description span {
  -webkit-transition: all 500ms ease-out .1s;
  transition: all 500ms ease-out .1s;
}

.sm_children .content .sections-wrapper a:hover .image {
  -webkit-transition: all 500ms ease-out .1s;
  transition: all 500ms ease-out .1s;
  -webkit-transform: rotate(5deg) scale(1.5);
          transform: rotate(5deg) scale(1.5);
}

.sm_children .content .sections-wrapper a:hover .lens {
  background-color: rgba(255, 255, 255, 0.4);
  -webkit-transition: all 500ms ease-out .1s;
  transition: all 500ms ease-out .1s;
}

.sm_children .content .sections-wrapper a:hover .description span {
  color: var(--bc-1);
  -webkit-transition: all 500ms ease-out .1s;
  transition: all 500ms ease-out .1s;
}

/* -------------------------- */
/* -------------------------- */
/* ----- ENTITY DESTACADOS EN PORTADA LAYOUT ----- */
/* -------------------------- */
.bm_featured {
  /* The animation code */
  /* The element to apply the animation to */
}

.bm_featured .content {
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .bm_featured .content .first-line-articles .big-article {
    display: -ms-grid;
    display: grid;
    row-gap: var(--space-l);
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .bm_featured .content .first-line-articles .big-article {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            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;
  -webkit-transition: all 0.75s ease-in-out 0s;
  transition: all 0.75s ease-in-out 0s;
}

.bm_featured .content .first-line-articles .big-article .image-featured img.zoom-effect {
  -webkit-transition: all 0.75s ease-in-out 0s;
  transition: all 0.75s ease-in-out 0s;
  -webkit-transform: scale(1.5);
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: 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;
  -webkit-transition: width 500ms ease-out .1s;
  transition: width 500ms ease-out .1s;
}

.bm_featured .content .first-line-articles .big-article .content__btn-see-more a:hover:before {
  width: 100%;
  -webkit-transition: width 500ms ease-out .1s;
  transition: width 500ms ease-out .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: calc(250px + 350px + 20px);
  margin-bottom: 50px;
  z-index: 2;
}

@media (min-width: 1200px) and (max-width: 1600px) {
  .bm_featured .content .second-line-articles .label {
    margin-left: calc(50px + 350px + 20px);
  }
}

@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: -webkit-box;
  display: -ms-flexbox;
  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: calc(50% + 50% / 2);
  height: 175%;
  -webkit-transform: translateY(-150px);
          transform: translateY(-150px);
}

@media (min-width: 768px) and (max-width: 1199px) {
  .bm_featured .content .second-line-articles .grid-articles {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.bm_featured .content .second-line-articles .grid-articles .first-article {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  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%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            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;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: 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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 15px 0;
}

@media (max-width: 767px) {
  .bm_featured .content .second-line-articles .grid-articles .plus-articles .plus-articles__item {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            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;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: 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 {
  -webkit-animation: bounceAndRotate 0.6s linear forwards !important;
          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);
  -webkit-animation: removeBounceAndRotate .6s linear forwards;
          animation: removeBounceAndRotate .6s linear forwards;
}

.bm_featured .content .second-line-articles .image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

@-webkit-keyframes example {
  0% {
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
  50% {
    -webkit-transform: translate(5px, -50%);
            transform: translate(5px, -50%);
  }
  100% {
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
}

@keyframes example {
  0% {
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
  50% {
    -webkit-transform: translate(5px, -50%);
            transform: translate(5px, -50%);
  }
  100% {
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
}

.bm_featured .content__btn-see-more .button:hover:after {
  -webkit-animation-name: example;
          animation-name: example;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

/* -------------------------- */
/* -------------------------- */
/* ----- ENTITY DESTACADOS EN PORTADA LAYOUT ----- */
/* -------------------------- */
.bm_latest-news .content {
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          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%;
  -webkit-transform: translate(0%, -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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 500ms ease-out .1s;
  transition: all 500ms ease-out .1s;
}

.bm_latest-news .content .latest-news__slider .slider__items .items__item a {
  height: 575px;
  width: 360px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 5px;
  z-index: 2;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 360px;
          flex: 0 0 360px;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

.bm_latest-news .content .latest-news__slider .slider__items .items__item a:hover {
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  -webkit-transform: scale(1.1);
          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;
  -webkit-transition: all 0.75s ease-in-out 0s;
  transition: all 0.75s ease-in-out 0s;
}

.bm_latest-news .content .latest-news__slider .slider__items .items__item .item__content {
  background: white;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          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 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 50px;
}

@media (max-width: 767px) {
  .bm_latest-news .content .latest-news__slider .slider__controller {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            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;
}

.bm_latest-news .content .latest-news__slider .slider__controller .controller__line {
  width: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          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;
  -webkit-transform: translate(0px, -50%);
          transform: translate(0px, -50%);
  height: 4px;
  background: var(--bc-2);
  -webkit-transition: all 500ms ease-out .1s;
  transition: all 500ms ease-out .1s;
}

.bm_latest-news .content .latest-news__slider .slider__controller .controller__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: 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: -webkit-box;
  display: -ms-flexbox;
  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;
  -webkit-transition: all 0.15s cubic-bezier(0, 0, 0, 0.54);
  transition: all 0.15s cubic-bezier(0, 0, 0, 0.54);
  -webkit-transform: scaleX(0);
          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 {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

/* -------------------------- */
/* -------------------------- */
/* ----- ENTITY DESTACADOS EN PORTADA LAYOUT ----- */
/* -------------------------- */
.blocks-articles .breadcrumbs .breadcrumb a {
  color: var(--bc-1);
}

.blocks-articles .breadcrumbs .breadcrumb::after {
  color: var(--bc-1);
}

.blocks-articles .buttons {
  display: none;
}

@media (max-width: 767px) {
  .blocks-articles {
    margin-top: 130px;
  }
  .blocks-articles .buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin: var(--space-l) 0;
    gap: 10px;
    width: 100%;
  }
  .blocks-articles .buttons .button {
    background-color: var(--bc-1);
    border-radius: 30px;
    border: 2px solid var(--bc-1);
    padding: 8px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .blocks-articles .buttons .button p {
    color: white;
    font-size: 1.7rem;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .blocks-articles .buttons .button:hover {
    background-color: white;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .blocks-articles .buttons .button:hover p {
    color: var(--bc-1);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}

@media (max-width: 767px) {
  .bm_home {
    -ms-grid-column: 1 !important;
    -ms-grid-column-span: 12 !important;
    grid-column: 1/13 !important;
  }
}

.bm_home.related .page {
  -ms-grid-columns: (1fr)[3] !important;
      grid-template-columns: repeat(3, 1fr) !important;
}

@media (max-width: 767px) {
  .bm_home.related .page {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.bm_home .content {
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
}

.bm_home .content .all-news {
  width: 100%;
  z-index: 2;
}

@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: black;
  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 .breadcrumbs .content {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.bm_home .content .all-news__slider {
  overflow: hidden;
}

.bm_home .content .all-news__slider .slider__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 500ms ease-out 0.1s;
  transition: all 500ms ease-out 0.1s;
}

.bm_home .content .all-news__slider .slider__items .page {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  width: 100%;
}

@media (max-width: 767px) {
  .bm_home .content .all-news__slider .slider__items .page {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
}

.bm_home .content .all-news__slider .slider__items .page .items__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

.bm_home .content .all-news__slider .slider__items .page .items__item:first-child {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
}

@media (max-width: 767px) {
  .bm_home .content .all-news__slider .slider__items .page .items__item:first-child {
    grid-column: auto;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .bm_home .content .all-news__slider .slider__items .page .items__item {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .bm_home .content .all-news__slider .slider__items .page .items__item {
    width: 100%;
    border-bottom: 1px solid var(--bc-1);
  }
}

.bm_home .content .all-news__slider .slider__items .page .items__item .new {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

.bm_home .content .all-news__slider .slider__items .page .items__item:hover .item__content::before {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: skewY(-10deg) scale(1, 1);
          transform: skewY(-10deg) scale(1, 1);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.bm_home .content .all-news__slider .slider__items .page .items__item:hover .item__content .content__date span {
  color: white;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.bm_home .content .all-news__slider .slider__items .page .items__item:hover .item__content .content__title span {
  color: white;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.bm_home .content .all-news__slider .slider__items .page .items__item:hover .item__content a {
  color: white;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.bm_home .content .all-news__slider .slider__items .page .items__item .item__image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.bm_home .content .all-news__slider .slider__items .page .items__item .item__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  background-color: transparent;
  position: relative;
  overflow: hidden;
}

.bm_home .content .all-news__slider .slider__items .page .items__item .item__content::before {
  position: absolute;
  top: 0;
  z-index: 0;
  content: '';
  background: var(--bc-1);
  left: -5%;
  right: auto;
  bottom: auto;
  width: 110%;
  height: 180%;
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
  -webkit-transform: skewY(-10deg) scale(1, 0);
          transform: skewY(-10deg) scale(1, 0);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.bm_home .content .all-news__slider .slider__items .page .items__item .item__content .content {
  width: 100%;
  padding: 40px 10px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
}

@media (max-width: 767px) {
  .bm_home .content .all-news__slider .slider__items .page .items__item .item__content .content {
    padding: 30px !important;
  }
}

.bm_home .content .all-news__slider .slider__items .page .items__item .item__content .content * {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.bm_home .content .all-news__slider .slider__items .page .items__item .item__content .content__title span {
  font-size: 2rem;
  font-weight: bold;
  line-height: 2rem;
  color: black;
}

@media (max-width: 767px) {
  .bm_home .content .all-news__slider .slider__items .page .items__item .item__content .content__title span {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
}

.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__items .page .items__item .item__content .content__excerpt span {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.bm_home .content .all-news__slider .slider__items .page .items__item .item__content .content__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
}

.bm_home .content .all-news__slider .slider__items .page .items__item .item__content .content__info hr {
  height: 100%;
  width: 1px;
  margin: 0;
}

.bm_home .content .all-news__slider .slider__controller {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 50px;
}

@media (max-width: 767px) {
  .bm_home .content .all-news__slider .slider__controller {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.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;
}

.bm_home .content .all-news__slider .slider__controller .controller__line {
  width: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          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;
  -webkit-transform: translate(0px, -50%);
          transform: translate(0px, -50%);
  height: 4px;
  background: var(--azul);
  -webkit-transition: all 500ms ease-out 0.1s;
  transition: all 500ms ease-out 0.1s;
}

.bm_home .content .all-news__slider .slider__controller .controller__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  z-index: 2;
  width: 15%;
  z-index: 2;
}

@media (max-width: 767px) {
  .bm_home .content .all-news__slider .slider__controller .controller__buttons {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 30px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.bm_home .content .all-news__slider .slider__controller .controller__buttons .buttons__slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 30px;
}

@media (max-width: 767px) {
  .bm_home .content .all-news__slider .slider__controller .controller__buttons .buttons__slider {
    margin: 0;
  }
}

.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;
  background-color: rgba(0, 0, 0, 0.05);
}

.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 ----- */
/* -------------------------- */
.bm_press-releases {
  width: 90%;
  padding: 50px !important;
}

@media (min-width: 1200px) and (max-width: 1600px) {
  .bm_press-releases {
    -ms-grid-column: 3 !important;
        grid-column-start: 2 !important;
    grid-column-end: 12 !important;
    padding: 50px !important;
    margin-top: 50px !important;
    height: -webkit-fit-content !important;
    height: -moz-fit-content !important;
    height: fit-content !important;
  }
}

@media (max-width: 767px) {
  .bm_press-releases {
    -ms-grid-column: 1 !important;
    -ms-grid-column-span: 12 !important;
    grid-column: 1/13 !important;
    padding: 30px !important;
  }
}

.bm_press-releases .content {
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
}

.bm_press-releases .content .press-releases__content-title {
  width: 100%;
}

.bm_press-releases .content .press-releases__content-title .press-releases__title {
  -ms-grid-column: 2;
      grid-column-start: 2;
}

@media (max-width: 767px) {
  .bm_press-releases .content .press-releases__content-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.bm_press-releases .content .press-releases {
  width: 100%;
  z-index: 2;
}

@media (max-width: 767px) {
  .bm_press-releases .content .press-releases {
    margin-top: 0px;
    padding: 0px;
    max-width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .bm_press-releases .content .press-releases {
    max-width: 100%;
  }
}

.bm_press-releases .content .press-releases__title {
  position: relative;
  font-size: 3rem;
  color: black;
  line-height: 3rem;
  padding-bottom: 50px;
}

.bm_press-releases .content .press-releases__slider {
  overflow: hidden;
}

.bm_press-releases .content .press-releases__slider .slider__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 500ms ease-out 0.1s;
  transition: all 500ms ease-out 0.1s;
}

.bm_press-releases .content .press-releases__slider .slider__items .page {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
      grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  width: 100%;
}

.bm_press-releases .content .press-releases__slider .slider__items .page .items__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .bm_press-releases .content .press-releases__slider .slider__items .page .items__item {
    width: 45%;
  }
}

@media (max-width: 767px) {
  .bm_press-releases .content .press-releases__slider .slider__items .page .items__item {
    width: 100%;
  }
}

.bm_press-releases .content .press-releases__slider .slider__items .page .items__item a {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

.bm_press-releases .content .press-releases__slider .slider__items .page .items__item a:hover .button-arrow .arrow {
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  width: 100%;
}

.bm_press-releases .content .press-releases__slider .slider__items .page .items__item a:hover .button-arrow .arrow i {
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.bm_press-releases .content .press-releases__slider .slider__items .page .items__item .item__image {
  height: auto;
  width: 30%;
}

.bm_press-releases .content .press-releases__slider .slider__items .page .items__item .item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.bm_press-releases .content .press-releases__slider .slider__items .page .items__item .item__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  /*background-color: var(--light-grey);*/
}

.bm_press-releases .content .press-releases__slider .slider__items .page .items__item .item__content .image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 767px) {
  .bm_press-releases .content .press-releases__slider .slider__items .page .items__item .item__content .image img {
    -webkit-transform: translateX(0px) !important;
            transform: translateX(0px) !important;
  }
}

.bm_press-releases .content .press-releases__slider .slider__items .page .items__item .item__content .content {
  width: 100%;
  padding: 20px 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
}

@media (max-width: 767px) {
  .bm_press-releases .content .press-releases__slider .slider__items .page .items__item .item__content .content {
    padding: 30px !important;
  }
}

.bm_press-releases .content .press-releases__slider .slider__items .page .items__item .item__content .content__title span {
  font-size: 2rem;
  font-weight: bold;
  line-height: 2rem;
  color: black;
}

@media (max-width: 767px) {
  .bm_press-releases .content .press-releases__slider .slider__items .page .items__item .item__content .content__title span {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
}

.bm_press-releases .content .press-releases__slider .slider__items .page .items__item .item__content .content__subtitle span {
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 2rem;
  color: black;
}

@media (max-width: 767px) {
  .bm_press-releases .content .press-releases__slider .slider__items .page .items__item .item__content .content__subtitle span {
    font-size: 1.3rem;
    line-height: 1.3rem;
  }
}

.bm_press-releases .content .press-releases__slider .slider__items .page .items__item .item__content .content__date span {
  font-size: 15px;
  font-weight: 300;
  color: var(--bc-1);
}

.bm_press-releases .content .press-releases__slider .slider__items .page .items__item .item__content .content__excerpt span {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.bm_press-releases .content .press-releases__slider .slider__items .page .items__item .item__content .content__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
}

.bm_press-releases .content .press-releases__slider .slider__items .page .items__item .item__content .content__info p {
  color: black;
}

.bm_press-releases .content .press-releases__slider .slider__items .page .items__item .item__content .content__info hr {
  height: 100%;
  width: 1px;
  margin: 0;
}

.bm_press-releases .content .press-releases__slider .slider__controller {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 50px;
}

@media (max-width: 767px) {
  .bm_press-releases .content .press-releases__slider .slider__controller {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.bm_press-releases .content .press-releases__slider .slider__controller .controller__paginate {
  z-index: 2;
  width: 5%;
}

@media (max-width: 767px) {
  .bm_press-releases .content .press-releases__slider .slider__controller .controller__paginate {
    display: none;
  }
}

.bm_press-releases .content .press-releases__slider .slider__controller .controller__paginate span {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.07;
}

.bm_press-releases .content .press-releases__slider .slider__controller .controller__line {
  width: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  .bm_press-releases .content .press-releases__slider .slider__controller .controller__line {
    width: 100%;
  }
}

.bm_press-releases .content .press-releases__slider .slider__controller .controller__line .line {
  z-index: 2;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.25);
  position: relative;
}

.bm_press-releases .content .press-releases__slider .slider__controller .controller__line .line__current {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0px, -50%);
          transform: translate(0px, -50%);
  height: 4px;
  background: var(--bc-2);
  -webkit-transition: all 500ms ease-out 0.1s;
  transition: all 500ms ease-out 0.1s;
}

.bm_press-releases .content .press-releases__slider .slider__controller .controller__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  z-index: 2;
  width: 30%;
  z-index: 2;
}

@media (max-width: 767px) {
  .bm_press-releases .content .press-releases__slider .slider__controller .controller__buttons {
    width: 100%;
    margin-top: 30px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.bm_press-releases .content .press-releases__slider .slider__controller .controller__buttons .buttons__slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 30px;
}

@media (max-width: 767px) {
  .bm_press-releases .content .press-releases__slider .slider__controller .controller__buttons .buttons__slider {
    margin: 0;
  }
}

.bm_press-releases .content .press-releases__slider .slider__controller .controller__buttons .buttons__slider .left,
.bm_press-releases .content .press-releases__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_press-releases .content .press-releases__slider .slider__controller .controller__buttons .buttons__slider .left:hover,
.bm_press-releases .content .press-releases__slider .slider__controller .controller__buttons .buttons__slider .right:hover {
  border-color: var(--bc-2);
}

.bm_press-releases .content .press-releases__slider .slider__controller .controller__buttons .buttons__slider .left {
  margin-right: 10px;
}

.bm_press-releases .content .press-releases__slider .slider__controller .controller__buttons .buttons__see-more a {
  font-size: 12px;
  font-weight: 300;
  color: black;
}

/* -------------------------- */
/* -------------------------- */
/* ----- ENTITY DESTACADOS EN PORTADA LAYOUT ----- */
/* -------------------------- */
.blocks-articles {
  margin-top: 150px;
}

.blocks-articles .buttons {
  display: none;
}

@media (max-width: 767px) {
  .blocks-articles {
    margin-top: 130px;
  }
  .blocks-articles .buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin: var(--space-l) 0;
    gap: 10px;
    width: 100%;
  }
  .blocks-articles .buttons .button {
    background-color: var(--bc-1);
    border-radius: 30px;
    border: 2px solid var(--bc-1);
    padding: 8px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .blocks-articles .buttons .button p {
    color: white;
    font-size: 1.7rem;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .blocks-articles .buttons .button:hover {
    background-color: white;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .blocks-articles .buttons .button:hover p {
    color: var(--bc-1);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}

.bm_home .content,
.bm_home-all .content,
.pub_home .content,
.pub_sorteos .content,
.pub_universe .content,
.pub_universe-fr .content,
.pub_universe-port .content {
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[12] !important;
      grid-template-columns: repeat(12, 1fr) !important;
}

.bm_home .content .content--item,
.bm_home-all .content .content--item,
.pub_home .content .content--item,
.pub_sorteos .content .content--item,
.pub_universe .content .content--item,
.pub_universe-fr .content .content--item,
.pub_universe-port .content .content--item {
  -ms-grid-column: 3;
  -ms-grid-column-span: 8;
  grid-column: 3/11;
}

.bm_home .content .content--item .home-news__content-title,
.bm_home-all .content .content--item .home-news__content-title,
.pub_home .content .content--item .home-news__content-title,
.pub_sorteos .content .content--item .home-news__content-title,
.pub_universe .content .content--item .home-news__content-title,
.pub_universe-fr .content .content--item .home-news__content-title,
.pub_universe-port .content .content--item .home-news__content-title {
  width: 100%;
}

.bm_home .content .content--item .home-news__content-title h4,
.bm_home-all .content .content--item .home-news__content-title h4,
.pub_home .content .content--item .home-news__content-title h4,
.pub_sorteos .content .content--item .home-news__content-title h4,
.pub_universe .content .content--item .home-news__content-title h4,
.pub_universe-fr .content .content--item .home-news__content-title h4,
.pub_universe-port .content .content--item .home-news__content-title h4 {
  font-size: 2rem;
  font-style: italic;
  color: var(--bc-1);
  margin: 10px 0;
}

.bm_home .content .content--item .home-news__content-title h4::after,
.bm_home-all .content .content--item .home-news__content-title h4::after,
.pub_home .content .content--item .home-news__content-title h4::after,
.pub_sorteos .content .content--item .home-news__content-title h4::after,
.pub_universe .content .content--item .home-news__content-title h4::after,
.pub_universe-fr .content .content--item .home-news__content-title h4::after,
.pub_universe-port .content .content--item .home-news__content-title h4::after {
  content: "";
  height: 3%;
  width: 0%;
  background-color: var(--bc-1);
  position: absolute;
  bottom: -15px;
  left: -15px;
  -webkit-transition: ease-in-out;
  transition: ease-in-out;
  -webkit-animation-name: example;
          animation-name: example;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@media (max-width: 767px) {
  .bm_home .content .content--item .home-news__content-title h4::after,
  .bm_home-all .content .content--item .home-news__content-title h4::after,
  .pub_home .content .content--item .home-news__content-title h4::after,
  .pub_sorteos .content .content--item .home-news__content-title h4::after,
  .pub_universe .content .content--item .home-news__content-title h4::after,
  .pub_universe-fr .content .content--item .home-news__content-title h4::after,
  .pub_universe-port .content .content--item .home-news__content-title h4::after {
    height: 5%;
  }
}

.bm_home .content .content--item .home-news__content-title .home-news__title,
.bm_home-all .content .content--item .home-news__content-title .home-news__title,
.pub_home .content .content--item .home-news__content-title .home-news__title,
.pub_sorteos .content .content--item .home-news__content-title .home-news__title,
.pub_universe .content .content--item .home-news__content-title .home-news__title,
.pub_universe-fr .content .content--item .home-news__content-title .home-news__title,
.pub_universe-port .content .content--item .home-news__content-title .home-news__title {
  -ms-grid-column: 2;
      grid-column-start: 2;
  width: 100%;
}

@media (max-width: 767px) {
  .bm_home .content .content--item .home-news__content-title,
  .bm_home-all .content .content--item .home-news__content-title,
  .pub_home .content .content--item .home-news__content-title,
  .pub_sorteos .content .content--item .home-news__content-title,
  .pub_universe .content .content--item .home-news__content-title,
  .pub_universe-fr .content .content--item .home-news__content-title,
  .pub_universe-port .content .content--item .home-news__content-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.bm_home .content .home-news,
.bm_home-all .content .home-news,
.pub_home .content .home-news,
.pub_sorteos .content .home-news,
.pub_universe .content .home-news,
.pub_universe-fr .content .home-news,
.pub_universe-port .content .home-news {
  width: 100%;
  z-index: 2;
}

@media (max-width: 767px) {
  .bm_home .content .home-news,
  .bm_home-all .content .home-news,
  .pub_home .content .home-news,
  .pub_sorteos .content .home-news,
  .pub_universe .content .home-news,
  .pub_universe-fr .content .home-news,
  .pub_universe-port .content .home-news {
    margin-top: 0px;
    padding: 0px;
    max-width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .bm_home .content .home-news,
  .bm_home-all .content .home-news,
  .pub_home .content .home-news,
  .pub_sorteos .content .home-news,
  .pub_universe .content .home-news,
  .pub_universe-fr .content .home-news,
  .pub_universe-port .content .home-news {
    max-width: 100%;
  }
}

.bm_home .content .home-news__title,
.bm_home-all .content .home-news__title,
.pub_home .content .home-news__title,
.pub_sorteos .content .home-news__title,
.pub_universe .content .home-news__title,
.pub_universe-fr .content .home-news__title,
.pub_universe-port .content .home-news__title {
  position: relative;
  font-size: 52px;
  color: black;
  line-height: 1.23;
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .bm_home .content .home-news__title,
  .bm_home-all .content .home-news__title,
  .pub_home .content .home-news__title,
  .pub_sorteos .content .home-news__title,
  .pub_universe .content .home-news__title,
  .pub_universe-fr .content .home-news__title,
  .pub_universe-port .content .home-news__title {
    font-size: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

.bm_home .content .home-news__title .breadcrumbs .content,
.bm_home-all .content .home-news__title .breadcrumbs .content,
.pub_home .content .home-news__title .breadcrumbs .content,
.pub_sorteos .content .home-news__title .breadcrumbs .content,
.pub_universe .content .home-news__title .breadcrumbs .content,
.pub_universe-fr .content .home-news__title .breadcrumbs .content,
.pub_universe-port .content .home-news__title .breadcrumbs .content {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.bm_home .content .home-news__slider,
.bm_home-all .content .home-news__slider,
.pub_home .content .home-news__slider,
.pub_sorteos .content .home-news__slider,
.pub_universe .content .home-news__slider,
.pub_universe-fr .content .home-news__slider,
.pub_universe-port .content .home-news__slider {
  overflow: hidden;
}

.bm_home .content .home-news__slider .slider__items,
.bm_home-all .content .home-news__slider .slider__items,
.pub_home .content .home-news__slider .slider__items,
.pub_sorteos .content .home-news__slider .slider__items,
.pub_universe .content .home-news__slider .slider__items,
.pub_universe-fr .content .home-news__slider .slider__items,
.pub_universe-port .content .home-news__slider .slider__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 500ms ease-out 0.1s;
  transition: all 500ms ease-out 0.1s;
}

.bm_home .content .home-news__slider .slider__items .page,
.bm_home-all .content .home-news__slider .slider__items .page,
.pub_home .content .home-news__slider .slider__items .page,
.pub_sorteos .content .home-news__slider .slider__items .page,
.pub_universe .content .home-news__slider .slider__items .page,
.pub_universe-fr .content .home-news__slider .slider__items .page,
.pub_universe-port .content .home-news__slider .slider__items .page {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  grid-row-gap: 50px;
  width: 100%;
}

@media (min-width: 1200px) and (max-width: 1600px) {
  .bm_home .content .home-news__slider .slider__items .page,
  .bm_home-all .content .home-news__slider .slider__items .page,
  .pub_home .content .home-news__slider .slider__items .page,
  .pub_sorteos .content .home-news__slider .slider__items .page,
  .pub_universe .content .home-news__slider .slider__items .page,
  .pub_universe-fr .content .home-news__slider .slider__items .page,
  .pub_universe-port .content .home-news__slider .slider__items .page {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .bm_home .content .home-news__slider .slider__items .page,
  .bm_home-all .content .home-news__slider .slider__items .page,
  .pub_home .content .home-news__slider .slider__items .page,
  .pub_sorteos .content .home-news__slider .slider__items .page,
  .pub_universe .content .home-news__slider .slider__items .page,
  .pub_universe-fr .content .home-news__slider .slider__items .page,
  .pub_universe-port .content .home-news__slider .slider__items .page {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .bm_home .content .home-news__slider .slider__items .page,
  .bm_home-all .content .home-news__slider .slider__items .page,
  .pub_home .content .home-news__slider .slider__items .page,
  .pub_sorteos .content .home-news__slider .slider__items .page,
  .pub_universe .content .home-news__slider .slider__items .page,
  .pub_universe-fr .content .home-news__slider .slider__items .page,
  .pub_universe-port .content .home-news__slider .slider__items .page {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

.bm_home .content .home-news__slider .slider__items .page .items__item,
.bm_home-all .content .home-news__slider .slider__items .page .items__item,
.pub_home .content .home-news__slider .slider__items .page .items__item,
.pub_sorteos .content .home-news__slider .slider__items .page .items__item,
.pub_universe .content .home-news__slider .slider__items .page .items__item,
.pub_universe-fr .content .home-news__slider .slider__items .page .items__item,
.pub_universe-port .content .home-news__slider .slider__items .page .items__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  overflow: hidden;
  min-height: 300px;
  padding: 0 20px;
  border-right: 1px solid var(--bc-1);
}

@media (hover: hover) {
  .bm_home .content .home-news__slider .slider__items .page .items__item:hover .item__content::before,
  .bm_home-all .content .home-news__slider .slider__items .page .items__item:hover .item__content::before,
  .pub_home .content .home-news__slider .slider__items .page .items__item:hover .item__content::before,
  .pub_sorteos .content .home-news__slider .slider__items .page .items__item:hover .item__content::before,
  .pub_universe .content .home-news__slider .slider__items .page .items__item:hover .item__content::before,
  .pub_universe-fr .content .home-news__slider .slider__items .page .items__item:hover .item__content::before,
  .pub_universe-port .content .home-news__slider .slider__items .page .items__item:hover .item__content::before {
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: skewY(-10deg) scale(1, 1);
            transform: skewY(-10deg) scale(1, 1);
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  .bm_home .content .home-news__slider .slider__items .page .items__item:hover .item__content .content__date span,
  .bm_home-all .content .home-news__slider .slider__items .page .items__item:hover .item__content .content__date span,
  .pub_home .content .home-news__slider .slider__items .page .items__item:hover .item__content .content__date span,
  .pub_sorteos .content .home-news__slider .slider__items .page .items__item:hover .item__content .content__date span,
  .pub_universe .content .home-news__slider .slider__items .page .items__item:hover .item__content .content__date span,
  .pub_universe-fr .content .home-news__slider .slider__items .page .items__item:hover .item__content .content__date span,
  .pub_universe-port .content .home-news__slider .slider__items .page .items__item:hover .item__content .content__date span {
    color: black;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .bm_home .content .home-news__slider .slider__items .page .items__item:hover .item__content .content__title span,
  .bm_home-all .content .home-news__slider .slider__items .page .items__item:hover .item__content .content__title span,
  .pub_home .content .home-news__slider .slider__items .page .items__item:hover .item__content .content__title span,
  .pub_sorteos .content .home-news__slider .slider__items .page .items__item:hover .item__content .content__title span,
  .pub_universe .content .home-news__slider .slider__items .page .items__item:hover .item__content .content__title span,
  .pub_universe-fr .content .home-news__slider .slider__items .page .items__item:hover .item__content .content__title span,
  .pub_universe-port .content .home-news__slider .slider__items .page .items__item:hover .item__content .content__title span {
    color: white;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}

@media (max-width: 767px) {
  .bm_home .content .home-news__slider .slider__items .page .items__item,
  .bm_home-all .content .home-news__slider .slider__items .page .items__item,
  .pub_home .content .home-news__slider .slider__items .page .items__item,
  .pub_sorteos .content .home-news__slider .slider__items .page .items__item,
  .pub_universe .content .home-news__slider .slider__items .page .items__item,
  .pub_universe-fr .content .home-news__slider .slider__items .page .items__item,
  .pub_universe-port .content .home-news__slider .slider__items .page .items__item {
    width: 100%;
    border-bottom: 1px solid var(--bc-1);
  }
}

.bm_home .content .home-news__slider .slider__items .page .items__item a,
.bm_home-all .content .home-news__slider .slider__items .page .items__item a,
.pub_home .content .home-news__slider .slider__items .page .items__item a,
.pub_sorteos .content .home-news__slider .slider__items .page .items__item a,
.pub_universe .content .home-news__slider .slider__items .page .items__item a,
.pub_universe-fr .content .home-news__slider .slider__items .page .items__item a,
.pub_universe-port .content .home-news__slider .slider__items .page .items__item a {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 767px) {
  .bm_home .content .home-news__slider .slider__items .page .items__item,
  .bm_home-all .content .home-news__slider .slider__items .page .items__item,
  .pub_home .content .home-news__slider .slider__items .page .items__item,
  .pub_sorteos .content .home-news__slider .slider__items .page .items__item,
  .pub_universe .content .home-news__slider .slider__items .page .items__item,
  .pub_universe-fr .content .home-news__slider .slider__items .page .items__item,
  .pub_universe-port .content .home-news__slider .slider__items .page .items__item {
    border-bottom: 1px solid var(--bc-1);
    border-right: none;
    padding: 0;
  }
}

.bm_home .content .home-news__slider .slider__items .page .items__item:last-child,
.bm_home-all .content .home-news__slider .slider__items .page .items__item:last-child,
.pub_home .content .home-news__slider .slider__items .page .items__item:last-child,
.pub_sorteos .content .home-news__slider .slider__items .page .items__item:last-child,
.pub_universe .content .home-news__slider .slider__items .page .items__item:last-child,
.pub_universe-fr .content .home-news__slider .slider__items .page .items__item:last-child,
.pub_universe-port .content .home-news__slider .slider__items .page .items__item:last-child {
  border-right: none;
}

.bm_home .content .home-news__slider .slider__items .page .items__item:nth-child(4n),
.bm_home-all .content .home-news__slider .slider__items .page .items__item:nth-child(4n),
.pub_home .content .home-news__slider .slider__items .page .items__item:nth-child(4n),
.pub_sorteos .content .home-news__slider .slider__items .page .items__item:nth-child(4n),
.pub_universe .content .home-news__slider .slider__items .page .items__item:nth-child(4n),
.pub_universe-fr .content .home-news__slider .slider__items .page .items__item:nth-child(4n),
.pub_universe-port .content .home-news__slider .slider__items .page .items__item:nth-child(4n) {
  border-right: none;
}

@media (min-width: 1200px) and (max-width: 1600px) {
  .bm_home .content .home-news__slider .slider__items .page .items__item:nth-child(4n),
  .bm_home-all .content .home-news__slider .slider__items .page .items__item:nth-child(4n),
  .pub_home .content .home-news__slider .slider__items .page .items__item:nth-child(4n),
  .pub_sorteos .content .home-news__slider .slider__items .page .items__item:nth-child(4n),
  .pub_universe .content .home-news__slider .slider__items .page .items__item:nth-child(4n),
  .pub_universe-fr .content .home-news__slider .slider__items .page .items__item:nth-child(4n),
  .pub_universe-port .content .home-news__slider .slider__items .page .items__item:nth-child(4n) {
    border-right: 1px solid var(--bc-1);
  }
  .bm_home .content .home-news__slider .slider__items .page .items__item:nth-child(3n),
  .bm_home-all .content .home-news__slider .slider__items .page .items__item:nth-child(3n),
  .pub_home .content .home-news__slider .slider__items .page .items__item:nth-child(3n),
  .pub_sorteos .content .home-news__slider .slider__items .page .items__item:nth-child(3n),
  .pub_universe .content .home-news__slider .slider__items .page .items__item:nth-child(3n),
  .pub_universe-fr .content .home-news__slider .slider__items .page .items__item:nth-child(3n),
  .pub_universe-port .content .home-news__slider .slider__items .page .items__item:nth-child(3n) {
    border-right: none;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .bm_home .content .home-news__slider .slider__items .page .items__item:nth-child(4n),
  .bm_home-all .content .home-news__slider .slider__items .page .items__item:nth-child(4n),
  .pub_home .content .home-news__slider .slider__items .page .items__item:nth-child(4n),
  .pub_sorteos .content .home-news__slider .slider__items .page .items__item:nth-child(4n),
  .pub_universe .content .home-news__slider .slider__items .page .items__item:nth-child(4n),
  .pub_universe-fr .content .home-news__slider .slider__items .page .items__item:nth-child(4n),
  .pub_universe-port .content .home-news__slider .slider__items .page .items__item:nth-child(4n) {
    border-right: 1px solid var(--bc-1);
  }
  .bm_home .content .home-news__slider .slider__items .page .items__item:nth-child(2n),
  .bm_home-all .content .home-news__slider .slider__items .page .items__item:nth-child(2n),
  .pub_home .content .home-news__slider .slider__items .page .items__item:nth-child(2n),
  .pub_sorteos .content .home-news__slider .slider__items .page .items__item:nth-child(2n),
  .pub_universe .content .home-news__slider .slider__items .page .items__item:nth-child(2n),
  .pub_universe-fr .content .home-news__slider .slider__items .page .items__item:nth-child(2n),
  .pub_universe-port .content .home-news__slider .slider__items .page .items__item:nth-child(2n) {
    border-right: none;
  }
}

.bm_home .content .home-news__slider .slider__items .page .items__item .item,
.bm_home-all .content .home-news__slider .slider__items .page .items__item .item,
.pub_home .content .home-news__slider .slider__items .page .items__item .item,
.pub_sorteos .content .home-news__slider .slider__items .page .items__item .item,
.pub_universe .content .home-news__slider .slider__items .page .items__item .item,
.pub_universe-fr .content .home-news__slider .slider__items .page .items__item .item,
.pub_universe-port .content .home-news__slider .slider__items .page .items__item .item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 30px;
}

.bm_home .content .home-news__slider .slider__items .page .items__item .item__image,
.bm_home-all .content .home-news__slider .slider__items .page .items__item .item__image,
.pub_home .content .home-news__slider .slider__items .page .items__item .item__image,
.pub_sorteos .content .home-news__slider .slider__items .page .items__item .item__image,
.pub_universe .content .home-news__slider .slider__items .page .items__item .item__image,
.pub_universe-fr .content .home-news__slider .slider__items .page .items__item .item__image,
.pub_universe-port .content .home-news__slider .slider__items .page .items__item .item__image {
  height: 50%;
}

@media (max-width: 767px) {
  .bm_home .content .home-news__slider .slider__items .page .items__item .item__image,
  .bm_home-all .content .home-news__slider .slider__items .page .items__item .item__image,
  .pub_home .content .home-news__slider .slider__items .page .items__item .item__image,
  .pub_sorteos .content .home-news__slider .slider__items .page .items__item .item__image,
  .pub_universe .content .home-news__slider .slider__items .page .items__item .item__image,
  .pub_universe-fr .content .home-news__slider .slider__items .page .items__item .item__image,
  .pub_universe-port .content .home-news__slider .slider__items .page .items__item .item__image {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}

.bm_home .content .home-news__slider .slider__items .page .items__item .item__image img,
.bm_home-all .content .home-news__slider .slider__items .page .items__item .item__image img,
.pub_home .content .home-news__slider .slider__items .page .items__item .item__image img,
.pub_sorteos .content .home-news__slider .slider__items .page .items__item .item__image img,
.pub_universe .content .home-news__slider .slider__items .page .items__item .item__image img,
.pub_universe-fr .content .home-news__slider .slider__items .page .items__item .item__image img,
.pub_universe-port .content .home-news__slider .slider__items .page .items__item .item__image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.bm_home .content .home-news__slider .slider__items .page .items__item .item__content,
.bm_home-all .content .home-news__slider .slider__items .page .items__item .item__content,
.pub_home .content .home-news__slider .slider__items .page .items__item .item__content,
.pub_sorteos .content .home-news__slider .slider__items .page .items__item .item__content,
.pub_universe .content .home-news__slider .slider__items .page .items__item .item__content,
.pub_universe-fr .content .home-news__slider .slider__items .page .items__item .item__content,
.pub_universe-port .content .home-news__slider .slider__items .page .items__item .item__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 30px;
  background-color: white;
  position: relative;
  overflow: hidden;
}

.bm_home .content .home-news__slider .slider__items .page .items__item .item__content::before,
.bm_home-all .content .home-news__slider .slider__items .page .items__item .item__content::before,
.pub_home .content .home-news__slider .slider__items .page .items__item .item__content::before,
.pub_sorteos .content .home-news__slider .slider__items .page .items__item .item__content::before,
.pub_universe .content .home-news__slider .slider__items .page .items__item .item__content::before,
.pub_universe-fr .content .home-news__slider .slider__items .page .items__item .item__content::before,
.pub_universe-port .content .home-news__slider .slider__items .page .items__item .item__content::before {
  position: absolute;
  top: 0;
  z-index: 0;
  content: '';
  background: var(--bc-1);
  left: -5%;
  right: auto;
  bottom: auto;
  width: 110%;
  height: 180%;
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
  -webkit-transform: skewY(-10deg) scale(1, 0);
          transform: skewY(-10deg) scale(1, 0);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.bm_home .content .home-news__slider .slider__items .page .items__item .item__content .content,
.bm_home-all .content .home-news__slider .slider__items .page .items__item .item__content .content,
.pub_home .content .home-news__slider .slider__items .page .items__item .item__content .content,
.pub_sorteos .content .home-news__slider .slider__items .page .items__item .item__content .content,
.pub_universe .content .home-news__slider .slider__items .page .items__item .item__content .content,
.pub_universe-fr .content .home-news__slider .slider__items .page .items__item .item__content .content,
.pub_universe-port .content .home-news__slider .slider__items .page .items__item .item__content .content {
  width: 90%;
  padding: 40px;
  height: 100%;
}

@media (max-width: 767px) {
  .bm_home .content .home-news__slider .slider__items .page .items__item .item__content .content,
  .bm_home-all .content .home-news__slider .slider__items .page .items__item .item__content .content,
  .pub_home .content .home-news__slider .slider__items .page .items__item .item__content .content,
  .pub_sorteos .content .home-news__slider .slider__items .page .items__item .item__content .content,
  .pub_universe .content .home-news__slider .slider__items .page .items__item .item__content .content,
  .pub_universe-fr .content .home-news__slider .slider__items .page .items__item .item__content .content,
  .pub_universe-port .content .home-news__slider .slider__items .page .items__item .item__content .content {
    padding: 30px !important;
  }
}

.bm_home .content .home-news__slider .slider__items .page .items__item .item__content .content__title,
.bm_home-all .content .home-news__slider .slider__items .page .items__item .item__content .content__title,
.pub_home .content .home-news__slider .slider__items .page .items__item .item__content .content__title,
.pub_sorteos .content .home-news__slider .slider__items .page .items__item .item__content .content__title,
.pub_universe .content .home-news__slider .slider__items .page .items__item .item__content .content__title,
.pub_universe-fr .content .home-news__slider .slider__items .page .items__item .item__content .content__title,
.pub_universe-port .content .home-news__slider .slider__items .page .items__item .item__content .content__title {
  z-index: 2;
  padding: 5px 0;
}

.bm_home .content .home-news__slider .slider__items .page .items__item .item__content .content__title span,
.bm_home-all .content .home-news__slider .slider__items .page .items__item .item__content .content__title span,
.pub_home .content .home-news__slider .slider__items .page .items__item .item__content .content__title span,
.pub_sorteos .content .home-news__slider .slider__items .page .items__item .item__content .content__title span,
.pub_universe .content .home-news__slider .slider__items .page .items__item .item__content .content__title span,
.pub_universe-fr .content .home-news__slider .slider__items .page .items__item .item__content .content__title span,
.pub_universe-port .content .home-news__slider .slider__items .page .items__item .item__content .content__title span {
  font-weight: bold;
  line-height: 2rem;
  color: black;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 1.7rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

@media (max-width: 767px) {
  .bm_home .content .home-news__slider .slider__items .page .items__item .item__content .content__title span,
  .bm_home-all .content .home-news__slider .slider__items .page .items__item .item__content .content__title span,
  .pub_home .content .home-news__slider .slider__items .page .items__item .item__content .content__title span,
  .pub_sorteos .content .home-news__slider .slider__items .page .items__item .item__content .content__title span,
  .pub_universe .content .home-news__slider .slider__items .page .items__item .item__content .content__title span,
  .pub_universe-fr .content .home-news__slider .slider__items .page .items__item .item__content .content__title span,
  .pub_universe-port .content .home-news__slider .slider__items .page .items__item .item__content .content__title span {
    font-size: 1.5rem;
    line-height: 1.8rem;
  }
}

.bm_home .content .home-news__slider .slider__items .page .items__item .item__content .content__date,
.bm_home-all .content .home-news__slider .slider__items .page .items__item .item__content .content__date,
.pub_home .content .home-news__slider .slider__items .page .items__item .item__content .content__date,
.pub_sorteos .content .home-news__slider .slider__items .page .items__item .item__content .content__date,
.pub_universe .content .home-news__slider .slider__items .page .items__item .item__content .content__date,
.pub_universe-fr .content .home-news__slider .slider__items .page .items__item .item__content .content__date,
.pub_universe-port .content .home-news__slider .slider__items .page .items__item .item__content .content__date {
  z-index: 2;
}

.bm_home .content .home-news__slider .slider__items .page .items__item .item__content .content__date span,
.bm_home-all .content .home-news__slider .slider__items .page .items__item .item__content .content__date span,
.pub_home .content .home-news__slider .slider__items .page .items__item .item__content .content__date span,
.pub_sorteos .content .home-news__slider .slider__items .page .items__item .item__content .content__date span,
.pub_universe .content .home-news__slider .slider__items .page .items__item .item__content .content__date span,
.pub_universe-fr .content .home-news__slider .slider__items .page .items__item .item__content .content__date span,
.pub_universe-port .content .home-news__slider .slider__items .page .items__item .item__content .content__date span {
  font-size: 15px;
  font-weight: 300;
  color: var(--bc-1);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.bm_home .content .home-news__slider .slider__controller,
.bm_home-all .content .home-news__slider .slider__controller,
.pub_home .content .home-news__slider .slider__controller,
.pub_sorteos .content .home-news__slider .slider__controller,
.pub_universe .content .home-news__slider .slider__controller,
.pub_universe-fr .content .home-news__slider .slider__controller,
.pub_universe-port .content .home-news__slider .slider__controller {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 50px;
}

@media (max-width: 767px) {
  .bm_home .content .home-news__slider .slider__controller,
  .bm_home-all .content .home-news__slider .slider__controller,
  .pub_home .content .home-news__slider .slider__controller,
  .pub_sorteos .content .home-news__slider .slider__controller,
  .pub_universe .content .home-news__slider .slider__controller,
  .pub_universe-fr .content .home-news__slider .slider__controller,
  .pub_universe-port .content .home-news__slider .slider__controller {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.bm_home .content .home-news__slider .slider__controller .controller__paginate,
.bm_home-all .content .home-news__slider .slider__controller .controller__paginate,
.pub_home .content .home-news__slider .slider__controller .controller__paginate,
.pub_sorteos .content .home-news__slider .slider__controller .controller__paginate,
.pub_universe .content .home-news__slider .slider__controller .controller__paginate,
.pub_universe-fr .content .home-news__slider .slider__controller .controller__paginate,
.pub_universe-port .content .home-news__slider .slider__controller .controller__paginate {
  z-index: 2;
  width: 5%;
}

@media (max-width: 767px) {
  .bm_home .content .home-news__slider .slider__controller .controller__paginate,
  .bm_home-all .content .home-news__slider .slider__controller .controller__paginate,
  .pub_home .content .home-news__slider .slider__controller .controller__paginate,
  .pub_sorteos .content .home-news__slider .slider__controller .controller__paginate,
  .pub_universe .content .home-news__slider .slider__controller .controller__paginate,
  .pub_universe-fr .content .home-news__slider .slider__controller .controller__paginate,
  .pub_universe-port .content .home-news__slider .slider__controller .controller__paginate {
    display: none;
  }
}

.bm_home .content .home-news__slider .slider__controller .controller__paginate span,
.bm_home-all .content .home-news__slider .slider__controller .controller__paginate span,
.pub_home .content .home-news__slider .slider__controller .controller__paginate span,
.pub_sorteos .content .home-news__slider .slider__controller .controller__paginate span,
.pub_universe .content .home-news__slider .slider__controller .controller__paginate span,
.pub_universe-fr .content .home-news__slider .slider__controller .controller__paginate span,
.pub_universe-port .content .home-news__slider .slider__controller .controller__paginate span {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.07;
}

.bm_home .content .home-news__slider .slider__controller .controller__line,
.bm_home-all .content .home-news__slider .slider__controller .controller__line,
.pub_home .content .home-news__slider .slider__controller .controller__line,
.pub_sorteos .content .home-news__slider .slider__controller .controller__line,
.pub_universe .content .home-news__slider .slider__controller .controller__line,
.pub_universe-fr .content .home-news__slider .slider__controller .controller__line,
.pub_universe-port .content .home-news__slider .slider__controller .controller__line {
  width: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  .bm_home .content .home-news__slider .slider__controller .controller__line,
  .bm_home-all .content .home-news__slider .slider__controller .controller__line,
  .pub_home .content .home-news__slider .slider__controller .controller__line,
  .pub_sorteos .content .home-news__slider .slider__controller .controller__line,
  .pub_universe .content .home-news__slider .slider__controller .controller__line,
  .pub_universe-fr .content .home-news__slider .slider__controller .controller__line,
  .pub_universe-port .content .home-news__slider .slider__controller .controller__line {
    width: 100%;
  }
}

.bm_home .content .home-news__slider .slider__controller .controller__line .line,
.bm_home-all .content .home-news__slider .slider__controller .controller__line .line,
.pub_home .content .home-news__slider .slider__controller .controller__line .line,
.pub_sorteos .content .home-news__slider .slider__controller .controller__line .line,
.pub_universe .content .home-news__slider .slider__controller .controller__line .line,
.pub_universe-fr .content .home-news__slider .slider__controller .controller__line .line,
.pub_universe-port .content .home-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 .home-news__slider .slider__controller .controller__line .line__current,
.bm_home-all .content .home-news__slider .slider__controller .controller__line .line__current,
.pub_home .content .home-news__slider .slider__controller .controller__line .line__current,
.pub_sorteos .content .home-news__slider .slider__controller .controller__line .line__current,
.pub_universe .content .home-news__slider .slider__controller .controller__line .line__current,
.pub_universe-fr .content .home-news__slider .slider__controller .controller__line .line__current,
.pub_universe-port .content .home-news__slider .slider__controller .controller__line .line__current {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0px, -50%);
          transform: translate(0px, -50%);
  height: 4px;
  background: var(--bc-2);
  -webkit-transition: all 500ms ease-out 0.1s;
  transition: all 500ms ease-out 0.1s;
}

.bm_home .content .home-news__slider .slider__controller .controller__buttons,
.bm_home-all .content .home-news__slider .slider__controller .controller__buttons,
.pub_home .content .home-news__slider .slider__controller .controller__buttons,
.pub_sorteos .content .home-news__slider .slider__controller .controller__buttons,
.pub_universe .content .home-news__slider .slider__controller .controller__buttons,
.pub_universe-fr .content .home-news__slider .slider__controller .controller__buttons,
.pub_universe-port .content .home-news__slider .slider__controller .controller__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  z-index: 2;
  width: 15%;
  z-index: 2;
}

@media (max-width: 767px) {
  .bm_home .content .home-news__slider .slider__controller .controller__buttons,
  .bm_home-all .content .home-news__slider .slider__controller .controller__buttons,
  .pub_home .content .home-news__slider .slider__controller .controller__buttons,
  .pub_sorteos .content .home-news__slider .slider__controller .controller__buttons,
  .pub_universe .content .home-news__slider .slider__controller .controller__buttons,
  .pub_universe-fr .content .home-news__slider .slider__controller .controller__buttons,
  .pub_universe-port .content .home-news__slider .slider__controller .controller__buttons {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 30px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.bm_home .content .home-news__slider .slider__controller .controller__buttons .buttons__slider,
.bm_home-all .content .home-news__slider .slider__controller .controller__buttons .buttons__slider,
.pub_home .content .home-news__slider .slider__controller .controller__buttons .buttons__slider,
.pub_sorteos .content .home-news__slider .slider__controller .controller__buttons .buttons__slider,
.pub_universe .content .home-news__slider .slider__controller .controller__buttons .buttons__slider,
.pub_universe-fr .content .home-news__slider .slider__controller .controller__buttons .buttons__slider,
.pub_universe-port .content .home-news__slider .slider__controller .controller__buttons .buttons__slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 30px;
}

@media (max-width: 767px) {
  .bm_home .content .home-news__slider .slider__controller .controller__buttons .buttons__slider,
  .bm_home-all .content .home-news__slider .slider__controller .controller__buttons .buttons__slider,
  .pub_home .content .home-news__slider .slider__controller .controller__buttons .buttons__slider,
  .pub_sorteos .content .home-news__slider .slider__controller .controller__buttons .buttons__slider,
  .pub_universe .content .home-news__slider .slider__controller .controller__buttons .buttons__slider,
  .pub_universe-fr .content .home-news__slider .slider__controller .controller__buttons .buttons__slider,
  .pub_universe-port .content .home-news__slider .slider__controller .controller__buttons .buttons__slider {
    margin: 0;
  }
}

.bm_home .content .home-news__slider .slider__controller .controller__buttons .buttons__slider .left,
.bm_home .content .home-news__slider .slider__controller .controller__buttons .buttons__slider .right,
.bm_home-all .content .home-news__slider .slider__controller .controller__buttons .buttons__slider .left,
.bm_home-all .content .home-news__slider .slider__controller .controller__buttons .buttons__slider .right,
.pub_home .content .home-news__slider .slider__controller .controller__buttons .buttons__slider .left,
.pub_home .content .home-news__slider .slider__controller .controller__buttons .buttons__slider .right,
.pub_sorteos .content .home-news__slider .slider__controller .controller__buttons .buttons__slider .left,
.pub_sorteos .content .home-news__slider .slider__controller .controller__buttons .buttons__slider .right,
.pub_universe .content .home-news__slider .slider__controller .controller__buttons .buttons__slider .left,
.pub_universe .content .home-news__slider .slider__controller .controller__buttons .buttons__slider .right,
.pub_universe-fr .content .home-news__slider .slider__controller .controller__buttons .buttons__slider .left,
.pub_universe-fr .content .home-news__slider .slider__controller .controller__buttons .buttons__slider .right,
.pub_universe-port .content .home-news__slider .slider__controller .controller__buttons .buttons__slider .left,
.pub_universe-port .content .home-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 .home-news__slider .slider__controller .controller__buttons .buttons__slider .left:hover,
.bm_home .content .home-news__slider .slider__controller .controller__buttons .buttons__slider .right:hover,
.bm_home-all .content .home-news__slider .slider__controller .controller__buttons .buttons__slider .left:hover,
.bm_home-all .content .home-news__slider .slider__controller .controller__buttons .buttons__slider .right:hover,
.pub_home .content .home-news__slider .slider__controller .controller__buttons .buttons__slider .left:hover,
.pub_home .content .home-news__slider .slider__controller .controller__buttons .buttons__slider .right:hover,
.pub_sorteos .content .home-news__slider .slider__controller .controller__buttons .buttons__slider .left:hover,
.pub_sorteos .content .home-news__slider .slider__controller .controller__buttons .buttons__slider .right:hover,
.pub_universe .content .home-news__slider .slider__controller .controller__buttons .buttons__slider .left:hover,
.pub_universe .content .home-news__slider .slider__controller .controller__buttons .buttons__slider .right:hover,
.pub_universe-fr .content .home-news__slider .slider__controller .controller__buttons .buttons__slider .left:hover,
.pub_universe-fr .content .home-news__slider .slider__controller .controller__buttons .buttons__slider .right:hover,
.pub_universe-port .content .home-news__slider .slider__controller .controller__buttons .buttons__slider .left:hover,
.pub_universe-port .content .home-news__slider .slider__controller .controller__buttons .buttons__slider .right:hover {
  border-color: var(--bc-2);
}

.bm_home .content .home-news__slider .slider__controller .controller__buttons .buttons__slider .left,
.bm_home-all .content .home-news__slider .slider__controller .controller__buttons .buttons__slider .left,
.pub_home .content .home-news__slider .slider__controller .controller__buttons .buttons__slider .left,
.pub_sorteos .content .home-news__slider .slider__controller .controller__buttons .buttons__slider .left,
.pub_universe .content .home-news__slider .slider__controller .controller__buttons .buttons__slider .left,
.pub_universe-fr .content .home-news__slider .slider__controller .controller__buttons .buttons__slider .left,
.pub_universe-port .content .home-news__slider .slider__controller .controller__buttons .buttons__slider .left {
  margin-right: 10px;
}

.bm_home .content .home-news__slider .slider__controller .controller__buttons .buttons__see-more a,
.bm_home-all .content .home-news__slider .slider__controller .controller__buttons .buttons__see-more a,
.pub_home .content .home-news__slider .slider__controller .controller__buttons .buttons__see-more a,
.pub_sorteos .content .home-news__slider .slider__controller .controller__buttons .buttons__see-more a,
.pub_universe .content .home-news__slider .slider__controller .controller__buttons .buttons__see-more a,
.pub_universe-fr .content .home-news__slider .slider__controller .controller__buttons .buttons__see-more a,
.pub_universe-port .content .home-news__slider .slider__controller .controller__buttons .buttons__see-more a {
  font-size: 12px;
  font-weight: 300;
  color: black;
}

/* -------------------------- */
.pub_list-products {
  padding: 50px 0;
}

@media (max-width: 767px) {
  .pub_list-products {
    padding: 0;
    -ms-grid-column: 2 !important;
    -ms-grid-column-span: 10 !important;
    grid-column: 2/12 !important;
  }
}

.carreers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.carreers .carreer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  background-color: var(--light-grey);
  width: 100%;
  z-index: 2;
}

.carreers .carreer .contents {
  width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 20px;
  gap: 20px;
}

.carreers .carreer .contents .title h3 {
  font-size: 2.5rem;
  color: black;
}

.carreers .carreer .contents .excerpt p {
  color: var(--bc-1);
  font-size: 2.5rem;
}

@media (max-width: 767px) {
  .carreers .carreer .contents .title h3 {
    color: black;
    font-size: 2rem;
  }
  .carreers .carreer .contents .excerpt p {
    font-size: 1.7rem;
  }
}

.carreers .carreer .button-arrow {
  width: 10%;
  background-color: var(--light-grey);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.carreers .carreer .button-arrow .arrow {
  width: 10%;
  background-color: var(--bc-1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
  overflow: hidden;
}

.carreers .carreer .button-arrow .arrow i {
  opacity: 0;
}

.carreers .carreer:hover .button-arrow .arrow {
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  width: 100%;
}

.carreers .carreer:hover .button-arrow .arrow i {
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.pub_latest {
  padding: 0 !important;
}

.pub_latest .lens {
  display: none;
  z-index: -1;
}

.pub_latest .recipes {
  padding-bottom: var(--space-xl);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  -ms-grid-rows: 2fr 1fr;
      grid-template-rows: 2fr 1fr;
  width: 100%;
  height: 100%;
  z-index: 1;
  gap: 20px;
}

:lang(en) .pub_latest .recipes {
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
}

.pub_latest .recipes .recipe {
  z-index: 1;
  -ms-grid-row: 2;
  grid-row: 2/2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
          border-bottom: none !important;
}

.pub_latest .recipes .recipe:hover .content-recipe .button-plus .button {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  background-color: transparent;/*var(--bc-1)*/
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.pub_latest .recipes .recipe:hover .content-recipe .button-plus .button i {
  color: #225384;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.pub_latest .recipes .recipe .date p {
    color: #225384;
}

.pub_latest .recipes .recipe:nth-child(2) {
  background-color: #e7cad3 !important;
}

.pub_latest .recipes .recipe:nth-child(3) {
  /*border-right: 1px solid var(--bc-1);*/
}

.pub_latest .recipes .recipe:nth-child(4) {
  background-color: #ddd0a3;
}

.pub_latest .recipes .recipe .image {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 1;
  height: 50%;
}

.pub_latest .recipes .recipe .content-recipe {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 50%;
  padding: 20px 20px;
}

.pub_latest .recipes .recipe .content-recipe .date {
  height: 20%;
}

.pub_latest .recipes .recipe .content-recipe .title {
  height: 60%;
  margin-top: 10px;
}

.pub_latest .recipes .recipe .content-recipe .title p {
  font-size: 1.5rem;
  color: black;
  font-family: var(--degular);
  font-weight: 300;
}

.pub_latest .recipes .recipe .content-recipe .button-plus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 10px;
  height: 20%;
}

.pub_latest .recipes .recipe .content-recipe .button-plus .button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #225384;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.pub_latest .recipes .recipe .content-recipe .button-plus .button i {
  color: #225384;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.pub_latest .recipes .recipe:first-child {
  padding: 0;
  -ms-grid-column: 1;
  -ms-grid-column-span: 4;
  grid-column: 1/5;
  -ms-grid-row: 1;
  grid-row: 1/1;
  position: relative;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-bottom: 40px;
}

.pub_latest .recipes .recipe:first-child .lens {
  background-color: rgba(0, 0, 0, 0.4);
  display: unset;
  z-index: 1;
}

@media (max-width: 767px) {
  .pub_latest .recipes .recipe:first-child .lens {
    background-color: rgba(0, 0, 0, 0.3);
  }
}

.pub_latest .recipes .recipe:first-child img {
  width: 100%;
  height: auto;
}

.pub_latest .recipes .recipe:first-child .content-recipe {
  position: absolute;
  width: 100%;
  z-index: 2;
  height: 100%;
  padding: 50px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: transparent url(https://vitrinor.com/resources/articles/2024/marzo/cabeceravitrinor-magefesa.gif) no-repeat;
  background-size: cover;
 
}
:lang(en) .pub_latest .recipes .recipe:first-child .content-recipe {
  background: transparent url(https://vitrinor.com/resources/articles/2024/marzo/cabeceravitrinor-magefesa-en.gif) no-repeat top center;
  background-size: cover;
}

:lang(en) .pub_latest .recipes .recipe:first-child .content-recipe .date,
:lang(en) .pub_latest .recipes .recipe:first-child .content-recipe .title {
  display: none;
}
.pub_latest .recipes .recipe:first-child .content-recipe .date,
.pub_latest .recipes .recipe:first-child .content-recipe .title {
    display: none !important;
}

.pub_latest .recipes .recipe:first-child .content-recipe img {
   display: none;
}

.pub_latest .recipes .recipe:first-child .content-recipe .button-plus {
  display: none;
}

.pub_latest .recipes .recipe:first-child .content-recipe .date,
.pub_latest .recipes .recipe:first-child .content-recipe .title {
  height: unset;
  color: white;
}

.pub_latest .recipes .recipe:first-child .content-recipe .date p,
.pub_latest .recipes .recipe:first-child .content-recipe .title p {
  color: white;
}

.pub_latest .recipes .recipe:first-child .content-recipe .date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.pub_latest .recipes .recipe:first-child .content-recipe .title {
  width: 50%;
  margin-top: 20px;
}

.pub_latest .recipes .recipe:first-child .content-recipe .title p {
  font-size: 6rem;
  font-weight: bold;
}

@media (min-width: 1200px) and (max-width: 1600px) {
  .pub_latest .recipes .recipe:first-child .content-recipe .title p {
    font-size: 5rem;
  }
}

@media (max-width: 767px) {
  .pub_latest {
    -ms-grid-column: 1 !important;
    -ms-grid-column-span: 12 !important;
    grid-column: 1/13 !important;
  }
  .pub_latest .recipes {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .pub_latest .recipes .recipe {
    -ms-grid-column: 1 !important;
    -ms-grid-column-span: 4 !important;
    grid-column: 1/5 !important;
    grid-row: auto !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    height: -webkit-fit-content !important;
    height: -moz-fit-content !important;
    height: fit-content !important;
    border-right: none !important;
    padding: 0 20px !important;
    border-bottom: 1px solid var(--bc-1);
    padding: 0 !important;
    margin: 0 20px !important;
  }
  .pub_latest .recipes .recipe:first-child {
    height: -webkit-fit-content !important;
    height: -moz-fit-content !important;
    height: fit-content !important;
    min-height: unset !important;
    padding: 0 !important;
    border: none;
    margin: 0 !important;
  }
  .pub_latest .recipes .recipe:first-child {
    max-height: 300px;
    height: 300px;
    min-height: 300px;
    margin-bottom: 10px !important;
  }
  .pub_latest .recipes .recipe:first-child .title {
    width: 100% !important;
  }
  .pub_latest .recipes .recipe:first-child .title p {
    font-size: 2rem !important;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .pub_latest .recipes {
    -ms-grid-columns: (1fr)[2] !important;
        grid-template-columns: repeat(2, 1fr) !important;
  }
  .pub_latest .recipes .recipe {
    grid-row: unset !important;
    height: 300px;
  }
  .pub_latest .recipes .recipe:first-child {
    -ms-grid-column: 1 !important;
    -ms-grid-column-span: 2 !important;
    grid-column: 1/3 !important;
  }
  .pub_latest .recipes .recipe:first-child .title {
    width: 100% !important;
  }
  .pub_latest .recipes .recipe:nth-child(3) {
    padding-right: unset !important;
    border: none !important;
  }
}

@media (max-width: 767px) {
  .pub_sorteos .content--item, .bm_home .content--item {
    -ms-grid-column: 2 !important;
    -ms-grid-column-span: 10 !important;
    grid-column: 2/12 !important;
  }
}

@media (max-width: 767px) {
  .pub_home {
    -ms-grid-column: 2 !important;
    -ms-grid-column-span: 10 !important;
    grid-column: 2/12 !important;
  }
}

.pub_home .content--item {
  -ms-grid-column: 1 !important;
  -ms-grid-column-span: 12 !important;
  grid-column: 1/13 !important;
}

@media (max-width: 767px) {
  .pub_home .content--item {
    -ms-grid-column: 1 !important;
    -ms-grid-column-span: 12 !important;
    grid-column: 1/13 !important;
  }
}

.pub_home .header-block-recipes {
  z-index: 1;
}

.pub_home .header-block-recipes .breadcrumbs .breadcrumb {
  z-index: 3;
}

.pub_home .header-block-recipes .breadcrumbs .breadcrumb::after {
  color: var(--bc-1);
}

.pub_home .header-block-recipes .breadcrumbs .breadcrumb a {
  color: var(--bc-1);
}

@-webkit-keyframes animationh1 {
  0% {
    width: 0%;
  }
  100% {
    width: 10%;
  }
}

@keyframes animationh1 {
  0% {
    width: 0%;
  }
  100% {
    width: 10%;
  }
}

.pub_home .header-block-recipes h1 {
  margin: 30px 0px !important;
  position: relative;
}

.pub_home .header-block-recipes h1::after {
    display: none;
  content: "";
  height: 8%;
  width: 0%;
  background-color: var(--bc-1);
  position: absolute;
  bottom: -15px;
  left: -15px;
  -webkit-transition: ease-in-out;
  transition: ease-in-out;
  -webkit-animation-name: animationh1;
          animation-name: animationh1;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@media (max-width: 767px) {
  .pub_home .header-block-recipes h1::after {
    height: 10%;
  }
}

.pub_home .header-block-recipes .top-block-recipes {
  position: relative;
}

.pub_home .header-block-recipes .top-block-recipes .bg-image {
  z-index: 0 !important;
}

@media (max-width: 767px) {
  .pub_home .header-block-recipes .top-block-recipes .bg-image {
    display: none;
  }
}

.pub_home .header-block-recipes .top-block-recipes .bg-image img {
  position: absolute;
  right: 0;
  width: 300px;
}

@media (max-width: 767px) {
  .pub_home .header-block-recipes .top-block-recipes .bg-image img {
    width: 150px !important;
  }
}

.pub_home .header-block-recipes .top-block-recipes .breadcrumbs .content {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
}

.pub_home .home-news {
  padding-top: var(--space-xl);
}

.pub_home .home-news .item__content {
  background: var(--light-grey);
}

@media (max-width: 767px) {
  .ecm_list-categories {
    -ms-grid-column: 2 !important;
    -ms-grid-column-span: 10 !important;
    grid-column: 2/12 !important;
  }
}

.list-categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.list-categories .content .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  padding-top: 50px;
}

.list-categories .content .title h3::after {
  content: "";
  height: 8%;
  width: 8%;
  background-color: #50504f;
  position: absolute;
  bottom: -20px;
  left: 0px;
}

.list-categories .content .categories {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding: 50px 0px 50px 0px;
  z-index: 1;
}

@media (max-width: 767px) {
  .list-categories .content .categories {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
  }
}

.list-categories .content .categories .categorie {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f6f6f6;
}

.list-categories .content .categories .categorie .icon {
  width: 20%;
  padding: 10px;
}

@media (min-width: 1200px) and (max-width: 1600px) {
  .list-categories .content .categories .categorie .icon {
    width: 30%;
  }
}

@media (max-width: 767px) {
  .list-categories .content .categories .categorie .icon {
    width: 25%;
  }
}

.list-categories .content .categories .categorie .title {
  width: 60%;
  padding: 10px;
}

@media (max-width: 767px) {
  .list-categories .content .categories .categorie .title {
    width: 55%;
  }
}

.list-categories .content .categories .categorie .title span {
  font-weight: bold;
  font-size: 2.5rem;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .list-categories .content .categories .categorie .title span {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .list-categories .content .categories .categorie .title span {
    font-size: 2rem;
  }
}

.list-categories .content .categories .categorie .button {
  width: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  height: 100%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  cursor: pointer;
}

.list-categories .content .categories .categorie .button .arrow {
  background-color: var(--bc-1);
  width: 5%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: white;
}

.list-categories .content .categories .categorie .button .arrow i {
  font-weight: 400;
  opacity: 0;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.list-categories .content .categories .categorie:hover .button .arrow {
  background-color: var(--bc-1);
  width: 50%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.list-categories .content .categories .categorie:hover .button .arrow i {
  opacity: 1;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

@media (max-width: 767px) {
  .ecm_list-products {
    -ms-grid-column: 2 !important;
    -ms-grid-column-span: 10 !important;
    grid-column: 2/12 !important;
  }
}

.ecm_list-products .header-block-recipes {
  z-index: 1;
}

.ecm_list-products .header-block-recipes .breadcrumbs .breadcrumb {
  z-index: 3;
}

.ecm_list-products .header-block-recipes .breadcrumbs .breadcrumb::after {
  color: var(--bc-1);
}

.ecm_list-products .header-block-recipes .breadcrumbs .breadcrumb a {
  color: var(--naranja);
}

@keyframes animationh1 {
  0% {
    width: 0%;
  }
  100% {
    width: 10%;
  }
}

.ecm_list-products .header-block-recipes .title {
  width: 70%;
}
@media (max-width: 767px) {
    .ecm_list-products .header-block-recipes .title {
      width: 100%;
    }
}

.ecm_list-products .header-block-recipes h1 {
  margin: 30px 0px !important;
  position: relative;
}

.ecm_list-products .header-block-recipes h1::after {
    display: none;
  content: "";
  height: 8%;
  width: 0%;
  background-color: var(--bc-1);
  position: absolute;
  bottom: -15px;
  left: -15px;
  -webkit-transition: ease-in-out;
  transition: ease-in-out;
  -webkit-animation-name: animationh1;
          animation-name: animationh1;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@media (max-width: 767px) {
  .ecm_list-products .header-block-recipes h1::after {
    height: 10%;
  }
}

.ecm_list-products .header-block-recipes .top-block-recipes {
  position: relative;
}

.ecm_list-products .header-block-recipes .top-block-recipes .bg-image {
  z-index: 0 !important;
}

@media (max-width: 767px) {
  .ecm_list-products .header-block-recipes .top-block-recipes .bg-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    display: none;
  }
}

.ecm_list-products .header-block-recipes .top-block-recipes .bg-image img {
  position: absolute;
  right: 0;
  width: 300px;
}

@media (max-width: 767px) {
  .ecm_list-products .header-block-recipes .top-block-recipes .bg-image img {
    width: 100px !important;
  }
}

.ecm_list-products .header-block-recipes .top-block-recipes .breadcrumbs .content {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
}

.ecm_list-products .header-block-recipes .finder.ecm {
  width: 100%;
}

.ecm_list-products .home-news {
  padding: var(--space-xl) 0;
}

.ecm_list-products .home-news .slider__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.ecm_list-products .home-news .slider__items .page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  gap: 20px;
  gap: 20px;
}

@media (max-width: 767px) {
  .ecm_list-products .home-news .slider__items .page {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.ecm_list-products .home-news .slider__items .page .items__item {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 calc(33% - 20px);
          flex: 1 0 calc(33% - 20px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 400px;
  z-index: 2;
  position: relative;
}

.ecm_list-products .home-news .slider__items .page .items__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  flex-direction: column;
  width: 100%;
  background-color: var(--light-grey);
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}

.ecm_list-products .home-news .slider__items .page .items__item a:hover::after {
  background: rgba(0, 0, 0, 0);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.ecm_list-products .home-news .slider__items .page .items__item a:hover .item__content {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.ecm_list-products .home-news .slider__items .page .items__item a:hover .item__button {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.ecm_list-products .home-news .slider__items .page .items__item a:hover .item__image {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.ecm_list-products .home-news .slider__items .page .items__item a::after {
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(80, 80, 79, 0.5);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.ecm_list-products .home-news .slider__items .page .items__item a .item__image {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-size: cover;
  background-position: center;
}

.ecm_list-products .home-news .slider__items .page .items__item a .item__content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 40px 40px 10px 40px;
  position: relative;
  overflow: hidden;
  gap: 10px;
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.ecm_list-products .home-news .slider__items .page .items__item a .item__content .content__title {
  z-index: 1;
  text-align: center;
}

.ecm_list-products .home-news .slider__items .page .items__item a .item__content .content__title span {
  color: white;
  font-size: 2.5rem;
  font-family: var(--degular);
  font-weight: 800;
}

.ecm_list-products .home-news .slider__items .page .items__item a .item__content .content__date {
  z-index: 1;
  text-align: center;
}

.ecm_list-products .home-news .slider__items .page .items__item a .item__content .content__date span {
  color: white;
  font-family: 'Degular';
  font-size: 1.8rem;
  font-style: italic;
  font-weight: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.ecm_list-products .home-news .slider__items .page .items__item a .item__button {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-bottom: 10px;
  z-index: 1;
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.ecm_list-products .home-news .slider__items .page .items__item a .item__button .button {
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid white;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.ecm_list-products .home-news .slider__items .page .items__item a .item__button .button i {
  color: white;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media (min-width: 1200px) and (max-width: 1600px) {
  .ecm_list-products .home-news .slider__items .page .items__item {
    height: 250px;
  }
}

@media (max-width: 767px) {
  .ecm_list-products .home-news .slider__items .page .items__item {
    -ms-flex-preferred-size: 300px;
        flex-basis: 300px;
  }
}

.ecm_list-products .content-product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
}

@media (max-width: 767px) {
  .ecm_list-products .content-product {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.ecm_list-products .content-product .left {
  width: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 50px 0 0;
}

@media (max-width: 767px) {
  .ecm_list-products .content-product .left {
    width: 100%;
    padding-right: 0;
  }
}

.ecm_list-products .content-product .left .gama h2 {
  padding: 10px 0;
  margin: 15px 0;
}

.ecm_list-products .content-product .left .gama .piezas-tabla {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  background: white;
  padding: 10px;
}

.ecm_list-products .content-product .left .gama .piezas-tabla .subproduct.tabla {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  padding: 0;
}

@media (max-width: 767px) {
  .ecm_list-products .content-product .left .gama .piezas-tabla .subproduct.tabla {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.ecm_list-products .content-product .left .gama .piezas-tabla .subproduct.tabla.active {
  padding: 20px 0;
}

.ecm_list-products .content-product .left .gama .piezas-tabla .subproduct.tabla .subproduct__image {
  width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  .ecm_list-products .content-product .left .gama .piezas-tabla .subproduct.tabla .subproduct__image {
    width: 100%;
  }
}

.ecm_list-products .content-product .left .gama .piezas-tabla .subproduct.tabla .subproduct__table {
  width: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 767px) {
  .ecm_list-products .content-product .left .gama .piezas-tabla .subproduct.tabla .subproduct__table {
    width: 100%;
    overflow-x: auto;
  }
}

.ecm_list-products .content-product .left .gama .piezas-tabla .subproduct.tabla .subproduct__table p {
  font-size: 2rem;
  font-weight: bold;
  padding: 10px 0;
}

.ecm_list-products .content-product .left .gama .piezas-tabla .subproduct.tabla .subproduct__table table tbody {
  gap: 10px;
}

.ecm_list-products .content-product .left .gama .piezas-tabla .subproduct.tabla .subproduct__table table tbody tr:first-child {
  color: var(--bc-1);
  border-top: 2px solid var(--bc-1);
  border-bottom: 2px solid var(--bc-1);
}

.ecm_list-products .content-product .left .gama .piezas-tabla .subproduct.tabla .subproduct__table table tbody tr td,
.ecm_list-products .content-product .left .gama .piezas-tabla .subproduct.tabla .subproduct__table table tbody tr th {
  text-align: center;
  padding: 10px 0;
}

.ecm_list-products .content-product .left .gama .piezas-tabla .subproduct.tabla .subproduct__table table tbody tr:last-child {
  border-bottom: 2px solid var(--bc-1);
}

.ecm_list-products .content-product .left .piezas {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    background: white;
    padding: 10px;
}

@media (max-width: 767px) {
  .ecm_list-products .content-product .left .piezas {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

.ecm_list-products .content-product .left .piezas .subproduct {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  height: 200px;
}

.ecm_list-products .content-product .left .piezas .subproduct:hover .subproduct__name .button-plus {
  background-color: var(--bc-1);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.ecm_list-products .content-product .left .piezas .subproduct:hover .subproduct__name .button-plus i {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  color: white;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.ecm_list-products .content-product .left .piezas .subproduct .subproduct__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 70%;
  width: 100%;
}

.ecm_list-products .content-product .left .piezas .subproduct .subproduct__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 30%;
  width: 100%;
  background: var(--beige);
  padding: 0px 10px;
}

.ecm_list-products .content-product .left .piezas .subproduct .subproduct__name .button-plus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--bc-1);
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.ecm_list-products .content-product .left .piezas .subproduct .subproduct__name .button-plus i {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.ecm_list-products .right {
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 50px, 30px;
  gap: 30px;
}

@media (max-width: 767px) {
  .ecm_list-products .right {
    width: 100%;
    padding-top: 50px;
  }
}

.ecm_list-products .right .details,
.ecm_list-products .right .downloads {
  background-color: var(--light-grey);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.ecm_list-products .right .details {
  padding: 50px;
}

.ecm_list-products .right .details p {
  font-size: 2rem !important;
  font-weight: bold;
  padding: 10px 0;
}

.ecm_list-products .right .details ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.ecm_list-products .right .downloads {
  padding: 30px;
}

.ecm_list-products .right .downloads hr {
  height: 1px;
}

.ecm_list-products .right .downloads h2 {
  font-size: 1.7rem;
  font-weight: bold;
  padding: 10px 0;
  width: 100%;
  border-bottom: 1px solid var(--bc-1);
}

.ecm_list-products .right .downloads .download {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.ecm_list-products .right .downloads .download .image {
  width: 30%;
}

.ecm_list-products .right .downloads .download .text {
  width: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
}

.ecm_list-products .right .downloads .download .text p {
  font-weight: bold;
}

.ecm_list-products .right .downloads .download .text span {
  font-style: italic;
}

.ecm_list-products .product-special {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  padding: 50px 0;
}

.ecm_list-products .product-special iframe {
  width: 100%;
}

@media (max-width: 767px) {
  .ecm_list-products .product-special iframe {
    height: 200px;
  }
}

.ecm_list-products .product-special .boro-features-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.ecm_list-products .product-special .product-subproducts-container {
  padding-top: 50px;
}

.ecm_list-products .product-special .product-subproducts-container .features-title {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.ecm_list-products .product-special .product-subproducts-container .features-title h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 2rem;
  margin-bottom: 5px;
  width: 100%;
  text-transform: uppercase;
  font-weight: bold;
}

.ecm_list-products .product-special .product-subproducts-container .features-title h2::before {
  content: '';
  display: inline-block;
  border-top: 1px solid #000000;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin: 12px 20px 12px 0;
}

.ecm_list-products .product-special .product-subproducts-container .features-title h2::after {
  content: '';
  display: inline-block;
  border-top: 1px solid #000000;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin: 12px 0 12px 20px;
}

.ecm_list-products .product-special .product-shape {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 50px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.ecm_list-products .product-special .product-subproduct {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
      flex-direction: column-reverse;
}

.ecm_list-products .product-special .product-subproduct-name {
  text-align: center;
  margin: 10px;
  height: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.ecm_list-products .product-special .product-subproduct-name h3 {
  font-weight: bold;
  margin-bottom: 10px;
}

.ecm_list-products .product-special .product-subproduct-icon {
  text-align: center;
  margin: 10px;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ecm_list-products .product-special .product-color {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 50px;
  margin-top: 50px;
}

.ecm_list-products .product-special .product-color .sub-color {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 20px;
}

.ecm_list-products .product-special .product-color .sub-color .product-subproduct-name {
  height: auto !important;
}

.ecm_list-products .product-special .product-color .sub-color .black {
  background: #25282A;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  border-radius: 50%;
}

.ecm_list-products .product-special .product-color .sub-color .dark-gray {
  background: #545859;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  border-radius: 50%;
}

.ecm_list-products .product-special .product-color .sub-color .light-gray {
  background: #898D8D;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  border-radius: 50%;
}

.ecm_list-products .product-special .product-color .sub-color .red {
  background: #9B2242;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  border-radius: 50%;
}

.ecm_list-products .product-special .product-color .sub-color .blue {
  background: #2E5665;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  border-radius: 50%;
}

.ecm_list-products .product-special .product-color .sub-color .green {
  background: #516236;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  border-radius: 50%;
}

.ecm_list-products .product-special .product-color .sub-color .terracota {
  background: #C06958;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  border-radius: 50%;
}

.ecm_list-products .product-special .product-color .sub-color .otros img {
  width: 100px;
  height: 100px;
}

.loader-products {
  display: none;
  position: absolute;
  height: 100%;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: white;
  z-index: 2;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}

.loader-products.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}

.loader-products .loader-37 {
  border-right: 0.1em solid currentcolor;
  border-radius: 100%;
  -webkit-animation: loader-37 800ms linear infinite;
          animation: loader-37 800ms linear infinite;
}

.loader-products .loader-37:before, .loader-products .loader-37:after {
  content: "";
  width: 4em;
  height: 4em;
  display: block;
  position: absolute;
  top: calc(50% - 1.8em);
  left: calc(50% - 1.8em);
  border-left: 0.18em solid var(--bc-1);
  border-radius: 100%;
  animation: loader-37 400ms linear infinite reverse;
}

.loader-products .loader-37:after {
  width: 3.36em;
  height: 3.36em;
  top: calc(50% - 1.6em);
  left: calc(50% - 1.6em);
  border: 0;
  border-right: 0.15em solid var(--bc-1);
  -webkit-animation: none;
          animation: none;
}

@-webkit-keyframes loader-37 {
  from {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  to {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

@keyframes loader-37 {
  from {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  to {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

.products-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.products-list .loader-products {
  opacity: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: white;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.products-list .loader-products.active {
  opacity: 1;
  z-index: 3;
}

.products-list .loader-products .loader-37 {
  border-right: 0.1em solid currentcolor;
  border-radius: 100%;
  -webkit-animation: loader-37 800ms linear infinite;
          animation: loader-37 800ms linear infinite;
}

.products-list .loader-products .loader-37:before, .products-list .loader-products .loader-37:after {
  content: "";
  width: 4em;
  height: 4em;
  display: block;
  position: absolute;
  top: calc(50% - 1.8em);
  left: calc(50% - 1.8em);
  border-left: 0.18em solid var(--bc-1);
  border-radius: 100%;
  animation: loader-37 400ms linear infinite reverse;
}

.products-list .loader-products .loader-37:after {
  width: 3.36em;
  height: 3.36em;
  top: calc(50% - 1.6em);
  left: calc(50% - 1.6em);
  border: 0;
  border-right: 0.15em solid var(--bc-1);
  -webkit-animation: none;
          animation: none;
}

@keyframes loader-37 {
  from {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  to {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

.products-list .content .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
}

.products-list .content .title h3::after {
  content: "";
  height: 8%;
  width: 8%;
  background-color: #50504f;
  position: absolute;
  bottom: -20px;
  left: 0px;
}

.products-list .content .products {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding: 50px 0px;
  z-index: 1;
}

.products-list .content .products .product {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f6f6f6;
}

.products-list .content .products .product .icon {
  width: 40%;
  height: auto;
  padding: 30px;
}

.products-list .content .products .product .title {
  width: 50%;
  padding: 30px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.products-list .content .products .product .title .name {
  color: black;
  font-size: 2rem;
  width: 100%;
  margin: 15px 0px;
}

.products-list .content .products .product .title .excerpt {
  color: var(--bc-1);
  font-size: 1.5rem;
  width: 100%;
  font-weight: normal;
}

@media (min-width: 1200px) and (max-width: 1600px) {
  .products-list .content .products .product .title .excerpt {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    /* number of lines to show */
    -webkit-box-orient: vertical;
  }
}

@media (max-width: 767px) {
  .products-list .content .products .product .title .excerpt {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    /* number of lines to show */
    -webkit-box-orient: vertical;
  }
}

.products-list .content .products .product .button {
  width: 10%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  height: 100%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  cursor: pointer;
}

.products-list .content .products .product .button .arrow {
  width: 5%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: white;
}

.products-list .content .products .product .button .arrow i {
  font-weight: 400;
  opacity: 0;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.products-list .content .products .product:hover .button .arrow {
  background-color: var(--bc-1);
  width: 50%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media (min-width: 1200px) and (max-width: 1600px) {
  .products-list .content .products .product:hover .button .arrow {
    width: 80%;
  }
}

@media (max-width: 767px) {
  .products-list .content .products .product:hover .button .arrow {
    width: 100%;
  }
}

.products-list .content .products .product:hover .button .arrow i {
  opacity: 1;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

@media (max-width: 767px) {
  .products-list .content .products {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
  }
  .products-list .content .products .product {
    width: 100%;
  }
}

.ecm_filter-categories .filters {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[6];
      grid-template-columns: repeat(6, 1fr);
  gap: 50px;
  margin-top: var(--space-l);
}

.ecm_filter-categories .filters.columns--1 {
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
}

.ecm_filter-categories .filters.columns--2 {
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
}

.ecm_filter-categories .filters.columns--3 {
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
}

.ecm_filter-categories .filters.columns--4 {
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
}

.ecm_filter-categories .filters.columns--5 {
  -ms-grid-columns: (1fr)[5];
      grid-template-columns: repeat(5, 1fr);
}

.ecm_filter-categories .filters.columns--6 {
  -ms-grid-columns: (1fr)[6];
      grid-template-columns: repeat(6, 1fr);
}

.ecm_filter-categories .filters .filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.ecm_filter-categories .filters .filter label {
  font-weight: bold;
  margin: 10px 0;
  font-size: 1.5rem;
}

.ecm_filter-categories .filters .filter .select select {
  background-color: #f6f6f6;
  padding: 10px 20px;
  font-size: 1.2rem;
  border-radius: 10px;
  outline: none;
  border: 1px solid transparent;
  width: 100%;
}

@media (max-width: 767px) {
  .ecm_filter-categories .filters {
    -ms-grid-columns: (1fr)[1] !important;
        grid-template-columns: repeat(1, 1fr) !important;
    gap: 10px;
    margin-top: 0;
  }
}

.lens-features {
  background-color: rgba(0, 144, 140, 0.09);
  height: 90%;
  width: 90%;
  top: 0;
  bottom: 0;
  z-index: 0;
  position: absolute;
}

@media (max-width: 767px) {
  .lens-features {
    height: 95%;
    width: 95%;
  }
}

@media (max-width: 767px) {
  .block.product-features {
    -ms-grid-column: 2 !important;
    -ms-grid-column-span: 10 !important;
    grid-column: 2/12 !important;
  }
}

.block.product-features .options {
  padding: 80px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
}

@media (max-width: 767px) {
  .block.product-features .options {
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 50px 0;
  }
}

.block.product-features .options .option {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: var(--space-xl);
  gap: 10px;
}

.block.product-features .options .option:first-child {
  border-right: 1px solid var(--bc-1);
}

@media (max-width: 767px) {
  .block.product-features .options .option:first-child {
    border-right: 0px solid var(--bc-1);
  }
}

@media (max-width: 767px) {
  .block.product-features .options .option {
    width: 100%;
    padding: 5px 0;
  }
}

.block.product-features h3::after {
  content: "";
  height: 5%;
  width: 3%;
  background-color: #50504f;
  position: absolute;
  bottom: -20px;
  left: 0px;
}

.block.product-features .lens {
  display: block !important;
  opacity: 1;
  background-color: rgba(0, 144, 140, 0.09);
  top: -2%;
  bottom: 0;
  width: 145%;
  left: -25%;
  height: 110%;
  z-index: 0;
}

.block.product-related h3::after {
  content: "";
  height: 5%;
  width: 3%;
  background-color: #50504f;
  position: absolute;
  bottom: -20px;
  left: 0px;
}

@media (max-width: 767px) {
  .block.product-related h3::after {
    height: 10%;
    width: 8%;
  }
}

.block.product-related .lens {
  display: block !important;
  opacity: 1;
  background-color: rgba(0, 144, 140, 0.09);
  top: auto;
  bottom: 0%;
  width: 90%;
  left: 0;
  height: 93%;
  z-index: 0;
}

.block.product-related .related-products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  margin: var(--space-xxl) 0 var(--space-xl) 0;
}

@media (max-width: 767px) {
  .block.product-related .related-products {
    margin: var(--space-xl) 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}

.block.product-related .related-products .rproduct {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  gap: 20px;
}

.block.product-related .related-products .rproduct:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.block.product-related .related-products .rproduct:hover .image .blob-related {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.block.product-related .related-products .rproduct .image {
  height: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: visible;
}

.block.product-related .related-products .rproduct .image img {
  height: auto;
  width: 200px;
  z-index: 2;
}

.block.product-related .related-products .rproduct .image .blob-related {
  position: absolute;
  z-index: 1;
  -webkit-transform: scale(0);
          transform: scale(0);
  width: 250px !important;
  max-width: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.block.product-related .related-products .rproduct .name {
  height: 50%;
  color: black;
}

@media (max-width: 767px) {
  .block.product-attachs {
    -ms-grid-column: 2 !important;
    -ms-grid-column-span: 10 !important;
    grid-column: 2/12 !important;
  }
}

.block.product-attachs .downloads {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  .block.product-attachs .downloads {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}

.block.product-attachs .downloads .left {
  width: 40%;
  height: 100%;
}

@media (max-width: 767px) {
  .block.product-attachs .downloads .left {
    width: 100%;
  }
}

.block.product-attachs .downloads .left h3 {
  color: #50504f;
}

.block.product-attachs .downloads .left h3::after {
  content: "";
  height: 8%;
  width: 8%;
  background-color: var(--bc-1);
  position: absolute;
  bottom: -20px;
  left: 0px;
}

@media (max-width: 767px) {
  .block.product-attachs .downloads .left h3::after {
    height: 10%;
  }
}

.block.product-attachs .downloads .right {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 50px;
}

@media (max-width: 767px) {
  .block.product-attachs .downloads .right {
    gap: 30px;
  }
}

.block.product-attachs .downloads .right .download:hover .icon img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.block.product-attachs .downloads .right .download {
  width: 200px;
  height: 200px;
  background-color: var(--bc-1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 767px) {
  .block.product-attachs .downloads .right .download {
    width: 170px;
    height: 170px;
  }
}

.block.product-attachs .downloads .right .download .icon {
  height: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-left: 30px;
}

.block.product-attachs .downloads .right .download .icon img {
  width: 50px;
  height: auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.block.product-attachs .downloads .right .download .text {
  height: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-left: 30px;
}

.block.product-attachs .downloads .right .download .text * {
  color: white;
  font-size: 2.5rem;
}

/* -------------------------- */
/* ----- ENTITY DESTACADOS EN PORTADA LAYOUT ----- */
/* -------------------------- */
.block-gallery {
  position: unset !important;
}

.block-gallery .content {
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          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%;
  -webkit-transform: translate(0%, -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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 500ms ease-out .1s;
  transition: all 500ms ease-out .1s;
}

.block-gallery .content .carrousel-gallery__slider .slider__items .items__item .item__image {
  width: 360px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 5px;
  z-index: 2;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 360px;
          flex: 0 0 360px;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

.block-gallery .content .carrousel-gallery__slider .slider__items .items__item .item__image:hover {
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  -webkit-transform: scale(1.1);
          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;
  -webkit-transition: all 0.75s ease-in-out 0s;
  transition: all 0.75s ease-in-out 0s;
}

.block-gallery .content .carrousel-gallery__slider .slider__items .items__item .item__content {
  background: white;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          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 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 50px;
}

@media (max-width: 767px) {
  .block-gallery .content .carrousel-gallery__slider .slider__controller {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            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;
}

.block-gallery .content .carrousel-gallery__slider .slider__controller .controller__line {
  width: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          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;
  -webkit-transform: translate(0px, -50%);
          transform: translate(0px, -50%);
  height: 4px;
  background: var(--bc-2);
  -webkit-transition: all 500ms ease-out .1s;
  transition: all 500ms ease-out .1s;
}

.block-gallery .content .carrousel-gallery__slider .slider__controller .controller__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: 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: -webkit-box;
  display: -ms-flexbox;
  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;
  -webkit-transition: all 0.15s cubic-bezier(0, 0, 0, 0.54);
  transition: all 0.15s cubic-bezier(0, 0, 0, 0.54);
  -webkit-transform: scaleX(0);
          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 {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

/* -------------------------- */
/* ---------------------------------- */
/* ---------------------------------- */
/* ------ PAGE SPECIFIC STYLES ------ */
/* ---------------------------------- */
/* -------------------------- */
/* ----- BLOCKS LAYOUT ------ */
/* -------------------------- */
.blocks {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  background-color: #F5F5EC;
}

.blocks .grid__item .block {
  padding: var(--space-xl) 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  height: 100%;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .blocks .grid__item .block {
    min-height: 0;
  }
}

@media (max-width: 767px) {
  .blocks .grid__item .block {
    padding: var(--space-m) 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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

@media (max-width: 767px) {
  .blocks .grid__item .block .content {
    padding: 0;
  }
}

.blocks .grid__item .block .content.items-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.blocks .grid__item .block .content.items-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.blocks .grid__item .block .content.items-end {
  -webkit-box-pack: end;
      -ms-flex-pack: 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;
  background-position: center center;
}

.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;
  }
}

.top--home .blocks .grid__item .block.home-compromiso .block-text-image__content {
    background: var(--turquesa);
    padding: 20px;
}

.top.top--home.top--medium {
    display: none !important;
}

.top--home .blocks .grid__item .block.home-compromiso .block-text-image__content .button-block .button p span.text {
    background-color: #1c5e63;
    border-color: #1c5e63;
    transition: all .3s ease-out;
}
.top--home .blocks .grid__item .block.home-compromiso .block-text-image__content .button-block .button p {
    border-color: #1c5e63;
}
.top--home .blocks .grid__item .block.home-compromiso .block-text-image__content .button-block .button:hover,
.top--home .blocks .grid__item .block.home-compromiso .block-text-image__content .button-block .button:hover span.text {
    color: white;
    opacity: .9;
}
@media (min-width: 1200px) {
    .top--home .blocks .grid__item .block.home-compromiso .block-text-image__content {
        padding: 20px 4.5vw;
    }
}

.blocks .grid__item .block.bg--height-1-2 .block__bg {
  -webkit-transform: scaleY(1.2);
          transform: scaleY(1.2);
  -webkit-transform-origin: top;
          transform-origin: top;
}

@media (min-width: 1100px) {
  .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 {
    -webkit-transform: scaleY(2);
            transform: scaleY(2);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  .blocks .grid__item .block.bg--height-1-5 .block__bg {
    -webkit-transform: scaleY(1.5);
            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: -webkit-fit-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: 400px) {
  .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: 400px) {
  .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: 400px) {
  .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: 1100px) {
  .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: 1100px) {
  .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: 1100px) and (max-width: 1600px) {
  .blocks .grid__item .block--moved-top-2xxl-hd-laptop .content {
    margin-top: calc(-2 * var(--space-xxl));
  }
}

@media (min-width: 1100px) and (max-width: 1300px) {
  .blocks .grid__item .block--moved-top-xxl-laptop .content {
    margin-top: calc(-1 * var(--space-xxl));
  }
}

@media (min-width: 1100px) {
  .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;
  }
}

.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 {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          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: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
      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: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 1fr;
      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);
  -ms-grid-column: 2 !important;
      grid-column-start: 2 !important;
  -ms-grid-row: 1;
      grid-row-start: 1;
}

.blocks .grid__item .block.articles_small_four .content {
  -ms-grid-columns: 1fr 2fr;
      grid-template-columns: 1fr 2fr;
}

.blocks .grid__item .block.articles_small_four .content .text {
  padding-right: var(--space-xl);
  -ms-grid-column: 1 !important;
      grid-column-start: 1 !important;
  -ms-grid-row: 1;
      grid-row-start: 1;
}

@media (max-width: 768px) {
  .blocks .grid__item .block.articles_small_six .content, .blocks .grid__item .block.articles_small_four .content {
    -ms-grid-columns: 1fr;
        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;
    -ms-grid-column: 1 !important;
        grid-column-start: 1 !important;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .blocks .grid__item:first-child .block {
    margin: 0 !important;
    padding: 0 !important;
  }
}

@media (max-width: 767px) {
  .blocks .grid__item:first-child .block .content {
    margin: 0 !important;
    padding: 0 !important;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .blocks .grid__item:first-child .block .content {
    padding: 0 !important;
    margin: 0 !important;
  }
}

.blocks--article {
  position: relative;
  padding-top: var(--space-l);
}

.blocks--article .title-article {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[10];
      grid-template-columns: repeat(10, 1fr);
  -ms-grid-column-span: 6;
      grid-column-end: span 6;
  -ms-grid-row-span: 1;
      grid-row-end: span 1;
  padding: 0;
}

.blocks--article .title-article .title {
  -ms-grid-column: 3;
  -ms-grid-column-span: 6;
  grid-column: 2/10;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

@media (max-width: 767px) {
.blocks--article .title-article {
  padding: 0 4%;
}
  .blocks--article .title-article .title {
    -ms-grid-column: 1;
    -ms-grid-column-span: 12;
    grid-column: 1/13;
    padding: 0 4%;
  }
}

.blocks--article .title-article .title h1 {
  width: 100%;
  color: black;
  font-size: 4rem;
  line-height: 1.1;
}

.blocks--article .title-article .title h1 span {
  color: black !important;
}

.blocks--article .title-article .title h3 {
  font-size: 2rem;
  line-height: 3rem;
}

.blocks--article .title-article .title hr {
  width: 100%;
  background: var(--bc-1);
  border: 1px solid var(--bc-1);
  display: none;
}

.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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px;
}

@media (max-width: 500px) {
  .blocks--article .social-icons {
    right: 0;
  }
}

.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;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.blocks--article .social-icons a:hover {
  color: var(--bc-2);
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.blocks--article .block.block-text-image iframe {
  width: 100%;
  height: 500px;
}

.blocks--article .block.block-text-image .content {
  max-width: 100%;
  margin-left: 0%;
}

@media (max-width: 768px) {
  .blocks--article .block.block-text-image .content {
    max-width: 100%;
    margin-left: 0;
  }
}

.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.blocks--article .block.block-text-image.bg--transparent.wrapped-from-1.wrapped-to-13 {
    grid-column-end: 11 !important;
    grid-column-start: 3 !important;
}


.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: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  position: relative;
}

.grid__item .block.wrapped-from-1 {
  -ms-grid-column: 1;
      grid-column-start: 1;
}

.grid__item .block.wrapped-from-2 {
  -ms-grid-column: 2;
      grid-column-start: 2;
}

.grid__item .block.wrapped-from-3 {
  -ms-grid-column: 2;
      grid-column-start: 2;
}
@media (max-width: 1200px) {
  .grid__item .block.wrapped-from-3 {
    -ms-grid-column: 2;
        grid-column-start: 2;
  }
}
.grid__item .block.wrapped-from-4 {
  -ms-grid-column: 4;
      grid-column-start: 4;
}

.grid__item .block.wrapped-from-5 {
  -ms-grid-column: 5;
      grid-column-start: 5;
}

.grid__item .block.wrapped-from-6 {
  -ms-grid-column: 6;
      grid-column-start: 6;
}

.grid__item .block.wrapped-from-7 {
  -ms-grid-column: 7;
      grid-column-start: 7;
}

.grid__item .block.wrapped-from-8 {
  -ms-grid-column: 8;
      grid-column-start: 8;
}

.grid__item .block.wrapped-from-9 {
  -ms-grid-column: 9;
      grid-column-start: 9;
}

.grid__item .block.wrapped-from-10 {
  -ms-grid-column: 10;
      grid-column-start: 10;
}

.grid__item .block.wrapped-from-11 {
  -ms-grid-column: 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: 12;
}
@media (max-width: 1200px) {
  .grid__item .block.wrapped-to-11 {
    grid-column-end: 12;
  }
  .top--inner .top__slider {
      /*-ms-grid-column: 3;
      -ms-grid-column-span: 8;*/
      grid-column: 2/12;
      position: relative;
  }
}
.grid__item .block.wrapped-to-12 {
  grid-column-end: 12;
}

.grid__item .block.wrapped-to-13 {
  grid-column-end: 13;
}

.grid__item .block.wrapped-to-12 {
  grid-column-end: 12;
}

.top.top--home.top--medium .grid__item .block.wrapped-to-13 {
  grid-column-end: 12;
}


.carreer-blocks .text p {
  font-size: 1.7rem;
  line-height: 1.7rem;
}

@media (max-width: 767px) {
  .carreer-blocks .block-text-image {
    -ms-grid-column: 2 !important;
    -ms-grid-column-span: 10 !important;
    grid-column: 2/12 !important;
    padding-top: var(--space-xl) !important;
  }
}

#last-item {
  padding: 0 !important;
}

/* -------------------------- */
.loader {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: var(--white);
  z-index: 9999;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.loader.loaded {
  opacity: 0;
}

.loader .wrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.loader .wrapper #cooking {
  position: relative;
  margin: 0 auto;
  top: 0;
  width: 500px;
  height: 450px;
  overflow: hidden;
  margin-top: -150px;
}

.loader .wrapper #cooking .bubble {
  position: absolute;
  border-radius: 100%;
  -webkit-box-shadow: 0 0 0.25vh #df373d;
          box-shadow: 0 0 0.25vh #df373d;
  opacity: 0;
}

.loader .wrapper #cooking .bubble:nth-child(1) {
  margin-top: 2.5vh;
  left: 58%;
  width: 2.5vh;
  height: 2.5vh;
  background-color: #dd2930;
  -webkit-animation: bubble 2s cubic-bezier(0.53, 0.16, 0.39, 0.96) infinite;
          animation: bubble 2s cubic-bezier(0.53, 0.16, 0.39, 0.96) infinite;
}

.loader .wrapper #cooking .bubble:nth-child(2) {
  margin-top: 3vh;
  left: 52%;
  width: 2vh;
  height: 2vh;
  background-color: #d62228;
  -webkit-animation: bubble 2s ease-in-out .35s infinite;
          animation: bubble 2s ease-in-out .35s infinite;
}

.loader .wrapper #cooking .bubble:nth-child(3) {
  margin-top: 1.8vh;
  left: 50%;
  width: 1.5vh;
  height: 1.5vh;
  background-color: #C41F25;
  -webkit-animation: bubble 1.5s cubic-bezier(0.53, 0.16, 0.39, 0.96) 0.55s infinite;
          animation: bubble 1.5s cubic-bezier(0.53, 0.16, 0.39, 0.96) 0.55s infinite;
}

.loader .wrapper #cooking .bubble:nth-child(4) {
  margin-top: 2.7vh;
  left: 56%;
  width: 1.2vh;
  height: 1.2vh;
  background-color: #b71d23;
  -webkit-animation: bubble 1.8s cubic-bezier(0.53, 0.16, 0.39, 0.96) 0.9s infinite;
          animation: bubble 1.8s cubic-bezier(0.53, 0.16, 0.39, 0.96) 0.9s infinite;
}

.loader .wrapper #cooking .bubble:nth-child(5) {
  margin-top: 2.7vh;
  left: 63%;
  width: 1.1vh;
  height: 1.1vh;
  background-color: #aa1b20;
  -webkit-animation: bubble 1.6s ease-in-out 1s infinite;
          animation: bubble 1.6s ease-in-out 1s infinite;
}

.loader .wrapper #cooking #area {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 50%;
  background-color: transparent;
  -webkit-transform-origin: 15% 60%;
          transform-origin: 15% 60%;
  -webkit-animation: flip 2.1s ease-in-out infinite;
          animation: flip 2.1s ease-in-out infinite;
}

.loader .wrapper #cooking #area #sides {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transform-origin: 15% 60%;
          transform-origin: 15% 60%;
  -webkit-animation: switchSide 2.1s ease-in-out infinite;
          animation: switchSide 2.1s ease-in-out infinite;
}

.loader .wrapper #cooking #area #sides #handle {
  position: absolute;
  bottom: 18%;
  right: 80%;
  width: 35%;
  height: 20%;
  background-color: transparent;
  border-top: 1vh solid var(--bc-2);
  border-left: 1vh solid transparent;
  border-radius: 100%;
  -webkit-transform: rotate(20deg) rotateX(0deg) scale(1.3, 0.9);
          transform: rotate(20deg) rotateX(0deg) scale(1.3, 0.9);
  z-index: 1;
}

.loader .wrapper #cooking #area #sides #pan {
  position: absolute;
  bottom: 20%;
  right: 30%;
  width: 50%;
  height: 8%;
  background-color: #C41F25;
  border-radius: 0 0 1.4em 1.4em;
  -webkit-transform-origin: -15% 0;
          transform-origin: -15% 0;
  z-index: 2;
}

.loader .wrapper #cooking #area #pancake {
  position: absolute;
  top: 24%;
  width: 100%;
  height: 100%;
  -webkit-transform: rotateX(85deg);
          transform: rotateX(85deg);
  -webkit-animation: jump 2.1s ease-in-out infinite;
          animation: jump 2.1s ease-in-out infinite;
}

.loader .wrapper #cooking #area #pancake #pastry {
  position: absolute;
  bottom: 26%;
  right: 37%;
  width: 40%;
  height: 45%;
  background-color: #C41F25;
  -webkit-box-shadow: 0 0 3px 0 #C41F25;
          box-shadow: 0 0 3px 0 #C41F25;
  border-radius: 100%;
  -webkit-transform-origin: -20% 0;
          transform-origin: -20% 0;
  -webkit-animation: fly 2.1s ease-in-out infinite;
          animation: fly 2.1s ease-in-out infinite;
}

@-webkit-keyframes jump {
  0% {
    top: 24%;
    -webkit-transform: rotateX(85deg);
            transform: rotateX(85deg);
  }
  25% {
    top: 10%;
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
  }
  50% {
    top: 30%;
    -webkit-transform: rotateX(85deg);
            transform: rotateX(85deg);
  }
  75% {
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
  }
  100% {
    -webkit-transform: rotateX(85deg);
            transform: rotateX(85deg);
  }
}

@keyframes jump {
  0% {
    top: 24%;
    -webkit-transform: rotateX(85deg);
            transform: rotateX(85deg);
  }
  25% {
    top: 10%;
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
  }
  50% {
    top: 30%;
    -webkit-transform: rotateX(85deg);
            transform: rotateX(85deg);
  }
  75% {
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
  }
  100% {
    -webkit-transform: rotateX(85deg);
            transform: rotateX(85deg);
  }
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  5% {
    -webkit-transform: rotate(-27deg);
            transform: rotate(-27deg);
  }
  30%,
  50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  55% {
    -webkit-transform: rotate(27deg);
            transform: rotate(27deg);
  }
  83.3% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

@keyframes flip {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  5% {
    -webkit-transform: rotate(-27deg);
            transform: rotate(-27deg);
  }
  30%,
  50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  55% {
    -webkit-transform: rotate(27deg);
            transform: rotate(27deg);
  }
  83.3% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

@-webkit-keyframes switchSide {
  0% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  50% {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
  }
  100% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
}

@keyframes switchSide {
  0% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  50% {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
  }
  100% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
}

@-webkit-keyframes fly {
  0% {
    bottom: 26%;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  10% {
    bottom: 40%;
  }
  50% {
    bottom: 26%;
    -webkit-transform: rotate(-190deg);
            transform: rotate(-190deg);
  }
  80% {
    bottom: 40%;
  }
  100% {
    bottom: 26%;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

@keyframes fly {
  0% {
    bottom: 26%;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  10% {
    bottom: 40%;
  }
  50% {
    bottom: 26%;
    -webkit-transform: rotate(-190deg);
            transform: rotate(-190deg);
  }
  80% {
    bottom: 40%;
  }
  100% {
    bottom: 26%;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

@-webkit-keyframes bubble {
  0% {
    -webkit-transform: scale(0.15, 0.15);
            transform: scale(0.15, 0.15);
    top: 80%;
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(1.1, 1.1);
            transform: scale(1.1, 1.1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.33, 0.33);
            transform: scale(0.33, 0.33);
    top: 60%;
    opacity: 0;
  }
}

@keyframes bubble {
  0% {
    -webkit-transform: scale(0.15, 0.15);
            transform: scale(0.15, 0.15);
    top: 80%;
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(1.1, 1.1);
            transform: scale(1.1, 1.1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.33, 0.33);
            transform: scale(0.33, 0.33);
    top: 60%;
    opacity: 0;
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    opacity: .25;
  }
  50% {
    -webkit-transform: scale(1.2, 1);
            transform: scale(1.2, 1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    opacity: .25;
  }
}

/* -------------------------- */
/* ----- 404 LAYOUT ----- */
/* -------------------------- */
/* -------------------------- */
#particles-js, #particles-js-right {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.content.not-found {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -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;
}

@-webkit-keyframes spin-one {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-359deg);
    transform: rotate(-359deg);
  }
}

@keyframes spin-one {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-359deg);
    transform: rotate(-359deg);
  }
}

.spin-one {
  -webkit-animation: spin-one 1.5s infinite linear;
  animation: spin-one 1.5s infinite linear;
}

@-webkit-keyframes spin-two {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-359deg);
    transform: rotate(359deg);
  }
}

@keyframes spin-two {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-359deg);
    transform: rotate(359deg);
  }
}

.spin-two {
  -webkit-animation: spin-two 2s infinite linear;
  animation: spin-two 2s infinite linear;
}

.block-gallery {
  padding: 0 !important;
}

.block-gallery .content {
  padding: 0 !important;
  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 {
  -webkit-filter: grayscale(1);
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 50px;
}

@media (max-width: 767px) {
  #resource-slider .slider__controller {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          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;
  -webkit-transform: translate(0px, -50%);
          transform: translate(0px, -50%);
  height: 4px;
  background: var(--bc-2);
  -webkit-transition: all 500ms ease-out .1s;
  transition: all 500ms ease-out .1s;
}

#resource-slider .slider__controller .controller .buttons__slider {
  display: -webkit-box;
  display: -ms-flexbox;
  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;
  -webkit-transform: rotate(-45deg);
          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;
  -webkit-transform: rotate(45deg);
          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 .lens {
  opacity: 1;
  background-color: rgba(47, 47, 46, 0.09);
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

@media (max-width: 767px) {
  .block-form .lens {
    height: 100%;
  }
}

.block-form .content .content--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@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: 70%;
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
}

.block-form .content .flex-content .text {
  width: 30%;
  padding-left: var(--space-l);
  height: auto;
}

@media (max-width: 767px) {
  .block-form .content .flex-content .text {
    padding-left: 0;
    width: 100%;
  }
}

.block-form .content .flex-content .text h3 {
  margin-top: 50px;
  margin-bottom: 35px;
  color: black;
}

.block-form .content .flex-content .text h4.subtitle {
  margin-bottom: 80px;
  color: var(--bc-1);
}

.block-form.block--grid .content .flex-content .form {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  -ms-grid-rows: 1fr 1fr 1fr 1fr 1fr;
      grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
  -webkit-column-gap: 40px;
          column-gap: 40px;
}

@media (max-width: 900px) {
  .block-form.block--grid .content .flex-content .form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.block-form.block--grid .content .flex-content .form .form-block.form-block--textarea {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2 / 3;
  -ms-grid-row: 1;
  -ms-grid-row-span: 4;
  grid-row: 1 / 5;
}

.block-form.block--grid .content .flex-content .form .button-block {
  grid-column-end: 3;
  -ms-grid-column: 1;
      grid-column-start: 1;
}

.block-form.block--grid .content .flex-content .form .button-block.button-block--end {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2 / 3;
  -ms-grid-row: 4;
  -ms-grid-row-span: 1;
  grid-row: 4 / 5;
}

.block-form.block--grid .content .flex-content .form .g-recaptcha {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}

.block-form.block--grid .content .flex-content .form .button-block .button {
  color: white;
}

@media (max-width: 767px) {
  .block-image {
    -ms-grid-column: 1 !important;
    -ms-grid-column-span: 12 !important;
    grid-column: 1/13 !important;
  }
}

.block-image .content .flex-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          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;
  }
}

@media (max-width: 767px) {
  .block-image .content .flex-content .image img {
    height: 100%;
    width: auto;
    max-width: none;
  }
}

.block-map {
  padding: var(--space-xxl) 0 !important;
}

@media (max-width: 767px) {
  .block-map {
    padding: 0 !important;
    -ms-grid-column: 1 !important;
    -ms-grid-column-span: 12 !important;
    grid-column: 1/13 !important;
  }
}

.block-map .content--item {
  height: 600px;
}

@media (max-width: 767px) {
  .block-map .content--item {
    height: 1200px;
  }
}

.block-map .content--item .flex-content {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  .block-map .content--item .flex-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.block-map .content--item .flex-content .text {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: var(--space-xl);
  z-index: 2;
}

@media (max-width: 767px) {
  .block-map .content--item .flex-content .text {
    width: 100%;
  }
}

.block-map .content--item .flex-content .text .continents {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  gap: var(--space-m);
}

.block-map .content--item .flex-content .text .continents .continent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  cursor: pointer;
}

.block-map .content--item .flex-content .text .continents .continent.active svg path {
  fill: var(--bc-1);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.block-map .content--item .flex-content .text .continents .continent.active p {
  color: var(--bc-1);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.block-map .content--item .flex-content .text .continents .continent:hover svg path {
  fill: var(--bc-1);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.block-map .content--item .flex-content .text .continents .continent:hover p {
  color: var(--bc-1);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.block-map .content--item .flex-content .text .continents .continent img {
  width: 30%;
  height: auto;
}

.block-map .content--item .flex-content .text .continents .continent p {
  width: 70%;
  height: auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.block-map .content--item .flex-content .text .continents .continent svg path {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.block-map .content--item .flex-content .map-multi {
  width: 50%;
  height: 100%;
  z-index: 2;
}

@media (max-width: 767px) {
  .block-map .content--item .flex-content .map-multi {
    width: 90%;
    margin-left: 10%;
  }
}

@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;
  }
}

@media (max-width: 767px) {
  .block-multiple.featured {
    padding: 0 !important;
  }
}

.block-multiple h3 {
  line-height: 1;
  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: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
}

.block-multiple .content .flex-content .text {
  width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  .block-multiple .content .flex-content .text .title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 767px) {
  .block-multiple.mosaic {
    -ms-grid-column: 2 !important;
    -ms-grid-column-span: 10 !important;
    grid-column: 2/12 !important;
  }
  .block-multiple.mosaic .text .title img {
    display: none !important;
  }
}

.block-multiple.mosaic h3 {
  margin: 30px 0px !important;
}

.block-multiple.mosaic h3::after {
  content: "";
  height: 8%;
  width: 0%;
  background-color: var(--bc-1);
  position: absolute;
  bottom: -15px;
  left: -15px;
  -webkit-transition: ease-in-out;
  transition: ease-in-out;
  -webkit-animation-name: example;
          animation-name: example;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@media (max-width: 767px) {
  .block-multiple.mosaic h3::after {
    height: 10%;
  }
}

.block-multiple.featured h3 {
  margin: 30px 0px !important;
}

.block-multiple.featured h3::after {
  content: "";
  height: 8%;
  width: 0%;
  background-color: var(--bc-1);
  position: absolute;
  bottom: -15px;
  left: 40%;
  -webkit-transition: ease-in-out;
  transition: ease-in-out;
  -webkit-animation-name: example;
          animation-name: example;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@media (max-width: 767px) {
  .block-multiple.featured h3::after {
    height: 10%;
  }
}

@media (max-width: 767px) {
  .block-multiple.mosaic-help {
    -ms-grid-column: 1 !important;
    -ms-grid-column-span: 11 !important;
    grid-column: 1/12 !important;
  }
}

.block-multiple.mosaic-help .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.block-multiple.mosaic-help h3 {
  margin: 30px 0px !important;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.block-multiple.mosaic-help h3::after {
  content: "";
  height: 8%;
  width: 0%;
  background-color: var(--bc-1);
  position: absolute;
  bottom: -15px;
  left: -15px;
  -webkit-transition: ease-in-out;
  transition: ease-in-out;
  -webkit-animation-name: example3;
          animation-name: example3;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@media (max-width: 767px) {
  .block-multiple.mosaic-help h3::after {
    height: 10%;
  }
}

@-webkit-keyframes example3 {
  0% {
    width: 0%;
  }
  100% {
    width: calc(100% + 30px);
  }
}

@keyframes example3 {
  0% {
    width: 0%;
  }
  100% {
    width: calc(100% + 30px);
  }
}

@media (max-width: 767px) {
  .block-multiple.mosaic-faq {
    -ms-grid-column: 2 !important;
    -ms-grid-column-span: 10 !important;
    grid-column: 2/12 !important;
  }
  .block-multiple.mosaic-faq .text h2 {
    font-size: 3rem !important;
    line-height: 3rem;
  }
}

@media (max-width: 767px) {
  .block-multiple.mosaic-download {
    -ms-grid-column: 2 !important;
    -ms-grid-column-span: 10 !important;
    grid-column: 2/12 !important;
  }
  .block-multiple.mosaic-download .text h2 {
    font-size: 3rem !important;
    line-height: 3rem;
  }
}

@media (max-width: 767px) {
  .block-multiple.mosaic-quality {
    padding-top: 100px !important;
  }
  .block-multiple.mosaic-quality .text {
    width: 85% !important;
    margin: auto;
  }
}

.block-multiple.mosaic-faq {
  padding-bottom: 50px !important;
}

.block-multiple.mosaic-faq .text h2 {
  position: relative;
  font-size: 4rem;
  padding: 50px 0;
}

.block-multiple.mosaic-faq .text h2::after {
  content: "";
  height: 4%;
  width: 4%;
  background-color: #50504f;
  position: absolute;
  bottom: 32px;
  left: 0px;
}

.block-multiple.mosaic-faq .multiple--mosaic-faq {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}

.block-multiple.mosaic-faq .multiple--mosaic-faq .multiple__item--faq {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.block-multiple.mosaic-faq .multiple--mosaic-faq .multiple__item--faq .content-faq {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  background-color: #f6f6f6;
}

.block-multiple.mosaic-faq .multiple--mosaic-faq .multiple__item--faq .content-faq .title {
  width: 90%;
  padding: 10px 30px;
}

@media (max-width: 767px) {
  .block-multiple.mosaic-faq .multiple--mosaic-faq .multiple__item--faq .content-faq .title {
    width: 85%;
  }
}

.block-multiple.mosaic-faq .multiple--mosaic-faq .multiple__item--faq .content-faq .title span {
  font-weight: bold;
  font-size: 2.5rem;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .block-multiple.mosaic-faq .multiple--mosaic-faq .multiple__item--faq .content-faq .title span {
    font-size: 2rem;
  }
}

.block-multiple.mosaic-faq .multiple--mosaic-faq .multiple__item--faq .content-faq .button {
  width: 10%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  height: auto;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  cursor: pointer;
  position: relative;
}

@media (max-width: 767px) {
  .block-multiple.mosaic-faq .multiple--mosaic-faq .multiple__item--faq .content-faq .button {
    width: 15%;
  }
}

.block-multiple.mosaic-faq .multiple--mosaic-faq .multiple__item--faq .content-faq .button .plus {
  position: absolute;
  height: 100%;
  width: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
  color: var(--bc-1);
  background-color: var(--bc-1);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.block-multiple.mosaic-faq .multiple--mosaic-faq .multiple__item--faq .content-faq .button .plus i {
  padding-right: 25px;
  font-weight: 400;
  opacity: 1;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

@media (max-width: 767px) {
  .block-multiple.mosaic-faq .multiple--mosaic-faq .multiple__item--faq .content-faq .button .plus i {
    padding-right: 8px;
  }
}

@media (min-width: 1200px) and (max-width: 1600px) {
  .block-multiple.mosaic-faq .multiple--mosaic-faq .multiple__item--faq .content-faq .button .plus i {
    padding-right: 15px;
  }
}

.block-multiple.mosaic-faq .multiple--mosaic-faq .multiple__item--faq .content-faq .button .arrow {
  z-index: 2;
  background-color: var(--bc-1);
  width: 5%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: white;
}

.block-multiple.mosaic-faq .multiple--mosaic-faq .multiple__item--faq .content-faq .button .arrow i {
  font-weight: 400;
  opacity: 0;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.block-multiple.mosaic-faq .multiple--mosaic-faq .multiple__item--faq .content-alternate-faq {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-height: 0px;
  overflow: hidden;
  padding: 0px;
}

.block-multiple.mosaic-faq .multiple--mosaic-faq .multiple__item--faq .content-alternate-faq p {
  font-size: 1.7rem;
  color: #555555;
  padding: 10px 30px;
}

.block-multiple.mosaic-faq .multiple--mosaic-faq .multiple__item--faq.active .content-alternate-faq {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.block-multiple.mosaic-faq .multiple--mosaic-faq .multiple__item--faq.active .content-alternate-faq p {
  padding: 10px 30px;
}

.block-multiple.mosaic-faq .multiple--mosaic-faq .multiple__item--faq.active .content-faq .button .arrow {
  background-color: var(--bc-1);
  width: 50%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.block-multiple.mosaic-faq .multiple--mosaic-faq .multiple__item--faq.active .content-faq .button .arrow i {
  opacity: 1;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.block-multiple.mosaic-faq .multiple--mosaic-faq .multiple__item--faq:hover .content-faq .button .plus {
  background-color: var(--bc-1);
  width: 50%;
  color: white;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.block-multiple.mosaic-downloads .text h3 {
  padding: 20px 0;
  margin: 30px 0;
}

.block-multiple.mosaic-downloads .text h3::after {
  content: "";
  height: 8%;
  width: 0%;
  background-color: #50504f;
  position: absolute;
  bottom: 0px;
  left: 0px;
  -webkit-transition: ease-in-out;
  transition: ease-in-out;
  -webkit-animation-name: example;
          animation-name: example;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@media (max-width: 767px) {
  .block-multiple.mosaic-downloads .text h3::after {
    height: 10%;
  }
}

.block-multiple.mosaic-downloads .multiple--mosaic-downloads {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  gap: 0;
}

.block-multiple.mosaic-downloads .multiple--mosaic-downloads .contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  margin: 50px 0;
  padding: 20px;
  border-bottom: 1px solid var(--bc-1);
  border-top: 1px solid var(--bc-1);
}

.block-multiple.mosaic-downloads .multiple--mosaic-downloads .contact .title {
  font-weight: bold;
}

.block-multiple.mosaic-downloads .multiple--mosaic-downloads .multiple__item--download .content-download {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
}

.block-multiple.mosaic-downloads .multiple--mosaic-downloads .multiple__item--download .content-download .content-alternate-download {
  border-right: 1px solid var(--bc-1);
  padding: 20px;
  width: 15%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.block-multiple.mosaic-downloads .multiple--mosaic-downloads .multiple__item--download .content-download .title {
  padding: 20px;
  width: 70%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.block-multiple.mosaic-downloads .multiple--mosaic-downloads .multiple__item--download .content-download .title .button-block {
  width: 20%;
  margin: 0;
}

@media (max-width: 767px) {
  .block-multiple.mosaic-downloads .multiple--mosaic-downloads .multiple__item--download .multiple__item--download .content-download {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .block-multiple.mosaic-downloads .multiple--mosaic-downloads .multiple__item--download .multiple__item--download .content-download .content-alternate-download {
    width: 100%;
    border-right: none;
  }
  .block-multiple.mosaic-downloads .multiple--mosaic-downloads .multiple__item--download .multiple__item--download .content-download .title {
    width: 100%;
  }
  .block-multiple.mosaic-downloads .multiple--mosaic-downloads .multiple__item--download .multiple__item--download .content-download .button-block {
    width: 100%;
  }
}

.block-multiple.mosaic-downloads.mosaic-cards .content {
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
  z-index: 3;
}

.block-multiple.mosaic-downloads.mosaic-cards .content .list-products {
  padding-left: 6%;
  padding-right: 6%;
  width: 100%;
  z-index: 2;
}

@media (max-width: 767px) {
  .block-multiple.mosaic-downloads.mosaic-cards .content .list-products {
    margin-top: 50px;
    padding: 0;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .block-multiple.mosaic-downloads.mosaic-cards .content .list-products {
    padding: 50px;
    margin-top: 0px;
  }
}

.block-multiple.mosaic-downloads.mosaic-cards .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;
}

.block-multiple.mosaic-downloads.mosaic-cards .content .list-products__title h3 {
  width: 45%;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .block-multiple.mosaic-downloads.mosaic-cards .content .list-products__title {
    max-width: 100%;
  }
  .block-multiple.mosaic-downloads.mosaic-cards .content .list-products__title h3 {
    width: 70%;
  }
}

@media (max-width: 767px) {
  .block-multiple.mosaic-downloads.mosaic-cards .content .list-products__title {
    font-size: 30px;
    max-width: 90%;
    margin-top: 50px;
    margin: auto;
  }
  .block-multiple.mosaic-downloads.mosaic-cards .content .list-products__title h3 {
    width: 70%;
  }
}

.block-multiple.mosaic-downloads.mosaic-cards .content .list-products .button-block {
  max-width: 60%;
  margin-left: auto;
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .block-multiple.mosaic-downloads.mosaic-cards .content .list-products .button-block {
    max-width: 90%;
    margin: auto;
  }
}

.block-multiple.mosaic-downloads.mosaic-cards .content .list-products .button-block span {
  background-color: white;
}

.block-multiple.mosaic-downloads.mosaic-cards .content .list-products .left,
.block-multiple.mosaic-downloads.mosaic-cards .content .list-products .right {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  outline: none;
  position: absolute;
  background-color: transparent;
  color: grey;
  z-index: 3;
}

.block-multiple.mosaic-downloads.mosaic-cards .content .list-products .left:hover,
.block-multiple.mosaic-downloads.mosaic-cards .content .list-products .right:hover {
  border-color: var(--bc-2);
}

.block-multiple.mosaic-downloads.mosaic-cards .content .list-products .left {
  left: 2%;
  top: 50%;
}

.block-multiple.mosaic-downloads.mosaic-cards .content .list-products .right {
  right: 2%;
  top: 50%;
}

.block-multiple.mosaic-downloads.mosaic-cards .content .list-products__slider {
  overflow-x: clip;
  overflow-y: visible;
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
}

.block-multiple.mosaic-downloads.mosaic-cards .content .list-products__slider .slider__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 500ms ease-out 0.1s;
  transition: all 500ms ease-out 0.1s;
}

@media (max-width: 767px) {
  .block-multiple.mosaic-downloads.mosaic-cards .content .list-products__slider .slider__items .items__item {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
}

.block-multiple.mosaic-downloads.mosaic-cards .content .list-products__slider .slider__items .items__item .card-mosaic-a {
  -webkit-box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
          box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  position: relative;
  height: 575px;
  width: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 30px;
  z-index: 2;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 500px;
          flex: 0 0 500px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

@media (max-width: 767px) {
  .block-multiple.mosaic-downloads.mosaic-cards .content .list-products__slider .slider__items .items__item .card-mosaic-a {
    width: 270px;
    height: 400px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 270px;
            flex: 0 0 270px;
    margin: 0px 30px 0px 70px;
  }
}

@media (min-width: 1200px) and (max-width: 1600px) {
  .block-multiple.mosaic-downloads.mosaic-cards .content .list-products__slider .slider__items .items__item .card-mosaic-a {
    width: 340px;
    height: 475px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 340px;
            flex: 0 0 340px;
  }
}

.block-multiple.mosaic-downloads.mosaic-cards .content .list-products__slider .slider__items .items__item .card-mosaic-a:hover {
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
}

.block-multiple.mosaic-downloads.mosaic-cards .content .list-products__slider .slider__items .items__item .card-mosaic-a .lens {
  position: absolute;
  background-color: grey;
  opacity: 0.3;
}

.block-multiple.mosaic-downloads.mosaic-cards .content .list-products__slider .slider__items .items__item .item__image {
  height: 60%;
}

.block-multiple.mosaic-downloads.mosaic-cards .content .list-products__slider .slider__items .items__item .item__image .content__title {
  position: absolute;
  top: 20%;
  left: 10%;
  right: 10%;
}

.block-multiple.mosaic-downloads.mosaic-cards .content .list-products__slider .slider__items .items__item .item__image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.75s ease-in-out 0s;
  transition: all 0.75s ease-in-out 0s;
}

.block-multiple.mosaic-downloads.mosaic-cards .content .list-products__slider .slider__items .items__item .item__content {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  bottom: 0%;
  background-color: #ececec;
}

.block-multiple.mosaic-downloads.mosaic-cards .content .list-products__slider .slider__items .items__item .item__content .content__title span {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.3;
  color: #4f4f4e;
}

@media (max-width: 767px) {
  .block-multiple.mosaic-downloads.mosaic-cards .content .list-products__slider .slider__items .items__item .item__content .content__title span p {
    font-size: 1.5rem !important;
  }
}

@media (min-width: 1200px) and (max-width: 1600px) {
  .block-multiple.mosaic-downloads.mosaic-cards .content .list-products__slider .slider__items .items__item .item__content .content__title span p {
    font-size: 1.7rem !important;
  }
}

.block-multiple.mosaic-downloads.mosaic-cards .content .list-products__slider .slider__items .items__item .item__content .content__title .button-block {
  margin: 0;
  max-width: none;
}

.block-multiple.mosaic-downloads.mosaic-cards .content .list-products__slider .slider__items .items__item .item__content .content__title .button-block .button {
  padding: 0;
}

.block-multiple.mosaic-downloads.mosaic-cards .content .list-products__slider .slider__items .items__item .item__content .content__title .button-block .button .text {
  font-size: 1.3rem;
  top: 30%;
  color: #50504f !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.block-multiple.mosaic-downloads.mosaic-cards .content .list-products__slider .slider__items .items__item .item__content .content__title .button-block .button p {
  border: 2px solid #50504f;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.block-multiple.mosaic-downloads.mosaic-cards .content .list-products__slider .slider__items .items__item .item__content .content__title .button-block .button:hover .base {
  background: transparent;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.block-multiple.mosaic-downloads.mosaic-cards .content .list-products__slider .slider__items .items__item .item__content .content__title .button-block .button:hover .text {
  background: transparent;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.block-multiple.mosaic-downloads.mosaic-cards .content .list-products__slider .slider__items .items__item .item__content .content__title .button-block .button:hover p {
  border: 2px solid #50504f;
  background: transparent;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.block-multiple.mosaic-downloads.mosaic-cards .content .list-products__slider .slider__items .items__item .item__content .content__title .main-link {
  background-color: transparent;
  padding: 5px 20px;
  border-radius: 30px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
          transform: perspective(1px) translateZ(0);
  position: relative;
  color: #4f4f4e;
  border: 2px solid #4f4f4e;
  text-transform: uppercase;
  margin-top: 5%;
}

.block-multiple.mosaic-downloads.mosaic-cards .content .list-products__slider .slider__items .items__item .item__content .content__title .main-link:hover {
  background-color: white;
  color: #4f4f4e;
  border: 2px solid #ececec;
}

.block-multiple.mosaic-downloads.mosaic-cards .content .list-products__slider .slider__items .items__item .item__content .content__icon img {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 80px;
}

.block-multiple.mosaic-downloads.mosaic-cards .content .list-products__slider .slider__items .items__item .item__content .content__date {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.block-multiple.mosaic-downloads.mosaic-cards .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);
}

.block-multiple.mosaic-downloads.mosaic-cards .content .list-products__slider .slider__controller {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 50px;
}

@media (max-width: 767px) {
  .block-multiple.mosaic-downloads.mosaic-cards .content .list-products__slider .slider__controller {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.block-multiple.mosaic-downloads.mosaic-cards .content .list-products__slider .slider__controller .controller__paginate {
  z-index: 2;
  width: 5%;
}

@media (max-width: 767px) {
  .block-multiple.mosaic-downloads.mosaic-cards .content .list-products__slider .slider__controller .controller__paginate {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .block-multiple.mosaic-downloads.mosaic-cards .content .list-products__slider .slider__controller .controller__paginate {
    width: 10%;
  }
}

.block-multiple.mosaic-downloads.mosaic-cards .content .list-products__slider .slider__controller .controller__paginate span {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.07;
  letter-spacing: -3px;
}

.block-multiple.mosaic-downloads.mosaic-cards .content .list-products__slider .slider__controller .controller__line {
  width: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .block-multiple.mosaic-downloads.mosaic-cards .content .list-products__slider .slider__controller .controller__line {
    width: 60%;
  }
}

@media (max-width: 767px) {
  .block-multiple.mosaic-downloads.mosaic-cards .content .list-products__slider .slider__controller .controller__line {
    width: 100%;
  }
}

.block-multiple.mosaic-downloads.mosaic-cards .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;
}

.block-multiple.mosaic-downloads.mosaic-cards .content .list-products__slider .slider__controller .controller__line .line__current {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0px, -50%);
          transform: translate(0px, -50%);
  height: 4px;
  background: var(--bc-2);
  -webkit-transition: all 500ms ease-out 0.1s;
  transition: all 500ms ease-out 0.1s;
}

.block-multiple.mosaic-downloads.mosaic-cards .content .list-products__slider .slider__controller .controller__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 2;
  width: 100%;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .block-multiple.mosaic-downloads.mosaic-cards .content .list-products__slider .slider__controller .controller__buttons {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .block-multiple.mosaic-downloads.mosaic-cards .content .list-products__slider .slider__controller .controller__buttons {
    width: 100%;
    margin-top: 30px;
  }
}

.block-multiple.mosaic-downloads.mosaic-cards .content .list-products__slider .slider__controller .controller__buttons .buttons__slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 767px) {
  .block-multiple.mosaic-downloads.mosaic-cards .content .list-products__slider .slider__controller .controller__buttons .buttons__slider {
    margin-right: 0;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .block-multiple.mosaic-downloads.mosaic-cards .content .list-products__slider .slider__controller .controller__buttons .buttons__slider {
    margin-right: 0;
  }
}

.block-multiple.mosaic-downloads.mosaic-cards .content .list-products__slider .slider__controller .controller__buttons .buttons__slider .left,
.block-multiple.mosaic-downloads.mosaic-cards .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(--bc-1);
}

@media (max-width: 767px) {
  .block-multiple.mosaic-downloads.mosaic-cards .content .list-products__slider .slider__controller .controller__buttons .buttons__slider .left,
  .block-multiple.mosaic-downloads.mosaic-cards .content .list-products__slider .slider__controller .controller__buttons .buttons__slider .right {
    z-index: 3;
  }
}

@media (max-width: 1000px) {
  .block-multiple.mosaic-downloads.mosaic-cards .content .list-products__slider .slider__controller .controller__buttons .buttons__slider .left,
  .block-multiple.mosaic-downloads.mosaic-cards .content .list-products__slider .slider__controller .controller__buttons .buttons__slider .right {
    background-color: white;
  }
}

.block-multiple.mosaic-downloads.mosaic-cards .content .list-products__slider .slider__controller .controller__buttons .buttons__slider .left:hover,
.block-multiple.mosaic-downloads.mosaic-cards .content .list-products__slider .slider__controller .controller__buttons .buttons__slider .right:hover {
  border-color: var(--bc-2);
}

.block-multiple.mosaic-downloads.mosaic-cards .content .list-products__slider .slider__controller .controller__buttons .buttons__slider .left {
  margin-right: 10px;
}

.block-multiple.mosaic-downloads.mosaic-cards .content .list-products__slider .slider__controller .controller__buttons .buttons__see-more a span {
  position: relative;
  font-size: 12px;
  font-weight: 300;
  color: black;
}

.block-multiple.mosaic-downloads.mosaic-cards .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;
  -webkit-transition: all 0.15s cubic-bezier(0, 0, 0, 0.54);
  transition: all 0.15s cubic-bezier(0, 0, 0, 0.54);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

.block-multiple.mosaic-downloads.mosaic-cards .content .list-products__slider .slider__controller .controller__buttons .buttons__see-more a span:hover::after, .block-multiple.mosaic-downloads.mosaic-cards .content .list-products__slider .slider__controller .controller__buttons .buttons__see-more a span.current::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.block-multiple.mosaic-downloads.mosaic-cards .content .arrow-left.icon {
  color: #4f4f4e;
  position: absolute;
  margin-left: 3px;
  margin-top: 10px;
  width: 16px;
  height: 1px;
  background-color: white;
  top: 23%;
  left: 21%;
}

.block-multiple.mosaic-downloads.mosaic-cards .content .arrow-left.icon:before {
  content: "";
  position: absolute;
  left: 1px;
  top: -5px;
  width: 20px;
  height: 20px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  color: #4f4f4e;
}

.block-multiple.mosaic-downloads.mosaic-cards .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%;
}

@media (max-width: 767px) {
  .block-multiple.mosaic-downloads.mosaic-cards .content .arrow-right.icon {
    height: 0px;
  }
}

.block-multiple.mosaic-downloads.mosaic-cards .content .arrow-right.icon:before {
  content: "";
  position: absolute;
  right: 1px;
  top: -5px;
  width: 20px;
  height: 20px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  color: #4f4f4e;
}

.block-multiple.mosaic-downloads.mosaic-quality {
  padding-top: 150px !important;
}

.block-multiple.mosaic-downloads.mosaic-quality .content .lens {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  width: 90%;
  height: 85%;
  background-color: rgba(0, 143, 139, 0.05);
  top: auto;
}

@media (max-width: 767px) {
  .block-multiple.mosaic-downloads.mosaic-quality .content .lens {
    height: 87%;
  }
}

.block-multiple.mosaic-downloads.mosaic-quality .content .flex-content .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.block-multiple.mosaic-downloads.mosaic-quality .content .flex-content .text .quality-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 90%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  .block-multiple.mosaic-downloads.mosaic-quality .content .flex-content .text .quality-title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}

.block-multiple.mosaic-downloads.mosaic-quality .content .flex-content .text .quality-title .left {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-left: 5%;
}

@media (max-width: 767px) {
  .block-multiple.mosaic-downloads.mosaic-quality .content .flex-content .text .quality-title .left {
    padding-left: 0;
    width: 100%;
  }
}

.block-multiple.mosaic-downloads.mosaic-quality .content .flex-content .text .quality-title .left img {
  width: 650px;
}

.block-multiple.mosaic-downloads.mosaic-quality .content .flex-content .text .quality-title .right {
  width: 50%;
}

@media (max-width: 767px) {
  .block-multiple.mosaic-downloads.mosaic-quality .content .flex-content .text .quality-title .right {
    width: 100%;
  }
}

.block-multiple.mosaic-downloads.mosaic-quality .content .flex-content .text .quality-title .right h3 {
  padding: 0 !important;
  margin: 30px 0px !important;
}

.block-multiple.mosaic-downloads.mosaic-quality .content .flex-content .text .quality-title .right h3::after {
  content: "";
  height: 4%;
  width: 6%;
  background-color: #50504f;
  position: absolute;
  bottom: -20px;
  left: 0px;
}

.block-multiple.mosaic-downloads.mosaic-quality .content .flex-content .text .quality-title .right p {
  width: 50%;
}

@media (max-width: 767px) {
  .block-multiple.mosaic-downloads.mosaic-quality .content .flex-content .text .quality-title .right p {
    width: 100%;
  }
}

.block-multiple .multiple--mosaic {
  padding: var(--space-xl) 0;
}

.block-multiple .multiple--mosaic.items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 767px) {
  .block-multiple .multiple--mosaic.items {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  .block-multiple .multiple--mosaic.items {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.block-multiple .multiple--mosaic.items .multiple__item {
  width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: 0.3s ease-out all;
  transition: 0.3s ease-out all;
}

.block-multiple .multiple--mosaic.items .multiple__item:hover {
  -webkit-transition: 0.3s ease-out all;
  transition: 0.3s ease-out all;
}

.block-multiple .multiple--mosaic.items .multiple__item:hover .multiple__icon {
  -webkit-transition: 0.3s ease-out all;
  transition: 0.3s ease-out all;
}

.block-multiple .multiple--mosaic.items .multiple__item:hover .multiple__icon img {
  -webkit-transition: 0.3s ease-out all;
  transition: 0.3s ease-out all;
  -webkit-transform: rotate(5deg) scale(1.2);
          transform: rotate(5deg) scale(1.2);
}

.block-multiple .multiple--mosaic.items .multiple__item:hover .multiple__content {
  -webkit-transform: scale(1.2) rotate(10deg);
          transform: scale(1.2) rotate(10deg);
  -webkit-transition: 0.3s ease-out all;
  transition: 0.3s ease-out all;
}

@media (max-width: 767px) {
  .block-multiple .multiple--mosaic.items .multiple__item:hover .multiple__icon img {
    -webkit-transition: 0.3s ease-out all;
    transition: 0.3s ease-out all;
    -webkit-transform: rotate(0deg) scale(1) !important;
            transform: rotate(0deg) scale(1) !important;
  }
  .block-multiple .multiple--mosaic.items .multiple__item:hover .multiple__content {
    -webkit-transform: rotate(0deg) scale(1) !important;
            transform: rotate(0deg) scale(1) !important;
    -webkit-transition: 0.3s ease-out all;
    transition: 0.3s ease-out all;
  }
}

.block-multiple .multiple--mosaic.items .multiple__item .multiple__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  -webkit-transition: 0.3s ease-out all;
  transition: 0.3s ease-out all;
}

.block-multiple .multiple--mosaic.items .multiple__item .multiple__icon img {
  -webkit-transition: 0.3s ease-out all;
  transition: 0.3s ease-out all;
  width: 100%;
  height: auto;
  z-index: 1;
}

@media (max-width: 767px) {
  .block-multiple .multiple--mosaic.items .multiple__item .multiple__icon img {
    width: 100%;
  }
}
.block-multiple.mosaic h3::after, .blocks .block.block-text-image .content .flex-content .text h3::after {
    display: none;
}
.block-multiple .multiple--mosaic.items .multiple__item .multiple__content {
  height: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  border: 3px solid var(--bc-1);
  width: 200px;
  padding: 10%;
  -webkit-transition: 0.3s ease-out all;
  transition: 0.3s ease-out all;
}

@media (max-width: 767px) {
  .block-multiple .multiple--mosaic.items .multiple__item .multiple__content {
    width: 100% !important;
    height: 100% !important;
  }
}

.block-multiple .multiple--mosaic.items .multiple__item .multiple__content p {
  font-family: var(--degular);
    font-size: 1.5rem;
    text-align: center;
    color: var(--bc-1);
    font-weight: 700;
}

.block-multiple .multiple--mosaic.items--1 .multiple__item {
  width: 100%;
}

.block-multiple .multiple--mosaic.items--2 .multiple__item {
  width: 48%;
}

.block-multiple .multiple--mosaic.items--3 .multiple__item {
  width: 30%;
}

.block-multiple .multiple--mosaic.items--4 .multiple__item {
  width: 22%;
  padding: 20px;
}

@media (max-width: 767px) {
  .block-multiple .multiple--mosaic.items--4 .multiple__item {
    width: 100%;
    padding: 0 30px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .block-multiple .multiple--mosaic.items--4 .multiple__item {
    width: 230px;
  }
}

.block-multiple .multiple--mosaic.items--5 .multiple__item {
  width: 18%;
}

.block-multiple .multiple--mosaic.items--6 .multiple__item {
  width: 15%;
}

.block-multiple .multiple--featured {
  display: -ms-grid !important;
  display: grid !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  grid-column-gap: var(--space-xxl);
  grid-row-gap: var(--space-xxl);
  padding: var(--space-xl) 0;
}

@media (max-width: 767px) {
  .block-multiple .multiple--featured {
    grid-row-gap: var(--space-l) !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.block-multiple .multiple--featured.items--5 {
    gap: 0 !important;
  /*gap: var(--space-l) !important;*/
}

.block-multiple .multiple--featured.items--4 {
  grid-column-gap: 0 !important;
  gap: 0 !important;
}

.block-multiple .multiple--featured .multiple__content span {
    color: white !important;
    font-size: 1.8rem;
}
/*.top--home*/
 .block-multiple .multiple--featured .multiple__item--featured .lens {
    color: white;
    background: transparent;
}
.multiple--featured .multiple__item:nth-child(1) {
    background: #d09b01;
}
.multiple--featured .multiple__item:nth-child(2) {
    background: #60afb5;
}
.multiple--featured .multiple__item:nth-child(3) {
    background: #d2b981;
}
.multiple--featured .multiple__item:nth-child(4) {
    background: #e2787b;
}
.multiple--featured .multiple__item:nth-child(5) {
    background: #ff9c1d;
}

.block-multiple .multiple--featured .multiple__item--featured {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  justify-self: center;
  height: 100%;
  width: 100%;
  position: relative;
}

.block-multiple .multiple--featured .multiple__item--featured .lens {
  position: absolute;
  top: 20%;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 80%;
  /*background-color: #f4f4f4;*/
}

@media (max-width: 767px) {
  .block-multiple .multiple--featured .multiple__item--featured {
    margin-bottom: var(--space-l);
  }
  .block-multiple .multiple--featured .multiple__item--featured:last-child {
    margin-bottom: 0;
  }
}

.block-multiple .multiple--featured .multiple__item--featured .multiple__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: auto; /*50*/
  width: 100%;
  z-index: 2;
}

.block-multiple .multiple--featured .multiple__item--featured .multiple__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 100%;
  height: 100%;
  z-index: 2;
  padding: 20px;
}

@media (max-width: 767px) {
  .block-multiple .multiple--featured .multiple__item--featured .multiple__content .title-multiple {
    display: none;
  }
}

@media (max-width: 767px) {
  .block-multiple .multiple--featured .multiple__item--featured .multiple__content {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}

.block-multiple .multiple--featured .multiple__item--featured .multiple__content h3 {
  padding: 15px 0px;
}

.block-multiple .multiple--featured .multiple__item--featured .multiple__content a {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.block-multiple .multiple--featured .multiple__item--featured .multiple__content a:hover .button {
  background-color: var(--bc-1);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.block-multiple .multiple--featured .multiple__item--featured .multiple__content a:hover .button i {
  color: white;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.block-multiple .multiple--featured .multiple__item--featured .multiple__content a .button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--bc-1);
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}



.block-multiple .multiple--featured .multiple__item--featured .multiple__content a .button i {
  color: #225384;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.block-multiple .multiple--featured .multiple__item--featured .multiple__content a .button {
    border: 1px solid #225384;
}
.block-multiple .multiple--featured .multiple__item--featured .multiple__content a:hover .button {
    background: transparent;
}
.block-multiple .multiple--mosaic-help {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  grid-column-gap: var(--space-xxl);
  grid-row-gap: var(--space-l);
}

.block-multiple .multiple--mosaic-help.items--3 {
  display: -ms-grid;
  display: grid;
  gap: 20px;
  padding: 0 15%;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
}

@media (min-width: 1200px) and (max-width: 1600px) {
  .block-multiple .multiple--mosaic-help.items--3 {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .block-multiple .multiple--mosaic-help.items--3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 5%;
  }
  .block-multiple .multiple--mosaic-help.items--3 .multiple__item .multiple__content-content h3 {
    font-size: 2.3rem !important;
  }
}

.block-multiple .multiple--mosaic-help.items--3 .multiple__item {
  width: 100% !important;
}

.block-multiple .multiple--mosaic-help.items--3 .multiple__item .multiple__content-content h3 {
  font-size: 3rem;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .block-multiple .multiple--mosaic-help {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 90%;
    margin-left: 10%;
  }
}

.block-multiple .multiple--mosaic-help .multiple__item--mosaic-help {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  justify-self: center;
  height: 100%;
}

@media (max-width: 767px) {
  .block-multiple .multiple--mosaic-help .multiple__item--mosaic-help {
    margin-bottom: var(--space-l);
  }
  .block-multiple .multiple--mosaic-help .multiple__item--mosaic-help:last-child {
    margin-bottom: 0;
  }
}

.block-multiple .multiple--mosaic-help .multiple__item--mosaic-help .multiple__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 100%;
  height: 80%;
  margin-top: var(--space-m);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.block-multiple .multiple--mosaic-help .multiple__item--mosaic-help .multiple__content-img {
  width: 80%;
  height: auto;
}

.block-multiple .multiple--mosaic-help .multiple__item--mosaic-help .multiple__content-content {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 30px;
}

@media (max-width: 767px) {
  .block-multiple .multiple--mosaic-help .multiple__item--mosaic-help .multiple__content-content {
    padding: 30px;
  }
}

.block-multiple .multiple--mosaic-help .multiple__item--mosaic-help .multiple__content-content .lens-help {
  display: none;
}

.block-multiple .multiple--mosaic-quality {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 50px 0;
  gap: 50px;
}

.block-multiple .multiple--mosaic-quality .multiple__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
}

.block-multiple .multiple--mosaic-quality .multiple__item--quality {
  z-index: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.block-multiple .multiple--mosaic-quality .multiple__item--quality:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.block-multiple .multiple--mosaic-quality .multiple__item--quality .multiple__icon {
  width: 30%;
}

.block-multiple .multiple--mosaic-quality .multiple__item--quality .multiple__content {
  width: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.block-multiple .multiple--mosaic-quality .multiple__item--quality .multiple__content .number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 10%;
  font-size: 4rem;
  font-weight: bold;
}

.block-multiple .multiple--mosaic-quality .multiple__item--quality .multiple__content .content_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 90%;
}

@media (max-width: 767px) {
  .block-multiple .multiple--mosaic-quality .multiple__item--quality {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .block-multiple .multiple--mosaic-quality .multiple__item--quality .multiple__icon,
  .block-multiple .multiple--mosaic-quality .multiple__item--quality .multiple__content {
    width: 100%;
  }
  .block-multiple .multiple--mosaic-quality .multiple__item--quality .multiple__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .block-multiple .multiple--mosaic-quality .multiple__item--quality .multiple__content .content_text {
    width: 100%;
  }
}

.block-multiple .multiple--mosaic-alternate {
  padding-top: 50px;
}

.block-multiple .multiple--mosaic-alternate .multiple__item--featured {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.block-multiple .multiple--mosaic-alternate .multiple__item--featured .multiple__icon {
  height: 80%;
  overflow: hidden;
}

.block-multiple .multiple--mosaic-alternate .multiple__item--featured .multiple__content {
  height: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.block-multiple .multiple--mosaic-alternate .multiple__item--featured .multiple__content p {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}

.block-slider .content .flex-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          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 !important;
  z-index: var(--z-index--background);
}

.block-slider .content .flex-content .slider .content-slider .slide .slide__element .slide__background .lens {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 767px) {
  .block-slider .content .flex-content .slider .content-slider .slide .slide__element .slide__background img {
    height: 100%;
    width: auto;
  }
}

.block-slider .content .flex-content .slider .content-slider .slide .slide__element .slide__foreground {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  -webkit-box-align: center;
      -ms-flex-align: 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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.block-slider .content .flex-content .slider .content-slider .slide.items--1 .slide__element .slide__background {
  opacity: 0;
}

.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;
}

.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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  bottom: var(--space-m);
  left: 50%;
  -webkit-transform: translateX(-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;
  -webkit-transition: 0.5s cubic-bezier(0.52, 0.01, 0.16, 1) 0s;
  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%;
  -webkit-transform: translate(-50%, -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);
  }
}

@media (max-width: 767px) {
  .blocks .block.block-text-image {
    -ms-grid-column: 2 !important;
    -ms-grid-column-span: 10 !important;
    grid-column: 2/12 !important;
  }
}

.blocks .block.block-text-image .content .flex-content {
  position: relative;
  width: 100%;
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

@media (max-width: 1100px) {
  .blocks .block.block-text-image .content .flex-content {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 767px) {
  .blocks .block.block-text-image .content .flex-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}

.blocks .block.block-text-image .content .flex-content.block-text-image__container h3 {
  position: relative;
  margin-top: 50px;
  margin-bottom: 75px;
}

@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 {
  margin: 20px 0;
}

.blocks .block.block-text-image .content .flex-content.block-text-image__container p.title-font {
  color: var(--bc-2);
  font-weight: 300;
  line-height: 1.27;
}

.blocks .block.block-text-image .content .flex-content.block-text-image__container--right .image {
  -ms-grid-column: 2;
      grid-column-start: 2;
}

@media (max-width: 1100px) {
  .blocks .block.block-text-image .content .flex-content.block-text-image__container--right .image {
    -ms-grid-column: 1;
        grid-column-start: 1;
    -ms-grid-row: 2;
        grid-row-start: 2;
  }
}

.blocks .block.block-text-image .content .flex-content.block-text-image__container--right .block-text-image__content {
  -ms-grid-column: 1;
      grid-column-start: 1;
  -ms-grid-row: 1;
      grid-row-start: 1;
}

.blocks .block.block-text-image .content .flex-content.block-text-image__container--top {
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
}

.blocks .block.block-text-image .content .flex-content.block-text-image__container--bottom {
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
}

.blocks .block.block-text-image .content .flex-content.block-text-image__container--bottom .image {
  -ms-grid-row: 2;
      grid-row-start: 2;
}

.blocks .block.block-text-image .content .flex-content.block-text-image__container--bottom .block-text-image__content {
  -ms-grid-row: 1;
      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: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      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 {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

@keyframes example {
  0% {
    width: 0%;
  }
  100% {
    width: 20%;
  }
}

.blocks .block.block-text-image .content .flex-content .text h3 {
  margin: 30px 0px !important;
  line-height: 1;
}

.blocks .block.block-text-image .content .flex-content .text h3.pantone::after {
  background-color: #4f4e96 !important;
}

.blocks .block.block-text-image .content .flex-content .text h3::after {

  content: "";
  height: 8%;
  width: 0%;
  background-color: var(--bc-1);
  position: absolute;
  bottom: -15px;
  left: -15px;
  -webkit-transition: ease-in-out;
  transition: ease-in-out;
  -webkit-animation-name: example;
          animation-name: example;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
          display: none;
}

@media (max-width: 767px) {
  .blocks .block.block-text-image .content .flex-content .text h3::after {
    height: 10%;
  }
}

@media (max-width: 767px) {
  .blocks .block.block-text-image .content .flex-content .button-block {
    margin-top: var(--space-xs);
  }
  .blocks .block.block-text-image .content .flex-content .button-block .button p {
    margin: 0 !important;
  }
}

.block-video .video__container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.block-video .video__container .player {
  width: 80%;
  margin: auto;
  height: 600px;
}

.block-video .content .flex-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: 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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: 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);
  -webkit-transition: all 0.4s;
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  height: 100vh;
  width: 100vw;
  -webkit-transition: z-index 0.1s, opacity 0.4s, visibility 0.4s;
  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;
  -webkit-transition: all 0.3s;
  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);
  -webkit-transition: z-index 0.6s, opacity 0.4s, visibility 0.4s;
  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: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
      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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.gallery .thumbs .thumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  cursor: pointer;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  margin: 0;
  -ms-grid-row-span: 2;
      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) {
  -ms-grid-row-span: 2;
      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: calc(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;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.gallery .thumbs .thumb:hover .lens {
  opacity: .3;
  background-color: var(--bc-1);
}

.gallery.video .thumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
}

.gallery.video .thumbs .thumb-container {
  height: 100%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.gallery.video .thumbs .thumb-container .thumb {
  height: 100%;
  width: 100%;
}

.gallery.video .thumbs .thumb-container .thumb .lens .playbutton {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: 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 {
    -ms-flex-wrap: wrap;
        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%;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
  background-image: radial-gradient(rgba(0, 0, 0, 0.7), black);
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.gallery .viewport.active {
  z-index: var(--z-index--overlay);
  opacity: 1;
}

.gallery .viewport .close-button {
  position: absolute;
  top: var(--space-m);
  right: var(--space-m);
  left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.gallery .viewport .close-button .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: 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;
  -webkit-transition: all 0.3s ease-out;
  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);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.gallery .viewport .close-button .lines:before {
  top: 0px;
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
          transform: rotate3d(0, 0, 1, 45deg);
}

.gallery .viewport .close-button .lines:after {
  top: 0px;
  -webkit-transform: rotate3d(0, 0, 1, -45deg);
          transform: rotate3d(0, 0, 1, -45deg);
}

.gallery .viewport .images {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70%;
  height: 70%;
  -webkit-transform: translate(-50%, -50%);
          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;
  -webkit-transform: translateY(-50%);
          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;
  -webkit-animation: spin 2s linear infinite;
          animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            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;
  -webkit-transition: opacity 1s;
  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);
  -webkit-transition: opacity 1s ease-out;
  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;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  -webkit-transform: translateY(50%);
          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;
  }
}

/* -------------------------- */
@supports not (-webkit-touch-callout: none) {
  .blocks .block:not(.block--noAnimation).block-text-image .content .flex-content .block-text-image__content p,
  .blocks .block:not(.block--noAnimation).block-text-image .content .flex-content .block-text-image__content [class*="display-"],
  .blocks .block:not(.block--noAnimation).block-text-image .content .flex-content .block-text-image__content .button-block .button {
    opacity: 0;
  }
  .blocks .block:not(.block--noAnimation).block-text-image .content .flex-content .block-text-image__content p,
  .blocks .block:not(.block--noAnimation).block-text-image .content .flex-content .block-text-image__content [class*="display-"] {
    -webkit-transition: all 0.2s cubic-bezier(0, 0, 0.11, 0.93);
    transition: all 0.2s cubic-bezier(0, 0, 0.11, 0.93);
  }
  .blocks .block:not(.block--noAnimation).block-text-image .content .flex-content .image .image__content {
    opacity: 0;
    -webkit-transition: all 0.2s cubic-bezier(0, 0, 0.11, 0.93);
    transition: all 0.2s cubic-bezier(0, 0, 0.11, 0.93);
  }
  .blocks .block:not(.block--noAnimation).block-text-image .content .flex-content.block-text-image__container--left .image__content {
    -webkit-transform: translateX(calc(var(--distance-animation) * -1));
            transform: translateX(calc(var(--distance-animation) * -1));
  }
  .blocks .block:not(.block--noAnimation).block-text-image .content .flex-content.block-text-image__container--left .block-text-image__content p,
  .blocks .block:not(.block--noAnimation).block-text-image .content .flex-content.block-text-image__container--left .block-text-image__content [class*="display-"],
  .blocks .block:not(.block--noAnimation).block-text-image .content .flex-content.block-text-image__container--left .block-text-image__content .button-block .button {
    -webkit-transform: translateX(var(--distance-animation));
            transform: translateX(var(--distance-animation));
  }
  .blocks .block:not(.block--noAnimation).block-text-image .content .flex-content.block-text-image__container--right .image .image__content {
    -webkit-transform: translateX(var(--distance-animation));
            transform: translateX(var(--distance-animation));
  }
  .blocks .block:not(.block--noAnimation).block-text-image .content .flex-content.block-text-image__container--right .block-text-image__content p,
  .blocks .block:not(.block--noAnimation).block-text-image .content .flex-content.block-text-image__container--right .block-text-image__content [class*="display-"],
  .blocks .block:not(.block--noAnimation).block-text-image .content .flex-content.block-text-image__container--right .block-text-image__content .button-block .button {
    -webkit-transform: translateX(calc(var(--distance-animation) * -1));
            transform: translateX(calc(var(--distance-animation) * -1));
  }
  .blocks .block:not(.block--noAnimation).block-text-image .content .flex-content.block-text-image__container--top .image__content {
    -webkit-transform: translateY(var(--distance-animation));
            transform: translateY(var(--distance-animation));
  }
  .blocks .block:not(.block--noAnimation).block-text-image .content .flex-content.block-text-image__container--top .block-text-image__content p,
  .blocks .block:not(.block--noAnimation).block-text-image .content .flex-content.block-text-image__container--top .block-text-image__content [class*="display-"],
  .blocks .block:not(.block--noAnimation).block-text-image .content .flex-content.block-text-image__container--top .block-text-image__content .button-block .button {
    -webkit-transform: translateY(var(--distance-animation));
            transform: translateY(var(--distance-animation));
  }
  .blocks .block:not(.block--noAnimation).block-text-image .content .flex-content.block-text-image__container--bottom .image .image__content {
    -webkit-transform: translateY(var(--distance-animation));
            transform: translateY(var(--distance-animation));
  }
  .blocks .block:not(.block--noAnimation).block-text-image .content .flex-content.block-text-image__container--bottom .block-text-image__content p,
  .blocks .block:not(.block--noAnimation).block-text-image .content .flex-content.block-text-image__container--bottom .block-text-image__content [class*="display-"],
  .blocks .block:not(.block--noAnimation).block-text-image .content .flex-content.block-text-image__container--bottom .block-text-image__content .button-block .button {
    -webkit-transform: translateY(var(--distance-animation));
            transform: translateY(var(--distance-animation));
  }
}

@-webkit-keyframes Bounce {
  0% {
    opacity: 0;
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0);
  }
  10% {
    opacity: 1;
    -webkit-transform: scale(1.4, 0.6) translateY(0);
            transform: scale(1.4, 0.6) translateY(0);
  }
  30% {
    -webkit-transform: scale(0.9, 1.1) translateY(-100px);
            transform: scale(0.9, 1.1) translateY(-100px);
  }
  50% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0);
  }
  57% {
    -webkit-transform: scale(1, 1) translateY(-7px);
            transform: scale(1, 1) translateY(-7px);
  }
  64% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0);
  }
  100% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0);
  }
}

@keyframes Bounce {
  0% {
    opacity: 0;
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0);
  }
  10% {
    opacity: 1;
    -webkit-transform: scale(1.4, 0.6) translateY(0);
            transform: scale(1.4, 0.6) translateY(0);
  }
  30% {
    -webkit-transform: scale(0.9, 1.1) translateY(-100px);
            transform: scale(0.9, 1.1) translateY(-100px);
  }
  50% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0);
  }
  57% {
    -webkit-transform: scale(1, 1) translateY(-7px);
            transform: scale(1, 1) translateY(-7px);
  }
  64% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0);
  }
  100% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0);
  }
}

@media screen and (min-width: 0\0) {
  .ie-alert {
    display: table;
  }
  .ie-alert .message {
    display: table-cell;
    vertical-align: middle;
  }
}

.header-recambios {
  margin: var(--space-l) 0;
  text-align: center;
}

.header-recambios h2,
.header-recambios .display-3,
.header-recambios .private-area__wrapper-main .home__title,
.private-area__wrapper-main .header-recambios .home__title {
  margin-bottom: var(--space-m);
}

.categoria-recambios {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[12];
      grid-template-columns: repeat(12, 1fr);
  width: 100%;
  margin: auto;
}

@media desktop-l {
  .categoria-recambios {
    width: var(--content-max-width);
  }
}

@media (max-width: 767px) {
  .categoria-recambios {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    overflow-x: hidden;
  }
  .categoria-recambios .carrusel-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
}

.categoria-recambios__item {
  -ms-flex-item-align: end;
      align-self: flex-end;
  padding: var(--space-l) 0;
  text-align: center;
  grid-column: span 4;
}

.categoria-recambios__item:nth-child(3) img, .categoria-recambios__item:nth-child(6) img {
  border-right: none;
}

.categoria-recambios__item img {
  margin-bottom: var(--space-l);
  padding: 0 var(--space-xl);
  border-right: 1px solid var(--brown-grey);
  max-height: 240px;
}

@media (max-width: 767px) {
  .categoria-recambios__item img {
    border-right: none;
    margin-bottom: var(--space-m);
    padding: 0 var(--space-m);
  }
}

.categoria-recambios__item h3 {
  color: var(--azure);
}

.categoria-recambios__item .button-block {
  margin-top: var(--space-m);
}

@supports not (-webkit-touch-callout: none) {
  .categoria-recambios__item img,
  .categoria-recambios__item h3,
  .categoria-recambios__item .button-block {
    opacity: 0;
  }
}

.carousel-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  position: relative;
}

@media (max-width: 767px) {
  .carousel-wrapper .carrusel-movil {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    overflow-x: hidden;
  }
  .carousel-wrapper .carrusel-movil .carrusel-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
}

.carousel-wrapper .arrow {
  display: none;
  position: absolute;
  bottom: 50%;
  width: 50px;
  height: 50px;
  background-size: 50% 80%;
  background-repeat: no-repeat;
}

.carousel-wrapper .arrow.prev {
  background-image: url(../resources/style/icons/prev.png);
  background-position-x: 0;
  left: -16px;
}

.carousel-wrapper .arrow.next {
  right: 0;
  background-image: url(../resources/style/icons/next.png);
  background-position-x: 100%;
  right: -16px;
}

@media (max-width: 767px) {
  .carousel-wrapper .arrow {
    display: block;
  }
}

#recambios-home {
  z-index: 0;
}

#recambios-home .categoria-recambios {
  position: relative;
}

#recambios-home .categoria-recambios::after {
  content: '';
  position: absolute;
  width: 100vw;
  height: 100%;
  top: 0;
  left: calc(-1 * calc(calc(100vw - 100%) / 2));
  background-size: 286px;
  background-position: right 2rem;
  z-index: -1;
}

@media desktop {
  #recambios-home .categoria-recambios::after {
    display: none;
  }
}

.listado-productos {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  width: 100%;
  margin-bottom: var(--space-xl);
}

@media desktop-l {
  .listado-productos {
    width: var(--content-max-width);
  }
}

@media (max-width: 767px) {
  .listado-productos {
    display: block;
  }
}

.listado-productos__item {
  position: relative;
  padding: var(--space-l);
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.listado-productos__item::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 50%;
  top: 20%;
  right: 0;
  background-color: var(--brown-grey);
}

@media (max-width: 767px) {
  .listado-productos__item::after {
    display: none;
  }
}

.listado-productos__item:nth-child(3n)::after {
  display: none;
}

.listado-productos__item h3, .listado-productos__item__precio {
  font-size: 18px;
}

.listado-productos__item h3 {
  margin-bottom: var(--space-m);
}

.listado-productos__item__precio {
  margin-top: var(--space-m);
}

.listado-productos__item .button-block {
  margin-top: var(--space-m);
}

@supports not (-webkit-touch-callout: none) {
  .listado-productos__item img,
  .listado-productos__item h3, .listado-productos__item__precio, .listado-productos__item__descripcion,
  .listado-productos__item .button-block {
    opacity: 0;
  }
}

.filtro-recambios {
  text-align: center;
  width: 100%;
}

@media desktop-l {
  .filtro-recambios {
    width: var(--content-max-width);
  }
}

.filtro-recambios h3 {
  color: var(--azure);
  margin-bottom: var(--space-m);
}

.filtro-recambios .filtro-recambios__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (auto)[4];
      grid-template-columns: repeat(4, auto);
  grid-column-gap: 65px;
  grid-row-gap: 30px;
  margin-top: var(--space-l);
}

@media (min-width: 1200px) and (max-width: 1600px) {
  .filtro-recambios .filtro-recambios__items {
    -ms-grid-columns: (auto)[3];
        grid-template-columns: repeat(3, auto);
    grid-column-gap: 30px;
    grid-auto-rows: 1fr 1fr;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .filtro-recambios .filtro-recambios__items {
    -ms-grid-columns: (auto)[2];
        grid-template-columns: repeat(2, auto);
  }
}

@media (max-width: 767px) {
  .filtro-recambios .filtro-recambios__items {
    -ms-grid-columns: auto;
        grid-template-columns: auto;
    grid-row-gap: 15px;
  }
}

.filtro-recambios .filtro-recambios__items__item .button-block {
  display: block;
  margin: 0;
}

.filtro-recambios .filtro-recambios__items__item .button-block .button {
  padding: var(--space-xs) var(--space-l);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.filtro-recambios .filtro-recambios__items__item .button-block .button span {
  z-index: 1;
}

.filtro-recambios .filtro-recambios__items__item .button-block .button.active {
  background-color: var(--azure);
  color: var(--white-pure);
}

.filtro-recambios .filtro-recambios__items__item .button-block .button::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  background-color: var(--azure);
  -webkit-transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.filtro-recambios .filtro-recambios__items__item .button-block .button:hover {
  text-decoration: none;
  color: var(--white-pure);
}

.filtro-recambios .filtro-recambios__items__item .button-block .button:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.wrapper-accesorios {
  width: 100%;
  overflow: hidden;
  z-index: 0;
}

.wrapper-accesorios::after {
  content: '';
  position: absolute;
  width: 50%;
  top: 0;
  right: calc(-1 * var(--frame-space));
  height: 100%;
  background-size: 350px;
  background-position: right 25%;
  z-index: -1;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .wrapper-accesorios::after {
    display: none;
  }
}

.wrapper-accesorios .logo {
  height: 20px;
  width: auto;
  margin-bottom: var(--space-m);
}

.accesorios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.accesorios .blocks--sup {
  background-color: transparent;
}

.accesorios .blocks--sup .grid__item .block-text-image .text .accesorio-img {
  -webkit-clip-path: circle(130px at center);
          clip-path: circle(130px at center);
  width: 300px;
}

@media desktop-l {
  .accesorios .blocks--sup .grid__item .block-text-image .text .accesorio-img {
    margin-bottom: var(--space-l);
  }
}

@media (min-width: 1200px) and (max-width: 1600px) {
  .accesorios .blocks--sup .grid__item .block-text-image .text .accesorio-img {
    max-width: 80%;
  }
}

.accesorios .blocks--sup .grid__item .block-text-image .text .button-block {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.accesorios .blocks--sup .grid__item .block-text-image .text .button-block .button:last-child {
  margin-left: 0;
  margin-top: var(--space-m);
}

.accesorios .blocks--sup .grid__item.fondo {
  position: relative;
}

.accesorios .blocks--sup .grid__item.fondo::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 60%;
  top: 58%;
  left: -15%;
  background-color: var(--white);
  z-index: -1;
}

@media (min-width: 1200px) and (max-width: 1600px) {
  .accesorios .blocks--sup .grid__item.fondo::before {
    display: none;
  }
}

.accesorios .blocks--sup .grid__item.fondo--top::before {
  width: 200%;
  height: 80%;
  top: -10%;
}

.accesorios .blocks--sup .grid__item.fondo--bottom::before {
  top: 40%;
}

.accesorios .blocks--sup .grid__item.fondo--top-l::before {
  height: 120%;
  top: -10%;
  left: -50%;
}

.accesorios .blocks--sup .grid__item.fondo-roseta::after {
  height: 50%;
  top: 0;
  left: 35%;
  background-position: top;
}

.accesorios .blocks--sup .grid__item:nth-child(1) {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}

.accesorios .blocks--sup .grid__item:nth-child(2) {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.accesorios .blocks--sup .grid__item:nth-child(3) {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.accesorios .blocks--sup .grid__item:nth-child(4) {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.accesorios .blocks--sup .grid__item:nth-child(5) {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}

.accesorios .blocks--sup .grid__item:nth-child(6) {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}

.accesorios .blocks--sup .grid__item:nth-child(7) {
  -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
          order: 6;
}

.accesorios .blocks--sup .grid__item:nth-child(8) {
  -webkit-box-ordinal-group: 8;
      -ms-flex-order: 7;
          order: 7;
}

.accesorios .blocks--sup .grid__item:nth-child(9) {
  -webkit-box-ordinal-group: 9;
      -ms-flex-order: 8;
          order: 8;
}

.accesorios .blocks--sup .grid__item:nth-child(10) {
  -webkit-box-ordinal-group: 10;
      -ms-flex-order: 9;
          order: 9;
}

.accesorios .blocks--sup .grid__item:nth-child(11) {
  -webkit-box-ordinal-group: 11;
      -ms-flex-order: 10;
          order: 10;
}

.accesorios .blocks--sup .grid__item:nth-child(12) {
  -webkit-box-ordinal-group: 12;
      -ms-flex-order: 11;
          order: 11;
}

.accesorios .blocks--sup .grid__item.grid__item--cs-5:nth-child(odd) .button-block {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.accesorios .blocks--sup .grid__item.grid__item--cs-5:nth-child(even) .button-block {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.accesorios .blocks--sup .grid__item.grid__item:nth-child(even) .text-flex-wrapper {
  padding-right: var(--space-l);
}

.accesorios .blocks--sup .grid__item.grid__item:nth-child(odd) .text-flex-wrapper {
  padding-left: var(--space-l);
}

@media (min-width: 1200px) and (max-width: 1600px) {
  .accesorios .blocks--sup .grid__item:nth-child(3) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .accesorios .blocks--sup .grid__item:nth-child(4) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .accesorios .blocks--sup .grid__item:nth-child(7) {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .accesorios .blocks--sup .grid__item:nth-child(8) {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .accesorios .blocks--sup .grid__item:nth-child(11) {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .accesorios .blocks--sup .grid__item:nth-child(12) {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .accesorios .blocks--sup .grid__item.grid__item--cs-5:nth-child(odd) .button-block,
  .accesorios .blocks--sup .grid__item.grid__item--cs-5:nth-child(even) .button-block {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .accesorios .blocks--sup .grid__item.grid__item:nth-child(even) .text-flex-wrapper {
    padding-right: var(--space-m);
  }
  .accesorios .blocks--sup .grid__item.grid__item:nth-child(odd) .text-flex-wrapper {
    padding-left: var(--space-m);
  }
}

@media (min-width: 1200px) and (max-width: 1600px) {
  .accesorios .image-block {
    display: none;
  }
}

.product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.productos-relacionados {
  width: 100%;
}

.productos-relacionados__titulo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  background-color: var(--very-light-pink);
}

.productos-relacionados__titulo h2 {
  color: var(--brown-grey);
  padding: var(--space-l) var(--space-m);
  width: 100%;
}

@media desktop-l {
  .productos-relacionados__titulo h2 {
    width: var(--content-max-width);
    padding: var(--space-l) 0;
  }
}

.productos-relacionados__productos {
  margin-top: var(--space-l);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(200px, 33%))[3];
      grid-template-columns: repeat(3, minmax(200px, 33%));
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media desktop-l {
  .productos-relacionados__productos {
    width: var(--content-max-width);
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .productos-relacionados__productos {
    width: var(--content-medium-width);
  }
}

@media (max-width: 767px) {
  .productos-relacionados__productos {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

.productos-relacionados__productos__producto {
  position: relative;
  padding: 0 var(--space-xl);
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (min-width: 1200px) and (max-width: 1600px) {
  .productos-relacionados__productos__producto {
    padding: 0 var(--space-l);
  }
}

@media (max-width: 767px) {
  .productos-relacionados__productos__producto {
    padding: 0 var(--space-l);
  }
}

.productos-relacionados__productos__producto::after {
  content: '';
  position: absolute;
  top: 10%;
  right: 0;
  width: 1px;
  height: 50%;
  background-color: var(--brown-grey);
}

@media (max-width: 767px) {
  .productos-relacionados__productos__producto::after {
    display: none;
  }
}

.productos-relacionados__productos__producto:last-child::after {
  display: none;
}

.productos-relacionados__productos__producto .relacionado__logo {
  width: 40%;
  margin: 0 auto var(--space-m);
}

.productos-relacionados__productos__producto .relacionado__nombre,
.productos-relacionados__productos__producto .relacionado__precio {
  font-size: 18px;
}

.productos-relacionados__productos__producto .relacionado__precio {
  margin-top: var(--space-m);
}

.amount {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: var(--space-l);
}

@media (max-width: 767px) {
  .amount {
    margin-top: var(--space-m);
  }
}

.amount__title {
  color: var(--brown-grey);
  margin-right: var(--space-m);
}

.amount__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: var(--space-xs);
  font-weight: bold;
  border: 2px solid var(--azure);
}

@media mobile--portrait {
  .amount__wrapper {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

@media mobile-s--portrait {
  .amount__wrapper {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.amount__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 30px;
  height: 30px;
  color: var(--black-pure);
  cursor: pointer;
  -webkit-transition: all 0.5s var(--cubic-end-quick);
  transition: all 0.5s var(--cubic-end-quick);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.amount__button:hover {
  background-color: var(--azure);
  color: var(--white-pure);
}

.amount__number {
  width: 40px;
  margin: 0 var(--space-m);
  text-align: center;
  font-family: var(--mort-regular);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.ecommerce {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.ecommerce__login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #1c1c4514;
}

.ecommerce__login .profile {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 0;
}

.ecommerce .register {
  min-height: 300px;
}

.ecommerce .register__content {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  margin-top: var(--space-xxl);
  padding-bottom: var(--space-xl);
  -webkit-box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15), 0 10px 10px rgba(0, 0, 0, 0.12);
          box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15), 0 10px 10px rgba(0, 0, 0, 0.12);
  margin-bottom: var(--space-xxl);
}

.ecommerce .register__content p {
  padding: var(--space-m);
}

.ecommerce .register__content h4,
.ecommerce .register__content a {
  color: #1C1C45;
}

.ecommerce .register__content input {
  border-bottom: 2px solid lightgray;
}

.ecommerce .register__content .button-block--start {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media hd-laptop {
  .ecommerce .register__content {
    margin-bottom: calc(var(--space-xl) + var(--space-m));
  }
}

@media (min-width: 1200px) and (max-width: 1600px) {
  .ecommerce .register__content {
    margin-bottom: calc(var(--space-xl) + var(--space-m));
  }
}

@media ipad-pro--landscape {
  .ecommerce .register__content {
    margin-bottom: calc(var(--space-xl) + var(--space-m));
  }
}

@media ipad-pro--portrait {
  .ecommerce .register__content {
    padding: var(--space-l) var(--space-xl);
    margin-bottom: calc(var(--space-xl) + var(--space-m));
  }
}

@media ipad--landscape {
  .ecommerce .register__content {
    padding: var(--space-l) var(--space-xl);
    margin-bottom: calc(var(--space-xl) + var(--space-m));
  }
}

@media ipad--portrait {
  .ecommerce .register__content {
    padding: var(--space-l) var(--space-xl);
  }
}

@media mobile--portrait {
  .ecommerce .register__content {
    padding: var(--space-s) 0;
  }
}

@media mobile-s--portrait {
  .ecommerce .register__content {
    padding: var(--space-s) 0;
  }
}

.ecommerce .register__content .form {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
}

.ecommerce .register__title {
  margin: var(--space-m) 0 var(--space-l) 0;
  color: var(--white) !important;
  background-color: #1C1C45;
  padding: var(--space-m);
}

.ecommerce .register__subtitle {
  margin-top: 0;
  margin-bottom: var(--space-s);
  padding: var(--space-m);
  font-family: var(--display-3-ff) !important;
}

.ecommerce .register .data-blocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: var(--space-m);
}

.ecommerce .register .data-blocks .register__block {
  width: 100%;
}

@media ipad--portrait {
  .ecommerce .register .data-blocks .register__block {
    width: 100%;
    margin-right: 0;
  }
  .ecommerce .register .data-blocks .register__block input,
  .ecommerce .register .data-blocks .register__block select {
    min-width: 0;
  }
  .ecommerce .register .data-blocks .register__block label {
    font-size: 14px;
  }
}

@media tablet--portrait {
  .ecommerce .register .data-blocks .register__block {
    width: 100%;
    margin-right: 0;
  }
  .ecommerce .register .data-blocks .register__block input,
  .ecommerce .register .data-blocks .register__block select {
    min-width: 0;
  }
  .ecommerce .register .data-blocks .register__block label {
    font-size: 14px;
  }
}

@media mobile--portrait {
  .ecommerce .register .data-blocks .register__block {
    width: 100%;
    margin-right: 0;
  }
  .ecommerce .register .data-blocks .register__block input,
  .ecommerce .register .data-blocks .register__block select {
    min-width: 0;
  }
  .ecommerce .register .data-blocks .register__block label {
    font-size: 14px;
  }
}

@media mobile--landscape {
  .ecommerce .register .data-blocks .register__block {
    width: 100%;
  }
}

@media mobile-s--portrait {
  .ecommerce .register .data-blocks .register__block {
    width: 100%;
    margin-right: 0;
  }
  .ecommerce .register .data-blocks .register__block input,
  .ecommerce .register .data-blocks .register__block select {
    min-width: 0;
  }
  .ecommerce .register .data-blocks .register__block label {
    font-size: 14px;
  }
}

@media mobile-s--landscape {
  .ecommerce .register .data-blocks .register__block {
    width: 100%;
  }
}

.ecommerce .register__block {
  margin-top: 0;
  padding: var(--space-l);
  padding-top: 0;
}

@media mobile--portrait {
  .ecommerce .register__block {
    padding: var(--space-m) var(--space-m);
  }
}

@media mobile-s--portrait {
  .ecommerce .register__block {
    padding: var(--space-m) var(--space-m);
  }
}

.ecommerce .register__block .form__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: var(--space-m);
}

.ecommerce .register__block .form__block label {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: end;
  margin-right: 20px;
}

.ecommerce .register__block .form__block input,
.ecommerce .register__block .form__block .form__select {
  -webkit-box-flex: 4;
      -ms-flex: 4;
          flex: 4;
}

.ecommerce .register__block .form__block input,
.ecommerce .register__block .form__block select {
  min-width: 13.75rem;
  padding: var(--space-xs) var(--space-s);
}

.ecommerce .register__block .form__block select {
  width: 100%;
  -webkit-appearance: none;
  border: 1px solid #d7d7d7;
  background-color: white;
  min-height: var(--space-l);
  border-radius: 0;
  font-size: 14px;
}

.ecommerce .register .form__block--legal {
  padding-left: var(--space-m);
  padding-right: var(--space-m);
}

.ecommerce .register .buttons {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

.ecommerce .register .recover-password-form {
  min-width: var(--content-min-width);
  margin-top: var(--space-l);
}

.ecommerce .register .recover-password-form form .form__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: var(--space-m);
  padding: var(--space-m);
}

.ecommerce .register .recover-password-form form .form__block label {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.ecommerce .register .recover-password-form form .form__block input {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  min-width: 19rem;
  padding: var(--space-xs) var(--space-s);
  margin-left: var(--space-s);
  font-size: var(--body-font);
  border: 1px solid #dfdfdf;
}

@media mobile--portrait {
  .ecommerce .register .recover-password-form form {
    width: 100%;
  }
  .ecommerce .register .recover-password-form form .form__block input {
    min-width: 0;
  }
  .ecommerce .register .recover-password-form form .form__block label {
    font-size: 14px;
  }
}

@media mobile-s--portrait {
  .ecommerce .register .recover-password-form form {
    width: 100%;
  }
  .ecommerce .register .recover-password-form form .form__block input {
    min-width: 0;
  }
  .ecommerce .register .recover-password-form form .form__block label {
    font-size: 14px;
  }
}

@media mobile-s--landscape {
  .ecommerce .register .recover-password-form form {
    width: 100%;
  }
  .ecommerce .register .recover-password-form form .form__block input {
    min-width: 0;
  }
  .ecommerce .register .recover-password-form form .form__block label {
    font-size: 14px;
  }
}

.ecommerce .register .button-block button {
  text-align: center;
  display: block;
  width: 100%;
}

.ecommerce .user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: var(--space-m);
}

.ecommerce .user__initials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 80px;
  height: 80px;
  margin-bottom: var(--space-m);
  border-radius: 50%;
  background-color: black;
  color: var(--white);
  font-size: 30px;
  font-family: var(--neutra-demi);
  line-height: 30px;
  position: relative;
}

.ecommerce .user__initials:before {
  content: "";
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  border: 1px solid white;
  top: -3px;
  left: -3px;
  position: absolute;
  border-radius: 50%;
}

.ecommerce .user__name {
  text-align: center;
  color: var(--brown-grey);
}

.orders__empty, .orders__devolution {
  padding: 20px;
}

.orders__order {
  border-bottom: 1px solid var(--white-pure);
}

.orders__order:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.lorder--cart,
.porder--cart {
  --status-color: #6B6D76;
}

.lorder--confirmed,
.porder--confirmed {
  --status-color: #FF9900;
}

.lorder--paid,
.porder--paid {
  --status-color: #5B85AA;
}

.lorder--shipment,
.porder--shipment {
  --status-color: #4AAD52;
}

.lorder--delivered,
.porder--delivered {
  --status-color: #3C4F76;
}

.lorder--canceled,
.porder--canceled {
  --status-color: #DA3E52;
}

.lorder--returned,
.porder--returned {
  --status-color: #561643;
}

.lorder {
  display: -ms-grid;
  display: grid;
      grid-template-areas: 'icon reference status   price more' 'icon date      products price more';
  -ms-grid-columns: min-content 1.5fr 2fr 1fr min-content;
      grid-template-columns: -webkit-min-content 1.5fr 2fr 1fr -webkit-min-content;
      grid-template-columns: min-content 1.5fr 2fr 1fr min-content;
  grid-gap: 0 var(--space-s);
  padding: var(--space-s);
  font-family: var(--neutra-regular);
  cursor: pointer;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

@media mobile--portrait {
  .lorder {
        grid-template-areas: 'icon      status    price     more' 'reference reference price     more ' 'date      date      price     more ' 'products  products  price     more ';
    -ms-grid-columns: min-content 2fr 1fr min-content;
        grid-template-columns: -webkit-min-content 2fr 1fr -webkit-min-content;
        grid-template-columns: min-content 2fr 1fr min-content;
  }
}

@media mobile-s--portrait {
  .lorder {
        grid-template-areas: 'icon      status    price     more' 'reference reference price     more ' 'date      date      price     more ' 'products  products  price     more ';
    -ms-grid-columns: min-content 2fr 1fr min-content;
        grid-template-columns: -webkit-min-content 2fr 1fr -webkit-min-content;
        grid-template-columns: min-content 2fr 1fr min-content;
  }
}

.lorder:hover {
  background-color: var(--blue-pale-light);
}

.lorder strong {
  font-family: var(--neutra-bold);
}

.lorder__icon {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 1;
  grid-area: icon;
  -ms-flex-item-align: center;
      align-self: center;
  color: var(--status-color);
  font-size: 12px;
}

.lorder__date {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: date;
}

.lorder__reference {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: reference;
  margin-top: 5px;
}

.lorder__status {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: status;
  color: var(--status-color);
}

@media (max-width: 1024px) {
  .lorder__status {
    margin-top: 3px;
  }
}

.lorder__products {
  -ms-grid-row: 2;
  -ms-grid-column: 3;
  grid-area: products;
}

.lorder__price {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: price;
  -ms-flex-item-align: center;
      align-self: center;
  font-size: 18px;
  font-weight: bold;
  text-align: right;
}

.lorder__more {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 5;
  grid-area: more;
  -ms-flex-item-align: center;
      align-self: center;
  font-size: 30px;
}

.lorder__more a {
  padding-left: var(--space-m);
}

.lorder__estimated {
  -ms-grid-column: 2;
  -ms-grid-column-span: 3;
  grid-column: 2 / 5;
  font-family: var(--neutra-regular-italic);
  font-style: italic;
}

@media mobile--portrait {
  .lorder__estimated {
    -ms-grid-column: 1;
    -ms-grid-column-span: 4;
    grid-column: 1 / 5;
  }
}

@media mobile-s--portrait {
  .lorder__estimated {
    -ms-grid-column: 1;
    -ms-grid-column-span: 4;
    grid-column: 1 / 5;
  }
}

.porder__icon {
  color: white !important;
}

.porder__icon, .porder__status {
  color: white;
}

.porder__top {
  margin-top: 20px;
  display: -ms-grid;
  display: grid;
      grid-template-areas: 'date      status   ' 'payment   total    ' 'estimated estimated';
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  padding-left: var(--space-l);
  padding-right: var(--space-l);
  grid-gap: var(--space-m) var(--space-m);
}

@media mobile--portrait {
  .porder__top {
        grid-template-areas: 'date' 'status' 'total' 'payment' 'estimated';
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    grid-gap: var(--space-m) var(--space-m);
  }
}

@media mobile-s--portrait {
  .porder__top {
        grid-template-areas: 'date' 'status' 'total' 'payment' 'estimated';
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    grid-gap: var(--space-m) var(--space-m);
  }
}

.porder__top-elem {
  text-align: center;
}

.porder__top-elem > span {
  display: block;
}

.porder__top-date {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: date;
}

.porder__top-status {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: status;
}

.porder__top-payment {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: payment;
}

.porder__top-total {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: total;
}

.porder__top-estimated {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: estimated;
}

.porder__top-title {
  margin-top: 0 !important;
  line-height: 1em;
}

.porder__top-text {
  font-family: var(--neutra-regular);
  line-height: 1em;
}

.porder__status, .porder__total {
  font-size: 20px;
  font-family: var(--neutra-bold);
  text-transform: uppercase;
}

.porder__addresses {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  grid-gap: var(--space-l);
}

@media mobile--portrait {
  .porder__addresses {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    grid-gap: 0;
  }
}

@media mobile-s--portrait {
  .porder__addresses {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    grid-gap: 0;
  }
}

.porder__address p {
  margin-bottom: 0;
}

.porder__invoice {
  text-align: right;
}

.porder__items {
  padding-bottom: var(--space-m);
  margin-bottom: var(--space-s);
  border-bottom: 1px solid var(--brown-grey);
}

.porder__item:after {
  content: '';
  height: 3px;
  margin-top: var(--space-s);
  margin-bottom: var(--space-m);
  background-image: url(../resources/style/dot-black.svg);
  background-position: left center;
  background-size: auto 3px;
  background-repeat: repeat-x;
}

.porder__item:last-child:after {
  display: none;
}

.porder__totals {
  margin-bottom: var(--space-m);
}

.porder .profile__subtitle {
  padding-bottom: var(--space-s);
  margin-top: var(--space-l);
  margin-bottom: var(--space-s);
  font-size: 1.5rem;
  border-bottom: 1px solid var(--brown-grey);
}

@media mobile--portrait {
  .porder .profile__subtitle {
    font-size: 1.3rem;
  }
}

@media mobile-s--portrait {
  .porder .profile__subtitle {
    font-size: 1.3rem;
  }
}

.status {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: min-content 1fr 2fr;
      grid-template-columns: -webkit-min-content 1fr 2fr;
      grid-template-columns: min-content 1fr 2fr;
  grid-gap: var(--space-l);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: var(--space-s) var(--space-m);
}

@media mobile--portrait {
  .status {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    grid-gap: var(--space-m);
  }
}

@media mobile-s--portrait {
  .status {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    grid-gap: var(--space-m);
  }
}

.status--cart {
  --status-color: #6B6D76;
}

.status--confirmed {
  --status-color: #FF9900;
}

.status--paid {
  --status-color: #5B85AA;
}

.status--shipment {
  --status-color: #4AAD52;
}

.status--delivered {
  --status-color: #3C4F76;
}

.status--canceled {
  --status-color: #DA3E52;
}

.status--returned {
  --status-color: #561643;
}

.status:nth-child(2n) {
  background-color: var(--g-05);
}

.status__date {
  font-family: var(--neutra-regular);
  text-align: start;
  line-height: 1.2em;
}

.status__date span {
  display: block;
}

.status__type {
  color: var(--status-color);
  text-transform: uppercase;
  font-family: var(--neutra-regular);
  text-align: center;
}

@media mobile--portrait {
  .status__comments {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
  }
}

@media mobile-s--portrait {
  .status__comments {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
  }
}

.pgallery {
  position: relative;
}

.pgallery__wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.pgallery__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.pgallery__item--selected {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: all 0.5s var(--cubic-end-quick);
  transition: all 0.5s var(--cubic-end-quick);
}

.pgallery__item--hidden {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: all 0.5s var(--cubic-end-quick);
  transition: all 0.5s var(--cubic-end-quick);
}

.pgallery__item-text {
  position: absolute;
  bottom: var(--space-l);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media mobile--portrait {
  .pgallery__item-text {
    bottom: var(--space-m);
  }
}

@media mobile-s--portrait {
  .pgallery__item-text {
    bottom: var(--space-m);
  }
}

.pgallery__image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.shop__options {
  margin-bottom: var(--space-m);
}

.shop__total {
  margin-bottom: var(--space-s);
}

.options {
  position: relative;
}

.options--hidden {
  display: none;
}

.options__wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}

.options__wrapper:nth-child(2) {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.options__wrapper--hidden {
  opacity: 0;
}

.options__option {
  margin-bottom: var(--space-m);
}

.options__option:last-child {
  margin-bottom: 0;
}

.options__description {
  display: none;
}

.option__values {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(150px, 1fr))[3];
      grid-template-columns: repeat(3, minmax(150px, 1fr));
  grid-gap: var(--space-m);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

@media mobile--portrait {
  .option__values {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

.option__value:last-child {
  margin-right: 0;
}

.value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  cursor: pointer;
}

.value__image {
  background-color: rgba(255, 255, 255, 0.4);
  text-align: center;
  -webkit-transition: all 0.5s var(--cubic-end-quick);
  transition: all 0.5s var(--cubic-end-quick);
}

.value__image img {
  width: 100%;
  height: 175px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transform: scale(0.9, 0.9);
          transform: scale(0.9, 0.9);
  -webkit-transition: all 0.5s var(--cubic-end-quick);
  transition: all 0.5s var(--cubic-end-quick);
}

@media mobile--portrait {
  .value__image img {
    height: 120px;
  }
}

.value__text {
  padding: var(--space-s);
  border-bottom: 1px solid var(--white);
  font-family: var(--neutra-demi);
  text-transform: uppercase;
  text-align: center;
  line-height: 1em;
  -webkit-transition: all 0.5s var(--cubic-end-quick);
  transition: all 0.5s var(--cubic-end-quick);
}

@media mobile--portrait {
  .value__text {
    font-size: 14px;
  }
}

.value--selected .value__image {
  background-color: var(--white);
}

.value--selected .value__image img {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.value--selected .value__text {
  border-color: var(--white);
  background-color: var(--white);
  color: var(--black);
}

.value:hover .value__image img {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.value--disabled, .value--disabled:hover {
  cursor: not-allowed;
  opacity: 0.4;
}

.value--disabled .value__image, .value--disabled:hover .value__image {
  -webkit-transform: scale(0.9, 0.9);
          transform: scale(0.9, 0.9);
}

.value--disabled .value__text, .value--disabled:hover .value__text {
  border-color: var(--g-30);
  background-color: var(--g-30);
  color: var(--white);
}

.amount {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: var(--space-l);
}

@media (max-width: 767px) {
  .amount {
    margin-top: var(--space-m);
  }
}

.amount__title {
  color: var(--brown-grey);
  margin-right: var(--space-m);
}

.amount__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: var(--space-xs);
  font-weight: bold;
  border: 2px solid var(--azure);
}

@media mobile--portrait {
  .amount__wrapper {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

@media mobile-s--portrait {
  .amount__wrapper {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.amount__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 30px;
  height: 30px;
  color: var(--black-pure);
  cursor: pointer;
  -webkit-transition: all 0.5s var(--cubic-end-quick);
  transition: all 0.5s var(--cubic-end-quick);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.amount__button:hover {
  background-color: var(--azure);
  color: var(--white-pure);
}

.amount__number {
  width: 40px;
  margin: 0 var(--space-m);
  text-align: center;
  font-family: var(--mort-regular);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.total__old-price {
  min-height: 20px;
  font-size: 20px;
  font-family: var(--neutra-demi);
  line-height: 1em;
  text-decoration: line-through;
}

.total__price {
  font-size: 45px;
  font-family: var(--mort-semi-bold);
  line-height: 1em;
}

@media mobile--portrait {
  .total__price {
    font-size: 35px;
  }
}

.total__vat {
  font-size: 16px;
  font-family: var(--neutra-regular-italic);
  font-style: italic;
  line-height: 1em;
  text-align: right;
}

.shop-cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.shop-cart__description {
  grid-area: desc;
  font-family: var(--neutra-regular);
  min-height: 50px;
  margin-right: var(--space-m);
  font-size: var(--body-fs);
  line-height: 1em;
}

@media mobile--portrait {
  .shop-cart__description {
    --body-fs: 14px;
    min-height: 0;
  }
}

.shop-cart__description strong {
  font-family: var(--neutra-bold);
}

.shop-cart__description > * {
  margin-bottom: 0;
}

.shop-cart .button {
  background-color: white;
  color: #1C1C45;
  white-space: nowrap;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  border: 1px solid #1C1C45;
  padding: 5px 7px;
}

.shop-cart .button span {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.shop-cart .button:hover {
  background-color: #1C1C45;
  color: white;
  border: 1px solid #1C1C45;
}

.shop-cart .button.construction-button.selected {
  background-color: #1C1C45;
  color: white;
  border: 1px solid #1C1C45;
}

@media (max-width: 767px) {
  .shop-cart__buttons {
    margin-top: var(--space-m);
  }
}

.basket {
  width: 100%;
  padding-bottom: var(--space-l);
}

@media ipad-pro--portrait {
  .basket {
    padding: var(--space-l) var(--space-l) 0;
  }
}

@media ipad--landscape {
  .basket {
    padding: var(--space-l) var(--space-l) 0;
  }
}

@media ipad--portrait {
  .basket {
    padding: var(--space-l) var(--space-l);
  }
}

@media tablet--portrait {
  .basket {
    padding: var(--space-l) 0;
  }
}

@media mobile--portrait {
  .basket {
    padding: var(--space-l) 0;
  }
}

@media mobile-s--portrait {
  .basket {
    padding: var(--space-l) 0;
  }
}

.basket__title {
  background-color: #4A4A4A;
  color: white;
  padding: var(--space-m);
  font-size: 3rem;
  text-transform: uppercase;
  border-radius: 10px;
}

.basket__empty {
  border: 1px solid var(--bc-1-lighter-25);
  padding: var(--space-m);
}

.basket__empty--hidden {
  display: none;
}

.basket__empty .button {
  width: 100%;
  display: block;
  text-align: center;
}

.basket__full {
  background-color: white;
  padding: var(--space-s);
  border: 1px solid var(--bc-1-lighter-25);
}

@media mobile-s--portrait {
  .basket__full {
    padding: 0;
  }
}

.basket__full--hidden {
  display: none;
}

.basket__delete {
  font-family: var(--neutra-regular-italic);
  font-style: italic;
  -webkit-transition: color 0.5s var(--cubic-end-quick);
  transition: color 0.5s var(--cubic-end-quick);
  cursor: pointer;
}

.basket__delete span {
  border-bottom: 1px solid var(--black);
  -webkit-transition: border-color 0.5s var(--cubic-end-quick);
  transition: border-color 0.5s var(--cubic-end-quick);
}

.basket__delete:hover {
  color: var(--red-alert);
}

.basket__delete:hover span {
  border-color: var(--red-alert);
}

.basket__buttons {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media mobile--portrait {
  .basket__buttons {
    -ms-flex-wrap: inherit;
        flex-wrap: inherit;
  }
  .basket__buttons .button {
    margin-left: 0;
  }
}

@media mobile-s--portrait {
  .basket__buttons {
    -ms-flex-wrap: inherit;
        flex-wrap: inherit;
  }
  .basket__buttons .button {
    margin-left: 0;
  }
}

.basket__link {
  font-family: var(--neutra-regular-italic);
  font-style: italic;
  margin-right: var(--space-s);
}

.basket .button {
  background-color: white;
  color: #1C1C45;
  white-space: nowrap;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  border: 1px solid #1C1C45;
}

.basket .button span {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.7px;
}

.basket .button:hover {
  background-color: #1C1C45;
  color: white;
  border: 1px solid #1C1C45;
}

/* -------------------------- */
.btable__header {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 145px 4fr (minmax(125px, 1.5fr))[3];
      grid-template-columns: 145px 4fr repeat(3, minmax(125px, 1.5fr));
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: var(--space-m);
  border-bottom: 1px solid #1C1C45;
}

@media mobile--portrait {
  .btable__header {
    display: none;
  }
}

@media mobile-s--portrait {
  .btable__header {
    display: none;
  }
}

.btable__h {
  padding: var(--space-s);
  font-size: 18px;
  line-height: 1em;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
}

.btable__h--product {
  text-align: left;
  -ms-grid-column-span: 2;
      grid-column-end: span 2;
}

.btable__h--amount {
  -ms-grid-column: 4;
      grid-column-start: 4;
  grid-column-end: 6;
}

.btable__content {
  padding-bottom: var(--space-m);
  margin-bottom: var(--space-m);
  border-bottom: 1px solid #1C1C45;
}

@media mobile--portrait {
  .btable__content {
    padding-top: var(--space-m);
    border-top: 1px solid var(--bc-1);
  }
}

.btable__item:after {
  content: '';
  height: 3px;
  margin-top: var(--space-s);
  margin-bottom: var(--space-m);
  background-image: url(../resources/style/dot-black.svg);
  background-position: left center;
  background-size: auto 3px;
  background-repeat: repeat-x;
}

.btable__item:last-child:after {
  display: none;
}

.btable__footer {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  margin-bottom: var(--space-l);
}

@media ipad--portrait {
  .btable__footer {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

@media tablet--portrait {
  .btable__footer {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

@media mobile--portrait {
  .btable__footer {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

@media ipad--portrait {
  .btable__footer-features {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2 / 3;
  }
}

@media tablet--portrait {
  .btable__footer-features {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2 / 3;
  }
}

@media mobile--portrait {
  .btable__footer-features {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2 / 3;
  }
}

.btable__footer-features .shop-features {
  -ms-grid-columns: (auto)[3];
      grid-template-columns: repeat(3, auto);
  border-right: 1px solid #4A4A4A;
  height: 100%;
}

.btable__footer-features .shop-features__icon {
  opacity: 0.6;
}

@media ipad--portrait {
  .btable__footer-features .shop-features {
    border-right: none;
  }
}

@media tablet--portrait {
  .btable__footer-features .shop-features {
    border-right: none;
  }
}

@media mobile--portrait {
  .btable__footer-features .shop-features {
    border-right: none;
  }
}

.btable__footer-features .shop-features__feature {
  border-right: none;
  -ms-grid-columns: max-content 1fr max-content;
      grid-template-columns: -webkit-max-content 1fr -webkit-max-content;
      grid-template-columns: max-content 1fr max-content;
}

@media (max-width: 767px) {
  .btable__footer-features .shop-features__feature {
    -ms-grid-columns: 1fr max-content;
        grid-template-columns: 1fr -webkit-max-content;
        grid-template-columns: 1fr max-content;
  }
}

.btable__footer-features .shop-features__feature:nth-child(1):after, .btable__footer-features .shop-features__feature:nth-child(2):after {
  content: '';
  width: 3px;
  background-image: url(../resources/style/dot-black-vertical.svg);
  background-position: center top;
  background-size: 3px auto;
  background-repeat: repeat-y;
}

@media mobile--portrait {
  .btable__footer-features .shop-features__feature:nth-child(1):after, .btable__footer-features .shop-features__feature:nth-child(2):after {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2 / 3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1 / 3;
  }
}

@media mobile-s--portrait {
  .btable__footer-features .shop-features__feature:nth-child(1):after, .btable__footer-features .shop-features__feature:nth-child(2):after {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2 / 3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1 / 3;
  }
}

.btable__footer-features .shop-features__feature:last-child {
  display: none;
}

.btable__footer-features .shop-features__feature:nth-child(3) {
  display: -ms-grid;
  display: grid;
}

.btable__subtotal {
  display: -ms-grid;
  display: grid;
      grid-template-areas: "title price" "..... text ";
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
}

@media ipad--portrait {
  .btable__subtotal {
    -ms-grid-columns: 1fr auto;
        grid-template-columns: 1fr auto;
    margin-bottom: var(--space-l);
  }
}

@media tablet--portrait {
  .btable__subtotal {
    -ms-grid-columns: 1fr auto;
        grid-template-columns: 1fr auto;
    margin-bottom: var(--space-l);
  }
}

@media mobile--portrait {
  .btable__subtotal {
    -ms-grid-columns: 1fr auto;
        grid-template-columns: 1fr auto;
        grid-template-areas: "title price" "text  text ";
    margin-bottom: var(--space-l);
  }
}

.btable__subtotal-title {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: title;
  text-transform: uppercase;
  font-family: var(--neutra-regular);
  padding-left: var(--space-m);
  color: var(--brown-grey);
  font-size: 2rem;
  -ms-flex-item-align: end;
      -ms-grid-row-align: end;
      align-self: end;
  text-align: start;
  margin-bottom: var(--space-s);
}

@media ipad--portrait {
  .btable__subtotal-title {
    padding-right: var(--space-m);
    text-align: right;
  }
}

@media tablet--portrait {
  .btable__subtotal-title {
    padding-right: var(--space-m);
    text-align: right;
  }
}

@media mobile--portrait {
  .btable__subtotal-title {
    padding-right: var(--space-m);
    text-align: left;
  }
}

.btable__subtotal-price {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: price;
  margin-bottom: var(--space-s);
  font-size: 33px;
  font-family: var(--mort-semi-bold);
  line-height: 1em;
  text-align: right;
}

.btable__subtotal-text {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: text;
  font-size: 14px;
  font-family: var(--neutra-regular-italic);
  font-style: italic;
  line-height: 1em;
  text-align: right;
  color: var(--brown-grey);
}

.btable__subtotal-text p {
  margin-bottom: var(--space-s);
}

.bitem {
  display: -ms-grid;
  display: grid;
      grid-template-areas: "image name price amount total" "image delete price amount total";
  -ms-grid-columns: 290px 4fr (minmax(125px, 1.5fr))[3];
      grid-template-columns: 290px 4fr repeat(3, minmax(125px, 1.5fr));
  -ms-grid-rows: 1fr auto;
      grid-template-rows: 1fr auto;
  font-family: var(--neutra-regular);
  font-size: 16px;
  line-height: 1em;
}

@media mobile--portrait {
  .bitem {
        grid-template-areas: 'image  name  ' 'image  total ' 'delete amount';
    -ms-grid-columns: auto 1fr;
        grid-template-columns: auto 1fr;
  }
}

@media mobile-s--portrait {
  .bitem {
        grid-template-areas: 'image  name  ' 'image  total ' 'delete amount';
    -ms-grid-columns: auto 1fr;
        grid-template-columns: auto 1fr;
  }
}

.bitem strong {
  font-family: var(--neutra-bold);
  font-size: inherit;
  line-height: 1em;
  font-size: 2rem;
}

.bitem__image {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 1;
  grid-area: image;
  width: 145px;
  height: 145px;
  -o-object-fit: contain;
     object-fit: contain;
  border-right: 1px solid #4A4A4A;
}

.bitem__name {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 1;
  grid-area: image;
  padding-left: var(--space-m);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.2rem;
  line-height: 1.2;
  grid-row: 1;
}

@media mobile--portrait {
  .bitem__name {
    padding-left: var(--space-s);
    font-size: 1.1rem;
  }
}

@media mobile-s--portrait {
  .bitem__name {
    padding-left: var(--space-s);
    font-size: 1.1rem;
  }
}

.bitem__name a {
  text-decoration: none;
}

.bitem__delete {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: total;
  padding-left: var(--space-m);
  grid-row: 1;
  -ms-flex-item-align: center;
      align-self: center;
}

@media mobile--portrait {
  .bitem__delete {
    padding-left: 0;
    text-align: center;
  }
}

.bitem__unit-price {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: price;
}

.bitem__amount {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: amount;
}

.bitem__total {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: total;
}

@media mobile--portrait {
  .bitem__total {
    display: block;
    padding-bottom: var(--space-m);
  }
}

@media mobile-s--portrait {
  .bitem__total {
    display: block;
    padding-bottom: var(--space-m);
  }
}

.bitem__unit-price, .bitem__amount, .bitem__total {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  -ms-grid-column-align: center;
      justify-self: center;
  font-size: 18px;
  text-align: center;
}

@media mobile--portrait {
  .bitem__unit-price, .bitem__amount, .bitem__total {
    -ms-flex-item-align: auto;
        -ms-grid-row-align: auto;
        align-self: auto;
    -ms-grid-column-align: auto;
        justify-self: auto;
    padding-left: var(--space-m);
    text-align: left;
  }
}

@media mobile--portrait {
  .bitem__unit-price {
    padding-bottom: var(--space-m);
  }
}

@media mobile--portrait {
  .bitem__unit-price {
    display: none;
  }
}

@media mobile-s--portrait {
  .bitem__unit-price {
    display: none;
  }
}

.bitem__old-price {
  display: block;
  color: rgba(0, 0, 0, 0.4);
  text-decoration: line-through;
}

.bitem__price {
  display: block;
  margin-top: var(--space-s);
}

@media mobile-s--portrait {
  .bitem__price {
    margin-bottom: var(--space-s);
  }
}

.bitem__amount {
  margin-top: 0;
}

.bitem__amount .amount__number {
  width: 30px;
  font-family: var(--neutra-regular);
  font-size: 18px;
}

@media ipad--portrait {
  .bitem__amount .amount__button {
    width: 25px;
    height: 25px;
  }
  .bitem__amount .amount__number {
    font-size: 16px;
  }
}

@media tablet--portrait {
  .bitem__amount .amount__button {
    width: 25px;
    height: 25px;
  }
  .bitem__amount .amount__number {
    font-size: 16px;
  }
}

@media mobile--portrait {
  .bitem__amount .amount__button {
    width: 20px;
    height: 20px;
  }
  .bitem__amount .amount__number {
    font-size: 14px;
  }
}

@media mobile-s--portrait {
  .bitem__amount .amount__button {
    width: 20px;
    height: 20px;
  }
  .bitem__amount .amount__number {
    font-size: 14px;
  }
}

.bitem:after {
  -ms-grid-column-span: 5;
      grid-column-end: span 5;
}

.checkout {
  display: -ms-grid;
  display: grid;
      grid-template-areas: 'shipping aside' 'billing  aside' 'payment  aside' 'discount-code aside' 'checkout-end aside';
  -ms-grid-columns: 2fr 1fr;
      grid-template-columns: 2fr 1fr;
  width: 100%;
  max-width: 1200px;
  margin: 100px auto auto;
}

.checkout a {
  color: #000000;
}

@media ipad-pro--portrait {
  .checkout {
    padding: var(--space-l) var(--space-l) 0;
  }
}

@media ipad--landscape {
  .checkout {
    padding: var(--space-l) var(--space-l) 0;
  }
}

@media ipad--portrait {
  .checkout {
    padding: 0 var(--space-l);
  }
}

@media tablet--portrait {
  .checkout {
    padding: var(--space-l) var(--space-l) 0;
        grid-template-areas: 'shipping' 'billing' 'payment' 'discount-code' 'aside' 'checkout-end';
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

@media mobile--portrait {
  .checkout {
    padding: var(--space-l) var(--space-m) 0;
        grid-template-areas: 'shipping' 'billing' 'payment' 'discount-code' 'aside' 'checkout-end';
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

@media mobile-s--portrait {
  .checkout {
    padding: 0 var(--space-m);
  }
}

@media mobile-s--landscape {
  .checkout {
    padding: var(--space-l) var(--space-m) 0;
        grid-template-areas: 'shipping' 'billing' 'payment' 'discount-code' 'aside' 'checkout-end';
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.checkout__user {
  grid-area: user;
  -webkit-box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15), 0 10px 10px rgba(0, 0, 0, 0.12);
          box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15), 0 10px 10px rgba(0, 0, 0, 0.12);
}

.checkout__contact {
  grid-area: contact;
}

.checkout__shipping {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: shipping;
  background-color: white;
  padding: var(--space-l);
}

.checkout__shipping .shipping {
  background-color: #fff4d5;
}

@media (max-width: 767px) {
  .checkout__shipping {
    padding: 0px !important;
  }
}

.checkout__billing {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: billing;
  background-color: white;
  padding-left: var(--space-l);
  padding-right: var(--space-l);
  padding-bottom: var(--space-l);
}

.checkout__billing .billing {
  background-color: var(--white);
}

.checkout__billing .billing .billing__question,
.checkout__billing .billing .billing__wrapper {
  padding: var(--space-m);
}

@media (max-width: 767px) {
  .checkout__billing {
    padding: 0px !important;
  }
}

.checkout__payment {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: payment;
  display: -ms-grid;
  display: grid;
      grid-template-columns: 1fr 1fr;
  background-color: white;
  padding-left: var(--space-l);
  padding-right: var(--space-l);
  padding-bottom: var(--space-l);
}

@media (max-width: 767px) {
  .checkout__payment {
    padding: 0px !important;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.checkout__code {
  -ms-grid-row: 4;
  -ms-grid-column: 1;
  grid-area: discount-code;
  padding-left: var(--space-l);
  padding-right: var(--space-l);
  padding-bottom: var(--space-l);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
}

@media (max-width: 767px) {
  .checkout__code {
    padding: 0;
  }
}

.checkout__code .form {
  background: var(--white);
}

.checkout__aside {
  -ms-grid-row: 1;
  -ms-grid-row-span: 5;
  -ms-grid-column: 2;
  grid-area: aside;
}

@media (max-width: 767px) {
  .checkout__aside .checkout__resume {
    position: initial;
    margin-bottom: 40px;
  }
}

.checkout__end {
  background-color: white;
  -ms-grid-row: 5;
  -ms-grid-column: 1;
  grid-area: checkout-end;
  padding-left: var(--space-l);
  padding-right: var(--space-l);
  padding-bottom: var(--space-l);
}

@media (max-width: 767px) {
  .checkout__end {
    padding: 0;
  }
}

.checkout__note {
  --color: var(--black);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: var(--space-m);
  padding-left: 0;
  background-color: rgba(121, 209, 126, 0.3);
  color: var(--color);
  font-family: var(--neutra-regular);
  font-size: 16px;
  line-height: 1em;
}

.checkout__note--yellow {
  --color: var(--black);
  background-color: rgba(237, 224, 77, 0.5);
}

.checkout__note--blue {
  --color: var(--black);
  background-color: rgba(75, 177, 207, 0.5);
}

.checkout__note--transparent {
  --color: var(--black);
  background-color: transparent;
}

.checkout__note strong {
  font-family: var(--neutra-bold);
}

.checkout__note .link {
  --color: var(--color);
}

.checkout__note-icon {
  margin-right: var(--space-m);
  font-size: 20px;
  color: var(--brown-grey-dark);
}

.checkout__note-text {
  color: var(--brown-grey-dark);
}

.checkout__note-text p {
  margin-bottom: 0;
}

.checkout__code {
  border: 2px solid var(--dark-salmon);
}

.checkout__code .title-font {
  font-size: 20px;
}

.checkout__code .form {
  padding: var(--space-m);
}

.checkout__code .form form {
  margin: 0 auto;
}

.checkout__code .form .form__block {
  -ms-grid-columns: auto 1fr;
      grid-template-columns: auto 1fr;
  margin-bottom: var(--space-s);
}

.checkout__code .form .form__label {
  width: 140px;
  font-size: 14px;
  text-align: end;
  margin-right: 10px;
}

.checkout__code .form .form__input {
  font-family: var(--neutra-bold);
  text-transform: uppercase;
  border: 0;
  height: 35.97px;
  border-bottom: 1px solid #4A4A4A;
  background-color: var(--white);
  margin-bottom: var(--space-m);
}

.checkout__code .form .button {
  width: 100%;
}

.checkout__end .buttons {
  margin-top: 0;
}

.checkout__end .buttons .button {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.checkout__message {
  margin-bottom: var(--space-m);
  font-family: var(--neutra-regular);
  font-size: 14px;
  line-height: 1.2em;
  color: var(--brown-grey-dark);
}

.checkout__message strong {
  font-family: var(--neutra-bold);
}

.checkout__title {
  margin-bottom: var(--space-m);
  color: var(--white) !important;
  border: 2px solid var(--azure);
  background-color: #4A4A4A;
  padding: var(--space-m);
  text-transform: uppercase;
  color: var(--bc-1-lighter-5);
  font-size: 20px;
  line-height: 20px;
}

.corder {
  background-color: var(--white);
  font-family: var(--neutra-regular);
  border: 2px solid var(--dark-salmon);
  margin-top: var(--space-l);
}

.corder strong {
  font-family: var(--neutra-bold);
  font-size: inherit;
  line-height: inherit;
}

.corder__title {
  padding: var(--space-m);
  line-height: 1.2;
  color: var(--white);
  background-color: #4A4A4A;
  text-transform: uppercase;
  font-size: 20px;
  border-bottom: 2px solid #4A4A4A;
}

.corder__items {
  padding: var(--space-m);
  border-bottom: 2px solid var(--dark-salmon);
}

.corder__totals {
  padding: 0 var(--space-m) var(--space-m) var(--space-m);
}

.corder__item:after {
  content: '';
  height: 3px;
  margin-top: var(--space-s);
  /*margin-bottom: var(--space-m);*/
  background-image: url(../resources/style/dot-black.svg);
  background-position: left center;
  background-size: auto 3px;
  background-repeat: repeat-x;
}

.corder__item:last-child:after {
  display: none;
}

.lorder--cart,
.porder--cart {
  --status-color: #6b6d76;
}

.lorder--confirmed,
.porder--confirmed {
  --status-color: #ff9900;
}

.lorder--paid,
.porder--paid {
  --status-color: #5b85aa;
}

.lorder--shipment,
.porder--shipment {
  --status-color: #4aad52;
}

.lorder--delivered,
.porder--delivered {
  --status-color: #3c4f76;
}

.lorder--canceled,
.porder--canceled {
  --status-color: #da3e52;
}

.lorder--returned,
.porder--returned {
  --status-color: #561643;
}

.lorder {
  display: -ms-grid;
  display: grid;
      grid-template-areas: 'icon reference status   price more' 'icon date      products price more';
  -ms-grid-columns: min-content 1.5fr 2fr 1fr min-content;
      grid-template-columns: -webkit-min-content 1.5fr 2fr 1fr -webkit-min-content;
      grid-template-columns: min-content 1.5fr 2fr 1fr min-content;
  grid-gap: 0 var(--space-s);
  padding: var(--space-s);
  font-family: var(--neutra-regular);
  cursor: pointer;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

@media mobile--portrait {
  .lorder {
        grid-template-areas: 'icon      status    price     more' 'reference reference price     more ' 'date      date      price     more ' 'products  products  price     more ';
    -ms-grid-columns: min-content 2fr 1fr min-content;
        grid-template-columns: -webkit-min-content 2fr 1fr -webkit-min-content;
        grid-template-columns: min-content 2fr 1fr min-content;
  }
}

@media mobile-s--portrait {
  .lorder {
        grid-template-areas: 'icon      status    price     more' 'reference reference price     more ' 'date      date      price     more ' 'products  products  price     more ';
    -ms-grid-columns: min-content 2fr 1fr min-content;
        grid-template-columns: -webkit-min-content 2fr 1fr -webkit-min-content;
        grid-template-columns: min-content 2fr 1fr min-content;
  }
}

.lorder:hover {
  background-color: var(--blue-pale-light);
}

.lorder strong {
  font-family: var(--neutra-bold);
}

.lorder__icon {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 1;
  grid-area: icon;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  color: var(--status-color);
  font-size: 12px;
}

.lorder__date {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: date;
}

.lorder__reference {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: reference;
}

.lorder__status {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: status;
  color: var(--status-color);
}

.lorder__products {
  -ms-grid-row: 2;
  -ms-grid-column: 3;
  grid-area: products;
}

.lorder__price {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: price;
  -ms-flex-item-align: center;
      align-self: center;
  font-size: 15px;
  font-weight: bold;
  text-align: right;
}

.lorder__more {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 5;
  grid-area: more;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  font-size: 30px;
  padding-left: var(--space-m);
}

.lorder__estimated {
  -ms-grid-column: 2;
  -ms-grid-column-span: 3;
  grid-column: 2 / 5;
  font-family: var(--neutra-regular-italic);
  font-style: italic;
}

@media mobile--portrait {
  .lorder__estimated {
    -ms-grid-column: 1;
    -ms-grid-column-span: 4;
    grid-column: 1 / 5;
  }
}

@media mobile-s--portrait {
  .lorder__estimated {
    -ms-grid-column: 1;
    -ms-grid-column-span: 4;
    grid-column: 1 / 5;
  }
}

.porder__icon, .porder__status {
  color: var(--status-color);
}

.porder__top {
  display: -ms-grid;
  display: grid;
      grid-template-areas: 'date      status   ' 'payment   total    ' 'estimated estimated';
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  grid-gap: var(--space-l) var(--space-m);
}

@media mobile--portrait {
  .porder__top {
        grid-template-areas: 'date' 'status' 'total' 'payment' 'estimated';
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

@media mobile-s--portrait {
  .porder__top {
        grid-template-areas: 'date' 'status' 'total' 'payment' 'estimated';
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.porder__top-elem {
  text-align: center;
}

.porder__top-elem > span {
  display: block;
}

.porder__top-date {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: date;
}

.porder__top-status {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: status;
}

.porder__top-payment {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: payment;
}

.porder__top-total {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: total;
}

.porder__top-estimated {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: estimated;
}

.porder__top-title {
  margin-top: 0 !important;
  line-height: 1em;
}

.porder__top-text {
  font-family: var(--neutra-regular);
  line-height: 1em;
}

.porder__status, .porder__total {
  font-size: 20px;
  font-family: var(--neutra-bold);
  text-transform: uppercase;
}

.porder__addresses {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  grid-gap: var(--space-l);
  padding-left: var(--space-l);
  padding-right: var(--space-l);
}

@media mobile--portrait {
  .porder__addresses {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    grid-gap: 0;
  }
}

@media mobile-s--portrait {
  .porder__addresses {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    grid-gap: 0;
  }
}

.porder__details {
  padding-left: var(--space-l);
  padding-right: var(--space-l);
}

.porder__details .profile__subtitle {
  font-size: 2.5rem !important;
  border-bottom: 0px !important;
}

.porder__statuses {
  padding-left: var(--space-l);
  padding-right: var(--space-l);
}

.porder__statuses .profile__subtitle {
  font-size: 2.5rem !important;
  border-bottom: 0px !important;
}

.porder__address p {
  margin-bottom: 0;
}

.porder__address .profile__subtitle {
  font-size: 2.5rem !important;
  border-bottom: 0px !important;
}

.porder__invoice {
  text-align: right;
}

.porder__items {
  padding-bottom: var(--space-m);
  margin-bottom: var(--space-s);
  border-bottom: 1px solid var(--dark-salmon);
}

.porder__item:after {
  /*	content: '';
			height: 3px;
			margin-top: var(--space-s);*/
  margin-bottom: var(--space-m);
  /*background-image: url(../resources/style/dot-black.svg);
			background-position: left center;
			background-size: auto 3px;
			background-repeat: repeat-x;*/
}

.porder__item:last-child:after {
  display: none;
}

.porder__totals {
  margin-bottom: var(--space-m);
}

.porder .profile__subtitle {
  padding-bottom: var(--space-s);
  margin-bottom: var(--space-s);
  font-size: 1.5rem;
  border-bottom: 1px solid var(--azure);
}

@media mobile--portrait {
  .porder .profile__subtitle {
    font-size: 1.3rem;
  }
}

@media mobile-s--portrait {
  .porder .profile__subtitle {
    font-size: 1.3rem;
  }
}

.oitem {
  display: -ms-grid;
  display: grid;
      grid-template-areas: 'image  name   price' 'image  amount .....';
  -ms-grid-columns: 65px 1fr max-content;
      grid-template-columns: 65px 1fr -webkit-max-content;
      grid-template-columns: 65px 1fr max-content;
  font-size: 14px;
  line-height: 1em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.oitem:after {
  -ms-grid-column-span: 5;
      grid-column-end: span 5;
}

.oitem__image {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 1;
  grid-area: image;
}

.oitem__name {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: name;
  padding-left: var(--space-m);
  padding-right: var(--space-m);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.oitem__amount {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: amount;
  padding-left: var(--space-m);
}

.oitem__unit-price {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: price;
}

.oitem__old-price {
  display: block;
  color: rgba(0, 0, 0, 0.4);
  text-decoration: line-through;
}

.oitem__price {
  display: block;
}

.totals__total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: var(--space-s);
}

.totals__total--hidden {
  display: none;
}

.totals__total--green {
  color: var(--green-alert);
}

.totals__total--red {
  color: var(--red-alert);
}

.totals__separator {
  padding-top: var(--space-s);
  margin-bottom: var(--space-s);
  border-bottom: 1px solid var(--brown-grey);
}

.totals__value--big {
  font-family: var(--mort-semi-bold);
  font-size: 24px;
}

.payment {
  padding: var(--space-m);
  background-color: whitesmoke;
}

.payment .checkout__title {
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 3fr;
      grid-template-columns: 1fr 3fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.payment .checkout__title:hover {
  background-color: white;
  color: #4A4A4A !important;
}

.payment--active .checkout__title {
  background-color: white;
  color: #4A4A4A !important;
  border: 2px solid #4A4A4A;
  position: relative;
}

.payment--active .checkout__title:after {
  content: '\2713';
  position: absolute;
  right: 10px;
}

.payment--active .checkout__title:hover {
  background-color: white;
  color: #4A4A4A !important;
  border: 2px solid #4A4A4A;
}

.payment__description {
  font-family: var(--neutra-regular);
  line-height: 1.4;
  width: 100%;
}

.payment__description strong {
  font-family: var(--neutra-bold);
}

.payment__description .icon-card {
  font-size: 30px;
  margin-left: var(--space-m);
}

.payment__icons {
  font-size: 60px;
}

.shipping__note--hidden {
  display: none;
}

.shipping__note .checkout__note {
  padding: var(--space-m);
}

.shipping .error-placement-shipment {
  display: none;
  margin-bottom: 10px;
}

.shipping .error-placement-shipment label {
  display: block;
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
  padding: 10px 30px 5px 15px;
}

.shipping .form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  grid-column-gap: var(--space-s);
  padding: var(--space-m);
}

@media desktop {
  .shipping .form {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

@media ipad--portrait {
  .shipping .form {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

@media tablet--portrait {
  .shipping .form {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

@media ipad--landscape {
  .shipping .form {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

@media mobile--portrait {
  .shipping .form {
    display: block;
  }
}

@media mobile--landscape {
  .shipping .form {
    display: block;
  }
}

@media mobile-s--portrait {
  .shipping .form {
    display: block;
  }
}

@media mobile-s--landscape {
  .shipping .form {
    display: block;
  }
}

.shipping .form__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: var(--space-m);
}

.shipping .form__block label {
  width: 140px;
  font-size: 14px;
  text-align: end;
  margin-right: 10px;
}

@media ipad-pro--landscape {
  .shipping .form__block label {
    min-width: 120px;
  }
}

@media ipad--portrait {
  .shipping .form__block label {
    min-width: 120px;
  }
}

@media tablet--portrait {
  .shipping .form__block label {
    min-width: 120px;
  }
}

@media tablet--landscape {
  .shipping .form__block label {
    min-width: 120px;
  }
}

@media mobile--portrait {
  .shipping .form__block label {
    min-width: 120px;
  }
}

@media mobile--landscape {
  .shipping .form__block label {
    min-width: 120px;
  }
}

@media mobile-s--portrait {
  .shipping .form__block label {
    min-width: 0;
  }
}

@media mobile-s--landscape {
  .shipping .form__block label {
    min-width: 0;
  }
}

.shipping .form__block input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--bc-1-lighter-50);
}

@media mobile-s--portrait {
  .shipping .form__block input {
    width: 80%;
  }
}

@media mobile-s--landscape {
  .shipping .form__block input {
    width: 80%;
  }
}

.shipping .form__block input.form__input--invalid {
  border-color: var(--red-alert);
}

.shipping .form__block textarea {
  width: 100%;
  resize: vertical;
  border-color: #4A4A4A;
}

.shipping .form__block input,
.shipping .form__block textarea,
.shipping .form__block select {
  margin-left: var(--space-s);
  padding: var(--space-xs) var(--space-s);
  border-bottom: 1px solid #4A4A4A;
  background-color: var(--white);
}

@media (max-width: 767px) {
  .shipping .form__block input,
  .shipping .form__block textarea,
  .shipping .form__block select {
    margin-left: 0px !important;
  }
}

@media ipad-pro--landscape {
  .shipping .form__block input,
  .shipping .form__block textarea,
  .shipping .form__block select {
    border-bottom: 1px solid #4A4A4A;
  }
}

@media ipad--portrait {
  .shipping .form__block input,
  .shipping .form__block textarea,
  .shipping .form__block select {
    border-bottom: 1px solid #4A4A4A;
  }
}

@media tablet--portrait {
  .shipping .form__block input,
  .shipping .form__block textarea,
  .shipping .form__block select {
    font-size: 0.9rem;
    border-bottom: 1px solid #4A4A4A;
  }
}

@media tablet--landscape {
  .shipping .form__block input,
  .shipping .form__block textarea,
  .shipping .form__block select {
    font-size: 0.9rem;
    border-bottom: 1px solid #4A4A4A;
  }
}

@media mobile--portrait {
  .shipping .form__block input,
  .shipping .form__block textarea,
  .shipping .form__block select {
    font-size: 14px;
  }
}

@media mobile--landscape {
  .shipping .form__block input,
  .shipping .form__block textarea,
  .shipping .form__block select {
    font-size: 14px;
  }
}

@media mobile-s--portrait {
  .shipping .form__block input,
  .shipping .form__block textarea,
  .shipping .form__block select {
    font-size: 14px;
  }
}

@media mobile-s--landscape {
  .shipping .form__block input,
  .shipping .form__block textarea,
  .shipping .form__block select {
    font-size: 14px;
  }
}

.shipping .form__block--name, .shipping .form__block--address {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1 / 3;
}

.shipping .form__block--email, .shipping .form__block--state {
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-column: 3 / 4;
}

@media desktop {
  .shipping .form__block--email, .shipping .form__block--state {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / 2;
  }
}

@media ipad--portrait {
  .shipping .form__block--email, .shipping .form__block--state {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / 2;
  }
}

@media ipad--landscape {
  .shipping .form__block--email, .shipping .form__block--state {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / 2;
  }
}

@media tablet--portrait {
  .shipping .form__block--email, .shipping .form__block--state {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / 2;
  }
}

.shipping .form__block--phone, .shipping .form__block--cp {
  -ms-grid-column: 4;
  -ms-grid-column-span: 1;
  grid-column: 4 / 5;
}

@media desktop {
  .shipping .form__block--phone, .shipping .form__block--cp {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2 / 3;
  }
}

@media ipad--portrait {
  .shipping .form__block--phone, .shipping .form__block--cp {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2 / 3;
  }
}

@media ipad--landscape {
  .shipping .form__block--phone, .shipping .form__block--cp {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2 / 3;
  }
}

@media tablet--portrait {
  .shipping .form__block--phone, .shipping .form__block--cp {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2 / 3;
  }
}

.shipping .form__block--comments {
  -ms-grid-column: 1;
  -ms-grid-column-span: 4;
  grid-column: 1 / 5;
}

@media desktop {
  .shipping .form__block--comments {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
  }
}

@media ipad--portrait {
  .shipping .form__block--comments {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
  }
}

@media ipad--landscape {
  .shipping .form__block--comments {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
  }
}

@media tablet--portrait {
  .shipping .form__block--comments {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
  }
}

@media mobile-s--portrait {
  .shipping .form__block--comments textarea {
    width: 60%;
  }
}

@media mobile-s--landscape {
  .shipping .form__block--comments textarea {
    width: 80%;
  }
}

.shipping .form__block.error label {
  color: #721c24;
}

.shipping .form__block.error input {
  color: #721c24;
  border-bottom: 1px solid #721c24 !important;
}

.shipping .form__block.success label {
  color: #155724;
}

.shipping .form__block.success input {
  color: #155724;
  border-bottom: 1px solid #c3e6cb !important;
}

.shipping .form .zone-selector {
  -ms-grid-column: 1;
  -ms-grid-column-span: 4;
  grid-column: 1 / 5;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-column-gap: var(--space-s);
}

.shipping .form .zone-selector label {
  min-width: 0;
}

@media desktop {
  .shipping .form .zone-selector {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

@media tablet--portrait {
  .shipping .form .zone-selector {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .shipping .form .zone-selector label {
    min-width: 120px;
  }
}

@media ipad--portrait {
  .shipping .form .zone-selector {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

@media ipad--landscape {
  .shipping .form .zone-selector {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

@media mobile--portrait {
  .shipping .form .zone-selector {
    display: block;
  }
}

@media mobile--landscape {
  .shipping .form .zone-selector {
    display: block;
  }
}

@media mobile-s--portrait {
  .shipping .form .zone-selector {
    display: block;
  }
  .shipping .form .zone-selector label {
    min-width: 0;
  }
}

@media mobile-s--landscape {
  .shipping .form .zone-selector {
    display: block;
  }
}

.shipping .form .zone-selector__region--text {
  grid-column: span 2;
}

.shipping .form .zone-selector__region--text label {
  min-width: 120px;
}

.shipping .form .zone-selector .form__select {
  border: 1px solid #4A4A4A;
  width: 92%;
}

.shipping .form .zone-selector .form__select-arrow {
  border-color: black;
}

.shipping .form .zone-selector .form__select-arrow:before, .shipping .form .zone-selector .form__select-arrow:after {
  border-color: black;
}

.shipping .form .zone-selector select {
  -webkit-appearance: none;
  border: 1px solid var(--bc-1-lighter-50);
  background-color: white;
  min-height: var(--space-l);
  border-radius: 0;
  width: 98%;
  font-size: 14px;
  background-color: var(--white);
  background: var(--white) url(https://www.freeiconspng.com/uploads/arrow-up-icon-23.png) no-repeat;
  background-size: 15px;
  background-position: right 10px center;
}

@media mobile--portrait {
  .shipping .form .zone-selector select {
    font-size: 9px;
  }
}

@media mobile--landscape {
  .shipping .form .zone-selector select {
    font-size: 14px;
  }
}

@media mobile-s--portrait {
  .shipping .form .zone-selector select {
    font-size: 14px;
  }
}

@media mobile-s--landscape {
  .shipping .form .zone-selector select {
    font-size: 14px;
  }
}

@media desktop {
  .shipping .form .zone-selector__country {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / 2;
  }
}

@media tablet--portrait {
  .shipping .form .zone-selector__country {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / 2;
  }
}

@media ipad--portrait {
  .shipping .form .zone-selector__country {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / 2;
  }
}

@media ipad--landscape {
  .shipping .form .zone-selector__country {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / 2;
  }
}

@media mobile--portrait {
  .shipping .form .zone-selector__country {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
  }
}

@media mobile--landscape {
  .shipping .form .zone-selector__country {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
  }
}

@media mobile-s--portrait {
  .shipping .form .zone-selector__country {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
  }
}

@media mobile-s--landscape {
  .shipping .form .zone-selector__country {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
  }
}

@media desktop {
  .shipping .form .zone-selector__region--text {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2 / 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
  }
}

@media tablet--portrait {
  .shipping .form .zone-selector__region--text {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2 / 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
  }
}

@media ipad--portrait {
  .shipping .form .zone-selector__region--text {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2 / 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
  }
}

@media ipad--landscape {
  .shipping .form .zone-selector__region--text {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2 / 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
  }
}

@media mobile--portrait {
  .shipping .form .zone-selector__region--text {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
  }
}

@media mobile--landscape {
  .shipping .form .zone-selector__region--text {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
  }
}

@media mobile-s--portrait {
  .shipping .form .zone-selector__region--text {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
  }
}

@media mobile-s--landscape {
  .shipping .form .zone-selector__region--text {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
  }
}

.billing--hidden {
  display: none;
}

.billing__wrapper {
  display: none;
}

.billing .error-placement-billing {
  display: none;
  margin-bottom: 15px;
}

.billing .error-placement-billing label {
  display: block;
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
  padding: 10px 30px 5px 15px;
}

.billing .form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media mobile--portrait {
  .billing .form {
    display: block;
  }
}

@media mobile-s--portrait {
  .billing .form {
    display: block;
  }
}

@media mobile-s--landscape {
  .billing .form {
    display: block;
  }
}

.billing .form__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: var(--space-m);
}

.billing .form__block label {
  min-width: 120px;
  font-size: 14px;
  text-align: end;
  margin-right: 10px;
}

@media mobile-s--portrait {
  .billing .form__block label {
    min-width: 0;
  }
}

@media mobile-s--landscape {
  .billing .form__block label {
    min-width: 0;
  }
}

.billing .form__block input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--bc-1-lighter-50);
}

.billing .form__block input.form__input--invalid {
  border-color: var(--red-alert);
}

.billing .form__block textarea {
  width: 100%;
  resize: vertical;
  border-color: var(--bc-1-lighter-50);
}

.billing .form__block select {
  border: 1px solid var(--bc-1-lighter-50);
}

.billing .form__block input,
.billing .form__block textarea,
.billing .form__block select {
  margin-left: var(--space-s);
  padding: var(--space-xs) var(--space-s);
  border-bottom: 1px solid #4A4A4A;
  background-color: var(--white);
}

@media (max-width: 767px) {
  .billing .form__block input,
  .billing .form__block textarea,
  .billing .form__block select {
    margin-left: 0px !important;
    font-size: 9px !important;
  }
}

@media ipad-pro--landscape {
  .billing .form__block input,
  .billing .form__block textarea,
  .billing .form__block select {
    border-bottom: 1px solid #4A4A4A;
  }
}

@media ipad--portrait {
  .billing .form__block input,
  .billing .form__block textarea,
  .billing .form__block select {
    border-bottom: 1px solid #4A4A4A;
  }
}

@media tablet--portrait {
  .billing .form__block input,
  .billing .form__block textarea,
  .billing .form__block select {
    font-size: 0.9rem;
    border-bottom: 1px solid #4A4A4A;
  }
}

@media tablet--landscape {
  .billing .form__block input,
  .billing .form__block textarea,
  .billing .form__block select {
    font-size: 0.9rem;
    border-bottom: 1px solid #4A4A4A;
  }
}

@media mobile--portrait {
  .billing .form__block input,
  .billing .form__block textarea,
  .billing .form__block select {
    font-size: 14px;
  }
}

@media mobile-s--portrait {
  .billing .form__block input,
  .billing .form__block textarea,
  .billing .form__block select {
    font-size: 14px;
  }
}

@media mobile-s--landscape {
  .billing .form__block input,
  .billing .form__block textarea,
  .billing .form__block select {
    font-size: 14px;
  }
}

.billing .form__block--cif, .billing .form__block--cp {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2 / 3;
}

.billing .form__block--address {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/ 3;
}

.billing .form__block.error label {
  color: #721c24;
}

.billing .form__block.error input {
  color: #721c24;
  border-bottom: 1px solid #721c24 !important;
}

.billing .form__block.success label {
  color: #155724;
}

.billing .form__block.success input {
  color: #155724;
  border-bottom: 1px solid #c3e6cb !important;
}

.billing .form .zone-selector {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1 / 3;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-column-gap: var(--space-s);
}

@media desktop {
  .billing .form .zone-selector {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

@media tablet--portrait {
  .billing .form .zone-selector {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

@media ipad--portrait {
  .billing .form .zone-selector {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

@media ipad--landscape {
  .billing .form .zone-selector {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

@media mobile--portrait {
  .billing .form .zone-selector {
    display: block;
  }
}

@media mobile--landscape {
  .billing .form .zone-selector {
    display: block;
  }
}

@media mobile-s--portrait {
  .billing .form .zone-selector {
    display: block;
  }
}

@media mobile-s--landscape {
  .billing .form .zone-selector {
    display: block;
  }
}

.billing .form .zone-selector .form__select {
  border: 1px solid #4A4A4A;
  width: 92%;
}

.billing .form .zone-selector select {
  -webkit-appearance: none;
  border: 1px solid var(--bc-1-lighter-50);
  background-color: white;
  min-height: var(--space-l);
  border-radius: 0;
  width: 98%;
  font-size: 14px;
  background-color: var(--white);
  background: var(--white) url(https://www.freeiconspng.com/uploads/arrow-up-icon-23.png) no-repeat;
  background-size: 15px;
  background-position: right 10px center;
}

@media mobile--portrait {
  .billing .form .zone-selector select {
    font-size: 14px;
  }
}

@media mobile-s--portrait {
  .billing .form .zone-selector select {
    font-size: 14px;
  }
}

@media mobile-s--landscape {
  .billing .form .zone-selector select {
    font-size: 14px;
  }
}

@media mobile--portrait {
  .billing .form .zone-selector__country {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
  }
}

@media mobile-s--portrait {
  .billing .form .zone-selector__country {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
  }
}

@media mobile-s--landscape {
  .billing .form .zone-selector__country {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
  }
}

@media mobile--portrait {
  .billing .form .zone-selector__region--text {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
  }
}

@media mobile-s--portrait {
  .billing .form .zone-selector__region--text {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
  }
}

@media mobile-s--landscape {
  .billing .form .zone-selector__region--text {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
  }
}

.shop-features {
  --feature-bc: var(--aux-color);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
}

.shop-features__feature {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: max-content 1fr;
      grid-template-columns: -webkit-max-content 1fr;
      grid-template-columns: max-content 1fr;
  border-right: 1px solid var(--feature-bc);
  padding-right: var(--space-s);
}

@media mobile--portrait {
  .shop-features__feature {
    display: -ms-grid;
    display: grid;
    grid-template-colums: 1fr min-content;
  }
}

@media mobile-s--portrait {
  .shop-features__feature {
    display: -ms-grid;
    display: grid;
    grid-template-colums: 1fr min-content;
  }
}

.shop-features__feature:nth-child(3) {
  border-right: none;
}

.shop-features__feature--wide {
  grid-column: span 3;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  margin-top: var(--space-m);
  padding-right: 0;
  border-right: none;
}

.shop-features__feature--wide .shop-features__text {
  text-transform: none;
}

.shop-features__icon {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

@media ipad-pro--portrait {
  .shop-features__icon {
    width: 50px;
  }
}

@media ipad--landscape {
  .shop-features__icon {
    width: 50px;
  }
}

@media tablet--landscape {
  .shop-features__icon {
    width: 50px;
  }
}

@media mobile--landscape {
  .shop-features__icon {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / 2;
  }
}

@media mobile-s--landscape {
  .shop-features__icon {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / 2;
  }
}

.shop-features__text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0 var(--space-s);
  font-family: var(--neutra-regular);
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1.2em;
}

@media ipad-pro--portrait {
  .shop-features__text {
    font-size: 12px;
  }
}

@media ipad--landscape {
  .shop-features__text {
    font-size: 12px;
  }
}

@media tablet--landscape {
  .shop-features__text {
    font-size: 12px;
  }
}

@media mobile--portrait {
  .shop-features__text {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / 2;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    font-size: 12px;
  }
}

@media mobile-s--portrait {
  .shop-features__text {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / 2;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    font-size: 12px;
  }
}

.shop-features__text--small {
  font-family: var(--neutra-regular-italic);
  font-style: italic;
  text-transform: none;
}

.shop-features__text span {
  display: block;
  line-height: inherit;
}

.endorder__content {
  width: 100%;
  max-width: var(--content-width);
  margin: auto;
  padding: var(--space-l);
  text-align: center;
  display: -ms-grid;
  display: grid;
  padding-top: 0;
}

.endorder__content p:last-child {
  margin-top: var(--space-m);
}

.endorder__content h3 {
  margin-bottom: var(--space-m);
}

.endorder__content .button-end {
  margin: auto;
}

.endorder__content .button {
  background-color: white;
  color: #1C1C45;
  border: 1px solid #1C1C45;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.endorder__content .button:hover {
  background-color: #1C1C45;
  color: white;
  border: 1px solid #1C1C45;
}

.endorder__content .button {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: var(--space-l);
}

.endorder__spinner {
  margin-bottom: var(--space-l);
  font-size: 40px;
}

.endorder__message {
  padding: var(--space-xl) var(--space-m);
  text-align: center;
}
/*# sourceMappingURL=style.css.map */


/* --------- UPDATE FEB 2023 MENDISTUDIO -------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700&display=swap');
@import url('https://use.typekit.net/grv1ewj.css');


:root {
  --degular: 'Montserrat', sans-serif;
  --degular: "degular", sans-serif;
}

/*RESET TRANSFORMS*/
.block-multiple .multiple--mosaic.items .multiple__item:hover .multiple__icon img {
    -webkit-transform: none !important;
    transform: none !important;
}
.block-multiple .multiple--mosaic.items .multiple__item:hover .multiple__content {
    -webkit-transform: none !important;
    transform: none !important;
}

a {
  font-family: var(--degular);
}
.main ul li {
  font-size: 1.4rem;
}
/*HEADER*/

.logo svg {
    width: 100%;
}

.logo svg #texto path {
   -webkit-animation: logocolor 70s infinite;

  /* -webkit-animation-name: logocolor;
   -webkit-animation-duration: 70s;
   -webkit-animation-iteration-count: infinite;*/
    animation: logocolor 70s infinite;
}
.logo svg #imago path {
   -webkit-animation: imagocolor 70s infinite;
   /* -webkit-animation-name: imagocolor;
   -webkit-animation-duration: 70s;
   -webkit-animation-iteration-count: infinite;*/
    animation: imagocolor 70s infinite;
}


@keyframes logocolor {
  0% {
    fill: #34303a;
  }
  8% {
    fill: #34303a;
  }
  10% {
    fill: #60afb5;
  }
  18% {
    fill: #60afb5;
  }
  20% {
    fill: #225384;
  }
  28% {
    fill: #225384;
  }
  30% {
    fill: #d09a01;
  }
  38% {
    fill: #d09a01;
  }
  40% {
    fill: #304d5b;
  }
  48% {
    fill: #304d5b;
  }
  50% {
    fill: #861722;
  }
  58% {
    fill: #861722;
  }
  60% {
    fill: #098c87;
  }
  68% {
    fill: #098c87;
  }
  70% {
    fill: #718a38;
  }
  78% {
    fill: #718a38;
  }
  80% {
    fill: #c15817;
  }
  88% {
    fill: #c15817;
  }
  90% {
    fill: #098c87;
  }
  98% {
    fill: #098c87;
  }
  
}

@keyframes imagocolor {
  0% {
    fill: #b2312d;
  }
  8% {
    fill: #b2312d;
  }
  10% {
    fill: #d09b01;
  }
  18% {
    fill: #d09b01;
  }
  20% {
    fill: #ed6e15;
  }
  28% {
    fill: #ed6e15;
  }
  30% {
    fill: #96a354;
  }
  38% {
    fill: #96a354;
  }
  40% {
    fill: #e2787b;
  }
  48% {
    fill: #e2787b;
  }
  50% {
    fill: #225384;
  }
  58% {
    fill: #225384;
  }
  60% {
    fill: #ada516;
  }
  68% {
    fill: #ada516;
  }
  70% {
    fill: #447e83;
  }
  78% {
    fill: #447e83;
  }
  80% {
    fill: #59435d;
  }
  88% {
    fill: #59435d;
  }
  90% {
    fill: #dc2829;
  }
  98% {
    fill: #dc2829;
  }
  
}

@-webkit-keyframes logocolor {
  0% {
    fill-color: #34303a !important;
    fill: #34303a !important;
  }
  8% {
    fill-color: #34303a !important;
    fill: #34303a !important;
  }
  10% {
    fill: #60afb5 !important;
  }
  18% {
    fill: #60afb5 !important;
  }
  20% {
    fill: #225384 !important;
  }
  28% {
    fill: #225384 !important;
  }
  30% {
    fill: #d09a01 !important;
  }
  38% {
    fill: #d09a01 !important;
  }
  40% {
    fill: #304d5b !important;
  }
  48% {
    fill: #304d5b !important;
  }
  50% {
    fill: #861722 !important;
  }
  58% {
    fill: #861722 !important;
  }
  60% {
    fill: #098c87 !important;
  }
  68% {
    fill: #098c87 !important;
  }
  70% {
    fill: #718a38 !important;
  }
  78% {
    fill: #718a38 !important;
  }
  80% {
    fill: #c15817 !important;
  }
  88% {
    fill: #c15817 !important;
  }
  90% {
    fill: #098c87 !important;
  }
  100% {
    fill: #098c87 !important;
  }
}
@-webkit-keyframes imagocolor {
  0% {
    fill: #b2312d !important;
  }
  8% {
    fill: #b2312d !important;
  }
  10% {
    fill: #d09b01 !important;
  }
  18% {
    fill: #d09b01 !important;
  }
  20% {
    fill: #ed6e15 !important;
  }
  28% {
    fill: #ed6e15 !important;
  }
  30% {
    fill: #96a354 !important;
  }
  38% {
    fill: #96a354 !important;
  }
  40% {
    fill: #e2787b !important;
  }
  48% {
    fill: #e2787b !important;
  }
  50% {
    fill: #225384 !important;
  }
  58% {
    fill: #225384 !important;
  }
  60% {
    fill: #ada516 !important;
  }
  68% {
    fill: #ada516 !important;
  }
  70% {
    fill: #447e83 !important;
  }
  78% {
    fill: #447e83 !important;
  }
  80% {
    fill: #59435d !important;
  }
  88% {
    fill: #59435d !important;
  }
  90% {
    fill: #dc2829 !important;
  }
  100% {
    fill: #dc2829 !important;
  }
  
}


.newsletter-header .content a {
  border-left: none;
  border-right: none;
  padding: 0 20px;
}
.main-header {
  box-shadow: 0 0 70px rgb(0 0 0 / 25%);
  border-bottom: none;
}
@media (min-width: 768px) and (max-width: 992px) {
  .main-header {
    padding: 0 15px;
  }
  .main-header .nav-links {
      grid-column: 2/3 !important;
  }
  .main-header .social-media {
      grid-row: 1/2 !important;
  }
}
.newsletter-header {
  padding: 0 0; /* 0 10vw; */
}
.main-header .logo {
  padding: 18px 10px 0;
  grid-column: 1/2;
}
@media (min-width: 768px) {
  .main-header .logo {
    padding: 18px 0 0 !important;
    grid-column: 2/6;/*2/2*/
  }
}
.main-header .nav-links {
  grid-column: 2/6; /* 2/3 */
}
.main-header .social-media {
  grid-row: 2/2;
  gap: 10px;
}
.main-header .nav-links .nav-link a {
  padding: 15px 0;
}

@media screen and (max-width: 767px) {
  .main-header {
      padding: 10px 20px 0 20px;
      height: 80px;
      top: 30px;
  }
  .newsletter-header {
      height: 30px;
      display: -ms-flex;
      display: flex;
      padding: 0;
  }

  .top--home {
      margin-top: 120px;
  }
  .main-header .nav-links .nav-link a {
    font-size: 3rem;
  }
  .top--inner {
      margin-top: 120px;
  }
}

/*HOME*/
.blocks .grid__item .block.newsletter .lens {
  /*height: 100%;*/
}
.multiple__content .button .fas.fa-plus {
    font-weight: 400;
}
.block-multiple .multiple--featured .multiple__item--featured .multiple__content a .button i.fas {
  font-weight: 400 !important;
}
.pub_latest .recipes .recipe {
  justify-content: flex-start;
}
.pub_latest .recipes .recipe .content-recipe {
  height: 100%;
}

/*BREADCRUMBS*/
.breadcrumbs .breadcrumb {
    font-family: var(--degular) !important;
    font-size: 1.3rem !important;
    text-shadow: none !important;
    font-weight: 800 !important;
}
.main .ecm_list-products .header-block-recipes .breadcrumbs .breadcrumb::after, .blocks-articles .breadcrumbs .breadcrumb::after {
    color: var(--naranja) !important;
}
.top__content .breadcrumb a,
.top__content .display-m span,
.top__content .display-l span {
    text-shadow: 2px 2px 8px rgba(0,0,0,.5) !important;
}
.pub_home .header-block-recipes .breadcrumbs .breadcrumb a {
    font-family: var(--degular) !important;
    color: var(--bc-1);
    font-size: 1.3rem !important;
    font-weight: 800 !important;
    text-shadow: none !important;
}
.ecm_list-products .header-block-recipes .breadcrumbs .breadcrumb a {
   text-shadow: none !important;
 }
 .ecm_list-products .header-block-recipes .breadcrumbs .breadcrumb::after,
 .blocks-articles .breadcrumbs .breadcrumb::after {
    color: #333 !important;
  }
/*LISTADOS*/

@media (max-width: 767px) {
  .bm_home .content .all-news__slider .slider__items .page .items__item .item__content .content__title span {
      font-size: 1.8rem;
      line-height: 1.5rem;
  }
}
.bm_home .content .home-news__slider .slider__items .page .items__item .item__content, .bm_home-all .content .home-news__slider .slider__items .page .items__item .item__content, .pub_home .content .home-news__slider .slider__items .page .items__item .item__content, .pub_sorteos .content .home-news__slider .slider__items .page .items__item .item__content, .pub_universe .content .home-news__slider .slider__items .page .items__item .item__content, .pub_universe-fr .content .home-news__slider .slider__items .page .items__item .item__content, .pub_universe-port .content .home-news__slider .slider__items .page .items__item .item__content {
  padding: 20px 0 30px;
  background: transparent;
}
.bm_home .content .home-news__slider .slider__items .page .items__item .item__content .content__title span, .bm_home-all .content .home-news__slider .slider__items .page .items__item .item__content .content__title span, .pub_home .content .home-news__slider .slider__items .page .items__item .item__content .content__title span, .pub_sorteos .content .home-news__slider .slider__items .page .items__item .item__content .content__title span, .pub_universe .content .home-news__slider .slider__items .page .items__item .item__content .content__title span, .pub_universe-fr .content .home-news__slider .slider__items .page .items__item .item__content .content__title span, .pub_universe-port .content .home-news__slider .slider__items .page .items__item .item__content .content__title span {
    font-weight: 300;
    font-size: 1.4rem;
}
.items__item .item__content {
  position: relative;
  padding-bottom: 60px;
}
.items__item .item__content::after {
    position: absolute;
    bottom: 0;
    right: 20px;
    flex: none;
    content: "\f067";
    font-family: "Font Awesome 5 Pro";
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    width: 30px;
    height: 30px;
    color: var(--bc-1) !important;
    border: 1px solid var(--bc-1) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.items__item:hover .item__content::after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    background-color: var(--bc-1);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    color: white !important;
}
.bm_home .content .home-news__slider .slider__items .page .items__item:hover .item__content::before, .bm_home-all .content .home-news__slider .slider__items .page .items__item:hover .item__content::before, .pub_home .content .home-news__slider .slider__items .page .items__item:hover .item__content::before, .pub_sorteos .content .home-news__slider .slider__items .page .items__item:hover .item__content::before, .pub_universe .content .home-news__slider .slider__items .page .items__item:hover .item__content::before, .pub_universe-fr .content .home-news__slider .slider__items .page .items__item:hover .item__content::before, .pub_universe-port .content .home-news__slider .slider__items .page .items__item:hover .item__content::before {
  background: transparent !important;
  display: none;
}
.bm_home .content .home-news__slider .slider__items .page .items__item:hover .item__content .content__title span, .bm_home-all .content .home-news__slider .slider__items .page .items__item:hover .item__content .content__title span, .pub_home .content .home-news__slider .slider__items .page .items__item:hover .item__content .content__title span, .pub_sorteos .content .home-news__slider .slider__items .page .items__item:hover .item__content .content__title span, .pub_universe .content .home-news__slider .slider__items .page .items__item:hover .item__content .content__title span, .pub_universe-fr .content .home-news__slider .slider__items .page .items__item:hover .item__content .content__title span, .pub_universe-port .content .home-news__slider .slider__items .page .items__item:hover .item__content .content__title span {
  color: black;
}
.bm_home .content .home-news__slider .slider__items .page .items__item:hover .item__content .content__date span, .bm_home-all .content .home-news__slider .slider__items .page .items__item:hover .item__content .content__date span, .pub_home .content .home-news__slider .slider__items .page .items__item:hover .item__content .content__date span, .pub_sorteos .content .home-news__slider .slider__items .page .items__item:hover .item__content .content__date span, .pub_universe .content .home-news__slider .slider__items .page .items__item:hover .item__content .content__date span, .pub_universe-fr .content .home-news__slider .slider__items .page .items__item:hover .item__content .content__date span, .pub_universe-port .content .home-news__slider .slider__items .page .items__item:hover .item__content .content__date span {
  color: var(--bc-1);
}
.date p,
.bm_press-releases .content .press-releases__slider .slider__items .page .items__item .item__content .content__date span,
.bm_home .content .all-news__slider .slider__items .page .items__item .item__content .content__date span {
    font-size: 14px !important;
    font-family: var(--degular) !important;
    font-weight: 500;
}
.bm_home .content .all-news__slider .slider__items .page .items__item .item__content .content {
  padding: 30px 10px 0;
}
.bm_home .content .all-news__slider .slider__items .page .items__item .item__content .content__excerpt span {
    font-family: var(--degular);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.3;
    color: #000 !important;
  }
  .bm_home .content .all-news__slider .slider__items .page .items__item .item__content .content__title span,
  .bm_press-releases .content .press-releases__slider .slider__items .page .items__item .item__content .content__title span {
    font-family: var(--degular);
    font-weight: 600;
  }
.bm_home .content .all-news__slider .slider__items .page .items__item .item__content .content a {
    /*display: none;*/
}
.content__more {
    display: none;
}

.items__item .item__content {
  padding-bottom: 60px !important;
}
.bm_home .content .home-news__slider .slider__items .page .items__item .item__content .content__date span, .bm_home-all .content .home-news__slider .slider__items .page .items__item .item__content .content__date span, .pub_home .content .home-news__slider .slider__items .page .items__item .item__content .content__date span, .pub_sorteos .content .home-news__slider .slider__items .page .items__item .item__content .content__date span, .pub_universe .content .home-news__slider .slider__items .page .items__item .item__content .content__date span, .pub_universe-fr .content .home-news__slider .slider__items .page .items__item .item__content .content__date span, .pub_universe-port .content .home-news__slider .slider__items .page .items__item .item__content .content__date span {
  font-family: var(--degular);
  font-weight: 600;
}
.date p, .bm_press-releases .content .press-releases__slider .slider__items .page .items__item .item__content .content__date span, .bm_home .content .all-news__slider .slider__items .page .items__item .item__content .content__date span
 {
  font-family: var(--degular);
  font-weight: 600;
 }
 .block-gallery .content .carrousel-gallery__title:before {
    display: none; /*borde raro en carrusel*/
 }
/*oculta + adicional en listados de productos*/
.ecm_list-products .home-news__slider .item__image + .item__content::after {
  display: none;
}

/*COCINA*/
.pub_home .header-block-recipes h1 {
    margin: 30px 0px 60px !important;
    position: relative;
}
.filters__search .finder__searchterm {
  
}
.filters__search .finder__searchterm button {
    background: #EDEDDF;
}
.filters__search .finder__searchterm input {
    background: #EDEDDF;
}
.filters .finder .finder__title p {
    font-weight: bold;
    text-align: center;
}
.filters .finder .filters__category .select2 .select2-selection__rendered {
  font-style: normal;
  color: white;
  background: var(--azul) !important; 
}
.filters__category:hover .select2 .select2-selection__rendered {
  background: black !important;

}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: white;
  font-style: normal !important;
  width: 100%;
  display: block;
  position: relative;
  font-size: 1.6rem;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder::after {
    content: '';
    display: inline-block;
    position: absolute;
    top: auto;
    bottom: 5px;
    right: 50%;
    margin-right: -4px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid white;
  }
  .filters .select2-dropdown ul li.select2-results__option:hover {
    background-color: #e0e0d3 !important;
    color: var(--bc-1);
}
.select2-container--default .select2-results__option--disabled {
    color: #ccc;
}
  .bm_home .content .home-news__slider .slider__items .page .items__item .item__image, .bm_home-all .content .home-news__slider .slider__items .page .items__item .item__image, .pub_home .content .home-news__slider .slider__items .page .items__item .item__image, .pub_sorteos .content .home-news__slider .slider__items .page .items__item .item__image, .pub_universe .content .home-news__slider .slider__items .page .items__item .item__image, .pub_universe-fr .content .home-news__slider .slider__items .page .items__item .item__image, .pub_universe-port .content .home-news__slider .slider__items .page .items__item .item__image {
    width: 100%;
    height: auto;
    padding-top: 52.50%;
    position: relative;
}
.bm_home .content .home-news__slider .slider__items .page .items__item .item__image img, .bm_home-all .content .home-news__slider .slider__items .page .items__item .item__image img, .pub_home .content .home-news__slider .slider__items .page .items__item .item__image img, .pub_sorteos .content .home-news__slider .slider__items .page .items__item .item__image img, .pub_universe .content .home-news__slider .slider__items .page .items__item .item__image img, .pub_universe-fr .content .home-news__slider .slider__items .page .items__item .item__image img, .pub_universe-port .content .home-news__slider .slider__items .page .items__item .item__image img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
.items__item .item__image  {
  overflow: hidden;
}
.items__item .item__image img {
  transition: all .3s ease-out;
}
.items__item:hover .item__image img {
  transform: scale(1.1);
}
/*AHORRA*/
.bm_home .content .all-news__slider .slider__items .page .items__item .item__content .content {
    
    padding: 40px 10px 0;
  }
.bm_home .content .all-news__slider .slider__items .page .items__item:hover .item__content::before {
  display: none;
}
.all-news__slider .slider__items .items__item .item__content::after {
  bottom: 20px;/*30*/
}
.bm_home .content .all-news__slider .slider__items .page .items__item:hover .item__content .content__date span,
.bm_home .content .all-news__slider .slider__items .page .items__item:hover .item__content a {
  color: var(--bc-1) !important;
}
.bm_home .content .all-news__slider .slider__items .page .items__item:hover .item__content .content__title span {
  color: black !important;
}
.bm_home .content .all-news__slider .slider__items .page .items__item .item__image {
  overflow: hidden;
}
.bm_home .content .all-news__slider .slider__items .page .items__item img {
  transform: scale(1);
  transition: all .3s ease-out;
}
.bm_home .content .all-news__slider .slider__items .page .items__item:hover img {
  transform: scale(1.1);
}

/*SPACING*/

.blocks .block.block-text-image .content .flex-content {
  gap: 2.5rem;
}
.main-header .nav-links ul {
  gap: 30px;
}
.bm_home .content .home-news__slider .slider__items .page .items__item, .bm_home-all .content .home-news__slider .slider__items .page .items__item, .pub_home .content .home-news__slider .slider__items .page .items__item, .pub_sorteos .content .home-news__slider .slider__items .page .items__item, .pub_universe .content .home-news__slider .slider__items .page .items__item, .pub_universe-fr .content .home-news__slider .slider__items .page .items__item, .pub_universe-port .content .home-news__slider .slider__items .page .items__item,
.bm_home .content .home-news__slider .slider__items .page .items__item:nth-child(4n), .bm_home-all .content .home-news__slider .slider__items .page .items__item:nth-child(4n), .pub_home .content .home-news__slider .slider__items .page .items__item:nth-child(4n), .pub_sorteos .content .home-news__slider .slider__items .page .items__item:nth-child(4n), .pub_universe .content .home-news__slider .slider__items .page .items__item:nth-child(4n), .pub_universe-fr .content .home-news__slider .slider__items .page .items__item:nth-child(4n), .pub_universe-port .content .home-news__slider .slider__items .page .items__item:nth-child(4n) {
  min-height: auto !important;
  border-right: none;
  border-bottom: 0 !important;
}
.content .home-news__slider .slider__controller {
    display: none !important;
}
/*PRODUCTOS*/

.fa-eye:before {
    content: "\f067" !important;
}
.ecm_list-products .content-product .left .piezas .subproduct .subproduct__name .button-plus i {
  color: var(--bc-1);
  font-weight: 400;
}
.ecm_list-products .right .details p {
    font-family: var(--degular);
    font-size: 1.8rem;
    font-weight: 600;
    padding: 10px 0;
    margin-bottom: 5px;
}
.ecm_list-products .right .details ul li {
    font-family: var(--degular);
    display: block;
    list-style-position: inside;
    padding-left: 20px;
    font-size: 15px;
    font-weight: 300;
}

/***********
TIPOGRAFÍA
***********/
body em {
    font-family: var(--degular);
    font-weight: bold !important;
}
p {
    line-height: 1.4;
    font-size: 1.5rem !important;
}

/***********
TITULARES
***********/
h3.display-s {
    font-family: var(--degular);
    font-weight: 600;
}
.pub_home .header-block-recipes h1::after {
  height: 8px;
  display: none;
}
.home-news__content-title h3 {
    color: var(--azul);
    line-height: 1;
}
.header-block-recipes h1 {
    color: var(--azul);
}
.block-multiple.mosaic h3 {
    color: var(--turquesa);
}
h3.display-m,
.home-news__title h3 {
    font-size: 60px;
    font-family: var(--degular);
    font-weight: 600;
}
.block-multiple.featured h3::after {
    display: none;
    height: 8px;
}
.block-multiple.mosaic h3::after,
.blocks .block.block-text-image .content .flex-content .text h3::after {
    content: "";
    height: 8px;
    width: 0%;
    background-color: var(--bc-1);
    position: absolute;
    bottom: -22px;
    left: -15px;
}
.bm_home .content .content--item .home-news__content-title h4::after, .bm_home-all .content .content--item .home-news__content-title h4::after, .pub_home .content .content--item .home-news__content-title h4::after, .pub_sorteos .content .content--item .home-news__content-title h4::after, .pub_universe .content .content--item .home-news__content-title h4::after, .pub_universe-fr .content .content--item .home-news__content-title h4::after, .pub_universe-port .content .content--item .home-news__content-title h4::after {
  height: 8px;
  bottom: 10px;
  display: none;
}
.blocks .block.block-text-image .content .flex-content .text h3 {
    margin: 30px 0px 30px !important;
}
.bm_home .content .content--item .home-news__content-title h4, .bm_home-all .content .content--item .home-news__content-title h4, .pub_home .content .content--item .home-news__content-title h4, .pub_sorteos .content .content--item .home-news__content-title h4, .pub_universe .content .content--item .home-news__content-title h4, .pub_universe-fr .content .content--item .home-news__content-title h4, .pub_universe-port .content .content--item .home-news__content-title h4 {
  padding-bottom: 30px;
  font-weight: 600;
  font-family: var(--degular);
}

.bm_home .content .content--item, .bm_home-all .content .content--item, .pub_home .content .content--item, .pub_sorteos .content .content--item, .pub_universe .content .content--item, .pub_universe-fr .content .content--item, .pub_universe-port .content .content--item {
    grid-column: 2/12;
}
/***********
BOTONES
************/
.button-block .button {
  margin: 0 !important;
  padding: 0 !important;
}

/***********
CARRUSELES
***********/
.carrousel-gallery__slider .items__item .item__image:hover img,
.block-gallery .content .carrousel-gallery__slider .slider__items .items__item:hover .item__image img,
.carrousel-gallery__slider .items__item .item__image:hover {
    transform: scale(1) !important;
}
.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,
.block-gallery .content .carrousel-gallery__slider .slider__controller .controller__line .line__current {
    border: 1px solid var(--azul);
    background-color: #f2f2f2;
}
.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 {
    border: 1px solid var(--azul);
}
.block-gallery .content .carrousel-gallery__slider .slider__controller .controller__line .line__current {
    background: var(--azul);
}
/*.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*/
/**********
FICHAS
*********/

.ecm_list-products .right .details, .ecm_list-products .right .downloads{
    background: var(--beige);
}


footer .content-logo img {
  width: 100%;
  height: 100px;
  display: block;
}
.icons img {
    min-width: 80px !important;
}

/**********
 * AHORRA
***********/

.bm_press-releases .block__bg {
    background: transparent !important;
}

/**********
SALTOS DE LINEA
*********/
.home-news__title h3 br {
    display: none;
}

.press-releases__slider .item__content {
    display: flex;
    gap: 30px;
}
.press-releases__slider .item__content img {
    transform: translateX(0px) !important;
}

/***********
CONTACTO
************/

.block-form .content.grid {
    background-color: var(--beige);
    padding-bottom: 6rem;
}
.block-form .lens {
    opacity: 0;
}

.cookies .cookies-options {
    gap: 10px;
}
.cookies .cookies-options .button {
    border-radius: 0;
    padding: 15px !important;
}