@import url(https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;

0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap);@charset "UTF-8";

/**
 * Import different sass files for the project
 * Reference: https://sass-guidelin.es/es/#arquitectura
 */

/**
 * Abstracts: files for handles function, mixins, and variables
 */

/**
 * We'll load Bootstrap an open source toolkit for developing with HTML, CSS, and JS.
 * Documentation: https://getbootstrap.com/
 */

/**
 * Documentation: http://kenwheeler.github.io/slick/
 */

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/**
 * Documentation: https://fontawesome.com/v4.7.0/
 */

/**
 * Documentation: https://material.io/resources/icons/
 */

/**
 * Documentation: https://github.com/thesabbir/simple-line-icons
 * Uncomment to use
 */

/**
 * Documentation: https://github.com/sass-mq/sass-mq
 */

/**
 * Documentation: https://sachinchoolur.github.io/lightGallery/
 * Uncomment to use
 */

@keyframes fade-in {
  from {
    display: block;
    opacity: 0;
  }

  to {
    display: block;
    opacity: 1;
  }
}

@keyframes fade-out {
  from {
    display: block;
    opacity: 1;
  }

  to {
    display: block;
    opacity: 0;
  }
}

@keyframes shake-horizontal {
  0% {
    transform: translateX(-50px);
  }

  75% {
    transform: translateX(25px);
  }

  100% {
    transform: translateX(0px);
  }
}

/**
 * Base: files for animations, base, typography, and utilities
 */

/*
  Normalize
*/

*,
::before,
::after {
  box-sizing: border-box;
  /* 1 */
  border-width: 0;
  /* 2 */
  border-style: solid;
  /* 2 */
  border-color: currentColor;
  /* 2 */
}

::before,
::after {
  --tw-content: "";
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
*/

html {
  line-height: 1.5;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  -o-tab-size: 4;
     tab-size: 4;
  /* 3 */
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  /* 4 */
  font-feature-settings: normal;
  /* 5 */
  font-variation-settings: normal;
  /* 6 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0;
  /* 1 */
  line-height: inherit;
  /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0;
  /* 1 */
  color: inherit;
  /* 2 */
  border-top-width: 1px;
  /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

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

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font family by default.
2. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: "fontFamily.mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0;
  /* 1 */
  border-color: inherit;
  /* 2 */
  border-collapse: collapse;
  /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  font-weight: inherit;
  /* 1 */
  line-height: inherit;
  /* 1 */
  color: inherit;
  /* 1 */
  margin: 0;
  /* 2 */
  padding: 0;
  /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  /* 1 */
  background-color: transparent;
  /* 2 */
  background-image: none;
  /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role=button] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  /* 1 */
  vertical-align: middle;
  /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */

[hidden] {
  display: none;
}

@font-face {
  font-family: "Avenir";
  font-style: normal;
  font-weight: 200;
  src: local("Avenir"), url(../fonts/AvenirLTStd-Light.otf?0b78ec9d509f67bfe3f8458c9d285df0);
}

@font-face {
  font-family: "Avenir";
  font-style: normal;
  font-weight: 350;
  src: local("Avenir"), url(../fonts/AvenirLTStd-Book.otf?ecb0c2ae369ba2a89d9a1ec2a1b3187b);
}

@font-face {
  font-family: "Avenir";
  font-style: normal;
  font-weight: 400;
  src: local("Avenir"), url(../fonts/AvenirLTStd-Roman.otf?b1d7c6e085a31e9f5e4745c9aef6eb4b);
}

@font-face {
  font-family: "Avenir";
  font-style: normal;
  font-weight: 500;
  src: local("Avenir"), url(../fonts/avenir-lt-std-65-medium.otf?4f995fa49446998983e05df9994dc96c);
}

@font-face {
  font-family: "Avenir";
  font-style: normal;
  font-weight: 800;
  src: local("Avenir"), url(../fonts/avenir-lt-std-85-heavy.otf?a7edaaca7240679d0cda0cce2c2e896e);
}

@font-face {
  font-family: "Avenir";
  font-style: normal;
  font-weight: 900;
  src: local("Avenir"), url(../fonts/AvenirLTStd-Black.otf?b1abb878e2529cb5cb4450139844155d);
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  src: local("Inter"), url(../fonts/Inter-Light.ttf?a3fe4e0f9fdf3119c62a34b1937640dd);
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  src: local("Inter"), url(../fonts/Inter-Medium.ttf?cad1054327a25f42f2447d1829596bfe);
}

.container {
  width: 100%;
  padding-left: 30px;
  padding-right: 30px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media screen and (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media screen and (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media screen and (min-width: 1440px) {
  .container {
    max-width: 1440px;
    padding-left: 135px;
    padding-right: 135px;
  }
}

.headroom {
  will-change: transform;
  transition: transform 200ms linear;
}

.headroom--pinned {
  transform: translateY(0%);
}

.headroom--unpinned {
  transform: translateY(-100%);
}

:root {
  --plyr-control-radius: 0px;
  --plyr-color-main: #EFEFEF;
  --plyr-video-control-color: #000000;
  --plyr-video-control-color-hover: #000000;
}

body {
  background-color: #F8F8F8;
  overflow-x: hidden;
  font-family: "Avenir", sans-serif;
}

.grecaptcha-badge {
  opacity: 0 !important;
  position: relative;
  z-index: -1;
}

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

.slim-select-option {
  color: #444;
  font-family: "Avenir", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.slim-select-option.ss-selected {
  background-color: #939393 !important;
}

.ws-float-button {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  transition: all 600ms ease;
}

.ws-float-button svg {
  width: 45px;
  height: 45px;
}

@media screen and (width >= 1024px) {
  .ws-float-button {
    right: 40px;
    bottom: 100px;
    width: 60px;
    height: 60px;
  }

  .ws-float-button svg {
    width: 60px;
    height: 60px;
  }
}

.ws-float-button.ws-headroom--not-top {
  right: 20px;
  bottom: 20px;
}

@media screen and (width >= 1024px) {
  .ws-float-button.ws-headroom--not-top {
    right: 40px;
    bottom: 40px;
  }
}

/**
 * Components: have a single scss file for each individual component
 */

.banner-auto {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 30px;
}

@media screen and (min-width: 1024px) {
  .banner-auto {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.banner-auto .left-side {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.banner-auto .left-side .banner-auto-title {
  color: #151515;
  font-family: "Avenir";
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  margin-bottom: 20px;
}

@media screen and (min-width: 1024px) {
  .banner-auto .left-side .banner-auto-title {
    margin-bottom: 30px;
  }
}

.banner-auto .left-side .banner-auto-description {
  color: #444;
  font-family: "Avenir";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0%;
  text-align: center;
  max-width: 100%;
}

.banner-auto .right-side {
  display: none;
}

.banner-auto .right-side .banner-auto-slick-slider {
  position: relative;
  z-index: 2;
}

.banner-auto .right-side .banner-auto-slick-slider .image-container {
  width: 100%;
  height: 360px;
  padding-bottom: 60px;
}

@media screen and (min-width: 1024px) {
  .banner-auto .right-side .banner-auto-slick-slider .image-container {
    height: 370px;
    padding-bottom: 0;
  }
}

.banner-auto .right-side .banner-auto-slick-slider .image-container .image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.banner-auto .right-side .backdrop {
  position: absolute;
  left: -20px;
  bottom: 0;
  z-index: 1;
  width: 100vw;
  height: 70%;
  background-color: rgba(0, 0, 0, 0.05);
}

@media screen and (min-width: 1024px) {
  .banner-auto .right-side .backdrop {
    right: -20px;
    width: 100%;
    height: 100%;
    left: 60%;
  }
}

@media screen and (min-width: 1440px) {
  .banner-auto .right-side .backdrop {
    left: 60%;
    width: 100%;
  }
}

.banner-default {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .banner-default {
    flex-direction: row;
    height: 270px;
  }
}

.banner-default .banner-side-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 1px 30px 5px 30px;
  background-color: #ffffff;
}

@media screen and (min-width: 768px) {
  .banner-default .banner-side-left {
    width: 50%;
    padding-left: 1px;
    padding-top: 1px;
  }
}

.banner-default .banner-side-left .banner-pretitle {
  color: #151515;
  font-family: "Avenir";
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 1.44px;
  text-transform: uppercase;
  margin-bottom: 7px;
}

@media screen and (min-width: 1440px) {
  .banner-default .banner-side-left .banner-pretitle {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1.92px;
  }
}

.banner-default .banner-side-left .banner-title {
  color: #151515;
  font-family: "Avenir";
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  margin-bottom: 24px;
}

@media screen and (min-width: 1440px) {
  .banner-default .banner-side-left .banner-title {
    font-size: 30px;
  }
}

.banner-default .banner-side-left .banner-button {
  border: 1px solid #151515;
  color: #151515;
  font-family: "Avenir";
  font-size: 24px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 10px 20px;
  padding-bottom: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  width: 100%;
}

.banner-default .banner-side-left .banner-button svg path {
  fill: #151515;
}

@media screen and (min-width: 768px) {
  .banner-default .banner-side-left .banner-button {
    width: -moz-fit-content;
    width: fit-content;
  }
}

@media screen and (min-width: 1024px) {
  .banner-default .banner-side-left .banner-button:hover {
    background-color: #F8E634;
    border-color: #F8E634;
    color: #151515;
  }

  .banner-default .banner-side-left .banner-button:hover svg path {
    fill: #151515;
  }
}

.banner-default .banner-side-right {
  width: 100%;
  height: 350px;
  background-color: #ffffff;
}

@media screen and (min-width: 768px) {
  .banner-default .banner-side-right {
    width: 50%;
    height: auto;
  }
}

.banner-default .banner-side-right .banner-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.banner-slides {
  display: flex;
  flex-direction: column;
  background-color: #EFEF3F;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
}

@media screen and (min-width: 1024px) {
  .banner-slides {
    flex-direction: row;
  }
}

.banner-slides .left-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 40px 30px;
}

@media screen and (min-width: 1024px) {
  .banner-slides .left-side {
    width: 40%;
  }
}

@media screen and (min-width: 1440px) {
  .banner-slides .left-side {
    width: 100%;
    padding: 60px 30px 60px 60px;
  }
}

.banner-slides .left-side .tag-container {
  display: flex;
  flex-wrap: wrap;
}

.banner-slides .left-side .tag-container .tag {
  display: block;
  padding: 10px;
  padding-bottom: 9px;
  width: -moz-fit-content;
  width: fit-content;
  color: #FBFBFB;
  font-family: "Avenir";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 10px;
  letter-spacing: 1.68px;
  text-transform: uppercase;
}

.banner-slides .left-side .banner-slides-title a {
  display: block;
  color: #444;
  font-family: "Avenir";
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: left;
}

@media screen and (min-width: 1024px) {
  .banner-slides .left-side .banner-slides-title a {
    font-size: 40px;
  }
}

.banner-slides .left-side .banner-slides-title a strong {
  font-weight: 800;
}

.banner-slides .left-side .banner-slides-description {
  overflow: hidden;
  color: #000000;
  text-overflow: ellipsis;
  font-family: "Avenir";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0%;
  max-width: 280px;
  text-align: left;
}

.banner-slides .left-side .banner-slides-hour-address-container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-content: flex-start;
  gap: 10px;
}

.banner-slides .left-side .banner-slides-hour,
.banner-slides .left-side .banner-slides-address {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #444;
  font-family: "Avenir";
  font-size: 18px;
  font-style: normal;
  font-weight: 350;
  line-height: normal;
}

.banner-slides .left-side .banner-slides-button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  padding-top: 17px;
  padding-bottom: 15px;
  color: #000000;
  font-family: "Avenir";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  background-color: #EFEF3F;
  width: -moz-fit-content;
  width: fit-content;
  border: 2px solid #151515;
  transition: all 0.3s ease;
}

@media screen and (min-width: 1024px) {
  .banner-slides .left-side .banner-slides-button:hover {
    background-color: #151515;
    color: #FBFBFB;
    border: 1px solid #151515;
  }
}

.banner-slides .right-side {
  position: relative;
}

@media screen and (min-width: 1024px) {
  .banner-slides .right-side {
    width: 60%;
  }
}

@media screen and (min-width: 1440px) {
  .banner-slides .right-side {
    max-width: 635px;
    width: 100%;
  }
}

.banner-slides .right-side .banner-slick-slider {
  position: relative;
}

.banner-slides .right-side .banner-slick-slider .banner-slides-image-container {
  display: block;
  width: 100%;
  height: 100%;
}

.banner-slides .right-side .banner-slick-slider .banner-slides-image-container .banner-slides-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.banner-slides .right-side .banner-slick-slider-arrow-container {
  display: none;
  gap: 10px;
  position: absolute;
  right: 18px;
  bottom: 22px;
}

.banner-slides .right-side .banner-slick-slider-arrow-container .banner-slick-slider-arrow-left,
.banner-slides .right-side .banner-slick-slider-arrow-container .banner-slick-slider-arrow-right {
  border: 1px solid #151515;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(3px);
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FBFBFB;
  background: #151515;
  transition: all 0.3s ease;
}

@media screen and (min-width: 1024px) {
  .banner-slides .right-side .banner-slick-slider-arrow-container .banner-slick-slider-arrow-left:hover,
  .banner-slides .right-side .banner-slick-slider-arrow-container .banner-slick-slider-arrow-right:hover {
    border: 1px solid #F8E634;
    background: #F8E634;
    color: #151515;
    backdrop-filter: blur(2px);
  }
}

.banner-slides .right-side .banner-slick-slider-arrow-container .banner-slick-slider-arrow-left:disabled,
.banner-slides .right-side .banner-slick-slider-arrow-container .banner-slick-slider-arrow-right:disabled {
  border: 1px solid #FBFBFB;
  background: rgba(21, 21, 21, 0);
  color: #FBFBFB;
}

.card-event-01 {
  width: 315px;
  padding-left: 10px;
  padding-right: 10px;
}

@media screen and (min-width: 1024px) {
  .card-event-01 {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }

  .card-event-01:hover .image {
    transform: scale(1.1);
  }

  .card-event-01:hover .card-button-default {
    background: rgba(21, 21, 21, 0);
    color: #151515;
  }

  .card-event-01:hover .card-button-default svg path {
    fill: #626262;
  }

  .card-event-01:hover .card-button-variant svg {
    transform: rotate(-180deg);
  }
}

@media screen and (min-width: 1440px) {
  .card-event-01 {
    width: 370px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.card-event-01 .card-01-description {
  display: none !important;
}

.card-event-01 .card-button-default {
  display: none !important;
}

.card-event-01 .card-button-variant {
  display: none;
}

.card-event-01 .card-event-01-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 16px;
}

.card-event-01 .card-event-01-header .categories-content {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.card-event-01 .card-event-01-header .categories-content .category {
  font-family: "Avenir";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.68px;
  text-transform: uppercase;
  padding: 10px;
}

.card-event-01 .card-event-01-header .date {
  color: #626262;
  font-family: "Avenir";
  font-size: 16px;
  font-weight: 350;
  line-height: normal;
  letter-spacing: 0.8px;
  display: block;
  text-align: right;
  white-space: nowrap;
}

.card-event-01 .card-image-container {
  display: block;
  position: relative;
  width: 100%;
  height: 300px;
  margin-bottom: 20px;
  overflow: hidden;
}

@media screen and (min-width: 1024px) {
  .card-event-01 .card-image-container {
    height: 300px;
  }
}

@media screen and (min-width: 1440px) {
  .card-event-01 .card-image-container {
    height: 300px;
  }
}

.card-event-01 .card-image-container .image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}

.card-event-01 .tag-free {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  color: #151515;
  font-family: "Avenir";
  font-size: 16px;
  font-style: normal;
  font-weight: 350;
  line-height: normal;
  background: #F8E634;
}

.card-event-01 .card-title a {
  display: block;
  color: #444;
  font-family: "Avenir";
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 24px;
  margin-bottom: 20px;
}

.card-event-01 .card-title.variant a {
  display: block;
  color: #151515;
  font-family: "Avenir";
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 32px;
  margin-bottom: 20px;
}

@media screen and (min-width: 1024px) {
  .card-event-01 .card-title.variant a {
    font-size: 22px;
    line-height: 32px;
  }
}

.card-event-01 .card-01-description {
  color: #151515;
  font-family: "Inter";
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 18px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* number of lines to show */
  -webkit-box-orient: vertical;
  margin-bottom: 10px;
}

@media screen and (min-width: 1024px) {
  .card-event-01 .card-01-description {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

.card-event-01 .card-event-01__dates {
  display: grid;
  grid-template-columns: 25px 1fr;
  align-items: start;
  gap: 5px;
  margin-bottom: 16px;
}

.card-event-01 .card-event-01__dates .dates__list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.card-event-01 .card-event-01__dates .dates__list .dates__list__item {
  color: #444;
  font-family: "Avenir";
  font-size: 12px;
  font-style: normal;
  font-weight: 350;
  line-height: normal;
  padding: 5px 7px;
  border-radius: 50px;
  border: 1px solid #444;
}

.card-event-01 .card-hour-and-address-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  -moz-column-gap: 14px;
       column-gap: 14px;
  row-gap: 6px;
  margin-bottom: 20px;
}

.card-event-01 .card-hour-and-address-container .hour-and-address {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #444;
  font-family: "Avenir";
  font-size: 16px;
  font-style: normal;
  font-weight: 350;
  line-height: normal;
}

.card-event-01 .card-button-default {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0px 20px;
  height: 48px;
  background: #151515;
  border: 1px solid #151515;
  color: #FBFBFB;
  font-family: "Avenir";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.3s ease;
}

.card-event-01 .card-button-variant {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #151515;
  font-family: "Avenir";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 10px 0;
  border-bottom: 1px solid #B6B6B6;
  cursor: pointer;
}

.card-event-01 .card-button-variant svg {
  transform: rotate(0deg);
  transition: all 0.5s ease;
}

.card-events-02 {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .card-events-02 {
    width: 30%;
  }
}

@media screen and (min-width: 1024px) {
  .card-events-02 {
    width: 100%;
  }

  .card-events-02:hover .image {
    transform: scale(1.5);
  }

  .card-events-02:hover .card-events-02-button {
    border-bottom: 1px solid #151515;
  }

  .card-events-02:hover .card-events-02-button svg {
    transform: rotate(-180deg);
  }
}

.card-events-02 .card-events-02-date {
  color: #626262;
  font-family: "Avenir";
  font-size: 16px;
  font-style: normal;
  font-weight: 350;
  line-height: normal;
  letter-spacing: 0.8px;
  display: block;
  text-align: right;
  margin-bottom: 20px;
}

.card-events-02 .card-events-02-image-container {
  display: block;
  position: relative;
  width: 100%;
  height: 300px;
  margin-bottom: 20px;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .card-events-02 .card-events-02-image-container {
    height: 210px;
  }
}

@media screen and (min-width: 1024px) {
  .card-events-02 .card-events-02-image-container {
    height: 240px;
  }
}

@media screen and (min-width: 1440px) {
  .card-events-02 .card-events-02-image-container {
    height: 300px;
  }
}

.card-events-02 .card-events-02-image-container .image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}

.card-events-02 .card-events-02-tag-free {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  color: #151515;
  font-family: "Avenir";
  font-size: 16px;
  font-style: normal;
  font-weight: 350;
  line-height: normal;
  background: #F8E634;
}

.card-events-02 .card-events-02-title a {
  display: block;
  color: #444;
  font-family: "Avenir";
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 26px;
  margin-bottom: 20px;
}

.card-events-02 .card-events-02-button {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #151515;
  font-family: "Avenir";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding-bottom: 10px;
  border-bottom: 1px solid #B6B6B6;
  cursor: pointer;
  transition: all 0.3s ease;
}

.card-events-02 .card-events-02-button svg {
  transform: rotate(0deg);
  transition: all 0.5s ease;
}

.card-event-03 {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .card-event-03 {
    width: 47%;
  }
}

@media screen and (min-width: 1024px) {
  .card-event-03 {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
}

.card-event-03 .card-event-03-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 16px;
}

.card-event-03 .card-event-03-header .categories-content {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.card-event-03 .card-event-03-header .categories-content .category {
  font-family: "Avenir";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.68px;
  text-transform: uppercase;
  padding: 10px;
}

.card-event-03 .card-event-03-header .date {
  color: #626262;
  font-family: "Avenir";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.8px;
  display: block;
  text-align: right;
  white-space: nowrap;
}

.card-event-03 .card-event-03-image-container {
  display: block;
  position: relative;
  width: 100%;
  height: 170px;
  overflow: hidden;
  margin-bottom: 16px;
}

.card-event-03 .card-event-03-image-container .image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}

@media screen and (min-width: 1024px) {
  .card-event-03 .card-event-03-image-container .image:hover {
    transform: scale(1.5);
  }
}

.card-event-03 .card-event-03-tag-free {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  color: #151515;
  font-family: "Avenir";
  font-size: 16px;
  font-style: normal;
  font-weight: 350;
  line-height: normal;
  background: #F8E634;
}

.card-event-03 .card-event-03-title a {
  display: block;
  color: #444;
  font-family: "Avenir";
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 24px;
  margin-bottom: 16px;
  padding-top: 16px;
}

.card-event-03 .card-event-03-button {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #151515;
  font-family: "Avenir";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding-top: 10px;
  border-top: 1px solid #E8E8E8;
  cursor: pointer;
  margin-top: auto;
  transition: all 0.3s ease;
}

.card-event-03 .card-event-03-button svg {
  transform: rotate(0deg);
  transition: all 0.5s ease;
}

@media screen and (min-width: 1024px) {
  .card-event-03 .card-event-03-button:hover {
    border-top: 1px solid #151515;
  }

  .card-event-03 .card-event-03-button:hover svg {
    transform: rotate(-180deg);
  }
}

.card-event-04 {
  width: 315px;
  padding-left: 10px;
  padding-right: 10px;
}

@media screen and (min-width: 1024px) {
  .card-event-04 {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }

  .card-event-04:hover .image {
    transform: scale(1.5);
  }

  .card-event-04:hover .card-event-04-button {
    background: rgba(21, 21, 21, 0);
    color: #151515;
  }

  .card-event-04:hover .card-event-04-button svg path {
    fill: #626262;
  }
}

@media screen and (min-width: 1440px) {
  .card-event-04 {
    width: 370px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.card-event-04 .card-event-04-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 16px;
}

.card-event-04 .card-event-04-header .categories-content {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.card-event-04 .card-event-04-header .categories-content .category {
  font-family: "Avenir";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.68px;
  text-transform: uppercase;
  padding: 10px;
}

.card-event-04 .card-event-04-header .date {
  color: #626262;
  font-family: "Avenir";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.8px;
  display: block;
  text-align: right;
  white-space: nowrap;
}

.card-event-04 .card-event-04-image-container {
  display: block;
  position: relative;
  width: 100%;
  height: 170px;
  margin-bottom: 20px;
  overflow: hidden;
}

.card-event-04 .card-event-04-image-container .image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}

.card-event-04 .tag-free {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  color: #151515;
  font-family: "Avenir";
  font-size: 16px;
  font-style: normal;
  font-weight: 350;
  line-height: normal;
  background: #F8E634;
}

.card-event-04 .card-event-04-title a {
  display: block;
  color: #444;
  font-family: "Avenir";
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 24px;
  margin-bottom: 20px;
}

.card-event-04 .card-event-04-hour-and-address-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  -moz-column-gap: 14px;
       column-gap: 14px;
  row-gap: 6px;
  margin-bottom: 20px;
}

.card-event-04 .card-event-04-hour-and-address-container .hour-and-address {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #444;
  font-family: "Avenir";
  font-size: 16px;
  font-style: normal;
  font-weight: 350;
  line-height: normal;
}

.card-event-04 .card-event-04-button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0px 20px;
  height: 48px;
  background: #151515;
  border: 1px solid #151515;
  color: #FBFBFB;
  font-family: "Avenir";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.3s ease;
}

.card-news {
  position: relative;
  width: 100%;
  min-height: 200px;
  height: 200px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  border-radius: 0;
  display: block;
}

@media screen and (min-width: 768px) {
  .card-news {
    min-height: 200px;
    height: 200px;
  }
}

@media screen and (min-width: 1024px) {
  .card-news {
    min-height: 200px;
    height: 200px;
  }

  .card-news:hover .card-news-overlay-gradient {
    background: linear-gradient(180deg, rgba(21, 21, 21, 0.3) 0%, rgba(21, 21, 21, 0.85) 100%);
  }

  .card-news:hover .card-news-title {
    transform: translateY(-5px);
  }

  .card-news:hover .card-news-link svg {
    transform: translateX(5px);
  }

  .card-news:hover .tag {
    background: #FFFFFF !important;
    color: #151515 !important;
  }
}

.card-news .card-news-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.card-news .card-news-overlay .card-news-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(21, 21, 21, 0.4) 0%, rgba(21, 21, 21, 0.75) 100%);
  transition: all 0.4s ease;
  z-index: 1;
}

.card-news .card-news-overlay .card-news-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 20px 20px;
}

@media screen and (min-width: 768px) {
  .card-news .card-news-overlay .card-news-content {
    padding: 25px 30px;
  }
}

@media screen and (min-width: 1024px) {
  .card-news .card-news-overlay .card-news-content {
    padding: 30px 40px;
  }
}

.card-news .card-news-header .tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.card-news .card-news-header .tags-container .tag {
  display: inline-block;
  padding: 8px 16px;
  color: #FBFBFB;
  font-family: "Avenir", sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border-radius: 2px;
}

@media screen and (min-width: 768px) {
  .card-news .card-news-header .tags-container .tag {
    font-size: 12px;
    padding: 10px 18px;
  }
}

.card-news .card-news-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 10px;
}

@media screen and (min-width: 768px) {
  .card-news .card-news-text {
    padding-bottom: 15px;
  }
}

.card-news .card-news-text .card-news-title {
  color: #FFFFFF;
  font-family: "Avenir", sans-serif;
  font-size: 18px;
  font-weight: 500;
  font-style: normal;
  line-height: 24px;
  letter-spacing: -0.08px;
  margin-bottom: 8px;
  transition: transform 0.3s ease;
}

@media screen and (min-width: 768px) {
  .card-news .card-news-text .card-news-title {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 10px;
  }
}

@media screen and (min-width: 1024px) {
  .card-news .card-news-text .card-news-title {
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 12px;
  }
}

.card-news .card-news-text .card-news-description {
  color: rgba(255, 255, 255, 0.9);
  font-family: "Avenir", sans-serif;
  font-size: 11px;
  font-weight: 500;
  font-style: normal;
  line-height: 18px;
  letter-spacing: -0.08px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 90%;
}

@media screen and (min-width: 768px) {
  .card-news .card-news-text .card-news-description {
    font-size: 12px;
    line-height: 20px;
    -webkit-line-clamp: 2;
    max-width: 85%;
  }
}

@media screen and (min-width: 1024px) {
  .card-news .card-news-text .card-news-description {
    font-size: 12px;
    line-height: 22px;
    max-width: 80%;
  }
}

.card-news .card-news-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

@media screen and (min-width: 768px) {
  .card-news .card-news-footer {
    padding-top: 15px;
  }
}

.card-news .card-news-footer .card-news-date {
  color: rgba(255, 255, 255, 0.8);
  font-family: "Avenir", sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: normal;
}

@media screen and (min-width: 768px) {
  .card-news .card-news-footer .card-news-date {
    font-size: 12px;
  }
}

.card-news .card-news-footer .card-news-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FFFFFF;
  font-family: "Avenir", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

@media screen and (min-width: 768px) {
  .card-news .card-news-footer .card-news-link {
    font-size: 13px;
  }
}

@media screen and (min-width: 1024px) {
  .card-news .card-news-footer .card-news-link {
    font-size: 14px;
    letter-spacing: 1.4px;
  }
}

.card-news .card-news-footer .card-news-link svg {
  transition: transform 0.3s ease;
}

.card-news .card-news-footer .card-news-link svg path {
  fill: currentColor;
}

.card-service-simple {
  width: 280px;
  padding-left: 10px;
  padding-right: 10px;
}

@media screen and (min-width: 1024px) {
  .card-service-simple {
    width: 350px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.card-service-simple .card-service-simple-link {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #FFF;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media screen and (min-width: 1024px) {
  .card-service-simple .card-service-simple-link:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.12);
  }

  .card-service-simple .card-service-simple-link:hover .card-service-simple-image {
    transform: scale(1.05);
  }
}

.card-service-simple .card-service-simple-link .card-service-simple-image-container {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f5f5f5;
}

@media screen and (min-width: 1024px) {
  .card-service-simple .card-service-simple-link .card-service-simple-image-container {
    height: 250px;
  }
}

.card-service-simple .card-service-simple-link .card-service-simple-image-container .card-service-simple-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}

.card-service-simple .card-service-simple-link .card-service-simple-title {
  padding: 20px;
  color: #151515;
  font-family: "Avenir";
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 120%;
  text-align: left;
  margin: 0;
}

@media screen and (min-width: 1024px) {
  .card-service-simple .card-service-simple-link .card-service-simple-title {
    font-size: 20px;
    padding: 25px;
  }
}

.breadcrumb .breadcrumb-items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.breadcrumb .breadcrumb-items .breadcrumb-list-items .breadcrumb-item {
  display: inline-flex;
  align-items: center;
  padding: 0;
  color: #FFFFFF;
  font-family: "Avenir";
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: transparent;
  border: none;
  white-space: nowrap;
  line-height: 1.2;
  transition: color 0.2s ease;
}

.breadcrumb .breadcrumb-items .breadcrumb-list-items a.breadcrumb-item {
  position: relative;
}

.breadcrumb .breadcrumb-items .breadcrumb-list-items a.breadcrumb-item:hover {
  color: #F8E634;
}

.breadcrumb .breadcrumb-items .separator {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 12px;
  background: transparent;
}

.breadcrumb .breadcrumb-items .separator svg path {
  stroke: #FFFFFF;
}

.footer {
  background-color: #151515;
}

.footer .footer-top {
  display: flex;
  flex-direction: column;
  padding-top: 50px;
}

@media screen and (min-width: 1024px) {
  .footer .footer-top {
    flex-direction: row;
    justify-content: space-between;
    gap: 35px;
    padding-bottom: 30px;
    border-bottom: 1px solid #444;
  }
}

@media screen and (min-width: 1440px) {
  .footer .footer-top {
    gap: 100px;
  }
}

.footer .footer-top .logo-and-rrss {
  margin-bottom: 40px;
}

@media screen and (min-width: 1024px) {
  .footer .footer-top .logo-and-rrss {
    margin-bottom: 0;
  }
}

.footer .footer-top .logo-and-rrss .logo {
  display: block;
  width: auto;
  height: 60px;
  margin-bottom: 30px;
}

@media screen and (min-width: 1024px) {
  .footer .footer-top .logo-and-rrss .logo {
    width: 270px;
    height: 80px;
    margin-bottom: 90px;
  }
}

.footer .footer-top .logo-and-rrss .logo img {
  width: 100%;
  height: 100%;
}

.footer .footer-top .logo-and-rrss .social-networks {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 1024px) {
  .footer .footer-top .logo-and-rrss .social-networks {
    justify-content: space-between;
  }
}

.footer .footer-top .logo-and-rrss .social-networks .item {
  width: 40px;
  height: 40px;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 0.5px solid rgba(21, 21, 21, 0);
}

.footer .footer-top .logo-and-rrss .social-networks .item:hover {
  border: 0.5px solid #151515;
  background-color: #F8E634;
}

.footer .footer-top .logo-and-rrss .social-networks .item:hover svg path {
  fill: #151515;
}

.footer .footer-top .middle {
  display: flex;
  justify-content: space-between;
}

.footer .footer-top .middle .column {
  width: -moz-fit-content;
  width: fit-content;
}

.footer .footer-top .contact {
  white-space: nowrap;
}

.footer .footer-top .contact .column-title {
  width: -moz-fit-content;
  width: fit-content;
}

.footer .footer-top .contact .row {
  width: -moz-fit-content;
  width: fit-content;
}

.footer .column {
  display: flex;
  flex-direction: column;
  width: 33%;
  row-gap: 13px;
}

.footer .column .column-title {
  color: #FBFBFB;
  font-family: "Avenir";
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.footer .column .column-title.uppercase {
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.9px;
}

.footer .column .row {
  display: flex;
}

.footer .column .row .item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #8a8a8a;
  font-family: "Avenir";
  font-size: 18px;
  font-weight: 300;
  border-bottom: 1px solid rgba(251, 251, 251, 0);
  transition: all 0.3s ease;
}

@media screen and (min-width: 1440px) {
  .footer .column .row .item:hover {
    color: #FBFBFB;
    border-bottom: 1px solid #FBFBFB;
  }
}

.footer .column .row .item .icon-address {
  align-self: flex-start;
  margin-top: 6px;
}

.footer .footer-middle {
  font-style: normal;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-top: 30px;
  padding-bottom: 30px;
}

@media screen and (min-width: 1024px) {
  .footer .footer-middle {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer .footer-bottom {
  color: #FBFBFB;
  font-family: "Avenir";
  font-size: 10px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  display: flex;
  justify-content: center;
  padding-top: 10px;
  padding-bottom: 10px;
  border-top: 1px solid #444;
  margin-left: -20px;
  margin-right: -20px;
}

@media screen and (min-width: 1024px) {
  .footer .footer-bottom {
    font-size: 12px;
    padding-top: 15px;
    margin-left: 0;
    margin-right: 0;
  }
}

.footer .footer-desktop-only {
  display: none;
}

@media screen and (min-width: 1024px) {
  .footer .footer-desktop-only {
    display: flex;
  }
}

.footer .footer-accordion {
  background: #151515;
}

@media screen and (min-width: 1024px) {
  .footer .footer-accordion {
    display: none;
  }
}

.footer .footer-accordion .footer-accordion-header {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: inherit;
  color: #FBFBFB;
  font-family: "Avenir";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  border-bottom: 1px solid #444;
  background: #151515;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  padding-bottom: 14px;
}

.footer .footer-accordion .footer-accordion-header.uppercase {
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.footer .footer-accordion .footer-accordion-header.no-border-bottom {
  border-bottom: 1px solid rgba(68, 68, 68, 0);
}

.footer .footer-accordion .footer-accordion-header.ui-state-active {
  border-bottom: 1px solid rgba(68, 68, 68, 0);
}

.footer .footer-accordion .footer-accordion-header.ui-state-active .footer-accordion-header-arrow {
  transform: rotate(-180deg);
}

.footer .footer-accordion .footer-accordion-header .footer-accordion-header-arrow {
  transition: all 0.3s ease;
}

.footer .footer-accordion .footer-accordion-header .ui-accordion-header-icon {
  display: none;
}

.footer .footer-accordion .footer-accordion-content-list {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: inherit;
  background: #151515;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.footer .footer-accordion .footer-accordion-content-list:last-child {
  border-bottom: none !important;
}

.footer .footer-accordion .footer-accordion-content-list.ui-accordion-content-active {
  border-bottom: 1px solid #444;
}

.footer .footer-accordion .footer-accordion-content-list .footer-accordion-list-item a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #FBFBFB;
  font-family: "Avenir";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.footer .footer-accordion .footer-accordion-content-list .footer-accordion-list-item .footer-accordion-item {
  color: #FBFBFB;
  font-family: "Avenir";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.footer .footer-contact {
  padding-bottom: 15px;
  border-bottom: 1px solid #444;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media screen and (min-width: 1024px) {
  .footer .footer-contact {
    display: none;
  }
}

.footer .footer-contact .footer-contact-title {
  color: #FBFBFB;
  font-family: "Avenir";
  font-size: 16px;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  background: #151515;
  display: flex;
  padding-top: 14px;
  padding-bottom: 14px;
}

.footer .footer-contact .footer-contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #FBFBFB;
  font-family: "Avenir";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.gallery-hover-effect {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 1024px) {
  .gallery-hover-effect {
    flex-direction: row;
    justify-content: center;
    width: 100%;
    overflow: hidden;
  }
}

.gallery-hover-effect .gallery-item {
  display: flex;
  height: 100px;
  overflow: hidden;
  position: relative;
}

@media screen and (min-width: 1024px) {
  .gallery-hover-effect .gallery-item {
    justify-content: center;
    align-items: center;
    flex: 0 1 215px;
    background: #000;
    transition: flex 1s cubic-bezier(0.075, 0.82, 0.165, 1);
    overflow: hidden;
    height: 450px;
  }
}

@media screen and (min-width: 1024px) {
  .gallery-hover-effect .gallery-item.default-item-flex {
    flex: 0 1 215px;
  }
}

@media screen and (min-width: 1024px) {
  .gallery-hover-effect .gallery-item.hover-item-flex {
    flex: 1 1 100%;
  }

  .gallery-hover-effect .gallery-item.hover-item-flex img {
    transform: scale(1.5);
  }
}

.gallery-hover-effect .gallery-item .image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}

.gallery-hover-effect .gallery-item .image:hover {
  transform: scale(1.5);
}

@media screen and (min-width: 1024px) {
  .gallery-hover-effect .gallery-item .image.mobile {
    display: none;
  }
}

.gallery-hover-effect .gallery-item .image.desktop {
  display: none;
}

@media screen and (min-width: 1024px) {
  .gallery-hover-effect .gallery-item .image.desktop {
    display: block;
  }
}

.gallery-hover-effect .gallery-item .content {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
  color: #EFEFEF;
}

@media screen and (min-width: 1024px) {
  .gallery-hover-effect .gallery-item .content:hover .button-text {
    background-color: #F8E634;
    opacity: 1;
    padding-left: 15px;
    padding-right: 45px;
  }

  .gallery-hover-effect .gallery-item .content:hover .icon {
    color: #151515;
  }

  .gallery-hover-effect .gallery-item .content:hover .icon rect {
    color: rgba(21, 21, 21, 0);
  }
}

.gallery-hover-effect .gallery-item .content .title {
  font-family: "Avenir";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media screen and (min-width: 1024px) {
  .gallery-hover-effect .gallery-item .content .title {
    position: absolute;
    top: 20px;
    left: 20px;
    transform: rotate(-180deg);
    writing-mode: vertical-lr;
  }
}

.gallery-hover-effect .gallery-item .content .button-text {
  display: none;
}

@media screen and (min-width: 1024px) {
  .gallery-hover-effect .gallery-item .content .button-text {
    display: block;
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: #151515;
    font-family: "Avenir";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    opacity: 0;
    height: 40px;
    display: flex;
    align-items: center;
    transition: padding-left 0.6s ease, padding-right 0.6s ease;
    padding-top: 3px;
  }
}

@media screen and (min-width: 1024px) {
  .gallery-hover-effect .gallery-item .content .icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
  }
}

.header {
  position: fixed;
  width: 100%;
  z-index: 1000;
}

body.body--modern-layout .site__header {
  display: none !important;
}

.header-modern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

@media screen and (max-width: 1023px) {
  .header-modern {
    position: fixed;
    background: rgba(21, 21, 21, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
}

@media screen and (min-width: 1024px) {
  .header-modern.header-modern--scrolled {
    position: fixed;
    background: rgba(21, 21, 21, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .header-modern.header-modern--scrolled .header-modern__top-bar {
    display: none;
  }

  .header-modern.header-modern--scrolled .header-modern__content {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .header-modern.header-modern--scrolled .header-modern__logo-scrolled {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
}

.header-modern.header-modern--inner {
  position: relative;
  background: transparent;
}

.header-modern.header-modern--inner .header-modern__top-bar {
  background: transparent;
}

.header-modern.header-modern--inner .header-modern__main-bar {
  background: transparent;
}

.header-modern.header-modern--inner .header-modern__nav-link {
  color: #FFFFFF;
}

.header-modern.header-modern--inner .header-modern__submenu {
  background: rgba(21, 21, 21, 0.85);
}

.header-modern .header-modern__top-bar {
  background: transparent;
  padding: 15px 0 10px;
  transition: all 0.3s ease;
}

@media screen and (max-width: 1023px) {
  .header-modern .header-modern__top-bar {
    padding: 12px 0;
    background: rgba(21, 21, 21, 0.9);
    backdrop-filter: blur(10px);
  }
}

.header-modern .header-modern__top-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

@media screen and (max-width: 1023px) {
  .header-modern .header-modern__top-content {
    justify-content: space-between;
    gap: 15px;
  }
}

.header-modern .header-modern__logo {
  flex-shrink: 0;
  z-index: 10;
}

.header-modern .header-modern__logo img {
  height: 50px;
  width: auto;
  transition: height 0.3s ease;
}

@media screen and (max-width: 1023px) {
  .header-modern .header-modern__logo img {
    height: 40px;
  }
}

.header-modern .header-modern__social-networks {
  display: flex;
  gap: 15px;
  align-items: center;
}

.header-modern .header-modern__social-link {
  color: #FBFBFB;
  transition: opacity 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-modern .header-modern__social-link:hover {
  opacity: 0.7;
}

.header-modern .header-modern__social-link svg {
  width: 14px;
  height: 14px;
}

.header-modern .header-modern__legal-documents {
  display: flex;
  gap: 20px;
  align-items: center;
}

@media screen and (max-width: 1023px) {
  .header-modern .header-modern__legal-documents {
    display: none;
  }
}

.header-modern .header-modern__legal-link {
  color: #FBFBFB;
  font-family: "Avenir", sans-serif;
  font-size: 12px;
  font-weight: 400;
  text-decoration: none;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.header-modern .header-modern__legal-link:hover {
  opacity: 0.7;
}

.header-modern .header-modern__main-bar {
  background: transparent;
  padding: 10px 0;
}

@media screen and (max-width: 1023px) {
  .header-modern .header-modern__main-bar {
    display: none;
  }
}

.header-modern .header-modern__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.header-modern .header-modern__logo-scrolled {
  flex-shrink: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-20px);
  transition: all 0.3s ease;
}

@media screen and (max-width: 1023px) {
  .header-modern .header-modern__logo-scrolled {
    display: none;
  }
}

.header-modern .header-modern__logo-scrolled img {
  height: 35px;
  width: auto;
  transition: height 0.3s ease;
}

.header-modern .header-modern__right {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media screen and (max-width: 1023px) {
  .header-modern .header-modern__right {
    gap: 15px;
  }
}

.header-modern .header-modern__nav {
  display: flex;
}

@media screen and (max-width: 1023px) {
  .header-modern .header-modern__nav {
    display: none;
  }
}

.header-modern .header-modern__nav-list {
  display: flex;
  gap: 35px;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 1200px) {
  .header-modern .header-modern__nav-list {
    gap: 25px;
  }
}

.header-modern .header-modern__nav-item {
  position: relative;
}

.header-modern .header-modern__nav-item.has-submenu .header-modern__nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
}

.header-modern .header-modern__nav-item.active .header-modern__nav-link {
  color: #F8E634;
}

.header-modern .header-modern__nav-item:hover .header-modern__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-modern .header-modern__nav-link {
  color: #FBFBFB;
  font-family: "Avenir", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
  line-height: 1.2;
  display: flex;
  align-items: center;
}

.header-modern .header-modern__nav-link:hover {
  color: #F8E634;
}

.header-modern .header-modern__nav-arrow {
  width: 12px;
  height: 12px;
  transition: transform 0.2s ease;
  vertical-align: middle;
  flex-shrink: 0;
}

.header-modern__nav-item:hover .header-modern .header-modern__nav-arrow {
  transform: rotate(180deg);
}

.header-modern .header-modern__submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(21, 21, 21, 0.95);
  backdrop-filter: blur(10px);
  padding: 25px;
  min-width: 250px;
  border-radius: 8px;
  list-style: none;
  margin: 15px 0 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-modern .header-modern__submenu-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.header-modern .header-modern__submenu-title {
  color: #FBFBFB;
  font-family: "Avenir", sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.header-modern .header-modern__submenu-item a {
  color: #E9E9E9;
  font-family: "Avenir", sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  transition: color 0.2s ease;
}

.header-modern .header-modern__submenu-item a:hover {
  color: #F8E634;
}

.header-modern .header-modern__submenu-item a:hover .header-modern__submenu-arrow {
  opacity: 1;
  transform: translateX(5px);
}

.header-modern .header-modern__submenu-arrow {
  width: 20px;
  height: 20px;
  opacity: 0.5;
  transition: all 0.2s ease;
}

.header-modern .header-modern__submenu-button {
  color: #151515;
  background: #F8E634;
  font-family: "Avenir", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  transition: all 0.2s ease;
}

.header-modern .header-modern__submenu-button:hover {
  background: #E0D430;
  transform: translateX(3px);
}

.header-modern .header-modern__submenu-button svg {
  width: 14px;
  height: 14px;
}

.header-modern .header-modern__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media screen and (max-width: 1023px) {
  .header-modern .header-modern__actions {
    gap: 15px;
  }
}

@media screen and (max-width: 767px) {
  .header-modern .header-modern__search {
    display: none;
  }
}

.header-modern .header-modern__secondary-links {
  display: flex;
  gap: 15px;
  align-items: center;
}

@media screen and (max-width: 1023px) {
  .header-modern .header-modern__secondary-links {
    display: none;
  }
}

.header-modern .header-modern__secondary-link {
  color: #FBFBFB;
  font-family: "Avenir", sans-serif;
  font-size: 12px;
  font-weight: 400;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  transition: all 0.2s ease;
}

.header-modern .header-modern__secondary-link:hover {
  background: rgba(255, 255, 255, 0.2);
}

.header-modern .header-modern__secondary-icon {
  width: 16px;
  height: 16px;
}

.header-modern .header-modern__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 10;
}

@media screen and (max-width: 1023px) {
  .header-modern .header-modern__mobile-toggle {
    display: flex;
  }
}

.header-modern .header-modern__mobile-toggle span {
  width: 25px;
  height: 2px;
  background: #FBFBFB;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.header-modern .header-modern__mobile-toggle:hover span {
  background: #F8E634;
}

.header-modern .header-modern__mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header-modern .header-modern__mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.header-modern .header-modern__mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.nav-mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background: rgba(21, 21, 21, 0.98);
  backdrop-filter: blur(20px);
  z-index: 9999;
  overflow-y: auto;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
  display: none;
}

.nav-mobile::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
  z-index: -1;
  pointer-events: none;
}

@media screen and (max-width: 1023px) {
  .nav-mobile {
    display: block;
  }
}

@media screen and (min-width: 1024px) {
  .nav-mobile {
    display: none !important;
  }
}

.nav-mobile.active {
  right: 0;
}

.nav-mobile.active::before {
  opacity: 1;
  visibility: visible;
}

.nav-mobile .nav-header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 10;
  background-color: transparent;
}

@media screen and (max-width: 767px) {
  .nav-mobile .nav-header {
    padding: 15px 20px;
  }
}

.nav-mobile .nav-header .logo {
  display: block;
  width: auto;
  height: 45px;
}

@media screen and (max-width: 767px) {
  .nav-mobile .nav-header .logo {
    height: 35px;
  }
}

.nav-mobile .nav-header .logo img {
  width: auto;
  height: 100%;
  display: block;
}

.nav-mobile .nav-header .hamburger-icon-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 5px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  padding: 8px;
  position: relative;
  z-index: 1002;
}

.nav-mobile .nav-header .hamburger-icon-menu.open .bar:nth-child(1) {
  transform: rotate(45deg) translateY(8px) translateX(6px);
  background: #FBFBFB;
}

.nav-mobile .nav-header .hamburger-icon-menu.open .bar:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}

.nav-mobile .nav-header .hamburger-icon-menu.open .bar:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px) translateX(6px);
  background: #FBFBFB;
}

.nav-mobile .nav-header .hamburger-icon-menu .bar {
  width: 24px;
  height: 2.5px;
  background: #FBFBFB;
  border: none;
  border-radius: 2px;
  display: block;
  transition: all 0.3s ease;
}

@media screen and (max-width: 767px) {
  .nav-mobile .nav-header .hamburger-icon-menu .bar {
    width: 22px;
    height: 2px;
  }
}

.nav-mobile .nav-content {
  width: 100%;
  height: calc(100vh - 75px);
  background-color: transparent;
  overflow-y: auto;
  padding: 0;
}

@media screen and (max-width: 767px) {
  .nav-mobile .nav-content {
    height: calc(100vh - 65px);
  }
}

.nav-mobile .nav-content .container {
  padding-top: 25px;
  padding-bottom: 35px;
}

.nav-mobile .nav-content .header-modern__search {
  margin-bottom: 20px;
}

.nav-mobile .nav-content .header-modern__search .search-button {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 12px 16px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FBFBFB;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-mobile .nav-content .header-modern__search .search-button:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.nav-mobile .nav-content .header-modern__search .search-button svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.nav-mobile .nav-content .header-modern__search .search-button svg path {
  fill: #FBFBFB;
}

.nav-mobile .nav-content .header-modern__search .search-button span {
  font-family: "Avenir";
  font-size: 16px;
  font-weight: 350;
  color: rgba(255, 255, 255, 0.7);
}

.nav-mobile .nav-content .primary-links {
  padding-top: 15px;
  padding-bottom: 15px;
}

.nav-mobile .nav-content .primary-links .primary-links-list-item {
  border-bottom: 1px solid #444;
}

.nav-mobile .nav-content .primary-links .primary-links-list-item.active a {
  color: #F8E634;
}

.nav-mobile .nav-content .primary-links .primary-links-list-item a {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: inherit;
  background: inherit;
  color: #FBFBFB;
  font-family: "Avenir";
  font-size: 20px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  padding-right: 6px;
  line-height: normal;
}

.nav-mobile .nav-content .primary-links .primary-links-list-item a.ui-accordion-header-active .arrow {
  transform: rotate(-180deg);
}

.nav-mobile .nav-content .primary-links .primary-links-list-item a .arrow {
  transition: all 0.3s ease;
}

.nav-mobile .nav-content .primary-links .primary-links-list-item .submenu {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: inherit;
  background: inherit;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 15px;
}

.nav-mobile .nav-content .primary-links .primary-links-list-item .submenu .submenu-list-item a {
  color: #B6B6B6;
  font-family: "Avenir";
  font-size: 16px;
  font-style: normal;
  font-weight: 350;
  line-height: normal;
  padding: 0;
}

.nav-mobile .nav-content .secondary-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 25px;
}

.nav-mobile .nav-content .secondary-links .secondary-links-list-item a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #F8F8F8;
  font-family: "Avenir";
  font-size: 14px;
  font-style: normal;
  font-weight: 350;
  line-height: normal;
  letter-spacing: 0.28px;
  padding-top: 2px;
  padding-bottom: 2px;
}

.nav-mobile .nav-content .social-networks {
  display: flex;
  align-items: center;
  gap: 35px;
  color: #FBFBFB;
  margin-bottom: 25px;
}

.nav-mobile .nav-content .social-networks a {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-mobile .nav-content .legal-documents {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.nav-mobile .nav-content .legal-documents a {
  color: #F8F8F8;
  font-family: "Avenir";
  font-size: 14px;
  font-style: normal;
  font-weight: 350;
  line-height: normal;
  letter-spacing: 0.28px;
  text-decoration: underline;
}

.nav-desktop {
  display: none;
}

@media screen and (width >= 1280px) {
  .nav-desktop {
    display: block;
    background: #F8F8F8;
  }
}

.nav-desktop .nav-top {
  background: #151515;
  padding: 8px 0px;
}

.nav-desktop .nav-top .nav-top-content {
  display: flex;
  justify-content: space-between;
}

.nav-desktop .nav-top .nav-top-content .social-networks {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-desktop .nav-top .nav-top-content .social-networks .item {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.nav-desktop .nav-top .nav-top-content .social-networks .item:hover {
  background-color: #F8E634;
  color: #151515;
}

.nav-desktop .nav-top .nav-top-content .secondary-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-desktop .nav-top .nav-top-content .secondary-links .icon {
  margin-right: -15px;
}

.nav-desktop .nav-top .nav-top-content .secondary-links .item {
  color: #F8F8F8;
  font-family: "Avenir";
  font-size: 14px;
  font-style: normal;
  font-weight: 350;
  line-height: normal;
  letter-spacing: 0.28px;
  border-bottom: 1px solid rgba(248, 248, 248, 0);
  transition: all 0.3s ease;
}

.nav-desktop .nav-top .nav-top-content .secondary-links .item:hover {
  border-bottom: 1px solid #F8F8F8;
}

.nav-desktop .nav-top .nav-top-content .secondary-links .separator {
  width: 1px;
  height: 16px;
  background-color: #FBFBFB;
}

.nav-desktop .nav-middle {
  padding: 20px 0px;
}

.nav-desktop .nav-middle .nav-middle-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 65px;
}

@media screen and (width >= 1440px) {
  .nav-desktop .nav-middle .nav-middle-content {
    gap: inherit;
  }
}

.nav-desktop .nav-middle .nav-middle-content .logo {
  width: 180px;
  height: auto;
}

.nav-desktop .nav-middle .nav-middle-content .logo img {
  width: 100%;
  height: 100%;
}

.nav-desktop .nav-middle .nav-middle-content .right-side {
  display: flex;
  align-items: center;
  gap: 15px;
}

@media screen and (width >= 1440px) {
  .nav-desktop .nav-middle .nav-middle-content .right-side {
    gap: 24px;
  }
}

.nav-desktop .nav-middle .nav-middle-content .right-side .legal-documents {
  display: flex;
  gap: 20px;
}

.nav-desktop .nav-middle .nav-middle-content .right-side .legal-documents .item {
  color: #444;
  font-family: "Avenir";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  text-wrap: balance;
}

@media screen and (width >= 1440px) {
  .nav-desktop .nav-middle .nav-middle-content .right-side .legal-documents .item {
    font-size: 14px;
  }
}

.nav-desktop .nav-bottom {
  border-top: 1px solid #B6B6B6;
  border-bottom: 1px solid #B6B6B6;
}

.nav-desktop .nav-bottom .nav-bottom-content .primary-links {
  border: none;
  background: inherit;
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-desktop .nav-bottom .nav-bottom-content .primary-links .primary-links-list-item.active a.item {
  position: relative;
}

.nav-desktop .nav-bottom .nav-bottom-content .primary-links .primary-links-list-item.active a.item::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -3px;
  height: 3px;
  width: 100%;
  border-bottom: 3px solid #151515;
}

.nav-desktop .nav-bottom .nav-bottom-content .primary-links .primary-links-list-item:hover a {
  background: rgba(255, 0, 0, 0);
  border: none;
  border-bottom: 3px solid #151515;
}

.nav-desktop .nav-bottom .nav-bottom-content .primary-links .primary-links-list-item:hover a .icon {
  transform: rotate(-180deg);
}

.nav-desktop .nav-bottom .nav-bottom-content .primary-links .primary-links-list-item:hover .submenu {
  opacity: 1;
  top: 183px;
}

.nav-desktop .nav-bottom .nav-bottom-content .primary-links .primary-links-list-item a {
  color: #444;
  font-family: "Avenir";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 3px solid rgba(21, 21, 21, 0);
}

.nav-desktop .nav-bottom .nav-bottom-content .primary-links .primary-links-list-item a .icon {
  transition: all 0.3s ease;
}

.nav-desktop .nav-bottom .nav-bottom-content .primary-links .primary-links-list-item .submenu {
  position: absolute;
  top: -600px;
  left: 0;
  border: none;
  width: 100vw;
  background: #151515;
  display: flex;
  padding-top: 50px;
  padding-bottom: 50px;
  z-index: -1;
  transition: top 0.4s linear, opacity 0.4s ease-out;
}

.nav-desktop .nav-bottom .nav-bottom-content .primary-links .primary-links-list-item .submenu.hide {
  top: -600px !important;
  opacity: 0 !important;
  pointer-events: none;
}

.nav-desktop .nav-bottom .nav-bottom-content .primary-links .primary-links-list-item .submenu .submenu-content-left {
  position: relative;
  padding-left: 65px;
  display: flex;
  flex-direction: column;
  width: 50%;
  padding-left: calc((100vw - 1290px) / 2);
  border-right: 0.5px solid #868686;
}

.nav-desktop .nav-bottom .nav-bottom-content .primary-links .primary-links-list-item .submenu .submenu-content-left .title {
  border: none;
  background: inherit;
  color: #868686;
  font-family: "Avenir";
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 2.16px;
  text-transform: uppercase;
}

.nav-desktop .nav-bottom .nav-bottom-content .primary-links .primary-links-list-item .submenu .submenu-content-left .submenu-list-item {
  border: none;
  background: inherit;
}

.nav-desktop .nav-bottom .nav-bottom-content .primary-links .primary-links-list-item .submenu .submenu-content-left .submenu-list-item.hover .arrow {
  opacity: 1;
  animation: shake-horizontal 0.3s linear;
}

.nav-desktop .nav-bottom .nav-bottom-content .primary-links .primary-links-list-item .submenu .submenu-content-left .submenu-list-item a {
  color: #FBFBFB;
  font-family: "Avenir";
  font-size: 30px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  display: flex;
  align-self: center;
  gap: 10px;
}

.nav-desktop .nav-bottom .nav-bottom-content .primary-links .primary-links-list-item .submenu .submenu-content-left .submenu-list-item a .arrow {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-desktop .nav-bottom .nav-bottom-content .primary-links .primary-links-list-item .submenu .submenu-content-left .button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border: 1px solid var(--neutrals-grey-grey-200, #939393);
  color: var(--cclb-white, #FBFBFB);
  font-family: "Avenir";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  /* 171.429% */
  letter-spacing: 1.4px;
  text-transform: uppercase;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 25px;
  transition: all 0.3s ease;
}

.nav-desktop .nav-bottom .nav-bottom-content .primary-links .primary-links-list-item .submenu .submenu-content-left .button:hover {
  border: 1px solid var(--cclb-white, #FBFBFB);
  background: var(--cclb-white, #FBFBFB);
  color: var(--cclb-black, #151515);
}

.nav-desktop .nav-bottom .nav-bottom-content .primary-links .primary-links-list-item .submenu .submenu-content-right {
  width: 50%;
  border-left: 0.5px solid #868686;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nav-desktop .nav-bottom .nav-bottom-content .primary-links .primary-links-list-item .submenu .submenu-content-right .submenu-close-button {
  border: none;
  background: inherit;
  position: absolute;
  top: 20px;
  right: 85px;
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--variants-02, #E9E9E9);
  font-family: "Avenir";
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 1.44px;
  text-transform: uppercase;
}

.nav-desktop .nav-bottom .nav-bottom-content .primary-links .primary-links-list-item .submenu .submenu-content-right .submenu-close-button svg {
  transition: all 0.3s ease;
}

.nav-desktop .nav-bottom .nav-bottom-content .primary-links .primary-links-list-item .submenu .submenu-content-right .submenu-close-button:hover svg {
  transform: rotate(-180deg);
}

.nav-desktop .nav-bottom .nav-bottom-content .primary-links .primary-links-list-item .submenu .submenu-content-right .highlighted-content {
  background: inherit;
  border: none;
  display: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease 1s;
  padding-left: 60px;
  padding-right: calc((100vw - 1290px + 10px) / 2);
}

.nav-desktop .nav-bottom .nav-bottom-content .primary-links .primary-links-list-item .submenu .submenu-content-right .highlighted-content.show {
  display: block;
  opacity: 1;
  pointer-events: all;
}

.nav-desktop .nav-bottom .nav-bottom-content .primary-links .primary-links-list-item .submenu .submenu-content-right .highlighted-content .pretitle,
.nav-desktop .nav-bottom .nav-bottom-content .primary-links .primary-links-list-item .submenu .submenu-content-right .highlighted-content .title {
  color: var(--neutrals-grey-grey-200, #939393);
  font-family: "Avenir";
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 2.16px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.nav-desktop .nav-bottom .nav-bottom-content .primary-links .primary-links-list-item .submenu .submenu-content-right .highlighted-content .image-container {
  width: 100%;
  height: 220px;
  margin-bottom: 20px;
  position: relative;
}

.nav-desktop .nav-bottom .nav-bottom-content .primary-links .primary-links-list-item .submenu .submenu-content-right .highlighted-content .image-container .tag {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  color: var(--cclb-black, #151515);
  font-family: "Avenir";
  font-size: 16px;
  font-style: normal;
  font-weight: 350;
  line-height: normal;
  background: var(--cclb-primary, #F8E634);
}

.nav-desktop .nav-bottom .nav-bottom-content .primary-links .primary-links-list-item .submenu .submenu-content-right .highlighted-content .image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.nav-desktop .nav-bottom .nav-bottom-content .primary-links .primary-links-list-item .submenu .submenu-content-right .highlighted-content .image_space {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}

.nav-desktop .nav-bottom .nav-bottom-content .primary-links .primary-links-list-item .submenu .submenu-content-right .highlighted-content .date {
  color: var(--neutrals-grey-grey-50, #E8E8E8);
  font-family: "Avenir";
  font-size: 14px;
  font-style: normal;
  font-weight: 350;
  line-height: normal;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--neutrals-grey-grey-300, #626262);
  margin-bottom: 18px;
}

.nav-desktop .nav-bottom .nav-bottom-content .primary-links .primary-links-list-item .submenu .submenu-content-right .highlighted-content .title {
  color: var(--cclb-white, #FBFBFB);
  font-family: "Avenir";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px;
  margin-bottom: 18px;
}

.nav-desktop .nav-bottom .nav-bottom-content .primary-links .primary-links-list-item .submenu .submenu-content-right .highlighted-content .title-spaces {
  color: #939393;
  font-family: "Avenir";
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 2.16px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.nav-desktop .nav-bottom .nav-bottom-content .primary-links .primary-links-list-item .submenu .submenu-content-right .highlighted-content .hour-and-address-content {
  display: flex;
  grid-area: 14px;
  margin-bottom: 18px;
}

.nav-desktop .nav-bottom .nav-bottom-content .primary-links .primary-links-list-item .submenu .submenu-content-right .highlighted-content .hour-and-address-content .hour-and-address {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--neutrals-grey-grey-100, #B6B6B6);
  font-family: "Avenir";
  font-size: 16px;
  font-style: normal;
  font-weight: 350;
  line-height: normal;
}

.nav-desktop .nav-bottom .nav-bottom-content .primary-links .primary-links-list-item .submenu .submenu-content-right .highlighted-content .button {
  display: flex;
  align-items: center;
  color: #151515;
  font-family: "Avenir";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 13px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  background-color: #FBFBFB;
  padding: 10px 20px;
  padding-top: 17px;
  padding-bottom: 13px;
  width: -moz-fit-content;
  width: fit-content;
}

.newsletter {
  padding: 40px 30px;
  background-color: #313131;
}

@media screen and (min-width: 1440px) {
  .newsletter {
    padding: 40px 60px;
  }
}

.newsletter .pretitle {
  color: #939393;
  font-family: "Avenir";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.68px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

@media screen and (min-width: 1440px) {
  .newsletter .pretitle {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1.92px;
    margin-bottom: 20px;
  }
}

.newsletter .title {
  color: #FBFBFB;
  font-family: "Avenir";
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  margin-bottom: 32px;
}

.newsletter .title strong {
  font-weight: 800;
}

@media screen and (min-width: 1440px) {
  .newsletter .title {
    margin-bottom: 30px;
  }
}

.news-section-newsletter {
  background-color: #FBFBFB;
  padding-top: 30px;
  margin-bottom: -30px;
}

@media screen and (min-width: 1024px) {
  .news-section-newsletter {
    padding-top: 40px;
    padding-bottom: 40px;
    margin-bottom: 0;
  }
}

.news-section-newsletter .news-section-newsletter-content .newsletter {
  margin-left: -30px;
  margin-right: -30px;
}

@media screen and (min-width: 1024px) {
  .news-section-newsletter .news-section-newsletter-content .newsletter {
    margin-left: 0px;
    margin-right: 0px;
  }
}

.site__footer {
  padding-top: 30px;
}

@media screen and (min-width: 1024px) {
  .site__footer {
    padding-top: 40px;
  }
}

.button-scroll-to-top {
  position: fixed;
  top: 90vh;
  right: 20px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 6;
  display: flex;
  align-items: center;
}

.button-scroll-to-top:hover .button-scroll-to-top__title {
  opacity: 1;
  pointer-events: all;
}

.button-scroll-to-top .button-scroll-to-top__title {
  display: flex;
  align-items: center;
  height: 40px;
  background: #222222;
  color: #EFEFEF;
  font-family: "Avenir";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 1;
  padding-left: 15px;
  padding-right: 45px;
  position: absolute;
  right: 6px;
  border-radius: 50px;
  opacity: 0;
  transition: all 0.4s ease;
  pointer-events: none;
}

.button-scroll-to-top .button-scroll-to-top__arrow {
  position: relative;
}

.social-sidebar {
  position: absolute;
  left: 10px;
  top: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

@media screen and (min-width: 1024px) {
  .social-sidebar {
    display: flex;
  }
}

.social-sidebar__label {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  margin-bottom: 30px;
}

.social-sidebar__text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: "Avenir", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #151515;
}

.social-sidebar__line {
  width: 2px;
  height: 150px;
  background-color: #151515;
}

.social-sidebar__icons {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-sidebar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  transition: all 0.3s ease;
  border-radius: 50%;
  position: relative;
}

.social-sidebar__icon svg {
  width: 26px;
  height: 26px;
  fill: #151515;
  transition: all 0.3s ease;
}

.social-sidebar__icon:hover {
  background-color: #F5F5F5;
}

.social-sidebar__icon:hover svg {
  fill: #6B2D87;
  transform: scale(1.1);
}

.section-newsletter {
  padding-top: 30px;
  margin-bottom: -30px;
}

@media screen and (min-width: 1024px) {
  .section-newsletter {
    padding-top: 40px;
    padding-bottom: 40px;
    margin-bottom: 0;
  }
}

.section-newsletter .section-newsletter-content .newsletter {
  margin-left: -30px;
  margin-right: -30px;
}

@media screen and (min-width: 1024px) {
  .section-newsletter .section-newsletter-content .newsletter {
    margin-left: 0px;
    margin-right: 0px;
  }
}

.section-banner-default {
  background: white;
  padding-top: 30px;
  margin-bottom: -30px;
}

@media screen and (min-width: 1024px) {
  .section-banner-default {
    margin-bottom: 0;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.section-banner-default .section-banner-default-content .banner-default {
  margin-left: -30px;
  margin-right: -30px;
}

@media screen and (min-width: 1024px) {
  .section-banner-default .section-banner-default-content .banner-default {
    margin-left: 0px;
    margin-right: 0px;
  }
}

.section-banner-fullwidth {
  padding-top: 30px;
  padding-bottom: 30px;
}

@media screen and (min-width: 1024px) {
  .section-banner-fullwidth {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.section-banner-fullwidth .section-banner-fullwidth-content {
  position: relative;
  padding: 60px 30px;
}

.section-banner-fullwidth .section-banner-fullwidth-content .section-banner-fullwidth-bg-mobile {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
}

@media screen and (min-width: 1024px) {
  .section-banner-fullwidth .section-banner-fullwidth-content .section-banner-fullwidth-bg-mobile {
    display: none;
  }
}

.section-banner-fullwidth .section-banner-fullwidth-content .section-banner-fullwidth-bg-desktop {
  display: none;
}

@media screen and (min-width: 1024px) {
  .section-banner-fullwidth .section-banner-fullwidth-content .section-banner-fullwidth-bg-desktop {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
  }
}

.section-banner-fullwidth .section-banner-fullwidth-content .section-banner-fullwidth-pretitle {
  display: block;
  color: #FBFBFB;
  text-align: center;
  font-family: "Avenir";
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.44px;
  text-transform: uppercase;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
  position: relative;
}

.section-banner-fullwidth .section-banner-fullwidth-content .section-banner-fullwidth-title {
  color: #FBFBFB;
  font-family: "Avenir";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  position: relative;
  max-width: 600px;
}

.section-banner-fullwidth .section-banner-fullwidth-content .section-banner-fullwidth-title strong {
  font-weight: 800;
}

.section-banner-fullwidth .section-banner-fullwidth-content .section-banner-fullwidth-description {
  color: #FBFBFB;
  text-align: center;
  font-family: "Avenir";
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  position: relative;
  max-width: 600px;
}

.section-banner-fullwidth .section-banner-fullwidth-content .section-banner-fullwidth-button {
  color: #F8E634;
  font-family: "Avenir";
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border: 1px solid #F8E634;
  padding-bottom: 9px;
  width: 100%;
  position: relative;
  transition: all 0.3s ease;
}

@media screen and (min-width: 768px) {
  .section-banner-fullwidth .section-banner-fullwidth-content .section-banner-fullwidth-button {
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (min-width: 1024px) {
  .section-banner-fullwidth .section-banner-fullwidth-content .section-banner-fullwidth-button:hover {
    background: #F8E634;
    color: #151515;
  }

  .section-banner-fullwidth .section-banner-fullwidth-content .section-banner-fullwidth-button:hover svg path {
    fill: #151515;
  }
}

.section-banner-slides {
  background-color: #FBFBFB;
  padding-top: 30px;
  padding-bottom: 30px;
}

@media screen and (min-width: 1024px) {
  .section-banner-slides {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.section-contact-cards {
  padding-top: 30px;
  padding-bottom: 30px;
}

@media screen and (min-width: 1024px) {
  .section-contact-cards {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.section-contact-cards .section-contact-cards-content .section-contact-cards-pretitle {
  color: #444;
  font-family: "Avenir";
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.44px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 5px;
}

@media screen and (min-width: 1024px) {
  .section-contact-cards .section-contact-cards-content .section-contact-cards-pretitle {
    font-size: 16px;
    letter-spacing: 1.92px;
    margin-bottom: 10px;
  }
}

.section-contact-cards .section-contact-cards-content .section-contact-cards-title {
  color: #313131;
  font-family: "Avenir";
  font-size: 24px;
  font-weight: 350;
  line-height: 35px;
  margin-bottom: 30px;
}

@media screen and (min-width: 1024px) {
  .section-contact-cards .section-contact-cards-content .section-contact-cards-title {
    font-size: 30px;
    font-weight: 400;
    line-height: 40px;
    margin-bottom: 40px;
  }
}

.section-contact-cards .section-contact-cards-content .section-contact-cards-title strong {
  font-weight: 800;
}

.section-contact-cards .section-contact-cards-content .contact-cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

@media screen and (min-width: 768px) {
  .section-contact-cards .section-contact-cards-content .contact-cards-container .contact-card {
    max-width: 335px;
  }
}

@media screen and (min-width: 1024px) {
  .section-contact-cards .section-contact-cards-content .contact-cards-container .contact-card {
    max-width: 100%;
    width: 48%;
  }
}

@media screen and (min-width: 1440px) {
  .section-contact-cards .section-contact-cards-content .contact-cards-container .contact-card {
    width: 48.6%;
  }
}

.section-contact-cards .section-contact-cards-content .contact-cards-container .contact-card .contact-card-image-container {
  height: 210px;
  overflow: hidden;
}

@media screen and (min-width: 1024px) {
  .section-contact-cards .section-contact-cards-content .contact-cards-container .contact-card .contact-card-image-container:hover .contact-card-image {
    transform: scale(1.5);
  }
}

.section-contact-cards .section-contact-cards-content .contact-cards-container .contact-card .contact-card-image-container .contact-card-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}

.section-contact-cards .section-contact-cards-content .contact-cards-container .contact-card .contact-card-content {
  padding: 20px;
  background: #FBFBFB;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
  font-style: normal;
}

@media screen and (min-width: 1024px) {
  .section-contact-cards .section-contact-cards-content .contact-cards-container .contact-card .contact-card-content {
    padding: 30px;
    padding-bottom: 20px;
  }
}

.section-contact-cards .section-contact-cards-content .contact-cards-container .contact-card .contact-card-content .contact-card-title {
  color: #313131;
  font-family: "Avenir";
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}

.section-contact-cards .section-contact-cards-content .contact-cards-container .contact-card .contact-card-content .contact-card-phone,
.section-contact-cards .section-contact-cards-content .contact-cards-container .contact-card .contact-card-content .contact-card-email {
  color: #4E4E4E;
  font-family: "Avenir";
  font-size: 16px;
  font-weight: 300;
  line-height: 150%;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 8px;
}

.section-contact-cards .section-contact-cards-content .contact-cards-container .contact-card .contact-card-content .contact-card-address {
  color: #4E4E4E;
  font-family: "Avenir";
  font-size: 16px;
  font-weight: 300;
  line-height: 150%;
  font-style: normal;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 0;
}

.section-description {
  padding-bottom: 30px;
}

@media screen and (min-width: 1024px) {
  .section-description {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.section-description .section-description-content {
  display: flex;
  flex-direction: column-reverse;
}

@media screen and (min-width: 1024px) {
  .section-description .section-description-content {
    flex-direction: row;
  }
}

.section-description .section-description-content.only-description-image {
  flex-direction: column;
}

.section-description .section-description-content.only-description-image .section-description-right {
  border-top: 1px solid rgba(232, 232, 232, 0);
  border-bottom: 1px solid rgba(232, 232, 232, 0);
  margin-left: -20px;
  margin-right: -20px;
  padding-bottom: 0;
}

@media screen and (min-width: 1024px) {
  .section-description .section-description-content.only-description-image .section-description-right {
    display: flex;
    align-items: center;
    border-top: 1px solid #B6B6B6;
    border-bottom: 1px solid rgba(232, 232, 232, 0);
    border-left: 1px solid rgba(232, 232, 232, 0);
    width: 50%;
  }
}

.section-description .section-description-content.only-description-image .section-description-right .section-description-image-container {
  width: 100%;
  height: 300px;
}

@media screen and (min-width: 1024px) {
  .section-description .section-description-content.only-description-image .section-description-right .section-description-image-container {
    height: 320px;
  }
}

@media screen and (min-width: 1024px) {
  .section-description .section-description-content.only-description-image {
    flex-direction: row;
  }

  .section-description .section-description-content.only-description-image .section-description-left {
    width: 50%;
  }
}

.section-description .section-description-content .section-description-left {
  padding-top: 30px;
}

@media screen and (min-width: 1024px) {
  .section-description .section-description-content .section-description-left {
    border-top: 1px solid #B6B6B6;
  }
}

@media screen and (min-width: 1440px) {
  .section-description .section-description-content .section-description-left {
    width: 70%;
  }
}

@media screen and (min-width: 1024px) {
  .section-description .section-description-content .section-description-left .description,
  .section-description .section-description-content .section-description-left .additional-description {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (min-width: 1440px) {
  .section-description .section-description-content .section-description-left .description,
  .section-description .section-description-content .section-description-left .additional-description {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.section-description .section-description-content .section-description-left .description h2,
.section-description .section-description-content .section-description-left .additional-description h2 {
  color: #151515;
  font-family: "Avenir";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  margin-bottom: 30px;
}

@media screen and (min-width: 1024px) {
  .section-description .section-description-content .section-description-left .description h2,
  .section-description .section-description-content .section-description-left .additional-description h2 {
    font-size: 26px;
  }
}

.section-description .section-description-content .section-description-left .description h3,
.section-description .section-description-content .section-description-left .additional-description h3 {
  color: #151515;
  font-family: "Avenir";
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  margin-bottom: 30px;
}

@media screen and (min-width: 1024px) {
  .section-description .section-description-content .section-description-left .description h3,
  .section-description .section-description-content .section-description-left .additional-description h3 {
    font-size: 24px;
  }
}

.section-description .section-description-content .section-description-left .description p,
.section-description .section-description-content .section-description-left .additional-description p {
  color: #444;
  font-family: "Avenir";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 28px;
}

@media screen and (min-width: 1440px) {
  .section-description .section-description-content .section-description-left .description p,
  .section-description .section-description-content .section-description-left .additional-description p {
    max-width: 670px;
  }
}

.section-description .section-description-content .section-description-left .description p span a,
.section-description .section-description-content .section-description-left .additional-description p span a {
  color: #444 !important;
}

.section-description .section-description-content .section-description-left .description strong,
.section-description .section-description-content .section-description-left .additional-description strong {
  color: #444;
  font-family: "Avenir";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
}

.section-description .section-description-content .section-description-left .description blockquote p,
.section-description .section-description-content .section-description-left .additional-description blockquote p {
  color: #626262;
  font-family: "Avenir";
  font-size: 22px;
  font-style: italic;
  font-weight: 500;
  line-height: 35px;
}

@media screen and (min-width: 1024px) {
  .section-description .section-description-content .section-description-left .description blockquote p,
  .section-description .section-description-content .section-description-left .additional-description blockquote p {
    font-size: 25px;
    font-weight: 500;
    line-height: 40px;
  }
}

@media screen and (min-width: 1440px) {
  .section-description .section-description-content .section-description-left .description blockquote p,
  .section-description .section-description-content .section-description-left .additional-description blockquote p {
    max-width: 670px;
  }
}

.section-description .section-description-content .section-description-left .description blockquote p::before,
.section-description .section-description-content .section-description-left .additional-description blockquote p::before {
  content: "\201D";
}

.section-description .section-description-content .section-description-left .description blockquote p::after,
.section-description .section-description-content .section-description-left .additional-description blockquote p::after {
  content: "\201C";
}

.section-description .section-description-content .section-description-left .description blockquote p::after,
.section-description .section-description-content .section-description-left .description blockquote p::before,
.section-description .section-description-content .section-description-left .additional-description blockquote p::after,
.section-description .section-description-content .section-description-left .additional-description blockquote p::before {
  color: #626262;
  font-family: "Avenir";
  font-size: 22px;
  font-style: italic;
  font-weight: 500;
  line-height: 35px;
}

@media screen and (min-width: 1024px) {
  .section-description .section-description-content .section-description-left .description blockquote p::after,
  .section-description .section-description-content .section-description-left .description blockquote p::before,
  .section-description .section-description-content .section-description-left .additional-description blockquote p::after,
  .section-description .section-description-content .section-description-left .additional-description blockquote p::before {
    font-size: 25px;
    font-weight: 500;
    line-height: 40px;
  }
}

.section-description .section-description-content .section-description-left .description ul,
.section-description .section-description-content .section-description-left .additional-description ul {
  list-style: disc;
  padding-left: 20px;
}

.section-description .section-description-content .section-description-left .description ul li,
.section-description .section-description-content .section-description-left .additional-description ul li {
  color: #444;
  font-family: "Avenir";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

@media screen and (min-width: 1440px) {
  .section-description .section-description-content .section-description-left .description ul li,
  .section-description .section-description-content .section-description-left .additional-description ul li {
    max-width: 670px;
  }
}

.section-description .section-description-content .section-description-left .description ol,
.section-description .section-description-content .section-description-left .additional-description ol {
  list-style: decimal;
  padding-left: 20px;
}

.section-description .section-description-content .section-description-left .description ol li,
.section-description .section-description-content .section-description-left .additional-description ol li {
  color: #444;
  font-family: "Avenir";
  font-size: 16px;
  font-style: normal;
  font-weight: 350;
  line-height: 26px;
}

@media screen and (min-width: 1440px) {
  .section-description .section-description-content .section-description-left .description ol li,
  .section-description .section-description-content .section-description-left .additional-description ol li {
    max-width: 670px;
  }
}

.section-description .section-description-content .section-description-left .description pre,
.section-description .section-description-content .section-description-left .additional-description pre {
  color: #444;
  font-family: "Avenir";
  font-size: 16px;
  font-style: normal;
  font-weight: 350;
  line-height: 26px;
}

@media screen and (min-width: 1024px) {
  .section-description .section-description-content .section-description-left .description {
    padding-bottom: 40px;
  }
}

.section-description .section-description-content .section-description-left .additional-description {
  padding-top: 30px;
}

@media screen and (min-width: 1024px) {
  .section-description .section-description-content .section-description-left .additional-description {
    padding-top: 40px;
    border-top: 1px solid #B6B6B6;
  }
}

.section-description .section-description-content .section-description-left .image-container {
  height: 300px;
  margin-top: 30px;
  padding-bottom: 30px;
  margin-left: -20px;
  margin-right: -20px;
}

@media screen and (min-width: 1024px) {
  .section-description .section-description-content .section-description-left .image-container {
    margin: 0;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (min-width: 1440px) {
  .section-description .section-description-content .section-description-left .image-container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.section-description .section-description-content .section-description-left .image-container .image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section-description .section-description-content .section-description-right {
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid #B6B6B6;
  border-bottom: 1px solid #B6B6B6;
}

@media screen and (min-width: 1024px) {
  .section-description .section-description-content .section-description-right {
    padding-bottom: 40px;
    padding-left: 20px;
    border-top: 1px solid #B6B6B6;
    border-left: 1px solid #B6B6B6;
    border-bottom: none;
  }
}

@media screen and (min-width: 1440px) {
  .section-description .section-description-content .section-description-right {
    padding-left: 30px;
    width: 30%;
  }
}

.section-description .section-description-content .section-description-right .section-description-image-container .image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section-description .section-description-content .section-description-right .aside-title {
  color: #151515;
  font-family: "Avenir";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 30px;
}

@media screen and (min-width: 1024px) {
  .section-description .section-description-content .section-description-right .aside-title {
    font-size: 25px;
  }
}

.section-description .section-description-content .section-description-right .aside-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

@media screen and (min-width: 1024px) {
  .section-description .section-description-content .section-description-right .aside-row {
    margin-bottom: 30px;
  }
}

.section-description .section-description-content .section-description-right .aside-row .aside-row-title {
  color: #151515;
  font-family: "Avenir";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.section-description .section-description-content .section-description-right .aside-row .aside-row-title .social-networks-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-left: 14px;
}

.section-description .section-description-content .section-description-right .aside-row .aside-row-title .social-networks-container .share-icon {
  width: 35px;
  height: 35px;
  padding: 5px;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #444444;
  border: 0.5px solid rgba(21, 21, 21, 0);
  transition: all 0.3s ease;
}

@media screen and (min-width: 1024px) {
  .section-description .section-description-content .section-description-right .aside-row .aside-row-title .social-networks-container .share-icon:hover {
    color: #151515;
    border: 0.5px solid #F8E634;
    background: #F8E634;
  }
}

.section-description .section-description-content .section-description-right .aside-row .aside-row-description-container {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.section-description .section-description-content .section-description-right .aside-row .aside-row-description-container .aside-row-description {
  color: #444;
  font-family: "Avenir";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 11px;
}

.section-description .section-description-content .section-description-right .aside-row .aside-row-description-container .aside-row-description strong {
  font-weight: 500;
  color: #151515;
}

.section-description .section-description-content .section-description-right .aside-row .aside-row-description-container .aside-row-description.date {
  font-weight: 500;
}

.section-description .section-description-content .section-description-right .aside-row .aside-row-description-container .aside-row-description.location {
  line-height: 1.2;
}

.section-description .section-description-content .section-description-right .aside-row .aside-row-description-container .badges-container {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  max-width: 320px;
}

.section-description .section-description-content .section-description-right .aside-row .aside-row-description-container .badges-container .badges {
  color: #444;
  font-family: "Avenir";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 40px;
  border: 1px solid #939393;
  width: -moz-fit-content;
  width: fit-content;
}

.section-description .section-description-content .section-description-right .aside-button-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 13px;
  color: #EFEFEF;
  font-family: "Avenir";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  background: #151515;
  border: 1px solid #151515;
  transition: all 0.3s ease;
}

@media screen and (min-width: 1024px) {
  .section-description .section-description-content .section-description-right .aside-button-location:hover {
    color: #151515;
    border: 1px solid #151515;
    background: rgba(21, 21, 21, 0);
  }
}

.section-description .section-description-content .section-description-right .aside-button-location.margin-bottom {
  margin-bottom: 4px;
}

.section-description .section-description-content .section-description-right .aside-button-default {
  color: #151515;
  font-family: "Avenir";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  border: 1px solid #F8E634;
  background: #F8E634;
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
}

@media screen and (min-width: 1024px) {
  .section-description .section-description-content .section-description-right .aside-button-default {
    width: 100%;
  }
}

.section-description .section-description-content .section-description-right .aside-button-download {
  color: #151515;
  font-family: "Avenir";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  border: 1px solid #151515;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
}

@media screen and (min-width: 1024px) {
  .section-description .section-description-content .section-description-right .aside-button-download:hover {
    border: 1px solid #F8E634;
    background: #F8E634;
  }
}

.section-description .section-description-content.hide-aside .section-description-left {
  width: 100%;
}

.section-description .section-description-content.hide-aside .section-description-left .description p {
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.section-description .section-description-content.hide-aside .section-description-right {
  display: none;
}

.section-discovers-others {
  padding-top: 30px;
  padding-bottom: 60px;
}

@media screen and (min-width: 1024px) {
  .section-discovers-others {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.section-discovers-others .section-discovers-others-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
}

@media screen and (min-width: 1024px) {
  .section-discovers-others .section-discovers-others-header {
    margin-bottom: 40px;
  }
}

.section-discovers-others .section-discovers-others-header .left-side {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

@media screen and (min-width: 1024px) {
  .section-discovers-others .section-discovers-others-header .left-side {
    gap: 20px;
  }
}

.section-discovers-others .section-discovers-others-header .left-side .pretitle {
  color: #444;
  font-family: "Avenir";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.44px;
  text-transform: uppercase;
  display: block;
}

@media screen and (min-width: 1024px) {
  .section-discovers-others .section-discovers-others-header .left-side .pretitle {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1.92px;
  }
}

.section-discovers-others .section-discovers-others-header .left-side .title {
  color: #151515;
  font-family: "Avenir";
  font-size: 24px;
  font-style: normal;
  font-weight: 350;
  line-height: 40px;
}

@media screen and (min-width: 1024px) {
  .section-discovers-others .section-discovers-others-header .left-side .title {
    font-size: 30px;
  }
}

@media screen and (min-width: 1024px) {
  .section-discovers-others .section-discovers-others-header .left-side .title.increase-font-size {
    font-size: 35px;
  }
}

.section-discovers-others .section-discovers-others-header .left-side .title strong {
  font-weight: 800;
}

@media screen and (min-width: 1024px) {
  .section-discovers-others .section-discovers-others-header .left-side.gap-10 {
    gap: 10px;
  }
}

.section-discovers-others .section-discovers-others-header .right-side {
  display: none;
}

@media screen and (min-width: 1024px) {
  .section-discovers-others .section-discovers-others-header .right-side {
    display: block;
  }
}

.section-discovers-others .section-discovers-others-header .right-side .button {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  color: #151515;
  font-family: "Avenir";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding-left: 20px;
  padding-right: 20px;
  border: 1px solid #626262;
  transition: all 0.3s ease;
  line-height: 1;
}

@media screen and (min-width: 1024px) {
  .section-discovers-others .section-discovers-others-header .right-side .button:hover {
    background: #F8E634;
    border: 1px solid #F8E634;
  }
}

.section-discovers-others .section-discovers-others-content {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 30px;
}

@media screen and (min-width: 1024px) {
  .section-discovers-others .section-discovers-others-content {
    flex-wrap: nowrap;
    flex-direction: row;
  }
}

.section-discovers-others .section-discovers-others-content.use-slick-slider {
  display: block;
}

.section-discovers-others .section-discovers-others-content.use-slick-slider .discovers-others-slick-slider {
  margin-left: -7.5px;
  margin-right: -30px;
}

@media screen and (min-width: 1024px) {
  .section-discovers-others .section-discovers-others-content.use-slick-slider .discovers-others-slick-slider {
    margin-left: -7.5px;
    margin-right: -7.5px;
  }
}

@media screen and (min-width: 1440px) {
  .section-discovers-others .section-discovers-others-content.use-slick-slider .discovers-others-slick-slider {
    margin-left: -15px;
    margin-right: -15px;
  }
}

.section-discovers-others .section-discovers-others-content.use-slick-slider .card-event-01 {
  padding-left: 7.5px;
  padding-right: 7.5px;
}

@media screen and (min-width: 1440px) {
  .section-discovers-others .section-discovers-others-content.use-slick-slider .card-event-01 {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.section-discovers-others .section-discovers-others-content .card-event-01 {
  padding-left: 0;
  padding-right: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.section-discovers-others .section-discovers-others-content .card-event-01 .card-event-01-header {
  min-height: 34px;
}

.section-discovers-others .section-discovers-others-content .card-event-01 .card-event-01-header .date {
  font-size: 12px;
  letter-spacing: normal;
}

@media screen and (width >= 1024px) {
  .section-discovers-others .section-discovers-others-content .card-event-01 .card-event-01-header .date {
    white-space: normal;
  }
}

@media screen and (width >= 1440px) {
  .section-discovers-others .section-discovers-others-content .card-event-01 .card-event-01-header .date {
    white-space: nowrap;
  }
}

.section-discovers-others .section-discovers-others-content .card-event-01 .card-image-container {
  height: 170px;
}

.section-discovers-others .section-discovers-others-content .card-events-02 .card-events-02-title {
  margin-bottom: 54px;
}

.section-discovers-others .section-discovers-others-content .card-news {
  flex: 1;
}

@media screen and (width >= 1024px) {
  .section-discovers-others .section-discovers-others-content .card-news {
    display: flex;
    flex-direction: column;
  }
}

.section-discovers-others .section-discovers-others-content .card-news .card-news-header {
  min-height: 32px;
}

.section-discovers-others .section-discovers-others-content .card-news .card-news-button {
  margin-top: auto;
}

.section-discovers-others .section-discovers-others-footer {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

@media screen and (min-width: 1024px) {
  .section-discovers-others .section-discovers-others-footer {
    display: none;
  }
}

.section-discovers-others .section-discovers-others-footer .button {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  color: #151515;
  font-family: "Avenir";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding-left: 20px;
  padding-right: 20px;
  border: 1px solid #626262;
  transition: all 0.3s ease;
  width: -moz-fit-content;
  width: fit-content;
}

.section-embossed-cards {
  padding-top: 30px;
  padding-bottom: 30px;
}

@media screen and (min-width: 1024px) {
  .section-embossed-cards {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.section-embossed-cards .section-embossed-cards-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

@media screen and (min-width: 1024px) {
  .section-embossed-cards .section-embossed-cards-content {
    gap: 16px;
  }
}

.section-embossed-cards .section-embossed-cards-content .section-embossed-cards-pretitle {
  color: #444;
  font-family: "Avenir";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.44px;
  text-transform: uppercase;
}

@media screen and (min-width: 1024px) {
  .section-embossed-cards .section-embossed-cards-content .section-embossed-cards-pretitle {
    font-size: 16px;
    letter-spacing: 1.92px;
  }
}

.section-embossed-cards .section-embossed-cards-content .section-embossed-cards-title {
  color: #151515;
  font-family: "Avenir";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 35px;
  margin-bottom: 30px;
}

@media screen and (min-width: 1024px) {
  .section-embossed-cards .section-embossed-cards-content .section-embossed-cards-title {
    font-size: 30px;
    font-weight: 350;
    margin-bottom: 40px;
  }
}

.section-embossed-cards .section-embossed-cards-content .section-embossed-cards-title strong {
  font-weight: 800;
}

.section-embossed-cards .section-embossed-cards-content .embossed-cards-container {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.section-embossed-cards .section-embossed-cards-content .embossed-cards {
  width: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

@media screen and (min-width: 1024px) {
  .section-embossed-cards .section-embossed-cards-content .embossed-cards {
    padding: 60px 80px;
  }
}

.section-embossed-cards .section-embossed-cards-content .embossed-cards .embossed-cards-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media screen and (min-width: 1024px) {
  .section-embossed-cards .section-embossed-cards-content .embossed-cards .embossed-cards-inner {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }
}

.section-embossed-cards .section-embossed-cards-content .embossed-cards .embossed-cards-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-embossed-cards .section-embossed-cards-content .embossed-cards .embossed-cards-media {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Tamaño uniforme para todas las imágenes */
  min-height: 240px;
  /* altura base mobile */
}

@media screen and (min-width: 1024px) {
  .section-embossed-cards .section-embossed-cards-content .embossed-cards .embossed-cards-media {
    min-height: 360px;
    /* altura desktop */
  }
}

.section-embossed-cards .section-embossed-cards-content .embossed-cards .embossed-cards-media .icon {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* recorta manteniendo proporción */
  -o-object-position: center;
     object-position: center;
  border-radius: 4px;
  /* Opcional: relación de aspecto consistente */
  aspect-ratio: 16/9;
  max-width: none;
  /* permite ocupar todo el ancho disponible */
}

.section-embossed-cards .section-embossed-cards-content .embossed-cards .title {
  font-family: "Avenir";
  font-size: 40px;
  /* Nuevo tamaño solicitado */
  font-style: normal;
  font-weight: 600;
  line-height: 1.1;
}

@media screen and (min-width: 1024px) {
  .section-embossed-cards .section-embossed-cards-content .embossed-cards .title {
    font-size: 40px;
  }
}

.section-embossed-cards .section-embossed-cards-content .embossed-cards .description {
  font-family: "Avenir";
  font-size: 14px;
  font-style: normal;
  font-weight: 350;
  line-height: 20px;
}

@media screen and (min-width: 1024px) {
  .section-embossed-cards .section-embossed-cards-content .embossed-cards .description {
    font-size: 18px;
    line-height: 26px;
  }
}

.section-embossed-cards .section-embossed-cards-content .embossed-cards {
  /* Jerarquía de descripción aplicable a pares e impares */
}

.section-embossed-cards .section-embossed-cards-content .embossed-cards .description {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-embossed-cards .section-embossed-cards-content .embossed-cards .description .desc-primary {
  font-size: 24px;
  line-height: 1.3;
  font-weight: 600;
}

@media screen and (min-width: 1024px) {
  .section-embossed-cards .section-embossed-cards-content .embossed-cards .description .desc-primary {
    font-size: 32px;
    /* Tamaño principal desktop */
  }
}

.section-embossed-cards .section-embossed-cards-content .embossed-cards .description .desc-secondary {
  font-size: 14px;
  line-height: 20px;
  font-weight: 350;
}

@media screen and (min-width: 1024px) {
  .section-embossed-cards .section-embossed-cards-content .embossed-cards .description .desc-secondary {
    font-size: 16px;
    /* Tamaño secundario desktop */
    line-height: 24px;
  }
}

.section-embossed-cards .section-embossed-cards-content {
  /* Alternancia general por paridad (independiente del contenido) */
}

.section-embossed-cards .section-embossed-cards-content .embossed-cards--even {
  background: #FFFFFF;
  color: #151515;
}

.section-embossed-cards .section-embossed-cards-content .embossed-cards--even .title,
.section-embossed-cards .section-embossed-cards-content .embossed-cards--even .description {
  color: #151515;
}

@media screen and (min-width: 1024px) {
  .section-embossed-cards .section-embossed-cards-content .embossed-cards--even .embossed-cards-inner {
    flex-direction: row;
  }
}

.section-embossed-cards .section-embossed-cards-content .embossed-cards--odd {
  background: #000000;
  color: #FFFFFF;
}

.section-embossed-cards .section-embossed-cards-content .embossed-cards--odd .title,
.section-embossed-cards .section-embossed-cards-content .embossed-cards--odd .description {
  color: #FFFFFF;
}

@media screen and (min-width: 1024px) {
  .section-embossed-cards .section-embossed-cards-content .embossed-cards--odd .embossed-cards-inner {
    flex-direction: row-reverse;
  }
}

.section-embossed-cards .section-embossed-cards-content .embossed-cards--odd {
  /* Alineación específica para tarjetas impares (fondo negro) */
}

.section-embossed-cards .section-embossed-cards-content .embossed-cards--odd .embossed-cards-text {
  text-align: right;
  align-items: flex-end;
}

.section-faq {
  padding-top: 30px;
  padding-bottom: 30px;
}

@media screen and (min-width: 1024px) {
  .section-faq {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.section-faq .section-faq-header {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 30px;
}

@media screen and (min-width: 1024px) {
  .section-faq .section-faq-header {
    gap: 10px;
    margin-bottom: 40px;
  }
}

.section-faq .section-faq-header .section-faq-pretitle {
  color: #444;
  font-family: "Avenir";
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.44px;
  text-transform: uppercase;
}

@media screen and (min-width: 1024px) {
  .section-faq .section-faq-header .section-faq-pretitle {
    font-size: 16px;
    letter-spacing: 1.92px;
  }
}

.section-faq .section-faq-header .section-faq-title {
  color: #151515;
  font-family: "Avenir";
  font-size: 24px;
  font-weight: 350;
  line-height: 35px;
}

@media screen and (min-width: 1024px) {
  .section-faq .section-faq-header .section-faq-title {
    font-size: 30px;
  }
}

.section-faq .section-faq-header .section-faq-title strong {
  font-weight: 800;
}

@media screen and (min-width: 1024px) {
  .section-faq .section-faq-content .faq {
    display: flex;
    gap: 30px;
  }
}

.section-faq .section-faq-content .faq .faq-tabs {
  display: none;
  flex-direction: column;
  background: #FFF;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
  height: -moz-fit-content;
  height: fit-content;
}

@media screen and (min-width: 1024px) {
  .section-faq .section-faq-content .faq .faq-tabs {
    display: flex;
  }
}

.section-faq .section-faq-content .faq .faq-tabs .faq-tab {
  color: #444;
  font-family: "Avenir";
  font-size: 16px;
  font-weight: 300;
  padding: 20px;
  min-width: 270px;
  max-width: 300px;
  border-bottom: 1px solid #E8E8E8;
  display: flex;
  justify-content: center;
  overflow-wrap: anywhere;
  cursor: pointer;
}

.section-faq .section-faq-content .faq .faq-tabs .faq-tab.active {
  color: #151515;
  font-weight: 500;
  background: #F8E634;
}

.section-faq .section-faq-content .faq .faq-accordion-content {
  flex: 1;
}

.section-faq .section-faq-content .faq .faq-accordion-content .accordion {
  display: none;
  opacity: 0;
  transition: opacity 0.4s, display 0.3s;
  padding: 30px 20px;
  background: #FFF;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
}

@media screen and (min-width: 1024px) {
  .section-faq .section-faq-content .faq .faq-accordion-content .accordion {
    padding: 30px;
    padding-bottom: 20px;
  }
}

.section-faq .section-faq-content .faq .faq-accordion-content .accordion.show {
  display: block;
  opacity: 1;
}

.section-faq .section-faq-content .faq .faq-accordion-content .accordion .accordion-title {
  color: #000;
  font-family: "Avenir";
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 30px;
}

@media screen and (min-width: 1024px) {
  .section-faq .section-faq-content .faq .faq-accordion-content .accordion .accordion-title {
    font-size: 25px;
    margin-bottom: 24px;
  }
}

.section-faq .section-faq-content .faq .faq-accordion-content .accordion .faq-accordion {
  margin-bottom: 20px;
}

@media screen and (min-width: 1024px) {
  .section-faq .section-faq-content .faq .faq-accordion-content .accordion .faq-accordion {
    margin-bottom: 24px;
  }
}

.section-faq .section-faq-content .faq .faq-accordion-content .accordion .faq-accordion .faq-accordion-title {
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 0;
  color: #444;
  font-family: "Avenir";
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  background: #FFF;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #E9E9E9;
  padding-top: 10px;
  padding-bottom: 15px;
  padding-left: 0;
  padding-right: 10px;
}

.section-faq .section-faq-content .faq .faq-accordion-content .accordion .faq-accordion .faq-accordion-title.ui-state-active {
  font-weight: 900;
  border-bottom: 1px solid rgba(233, 233, 233, 0);
}

.section-faq .section-faq-content .faq .faq-accordion-content .accordion .faq-accordion .faq-accordion-title.ui-state-active .icon-plus {
  display: none;
}

.section-faq .section-faq-content .faq .faq-accordion-content .accordion .faq-accordion .faq-accordion-title.ui-state-active .icon-less {
  display: block;
}

.section-faq .section-faq-content .faq .faq-accordion-content .accordion .faq-accordion .faq-accordion-title .icon-less {
  display: none;
}

.section-faq .section-faq-content .faq .faq-accordion-content .accordion .faq-accordion .faq-accordion-title .icon-plus {
  display: block;
}

.section-faq .section-faq-content .faq .faq-accordion-content .accordion .faq-accordion .faq-accordion-answer {
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 0;
  color: #939393;
  font-family: "Avenir";
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  padding-top: 15px;
  padding-bottom: 25px;
  padding-left: 10px;
  padding-right: 10px;
}

.section-faq .section-faq-content .faq .faq-accordion-content .accordion .faq-accordion .faq-accordion-answer.ui-accordion-content-active {
  border-bottom: 1px solid #E9E9E9;
}

.section-form {
  padding-bottom: 30px;
}

@media screen and (min-width: 1024px) {
  .section-form {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media screen and (min-width: 1024px) {
  .section-form .section-form-content {
    display: flex;
    gap: 30px;
    background-color: #FFF;
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
  }
}

.section-form .section-form-content .form-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: #FFF;
  padding: 20px 15px;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
}

@media screen and (min-width: 1024px) {
  .section-form .section-form-content .form-container {
    box-shadow: none;
    width: 55%;
  }
}

@media screen and (min-width: 1440px) {
  .section-form .section-form-content .form-container {
    padding: 40px;
  }
}

.section-form .section-form-content .form-container .section-form-title {
  color: #151515;
  font-family: "Avenir";
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  margin-bottom: 20px;
}

@media screen and (min-width: 1024px) {
  .section-form .section-form-content .form-container .section-form-title {
    font-size: 30px;
    margin-bottom: 40px;
  }
}

.section-form .section-form-content .section-form-image-container {
  display: none;
}

@media screen and (min-width: 1024px) {
  .section-form .section-form-content .section-form-image-container {
    display: block;
    flex: 1;
  }
}

.section-form .section-form-content .section-form-image-container .image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section-header {
  padding-top: 25px;
  padding-bottom: 30px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}

@media screen and (min-width: 1024px) {
  .section-header {
    min-height: 360px;
  }
}

@media screen and (min-width: 1024px) {
  .section-header {
    padding-top: 80px;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
}

.section-header .section-header-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media screen and (min-width: 1024px) {
  .section-header .section-header-content {
    flex-direction: row;
    justify-content: space-between;
    gap: 30px;
    margin-top: auto;
  }
}

.section-header .section-header-content .left-side {
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.section-header .section-header-content .left-side .section-header-title {
  color: #151515;
  font-family: "Avenir";
  font-size: 28px;
  font-style: normal;
  font-weight: 350;
  line-height: 40px;
}

@media screen and (min-width: 1024px) {
  .section-header .section-header-content .left-side .section-header-title {
    font-size: 40px;
    font-weight: 500;
    line-height: 76.5px;
  }
}

.section-header .section-header-content .left-side .section-header-description {
  color: #151515;
  font-family: "Inter";
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  max-width: auto;
  margin-top: auto;
  margin-bottom: 50px;
}

.section-header .section-header-content .left-side .section-header-button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  padding-bottom: 8px;
  background: #151515;
  border: 1px solid #151515;
  color: #FBFBFB;
  font-family: "Avenir";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 24px;
  transition: all 0.3s ease;
}

@media screen and (min-width: 1024px) {
  .section-header .section-header-content .left-side .section-header-button {
    margin-top: auto;
  }

  .section-header .section-header-content .left-side .section-header-button:hover {
    color: #151515;
    background: rgba(21, 21, 21, 0);
  }

  .section-header .section-header-content .left-side .section-header-button:hover svg path {
    color: #626262;
  }
}

.section-header .section-header-content .left-side .section-header-button svg path {
  transition: all 0.3s ease;
}

.section-header .section-header-content .right-side {
  display: none;
}

.section-header .section-header-content .right-side .header-image-container {
  width: 100%;
  height: 170px;
}

@media screen and (min-width: 768px) {
  .section-header .section-header-content .right-side .header-image-container {
    height: 280px;
  }
}

@media screen and (min-width: 1024px) {
  .section-header .section-header-content .right-side .header-image-container {
    width: 470px;
    height: 300px;
  }
}

@media screen and (min-width: 1440px) {
  .section-header .section-header-content .right-side .header-image-container {
    width: 570px;
  }
}

.section-header .section-header-content .right-side .header-image-container .header-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section-header.veil::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
}

.section-header.veil .section-header-content .section-header-title {
  color: #EFEFEF;
}

.section-header.veil .section-header-content .section-header-description {
  color: #EFEFEF;
}

.section-hero {
  height: 170px;
  width: 100%;
  background-size: cover;
  position: relative;
}

.section-hero::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}

.section-hero .image_bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 1024px) {
  .section-hero .image_bg.mobile {
    display: none;
  }
}

.section-hero .image_bg.desktop {
  display: none;
}

@media screen and (min-width: 1024px) {
  .section-hero .image_bg.desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .section-hero {
    height: 270px;
  }
}

@media screen and (min-width: 1024px) {
  .section-hero {
    height: 300px;
    background-position: center;
  }
}

.section-media {
  padding-top: 30px;
  padding-bottom: 30px;
}

@media screen and (min-width: 1024px) {
  .section-media {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.section-media .section-media-title {
  color: #151515;
  font-family: "Avenir";
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: 40px;
  margin-bottom: 30px;
}

@media screen and (min-width: 1024px) {
  .section-media .section-media-title {
    font-size: 30px;
    line-height: 120%;
    margin-bottom: 24px;
  }
}

.section-media .section-media-gallery {
  margin-bottom: 30px;
  padding-left: 30px;
  padding-right: 0;
}

@media screen and (min-width: 640px) {
  .section-media .section-media-gallery {
    padding-left: calc((100vw - 640px + 60px) / 2);
  }
}

@media screen and (min-width: 768px) {
  .section-media .section-media-gallery {
    padding-left: calc((100vw - 768px + 60px) / 2);
  }
}

@media screen and (min-width: 1024px) {
  .section-media .section-media-gallery {
    padding-left: calc((100vw - 1024px + 60px) / 2);
  }
}

@media screen and (min-width: 1440px) {
  .section-media .section-media-gallery {
    padding-left: calc((100vw - 1440px + 135px + 135px) / 2);
    margin-bottom: 24px;
  }
}

.section-media .section-media-gallery .images-container {
  width: 100%;
  max-width: 270px;
  height: 300px;
  padding-right: 30px;
}

@media screen and (min-width: 768px) {
  .section-media .section-media-gallery .images-container {
    max-width: 370px;
  }
}

@media screen and (min-width: 1024px) {
  .section-media .section-media-gallery .images-container {
    max-width: 470px;
  }
}

@media screen and (min-width: 1440px) {
  .section-media .section-media-gallery .images-container {
    height: 400px;
  }
}

.section-media .section-media-gallery .images-container .image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section-media .buttons-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-media .buttons-group .button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #939393;
  border: 1px solid #939393;
  backdrop-filter: blur(2.5px);
  transition: all 0.3s ease;
}

@media screen and (min-width: 1024px) {
  .section-media .buttons-group .button:hover {
    background-color: #F8E634;
    color: #151515;
    border: 1px solid #F8E634;
  }

  .section-media .buttons-group .button:disabled {
    color: #939393;
    border: 1px solid #939393;
    background-color: rgba(248, 229, 52, 0);
  }
}

.section-media .section-media-video {
  width: 100%;
  height: 300px;
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .section-media .section-media-video {
    height: 400px;
  }
}

@media screen and (min-width: 1024px) {
  .section-media .section-media-video {
    margin-top: 80px;
    height: 450px;
  }
}

.section-media .section-media-video .plyr,
.section-media .section-media-video .video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section-results-with-filters-select {
  padding-bottom: 30px;
}

@media screen and (min-width: 1024px) {
  .section-results-with-filters-select {
    padding-bottom: 40px;
  }
}

.section-results-with-filters-select .section-results-with-filters-select-header {
  margin-bottom: 30px;
}

@media screen and (min-width: 1024px) {
  .section-results-with-filters-select .section-results-with-filters-select-header {
    margin-bottom: 32px;
  }
}

.section-results-with-filters-select .section-results-with-filters-select-header .left-side {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.section-results-with-filters-select .section-results-with-filters-select-header .left-side .pretitle {
  color: #444;
  font-family: "Avenir";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.44px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 5px;
}

@media screen and (min-width: 1024px) {
  .section-results-with-filters-select .section-results-with-filters-select-header .left-side .pretitle {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1.92px;
    margin-bottom: 10px;
  }
}

.section-results-with-filters-select .section-results-with-filters-select-header .left-side .title {
  color: #151515;
  font-family: "Avenir";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 35px;
}

@media screen and (min-width: 1024px) {
  .section-results-with-filters-select .section-results-with-filters-select-header .left-side .title {
    font-size: 30px;
    line-height: 120%;
  }
}

.section-results-with-filters-select .section-results-with-filters-select-header .left-side .title strong {
  font-weight: 800;
}

.section-results-with-filters-badges {
  padding-bottom: 30px;
}

@media screen and (min-width: 1024px) {
  .section-results-with-filters-badges {
    padding-bottom: 40px;
  }
}

.section-results-with-filters-badges.padding-bottom {
  padding-bottom: 60px;
}

@media screen and (min-width: 1024px) {
  .section-results-with-filters-badges.padding-bottom {
    padding-bottom: 80px;
  }
}

.section-results-with-filters-badges .section-results-with-filters-badges-header {
  margin-bottom: 30px;
}

@media screen and (min-width: 1024px) {
  .section-results-with-filters-badges .section-results-with-filters-badges-header {
    margin-bottom: 40px;
  }
}

.section-results-with-filters-badges .section-results-with-filters-badges-header .left-side {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.section-results-with-filters-badges .section-results-with-filters-badges-header .left-side .pretitle {
  color: #444;
  font-family: "Avenir";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.44px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 5px;
}

@media screen and (min-width: 1024px) {
  .section-results-with-filters-badges .section-results-with-filters-badges-header .left-side .pretitle {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1.92px;
    margin-bottom: 10px;
  }
}

.section-results-with-filters-badges .section-results-with-filters-badges-header .left-side .title {
  color: #151515;
  font-family: "Avenir";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 35px;
}

@media screen and (min-width: 1024px) {
  .section-results-with-filters-badges .section-results-with-filters-badges-header .left-side .title {
    font-size: 30px;
    line-height: 120%;
  }
}

.section-results-with-filters-badges .section-results-with-filters-badges-header .left-side .title strong {
  font-weight: 800;
}

.section-results-without-filters-select {
  padding-bottom: 30px;
}

@media screen and (min-width: 1024px) {
  .section-results-without-filters-select {
    padding-bottom: 40px;
  }
}

.section-results-without-filters-select .section-results-without-filters-select-header {
  margin-bottom: 30px;
}

@media screen and (min-width: 1024px) {
  .section-results-without-filters-select .section-results-without-filters-select-header {
    margin-bottom: 32px;
  }
}

.section-results-without-filters-select .section-results-without-filters-select-header .left-side {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

@media screen and (min-width: 1024px) {
  .section-results-without-filters-select .section-results-without-filters-select-header .left-side {
    gap: 10px;
  }
}

.section-results-without-filters-select .section-results-without-filters-select-header .left-side .pretitle {
  color: #444;
  font-family: "Avenir";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.44px;
  text-transform: uppercase;
  display: block;
}

@media screen and (min-width: 1024px) {
  .section-results-without-filters-select .section-results-without-filters-select-header .left-side .pretitle {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1.92px;
  }
}

.section-results-without-filters-select .section-results-without-filters-select-header .left-side .title {
  color: #151515;
  font-family: "Avenir";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 35px;
}

@media screen and (min-width: 1024px) {
  .section-results-without-filters-select .section-results-without-filters-select-header .left-side .title {
    font-size: 30px;
    line-height: 120%;
  }
}

.section-results-without-filters-select .section-results-without-filters-select-header .left-side .title strong {
  font-weight: 800;
}

.section-schedule {
  background: #ffffff;
  padding-top: 60px;
  padding-bottom: 20px;
  min-height: 70vh;
}

@media screen and (min-width: 1024px) {
  .section-schedule {
    padding-bottom: 20px;
  }
}

.section-schedule .section-schedule-header {
  text-align: center;
  margin-bottom: 40px;
}

@media screen and (min-width: 1024px) {
  .section-schedule .section-schedule-header {
    margin-bottom: 60px;
  }
}

.section-schedule .section-schedule-header .section-schedule-title {
  color: #151515;
  font-family: "Avenir";
  font-size: 32px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

@media screen and (min-width: 1024px) {
  .section-schedule .section-schedule-header .section-schedule-title {
    font-size: 48px;
    margin-bottom: 20px;
  }
}

.section-schedule .section-schedule-header .section-schedule-subtitle {
  color: #626262;
  font-family: "Avenir";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto;
}

@media screen and (min-width: 1024px) {
  .section-schedule .section-schedule-header .section-schedule-subtitle {
    font-size: 18px;
  }
}

.section-slide-cards {
  background-color: #ffffff;
  padding-top: 30px;
  padding-bottom: 60px;
}

@media screen and (min-width: 1024px) {
  .section-slide-cards {
    padding-top: 40px;
    padding-bottom: 80px;
  }
}

.section-slide-cards .section-slide-cards-header {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

@media screen and (min-width: 1024px) {
  .section-slide-cards .section-slide-cards-header {
    margin-bottom: 50px;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.section-slide-cards .section-slide-cards-header .left-side {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-slide-cards .section-slide-cards-header .left-side .section-slide-cards-pretitle {
  color: #151515;
  font-family: "Avenir";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.44px;
  text-transform: uppercase;
}

@media screen and (min-width: 1024px) {
  .section-slide-cards .section-slide-cards-header .left-side .section-slide-cards-pretitle {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.68px;
  }
}

.section-slide-cards .section-slide-cards-header .left-side .section-slide-cards-title {
  color: #151515;
  font-family: "Avenir";
  font-size: 40px;
  font-weight: 800;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: left;
}

@media screen and (min-width: 1024px) {
  .section-slide-cards .section-slide-cards-header .left-side .section-slide-cards-title {
    font-size: 40px;
  }
}

.section-slide-cards .section-slide-cards-header .left-side .section-slide-cards-title p {
  margin: 0;
  display: inline;
}

.section-slide-cards .section-slide-cards-header .button {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #151515;
  font-family: "Avenir";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 1px solid #151515;
  cursor: pointer;
  transition: all 0.3s ease;
  width: -moz-fit-content;
  width: fit-content;
}

@media screen and (min-width: 1024px) {
  .section-slide-cards .section-slide-cards-header .button {
    display: none;
  }

  .section-slide-cards .section-slide-cards-header .button:hover {
    border: 1px solid #F8E634;
    background: #F8E634;
  }
}

.section-slide-cards .section-slide-cards-header .button.desktop {
  display: none;
}

@media screen and (min-width: 1024px) {
  .section-slide-cards .section-slide-cards-header .button.desktop {
    display: flex;
  }
}

.section-slide-cards .section-slide-cards-content {
  position: relative;
}

.section-slide-cards .section-slide-cards-content .services-slick-slider {
  display: flex;
  overflow-x: hidden;
}

.section-slide-cards .section-slide-cards-content .simple-slick-slider {
  margin-left: -27px;
  margin-right: -30px;
}

@media screen and (min-width: 375px) {
  .section-slide-cards .section-slide-cards-content .simple-slick-slider {
    margin-left: -7.5px;
    margin-right: -30px;
  }
}

@media screen and (min-width: 1024px) {
  .section-slide-cards .section-slide-cards-content .simple-slick-slider {
    margin-left: auto;
    margin-right: auto;
    padding-left: 80px;
    padding-right: 80px;
  }
}

@media screen and (min-width: 1440px) {
  .section-slide-cards .section-slide-cards-content .simple-slick-slider {
    padding-left: 0px;
    padding-right: 0px;
  }
}

@media screen and (min-width: 1024px) {
  .section-slide-cards .section-slide-cards-content .simple-slick-slider.no-arrows {
    padding-left: 0px;
    padding-right: 0px;
    margin-left: -7.5px;
  }
}

@media screen and (min-width: 1024px) {
  .section-slide-cards .section-slide-cards-content .simple-slick-slider.no-arrows .slick-list {
    margin-left: 0;
    margin-right: 0;
  }
}

@media screen and (min-width: 1440px) {
  .section-slide-cards .section-slide-cards-content .simple-slick-slider.no-arrows .slick-list {
    margin-left: -7.5px;
    margin-right: -15px;
  }
}

@media screen and (min-width: 1024px) {
  .section-slide-cards .section-slide-cards-content .simple-slick-slider .slick-list {
    margin-left: -15px;
    margin-right: -15px;
  }
}

.section-slide-cards .section-slide-cards-content .simple-slick-slider-arrow-left,
.section-slide-cards .section-slide-cards-content .simple-slick-slider-arrow-right {
  display: none;
}

.section-slide-cards .section-slide-cards-button {
  color: #151515;
  font-family: "Avenir";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border: 1px solid #151515;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  transition: all 0.3s ease;
}

@media screen and (min-width: 1024px) {
  .section-slide-cards .section-slide-cards-button:hover {
    border: 1px solid #F8E634;
    background: #F8E634;
  }
}

.section-slide-cards .section-slide-cards-button.mobile-only {
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 1024px) {
  .section-slide-cards .section-slide-cards-button.mobile-only {
    display: none;
  }
}

.section-slide-cards .section-slide-cards-button.desktop-only {
  display: none;
}

@media screen and (min-width: 1024px) {
  .section-slide-cards .section-slide-cards-button.desktop-only {
    display: flex;
  }
}

.section-slide-cards-actividades {
  background-color: #ffffff;
  padding-top: 40px;
  padding-bottom: 60px;
}

@media screen and (min-width: 1024px) {
  .section-slide-cards-actividades {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}

.section-slide-cards-actividades .section-slide-cards-actividades-title {
  color: #000000;
  font-family: "Avenir";
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 40px;
  text-align: left;
}

@media screen and (min-width: 1024px) {
  .section-slide-cards-actividades .section-slide-cards-actividades-title {
    font-size: 40px;
    margin-bottom: 50px;
  }
}

.section-slide-cards-actividades .section-slide-cards-actividades-title strong {
  font-weight: 800;
}

.section-slide-cards-actividades .actividades-carousel-wrapper {
  position: relative;
  overflow: hidden;
}

.section-slide-cards-actividades .actividades-carousel-wrapper .actividades-slick-slider {
  display: flex;
  overflow-x: hidden;
  cursor: grab;
}

.section-slide-cards-actividades .actividades-carousel-wrapper .actividades-slick-slider:active {
  cursor: grabbing;
}

.section-slide-cards-actividades .actividades-carousel-wrapper .actividades-slick-slider .activity-card {
  flex: 0 0 auto;
  width: 280px;
  background: #FFF;
  margin-right: 20px;
  transition: transform 0.3s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

@media screen and (min-width: 1024px) {
  .section-slide-cards-actividades .actividades-carousel-wrapper .actividades-slick-slider .activity-card {
    width: 350px;
    margin-right: 30px;
  }

  .section-slide-cards-actividades .actividades-carousel-wrapper .actividades-slick-slider .activity-card:hover {
    transform: translateY(-5px);
  }

  .section-slide-cards-actividades .actividades-carousel-wrapper .actividades-slick-slider .activity-card:hover .activity-card-image {
    transform: scale(1.05);
  }
}

.section-slide-cards-actividades .actividades-carousel-wrapper .actividades-slick-slider .activity-card .activity-card-image-container {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #f5f5f5;
  position: relative;
}

@media screen and (min-width: 1024px) {
  .section-slide-cards-actividades .actividades-carousel-wrapper .actividades-slick-slider .activity-card .activity-card-image-container {
    height: 350px;
  }
}

.section-slide-cards-actividades .actividades-carousel-wrapper .actividades-slick-slider .activity-card .activity-card-image-container .activity-card-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
  pointer-events: none;
}

.section-slide-cards-actividades .actividades-carousel-wrapper .actividades-slick-slider .activity-card .activity-card-image-container .activity-card-tag {
  position: absolute;
  top: 0px;
  right: 0px;
  background: #EFEF3F;
  color: #151515;
  font-family: "Avenir";
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 0;
  z-index: 2;
}

@media screen and (min-width: 1024px) {
  .section-slide-cards-actividades .actividades-carousel-wrapper .actividades-slick-slider .activity-card .activity-card-image-container .activity-card-tag {
    font-size: 14px;
    padding: 10px 20px;
  }
}

.section-slide-cards-actividades .actividades-carousel-wrapper .actividades-slick-slider .activity-card .activity-card-content {
  padding: 20px;
  background: #FFFFFF;
}

@media screen and (min-width: 1024px) {
  .section-slide-cards-actividades .actividades-carousel-wrapper .actividades-slick-slider .activity-card .activity-card-content {
    padding: 25px;
  }
}

.section-slide-cards-actividades .actividades-carousel-wrapper .actividades-slick-slider .activity-card .activity-card-content .activity-card-post-type {
  display: inline-block;
  color: #626262;
  font-family: "Avenir";
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin: 0 0 10px 0;
}

@media screen and (min-width: 1024px) {
  .section-slide-cards-actividades .actividades-carousel-wrapper .actividades-slick-slider .activity-card .activity-card-content .activity-card-post-type {
    font-size: 13px;
    margin: 0 0 12px 0;
  }
}

.section-slide-cards-actividades .actividades-carousel-wrapper .actividades-slick-slider .activity-card .activity-card-content .activity-card-title {
  color: #151515;
  font-family: "Avenir";
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 120%;
  text-align: left;
  margin: 0 0 15px 0;
}

@media screen and (min-width: 1024px) {
  .section-slide-cards-actividades .actividades-carousel-wrapper .actividades-slick-slider .activity-card .activity-card-content .activity-card-title {
    font-size: 20px;
    margin: 0 0 20px 0;
  }
}

.section-slide-cards-actividades .actividades-carousel-wrapper .actividades-slick-slider .activity-card .activity-card-content .activity-card-dates {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.section-slide-cards-actividades .actividades-carousel-wrapper .actividades-slick-slider .activity-card .activity-card-content .activity-card-dates .activity-card-date {
  color: #626262;
  font-family: "Avenir";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  text-align: left;
}

@media screen and (min-width: 1024px) {
  .section-slide-cards-actividades .actividades-carousel-wrapper .actividades-slick-slider .activity-card .activity-card-content .activity-card-dates .activity-card-date {
    font-size: 16px;
  }
}

.section-slide-cards-actividades .actividades-carousel-wrapper .actividades-slick-slider-arrow-container {
  display: flex;
  gap: 10px;
  position: absolute;
  right: 0;
  top: -70px;
}

@media screen and (min-width: 1024px) {
  .section-slide-cards-actividades .actividades-carousel-wrapper .actividades-slick-slider-arrow-container {
    top: -80px;
  }
}

.section-slide-cards-actividades .actividades-carousel-wrapper .actividades-slick-slider-arrow-container .actividades-slick-slider-arrow-left,
.section-slide-cards-actividades .actividades-carousel-wrapper .actividades-slick-slider-arrow-container .actividades-slick-slider-arrow-right {
  border: 1px solid #151515;
  background: #151515;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FBFBFB;
  cursor: pointer;
  transition: all 0.3s ease;
}

@media screen and (min-width: 1024px) {
  .section-slide-cards-actividades .actividades-carousel-wrapper .actividades-slick-slider-arrow-container .actividades-slick-slider-arrow-left:hover,
  .section-slide-cards-actividades .actividades-carousel-wrapper .actividades-slick-slider-arrow-container .actividades-slick-slider-arrow-right:hover {
    border: 1px solid #EFEF3F;
    background: #EFEF3F;
    color: #151515;
  }
}

.section-slide-cards-actividades .actividades-carousel-wrapper .actividades-slick-slider-arrow-container .actividades-slick-slider-arrow-left:disabled,
.section-slide-cards-actividades .actividades-carousel-wrapper .actividades-slick-slider-arrow-container .actividades-slick-slider-arrow-right:disabled {
  border: 1px solid rgba(21, 21, 21, 0.2);
  background: transparent;
  color: rgba(21, 21, 21, 0.3);
  cursor: not-allowed;
}

.section-slide-cards-actividades .section-slide-cards-actividades-button-container {
  display: flex;
  justify-content: flex-end;
  margin-top: 5px;
}

@media screen and (min-width: 1024px) {
  .section-slide-cards-actividades .section-slide-cards-actividades-button-container {
    margin-top: 5px;
  }
}

.section-slide-cards-actividades .section-slide-cards-actividades-button-container .section-slide-cards-actividades-button {
  color: #151515;
  font-family: "Avenir";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border: 1px solid #151515;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  background: transparent;
}

@media screen and (min-width: 1024px) {
  .section-slide-cards-actividades .section-slide-cards-actividades-button-container .section-slide-cards-actividades-button {
    font-size: 20px;
    padding: 14px 28px;
  }

  .section-slide-cards-actividades .section-slide-cards-actividades-button-container .section-slide-cards-actividades-button:hover {
    border: 1px solid #EFEF3F;
    background: #EFEF3F;
    color: #151515;
  }

  .section-slide-cards-actividades .section-slide-cards-actividades-button-container .section-slide-cards-actividades-button:hover svg path {
    fill: #151515;
  }
}

.section-slide-cards-actividades .section-slide-cards-actividades-button-container .section-slide-cards-actividades-button svg {
  flex-shrink: 0;
  width: 17px;
  height: 14px;
}

.section-slide-cards-actividades .section-slide-cards-actividades-button-container .section-slide-cards-actividades-button svg path {
  transition: fill 0.3s ease;
}

.section-slide-cards-actividades .section-slide-cards-actividades-button-container .section-slide-cards-actividades-button span {
  font-weight: 500;
}

.section-slide-cards-comunidad {
  background-color: #EFEF3F;
  padding-top: 40px;
  padding-bottom: 60px;
}

@media screen and (min-width: 1024px) {
  .section-slide-cards-comunidad {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}

.section-slide-cards-comunidad .comunidad-layout {
  display: flex;
  gap: 30px;
  align-items: center;
}

@media screen and (min-width: 1024px) {
  .section-slide-cards-comunidad .comunidad-layout {
    gap: 50px;
  }
}

.section-slide-cards-comunidad .comunidad-title-vertical {
  flex-shrink: 0;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  display: none;
}

@media screen and (min-width: 1024px) {
  .section-slide-cards-comunidad .comunidad-title-vertical {
    display: block;
  }
}

.section-slide-cards-comunidad .comunidad-title-vertical .comunidad-vertical-text {
  color: #000000;
  font-family: "Avenir";
  font-size: 96px;
  font-style: normal;
  font-weight: 800;
  line-height: 100%;
  letter-spacing: -2px;
  margin: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

@media screen and (min-width: 1440px) {
  .section-slide-cards-comunidad .comunidad-title-vertical .comunidad-vertical-text {
    font-size: 80px;
  }
}

.section-slide-cards-comunidad .comunidad-cards-grid {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media screen and (min-width: 768px) {
  .section-slide-cards-comunidad .comunidad-cards-grid {
    gap: 25px;
  }
}

@media screen and (min-width: 1024px) {
  .section-slide-cards-comunidad .comunidad-cards-grid {
    gap: 30px;
  }
}

.section-slide-cards-comunidad .comunidad-cards-grid .comunidad-card {
  width: 100%;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

@media screen and (min-width: 640px) {
  .section-slide-cards-comunidad .comunidad-cards-grid .comunidad-card {
    flex-direction: row;
  }
}

@media screen and (min-width: 1024px) {
  .section-slide-cards-comunidad .comunidad-cards-grid .comunidad-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .section-slide-cards-comunidad .comunidad-cards-grid .comunidad-card:hover .comunidad-card-image {
    transform: scale(1.05);
  }
}

.section-slide-cards-comunidad .comunidad-cards-grid .comunidad-card .comunidad-card-content {
  flex: 1;
  padding: 25px;
  background: #EFEF3F;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

@media screen and (min-width: 768px) {
  .section-slide-cards-comunidad .comunidad-cards-grid .comunidad-card .comunidad-card-content {
    padding: 30px 35px;
  }
}

@media screen and (min-width: 1024px) {
  .section-slide-cards-comunidad .comunidad-cards-grid .comunidad-card .comunidad-card-content {
    padding: 40px 45px;
    gap: 30px;
  }
}

.section-slide-cards-comunidad .comunidad-cards-grid .comunidad-card .comunidad-card-content .comunidad-card-title {
  color: #000000;
  font-family: "Avenir";
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 120%;
  margin: 0;
  text-transform: uppercase;
}

@media screen and (min-width: 768px) {
  .section-slide-cards-comunidad .comunidad-cards-grid .comunidad-card .comunidad-card-content .comunidad-card-title {
    font-size: 20px;
  }
}

@media screen and (min-width: 1024px) {
  .section-slide-cards-comunidad .comunidad-cards-grid .comunidad-card .comunidad-card-content .comunidad-card-title {
    font-size: 22px;
  }
}

.section-slide-cards-comunidad .comunidad-cards-grid .comunidad-card .comunidad-card-content .comunidad-card-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border: 1px solid #000000;
  background: transparent;
  color: #151515;
  font-family: "Avenir";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
}

@media screen and (min-width: 1024px) {
  .section-slide-cards-comunidad .comunidad-cards-grid .comunidad-card .comunidad-card-content .comunidad-card-button {
    font-size: 16px;
  }

  .section-slide-cards-comunidad .comunidad-cards-grid .comunidad-card .comunidad-card-content .comunidad-card-button:hover {
    background: #151515;
    color: #EFEF3F;
  }
}

.section-slide-cards-comunidad .comunidad-cards-grid .comunidad-card .comunidad-card-content .comunidad-card-button svg {
  width: 17px;
  height: 14px;
  flex-shrink: 0;
}

.section-slide-cards-comunidad .comunidad-cards-grid .comunidad-card .comunidad-card-image-container {
  flex-shrink: 0;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #f5f5f5;
}

@media screen and (min-width: 640px) {
  .section-slide-cards-comunidad .comunidad-cards-grid .comunidad-card .comunidad-card-image-container {
    width: 220px;
    height: auto;
  }
}

@media screen and (min-width: 768px) {
  .section-slide-cards-comunidad .comunidad-cards-grid .comunidad-card .comunidad-card-image-container {
    width: 280px;
  }
}

@media screen and (min-width: 1024px) {
  .section-slide-cards-comunidad .comunidad-cards-grid .comunidad-card .comunidad-card-image-container {
    width: 350px;
  }
}

@media screen and (min-width: 1440px) {
  .section-slide-cards-comunidad .comunidad-cards-grid .comunidad-card .comunidad-card-image-container {
    width: 400px;
  }
}

.section-slide-cards-comunidad .comunidad-cards-grid .comunidad-card .comunidad-card-image-container .comunidad-card-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.section-exposiciones-list {
  background: #FFFFFF;
  padding-top: 40px;
  padding-bottom: 60px;
}

@media screen and (min-width: 1024px) {
  .section-exposiciones-list {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}

.section-exposiciones-list .exposiciones-header {
  margin-bottom: 30px;
}

@media screen and (min-width: 1024px) {
  .section-exposiciones-list .exposiciones-header {
    margin-bottom: 40px;
  }
}

.section-exposiciones-list .exposiciones-header .exposiciones-title {
  color: #151515;
  font-family: "Avenir";
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: 120%;
  margin: 0;
}

@media screen and (min-width: 768px) {
  .section-exposiciones-list .exposiciones-header .exposiciones-title {
    font-size: 28px;
  }
}

@media screen and (min-width: 1024px) {
  .section-exposiciones-list .exposiciones-header .exposiciones-title {
    font-size: 32px;
  }
}

.section-exposiciones-list .exposiciones-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media screen and (min-width: 768px) {
  .section-exposiciones-list .exposiciones-grid {
    gap: 40px;
  }
}

@media screen and (min-width: 1024px) {
  .section-exposiciones-list .exposiciones-grid {
    gap: 50px;
  }
}

.section-exposiciones-list .exposiciones-grid .exposicion-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media screen and (min-width: 768px) {
  .section-exposiciones-list .exposiciones-grid .exposicion-item {
    flex-direction: row;
    gap: 30px;
  }
}

@media screen and (min-width: 1024px) {
  .section-exposiciones-list .exposiciones-grid .exposicion-item {
    gap: 40px;
  }
}

.section-exposiciones-list .exposiciones-grid .exposicion-item .exposicion-image-container {
  flex-shrink: 0;
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: #f5f5f5;
}

@media screen and (min-width: 768px) {
  .section-exposiciones-list .exposiciones-grid .exposicion-item .exposicion-image-container {
    width: 350px;
    height: 250px;
  }
}

@media screen and (min-width: 1024px) {
  .section-exposiciones-list .exposiciones-grid .exposicion-item .exposicion-image-container {
    width: 450px;
    height: 300px;
  }
}

@media screen and (min-width: 1440px) {
  .section-exposiciones-list .exposiciones-grid .exposicion-item .exposicion-image-container {
    width: 550px;
    height: 350px;
  }
}

.section-exposiciones-list .exposiciones-grid .exposicion-item .exposicion-image-container a {
  display: block;
  width: 100%;
  height: 100%;
}

.section-exposiciones-list .exposiciones-grid .exposicion-item .exposicion-image-container .exposicion-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

@media screen and (min-width: 1024px) {
  .section-exposiciones-list .exposiciones-grid .exposicion-item .exposicion-image-container .exposicion-image:hover {
    transform: scale(1.05);
  }
}

.section-exposiciones-list .exposiciones-grid .exposicion-item .exposicion-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
}

@media screen and (min-width: 1024px) {
  .section-exposiciones-list .exposiciones-grid .exposicion-item .exposicion-content {
    gap: 20px;
  }
}

.section-exposiciones-list .exposiciones-grid .exposicion-item .exposicion-content .exposicion-type {
  color: #151515;
  font-family: "Avenir";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.68px;
  text-transform: uppercase;
  display: block;
}

@media screen and (min-width: 1024px) {
  .section-exposiciones-list .exposiciones-grid .exposicion-item .exposicion-content .exposicion-type {
    font-size: 14px;
    letter-spacing: 1.96px;
  }
}

.section-exposiciones-list .exposiciones-grid .exposicion-item .exposicion-content .exposicion-item-title {
  margin: 0;
}

.section-exposiciones-list .exposiciones-grid .exposicion-item .exposicion-content .exposicion-item-title a {
  color: #000000;
  font-family: "Avenir";
  font-size: 32px;
  font-style: normal;
  font-weight: 800;
  line-height: 120%;
  text-decoration: none;
  transition: color 0.3s ease;
}

@media screen and (min-width: 768px) {
  .section-exposiciones-list .exposiciones-grid .exposicion-item .exposicion-content .exposicion-item-title a {
    font-size: 24px;
  }
}

@media screen and (min-width: 1024px) {
  .section-exposiciones-list .exposiciones-grid .exposicion-item .exposicion-content .exposicion-item-title a {
    font-size: 28px;
  }

  .section-exposiciones-list .exposiciones-grid .exposicion-item .exposicion-content .exposicion-item-title a:hover {
    color: #626262;
  }
}

.section-exposiciones-list .exposiciones-grid .exposicion-item .exposicion-content .exposicion-dates {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;
}

.section-exposiciones-list .exposiciones-grid .exposicion-item .exposicion-content .exposicion-dates .exposicion-date {
  color: #151515;
  font-family: "Avenir";
  font-size: 22px;
  font-style: normal;
  font-weight: 350;
  line-height: 20px;
}

@media screen and (min-width: 1024px) {
  .section-exposiciones-list .exposiciones-grid .exposicion-item .exposicion-content .exposicion-dates .exposicion-date {
    font-size: 22px;
  }
}

.section-exposiciones-list .exposiciones-grid .exposicion-item .exposicion-content .exposicion-dates .exposicion-date:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  background: #151515;
  border-radius: 50%;
  margin-left: 8px;
  vertical-align: middle;
}

.section-exposiciones-list .exposiciones-grid .exposicion-item .exposicion-content .exposicion-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border: 1px solid #151515;
  background: transparent;
  color: #151515;
  font-family: "Avenir";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
}

@media screen and (min-width: 1024px) {
  .section-exposiciones-list .exposiciones-grid .exposicion-item .exposicion-content .exposicion-button {
    font-size: 16px;
  }

  .section-exposiciones-list .exposiciones-grid .exposicion-item .exposicion-content .exposicion-button:hover {
    background: #151515;
    color: #FFFFFF;
  }
}

.section-exposiciones-list .exposiciones-grid .exposicion-item .exposicion-content .exposicion-button svg {
  width: 17px;
  height: 14px;
  flex-shrink: 0;
}

.section-exposiciones-list .exposiciones-footer {
  margin-top: 40px;
  display: flex;
  justify-content: flex-end;
}

@media screen and (min-width: 1024px) {
  .section-exposiciones-list .exposiciones-footer {
    margin-top: 50px;
  }
}

.section-exposiciones-list .exposiciones-footer .exposiciones-button-more {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border: 1px solid #151515;
  background: #151515;
  color: #FFFFFF;
  font-family: "Avenir";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

@media screen and (min-width: 1024px) {
  .section-exposiciones-list .exposiciones-footer .exposiciones-button-more {
    font-size: 16px;
  }

  .section-exposiciones-list .exposiciones-footer .exposiciones-button-more:hover {
    background: transparent;
    color: #151515;
  }
}

.section-exposiciones-list .exposiciones-footer .exposiciones-button-more svg {
  width: 17px;
  height: 14px;
  flex-shrink: 0;
}

.section-testimonies {
  padding-top: 30px;
  padding-bottom: 30px;
}

@media screen and (min-width: 1024px) {
  .section-testimonies {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.section-testimonies .section-testimonies-content {
  position: relative;
}

.section-testimonies .section-testimonies-content .testimonies {
  max-width: 670px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 768px) {
  .section-testimonies .section-testimonies-content .testimonies .card-testimonies {
    display: flex !important;
    gap: 30px;
  }
}

@media screen and (min-width: 768px) {
  .section-testimonies .section-testimonies-content .testimonies .card-testimonies .card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
  }
}

.section-testimonies .section-testimonies-content .testimonies .card-testimonies .card-content .card-testimonies-description {
  color: #626262;
  font-family: "Avenir";
  font-size: 24px;
  font-weight: 500;
  line-height: 35px;
  padding-bottom: 20px;
  border-bottom: 1px solid #939393;
  margin-bottom: 10px;
}

.section-testimonies .section-testimonies-content .testimonies .card-testimonies .card-content .card-testimonies-author {
  color: #626262;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
}

.section-testimonies .section-testimonies-content .testimonies .card-testimonies .card-content .card-testimonies-occupation {
  display: block;
  color: #939393;
  font-family: "Avenir";
  font-size: 16px;
  font-weight: 350;
  line-height: 150%;
  margin-bottom: 80px;
}

@media screen and (min-width: 768px) {
  .section-testimonies .section-testimonies-content .testimonies .card-testimonies .card-content .card-testimonies-occupation {
    margin-bottom: 30px;
  }
}

.section-testimonies .section-testimonies-content .testimonies .card-testimonies .card-testimonies-image-container {
  height: 440px;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .section-testimonies .section-testimonies-content .testimonies .card-testimonies .card-testimonies-image-container {
    width: 270px;
  }
}

.section-testimonies .section-testimonies-content .testimonies .card-testimonies .card-testimonies-image-container .card-testimonies-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section-testimonies .section-testimonies-content .testimonies .card-testimonies .plyr {
  height: 440px !important;
}

@media screen and (min-width: 768px) {
  .section-testimonies .section-testimonies-content .testimonies .card-testimonies .plyr {
    max-width: 270px !important;
  }
}

.section-testimonies .section-testimonies-content .testimonies .card-testimonies .js-plyr {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section-testimonies .section-testimonies-content .section-testimonies-arrows-container {
  position: absolute;
  bottom: 470px;
  display: flex;
  gap: 8px;
}

@media screen and (min-width: 768px) {
  .section-testimonies .section-testimonies-content .section-testimonies-arrows-container.only-mobile {
    display: none;
  }
}

.section-testimonies .section-testimonies-content .section-testimonies-arrows-container.only-desktop {
  display: none;
}

@media screen and (min-width: 768px) {
  .section-testimonies .section-testimonies-content .section-testimonies-arrows-container.only-desktop {
    display: flex;
    position: relative;
    bottom: initial;
  }
}

.section-testimonies .section-testimonies-content .section-testimonies-arrows-container .testimonies-slick-slider-arrow-left,
.section-testimonies .section-testimonies-content .section-testimonies-arrows-container .testimonies-slick-slider-arrow-right {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #939393;
  transition: all 0.3s ease;
}

.section-testimonies .section-testimonies-content .section-testimonies-arrows-container .testimonies-slick-slider-arrow-left svg path,
.section-testimonies .section-testimonies-content .section-testimonies-arrows-container .testimonies-slick-slider-arrow-right svg path {
  transition: all 0.3s ease;
}

@media screen and (min-width: 1024px) {
  .section-testimonies .section-testimonies-content .section-testimonies-arrows-container .testimonies-slick-slider-arrow-left:hover,
  .section-testimonies .section-testimonies-content .section-testimonies-arrows-container .testimonies-slick-slider-arrow-right:hover {
    background-color: #F8E634;
    border: 1px solid #F8E634;
  }

  .section-testimonies .section-testimonies-content .section-testimonies-arrows-container .testimonies-slick-slider-arrow-left:hover svg path,
  .section-testimonies .section-testimonies-content .section-testimonies-arrows-container .testimonies-slick-slider-arrow-right:hover svg path {
    stroke: #151515;
  }
}

.section-thank-you-page-404 {
  position: relative;
  margin-bottom: 30px;
}

@media screen and (min-width: 1024px) {
  .section-thank-you-page-404 {
    margin-bottom: 40px;
  }
}

.section-thank-you-page-404.section-404 {
  margin-bottom: -30px;
}

@media screen and (min-width: 1024px) {
  .section-thank-you-page-404.section-404 {
    margin-bottom: -40px;
  }
}

.section-thank-you-page-404.section-404 .section-thank-you-page-404-content .section-thank-you-page-404-title {
  letter-spacing: 10px;
}

.section-thank-you-page-404 .background-mobile {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (min-width: 1024px) {
  .section-thank-you-page-404 .background-mobile {
    display: none;
  }
}

.section-thank-you-page-404 .background-desktop {
  display: none;
}

@media screen and (min-width: 1024px) {
  .section-thank-you-page-404 .background-desktop {
    display: block;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
}

.section-thank-you-page-404 .section-thank-you-page-404-content {
  padding-top: 75.5px;
  padding-bottom: 75.5px;
}

@media screen and (min-width: 1024px) {
  .section-thank-you-page-404 .section-thank-you-page-404-content {
    padding-top: 148px;
    padding-bottom: 148px;
  }
}

.section-thank-you-page-404 .section-thank-you-page-404-content .section-thank-you-page-404-title {
  color: #F8F8F8;
  text-align: center;
  font-family: "Avenir";
  font-size: 70px;
  font-weight: 500;
  line-height: 50px;
  margin-bottom: 30px;
  position: relative;
}

@media screen and (min-width: 1024px) {
  .section-thank-you-page-404 .section-thank-you-page-404-content .section-thank-you-page-404-title {
    font-size: 100px;
  }
}

.section-thank-you-page-404 .section-thank-you-page-404-content .section-thank-you-page-404-sutitle {
  color: #FFF;
  text-align: center;
  font-family: "Avenir";
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 30px;
  position: relative;
}

@media screen and (min-width: 1024px) {
  .section-thank-you-page-404 .section-thank-you-page-404-content .section-thank-you-page-404-sutitle {
    color: #E0E0E0;
    font-size: 25px;
    margin-bottom: 20px;
  }
}

.section-thank-you-page-404 .section-thank-you-page-404-content .section-thank-you-page-404-description {
  color: #F8F8F8;
  text-align: center;
  font-family: "Avenir";
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 40px;
  position: relative;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.section-thank-you-page-404 .section-thank-you-page-404-content .section-thank-you-page-404-buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  position: relative;
}

@media screen and (min-width: 1024px) {
  .section-thank-you-page-404 .section-thank-you-page-404-content .section-thank-you-page-404-buttons {
    flex-direction: row;
  }
}

.section-thank-you-page-404 .section-thank-you-page-404-content .section-thank-you-page-404-buttons .button-left {
  color: #151515;
  font-family: "Avenir";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  background: #F8E634;
  padding: 10px 20px;
  padding-bottom: 9px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: 1px solid #F8E634;
  width: 100%;
  transition: all 0.3s ease;
}

@media screen and (min-width: 768px) {
  .section-thank-you-page-404 .section-thank-you-page-404-content .section-thank-you-page-404-buttons .button-left {
    width: -moz-fit-content;
    width: fit-content;
  }
}

@media screen and (min-width: 1024px) {
  .section-thank-you-page-404 .section-thank-you-page-404-content .section-thank-you-page-404-buttons .button-left:hover {
    background: rgba(248, 229, 52, 0);
    color: #F8E634;
    border: 1px solid #F8E634;
  }
}

.section-thank-you-page-404 .section-thank-you-page-404-content .section-thank-you-page-404-buttons .button-right {
  color: #FBFBFB;
  font-family: "Avenir";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 10px 20px;
  padding-bottom: 9px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: 1px solid #FBFBFB;
  width: 100%;
  transition: all 0.3s ease;
}

@media screen and (min-width: 768px) {
  .section-thank-you-page-404 .section-thank-you-page-404-content .section-thank-you-page-404-buttons .button-right {
    width: -moz-fit-content;
    width: fit-content;
  }
}

@media screen and (min-width: 1024px) {
  .section-thank-you-page-404 .section-thank-you-page-404-content .section-thank-you-page-404-buttons .button-right:hover {
    background: #FBFBFB;
    color: #151515;
  }

  .section-thank-you-page-404 .section-thank-you-page-404-content .section-thank-you-page-404-buttons .button-right:hover svg path {
    fill: #626262;
  }
}

.section-location-maps {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
}

.section-location-maps .section-location-maps-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

@media screen and (min-width: 1024px) {
  .section-location-maps .section-location-maps-header {
    margin-bottom: 25px;
  }
}

.section-location-maps .section-location-maps-header .left-side .subtitle {
  display: block;
  color: #444;
  font-family: "Avenir";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: -0.08px;
  margin-bottom: 5px;
}

@media screen and (min-width: 1024px) {
  .section-location-maps .section-location-maps-header .left-side .subtitle {
    font-size: 16px;
    letter-spacing: -0.08px;
    margin-bottom: 10px;
  }
}

.section-location-maps .section-location-maps-header .left-side .title {
  color: #151515;
  font-family: "Avenir";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: -0.08px;
  margin-bottom: 12px;
}

@media screen and (min-width: 1024px) {
  .section-location-maps .section-location-maps-header .left-side .title {
    font-size: 24px;
    line-height: 22px;
    letter-spacing: -0.08px;
    margin-bottom: 0;
  }
}

.section-location-maps .section-location-maps-header .left-side .title strong {
  font-weight: 800;
}

.section-location-maps .section-location-maps-header .right-side {
  display: none;
}

@media screen and (min-width: 1024px) {
  .section-location-maps .section-location-maps-header .right-side {
    display: block;
  }
}

.section-location-maps .section-location-maps-header .right-side .button {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #626262;
  padding: 10px 20px;
  padding-top: 17px;
  padding-bottom: 15px;
  transition: border 0.3s ease, background-color 0.3s ease;
  color: #151515;
  font-family: "Avenir";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

@media screen and (min-width: 1440px) {
  .section-location-maps .section-location-maps-header .right-side .button:hover {
    background-color: #F8E634;
    border: 1px solid #F8E634;
  }
}

.section-location-maps .section-location-maps-select {
  display: none;
}

.section-location-maps .section-location-maps-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

@media screen and (min-width: 1024px) {
  .section-location-maps .section-location-maps-content {
    flex-direction: row;
    justify-content: center;
    gap: 30px;
  }
}

.section-location-maps .section-location-maps-content .accordion-spaces {
  width: 100%;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
  display: block;
  order: 2;
  margin-bottom: 20px;
}

@media screen and (min-width: 1024px) {
  .section-location-maps .section-location-maps-content .accordion-spaces {
    width: 350px;
    order: 1;
    margin-bottom: 0;
  }
}

.section-location-maps .section-location-maps-content .accordion-spaces .accordion-spaces-header {
  padding: 0;
  margin: 0;
  border: none;
  border-radius: inherit;
  color: #444;
  font-family: "Avenir";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  padding: 18px 15px;
  background: #FBFBFB;
  border-bottom: 1px solid #E0E0E0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

@media screen and (min-width: 1024px) {
  .section-location-maps .section-location-maps-content .accordion-spaces .accordion-spaces-header {
    font-size: 16px;
    padding: 22px 20px;
    margin-bottom: 10px;
  }
}

.section-location-maps .section-location-maps-content .accordion-spaces .accordion-spaces-header.ui-state-hover {
  background: #E8E8E8;
}

.section-location-maps .section-location-maps-content .accordion-spaces .accordion-spaces-header.ui-state-active {
  color: #151515;
  font-family: "Avenir";
  font-weight: 500;
  background: #F8E634;
  border-bottom: none;
  margin-bottom: 0;
}

.section-location-maps .section-location-maps-content .accordion-spaces .accordion-spaces-header.ui-state-active .icon {
  transform: rotate(-180deg);
}

.section-location-maps .section-location-maps-content .accordion-spaces .accordion-spaces-header .ui-accordion-header-icon {
  display: none;
}

.section-location-maps .section-location-maps-content .accordion-spaces .accordion-spaces-header .icon {
  transition: transform 0.3s ease;
}

.section-location-maps .section-location-maps-content .accordion-spaces .accordion-spaces-content {
  padding: 0;
  margin: 0;
  border: none;
  border-radius: inherit;
  padding: 15px 15px 20px 15px;
  background: #FBFBFB;
  border-bottom: 1px solid #E0E0E0;
  margin-bottom: 8px;
  margin-top: -8px;
}

@media screen and (min-width: 1024px) {
  .section-location-maps .section-location-maps-content .accordion-spaces .accordion-spaces-content {
    padding: 18px 20px 24px 20px;
    margin-bottom: 10px;
    margin-top: -10px;
  }
}

.section-location-maps .section-location-maps-content .accordion-spaces .accordion-spaces-content:last-child {
  border-bottom: 1px solid #E0E0E0;
}

.section-location-maps .section-location-maps-content .accordion-spaces .accordion-spaces-content .address a {
  display: flex;
  gap: 8px;
  font-style: normal;
  margin-bottom: 8px;
  color: #000000;
  font-family: "Avenir";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
}

@media screen and (min-width: 1024px) {
  .section-location-maps .section-location-maps-content .accordion-spaces .accordion-spaces-content .address a {
    font-size: 16px;
    gap: 10px;
    line-height: 24px;
  }
}

.section-location-maps .section-location-maps-content .accordion-spaces .accordion-spaces-content .schedules {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.section-location-maps .section-location-maps-content .accordion-spaces .accordion-spaces-content .schedules .schedules-content {
  display: flex;
  flex-direction: column;
}

.section-location-maps .section-location-maps-content .accordion-spaces .accordion-spaces-content .schedules .schedules-content span {
  display: block;
  color: #000000;
  font-family: "Avenir";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  max-width: 290px;
}

@media screen and (min-width: 1024px) {
  .section-location-maps .section-location-maps-content .accordion-spaces .accordion-spaces-content .schedules .schedules-content span {
    font-size: 16px;
    line-height: 24px;
  }
}

.section-location-maps .section-location-maps-content .accordion-spaces .accordion-spaces-content .email {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #000000;
  font-family: "Avenir";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  margin-bottom: 8px;
}

@media screen and (min-width: 1024px) {
  .section-location-maps .section-location-maps-content .accordion-spaces .accordion-spaces-content .email {
    font-size: 16px;
    gap: 10px;
    line-height: 24px;
  }
}

.section-location-maps .section-location-maps-content .accordion-spaces .accordion-spaces-content .phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #000000;
  font-family: "Avenir";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  padding-bottom: 12px;
}

@media screen and (min-width: 1024px) {
  .section-location-maps .section-location-maps-content .accordion-spaces .accordion-spaces-content .phone {
    font-size: 16px;
    gap: 10px;
    line-height: 24px;
    padding-bottom: 15px;
  }
}

.section-location-maps .section-location-maps-content .accordion-spaces .accordion-spaces-content .button {
  border-top: 1px solid #939393;
  color: #151515;
  font-family: "Avenir";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 0.5;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  margin-left: -15px;
  margin-right: -15px;
  padding: 10px 15px;
  padding-top: 12px;
}

@media screen and (min-width: 1440px) {
  .section-location-maps .section-location-maps-content .accordion-spaces .accordion-spaces-content .button:hover {
    background-color: #E8E8E8;
  }
}

.section-location-maps .section-location-maps-content .accordion-spaces .accordion-spaces-content .button svg {
  height: 23px;
}

.section-location-maps .section-location-maps-content .accordion-map-container {
  flex: 1;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  position: relative;
  order: 1;
}

@media screen and (min-width: 1024px) {
  .section-location-maps .section-location-maps-content .accordion-map-container {
    margin-bottom: 0;
    order: 2;
  }
}

.section-location-maps .section-location-maps-content .accordion-map-container .accordion-map {
  display: none;
  height: 100%;
}

.section-location-maps .section-location-maps-content .accordion-map-container .accordion-map.show {
  display: block;
  animation: fade-in 1s ease;
}

.section-location-maps .section-location-maps-content .accordion-map-container .accordion-map iframe {
  width: 100%;
  height: 380px;
}

@media screen and (min-width: 768px) {
  .section-location-maps .section-location-maps-content .accordion-map-container .accordion-map iframe {
    height: 450px;
  }
}

@media screen and (min-width: 1024px) {
  .section-location-maps .section-location-maps-content .accordion-map-container .accordion-map iframe {
    height: 100%;
    min-height: 500px;
  }
}

.section-location-maps .section-location-maps-content .spaces-map-info {
  display: none !important;
}

@media screen and (min-width: 1024px) {
  .section-location-maps .bottom-side {
    display: none;
  }
}

.section-location-maps .bottom-side .button {
  color: #151515;
  font-family: "Avenir";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 1.4px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: 1px solid #626262;
  padding: 10px 20px;
  transition: border 0.3s ease, background-color 0.3s ease;
}

.section-map {
  padding-top: 30px;
  padding-bottom: 30px;
}

@media screen and (min-width: 1024px) {
  .section-map {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.section-map .section-map-header {
  margin-bottom: 30px;
}

@media screen and (min-width: 1024px) {
  .section-map .section-map-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.section-map .section-map-header .section-map-header-left-side .subtitle {
  color: #444;
  font-family: "Avenir";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.44px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.section-map .section-map-header .section-map-header-left-side .title {
  color: #151515;
  font-family: "Avenir";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 35px;
}

.section-map .section-map-header .section-map-header-right-side {
  display: none;
}

@media screen and (min-width: 1024px) {
  .section-map .section-map-header .section-map-header-right-side {
    display: block;
  }
}

.section-map .section-map-content {
  position: relative;
  margin-left: -20px;
  margin-right: -20px;
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 1024px) {
  .section-map .section-map-content {
    flex-direction: row;
    margin-left: 0;
    margin-right: 0;
    background: #FFF;
    box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1);
  }
}

.section-map .section-map-content .map-info {
  position: absolute;
  bottom: 158px;
  align-self: center;
  padding-left: 20px;
  padding-right: 20px;
}

@media screen and (min-width: 1024px) {
  .section-map .section-map-content .map-info {
    position: relative;
    bottom: inherit;
    padding: 0;
    align-self: start;
    width: 100%;
    max-width: 270px;
  }
}

.section-map .section-map-content .map-info .map-info-content {
  padding: 15px 20px;
  background: #FFF;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1);
  font-style: normal;
}

@media screen and (min-width: 1024px) {
  .section-map .section-map-content .map-info .map-info-content {
    box-shadow: none;
    padding: 0;
  }
}

.section-map .section-map-content .map-info .map-info-content .map-info-title {
  color: #151515;
  font-family: "Avenir";
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 8px;
}

@media screen and (min-width: 1024px) {
  .section-map .section-map-content .map-info .map-info-content .map-info-title {
    padding: 15px 20px;
    background: #F8E634;
    margin-bottom: 0;
  }
}

.section-map .section-map-content .map-info .map-info-content .map-info-address {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 3px;
  color: #626262;
  font-family: "Avenir";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media screen and (min-width: 1024px) {
  .section-map .section-map-content .map-info .map-info-content .map-info-address {
    align-items: flex-start;
    padding-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    margin-bottom: 4px;
  }
}

.section-map .section-map-content .map-info .map-info-content .map-info-address .icon {
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 1024px) {
  .section-map .section-map-content .map-info .map-info-content .map-info-address .icon {
    width: 20px;
    height: 20px;
  }
}

.section-map .section-map-content .map-info .map-info-content .map-info-schedules {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 3px;
}

@media screen and (min-width: 1024px) {
  .section-map .section-map-content .map-info .map-info-content .map-info-schedules {
    align-items: flex-start;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 4px;
  }
}

.section-map .section-map-content .map-info .map-info-content .map-info-schedules .icon {
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 1024px) {
  .section-map .section-map-content .map-info .map-info-content .map-info-schedules .icon {
    width: 20px;
    height: 20px;
  }
}

.section-map .section-map-content .map-info .map-info-content .map-info-schedules .schedules-content {
  color: #626262;
  font-family: "Avenir";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media screen and (min-width: 1024px) {
  .section-map .section-map-content .map-info .map-info-content .map-info-schedules .schedules-content {
    display: flex;
    flex-direction: column;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
  }
}

.section-map .section-map-content .map-info .map-info-email-and-phone-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media screen and (min-width: 1024px) {
  .section-map .section-map-content .map-info .map-info-email-and-phone-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.section-map .section-map-content .map-info .map-info-email-and-phone-container .map-info-email-and-phone {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
  color: #626262;
  font-family: "Avenir";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media screen and (min-width: 1024px) {
  .section-map .section-map-content .map-info .map-info-email-and-phone-container .map-info-email-and-phone {
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    margin-bottom: 0px;
  }
}

.section-map .section-map-content .map-info .map-info-email-and-phone-container .map-info-email-and-phone .icon {
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 1024px) {
  .section-map .section-map-content .map-info .map-info-email-and-phone-container .map-info-email-and-phone .icon {
    width: 20px;
    height: 20px;
  }
}

.section-map .section-map-content .map-info .map-info-button-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media screen and (min-width: 1024px) {
  .section-map .section-map-content .map-info .map-info-button-container {
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 15px;
  }
}

.section-map .section-map-content .map-info .map-info-button-container .map-info-button {
  color: #EFEFEF;
  font-family: "Avenir";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 17px;
  display: flex;
  align-items: center;
  gap: 7px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 13px;
  background: #151515;
  border: 1px solid #151515;
}

@media screen and (min-width: 1024px) {
  .section-map .section-map-content .map-info .map-info-button-container .map-info-button:hover {
    background: rgba(21, 21, 21, 0);
    color: #151515;
  }
}

@media screen and (min-width: 1024px) {
  .section-map .section-map-content .map-container {
    flex: 1;
  }
}

.section-map .section-map-content .map-container iframe {
  width: 100%;
  height: 400px;
}

@media screen and (min-width: 1024px) {
  .section-map .section-map-content .map-container iframe {
    height: 480px;
  }
}

.section-map .section-map-button {
  color: #151515;
  font-family: "Avenir";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 13px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  border: 1px solid #626262;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  width: -moz-fit-content;
  width: fit-content;
}

@media screen and (min-width: 1024px) {
  .section-map .section-map-button {
    padding: 15px 20px;
  }

  .section-map .section-map-button:hover {
    border: 1px solid #F8E634;
    background: #F8E634;
  }
}

.section-map .section-map-button.mobile-only {
  align-self: center;
  margin-top: 30px;
}

@media screen and (min-width: 1024px) {
  .section-map .section-map-button.mobile-only {
    display: none;
  }
}

.section-gallery-hover-effect {
  background: white;
  padding-top: 30px;
  padding-bottom: 30px;
}

@media screen and (min-width: 1024px) {
  .section-gallery-hover-effect {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.section-gallery-hover-effect.padding-top-mobile {
  padding-top: 0;
}

@media screen and (min-width: 1024px) {
  .section-gallery-hover-effect.padding-top-mobile {
    padding-top: 40px;
  }
}

.section-gallery-hover-effect .section-gallery-hover-effect-content .section-gallery-hover-effect-pretitle {
  color: #444;
  font-family: "Avenir";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.44px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

@media screen and (min-width: 1024px) {
  .section-gallery-hover-effect .section-gallery-hover-effect-content .section-gallery-hover-effect-pretitle {
    font-size: 16px;
    letter-spacing: 1.92px;
    margin-bottom: 10px;
  }
}

.section-gallery-hover-effect .section-gallery-hover-effect-content .section-gallery-hover-effect-title {
  color: #151515;
  font-family: "Avenir";
  font-size: 24px;
  font-style: normal;
  font-weight: 350;
  line-height: 35px;
  margin-bottom: 20px;
}

@media screen and (min-width: 1024px) {
  .section-gallery-hover-effect .section-gallery-hover-effect-content .section-gallery-hover-effect-title {
    font-size: 30px;
    font-weight: 350;
    line-height: 40px;
    margin-bottom: 20px;
  }
}

.section-gallery-hover-effect .section-gallery-hover-effect-content .section-gallery-hover-effect-title strong {
  font-weight: 800;
}

.section-gallery-hover-fade-effect {
  padding-top: 30px;
  margin-bottom: -30px;
}

@media screen and (min-width: 1024px) {
  .section-gallery-hover-fade-effect {
    padding-top: 40px;
    padding-bottom: 40px;
    margin-bottom: 0;
  }
}

.section-gallery-hover-fade-effect .section-gallery-hover-fade-effect-content {
  padding-left: 0px;
  padding-right: 0px;
}

@media screen and (min-width: 1024px) {
  .section-gallery-hover-fade-effect .section-gallery-hover-fade-effect-content {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media screen and (min-width: 1440px) {
  .section-gallery-hover-fade-effect .section-gallery-hover-fade-effect-content {
    padding-left: 135px;
    padding-right: 135px;
  }
}

.section-gallery-hover-fade-effect .section-gallery-hover-fade-effect-content .gallery {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 1024px) {
  .section-gallery-hover-fade-effect .section-gallery-hover-fade-effect-content .gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr) 0;
    grid-template-rows: repeat(4, 1fr) 0;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    border: 1px solid #000;
  }

  .section-gallery-hover-fade-effect .section-gallery-hover-fade-effect-content .gallery :nth-child(1).item-gallery {
    grid-area: 1/1/3/3;
    height: 540px;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
  }

  .section-gallery-hover-fade-effect .section-gallery-hover-fade-effect-content .gallery :nth-child(1).item-gallery .item-gallery-title {
    font-size: 40px;
    font-weight: 400;
  }

  .section-gallery-hover-fade-effect .section-gallery-hover-fade-effect-content .gallery :nth-child(2).item-gallery {
    grid-area: 1/3/2/4;
  }

  .section-gallery-hover-fade-effect .section-gallery-hover-fade-effect-content .gallery :nth-child(3).item-gallery {
    grid-area: 1/4/2/5;
  }

  .section-gallery-hover-fade-effect .section-gallery-hover-fade-effect-content .gallery :nth-child(4).item-gallery {
    grid-area: 2/4/3/5;
  }

  .section-gallery-hover-fade-effect .section-gallery-hover-fade-effect-content .gallery :nth-child(5).item-gallery {
    grid-area: 2/3/3/4;
  }

  .section-gallery-hover-fade-effect .section-gallery-hover-fade-effect-content .gallery :nth-child(6).item-gallery {
    grid-area: 3/1/4/2;
  }

  .section-gallery-hover-fade-effect .section-gallery-hover-fade-effect-content .gallery :nth-child(7).item-gallery {
    grid-area: 3/2/4/3;
  }

  .section-gallery-hover-fade-effect .section-gallery-hover-fade-effect-content .gallery :nth-child(8).item-gallery {
    grid-area: 3/3/4/4;
  }

  .section-gallery-hover-fade-effect .section-gallery-hover-fade-effect-content .gallery :nth-child(9).item-gallery {
    grid-area: 3/4/4/5;
  }

  .section-gallery-hover-fade-effect .section-gallery-hover-fade-effect-content .gallery :nth-child(10).item-gallery {
    grid-area: 4/4/5/5;
  }

  .section-gallery-hover-fade-effect .section-gallery-hover-fade-effect-content .gallery :nth-child(11).item-gallery {
    grid-area: 4/3/5/4;
  }

  .section-gallery-hover-fade-effect .section-gallery-hover-fade-effect-content .gallery :nth-child(12).item-gallery {
    grid-area: 4/2/5/3;
  }

  .section-gallery-hover-fade-effect .section-gallery-hover-fade-effect-content .gallery :nth-child(13).item-gallery {
    grid-area: 4/1/5/2;
  }
}

@media screen and (min-width: 1440px) {
  .section-gallery-hover-fade-effect .section-gallery-hover-fade-effect-content .gallery :nth-child(1) {
    grid-area: 1/1/3/3;
    height: 570px;
  }
}

.section-gallery-hover-fade-effect .section-gallery-hover-fade-effect-content .gallery .item-gallery {
  border-top: 1px solid #151515;
  height: 84px;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 16px;
  position: relative;
}

@media screen and (min-width: 768px) {
  .section-gallery-hover-fade-effect .section-gallery-hover-fade-effect-content .gallery .item-gallery {
    height: 120px;
  }
}

@media screen and (min-width: 1024px) {
  .section-gallery-hover-fade-effect .section-gallery-hover-fade-effect-content .gallery .item-gallery {
    padding: 30px 20px;
    border-top: none;
    height: 210px;
    flex-direction: column;
    align-items: normal;
  }
}

@media screen and (min-width: 1440px) {
  .section-gallery-hover-fade-effect .section-gallery-hover-fade-effect-content .gallery .item-gallery {
    height: 270px;
  }
}

.section-gallery-hover-fade-effect .section-gallery-hover-fade-effect-content .gallery .item-gallery:nth-child(odd) {
  background: #F8F8F8;
}

.section-gallery-hover-fade-effect .section-gallery-hover-fade-effect-content .gallery .item-gallery:nth-child(odd) .item-gallery-image {
  opacity: 0;
  filter: grayscale(1);
}

.section-gallery-hover-fade-effect .section-gallery-hover-fade-effect-content .gallery .item-gallery:nth-child(odd) .item-backdrop {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
}

.section-gallery-hover-fade-effect .section-gallery-hover-fade-effect-content .gallery .item-gallery:nth-child(odd) .item-gallery-title {
  color: #151515;
}

.section-gallery-hover-fade-effect .section-gallery-hover-fade-effect-content .gallery .item-gallery:nth-child(odd) .item-gallery-button .button-icon {
  color: #151515;
}

@media screen and (min-width: 1024px) {
  .section-gallery-hover-fade-effect .section-gallery-hover-fade-effect-content .gallery .item-gallery:nth-child(odd):hover .item-gallery-image {
    opacity: 1;
  }

  .section-gallery-hover-fade-effect .section-gallery-hover-fade-effect-content .gallery .item-gallery:nth-child(odd):hover .item-backdrop {
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3411764706);
    z-index: 1;
  }

  .section-gallery-hover-fade-effect .section-gallery-hover-fade-effect-content .gallery .item-gallery:nth-child(odd):hover .item-gallery-title {
    color: #EFEFEF;
  }

  .section-gallery-hover-fade-effect .section-gallery-hover-fade-effect-content .gallery .item-gallery:nth-child(odd):hover .item-gallery-button {
    background: #F8E634;
  }

  .section-gallery-hover-fade-effect .section-gallery-hover-fade-effect-content .gallery .item-gallery:nth-child(odd):hover .item-gallery-button .button-text {
    background: #F8E634;
    opacity: 1;
    padding-left: 12px;
    padding-right: 40px;
  }

  .section-gallery-hover-fade-effect .section-gallery-hover-fade-effect-content .gallery .item-gallery:nth-child(odd):hover .item-gallery-button .button-icon {
    color: #151515;
  }

  .section-gallery-hover-fade-effect .section-gallery-hover-fade-effect-content .gallery .item-gallery:nth-child(odd):hover .item-gallery-button .button-icon rect {
    stroke: rgba(248, 229, 52, 0);
  }
}

.section-gallery-hover-fade-effect .section-gallery-hover-fade-effect-content .gallery .item-gallery:nth-child(even) .item-gallery-image {
  filter: brightness(0.6);
}

.section-gallery-hover-fade-effect .section-gallery-hover-fade-effect-content .gallery .item-gallery:nth-child(even) .item-gallery-title {
  color: #EFEFEF;
}

.section-gallery-hover-fade-effect .section-gallery-hover-fade-effect-content .gallery .item-gallery:nth-child(even) .item-gallery-button svg.button-icon path {
  stroke: #FBFBFB;
}

.section-gallery-hover-fade-effect .section-gallery-hover-fade-effect-content .gallery .item-gallery:nth-child(even) .item-gallery-button svg.button-icon rect {
  stroke: #FBFBFB;
}

@media screen and (min-width: 1024px) {
  .section-gallery-hover-fade-effect .section-gallery-hover-fade-effect-content .gallery .item-gallery:nth-child(even):hover .item-gallery-button {
    background: #F8E634;
  }

  .section-gallery-hover-fade-effect .section-gallery-hover-fade-effect-content .gallery .item-gallery:nth-child(even):hover .item-gallery-button .button-text {
    background: #F8E634;
    opacity: 1;
    padding-left: 12px;
    padding-right: 40px;
  }

  .section-gallery-hover-fade-effect .section-gallery-hover-fade-effect-content .gallery .item-gallery:nth-child(even):hover .item-gallery-button .button-icon path {
    stroke: #151515;
  }

  .section-gallery-hover-fade-effect .section-gallery-hover-fade-effect-content .gallery .item-gallery:nth-child(even):hover .item-gallery-button .button-icon rect {
    stroke: rgba(248, 229, 52, 0);
  }
}

.section-gallery-hover-fade-effect .section-gallery-hover-fade-effect-content .gallery .item-gallery .item-gallery-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  transition: all 0.3s ease;
}

.section-gallery-hover-fade-effect .section-gallery-hover-fade-effect-content .gallery .item-gallery .item-gallery-title {
  font-family: "Avenir";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 1024px) {
  .section-gallery-hover-fade-effect .section-gallery-hover-fade-effect-content .gallery .item-gallery .item-gallery-title {
    font-size: 25px;
  }
}

.section-gallery-hover-fade-effect .section-gallery-hover-fade-effect-content .gallery .item-gallery .item-gallery-button {
  display: flex;
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 1024px) {
  .section-gallery-hover-fade-effect .section-gallery-hover-fade-effect-content .gallery .item-gallery .item-gallery-button {
    justify-content: flex-end;
    width: -moz-fit-content;
    width: fit-content;
    height: 40px;
    margin-left: auto;
  }
}

.section-gallery-hover-fade-effect .section-gallery-hover-fade-effect-content .gallery .item-gallery .item-gallery-button .button-text {
  display: none;
}

@media screen and (min-width: 1024px) {
  .section-gallery-hover-fade-effect .section-gallery-hover-fade-effect-content .gallery .item-gallery .item-gallery-button .button-text {
    color: #151515;
    font-family: "Avenir";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    height: 40px;
    display: flex;
    align-items: center;
    position: absolute;
    z-index: 1;
    white-space: nowrap;
    padding-left: 0;
    padding-right: 0;
    opacity: 0;
    transition: padding-left 0.6s ease, padding-right 0.6s ease;
  }
}

.section-gallery-hover-fade-effect .section-gallery-hover-fade-effect-content .gallery .item-gallery .item-gallery-button svg.button-icon {
  color: #151515;
  height: 40px;
  position: relative;
  z-index: 2;
}

.section-gallery-hover-fade-effect .section-gallery-hover-fade-effect-content .gallery .item-gallery .item-gallery-button svg.button-icon rect {
  stroke: #151515;
}

.home-section-hero .home-section-hero-content {
  position: relative;
}

.home-section-hero .home-section-hero-content .hero-title {
  background-color: #151515;
  color: #FBFBFB;
  text-align: center;
  font-family: "Avenir";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 2.1px;
  text-transform: uppercase;
  padding: 15px;
}

.home-section-hero .home-section-hero-content .home-hero-slick-slider {
  width: 100%;
  height: 60vh;
}

@media screen and (width >= 1440px) {
  .home-section-hero .home-section-hero-content .home-hero-slick-slider {
    height: 570px;
  }
}

.home-section-hero .home-section-hero-content .home-hero-slick-slider .slides {
  position: relative;
}

.home-section-hero .home-section-hero-content .home-hero-slick-slider .slides .plyr {
  position: relative;
}

.home-section-hero .home-section-hero-content .home-hero-slick-slider .slides .hero-video {
  width: 100%;
  height: 60vh;
  -o-object-fit: cover;
     object-fit: cover;
  filter: opacity(0.8);
}

@media screen and (width >= 1440px) {
  .home-section-hero .home-section-hero-content .home-hero-slick-slider .slides .hero-video {
    height: 570px;
  }
}

.home-section-hero .home-section-hero-content .home-hero-slick-slider .slides .hero-video .plyr__controls {
  opacity: 0;
}

.home-section-hero .home-section-hero-content .home-hero-slick-slider .slides .hero-section-image-container {
  position: relative;
}

.home-section-hero .home-section-hero-content .home-hero-slick-slider .slides .hero-section-image-container .image {
  width: 100%;
  height: 60vh;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (width >= 1440px) {
  .home-section-hero .home-section-hero-content .home-hero-slick-slider .slides .hero-section-image-container .image {
    height: 570px;
  }
}

.home-section-hero .home-section-hero-content .home-hero-slick-slider .slides .content {
  position: absolute;
  bottom: 0;
  z-index: 100;
  width: 100%;
  max-width: 700px;
}

@media screen and (min-width: 1440px) {
  .home-section-hero .home-section-hero-content .home-hero-slick-slider .slides .content {
    max-width: 800px;
  }
}

.home-section-hero .home-section-hero-content .home-hero-slick-slider .slides .content .tags-container {
  display: flex;
  flex-wrap: wrap;
}

.home-section-hero .home-section-hero-content .home-hero-slick-slider .slides .content .tags-container .tag {
  padding: 10px;
  display: block;
  font-family: "Avenir";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.68px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.home-section-hero .home-section-hero-content .home-hero-slick-slider .slides .content .title a {
  display: block;
  color: #FBFBFB;
  text-shadow: 0px 4px 7px rgba(0, 0, 0, 0.35);
  font-family: "Avenir";
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 28px;
  font-size: 30px;
}

@media screen and (min-width: 1440px) {
  .home-section-hero .home-section-hero-content .home-hero-slick-slider .slides .content .title a {
    margin-bottom: 36px;
    font-size: 40px;
  }
}

.home-section-hero .home-section-hero-content .home-hero-slick-slider .slides .content .title a h1 {
  font-size: 32px;
}

@media screen and (width >= 1440px) {
  .home-section-hero .home-section-hero-content .home-hero-slick-slider .slides .content .title a h1 {
    font-size: 42px;
  }
}

.home-section-hero .home-section-hero-content .home-hero-slick-slider .slides .content .title a h2 {
  font-size: 30px;
}

@media screen and (width >= 1440px) {
  .home-section-hero .home-section-hero-content .home-hero-slick-slider .slides .content .title a h2 {
    font-size: 40px;
  }
}

.home-section-hero .home-section-hero-content .home-hero-slick-slider .slides .content .title a h3 {
  font-size: 26px;
}

@media screen and (width >= 1440px) {
  .home-section-hero .home-section-hero-content .home-hero-slick-slider .slides .content .title a h3 {
    font-size: 36px;
  }
}

.home-section-hero .home-section-hero-content .home-hero-slick-slider .slides .content .title a h4,
.home-section-hero .home-section-hero-content .home-hero-slick-slider .slides .content .title a p {
  font-size: 25px;
}

@media screen and (width >= 1440px) {
  .home-section-hero .home-section-hero-content .home-hero-slick-slider .slides .content .title a h4,
  .home-section-hero .home-section-hero-content .home-hero-slick-slider .slides .content .title a p {
    font-size: 35px;
  }
}

.home-section-hero .home-section-hero-content .home-hero-slick-slider .slides .content .title a h5 {
  font-size: 24px;
}

@media screen and (width >= 1440px) {
  .home-section-hero .home-section-hero-content .home-hero-slick-slider .slides .content .title a h5 {
    font-size: 34px;
  }
}

.home-section-hero .home-section-hero-content .home-hero-slick-slider .slides .content .title a h6 {
  font-size: 22px;
}

@media screen and (width >= 1440px) {
  .home-section-hero .home-section-hero-content .home-hero-slick-slider .slides .content .title a h6 {
    font-size: 32px;
  }
}

.home-section-hero .home-section-hero-content .home-hero-slick-slider .slides .content .title a strong {
  font-weight: 700;
}

.home-section-hero .home-section-hero-content .home-hero-slick-slider .slides .content .title a blockquote p {
  color: #626262;
  font-family: "Avenir";
  font-size: 22px;
  font-style: italic;
  font-weight: 500;
  line-height: 35px;
}

@media screen and (min-width: 1024px) {
  .home-section-hero .home-section-hero-content .home-hero-slick-slider .slides .content .title a blockquote p {
    font-size: 25px;
    font-weight: 500;
    line-height: 40px;
  }
}

@media screen and (min-width: 1440px) {
  .home-section-hero .home-section-hero-content .home-hero-slick-slider .slides .content .title a blockquote p {
    max-width: 670px;
  }
}

.home-section-hero .home-section-hero-content .home-hero-slick-slider .slides .content .title a blockquote p::before {
  content: "\201D";
}

.home-section-hero .home-section-hero-content .home-hero-slick-slider .slides .content .title a blockquote p::after {
  content: "\201C";
}

.home-section-hero .home-section-hero-content .home-hero-slick-slider .slides .content .title a blockquote p::after,
.home-section-hero .home-section-hero-content .home-hero-slick-slider .slides .content .title a blockquote p::before {
  color: #626262;
  font-family: "Avenir";
  font-size: 22px;
  font-style: italic;
  font-weight: 500;
  line-height: 35px;
}

@media screen and (min-width: 1024px) {
  .home-section-hero .home-section-hero-content .home-hero-slick-slider .slides .content .title a blockquote p::after,
  .home-section-hero .home-section-hero-content .home-hero-slick-slider .slides .content .title a blockquote p::before {
    font-size: 25px;
    font-weight: 500;
    line-height: 40px;
  }
}

.home-section-hero .home-section-hero-content .home-hero-slick-slider .slides .content .title a ul {
  list-style: disc;
  padding-left: 20px;
}

.home-section-hero .home-section-hero-content .home-hero-slick-slider .slides .content .title a ul li {
  color: #444;
  font-family: "Avenir";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

@media screen and (min-width: 1440px) {
  .home-section-hero .home-section-hero-content .home-hero-slick-slider .slides .content .title a ul li {
    max-width: 670px;
  }
}

.home-section-hero .home-section-hero-content .home-hero-slick-slider .slides .content .title a ol {
  list-style: decimal;
  padding-left: 20px;
}

.home-section-hero .home-section-hero-content .home-hero-slick-slider .slides .content .title a ol li {
  color: #444;
  font-family: "Avenir";
  font-size: 16px;
  font-style: normal;
  font-weight: 350;
  line-height: 26px;
}

@media screen and (min-width: 1440px) {
  .home-section-hero .home-section-hero-content .home-hero-slick-slider .slides .content .title a ol li {
    max-width: 670px;
  }
}

.home-section-hero .home-section-hero-content .home-hero-slick-slider .slides .content .title a pre {
  color: #444;
  font-family: "Avenir";
  font-size: 16px;
  font-style: normal;
  font-weight: 350;
  line-height: 26px;
}

.home-section-hero .home-section-hero-content .home-hero-slick-slider .slides .content .description-container {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(15px);
  padding-top: 10px;
  padding-bottom: 15px;
  padding-left: 30px;
  padding-right: 45px;
  margin-left: -30px;
  margin-right: -30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media screen and (min-width: 1024px) {
  .home-section-hero .home-section-hero-content .home-hero-slick-slider .slides .content .description-container {
    flex-direction: row;
    justify-content: space-between;
    gap: 0px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

@media screen and (min-width: 1440px) {
  .home-section-hero .home-section-hero-content .home-hero-slick-slider .slides .content .description-container {
    margin-left: -135px;
    margin-right: -135px;
    padding-left: 135px;
  }
}

.home-section-hero .home-section-hero-content .home-hero-slick-slider .slides .content .description-container .description a {
  display: block;
  color: #FBFBFB;
  font-family: "Avenir";
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: 28px;
  max-width: 390px;
}

@media screen and (min-width: 1440px) {
  .home-section-hero .home-section-hero-content .home-hero-slick-slider .slides .content .description-container .description a {
    font-size: 20px;
  }
}

.home-section-hero .home-section-hero-content .home-hero-slick-slider .slides .content .button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  padding-bottom: 8px;
  background-color: #F8E634;
  color: #000;
  border: 1px solid #F8E634;
  transition: all 0.3s ease;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  color: #151515;
  font-family: "Avenir";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  height: -moz-fit-content;
  height: fit-content;
  margin-top: auto;
  margin-bottom: auto;
}

@media screen and (min-width: 1024px) {
  .home-section-hero .home-section-hero-content .home-hero-slick-slider .slides .content .button {
    height: 48px;
  }

  .home-section-hero .home-section-hero-content .home-hero-slick-slider .slides .content .button:hover {
    color: #F8E634;
    background-color: rgba(248, 229, 52, 0);
  }
}

@media screen and (width >= 1024px) {
  .home-section-hero .home-section-hero-content .home-hero-slick-slider .slides .content:hover .button {
    color: #F8E634;
    background-color: rgba(248, 229, 52, 0);
  }
}

.home-section-hero .home-section-hero-content .home-hero-slick-slider .slides .hero-video-button-play,
.home-section-hero .home-section-hero-content .home-hero-slick-slider .slides .hero-video-button-pause {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 156px;
  bottom: 48px;
  z-index: 1;
  border: 1px solid #FBFBFB;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(3px);
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
}

@media screen and (min-width: 1024px) {
  .home-section-hero .home-section-hero-content .home-hero-slick-slider .slides .hero-video-button-play,
  .home-section-hero .home-section-hero-content .home-hero-slick-slider .slides .hero-video-button-pause {
    display: flex;
  }
}

.home-section-hero .home-section-hero-content .home-hero-slick-slider .slides .hero-video-button-play.show,
.home-section-hero .home-section-hero-content .home-hero-slick-slider .slides .hero-video-button-pause.show {
  opacity: 1;
  pointer-events: all;
}

.home-section-hero .home-section-hero-content .home-hero-slick-slider button.plyr__control {
  display: none !important;
}

.home-section-hero .home-section-hero-content .buttons-container {
  display: none;
  position: absolute;
  right: 40px;
  bottom: 34px;
  gap: 10px;
}

@media screen and (min-width: 1024px) {
  .home-section-hero .home-section-hero-content .buttons-container {
    display: flex;
  }
}

.home-section-hero .home-section-hero-content .buttons-container .home-hero-slick-slider-arrow-left,
.home-section-hero .home-section-hero-content .buttons-container .home-hero-slick-slider-arrow-right {
  width: 48px;
  height: 48px;
  border: 1px solid #FBFBFB;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(3px);
  color: #FBFBFB;
  background: #151515;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

@media screen and (min-width: 1024px) {
  .home-section-hero .home-section-hero-content .buttons-container .home-hero-slick-slider-arrow-left:hover,
  .home-section-hero .home-section-hero-content .buttons-container .home-hero-slick-slider-arrow-right:hover {
    border: 1px solid #F8E634;
    background: #F8E634;
    color: #151515;
    backdrop-filter: blur(2px);
  }

  .home-section-hero .home-section-hero-content .buttons-container .home-hero-slick-slider-arrow-left:disabled,
  .home-section-hero .home-section-hero-content .buttons-container .home-hero-slick-slider-arrow-right:disabled {
    border: 1px solid #FBFBFB;
    background: rgba(21, 21, 21, 0);
    color: #FBFBFB;
  }
}

.home-hero-modern {
  position: relative;
  width: 100%;
  height: 615px;
  overflow: visible;
}

@media screen and (max-width: 1023px) {
  .home-hero-modern {
    height: 500px;
    margin-bottom: 70px;
    padding-top: 10px;
  }
}

@media screen and (max-width: 767px) {
  .home-hero-modern {
    height: 400px;
    margin-bottom: 60px;
    padding-top: 10px;
  }
}

.home-hero-modern .home-hero-modern__wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .home-hero-modern .home-hero-modern__wrapper {
    height: 100%;
  }
}

.home-hero-modern .home-hero-modern__slider {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.home-hero-modern .home-hero-modern__slider .slick-list,
.home-hero-modern .home-hero-modern__slider .slick-track {
  height: 100%;
}

.home-hero-modern .home-hero-modern__slider .slick-slide {
  height: 615px;
}

@media screen and (max-width: 1023px) {
  .home-hero-modern .home-hero-modern__slider .slick-slide {
    height: 500px;
  }
}

@media screen and (max-width: 767px) {
  .home-hero-modern .home-hero-modern__slider .slick-slide {
    height: 400px;
  }
}

.home-hero-modern .home-hero-modern__slider .slick-slide > div {
  height: 100%;
}

.home-hero-modern .home-hero-modern__slide {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex !important;
  align-items: flex-end;
  padding-top: 0;
}

@media screen and (max-width: 1023px) {
  .home-hero-modern .home-hero-modern__slide {
    padding-top: 0;
  }
}

.home-hero-modern .home-hero-modern__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.home-hero-modern .home-hero-modern__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}

.home-hero-modern .home-hero-modern__media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.home-hero-modern .home-hero-modern__media iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.home-hero-modern .home-hero-modern__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

.home-hero-modern .home-hero-modern__video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.home-hero-modern .home-hero-modern__video .plyr__controls {
  opacity: 0;
}

.home-hero-modern .home-hero-modern__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(21, 21, 21, 0.4) 0%, rgba(21, 21, 21, 0.6) 50%, rgba(21, 21, 21, 0.85) 100%);
  z-index: 2;
}

.home-hero-modern .home-hero-modern__content {
  position: relative;
  z-index: 10;
  padding-bottom: 60px;
  width: 100%;
}

@media screen and (max-width: 1023px) {
  .home-hero-modern .home-hero-modern__content {
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 767px) {
  .home-hero-modern .home-hero-modern__content {
    padding-bottom: 40px;
  }
}

.home-hero-modern .home-hero-modern__content-wrapper {
  max-width: 800px;
}

@media screen and (max-width: 1200px) {
  .home-hero-modern .home-hero-modern__content-wrapper {
    max-width: 700px;
  }
}

@media screen and (max-width: 767px) {
  .home-hero-modern .home-hero-modern__content-wrapper {
    max-width: 100%;
  }
}

.home-hero-modern .home-hero-modern__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.home-hero-modern .home-hero-modern__tag {
  padding: 0;
  background: transparent !important;
  color: #FBFBFB !important;
  font-family: "Avenir", sans-serif;
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  line-height: 12px;
  letter-spacing: -0.08px;
  text-transform: uppercase;
  border-radius: 0;
}

@media screen and (max-width: 767px) {
  .home-hero-modern .home-hero-modern__tag {
    font-size: 12px;
  }
}

.home-hero-modern .home-hero-modern__title {
  margin-bottom: 28px;
}

@media screen and (max-width: 1023px) {
  .home-hero-modern .home-hero-modern__title {
    margin-bottom: 20px;
  }
}

.home-hero-modern .home-hero-modern__title {
  color: #FBFBFB !important;
  font-family: "Avenir", sans-serif;
  font-size: 40px;
  font-weight: 800;
  font-style: normal;
  line-height: 27px;
  letter-spacing: -0.08px;
  text-shadow: 0px 4px 7px rgba(0, 0, 0, 0.35);
}

@media screen and (max-width: 1200px) {
  .home-hero-modern .home-hero-modern__title {
    font-size: 36px;
  }
}

@media screen and (max-width: 767px) {
  .home-hero-modern .home-hero-modern__title {
    font-size: 28px;
    line-height: 1.2;
  }
}

.home-hero-modern .home-hero-modern__title p:not(:last-child) {
  margin-bottom: 16px;
}

.home-hero-modern .home-hero-modern__title a {
  display: block;
  color: #FBFBFB !important;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.home-hero-modern .home-hero-modern__title a:hover {
  opacity: 0.85;
  transform: translateX(5px);
}

.home-hero-modern .home-hero-modern__title a h1,
.home-hero-modern .home-hero-modern__title a h2,
.home-hero-modern .home-hero-modern__title a h3 {
  color: #FBFBFB !important;
  font-family: "Avenir", sans-serif;
  font-weight: 800;
  margin: 0;
}

.home-hero-modern .home-hero-modern__title a h1 {
  font-size: 48px;
}

@media screen and (max-width: 1200px) {
  .home-hero-modern .home-hero-modern__title a h1 {
    font-size: 40px;
  }
}

@media screen and (max-width: 767px) {
  .home-hero-modern .home-hero-modern__title a h1 {
    font-size: 32px;
  }
}

.home-hero-modern .home-hero-modern__title a h2 {
  font-size: 40px;
}

@media screen and (max-width: 1200px) {
  .home-hero-modern .home-hero-modern__title a h2 {
    font-size: 36px;
  }
}

@media screen and (max-width: 767px) {
  .home-hero-modern .home-hero-modern__title a h2 {
    font-size: 28px;
  }
}

.home-hero-modern .home-hero-modern__title a h3 {
  font-size: 36px;
  color: #FBFBFB !important;
}

@media screen and (max-width: 1200px) {
  .home-hero-modern .home-hero-modern__title a h3 {
    font-size: 32px;
  }
}

@media screen and (max-width: 767px) {
  .home-hero-modern .home-hero-modern__title a h3 {
    font-size: 24px;
  }
}

.home-hero-modern .home-hero-modern__title a h4,
.home-hero-modern .home-hero-modern__title a p {
  font-size: 35px;
  color: #FBFBFB !important;
}

@media screen and (max-width: 1200px) {
  .home-hero-modern .home-hero-modern__title a h4,
  .home-hero-modern .home-hero-modern__title a p {
    font-size: 30px;
  }
}

@media screen and (max-width: 767px) {
  .home-hero-modern .home-hero-modern__title a h4,
  .home-hero-modern .home-hero-modern__title a p {
    font-size: 22px;
  }
}

.home-hero-modern .home-hero-modern__title a strong {
  font-weight: 800;
  color: #FBFBFB !important;
}

.home-hero-modern .home-hero-modern__description {
  margin-bottom: 24px;
}

.home-hero-modern .home-hero-modern__description p {
  color: #FBFBFB !important;
  font-family: "Avenir", sans-serif;
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  line-height: 27px;
  letter-spacing: -0.08px;
  margin: 0;
}

@media screen and (max-width: 767px) {
  .home-hero-modern .home-hero-modern__description p {
    font-size: 16px;
    line-height: 1.5;
  }
}

.home-hero-modern .home-hero-modern__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #F8E634;
  color: #151515;
  font-family: "Avenir", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  padding: 12px 32px;
  border-radius: 0;
  border: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media screen and (max-width: 767px) {
  .home-hero-modern .home-hero-modern__button {
    padding: 10px 24px;
    font-size: 13px;
  }
}

.home-hero-modern .home-hero-modern__button svg {
  transition: transform 0.3s ease;
}

.home-hero-modern .home-hero-modern__button:hover {
  background: #151515;
  color: #F8E634;
}

.home-hero-modern .home-hero-modern__button:hover svg {
  transform: translateX(5px);
}

.home-hero-modern .home-hero-modern__button:hover svg path {
  fill: #F8E634;
}

.home-hero-modern .home-hero-modern__dots {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex !important;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
  z-index: 20;
}

@media screen and (max-width: 767px) {
  .home-hero-modern .home-hero-modern__dots {
    bottom: -50px;
    gap: 10px;
  }
}

.home-hero-modern .home-hero-modern__dots li {
  margin: 0;
  padding: 0;
}

.home-hero-modern .home-hero-modern__dots li button {
  width: 12px;
  height: 12px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(21, 21, 21, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0;
  line-height: 0;
}

.home-hero-modern .home-hero-modern__dots li button:hover {
  background: rgba(21, 21, 21, 0.5);
  transform: scale(1.2);
}

.home-hero-modern .home-hero-modern__dots li.slick-active button {
  background: #F8E634;
  width: 32px;
  border-radius: 6px;
}

.home-hero-modern .home-hero-modern__video-play,
.home-hero-modern .home-hero-modern__video-pause {
  position: absolute;
  bottom: 120px;
  right: 40px;
  z-index: 15;
  width: 50px;
  height: 50px;
  background: rgba(251, 251, 251, 0.2);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(251, 251, 251, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

@media screen and (max-width: 1023px) {
  .home-hero-modern .home-hero-modern__video-play,
  .home-hero-modern .home-hero-modern__video-pause {
    bottom: 90px;
    right: 25px;
  }
}

@media screen and (max-width: 767px) {
  .home-hero-modern .home-hero-modern__video-play,
  .home-hero-modern .home-hero-modern__video-pause {
    width: 40px;
    height: 40px;
    bottom: 80px;
    right: 20px;
  }

  .home-hero-modern .home-hero-modern__video-play svg,
  .home-hero-modern .home-hero-modern__video-pause svg {
    width: 8px;
    height: auto;
  }
}

.home-hero-modern .home-hero-modern__video-play:hover,
.home-hero-modern .home-hero-modern__video-pause:hover {
  background: rgba(248, 230, 52, 0.9);
  transform: scale(1.1);
}

.home-hero-modern .home-hero-modern__video-play:hover svg path,
.home-hero-modern .home-hero-modern__video-pause:hover svg path {
  fill: #151515;
}

.home-hero-modern .home-hero-modern__video-pause {
  display: none;
}

.home-hero-modern .playing .home-hero-modern__video-play {
  display: none;
}

.home-hero-modern .playing .home-hero-modern__video-pause {
  display: flex;
}

.home-section-schedule {
  background: #fff;
  padding-top: 10px;
  padding-bottom: 10px;
}

@media screen and (min-width: 1024px) {
  .home-section-schedule {
    padding-top: 20px;
    padding-bottom: 10px;
  }
}

.home-section-featured-events {
  background: white;
  padding-top: 30px;
  padding-bottom: 30px;
}

@media screen and (min-width: 1024px) {
  .home-section-featured-events {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.home-section-featured-events .home-section-featured-events-content {
  position: relative;
}

.home-section-featured-events .home-section-featured-events-content .home-section-featured-events-title {
  color: #151515;
  font-family: "Avenir";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 35px;
  margin-bottom: 24px;
}

.home-section-featured-events .home-section-featured-events-content .home-section-featured-events-title strong {
  font-weight: 800;
}

@media screen and (min-width: 1024px) {
  .home-section-featured-events .home-section-featured-events-content .home-section-featured-events-title {
    font-size: 30px;
    line-height: 120%;
  }
}

.home-section-featured-events .home-section-featured-events-content .home-featured-events-slick-slider .featured-event {
  padding-left: 7.5px;
  padding-right: 7.5px;
}

@media screen and (width >= 1440px) {
  .home-section-featured-events .home-section-featured-events-content .home-featured-events-slick-slider .featured-event {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.home-section-featured-events .home-section-featured-events-content .home-featured-events-slick-slider .featured-event .image-container {
  display: block;
  position: relative;
  height: 300px;
}

@media screen and (min-width: 1024px) {
  .home-section-featured-events .home-section-featured-events-content .home-featured-events-slick-slider .featured-event .image-container {
    height: 440px;
  }
}

.home-section-featured-events .home-section-featured-events-content .home-featured-events-slick-slider .featured-event .image-container .image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 1024px) {
  .home-section-featured-events .home-section-featured-events-content .home-featured-events-slick-slider .featured-event .image-container .image.mobile {
    display: none;
  }
}

.home-section-featured-events .home-section-featured-events-content .home-featured-events-slick-slider .featured-event .image-container .image.desktop {
  display: none;
}

@media screen and (min-width: 1024px) {
  .home-section-featured-events .home-section-featured-events-content .home-featured-events-slick-slider .featured-event .image-container .image.desktop {
    display: block;
  }
}

.home-section-featured-events .home-section-featured-events-content .home-featured-events-slick-slider .featured-event .image-container .tag-free {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background-color: #F8E634;
  padding: 8px 9px;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  top: 0;
  right: 0;
  color: #151515;
  font-family: "Avenir";
  font-size: 16px;
  font-style: normal;
  font-weight: 350;
  line-height: normal;
}

@media screen and (min-width: 1024px) {
  .home-section-featured-events .home-section-featured-events-content .home-featured-events-slick-slider .featured-event .image-container .tag-free {
    font-size: 22px;
  }
}

.home-section-featured-events .home-section-featured-events-content .home-featured-events-slick-slider .featured-event .description-container {
  background: #FBFBFB;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
  width: 90%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  margin-top: -90px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 1024px) {
  .home-section-featured-events .home-section-featured-events-content .home-featured-events-slick-slider .featured-event .description-container {
    margin-top: -70px;
    gap: 20px;
  }
}

.home-section-featured-events .home-section-featured-events-content .home-featured-events-slick-slider .featured-event .description-container .tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.home-section-featured-events .home-section-featured-events-content .home-featured-events-slick-slider .featured-event .description-container .tags-container .tag {
  font-family: "Avenir";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.68px;
  text-transform: uppercase;
  padding: 10px;
  width: -moz-fit-content;
  width: fit-content;
}

.home-section-featured-events .home-section-featured-events-content .home-featured-events-slick-slider .featured-event .description-container .featured-event-title a {
  display: block;
  color: #444;
  font-family: "Avenir";
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 24px;
}

@media screen and (min-width: 1024px) {
  .home-section-featured-events .home-section-featured-events-content .home-featured-events-slick-slider .featured-event .description-container .featured-event-title a {
    font-size: 28px;
  }
}

.home-section-featured-events .home-section-featured-events-content .home-featured-events-slick-slider .featured-event .description-container .date-hour-address-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media screen and (min-width: 1024px) {
  .home-section-featured-events .home-section-featured-events-content .home-featured-events-slick-slider .featured-event .description-container .date-hour-address-container {
    flex-direction: row;
  }
}

.home-section-featured-events .home-section-featured-events-content .home-featured-events-slick-slider .featured-event .description-container .date-hour-container {
  display: flex;
  gap: 5px;
  color: #444;
  font-family: "Avenir";
  font-size: 14px;
  font-style: normal;
  font-weight: 350;
  line-height: normal;
}

.home-section-featured-events .home-section-featured-events-content .home-featured-events-slick-slider .featured-event .description-container .date,
.home-section-featured-events .home-section-featured-events-content .home-featured-events-slick-slider .featured-event .description-container .hour,
.home-section-featured-events .home-section-featured-events-content .home-featured-events-slick-slider .featured-event .description-container .address {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #444;
  font-family: "Avenir";
  font-size: 14px;
  font-style: normal;
  font-weight: 350;
  line-height: normal;
}

@media screen and (min-width: 1024px) {
  .home-section-featured-events .home-section-featured-events-content .home-featured-events-slick-slider .featured-event .description-container .date,
  .home-section-featured-events .home-section-featured-events-content .home-featured-events-slick-slider .featured-event .description-container .hour,
  .home-section-featured-events .home-section-featured-events-content .home-featured-events-slick-slider .featured-event .description-container .address {
    font-size: 21px;
  }
}

@media screen and (min-width: 1024px) {
  .home-section-featured-events .home-section-featured-events-content .home-featured-events-slick-slider .featured-event .description-container .icon-date-hour,
  .home-section-featured-events .home-section-featured-events-content .home-featured-events-slick-slider .featured-event .description-container .icon-address {
    width: 27.273px;
    height: 27.273px;
  }
}

.home-section-featured-events .home-section-featured-events-content .home-featured-events-slick-slider .featured-event .description-container .button {
  background-color: #151515;
  color: #FBFBFB;
  font-family: "Avenir";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 20px;
  padding-top: 17px;
  padding-bottom: 15px;
  border: 1px solid #151515;
  transition: all 0.3s ease;
}

@media screen and (min-width: 1024px) {
  .home-section-featured-events .home-section-featured-events-content .home-featured-events-slick-slider .featured-event .description-container .button:hover {
    background-color: rgba(21, 21, 21, 0);
    color: #151515;
  }
}

.home-section-featured-events .home-section-featured-events-content .home-featured-events-slick-slider .slick-slide {
  transition: all 0.5s ease;
  transform: translateY(20%);
  opacity: 0.2;
}

@media screen and (min-width: 1024px) {
  .home-section-featured-events .home-section-featured-events-content .home-featured-events-slick-slider .slick-slide {
    transform: translateY(39%);
  }
}

@media screen and (min-width: 1440px) {
  .home-section-featured-events .home-section-featured-events-content .home-featured-events-slick-slider .slick-slide {
    transform: translateY(40%);
  }
}

.home-section-featured-events .home-section-featured-events-content .home-featured-events-slick-slider .slick-current {
  transform: translateY(0px);
  opacity: 1;
}

.home-section-featured-events .home-section-featured-events-content .home-featured-events-slick-slider-arrow-left,
.home-section-featured-events .home-section-featured-events-content .home-featured-events-slick-slider-arrow-right {
  position: absolute;
  bottom: 235px;
  z-index: 1;
  backdrop-filter: blur(2px);
  background: #151515;
  color: #FBFBFB;
  width: 48px;
  height: 48px;
  display: none;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.home-section-featured-events .home-section-featured-events-content .home-featured-events-slick-slider-arrow-left:hover,
.home-section-featured-events .home-section-featured-events-content .home-featured-events-slick-slider-arrow-right:hover {
  background: #F8E634;
  color: #151515;
}

@media screen and (min-width: 1024px) {
  .home-section-featured-events .home-section-featured-events-content .home-featured-events-slick-slider-arrow-left,
  .home-section-featured-events .home-section-featured-events-content .home-featured-events-slick-slider-arrow-right {
    display: flex;
  }
}

.home-section-featured-events .home-section-featured-events-content .home-featured-events-slick-slider-arrow-left {
  left: 40px;
}

.home-section-featured-events .home-section-featured-events-content .home-featured-events-slick-slider-arrow-right {
  right: 40px;
}

.home-section-gallery {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #FBFBFB;
}

@media screen and (min-width: 1024px) {
  .home-section-gallery {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.home-section-gallery .home-section-gallery-content .home-section-gallery-pretitle {
  color: var(--neutrals-grey-grey-400, #444);
  font-family: "Avenir";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.44px;
  text-transform: uppercase;
}

.home-section-gallery .home-section-gallery-content .home-section-gallery-title {
  color: var(--cclb-black, #151515);
  font-family: "Avenir";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 35px;
  padding-right: 20px;
  margin-bottom: 24px;
}

.home-section-gallery .home-section-gallery-content .home-section-gallery-title strong {
  font-weight: 800;
}

.home-section-o-plus-d {
  background: #EFEF3F;
  padding-top: 30px;
  padding-bottom: 30px;
}

@media screen and (min-width: 1024px) {
  .home-section-o-plus-d {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.home-section-news {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #fff;
}

@media screen and (min-width: 1024px) {
  .home-section-news {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.home-section-news .home-section-news-header {
  margin-bottom: 20px;
}

@media screen and (min-width: 1024px) {
  .home-section-news .home-section-news-header {
    margin-bottom: 20px;
  }
}

.home-section-news .home-section-news-header .left-side .home-section-news-pretitle {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #444;
  font-family: "Avenir", sans-serif;
  font-size: 16px;
  font-weight: 600;
  font-style: normal;
  line-height: 22px;
  letter-spacing: -0.08px;
  margin-bottom: 8px;
}

.home-section-news .home-section-news-header .left-side .home-section-news-pretitle .pretitle-icon {
  height: 40px;
  width: auto;
  display: block;
}

.home-section-news .home-section-news-header .left-side .home-section-news-title {
  color: #151515;
  font-family: "Avenir", sans-serif;
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  line-height: 22px;
  letter-spacing: -0.08px;
  margin: 0;
}

.home-section-news .home-section-news-content .home-news-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.home-section-news .home-section-news-content .home-news-list .card-news {
  width: 100%;
}

.home-section-news .home-section-news-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

@media screen and (min-width: 1024px) {
  .home-section-news .home-section-news-footer {
    margin-top: 30px;
  }
}

.home-section-news .home-section-news-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  color: #151515;
  font-family: "Avenir", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 2px solid #151515;
  border-radius: 4px;
  background: transparent;
  transition: all 0.3s ease;
  text-decoration: none;
}

.home-section-news .home-section-news-button:hover {
  background-color: #151515;
  color: #fff;
}

.home-section-news .home-section-news-button:hover svg path {
  fill: #fff;
}

.home-section-social-networks {
  padding-top: 30px;
  margin-bottom: 30px;
}

@media screen and (min-width: 1024px) {
  .home-section-social-networks {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.home-section-social-networks .home-section-social-networks-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
}

@media screen and (min-width: 1024px) {
  .home-section-social-networks .home-section-social-networks-content {
    flex-direction: row;
    max-width: -moz-fit-content;
    max-width: fit-content;
    padding-left: calc((100vw - 984px) / 2);
    padding-right: 0;
  }
}

@media screen and (min-width: 1440px) {
  .home-section-social-networks .home-section-social-networks-content {
    padding-left: calc((100vw - 1290px + 130px) / 2);
  }
}

@media screen and (min-width: 1024px) {
  .home-section-social-networks .home-section-social-networks-content .social-networks {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 30%;
  }
}

@media screen and (min-width: 1440px) {
  .home-section-social-networks .home-section-social-networks-content .social-networks {
    width: 20%;
  }
}

.home-section-social-networks .home-section-social-networks-content .social-networks .social-networks-pretitle {
  display: block;
  color: #444;
  font-family: "Avenir";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.44px;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.home-section-social-networks .home-section-social-networks-content .social-networks .social-networks-title {
  color: #151515;
  font-family: "Avenir";
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  width: 260px;
  margin-bottom: 18px;
}

.home-section-social-networks .home-section-social-networks-content .social-networks .social-networks-title strong {
  font-weight: 800;
  letter-spacing: 0.6px;
}

.home-section-social-networks .home-section-social-networks-content .social-networks .social-network-list {
  display: flex;
}

.home-section-social-networks .home-section-social-networks-content .social-networks .social-network-list .item {
  color: #151515;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

@media screen and (min-width: 1024px) {
  .home-section-social-networks .home-section-social-networks-content .social-networks .social-network-list .item:hover {
    background-color: #F8E634;
  }
}

.home-section-social-networks .home-section-social-networks-content .home-social-networks-slick-slider {
  margin-right: -20px;
}

.home-section-social-networks .home-section-social-networks-content .home-social-networks-slick-slider:last-child {
  margin-right: 0;
}

@media screen and (min-width: 1024px) {
  .home-section-social-networks .home-section-social-networks-content .home-social-networks-slick-slider {
    width: 70%;
  }
}

@media screen and (min-width: 1440px) {
  .home-section-social-networks .home-section-social-networks-content .home-social-networks-slick-slider {
    width: 80%;
  }
}

.home-section-social-networks .home-section-social-networks-content .home-social-networks-slick-slider .slick-list .slick-track {
  display: flex;
  align-items: center;
}

.home-section-social-networks .home-section-social-networks-content .home-social-networks-slick-slider .slick-list .slick-track .slide {
  padding-left: 15px;
  padding-right: 15px;
}

.home-section-social-networks .home-section-social-networks-content .home-social-networks-slick-slider .slick-list .slick-track .slide .js-plyr {
  max-width: calc(100vw - 70px);
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 1024px) {
  .home-section-social-networks .home-section-social-networks-content .home-social-networks-slick-slider .slick-list .slick-track .slide .js-plyr {
    height: auto;
    max-width: 640px;
  }
}

@media screen and (min-width: 1440px) {
  .home-section-social-networks .home-section-social-networks-content .home-social-networks-slick-slider .slick-list .slick-track .slide .js-plyr {
    width: 100%;
  }
}

.home-section-social-networks .home-section-social-networks-content .home-social-networks-slick-slider .slick-list .slick-track .slide .image {
  max-width: 245px;
}

@media screen and (width >= 1024) {
  .home-section-social-networks .home-section-social-networks-content .home-social-networks-slick-slider .slick-list .slick-track .slide .image {
    max-width: 350px;
  }
}

.home-section-social-networks .home-section-social-networks-content .home-social-networks-arrow-left-container {
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, #FFF 2.82%, rgba(255, 255, 255, 0) 100%);
  width: 37px;
  height: calc(100% - 194px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

@media screen and (min-width: 1024px) {
  .home-section-social-networks .home-section-social-networks-content .home-social-networks-arrow-left-container {
    top: 0;
    left: calc((100vw - 984px + 490px) / 2);
    width: 69px;
    background: rgba(255, 255, 255, 0);
    height: 100%;
  }
}

@media screen and (min-width: 1440px) {
  .home-section-social-networks .home-section-social-networks-content .home-social-networks-arrow-left-container {
    left: calc((100vw - 1290px + 580px) / 2);
  }
}

.home-section-social-networks .home-section-social-networks-content .home-social-networks-arrow-left-container[aria-disabled=true] {
  opacity: 0 !important;
  pointer-events: none;
}

.home-section-social-networks .home-section-social-networks-content .home-social-networks-arrow-left-container[aria-disabled=true] .home-social-networks-slick-slider-arrow-left {
  pointer-events: none;
}

.home-section-social-networks .home-section-social-networks-content .home-social-networks-arrow-right-container {
  position: absolute;
  bottom: 0;
  right: 0;
  background: linear-gradient(270deg, #FFF 2.82%, rgba(255, 255, 255, 0) 100%);
  width: 90px;
  height: calc(100% - 194px);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

@media screen and (min-width: 1024px) {
  .home-section-social-networks .home-section-social-networks-content .home-social-networks-arrow-right-container {
    top: 0;
    width: 180px;
    height: 100%;
    pointer-events: all;
  }
}

.home-section-social-networks .home-section-social-networks-content .home-social-networks-arrow-right-container[aria-disabled=true] {
  opacity: 0 !important;
  pointer-events: none;
}

.home-section-social-networks .home-section-social-networks-content .home-social-networks-arrow-right-container[aria-disabled=true] .home-social-networks-slick-slider-arrow-right {
  pointer-events: none;
}

.home-section-social-networks .home-section-social-networks-content .home-social-networks-slick-slider-arrow-left,
.home-section-social-networks .home-section-social-networks-content .home-social-networks-slick-slider-arrow-right {
  background: #151515;
  border: 1px solid #151515;
  backdrop-filter: blur(2px);
  color: #FBFBFB;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

@media screen and (min-width: 1024px) {
  .home-section-social-networks .home-section-social-networks-content .home-social-networks-slick-slider-arrow-left,
  .home-section-social-networks .home-section-social-networks-content .home-social-networks-slick-slider-arrow-right {
    opacity: 1;
    pointer-events: all;
  }

  .home-section-social-networks .home-section-social-networks-content .home-social-networks-slick-slider-arrow-left:hover,
  .home-section-social-networks .home-section-social-networks-content .home-social-networks-slick-slider-arrow-right:hover {
    border: 1px solid #F8E634;
    background: #F8E634;
    color: #151515;
  }
}

.home-section-spaces {
  background-color: #ffffff;
  padding-top: 30px;
  padding-bottom: 30px;
}

@media screen and (min-width: 1024px) {
  .home-section-spaces {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.we-section-tabs {
  padding-top: 30px;
  padding-bottom: 30px;
  overflow: hidden;
  background: #FFF;
}

@media screen and (min-width: 1024px) {
  .we-section-tabs {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.we-section-tabs .we-section-tabs-content {
  background: #FFF;
}

.we-section-tabs .we-section-tabs-content .we-tabs {
  border: inherit;
  border-radius: inherit;
  background: inherit;
  padding: 0;
}

.we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-header {
  border: inherit;
  border-radius: inherit;
  margin: inherit;
  padding: inherit;
  background: inherit;
  display: flex;
  justify-content: center;
  gap: 10px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
}

@media screen and (min-width: 768px) {
  .we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-header {
    gap: 15px;
  }
}

@media screen and (min-width: 1024px) {
  .we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-header {
    gap: 20px;
  }
}

.we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-header .we-tabs-header-list-item {
  margin: inherit;
  padding: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  min-width: 140px;
  border: 1px solid #626262;
  transition: all 0.3s ease;
  background: #FFF;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-header .we-tabs-header-list-item {
    min-width: 160px;
  }
}

@media screen and (min-width: 1024px) {
  .we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-header .we-tabs-header-list-item {
    min-width: 180px;
  }
}

.we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-header .we-tabs-header-list-item .we-tabs-header-item {
  padding: 12px 20px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #151515;
  font-family: "Avenir";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-header .we-tabs-header-list-item .we-tabs-header-item {
    font-size: 14px;
    letter-spacing: 0.8px;
  }
}

@media screen and (min-width: 1024px) {
  .we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-header .we-tabs-header-list-item .we-tabs-header-item {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 1.6px;
    padding: 14px 24px;
  }
}

.we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-header .we-tabs-header-list-item.ui-state-hover {
  background: #F5F5F5;
  border-color: #626262;
}

.we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-header .we-tabs-header-list-item.ui-state-active {
  background: #EFEF3F;
  border-color: #626262;
}

.we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-header .we-tabs-header-list-item.ui-state-active .we-tabs-header-item {
  color: #151515;
  font-weight: 600;
}

.we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-content {
  padding-top: 30px;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}

@media screen and (min-width: 1024px) {
  .we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-content {
    padding-top: 5px;
  }
}

.we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-content .we-tabs-content-title {
  color: #626262;
  font-family: "Avenir";
  font-size: 24px;
  font-style: normal;
  font-weight: 350;
  line-height: 40px;
  padding-top: 5px;
  padding-bottom: 20px;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-content .we-tabs-content-title {
    font-size: 30px;
    padding-top: 5px;
    padding-bottom: 40px;
  }
}

.we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-content .we-tabs-content-history {
  padding-top: 5px;
  padding-bottom: 60px;
}

@media screen and (min-width: 1024px) {
  .we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-content .we-tabs-content-history {
    padding-top: 5px;
    padding-bottom: 80px;
  }
}

.we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-content .we-tabs-content-history .we-tabs-content-history-slick-slider-nav {
  margin-bottom: 20px;
  margin-left: -30px;
}

@media screen and (min-width: 425px) {
  .we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-content .we-tabs-content-history .we-tabs-content-history-slick-slider-nav {
    margin-left: calc((425px - 100vw) / 2 - 30px);
  }
}

@media screen and (min-width: 768px) {
  .we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-content .we-tabs-content-history .we-tabs-content-history-slick-slider-nav {
    margin-left: calc((768px - 100vw) / 2 - 30px);
  }
}

@media screen and (min-width: 1024px) {
  .we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-content .we-tabs-content-history .we-tabs-content-history-slick-slider-nav {
    margin-left: calc((1024px - 100vw) / 2 - 30px);
    margin-bottom: 60px;
  }
}

@media screen and (min-width: 1440px) {
  .we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-content .we-tabs-content-history .we-tabs-content-history-slick-slider-nav {
    margin-left: calc((1440px - 100vw) / 2 - 135px);
  }
}

.we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-content .we-tabs-content-history .we-tabs-content-history-slick-slider-nav .slick-list {
  border-bottom: 1px solid #B6B6B6;
  padding: 0 calc(100vw - 30px - 30px - 30px) !important;
}

@media screen and (min-width: 1024px) {
  .we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-content .we-tabs-content-history .we-tabs-content-history-slick-slider-nav .slick-list {
    padding: 0 calc((100vw - 1024px) / 2 + 758px - 135px - 30px) !important;
  }
}

@media screen and (min-width: 1440px) {
  .we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-content .we-tabs-content-history .we-tabs-content-history-slick-slider-nav .slick-list {
    padding: 0 calc((100vw - 1440px) / 2 + 1065px - 135px - 135px) !important;
  }
}

.we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-content .we-tabs-content-history .we-tabs-content-history-slick-slider-nav .year {
  color: #B6B6B6;
  font-family: "Avenir";
  font-size: 40px;
  font-weight: 300;
  padding-left: 15px;
  padding-right: 15px;
}

@media screen and (min-width: 1024px) {
  .we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-content .we-tabs-content-history .we-tabs-content-history-slick-slider-nav .year {
    font-size: 60px;
  }
}

.we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-content .we-tabs-content-history .we-tabs-content-history-slick-slider-nav .year.slick-current {
  color: #151515;
  font-weight: 500;
}

.we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-content .we-tabs-content-history .we-tabs-content-history-slick-slider {
  margin-bottom: 20px;
}

@media screen and (min-width: 1024px) {
  .we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-content .we-tabs-content-history .we-tabs-content-history-slick-slider {
    margin-bottom: 0;
  }
}

.we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-content .we-tabs-content-history .we-tabs-content-history-slick-slider .card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media screen and (min-width: 1024px) {
  .we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-content .we-tabs-content-history .we-tabs-content-history-slick-slider .card {
    flex-direction: row;
    gap: 30px;
  }
}

.we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-content .we-tabs-content-history .we-tabs-content-history-slick-slider .card .image-container {
  width: 100%;
  height: 200px;
}

@media screen and (min-width: 768px) {
  .we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-content .we-tabs-content-history .we-tabs-content-history-slick-slider .card .image-container {
    height: 240px;
  }
}

@media screen and (min-width: 1024px) {
  .we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-content .we-tabs-content-history .we-tabs-content-history-slick-slider .card .image-container {
    width: 50%;
    height: 340px;
  }
}

.we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-content .we-tabs-content-history .we-tabs-content-history-slick-slider .card .image-container .image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-content .we-tabs-content-history .we-tabs-content-history-slick-slider .card .content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media screen and (min-width: 1024px) {
  .we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-content .we-tabs-content-history .we-tabs-content-history-slick-slider .card .content {
    width: 50%;
  }
}

.we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-content .we-tabs-content-history .we-tabs-content-history-slick-slider .card .content .title {
  color: #151515;
  font-family: "Avenir";
  font-size: 24px;
  font-style: italic;
  font-weight: 350;
  line-height: 35px;
}

.we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-content .we-tabs-content-history .we-tabs-content-history-slick-slider .card .content .description {
  color: #444;
  font-family: "Avenir";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
}

.we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-content .we-tabs-content-history .we-tabs-content-history-slick-slider-arrows-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

@media screen and (min-width: 1024px) {
  .we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-content .we-tabs-content-history .we-tabs-content-history-slick-slider-arrows-container {
    position: absolute;
    bottom: 80px;
    right: calc(50% - 105px);
  }
}

.we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-content .we-tabs-content-history .we-tabs-content-history-slick-slider-arrows-container .we-tabs-content-history-slick-slider-arrow-left,
.we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-content .we-tabs-content-history .we-tabs-content-history-slick-slider-arrows-container .we-tabs-content-history-slick-slider-arrow-right {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #939393;
  transition: all 0.3s ease;
}

@media screen and (min-width: 1024px) {
  .we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-content .we-tabs-content-history .we-tabs-content-history-slick-slider-arrows-container .we-tabs-content-history-slick-slider-arrow-left:hover,
  .we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-content .we-tabs-content-history .we-tabs-content-history-slick-slider-arrows-container .we-tabs-content-history-slick-slider-arrow-right:hover {
    border: 1px solid #F8E634;
    background: #F8E634;
    color: #151515;
  }

  .we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-content .we-tabs-content-history .we-tabs-content-history-slick-slider-arrows-container .we-tabs-content-history-slick-slider-arrow-left:disabled,
  .we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-content .we-tabs-content-history .we-tabs-content-history-slick-slider-arrows-container .we-tabs-content-history-slick-slider-arrow-right:disabled {
    border: 1px solid #FBFBFB;
    color: #FBFBFB;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(3px);
  }
}

.we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-content .we-tabs-content-directory .we-tabs-content-directory-slick-slider {
  margin-left: -30px;
  margin-right: -30px;
}

@media screen and (min-width: 425px) {
  .we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-content .we-tabs-content-directory .we-tabs-content-directory-slick-slider {
    margin-left: calc((425px - 100vw) / 2 - 30px);
    margin-right: calc((425px - 100vw) / 2 - 30px);
  }
}

@media screen and (min-width: 768px) {
  .we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-content .we-tabs-content-directory .we-tabs-content-directory-slick-slider {
    margin-left: calc((768px - 100vw) / 2 - 30px);
    margin-right: calc((768px - 100vw) / 2 - 30px);
  }
}

@media screen and (min-width: 1024px) {
  .we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-content .we-tabs-content-directory .we-tabs-content-directory-slick-slider {
    margin-left: calc((1024px - 100vw) / 2 - 30px);
    margin-right: calc((1024px - 100vw) / 2 - 30px);
  }
}

@media screen and (min-width: 1440px) {
  .we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-content .we-tabs-content-directory .we-tabs-content-directory-slick-slider {
    margin-left: calc((1440px - 100vw) / 2 - 135px);
    margin-right: calc((1440px - 100vw) / 2 - 135px);
  }
}

.we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-content .we-tabs-content-directory .we-tabs-content-directory-slick-slider .card {
  width: 270px !important;
  height: 270px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}

.we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-content .we-tabs-content-directory .we-tabs-content-directory-slick-slider .card:hover .cover {
  opacity: 1;
}

.we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-content .we-tabs-content-directory .we-tabs-content-directory-slick-slider .card .cover {
  width: 270px;
  height: 270px;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  top: 0;
  opacity: 0;
  transition: all 0.3s ease;
}

.we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-content .we-tabs-content-directory .we-tabs-content-directory-slick-slider .card .cover .name {
  color: #FBFBFB;
  text-align: center;
  font-family: "Avenir";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 40px;
}

.we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-content .we-tabs-content-directory .we-tabs-content-directory-slick-slider .card .cover .occupation {
  color: #FBFBFB;
  text-align: center;
  font-family: "Avenir";
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 40px;
  /* 266.667% */
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-content .we-tabs-content-directory .we-tabs-content-directory-slick-slider .card .image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-content .we-tabs-content-directory .we-tabs-content-directory-slick-slider-arrows-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-content .we-tabs-content-directory .we-tabs-content-directory-slick-slider-arrows-container .we-tabs-content-directory-slick-slider-arrow-left,
.we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-content .we-tabs-content-directory .we-tabs-content-directory-slick-slider-arrows-container .we-tabs-content-directory-slick-slider-arrow-right {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #626262;
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
}

@media screen and (min-width: 1024px) {
  .we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-content .we-tabs-content-directory .we-tabs-content-directory-slick-slider-arrows-container .we-tabs-content-directory-slick-slider-arrow-left:hover,
  .we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-content .we-tabs-content-directory .we-tabs-content-directory-slick-slider-arrows-container .we-tabs-content-directory-slick-slider-arrow-right:hover {
    border: 1px solid #F8E634;
    background: #F8E634;
    color: #151515;
    backdrop-filter: blur(3px);
  }
}

.we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-content .we-tabs-content-team {
  padding-bottom: 60px;
}

@media screen and (min-width: 1024px) {
  .we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-content .we-tabs-content-team {
    padding-bottom: 80px;
  }
}

@media screen and (min-width: 1024px) {
  .we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-content .we-tabs-content-team .we-tabs-content-team-chart-mobile {
    display: none;
  }
}

.we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-content .we-tabs-content-team .we-tabs-content-team-chart-desktop {
  display: none;
}

@media screen and (min-width: 1024px) {
  .we-section-tabs .we-section-tabs-content .we-tabs .we-tabs-content .we-tabs-content-team .we-tabs-content-team-chart-desktop {
    display: block;
  }
}

.we-section-spaces {
  background-color: #FBFBFB;
  padding-top: 40px;
  padding-bottom: 60px;
}

@media screen and (min-width: 1024px) {
  .we-section-spaces {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media screen and (min-width: 1024px) {
  .we-section-banner-default {
    margin-bottom: 80px;
  }
}

.we-section-banner-default .we-section-banner-default-content .banner-default {
  margin-left: -20px;
  margin-right: -20px;
}

@media screen and (min-width: 1024px) {
  .we-section-banner-default .we-section-banner-default-content .banner-default {
    margin-left: 0px;
    margin-right: 0px;
  }
}

.participate-section-gallery {
  margin-top: -36px;
  padding-bottom: 40px;
  background-color: #FBFBFB;
}

@media screen and (min-width: 1024px) {
  .participate-section-gallery {
    margin-top: 0;
    padding-bottom: 80px;
  }
}

.participate-section-gallery .participate-section-gallery-content .participate-section-gallery-pretitle {
  color: var(--neutrals-grey-grey-400, #444);
  font-family: "Avenir";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.44px;
  text-transform: uppercase;
}

.participate-section-gallery .participate-section-gallery-content .participate-section-gallery-title {
  color: var(--cclb-black, #151515);
  font-family: "Avenir";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 35px;
  padding-right: 20px;
  margin-bottom: 24px;
}

.participate-section-gallery .participate-section-gallery-content .participate-section-gallery-title strong {
  font-weight: 800;
}

.exhibitions-and-routes-section-featured-routes {
  padding-bottom: 30px;
}

@media screen and (min-width: 1024px) {
  .exhibitions-and-routes-section-featured-routes {
    padding-bottom: 40px;
  }
}

.exhibitions-and-routes-section-featured-routes .exhibitions-and-routes-section-featured-routes-header {
  text-align: center;
  margin-bottom: 30px;
}

@media screen and (min-width: 1024px) {
  .exhibitions-and-routes-section-featured-routes .exhibitions-and-routes-section-featured-routes-header {
    margin-bottom: 40px;
  }
}

.exhibitions-and-routes-section-featured-routes .exhibitions-and-routes-section-featured-routes-header .pretitle {
  color: #444;
  font-family: "Avenir";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.44px;
  text-transform: uppercase;
}

@media screen and (min-width: 1024px) {
  .exhibitions-and-routes-section-featured-routes .exhibitions-and-routes-section-featured-routes-header .pretitle {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1.92px;
    display: block;
    margin-bottom: 16px;
  }
}

.exhibitions-and-routes-section-featured-routes .exhibitions-and-routes-section-featured-routes-header .title {
  color: #151515;
  font-family: "Avenir";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 35px;
}

@media screen and (min-width: 1024px) {
  .exhibitions-and-routes-section-featured-routes .exhibitions-and-routes-section-featured-routes-header .title {
    font-size: 30px;
    line-height: 120%;
  }
}

.exhibitions-and-routes-section-featured-routes .exhibitions-and-routes-section-featured-routes-header .title strong {
  font-weight: 800;
}

.exhibitions-and-routes-section-featured-routes .exhibitions-and-routes-section-featured-routes-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.exhibitions-and-routes-section-featured-routes .exhibitions-and-routes-section-featured-routes-content .card-featured-routes {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media screen and (min-width: 1024px) {
  .exhibitions-and-routes-section-featured-routes .exhibitions-and-routes-section-featured-routes-content .card-featured-routes {
    width: 48.4%;
  }
}

@media screen and (min-width: 1440px) {
  .exhibitions-and-routes-section-featured-routes .exhibitions-and-routes-section-featured-routes-content .card-featured-routes {
    width: 48.7%;
  }
}

.exhibitions-and-routes-section-featured-routes .exhibitions-and-routes-section-featured-routes-content .card-featured-routes .image-container {
  display: block;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

@media screen and (min-width: 1024px) {
  .exhibitions-and-routes-section-featured-routes .exhibitions-and-routes-section-featured-routes-content .card-featured-routes .image-container .image:hover {
    transform: scale(1.5);
  }
}

.exhibitions-and-routes-section-featured-routes .exhibitions-and-routes-section-featured-routes-content .card-featured-routes .image-container .image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}

.exhibitions-and-routes-section-featured-routes .exhibitions-and-routes-section-featured-routes-content .card-featured-routes .title a {
  display: block;
  color: #444;
  font-family: "Avenir";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px;
}

.exhibitions-and-routes-section-featured-routes .exhibitions-and-routes-section-featured-routes-content .card-featured-routes .description {
  color: #151515;
  font-family: "Inter";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
}

.exhibitions-and-routes-section-featured-routes .exhibitions-and-routes-section-featured-routes-content .card-featured-routes .button {
  background: #151515;
  color: #FBFBFB;
  font-family: "Avenir";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  border: 1px solid #151515;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.3s ease;
  margin-top: auto;
}

@media screen and (min-width: 1024px) {
  .exhibitions-and-routes-section-featured-routes .exhibitions-and-routes-section-featured-routes-content .card-featured-routes .button:hover {
    color: #151515;
    background: #FBFBFB;
  }
}

.spaces-section-cultural-centers {
  background-color: #ffffff;
  padding-top: 40px;
  padding-bottom: 60px;
}

@media screen and (min-width: 1024px) {
  .spaces-section-cultural-centers {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}

.spaces-section-cultural-centers .spaces-section-cultural-centers-title {
  color: #000000;
  font-family: "Avenir";
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 40px;
  text-align: left;
}

@media screen and (min-width: 1024px) {
  .spaces-section-cultural-centers .spaces-section-cultural-centers-title {
    font-size: 40px;
    margin-bottom: 50px;
  }
}

.spaces-section-cultural-centers .spaces-section-cultural-centers-title strong {
  font-weight: 800;
}

.spaces-section-cultural-centers .spaces-carousel-wrapper {
  position: relative;
  overflow: hidden;
}

.spaces-section-cultural-centers .spaces-carousel-wrapper .spaces-slick-slider {
  display: flex;
  overflow-x: hidden;
}

.spaces-section-cultural-centers .spaces-carousel-wrapper .spaces-slick-slider .space-card {
  flex: 0 0 auto;
  width: 280px;
  background: #FFF;
  margin-right: 20px;
}

@media screen and (min-width: 1024px) {
  .spaces-section-cultural-centers .spaces-carousel-wrapper .spaces-slick-slider .space-card {
    width: 350px;
    margin-right: 30px;
  }

  .spaces-section-cultural-centers .spaces-carousel-wrapper .spaces-slick-slider .space-card:hover {
    transform: translateY(-5px);
  }

  .spaces-section-cultural-centers .spaces-carousel-wrapper .spaces-slick-slider .space-card:hover .space-card-image {
    transform: scale(1.05);
  }
}

.spaces-section-cultural-centers .spaces-carousel-wrapper .spaces-slick-slider .space-card .space-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.spaces-section-cultural-centers .spaces-carousel-wrapper .spaces-slick-slider .space-card .space-card-link .space-card-image-container {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #fff;
}

@media screen and (min-width: 1024px) {
  .spaces-section-cultural-centers .spaces-carousel-wrapper .spaces-slick-slider .space-card .space-card-link .space-card-image-container {
    height: 250px;
  }
}

.spaces-section-cultural-centers .spaces-carousel-wrapper .spaces-slick-slider .space-card .space-card-link .space-card-image-container .space-card-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}

.spaces-section-cultural-centers .spaces-carousel-wrapper .spaces-slick-slider .space-card .space-card-link .space-card-title {
  padding: 20px;
  color: #151515;
  font-family: "Avenir";
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 120%;
  text-align: left;
  margin: 0;
}

@media screen and (min-width: 1024px) {
  .spaces-section-cultural-centers .spaces-carousel-wrapper .spaces-slick-slider .space-card .space-card-link .space-card-title {
    font-size: 20px;
    padding: 25px;
  }
}

.spaces-section-cultural-centers .spaces-carousel-wrapper .spaces-slick-slider-arrow-container {
  display: flex;
  gap: 10px;
  position: absolute;
  right: 0;
  top: -70px;
}

@media screen and (min-width: 1024px) {
  .spaces-section-cultural-centers .spaces-carousel-wrapper .spaces-slick-slider-arrow-container {
    top: -80px;
  }
}

.spaces-section-cultural-centers .spaces-carousel-wrapper .spaces-slick-slider-arrow-container .spaces-slick-slider-arrow-left,
.spaces-section-cultural-centers .spaces-carousel-wrapper .spaces-slick-slider-arrow-container .spaces-slick-slider-arrow-right {
  border: 1px solid #151515;
  background: #151515;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FBFBFB;
  cursor: pointer;
  transition: all 0.3s ease;
}

@media screen and (min-width: 1024px) {
  .spaces-section-cultural-centers .spaces-carousel-wrapper .spaces-slick-slider-arrow-container .spaces-slick-slider-arrow-left:hover,
  .spaces-section-cultural-centers .spaces-carousel-wrapper .spaces-slick-slider-arrow-container .spaces-slick-slider-arrow-right:hover {
    border: 1px solid #EFEF3F;
    background: #EFEF3F;
    color: #151515;
  }
}

.spaces-section-cultural-centers .spaces-carousel-wrapper .spaces-slick-slider-arrow-container .spaces-slick-slider-arrow-left:disabled,
.spaces-section-cultural-centers .spaces-carousel-wrapper .spaces-slick-slider-arrow-container .spaces-slick-slider-arrow-right:disabled {
  border: 1px solid rgba(21, 21, 21, 0.2);
  background: transparent;
  color: rgba(21, 21, 21, 0.3);
  cursor: not-allowed;
}

