@charset "UTF-8";
@import url("https://webfonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap");
.image-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.image-background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* 
Responsive between
Ej: @include responsiveB('mobile-v', 'mobile-h'){
*/
/*
tr( duracion, propiedades, delay)
*/
/*
tre( duracion, propiedades, delay)
a diferencia de tr(), tre tiene un easign aplicado que hace la animacion mas natural
*/
/*
fade( x, y, defaulttransition, delay );
Añade transformacion x e y, y opacity 0 al elemento.
Se pueden pasar valores negativos, por ejemplo, para desplazar x hacia la izquierda
Tambien se puede pasar un porcentaje
defaulttransition aplica la variable $transition-default definida en _variables.scss
delay aplica un delay multiplicando el valor por $transition-default-delay para hacer aparecer los elementos de forma escalonada
*/
.in {
  --fade-opacity: 1;
  --fade-transform: translateX(0px) translateY(0px);
  --p100: 100%;
  --v1: 1;
  --v0: 0;
}

/*
fadein();
Aplica transformX(0px), transformY(0px) y opacity 1 para hacer aparecer el objecto
*/
/*
Se usa igual que fade, pero crea un loop para animar los elementos de forma ordenada
*/
/*
Use:
@if editor() {
  font-size: 90px;
}
*/
/* Text Block Custom Style */
@font-face {
  font-family: "Chromatica";
  src: url("../webfonts/Chromatica.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Chromatica";
  src: url("../webfonts/Chromatica-Thin.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Chromatica";
  src: url("../webfonts/Chromatica-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Chromatica";
  src: url("../webfonts/Chromatica-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Chromatica";
  src: url("../webfonts/Chromatica-Bold.otf") format("opentype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Cadillac Gothic";
  src: url("../webfonts/CadillacGothic-VF.woff2") format("woff2");
}
@font-face {
  font-family: "DS-Digital";
  font-style: normal;
  font-weight: 400;
  src: local("DS-Digital"), url("../webfonts/DS-DIGI.woff") format("woff");
}
@font-face {
  font-family: "DS-Digital";
  font-style: italic;
  font-weight: 400;
  src: local("DS-Digital"), url("../webfonts/DS-DIGII.woff") format("woff");
}
@font-face {
  font-family: "DS-Digital";
  font-style: normal;
  font-weight: 700;
  src: local("DS-Digital"), url("../webfonts/DS-DIGIB.woff") format("woff");
}
@font-face {
  font-family: "DS-Digital";
  font-style: italic;
  font-weight: 700;
  src: local("DS-Digital"), url("../webfonts/DS-DIGIT.woff") format("woff");
}
@font-face {
  font-family: "Cadillac Countdown";
  src: url("../webfonts/Cadillac_Countdown.eot");
  src: url("../webfonts/Cadillac_Countdown.eot?#iefix") format("embedded-opentype"), url("../webfonts/Cadillac_Countdown.woff2") format("woff2"), url("../webfonts/Cadillac_Countdown.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: -webkit-fill-available;
}

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

* {
  margin: 0;
  padding: 0;
  border: none;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Chromatica", sans-serif;
  font-size: 16px;
  color: #ffffff;
  background: #000;
}
body img {
  max-width: 100%;
  height: auto;
}
body ul li {
  list-style: none;
}

section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

.hidden {
  display: none;
}

input[type=text],
input[type=email],
input[type=search],
input[type=submit],
textarea,
button {
  font-family: "Chromatica", sans-serif;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
}

button {
  background-color: transparent;
}

select {
  font-family: "Chromatica", sans-serif;
}

h1,
.h1,
.h1 p {
  font-size: 42px;
}
@media only screen and (max-width: 1200px) {
  h1,
  .h1,
  .h1 p {
    font-size: 38px;
  }
}
@media only screen and (max-width: 600px) {
  h1,
  .h1,
  .h1 p {
    font-size: 28px;
  }
}

h2,
.h2,
.h2 p {
  font-size: 38px;
}
@media only screen and (max-width: 1200px) {
  h2,
  .h2,
  .h2 p {
    font-size: 32px;
  }
}
@media only screen and (max-width: 600px) {
  h2,
  .h2,
  .h2 p {
    font-size: 23px;
  }
}

h3,
.h3,
.h3 p {
  font-size: 34px;
}
@media only screen and (max-width: 1200px) {
  h3,
  .h3,
  .h3 p {
    font-size: 28px;
  }
}
@media only screen and (max-width: 600px) {
  h3,
  .h3,
  .h3 p {
    font-size: 20px;
  }
}

h4,
.h4,
.h4 p {
  font-size: 24px;
}
@media only screen and (max-width: 1200px) {
  h4,
  .h4,
  .h4 p {
    font-size: 24px;
  }
}
@media only screen and (max-width: 600px) {
  h4,
  .h4,
  .h4 p {
    font-size: 18px;
  }
}

h5,
.h5,
.h5 p {
  font-size: 18px;
}
@media only screen and (max-width: 1200px) {
  h5,
  .h5,
  .h5 p {
    font-size: 18px;
  }
}
@media only screen and (max-width: 600px) {
  h5,
  .h5,
  .h5 p {
    font-size: 14px;
  }
}

h6,
.h6,
.h6 p {
  font-size: 14px;
}
@media only screen and (max-width: 1200px) {
  h6,
  .h6,
  .h6 p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 600px) {
  h6,
  .h6,
  .h6 p {
    font-size: 12px;
  }
}

a {
  color: #BE1E2D;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

b,
strong,
strong * {
  font-weight: 600;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

.container {
  margin: 0 auto;
  padding: 0 25px;
  width: 100%;
}

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

.iframe-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  padding-top: 56.25%;
  position: relative;
}
.iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.font-chromatica sup {
  font-size: 1rem;
}

.presentation_video {
  display: block;
  width: 70vw;
  height: auto;
  aspect-ratio: 16/9;
  margin-left: 15vw;
  margin-right: 15vw;
  width: 70vw;
}
@media only screen and (max-width: 900px) {
  .presentation_video {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
}

body:has(.presentation_video) .hero_simple__title {
  display: none;
}

.site-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 150px;
  margin-left: auto;
}
@media only screen and (min-width: 1050px) {
  .site-logo {
    width: 260px;
  }
}
.site-logo img {
  width: 100%;
  height: auto;
}

.scrolled .site-logo {
  width: 200px;
}

.site-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  position: relative;
}
@media only screen and (max-width: 1050px) {
  .site-menu {
    padding: 20px;
    padding-top: 114px;
    display: block;
  }
}
.site-menu__item {
  margin: 0 30px;
  padding-bottom: 37px;
}
@media only screen and (max-width: 1050px) {
  .site-menu__item {
    margin: 0;
    padding: 14px 0;
    border-bottom: 1px solid #D2D4D5;
  }
}
@media only screen and (min-width: 1050px) {
  .site-menu__item:hover .submenu--banners {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .site-menu__item:hover .submenu--list {
    display: block;
  }
}
.site-menu__item--list {
  position: relative;
}
@media only screen and (max-width: 1050px) {
  .site-menu__item--list {
    position: static;
  }
}
.site-menu__first-level {
  font-size: 14px;
  color: #000;
}
@media only screen and (max-width: 1200px) {
  .site-menu__first-level {
    font-size: 16px;
  }
}
@media only screen and (max-width: 600px) {
  .site-menu__first-level {
    font-size: 12px;
  }
}
@media only screen and (max-width: 1050px) {
  .site-menu__first-level {
    font-size: 28px;
    position: relative;
    width: calc(100% - 33px);
    display: inline-block;
  }
  .site-menu__first-level--text {
    width: 100%;
  }
  .site-menu__first-level--text:before {
    position: absolute;
    top: 4px;
    right: 9px;
    width: 10px;
    height: 18px;
    background: url(images/arrow-right.svg) center/contain no-repeat;
    content: "";
    z-index: -1;
  }
}
.site-menu__first-level.current-page {
  position: relative;
}
.site-menu__first-level.current-page:after {
  position: absolute;
  top: 3px;
  left: -20px;
  width: 12px;
  height: 12px;
  content: "";
  background: #BE1E2D;
}
@media only screen and (max-width: 1050px) {
  .site-menu__first-level.current-page:after {
    display: none;
  }
}
.site-menu__first-level__btn {
  display: none;
  margin-top: -14px;
  width: 33px;
  height: 57px;
  z-index: 2;
  position: relative;
  z-index: 2;
  background: none;
  float: right;
}
.site-menu__first-level__btn:before {
  position: absolute;
  top: 18px;
  right: 9px;
  width: 10px;
  height: 18px;
  background: url(images/arrow-right.svg) center/contain no-repeat;
  content: "";
  z-index: -1;
}
@media only screen and (max-width: 1050px) {
  .site-menu__first-level__btn {
    display: block;
  }
}
.site-menu .submenu {
  position: absolute;
  top: 37px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  padding: 70px;
  background: #ffffff;
  -webkit-filter: drop-shadow(15px 15px 20px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(15px 15px 20px rgba(0, 0, 0, 0.1));
  display: none;
}
@media only screen and (max-width: 1050px) {
  .site-menu .submenu.active {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
.site-menu .submenu .back-btn {
  display: none;
}
@media only screen and (max-width: 1050px) {
  .site-menu .submenu .back-btn {
    display: block;
    position: absolute;
    top: 67px;
    left: 20px;
    font-size: 18px;
    background: none;
    padding-left: 23px;
  }
}
@media only screen and (max-width: 1050px) and (max-width: 1200px) {
  .site-menu .submenu .back-btn {
    font-size: 18px;
  }
}
@media only screen and (max-width: 1050px) and (max-width: 600px) {
  .site-menu .submenu .back-btn {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1050px) {
  .site-menu .submenu .back-btn:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 15px;
    background: url(images/arrow-right.svg) center/contain no-repeat;
    content: "";
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}
.site-menu .submenu__item:hover .submenu__title {
  color: #BE1E2D;
}
.site-menu .submenu__image {
  position: relative;
  width: 100%;
  padding-top: 62.5%;
  margin-bottom: 10px;
  display: none;
}
.site-menu .submenu__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.site-menu .submenu__title {
  text-align: center;
  width: 100%;
  font-size: 14px;
  color: #000;
}
@media only screen and (max-width: 1200px) {
  .site-menu .submenu__title {
    font-size: 16px;
  }
}
@media only screen and (max-width: 600px) {
  .site-menu .submenu__title {
    font-size: 12px;
  }
}
@media only screen and (max-width: 1050px) {
  .site-menu .submenu--list {
    display: block;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0);
    background: #fff;
    z-index: 2;
    padding: 20px;
    padding-top: 114px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    overflow-y: scroll;
  }
}
.site-menu .submenu--list .submenu__item {
  display: block;
  width: 207px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #D2D4D5;
}
@media only screen and (max-width: 1050px) {
  .site-menu .submenu--list .submenu__item {
    width: 100%;
    padding-bottom: 25px;
    margin-bottom: 25px;
  }
  .site-menu .submenu--list .submenu__item .submenu__title {
    text-align: left;
  }
}
.site-menu .submenu--list .submenu__item:nth-last-child(2) {
  margin: 0;
}
@media only screen and (max-width: 1050px) {
  .site-menu .submenu--list .submenu__item:nth-last-child(2) {
    border: none;
  }
}
.site-menu .submenu--banners {
  top: 37px;
  left: 50vw;
  width: 1290px;
  max-width: 100vw;
  padding: 46px 70px;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  margin-left: -60px;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media only screen and (max-width: 1200px) {
  .site-menu .submenu--banners {
    width: 100vw;
  }
}
@media only screen and (max-width: 1050px) {
  .site-menu .submenu--banners {
    display: block;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0);
    background: #fff;
    z-index: 3;
    padding: 0 10px;
    padding-top: 114px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    overflow-y: scroll;
    margin-left: 0;
    padding-bottom: 30px;
  }
}
.site-menu .submenu--banners .submenu__item {
  width: 25%;
  padding: 18px 10px;
}
@media only screen and (max-width: 1050px) {
  .site-menu .submenu--banners .submenu__item {
    float: left;
    width: 50%;
    padding: 0 10px 23px 10px;
  }
  .site-menu .submenu--banners .submenu__item:nth-child(1) {
    width: 100%;
  }
}
.site-menu .submenu--banners .submenu__image {
  display: block;
}
.site-menu .site-account {
  display: none;
}
@media only screen and (max-width: 1050px) {
  .site-menu .site-account {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 72px;
  }
}
.site-menu .site-account a {
  font-size: 16px;
}
.site-menu .site-account a:nth-child(1) {
  margin-left: 0;
}
.site-menu .site-search {
  display: none;
}
@media only screen and (max-width: 1050px) {
  .site-menu .site-search {
    display: block;
    margin-top: 27px;
  }
}
.site-menu .site-search form input[type=search] {
  font-size: 16px;
}

.scrolled .site-menu__item {
  padding-bottom: 20px;
}
.scrolled .site-menu .submenu--banners {
  top: 25px;
}
.scrolled .site-menu .submenu .back-btn {
  top: 34px;
}

.responsive__btn {
  float: left;
  position: relative;
  z-index: 11;
  width: 28px;
  height: 22px;
  position: relative;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  display: none;
  display: block;
}
.responsive__btn span {
  display: inline-block;
  background: #ffffff;
  width: 100%;
  height: 2px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: absolute;
  left: 0;
}
.responsive__btn span:nth-child(1) {
  top: 0px;
}
.responsive__btn span:nth-child(2), .responsive__btn span:nth-child(3) {
  top: 9px;
}
.responsive__btn span:nth-child(4) {
  top: 18px;
}
.responsive__btn.burger_menu {
  display: block;
}

.menu-responsive-open .responsive__btn span {
  background: #ffffff;
}
.menu-responsive-open .responsive__btn span:nth-child(1) {
  top: 9px;
  width: 0%;
  left: 50%;
}
.menu-responsive-open .responsive__btn span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.menu-responsive-open .responsive__btn span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.menu-responsive-open .responsive__btn span:nth-child(4) {
  top: 9px;
  width: 0%;
  left: 50%;
}
.menu-responsive-open .site-menu.burger_menu {
  display: block;
}
.menu-responsive-open .header__bottom {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.site-search {
  position: relative;
  width: 100%;
}
.site-search .wc-block-product-search .wc-block-product-search__fields {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.site-search form label {
  display: none;
}
.site-search form input[type=search] {
  width: calc(100% - 25px);
  height: 25px;
  line-height: 25px;
  padding: 0 8px;
  font-size: 14px;
  color: #000;
}
@media only screen and (max-width: 1200px) {
  .site-search form input[type=search] {
    font-size: 16px;
  }
}
@media only screen and (max-width: 600px) {
  .site-search form input[type=search] {
    font-size: 12px;
  }
}
.site-search form input[type=search]::-webkit-input-placeholder {
  color: #000;
}
.site-search form input[type=search]::-moz-placeholder {
  color: #000;
}
.site-search form input[type=search]:-ms-input-placeholder {
  color: #000;
}
.site-search form input[type=search]::-ms-input-placeholder {
  color: #000;
}
.site-search form input[type=search]::placeholder {
  color: #000;
}
.site-search form button {
  width: 25px;
  height: 25px;
  background: none;
  text-indent: 500px;
  overflow: hidden;
  cursor: pointer;
  background-image: url(images/search.svg);
  background-position: center center;
  background-repeat: no-repeat;
  margin: 0;
}
.site-search form button svg {
  display: none;
}
.site-search img {
  position: absolute;
  top: 10px;
  right: 15px;
  z-index: -1;
}

.socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
@media only screen and (min-width: 600px) {
  .socials {
    gap: 30px;
  }
}
.socials a {
  display: block;
  width: auto;
  -webkit-transition: none;
  transition: none;
}
.socials a:hover {
  opacity: 0.5;
}

.site .gform_wrapper,
.woocommerce .gform_wrapper,
.woocommerce .site .gform_wrapper {
  margin: 0;
  padding: 0;
}
.site .gform_wrapper .gform_fields,
.woocommerce .gform_wrapper .gform_fields,
.woocommerce .site .gform_wrapper .gform_fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  gap: 0 30px;
}
.site .gform_wrapper .gfield,
.woocommerce .gform_wrapper .gfield,
.woocommerce .site .gform_wrapper .gfield {
  width: 100%;
}
.site .gform_wrapper .gfield select,
.site .gform_wrapper .gfield input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.site .gform_wrapper .gfield textarea,
.woocommerce .gform_wrapper .gfield select,
.woocommerce .gform_wrapper .gfield input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.woocommerce .gform_wrapper .gfield textarea,
.woocommerce .site .gform_wrapper .gfield select,
.woocommerce .site .gform_wrapper .gfield input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.woocommerce .site .gform_wrapper .gfield textarea {
  width: 100%;
}
.site .gform_wrapper .gfield--width-half,
.woocommerce .gform_wrapper .gfield--width-half,
.woocommerce .site .gform_wrapper .gfield--width-half {
  width: calc(50% - 15px);
}
.site .gform_wrapper .gfield--width-third,
.woocommerce .gform_wrapper .gfield--width-third,
.woocommerce .site .gform_wrapper .gfield--width-third {
  width: calc(33% - 20px);
}
.site .gform_wrapper .gfield--width-quarter,
.woocommerce .gform_wrapper .gfield--width-quarter,
.woocommerce .site .gform_wrapper .gfield--width-quarter {
  width: calc(25% - 22.5px);
}
.site .gform_wrapper .top_label .gfield_label,
.site .gform_wrapper legend.gfield_label,
.woocommerce .gform_wrapper .top_label .gfield_label,
.woocommerce .gform_wrapper legend.gfield_label,
.woocommerce .site .gform_wrapper .top_label .gfield_label,
.woocommerce .site .gform_wrapper legend.gfield_label {
  display: none;
}
.site .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.site .gform_wrapper textarea,
.woocommerce .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.woocommerce .gform_wrapper textarea,
.woocommerce .site .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.woocommerce .site .gform_wrapper textarea {
  height: 40px;
  line-height: 40px;
  background: none;
  border: 1px solid #333F44;
  padding: 0 25px;
  font-size: 14px;
  color: #000;
}
@media only screen and (max-width: 1200px) {
  .site .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
  .site .gform_wrapper textarea,
  .woocommerce .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
  .woocommerce .gform_wrapper textarea,
  .woocommerce .site .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
  .woocommerce .site .gform_wrapper textarea {
    font-size: 16px;
  }
}
@media only screen and (max-width: 600px) {
  .site .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
  .site .gform_wrapper textarea,
  .woocommerce .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
  .woocommerce .gform_wrapper textarea,
  .woocommerce .site .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
  .woocommerce .site .gform_wrapper textarea {
    font-size: 12px;
  }
}
.site .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file])::-webkit-input-placeholder, .site .gform_wrapper textarea::-webkit-input-placeholder, .woocommerce .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file])::-webkit-input-placeholder, .woocommerce .gform_wrapper textarea::-webkit-input-placeholder, .woocommerce .site .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file])::-webkit-input-placeholder, .woocommerce .site .gform_wrapper textarea::-webkit-input-placeholder {
  color: #BBBFC1;
}
.site .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file])::-moz-placeholder, .site .gform_wrapper textarea::-moz-placeholder, .woocommerce .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file])::-moz-placeholder, .woocommerce .gform_wrapper textarea::-moz-placeholder, .woocommerce .site .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file])::-moz-placeholder, .woocommerce .site .gform_wrapper textarea::-moz-placeholder {
  color: #BBBFC1;
}
.site .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):-ms-input-placeholder, .site .gform_wrapper textarea:-ms-input-placeholder, .woocommerce .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):-ms-input-placeholder, .woocommerce .gform_wrapper textarea:-ms-input-placeholder, .woocommerce .site .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):-ms-input-placeholder, .woocommerce .site .gform_wrapper textarea:-ms-input-placeholder {
  color: #BBBFC1;
}
.site .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file])::-ms-input-placeholder, .site .gform_wrapper textarea::-ms-input-placeholder, .woocommerce .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file])::-ms-input-placeholder, .woocommerce .gform_wrapper textarea::-ms-input-placeholder, .woocommerce .site .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file])::-ms-input-placeholder, .woocommerce .site .gform_wrapper textarea::-ms-input-placeholder {
  color: #BBBFC1;
}
.site .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file])::placeholder,
.site .gform_wrapper textarea::placeholder,
.woocommerce .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file])::placeholder,
.woocommerce .gform_wrapper textarea::placeholder,
.woocommerce .site .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file])::placeholder,
.woocommerce .site .gform_wrapper textarea::placeholder {
  color: #BBBFC1;
}
.site .gform_wrapper .gfmc-column,
.woocommerce .gform_wrapper .gfmc-column,
.woocommerce .site .gform_wrapper .gfmc-column {
  padding-right: 48px;
}
.site .gform_wrapper .gfmc-column:nth-last-child(1),
.woocommerce .gform_wrapper .gfmc-column:nth-last-child(1),
.woocommerce .site .gform_wrapper .gfmc-column:nth-last-child(1) {
  padding-right: 0;
}
.site .gform_wrapper .gfmc-column h4,
.woocommerce .gform_wrapper .gfmc-column h4,
.woocommerce .site .gform_wrapper .gfmc-column h4 {
  margin-bottom: 4px;
  font-size: 18px;
}
@media only screen and (max-width: 1200px) {
  .site .gform_wrapper .gfmc-column h4,
  .woocommerce .gform_wrapper .gfmc-column h4,
  .woocommerce .site .gform_wrapper .gfmc-column h4 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 600px) {
  .site .gform_wrapper .gfmc-column h4,
  .woocommerce .gform_wrapper .gfmc-column h4,
  .woocommerce .site .gform_wrapper .gfmc-column h4 {
    font-size: 14px;
  }
}
.site .gform_wrapper .gfmc-column .form__text,
.woocommerce .gform_wrapper .gfmc-column .form__text,
.woocommerce .site .gform_wrapper .gfmc-column .form__text {
  font-size: 14px;
  margin-top: 15px;
}
@media only screen and (max-width: 1200px) {
  .site .gform_wrapper .gfmc-column .form__text,
  .woocommerce .gform_wrapper .gfmc-column .form__text,
  .woocommerce .site .gform_wrapper .gfmc-column .form__text {
    font-size: 16px;
  }
}
@media only screen and (max-width: 600px) {
  .site .gform_wrapper .gfmc-column .form__text,
  .woocommerce .gform_wrapper .gfmc-column .form__text,
  .woocommerce .site .gform_wrapper .gfmc-column .form__text {
    font-size: 12px;
  }
}
.site .gform_wrapper .gfmc-column .form__text a,
.woocommerce .gform_wrapper .gfmc-column .form__text a,
.woocommerce .site .gform_wrapper .gfmc-column .form__text a {
  color: #000;
  text-decoration: underline;
}
.site .gform_wrapper .gfmc-column .form__text a:hover,
.woocommerce .gform_wrapper .gfmc-column .form__text a:hover,
.woocommerce .site .gform_wrapper .gfmc-column .form__text a:hover {
  color: #BE1E2D;
}
.site .gform_wrapper .gfmc-column input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.site .gform_wrapper .gfmc-column textarea,
.woocommerce .gform_wrapper .gfmc-column input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.woocommerce .gform_wrapper .gfmc-column textarea,
.woocommerce .site .gform_wrapper .gfmc-column input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.woocommerce .site .gform_wrapper .gfmc-column textarea {
  width: 100%;
}
.site .gform_wrapper .ginput_complex.ginput_container_address span,
.site .gform_wrapper .ginput_complex.ginput_container_address span.ginput_right + span.ginput_left,
.woocommerce .gform_wrapper .ginput_complex.ginput_container_address span,
.woocommerce .gform_wrapper .ginput_complex.ginput_container_address span.ginput_right + span.ginput_left,
.woocommerce .site .gform_wrapper .ginput_complex.ginput_container_address span,
.woocommerce .site .gform_wrapper .ginput_complex.ginput_container_address span.ginput_right + span.ginput_left {
  width: 100%;
  padding-right: 0;
  margin-right: 0;
  margin-bottom: 10px;
  display: block;
}
.site .gform_wrapper .ginput_complex.ginput_container_address label,
.woocommerce .gform_wrapper .ginput_complex.ginput_container_address label,
.woocommerce .site .gform_wrapper .ginput_complex.ginput_container_address label {
  display: none;
}
.site .gform_wrapper .gform_footer input.button,
.site .gform_wrapper .gform_footer input[type=submit],
.site .gform_wrapper .gform_page_footer input.button,
.site .gform_wrapper .gform_page_footer input[type=submit],
.woocommerce .gform_wrapper .gform_footer input.button,
.woocommerce .gform_wrapper .gform_footer input[type=submit],
.woocommerce .gform_wrapper .gform_page_footer input.button,
.woocommerce .gform_wrapper .gform_page_footer input[type=submit],
.woocommerce .site .gform_wrapper .gform_footer input.button,
.woocommerce .site .gform_wrapper .gform_footer input[type=submit],
.woocommerce .site .gform_wrapper .gform_page_footer input.button,
.woocommerce .site .gform_wrapper .gform_page_footer input[type=submit] {
  font-size: 14px;
}
@media only screen and (max-width: 1200px) {
  .site .gform_wrapper .gform_footer input.button,
  .site .gform_wrapper .gform_footer input[type=submit],
  .site .gform_wrapper .gform_page_footer input.button,
  .site .gform_wrapper .gform_page_footer input[type=submit],
  .woocommerce .gform_wrapper .gform_footer input.button,
  .woocommerce .gform_wrapper .gform_footer input[type=submit],
  .woocommerce .gform_wrapper .gform_page_footer input.button,
  .woocommerce .gform_wrapper .gform_page_footer input[type=submit],
  .woocommerce .site .gform_wrapper .gform_footer input.button,
  .woocommerce .site .gform_wrapper .gform_footer input[type=submit],
  .woocommerce .site .gform_wrapper .gform_page_footer input.button,
  .woocommerce .site .gform_wrapper .gform_page_footer input[type=submit] {
    font-size: 16px;
  }
}
@media only screen and (max-width: 600px) {
  .site .gform_wrapper .gform_footer input.button,
  .site .gform_wrapper .gform_footer input[type=submit],
  .site .gform_wrapper .gform_page_footer input.button,
  .site .gform_wrapper .gform_page_footer input[type=submit],
  .woocommerce .gform_wrapper .gform_footer input.button,
  .woocommerce .gform_wrapper .gform_footer input[type=submit],
  .woocommerce .gform_wrapper .gform_page_footer input.button,
  .woocommerce .gform_wrapper .gform_page_footer input[type=submit],
  .woocommerce .site .gform_wrapper .gform_footer input.button,
  .woocommerce .site .gform_wrapper .gform_footer input[type=submit],
  .woocommerce .site .gform_wrapper .gform_page_footer input.button,
  .woocommerce .site .gform_wrapper .gform_page_footer input[type=submit] {
    font-size: 12px;
  }
}
.site .gform_wrapper li.gfield.gfield_error,
.site .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning,
.woocommerce .gform_wrapper li.gfield.gfield_error,
.woocommerce .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning,
.woocommerce .site .gform_wrapper li.gfield.gfield_error,
.woocommerce .site .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
  border: none;
  background: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
}
@media only screen and (max-width: 1200px) {
  .site .gform_wrapper li.gfield.gfield_error,
  .site .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning,
  .woocommerce .gform_wrapper li.gfield.gfield_error,
  .woocommerce .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning,
  .woocommerce .site .gform_wrapper li.gfield.gfield_error,
  .woocommerce .site .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
    font-size: 16px;
  }
}
@media only screen and (max-width: 600px) {
  .site .gform_wrapper li.gfield.gfield_error,
  .site .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning,
  .woocommerce .gform_wrapper li.gfield.gfield_error,
  .woocommerce .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning,
  .woocommerce .site .gform_wrapper li.gfield.gfield_error,
  .woocommerce .site .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
    font-size: 12px;
  }
}
.site .gform_wrapper .validation_message,
.woocommerce .gform_wrapper .validation_message,
.woocommerce .site .gform_wrapper .validation_message {
  padding-top: 8px;
}
.site .gform_wrapper div.validation_error,
.woocommerce .gform_wrapper div.validation_error,
.woocommerce .site .gform_wrapper div.validation_error {
  padding: 8px 0;
  font-size: 14px;
  line-height: 1.2;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1200px) {
  .site .gform_wrapper div.validation_error,
  .woocommerce .gform_wrapper div.validation_error,
  .woocommerce .site .gform_wrapper div.validation_error {
    font-size: 16px;
  }
}
@media only screen and (max-width: 600px) {
  .site .gform_wrapper div.validation_error,
  .woocommerce .gform_wrapper div.validation_error,
  .woocommerce .site .gform_wrapper div.validation_error {
    font-size: 12px;
  }
}
.site .gform_wrapper .gfield_checkbox li input,
.site .gform_wrapper .gfield_checkbox li input[type=checkbox],
.site .gform_wrapper .gfield_radio li input[type=radio],
.woocommerce .gform_wrapper .gfield_checkbox li input,
.woocommerce .gform_wrapper .gfield_checkbox li input[type=checkbox],
.woocommerce .gform_wrapper .gfield_radio li input[type=radio],
.woocommerce .site .gform_wrapper .gfield_checkbox li input,
.woocommerce .site .gform_wrapper .gfield_checkbox li input[type=checkbox],
.woocommerce .site .gform_wrapper .gfield_radio li input[type=radio] {
  display: none;
}
.site .gform_wrapper ul.gfield_checkbox li label,
.site .gform_wrapper ul.gfield_radio li label,
.woocommerce .gform_wrapper ul.gfield_checkbox li label,
.woocommerce .gform_wrapper ul.gfield_radio li label,
.woocommerce .site .gform_wrapper ul.gfield_checkbox li label,
.woocommerce .site .gform_wrapper ul.gfield_radio li label {
  font-size: 14px;
  color: #333F44;
  padding-left: 30px;
  line-height: 20px;
  position: relative;
}
@media only screen and (max-width: 1200px) {
  .site .gform_wrapper ul.gfield_checkbox li label,
  .site .gform_wrapper ul.gfield_radio li label,
  .woocommerce .gform_wrapper ul.gfield_checkbox li label,
  .woocommerce .gform_wrapper ul.gfield_radio li label,
  .woocommerce .site .gform_wrapper ul.gfield_checkbox li label,
  .woocommerce .site .gform_wrapper ul.gfield_radio li label {
    font-size: 16px;
  }
}
@media only screen and (max-width: 600px) {
  .site .gform_wrapper ul.gfield_checkbox li label,
  .site .gform_wrapper ul.gfield_radio li label,
  .woocommerce .gform_wrapper ul.gfield_checkbox li label,
  .woocommerce .gform_wrapper ul.gfield_radio li label,
  .woocommerce .site .gform_wrapper ul.gfield_checkbox li label,
  .woocommerce .site .gform_wrapper ul.gfield_radio li label {
    font-size: 12px;
  }
}
.site .gform_wrapper ul.gfield_checkbox li label:before,
.site .gform_wrapper ul.gfield_radio li label:before,
.woocommerce .gform_wrapper ul.gfield_checkbox li label:before,
.woocommerce .gform_wrapper ul.gfield_radio li label:before,
.woocommerce .site .gform_wrapper ul.gfield_checkbox li label:before,
.woocommerce .site .gform_wrapper ul.gfield_radio li label:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #000;
  content: "";
}
.site .gform_wrapper .gchoice_select_all:after,
.site .gform_wrapper ul.gfield_checkbox li input[type=checkbox]:checked + label:after,
.site .gform_wrapper ul.gfield_radio li input[type=radio]:checked + label:after,
.woocommerce .gform_wrapper .gchoice_select_all:after,
.woocommerce .gform_wrapper ul.gfield_checkbox li input[type=checkbox]:checked + label:after,
.woocommerce .gform_wrapper ul.gfield_radio li input[type=radio]:checked + label:after,
.woocommerce .site .gform_wrapper .gchoice_select_all:after,
.woocommerce .site .gform_wrapper ul.gfield_checkbox li input[type=checkbox]:checked + label:after,
.woocommerce .site .gform_wrapper ul.gfield_radio li input[type=radio]:checked + label:after {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  background: #BE1E2D;
  content: "";
}

.formBox input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.formBox textarea {
  height: 40px;
  line-height: 40px;
  background: none;
  border: 1px solid #333F44;
  padding: 0 25px;
  font-size: 14px;
  color: #000;
  width: 100%;
  margin-bottom: 8px;
  background: #ffffff;
}
@media only screen and (max-width: 1200px) {
  .formBox input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
  .formBox textarea {
    font-size: 16px;
  }
}
@media only screen and (max-width: 600px) {
  .formBox input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
  .formBox textarea {
    font-size: 12px;
  }
}
.formBox input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file])::-webkit-input-placeholder, .formBox textarea::-webkit-input-placeholder {
  color: #BBBFC1;
}
.formBox input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file])::-moz-placeholder, .formBox textarea::-moz-placeholder {
  color: #BBBFC1;
}
.formBox input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):-ms-input-placeholder, .formBox textarea:-ms-input-placeholder {
  color: #BBBFC1;
}
.formBox input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file])::-ms-input-placeholder, .formBox textarea::-ms-input-placeholder {
  color: #BBBFC1;
}
.formBox input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file])::placeholder,
.formBox textarea::placeholder {
  color: #BBBFC1;
}
.formBox p {
  font-size: 14px;
  color: #333F44;
  line-height: 1.2;
}
@media only screen and (max-width: 1200px) {
  .formBox p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 600px) {
  .formBox p {
    font-size: 12px;
  }
}
.formBox p a {
  color: #000;
  text-decoration: underline;
}
.formBox p a:hover {
  color: #BE1E2D;
}

.form_block .formBox {
  margin: 0 auto;
  width: 337px;
  max-width: 100%;
}
.form_block .formBox .gform_footer {
  text-align: center;
}

.gform_validation_container,
.gform_wrapper .gform_validation_container,
body .gform_wrapper li.gform_validation_container,
body .gform_wrapper .gform_body ul.gform_fields li.gfield.gform_validation_container,
body .gform_wrapper ul.gform_fields li.gfield.gform_validation_container {
  display: none;
  position: absolute;
  left: -9000px;
}

.post-cont .post-thumbnail {
  width: 100%;
  padding-top: 67.25%;
  position: relative;
  margin-bottom: 19px;
}
.post-cont .post-thumbnail a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.post-cont .post-thumbnail a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.post-cont .post-thumbnail a img {
  width: 100%;
  height: 100%;
}
.post-cont__date {
  font-size: 14px;
  color: #333F44;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1200px) {
  .post-cont__date {
    font-size: 16px;
  }
}
@media only screen and (max-width: 600px) {
  .post-cont__date {
    font-size: 12px;
  }
}
.post-cont__title {
  display: block;
  width: 100%;
  font-size: 18px;
  color: #000;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1200px) {
  .post-cont__title {
    font-size: 18px;
  }
}
@media only screen and (max-width: 600px) {
  .post-cont__title {
    font-size: 14px;
  }
}
.post-cont__title:hover {
  color: #BE1E2D;
}
.post-cont__link {
  font-size: 14px;
  color: #000;
  text-decoration: underline;
}
@media only screen and (max-width: 1200px) {
  .post-cont__link {
    font-size: 16px;
  }
}
@media only screen and (max-width: 600px) {
  .post-cont__link {
    font-size: 12px;
  }
}
.post-cont__link:hover {
  color: #BE1E2D;
}

.archive-cont__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 50px 1fr 50px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px 50px;
}
@media only screen and (max-width: 1050px) {
  .archive-cont__list {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 900px) {
  .archive-cont__list {
    -ms-grid-columns: 1fr 50px 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 600px) {
  .archive-cont__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
  }
}

.single-header__title {
  margin: 0 auto;
  width: 985px;
  max-width: 100%;
  font-size: 38px;
  text-align: center;
}
@media only screen and (max-width: 1200px) {
  .single-header__title {
    font-size: 32px;
  }
}
@media only screen and (max-width: 600px) {
  .single-header__title {
    font-size: 23px;
  }
}
.single-header__introduction {
  margin: 0 auto;
  width: 773px;
  max-width: 100%;
  font-size: 24px;
  line-height: 1.2;
  color: #333F44;
  text-align: center;
  margin-top: 30px;
}
@media only screen and (max-width: 1200px) {
  .single-header__introduction {
    font-size: 24px;
  }
}
@media only screen and (max-width: 600px) {
  .single-header__introduction {
    font-size: 18px;
  }
}
.single-header__date {
  margin: 0 auto;
  width: 773px;
  max-width: 100%;
  font-size: 14px;
  color: #333F44;
  text-align: center;
  margin-top: 30px;
}
@media only screen and (max-width: 1200px) {
  .single-header__date {
    font-size: 16px;
  }
}
@media only screen and (max-width: 600px) {
  .single-header__date {
    font-size: 12px;
  }
}
.single-header .post-thumbnail {
  margin-top: 70px;
  width: 100%;
}
.single-header .post-thumbnail img {
  width: 100%;
  height: auto;
}

.single-content {
  padding: 80px 0 168px 0;
}
.single-content__cont {
  margin: 0 auto;
  width: 620px;
  max-width: 100%;
}
.single-content__cont h1,
.single-content__cont h2,
.single-content__cont h3,
.single-content__cont h4,
.single-content__cont h5,
.single-content__cont h6 {
  color: #000;
  margin-bottom: 20px;
}
.single-content__cont h1 {
  font-size: 42px;
}
@media only screen and (max-width: 1200px) {
  .single-content__cont h1 {
    font-size: 38px;
  }
}
@media only screen and (max-width: 600px) {
  .single-content__cont h1 {
    font-size: 28px;
  }
}
.single-content__cont h2 {
  font-size: 38px;
}
@media only screen and (max-width: 1200px) {
  .single-content__cont h2 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 600px) {
  .single-content__cont h2 {
    font-size: 23px;
  }
}
.single-content__cont h3 {
  font-size: 34px;
}
@media only screen and (max-width: 1200px) {
  .single-content__cont h3 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 600px) {
  .single-content__cont h3 {
    font-size: 20px;
  }
}
.single-content__cont h4 {
  font-size: 24px;
}
@media only screen and (max-width: 1200px) {
  .single-content__cont h4 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 600px) {
  .single-content__cont h4 {
    font-size: 18px;
  }
}
.single-content__cont h5 {
  font-size: 18px;
}
@media only screen and (max-width: 1200px) {
  .single-content__cont h5 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 600px) {
  .single-content__cont h5 {
    font-size: 14px;
  }
}
.single-content__cont h6 {
  font-size: 14px;
}
@media only screen and (max-width: 1200px) {
  .single-content__cont h6 {
    font-size: 16px;
  }
}
@media only screen and (max-width: 600px) {
  .single-content__cont h6 {
    font-size: 12px;
  }
}
.single-content__cont p {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 1em;
}
@media only screen and (max-width: 1200px) {
  .single-content__cont p {
    font-size: 18px;
  }
}
@media only screen and (max-width: 600px) {
  .single-content__cont p {
    font-size: 14px;
  }
}
.single-content__cont ul,
.single-content__cont ol {
  padding-left: 15px;
  margin-bottom: 28px;
  line-height: 1.6;
}
.single-content__cont ul li {
  list-style: disc;
}
.single-content__cont a {
  color: #000;
}
.single-content__cont a:hover {
  text-decoration: underline;
}
.single-content__cont blockquote {
  padding-left: 30px;
  border-left: 3px solid #000;
}
.single-content__cont blockquote p {
  font-size: 24px;
}
@media only screen and (max-width: 1200px) {
  .single-content__cont blockquote p {
    font-size: 24px;
  }
}
@media only screen and (max-width: 600px) {
  .single-content__cont blockquote p {
    font-size: 18px;
  }
}
.single-content__cont img {
  width: auto;
  height: auto;
  max-width: 100%;
  margin: 0 0 28px 0;
}
.single-content__cont .alignleft {
  float: left;
  max-width: 50%;
  margin-right: 30px;
}
@media only screen and (max-width: 750px) {
  .single-content__cont .alignleft {
    max-width: 100%;
  }
}
.single-content__cont .aligncenter {
  margin: 30px auto;
  display: block;
}
.single-content__cont .alignright {
  float: right;
  max-width: 50%;
  margin-left: 30px;
}
@media only screen and (max-width: 750px) {
  .single-content__cont .alignright {
    max-width: 100%;
  }
}

@media only screen and (max-width: 1050px) {
  .latest_news {
    padding: 0 0 0 33px;
  }
}
.latest_news__cont {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 50px 1fr 50px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px 50px;
}
@media only screen and (max-width: 600px) {
  .latest_news__cont {
    width: 100%;
    padding-right: 27%;
  }
}
.latest_news__cont .slick-list {
  overflow: visible;
}
.latest_news__cont .slick-slide {
  margin-right: 40px;
}
.latest_news__cont .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 7px 0 23.5px;
  width: 100vw;
  padding: 0 30px;
  margin-left: -30px;
  margin-top: 48px;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.latest_news__cont .slick-dots li {
  margin: 0 23.5px;
  position: relative;
}
.latest_news__cont .slick-dots li * {
  font-size: 14px;
}
@media only screen and (max-width: 1200px) {
  .latest_news__cont .slick-dots li * {
    font-size: 16px;
  }
}
@media only screen and (max-width: 600px) {
  .latest_news__cont .slick-dots li * {
    font-size: 12px;
  }
}
.latest_news__cont .slick-dots li:before {
  position: absolute;
  left: -17px;
  top: 4px;
  width: 12px;
  height: 12px;
  border: 1px solid #000;
  content: "";
  cursor: pointer;
}
.latest_news__cont .slick-dots li.slick-active:before {
  border: 1px solid #BE1E2D;
  background: #BE1E2D;
}
.latest_news .posts_grid__cont {
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
}
.latest_news .post-cont .post-thumbnail {
  width: 100%;
  padding-top: 67.25%;
  position: relative;
  margin-bottom: 19px;
}
.latest_news .post-cont .post-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.breadcrumb,
.woocommerce-breadcrumb {
  font-size: 14px;
  color: #333F44;
  width: 100%;
  text-align: center;
}
@media only screen and (max-width: 1200px) {
  .breadcrumb,
  .woocommerce-breadcrumb {
    font-size: 16px;
  }
}
@media only screen and (max-width: 600px) {
  .breadcrumb,
  .woocommerce-breadcrumb {
    font-size: 12px;
  }
}
.breadcrumb span,
.breadcrumb a,
.woocommerce-breadcrumb span,
.woocommerce-breadcrumb a {
  display: inline-block;
  position: relative;
  color: #333F44;
  margin: 0 15px 15px 15px;
}
.breadcrumb span:before,
.breadcrumb a:before,
.woocommerce-breadcrumb span:before,
.woocommerce-breadcrumb a:before {
  position: absolute;
  top: 0;
  left: -15px;
  width: 1px;
  height: 100%;
  background: #333F44;
  content: "";
}
.breadcrumb span:nth-child(1):before,
.breadcrumb a:nth-child(1):before,
.woocommerce-breadcrumb span:nth-child(1):before,
.woocommerce-breadcrumb a:nth-child(1):before {
  display: none;
}
.breadcrumb a:hover,
.woocommerce-breadcrumb a:hover {
  color: #000;
}

.error-404 {
  position: relative;
  overflow: hidden;
  z-index: 9;
  top: -110px;
}
.error-404::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 33.33%;
  height: 30px;
  background-color: #ffffff;
  z-index: 2;
}
@media only screen and (min-width: 900px) {
  .error-404::before {
    height: 65px;
  }
}
@media only screen and (min-width: 1440px) {
  .error-404::before {
    height: 95px;
  }
}
.error-404::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 33.33%;
  height: 20px;
  background-color: #ffffff;
  z-index: 2;
}
@media only screen and (min-width: 900px) {
  .error-404::after {
    height: 35px;
  }
}
@media only screen and (min-width: 1440px) {
  .error-404::after {
    height: 55px;
  }
}
.error-404__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.error-404__background img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.error-404__content {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 50px;
  width: 100%;
}
@media only screen and (min-width: 900px) {
  .error-404__content {
    padding-block: 95px 125px;
  }
}
.error-404__content-text {
  text-align: center;
}
@media only screen and (max-width: 1050px) {
  .error-404__content-text {
    padding-top: 50px;
  }
}
.error-404__content-text img {
  max-width: 50%;
}
@media only screen and (min-width: 1050px) {
  .error-404__content-text img {
    max-width: 100%;
  }
}
.error-404__content-text-title {
  margin-top: 15px;
  font-family: "Cadillac Gothic", sans-serif;
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media only screen and (min-width: 900px) {
  .error-404__content-text-title {
    margin-top: 90px;
    font-size: 38px;
    font-family: "Cadillac Gothic", sans-serif;
    line-height: 1.2;
  }
}
@media only screen and (min-width: 900px) and (max-width: 1200px) {
  .error-404__content-text-title {
    font-size: 32px;
  }
}
@media only screen and (min-width: 900px) and (max-width: 600px) {
  .error-404__content-text-title {
    font-size: 23px;
  }
}
@media only screen and (max-width: 900px) {
  .error-404__content-text-title {
    font-size: 17px;
  }
}
.error-404__content-text-copy {
  margin-top: 40px;
  margin-bottom: 20px;
  font-family: "Cadillac Gothic", sans-serif;
  font-stretch: extra-expanded;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.1em;
}
@media only screen and (min-width: 900px) {
  .error-404__content-text-copy {
    margin-block: 50px 45px;
    font-size: 21px;
  }
}
.error-404__content-text-copy strong {
  font-weight: 700;
}
.error-404__content-text-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
}

.site-content .hero_simple__title {
  font-family: "Cadillac Gothic", sans-serif;
  padding-bottom: 30px;
  border-bottom: 1px solid #ffffff;
  margin-bottom: 50px;
  text-transform: uppercase;
}
@media only screen and (min-width: 900px) {
  .site-content .hero_simple__title {
    margin-bottom: 80px;
  }
}
.site-content .default_block.paragraph {
  font-family: "Cadillac Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}
@media only screen and (min-width: 900px) {
  .site-content .default_block.paragraph {
    font-size: 20px;
    margin-bottom: 30px;
  }
}
.site-content .default_block.paragraph a {
  color: #ffffff;
  text-decoration: underline;
}
.site-content .default_block.paragraph a:hover {
  text-decoration: none;
}
.site-content .default_block.paragraph strong {
  font-weight: 700;
}
.site-content .default_block.list {
  margin-bottom: 20px;
}
@media only screen and (min-width: 900px) {
  .site-content .default_block.list {
    margin-bottom: 30px;
  }
}
.site-content .default_block.list ul {
  margin-left: 15px;
}
.site-content .default_block.list ul li {
  list-style: inherit;
  font-family: "Cadillac Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
@media only screen and (min-width: 900px) {
  .site-content .default_block.list ul li {
    font-size: 20px;
  }
}
.site-content .default_block.list ul li a {
  color: #ffffff;
  text-decoration: underline;
}
.site-content .default_block.list ul li a:hover {
  text-decoration: none;
}
.site-content .default_block.list ol {
  margin-left: 15px;
}
.site-content .default_block.list ol li {
  list-style: inherit;
  font-family: "Cadillac Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
@media only screen and (min-width: 900px) {
  .site-content .default_block.list ol li {
    font-size: 20px;
  }
}
.site-content .default_block.list ol li a {
  color: #ffffff;
  text-decoration: underline;
}
.site-content .default_block.list ol li a:hover {
  text-decoration: none;
}
.site-content .default_block.heading {
  margin-bottom: 20px;
}
@media only screen and (min-width: 900px) {
  .site-content .default_block.heading {
    margin-bottom: 30px;
  }
}
.site-content .default_block.heading .wp-block-heading {
  font-family: "Cadillac Gothic", sans-serif;
}

.btn,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  display: inline-block;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 8px 12px 2px 14px;
  background: #ffffff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  border-radius: 0;
  text-decoration: none;
  border: none;
}
@media only screen and (min-width: 1050px) {
  .btn,
  .woocommerce #respond input#submit,
  .woocommerce a.button,
  .woocommerce button.button,
  .woocommerce input.button {
    padding: 10px 12px 4px 14px;
    gap: 10px;
  }
}
.btn__text,
.woocommerce #respond input#submit__text,
.woocommerce a.button__text,
.woocommerce button.button__text,
.woocommerce input.button__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-family: "Chromatica", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.2em;
  line-height: 1.3;
  text-transform: uppercase;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
@media only screen and (min-width: 1050px) {
  .btn__text,
  .woocommerce #respond input#submit__text,
  .woocommerce a.button__text,
  .woocommerce button.button__text,
  .woocommerce input.button__text {
    font-size: 16px;
  }
}
.btn svg,
.woocommerce #respond input#submit svg,
.woocommerce a.button svg,
.woocommerce button.button svg,
.woocommerce input.button svg {
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  color: #000;
  width: 15px;
}
@media only screen and (min-width: 1050px) {
  .btn svg,
  .woocommerce #respond input#submit svg,
  .woocommerce a.button svg,
  .woocommerce button.button svg,
  .woocommerce input.button svg {
    width: 18px;
  }
}
.btn .icon,
.woocommerce #respond input#submit .icon,
.woocommerce a.button .icon,
.woocommerce button.button .icon,
.woocommerce input.button .icon {
  color: #000;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.btn:hover, .btn:focus,
.woocommerce #respond input#submit:hover,
.woocommerce #respond input#submit:focus,
.woocommerce a.button:hover,
.woocommerce a.button:focus,
.woocommerce button.button:hover,
.woocommerce button.button:focus,
.woocommerce input.button:hover,
.woocommerce input.button:focus {
  background-color: #000;
  text-decoration: none;
}
.btn:hover svg,
.btn:hover .icon,
.btn:hover .btn__text, .btn:focus svg,
.btn:focus .icon,
.btn:focus .btn__text,
.woocommerce #respond input#submit:hover svg,
.woocommerce #respond input#submit:hover .icon,
.woocommerce #respond input#submit:hover .btn__text,
.woocommerce #respond input#submit:focus svg,
.woocommerce #respond input#submit:focus .icon,
.woocommerce #respond input#submit:focus .btn__text,
.woocommerce a.button:hover svg,
.woocommerce a.button:hover .icon,
.woocommerce a.button:hover .btn__text,
.woocommerce a.button:focus svg,
.woocommerce a.button:focus .icon,
.woocommerce a.button:focus .btn__text,
.woocommerce button.button:hover svg,
.woocommerce button.button:hover .icon,
.woocommerce button.button:hover .btn__text,
.woocommerce button.button:focus svg,
.woocommerce button.button:focus .icon,
.woocommerce button.button:focus .btn__text,
.woocommerce input.button:hover svg,
.woocommerce input.button:hover .icon,
.woocommerce input.button:hover .btn__text,
.woocommerce input.button:focus svg,
.woocommerce input.button:focus .icon,
.woocommerce input.button:focus .btn__text {
  color: #ffffff;
}
.btn--secondary,
.woocommerce #respond input#submit--secondary,
.woocommerce a.button--secondary,
.woocommerce button.button--secondary,
.woocommerce input.button--secondary {
  background: #000;
}
.btn--secondary svg,
.btn--secondary .icon,
.btn--secondary .btn__text,
.woocommerce #respond input#submit--secondary svg,
.woocommerce #respond input#submit--secondary .icon,
.woocommerce #respond input#submit--secondary .btn__text,
.woocommerce a.button--secondary svg,
.woocommerce a.button--secondary .icon,
.woocommerce a.button--secondary .btn__text,
.woocommerce button.button--secondary svg,
.woocommerce button.button--secondary .icon,
.woocommerce button.button--secondary .btn__text,
.woocommerce input.button--secondary svg,
.woocommerce input.button--secondary .icon,
.woocommerce input.button--secondary .btn__text {
  color: #ffffff;
}
.btn--secondary:hover, .btn--secondary:focus,
.woocommerce #respond input#submit--secondary:hover,
.woocommerce #respond input#submit--secondary:focus,
.woocommerce a.button--secondary:hover,
.woocommerce a.button--secondary:focus,
.woocommerce button.button--secondary:hover,
.woocommerce button.button--secondary:focus,
.woocommerce input.button--secondary:hover,
.woocommerce input.button--secondary:focus {
  background: #ffffff;
}
.btn--secondary:hover svg,
.btn--secondary:hover .icon,
.btn--secondary:hover .btn__text, .btn--secondary:focus svg,
.btn--secondary:focus .icon,
.btn--secondary:focus .btn__text,
.woocommerce #respond input#submit--secondary:hover svg,
.woocommerce #respond input#submit--secondary:hover .icon,
.woocommerce #respond input#submit--secondary:hover .btn__text,
.woocommerce #respond input#submit--secondary:focus svg,
.woocommerce #respond input#submit--secondary:focus .icon,
.woocommerce #respond input#submit--secondary:focus .btn__text,
.woocommerce a.button--secondary:hover svg,
.woocommerce a.button--secondary:hover .icon,
.woocommerce a.button--secondary:hover .btn__text,
.woocommerce a.button--secondary:focus svg,
.woocommerce a.button--secondary:focus .icon,
.woocommerce a.button--secondary:focus .btn__text,
.woocommerce button.button--secondary:hover svg,
.woocommerce button.button--secondary:hover .icon,
.woocommerce button.button--secondary:hover .btn__text,
.woocommerce button.button--secondary:focus svg,
.woocommerce button.button--secondary:focus .icon,
.woocommerce button.button--secondary:focus .btn__text,
.woocommerce input.button--secondary:hover svg,
.woocommerce input.button--secondary:hover .icon,
.woocommerce input.button--secondary:hover .btn__text,
.woocommerce input.button--secondary:focus svg,
.woocommerce input.button--secondary:focus .icon,
.woocommerce input.button--secondary:focus .btn__text {
  color: #000;
}
.btn--outline,
.woocommerce #respond input#submit--outline,
.woocommerce a.button--outline,
.woocommerce button.button--outline,
.woocommerce input.button--outline {
  padding: 8px 30px;
  border: 8px solid #000;
  background: transparent;
}
.btn--outline .btn__text,
.woocommerce #respond input#submit--outline .btn__text,
.woocommerce a.button--outline .btn__text,
.woocommerce button.button--outline .btn__text,
.woocommerce input.button--outline .btn__text {
  font-family: "Cadillac Gothic", sans-serif;
  font-stretch: extra-expanded;
  letter-spacing: 0.2em;
  font-size: 14px;
  color: #000;
  letter-spacing: 0.2em;
}
.btn--outline .icon,
.btn--outline svg,
.woocommerce #respond input#submit--outline .icon,
.woocommerce #respond input#submit--outline svg,
.woocommerce a.button--outline .icon,
.woocommerce a.button--outline svg,
.woocommerce button.button--outline .icon,
.woocommerce button.button--outline svg,
.woocommerce input.button--outline .icon,
.woocommerce input.button--outline svg {
  display: none;
}
.btn--outline:hover, .btn--outline:focus,
.woocommerce #respond input#submit--outline:hover,
.woocommerce #respond input#submit--outline:focus,
.woocommerce a.button--outline:hover,
.woocommerce a.button--outline:focus,
.woocommerce button.button--outline:hover,
.woocommerce button.button--outline:focus,
.woocommerce input.button--outline:hover,
.woocommerce input.button--outline:focus {
  background: #000;
}
.btn--outline:hover .btn__text, .btn--outline:focus .btn__text,
.woocommerce #respond input#submit--outline:hover .btn__text,
.woocommerce #respond input#submit--outline:focus .btn__text,
.woocommerce a.button--outline:hover .btn__text,
.woocommerce a.button--outline:focus .btn__text,
.woocommerce button.button--outline:hover .btn__text,
.woocommerce button.button--outline:focus .btn__text,
.woocommerce input.button--outline:hover .btn__text,
.woocommerce input.button--outline:focus .btn__text {
  color: #ffffff;
}
.btn--outline-white,
.woocommerce #respond input#submit--outline-white,
.woocommerce a.button--outline-white,
.woocommerce button.button--outline-white,
.woocommerce input.button--outline-white {
  padding: 10px 30px 8px;
  border: 8px solid #ffffff;
  background: transparent;
}
.btn--outline-white .btn__text,
.woocommerce #respond input#submit--outline-white .btn__text,
.woocommerce a.button--outline-white .btn__text,
.woocommerce button.button--outline-white .btn__text,
.woocommerce input.button--outline-white .btn__text {
  font-family: "Cadillac Gothic", sans-serif;
  font-stretch: extra-expanded;
  letter-spacing: 0.2em;
  font-size: 14px;
  color: #ffffff;
  letter-spacing: 0.2em;
}
.btn--outline-white .icon,
.btn--outline-white svg,
.woocommerce #respond input#submit--outline-white .icon,
.woocommerce #respond input#submit--outline-white svg,
.woocommerce a.button--outline-white .icon,
.woocommerce a.button--outline-white svg,
.woocommerce button.button--outline-white .icon,
.woocommerce button.button--outline-white svg,
.woocommerce input.button--outline-white .icon,
.woocommerce input.button--outline-white svg {
  display: none;
}
.btn--outline-white:hover, .btn--outline-white:focus,
.woocommerce #respond input#submit--outline-white:hover,
.woocommerce #respond input#submit--outline-white:focus,
.woocommerce a.button--outline-white:hover,
.woocommerce a.button--outline-white:focus,
.woocommerce button.button--outline-white:hover,
.woocommerce button.button--outline-white:focus,
.woocommerce input.button--outline-white:hover,
.woocommerce input.button--outline-white:focus {
  background: #ffffff;
}
.btn--outline-white:hover svg,
.btn--outline-white:hover .icon,
.btn--outline-white:hover .btn__text, .btn--outline-white:focus svg,
.btn--outline-white:focus .icon,
.btn--outline-white:focus .btn__text,
.woocommerce #respond input#submit--outline-white:hover svg,
.woocommerce #respond input#submit--outline-white:hover .icon,
.woocommerce #respond input#submit--outline-white:hover .btn__text,
.woocommerce #respond input#submit--outline-white:focus svg,
.woocommerce #respond input#submit--outline-white:focus .icon,
.woocommerce #respond input#submit--outline-white:focus .btn__text,
.woocommerce a.button--outline-white:hover svg,
.woocommerce a.button--outline-white:hover .icon,
.woocommerce a.button--outline-white:hover .btn__text,
.woocommerce a.button--outline-white:focus svg,
.woocommerce a.button--outline-white:focus .icon,
.woocommerce a.button--outline-white:focus .btn__text,
.woocommerce button.button--outline-white:hover svg,
.woocommerce button.button--outline-white:hover .icon,
.woocommerce button.button--outline-white:hover .btn__text,
.woocommerce button.button--outline-white:focus svg,
.woocommerce button.button--outline-white:focus .icon,
.woocommerce button.button--outline-white:focus .btn__text,
.woocommerce input.button--outline-white:hover svg,
.woocommerce input.button--outline-white:hover .icon,
.woocommerce input.button--outline-white:hover .btn__text,
.woocommerce input.button--outline-white:focus svg,
.woocommerce input.button--outline-white:focus .icon,
.woocommerce input.button--outline-white:focus .btn__text {
  color: #000;
}
.btn.icon-play .icon,
.woocommerce #respond input#submit.icon-play .icon,
.woocommerce a.button.icon-play .icon,
.woocommerce button.button.icon-play .icon,
.woocommerce input.button.icon-play .icon {
  width: 61px;
  height: 61px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  border: 4px solid currentColor;
}

.hero-homepage {
  width: 100%;
  position: relative;
  background-color: #000;
  top: -110px;
  margin-bottom: -110px;
}
.hero-homepage__content {
  position: relative;
  margin-top: 110px;
  padding: 50px 15px 60px;
}
.hero-homepage__content .container {
  height: 100%;
  z-index: 4;
  position: relative;
}
.hero-homepage__content .image-background:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.5;
}
@media only screen and (min-width: 900px) {
  .hero-homepage__content {
    position: absolute;
    z-index: 24;
    width: 100%;
    max-width: 33%;
    top: 36%;
    left: 33.33%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    margin-top: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .hero-homepage__content .container {
    padding: 0;
  }
  .hero-homepage__content .image-background {
    display: none;
  }
}
@media only screen and (min-width: 1600px) {
  .hero-homepage__content {
    top: 47%;
    max-width: 35%;
  }
}
@media only screen and (min-width: 1920px) {
  .hero-homepage__content {
    top: 53%;
  }
}
.hero-homepage__title {
  color: white;
  font-size: 26px;
  font-family: "Cadillac Gothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.25;
  margin-bottom: 24px;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
@media (max-width: 1200px) and (min-width: 899px) {
  .hero-homepage__title br {
    display: none;
  }
}
@media only screen and (max-width: 600px) {
  .hero-homepage__title br {
    display: none;
  }
}
@media only screen and (min-width: 900px) {
  .hero-homepage__title {
    color: black;
    text-shadow: #fff 1px 1px 2px;
    min-width: 435px;
  }
}
@media only screen and (min-width: 1600px) {
  .hero-homepage__title {
    margin-bottom: 48px;
    font-size: 28px;
  }
}
.hero-homepage__button {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.hero-homepage__drivers {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}
.hero-homepage__drivers .drivers-bg-desktop {
  display: none;
}
@media only screen and (min-width: 900px) {
  .hero-homepage__drivers {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    overflow: hidden;
    min-height: 720px;
  }
  .hero-homepage__drivers .drivers-bg-desktop {
    display: block;
  }
  .hero-homepage__drivers .drivers-bg-desktop .icon {
    position: relative;
    left: 0;
    z-index: 22;
    display: block;
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding-bottom: 80px;
  }
  .hero-homepage__drivers .drivers-bg-desktop .icon:before {
    content: "";
    z-index: 1;
    position: absolute;
    top: calc(100% - 81px);
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
  }
  .hero-homepage__drivers .drivers-bg-desktop .icon svg {
    width: 100%;
    height: auto;
    margin-top: auto;
  }
}
.hero-homepage__driver {
  position: relative;
}
.hero-homepage__driver:last-of-type .hero-homepage__driver-info {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.hero-homepage__driver:last-of-type .hero-homepage__driver-name {
  text-align: left;
}
@media only screen and (min-width: 900px) {
  .hero-homepage__driver:last-of-type .hero-homepage__driver-name {
    text-align: right;
    padding-right: 0;
  }
}
.hero-homepage__driver-desktop {
  display: none;
}
@media only screen and (min-width: 900px) {
  .hero-homepage__driver-desktop {
    display: block;
    -ms-grid-column-span: 2;
    grid-column: span 2;
  }
}
.hero-homepage__driver-mobile {
  display: block;
}
@media only screen and (min-width: 900px) {
  .hero-homepage__driver-mobile {
    display: none;
  }
}
.hero-homepage__driver-image {
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: auto;
}
.hero-homepage__driver-image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-homepage__driver-image .drivers-bg-mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media only screen and (min-width: 900px) {
  .hero-homepage__driver-image .drivers-bg-mobile {
    display: none;
  }
}
.hero-homepage__driver-image .drivers-bg-mobile svg {
  position: relative;
  z-index: 5;
  width: 100%;
  height: auto;
  bottom: 25px;
}
.hero-homepage__driver-image .drivers-bg-mobile .icon:before {
  content: "";
  z-index: 1;
  position: absolute;
  top: calc(100% - 31px);
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
}
.hero-homepage__driver-info {
  position: absolute;
  z-index: 6;
  bottom: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 15px;
  padding-inline: 10px;
  pointer-events: none;
}
@media only screen and (min-width: 900px) {
  .hero-homepage__driver-info {
    z-index: 50;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 16px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-bottom: 80px;
    padding-inline: 25px;
  }
}
@media only screen and (min-width: 1600px) {
  .hero-homepage__driver-info {
    padding-inline: 50px;
    gap: 30px;
  }
}
.hero-homepage__driver-number {
  width: 80px;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.hero-homepage__driver-number img {
  width: 100%;
  height: auto;
}
@media only screen and (min-width: 900px) {
  .hero-homepage__driver-number {
    width: 100%;
    max-width: 35.5%;
  }
}
@media only screen and (min-width: 1600px) {
  .hero-homepage__driver-number {
    max-width: 35.5%;
  }
}
.hero-homepage__driver-name {
  width: 40%;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.42em;
  text-align: right;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
@media only screen and (min-width: 900px) {
  .hero-homepage__driver-name {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 40%;
    font-size: 18px;
    text-align: start;
  }
}
@media only screen and (min-width: 1050px) {
  .hero-homepage__driver-name {
    font-size: 24px;
    line-height: 1.5;
  }
}
@media only screen and (min-width: 1600px) {
  .hero-homepage__driver-name {
    font-size: 36px;
  }
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  position: relative;
  z-index: 24;
  background: transparent;
}
.header__top-bar {
  width: 100vw;
  margin-left: -60px;
  background: #8E9497;
  padding: 8px 60px;
  font-size: 14px;
  color: #ffffff;
  text-align: center;
}
@media only screen and (max-width: 1200px) {
  .header__top-bar {
    font-size: 16px;
  }
}
@media only screen and (max-width: 600px) {
  .header__top-bar {
    font-size: 12px;
  }
}
@media only screen and (max-width: 1050px) {
  .header__top-bar {
    margin-left: 0;
    position: relative;
    z-index: 2;
  }
}
.header__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 110px;
  padding: 40px 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__top__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__top__center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__top__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.header__bottom {
  padding: 0;
}
@media only screen and (max-width: 1050px) {
  .header__bottom {
    display: block;
  }
}

.scrolled .header {
  background: #ffffff;
  -webkit-filter: drop-shadow(15px 15px 20px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(15px 15px 20px rgba(0, 0, 0, 0.1));
}
.scrolled .header__top-bar {
  display: none;
}
.scrolled .header__middle {
  padding: 20px 0;
}
@media only screen and (max-width: 1050px) {
  .scrolled .header__middle {
    padding: 20px;
  }
}

.error_template {
  padding: 200px 0;
}
.error_template .page-content {
  width: 50%;
  margin-top: 20px;
}
@media only screen and (max-width: 600px) {
  .error_template .page-content {
    width: 100%;
  }
}

.site-main {
  margin-top: 203px;
}
@media only screen and (max-width: 1050px) {
  .site-main {
    margin-top: 113px;
  }
}

.site-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  padding-top: 60px;
  position: relative;
}
@media only screen and (min-width: 1050px) {
  .site-footer {
    padding-top: 120px;
  }
}
.site-footer__bg svg {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.site-footer__content {
  position: relative;
  background: #ffffff;
  width: 100%;
  margin-top: -1px;
  padding-bottom: 30px;
}
@media only screen and (min-width: 1050px) {
  .site-footer__content {
    padding-bottom: 60px;
  }
}
@media only screen and (min-width: 600px) {
  .site-footer__cont {
    margin-top: -30px;
  }
}
@media only screen and (min-width: 1050px) {
  .site-footer__cont {
    margin-top: -70px;
  }
}
.site-footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 45px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (min-width: 1050px) {
  .site-footer__container {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media only screen and (min-width: 1920px) {
  .site-footer__container {
    max-width: 90%;
    margin: 0 auto;
  }
}
.site-footer__column {
  position: relative;
}
.site-footer__column--socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
@media only screen and (min-width: 600px) {
  .site-footer__column--socials {
    gap: 20px;
  }
}
.site-footer__column--socials svg {
  max-height: 28px;
  width: 28px;
}
@media only screen and (min-width: 1050px) {
  .site-footer__column--socials svg {
    max-height: 45px;
    width: 45px;
  }
}
.site-footer__column--socials-title {
  font-family: "Cadillac Gothic", sans-serif;
  font-size: 17px;
  text-transform: uppercase;
  color: #000;
}
@media only screen and (min-width: 1050px) {
  .site-footer__column--socials-title {
    font-size: 17px;
  }
}
.site-footer__column--logo .site-logo-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.site-footer__column--logo .site-logo-footer.twg-logo img {
  max-width: 75px;
  width: 100%;
}
@media only screen and (min-width: 1050px) {
  .site-footer__column--logo .site-logo-footer.twg-logo img {
    max-width: 135px;
  }
}
.site-footer__column--logo .site-logo-footer.gm-logo img {
  max-width: 60px;
  width: 100%;
}
@media only screen and (min-width: 1050px) {
  .site-footer__column--logo .site-logo-footer.gm-logo img {
    max-width: 110px;
  }
}
.site-footer__column--logo .site-logo-footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
@media only screen and (min-width: 1050px) {
  .site-footer__column--logo .site-logo-footer__content {
    gap: 30px;
  }
}
.site-footer__column--logo .site-logo-footer__content-logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 22px;
  position: relative;
}
@media only screen and (min-width: 1050px) {
  .site-footer__column--logo .site-logo-footer__content-logos {
    gap: 40px;
  }
}
.site-footer__column--logo .site-logo-footer__content-logos-separator {
  display: block;
}
.site-footer__column--logo .site-logo-footer__content-logos-separator svg {
  max-height: 60px;
}
@media only screen and (min-width: 1050px) {
  .site-footer__column--logo .site-logo-footer__content-logos-separator svg {
    max-height: 110px;
  }
}
.site-footer__column--logo .site-logo-footer__content-ownership {
  display: block;
  font-family: "Cadillac Gothic", sans-serif;
  font-size: 11px;
  color: #000;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.6em;
}
@media only screen and (min-width: 1050px) {
  .site-footer__column--logo .site-logo-footer__content-ownership {
    font-size: 14px;
    text-align: left;
    letter-spacing: 1em;
  }
}
.site-footer__column--copyright {
  max-width: 445px;
}
.site-footer__column--copyright ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 15px;
  gap: 5px;
}
.site-footer__column--copyright ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
}
.site-footer__column--copyright ul li a {
  font-family: "Cadillac Gothic", sans-serif;
  font-size: 14px;
  color: #000;
  text-decoration: none;
}
@media only screen and (min-width: 1050px) {
  .site-footer__column--copyright ul li a {
    font-size: 16px;
  }
}
.site-footer__column--copyright ul li a:hover {
  text-decoration: underline;
}
.site-footer__column--copyright ul li:not(:last-child)::after {
  content: "-";
  margin: 0 5px;
  font-family: "Cadillac Gothic", sans-serif;
  font-size: 14px;
  color: #000;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (min-width: 1050px) {
  .site-footer__column--copyright ul li:not(:last-child)::after {
    font-size: 16px;
  }
}
.site-footer__column--copyright p {
  margin: 0;
  font-family: "Cadillac Gothic", sans-serif;
  font-size: 14px;
  color: #000;
  text-align: center;
}
@media only screen and (min-width: 1050px) {
  .site-footer__column--copyright p {
    font-size: 16px;
    text-align: left;
  }
}
.site-footer__title {
  font-size: 14px;
  color: #000;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1200px) {
  .site-footer__title {
    font-size: 16px;
  }
}
@media only screen and (max-width: 600px) {
  .site-footer__title {
    font-size: 12px;
  }
}
.site-footer .copyright {
  font-size: 14px;
  color: #000;
}
@media only screen and (max-width: 1200px) {
  .site-footer .copyright {
    font-size: 16px;
  }
}
@media only screen and (max-width: 600px) {
  .site-footer .copyright {
    font-size: 12px;
  }
}

/*!
 * Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 * Copyright 2022 Fonticons, Inc.
 */
:root, :host {
  --fa-style-family-brands: "Font Awesome 6 Brands";
  --fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands";
}

@font-face {
  font-family: "Font Awesome 6 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("webfonts/fa-brands-400.woff2") format("woff2"), url("webfonts/fa-brands-400.ttf") format("truetype");
}
.fab,
.fa-brands {
  font-weight: 400;
  font-family: "Font Awesome 6 Brands";
  font-style: normal;
}

.fa-vimeo-v:before {
  content: "\f27d";
}

.fa-square-instagram:before {
  content: "\e055";
}

.fa-instagram-square:before {
  content: "\e055";
}

.fa-google:before {
  content: "\f1a0";
}

.fa-linkedin-in:before {
  content: "\f0e1";
}

.fa-square-twitter:before {
  content: "\f081";
}

.fa-twitter-square:before {
  content: "\f081";
}

.fa-square-youtube:before {
  content: "\f431";
}

.fa-youtube-square:before {
  content: "\f431";
}

.fa-square-vimeo:before {
  content: "\f194";
}

.fa-vimeo-square:before {
  content: "\f194";
}

.fa-square-pinterest:before {
  content: "\f0d3";
}

.fa-pinterest-square:before {
  content: "\f0d3";
}

.fa-facebook-f:before {
  content: "\f39e";
}

.fa-spotify:before {
  content: "\f1bc";
}

.fa-facebook-messenger:before {
  content: "\f39f";
}

.fa-tiktok:before {
  content: "\e07b";
}

.fa-square-facebook:before {
  content: "\f082";
}

.fa-facebook-square:before {
  content: "\f082";
}

.fa-linkedin:before {
  content: "\f08c";
}

.fa-vimeo:before {
  content: "\f40a";
}

.fa-instagram:before {
  content: "\f16d";
}

.fa-facebook:before {
  content: "\f09a";
}

.fa-whatsapp:before {
  content: "\f232";
}

.fa-youtube:before {
  content: "\f167";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-square-whatsapp:before {
  content: "\f40c";
}

.fa-whatsapp-square:before {
  content: "\f40c";
}

:root {
  --f-spinner-width:36px;
  --f-spinner-height:36px;
  --f-spinner-color-1:rgba(0, 0, 0, 0.1);
  --f-spinner-color-2:rgba(17, 24, 28, 0.8);
  --f-spinner-stroke:2.75;
}

.f-spinner {
  margin: auto;
  padding: 0;
  width: var(--f-spinner-width);
  height: var(--f-spinner-height);
}
.f-spinner svg {
  width: 100%;
  height: 100%;
  vertical-align: top;
  -webkit-animation: f-spinner-rotate 2s linear infinite;
          animation: f-spinner-rotate 2s linear infinite;
}
.f-spinner svg * {
  stroke-width: var(--f-spinner-stroke);
  fill: none;
}
.f-spinner svg *:first-child {
  stroke: var(--f-spinner-color-1);
}
.f-spinner svg *:last-child {
  stroke: var(--f-spinner-color-2);
  -webkit-animation: f-spinner-dash 2s ease-in-out infinite;
          animation: f-spinner-dash 2s ease-in-out infinite;
}

@-webkit-keyframes f-spinner-rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes f-spinner-rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes f-spinner-dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
@keyframes f-spinner-dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
.f-throwOutUp {
  -webkit-animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutUp;
          animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutUp;
}

.f-throwOutDown {
  -webkit-animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutDown;
          animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutDown;
}

@-webkit-keyframes f-throwOutUp {
  to {
    -webkit-transform: translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);
            transform: translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);
    opacity: 0;
  }
}

@keyframes f-throwOutUp {
  to {
    -webkit-transform: translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);
            transform: translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);
    opacity: 0;
  }
}
@-webkit-keyframes f-throwOutDown {
  to {
    -webkit-transform: translate3d(0, var(--f-throw-out-distance, 150px), 0);
            transform: translate3d(0, var(--f-throw-out-distance, 150px), 0);
    opacity: 0;
  }
}
@keyframes f-throwOutDown {
  to {
    -webkit-transform: translate3d(0, var(--f-throw-out-distance, 150px), 0);
            transform: translate3d(0, var(--f-throw-out-distance, 150px), 0);
    opacity: 0;
  }
}
.f-zoomInUp {
  -webkit-animation: var(--f-transition-duration, 0.2s) ease 0.1s both f-zoomInUp;
          animation: var(--f-transition-duration, 0.2s) ease 0.1s both f-zoomInUp;
}

.f-zoomOutDown {
  -webkit-animation: var(--f-transition-duration, 0.2s) ease both f-zoomOutDown;
          animation: var(--f-transition-duration, 0.2s) ease both f-zoomOutDown;
}

@-webkit-keyframes f-zoomInUp {
  from {
    -webkit-transform: scale(0.975) translate3d(0, 16px, 0);
            transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1) translate3d(0, 0, 0);
            transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes f-zoomInUp {
  from {
    -webkit-transform: scale(0.975) translate3d(0, 16px, 0);
            transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1) translate3d(0, 0, 0);
            transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes f-zoomOutDown {
  to {
    -webkit-transform: scale(0.975) translate3d(0, 16px, 0);
            transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
}
@keyframes f-zoomOutDown {
  to {
    -webkit-transform: scale(0.975) translate3d(0, 16px, 0);
            transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
}
.f-fadeIn {
  -webkit-animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeIn;
          animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeIn;
  z-index: 2;
}

.f-fadeOut {
  -webkit-animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeOut;
          animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeOut;
  z-index: 1;
}

@-webkit-keyframes f-fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes f-fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes f-fadeOut {
  100% {
    opacity: 0;
  }
}
@keyframes f-fadeOut {
  100% {
    opacity: 0;
  }
}
.f-fadeFastIn {
  -webkit-animation: var(--f-transition-duration, 0.2s) ease-out both f-fadeFastIn;
          animation: var(--f-transition-duration, 0.2s) ease-out both f-fadeFastIn;
  z-index: 2;
}

.f-fadeFastOut {
  -webkit-animation: var(--f-transition-duration, 0.1s) ease-out both f-fadeFastOut;
          animation: var(--f-transition-duration, 0.1s) ease-out both f-fadeFastOut;
  z-index: 2;
}

@-webkit-keyframes f-fadeFastIn {
  0% {
    opacity: 0.75;
  }
  100% {
    opacity: 1;
  }
}

@keyframes f-fadeFastIn {
  0% {
    opacity: 0.75;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes f-fadeFastOut {
  100% {
    opacity: 0;
  }
}
@keyframes f-fadeFastOut {
  100% {
    opacity: 0;
  }
}
.f-fadeSlowIn {
  -webkit-animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowIn;
          animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowIn;
  z-index: 2;
}

.f-fadeSlowOut {
  -webkit-animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowOut;
          animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowOut;
  z-index: 1;
}

@-webkit-keyframes f-fadeSlowIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes f-fadeSlowIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes f-fadeSlowOut {
  100% {
    opacity: 0;
  }
}
@keyframes f-fadeSlowOut {
  100% {
    opacity: 0;
  }
}
.f-crossfadeIn {
  -webkit-animation: var(--f-transition-duration, 0.2s) ease-out both f-crossfadeIn;
          animation: var(--f-transition-duration, 0.2s) ease-out both f-crossfadeIn;
  z-index: 2;
}

.f-crossfadeOut {
  -webkit-animation: calc(var(--f-transition-duration, 0.2s) * 0.5) linear 0.1s both f-crossfadeOut;
          animation: calc(var(--f-transition-duration, 0.2s) * 0.5) linear 0.1s both f-crossfadeOut;
  z-index: 1;
}

@-webkit-keyframes f-crossfadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes f-crossfadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes f-crossfadeOut {
  100% {
    opacity: 0;
  }
}
@keyframes f-crossfadeOut {
  100% {
    opacity: 0;
  }
}
.f-slideIn.from-next {
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext;
          animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext;
}
.f-slideIn.from-prev {
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrev;
          animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrev;
}

.f-slideOut.to-next {
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNext;
          animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNext;
}
.f-slideOut.to-prev {
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutPrev;
          animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutPrev;
}

@-webkit-keyframes f-slideInPrev {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes f-slideInPrev {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes f-slideInNext {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes f-slideInNext {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes f-slideOutNext {
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes f-slideOutNext {
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes f-slideOutPrev {
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes f-slideOutPrev {
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
.f-classicIn.from-next {
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext;
          animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext;
  z-index: 2;
}
.f-classicIn.from-prev {
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInPrev;
          animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInPrev;
  z-index: 2;
}

.f-classicOut.to-next {
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutNext;
          animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutNext;
  z-index: 1;
}
.f-classicOut.to-prev {
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutPrev;
          animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutPrev;
  z-index: 1;
}

@-webkit-keyframes f-classicInNext {
  0% {
    -webkit-transform: translateX(-75px);
            transform: translateX(-75px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes f-classicInNext {
  0% {
    -webkit-transform: translateX(-75px);
            transform: translateX(-75px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes f-classicInPrev {
  0% {
    -webkit-transform: translateX(75px);
            transform: translateX(75px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes f-classicInPrev {
  0% {
    -webkit-transform: translateX(75px);
            transform: translateX(75px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes f-classicOutNext {
  100% {
    -webkit-transform: translateX(-75px);
            transform: translateX(-75px);
    opacity: 0;
  }
}
@keyframes f-classicOutNext {
  100% {
    -webkit-transform: translateX(-75px);
            transform: translateX(-75px);
    opacity: 0;
  }
}
@-webkit-keyframes f-classicOutPrev {
  100% {
    -webkit-transform: translateX(75px);
            transform: translateX(75px);
    opacity: 0;
  }
}
@keyframes f-classicOutPrev {
  100% {
    -webkit-transform: translateX(75px);
            transform: translateX(75px);
    opacity: 0;
  }
}
:root {
  --f-button-width:40px;
  --f-button-height:40px;
  --f-button-border:0;
  --f-button-border-radius:0;
  --f-button-color:#374151;
  --f-button-bg:#f8f8f8;
  --f-button-hover-bg:#e0e0e0;
  --f-button-active-bg:#d0d0d0;
  --f-button-shadow:none;
  --f-button-transition:all 0.15s ease;
  --f-button-transform:none;
  --f-button-svg-width:20px;
  --f-button-svg-height:20px;
  --f-button-svg-stroke-width:1.5;
  --f-button-svg-fill:none;
  --f-button-svg-filter:none;
  --f-button-svg-disabled-opacity:0.65;
}

.f-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  position: relative;
  margin: 0;
  padding: 0;
  width: var(--f-button-width);
  height: var(--f-button-height);
  border: var(--f-button-border);
  border-radius: var(--f-button-border-radius);
  color: var(--f-button-color);
  background: var(--f-button-bg);
  -webkit-box-shadow: var(--f-button-shadow);
          box-shadow: var(--f-button-shadow);
  pointer-events: all;
  cursor: pointer;
  -webkit-transition: var(--f-button-transition);
  transition: var(--f-button-transition);
}
.f-button:active:not([disabled]) {
  background-color: var(--f-button-active-bg);
}
.f-button:focus:not(:focus-visible) {
  outline: none;
}
.f-button:focus-visible {
  outline: none;
  -webkit-box-shadow: inset 0 0 0 var(--f-button-outline, 2px) var(--f-button-outline-color, var(--f-button-color));
          box-shadow: inset 0 0 0 var(--f-button-outline, 2px) var(--f-button-outline-color, var(--f-button-color));
}
.f-button svg {
  width: var(--f-button-svg-width);
  height: var(--f-button-svg-height);
  fill: var(--f-button-svg-fill);
  stroke: currentColor;
  stroke-width: var(--f-button-svg-stroke-width);
  stroke-linecap: round;
  stroke-linejoin: round;
  -webkit-transition: opacity 0.15s ease;
  transition: opacity 0.15s ease;
  -webkit-transform: var(--f-button-transform);
          transform: var(--f-button-transform);
  -webkit-filter: var(--f-button-svg-filter);
          filter: var(--f-button-svg-filter);
  pointer-events: none;
}
.f-button[disabled] {
  cursor: default;
}
.f-button[disabled] svg {
  opacity: var(--f-button-svg-disabled-opacity);
}

@media (hover: hover) {
  .f-button:hover:not([disabled]) {
    color: var(--f-button-hover-color);
    background-color: var(--f-button-hover-bg);
  }
}
.f-carousel__nav .f-button.is-prev, .f-carousel__nav .f-button.is-next {
  position: absolute;
  z-index: 1;
}

.fancybox__nav .f-button.is-prev, .fancybox__nav .f-button.is-next {
  position: absolute;
  z-index: 1;
}

.is-horizontal .f-carousel__nav .f-button.is-prev, .is-horizontal .f-carousel__nav .f-button.is-next {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.is-horizontal .fancybox__nav .f-button.is-prev, .is-horizontal .fancybox__nav .f-button.is-next {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.is-horizontal .f-carousel__nav .f-button.is-prev, .is-horizontal .fancybox__nav .f-button.is-prev {
  left: var(--f-button-prev-pos);
}
.is-horizontal .f-carousel__nav .f-button.is-next, .is-horizontal .fancybox__nav .f-button.is-next {
  right: var(--f-button-next-pos);
}
.is-horizontal.is-rtl .f-carousel__nav .f-button.is-prev, .is-horizontal.is-rtl .fancybox__nav .f-button.is-prev {
  left: auto;
  right: var(--f-button-next-pos);
}
.is-horizontal.is-rtl .f-carousel__nav .f-button.is-next, .is-horizontal.is-rtl .fancybox__nav .f-button.is-next {
  right: auto;
  left: var(--f-button-prev-pos);
}

.is-vertical .f-carousel__nav .f-button.is-prev, .is-vertical .f-carousel__nav .f-button.is-next {
  top: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.is-vertical .fancybox__nav .f-button.is-prev, .is-vertical .fancybox__nav .f-button.is-next {
  top: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.is-vertical .f-carousel__nav .f-button.is-prev, .is-vertical .fancybox__nav .f-button.is-prev {
  top: var(--f-button-next-pos);
}
.is-vertical .f-carousel__nav .f-button.is-next, .is-vertical .fancybox__nav .f-button.is-next {
  bottom: var(--f-button-next-pos);
}
.is-vertical .f-carousel__nav .f-button.is-prev svg, .is-vertical .f-carousel__nav .f-button.is-next svg {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.is-vertical .fancybox__nav .f-button.is-prev svg, .is-vertical .fancybox__nav .f-button.is-next svg {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.f-carousel__nav .f-button:disabled, .fancybox__nav .f-button:disabled {
  pointer-events: none;
}

html.with-fancybox {
  width: auto;
  overflow: visible;
  scroll-behavior: auto;
}
html.with-fancybox body {
  -ms-touch-action: none;
      touch-action: none;
}
html.with-fancybox body.hide-scrollbar {
  width: auto;
  margin-right: calc(var(--fancybox-body-margin, 0px) + var(--fancybox-scrollbar-compensate, 0px));
  overflow: hidden !important;
  overscroll-behavior-y: none;
}

.fancybox__container {
  --fancybox-color:#dbdbdb;
  --fancybox-hover-color:#fff;
  --fancybox-bg:rgba(24, 24, 27, 0.98);
  --fancybox-slide-gap:10px;
  --f-spinner-width:50px;
  --f-spinner-height:50px;
  --f-spinner-color-1:rgba(255, 255, 255, 0.1);
  --f-spinner-color-2:#bbb;
  --f-spinner-stroke:3.65;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  direction: ltr;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: #f8f8f8;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  overflow: visible;
  z-index: var(--fancybox-zIndex, 1050);
  outline: none;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overscroll-behavior-y: contain;
}
.fancybox__container * {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}
.fancybox__container *::before, .fancybox__container *::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}
.fancybox__container::-ms-backdrop {
  background-color: rgba(0, 0, 0, 0);
}
.fancybox__container::backdrop {
  background-color: rgba(0, 0, 0, 0);
}

.fancybox__backdrop {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  background: var(--fancybox-bg);
  opacity: var(--fancybox-opacity, 1);
  will-change: opacity;
}

.fancybox__carousel {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 0;
  z-index: 10;
  overflow-y: visible;
  overflow-x: clip;
}

.fancybox__viewport {
  width: 100%;
  height: 100%;
}
.fancybox__viewport.is-draggable {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}
.fancybox__viewport.is-dragging {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  height: 100%;
}

.fancybox__slide {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 var(--fancybox-slide-gap) 0 0;
  padding: 4px;
  overflow: auto;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn {
  padding-top: 40px;
}

.fancybox__slide.has-iframe, .fancybox__slide.has-video, .fancybox__slide.has-html5video {
  overflow: hidden;
}
.fancybox__slide.has-image {
  overflow: hidden;
}
.fancybox__slide.has-image.is-animating, .fancybox__slide.has-image.is-selected {
  overflow: visible;
}
.fancybox__slide::before, .fancybox__slide::after {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 0px;
          flex: 0 0 0;
  margin: auto;
}

.fancybox__content {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  margin: 0;
  padding: 2rem;
  max-width: 100%;
  color: var(--fancybox-content-color, #374151);
  background: var(--fancybox-content-bg, #fff);
  cursor: default;
  border-radius: 0;
  z-index: 20;
}

.is-loading .fancybox__content {
  opacity: 0;
}

.is-draggable .fancybox__content {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.can-zoom_in .fancybox__content {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.can-zoom_out .fancybox__content {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.is-dragging .fancybox__content {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox__content [data-selectable], .fancybox__content [contenteditable] {
  cursor: auto;
}

.fancybox__slide.has-image > .fancybox__content {
  padding: 0;
  background: rgba(0, 0, 0, 0);
  min-height: 1px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  -webkit-transition: none;
  transition: none;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.fancybox__slide.has-image > .fancybox__content > picture > img {
  width: 100%;
  height: auto;
  max-height: 100%;
}

.is-zooming-in .fancybox__viewport:not(.is-dragging) .fancybox__slide:not(.is-selected) .fancybox__content, .is-zooming-out .fancybox__viewport:not(.is-dragging) .fancybox__slide:not(.is-selected) .fancybox__content {
  visibility: hidden;
}

.is-animating .fancybox__content, .is-dragging .fancybox__content {
  -webkit-filter: blur(0px);
          filter: blur(0px);
  will-change: transform, width, height;
}

.fancybox-image {
  margin: auto;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.fancybox__caption {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  max-width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 0;
  padding: 14px 0 4px 0;
  overflow-wrap: anywhere;
  line-height: 1.375;
  color: var(--fancybox-color, currentColor);
  opacity: var(--fancybox-opacity, 1);
  cursor: auto;
  visibility: visible;
}

.is-loading .fancybox__caption, .is-closing .fancybox__caption {
  opacity: 0;
  visibility: hidden;
}

.is-compact .fancybox__caption {
  padding-bottom: 0;
}

.f-button.is-close-btn {
  --f-button-svg-stroke-width:2;
  position: absolute;
  top: 0;
  right: 8px;
  z-index: 40;
}

.fancybox__content > .f-button.is-close-btn {
  --f-button-width:34px;
  --f-button-height:34px;
  --f-button-border-radius:4px;
  --f-button-color:var(--fancybox-color, #fff);
  --f-button-hover-color:var(--fancybox-color, #fff);
  --f-button-bg:transparent;
  --f-button-hover-bg:transparent;
  --f-button-active-bg:transparent;
  --f-button-svg-width:22px;
  --f-button-svg-height:22px;
  position: absolute;
  top: -38px;
  right: 0;
  opacity: 0.75;
}

.is-loading .fancybox__content > .f-button.is-close-btn, .is-zooming-out .fancybox__content > .f-button.is-close-btn {
  visibility: hidden;
}

.fancybox__content > .f-button.is-close-btn:hover {
  opacity: 1;
}

.fancybox__footer {
  padding: 0;
  margin: 0;
  position: relative;
}
.fancybox__footer .fancybox__caption {
  width: 100%;
  padding: 24px;
  opacity: var(--fancybox-opacity, 1);
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.is-compact .fancybox__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(24, 24, 27, 0.5);
}
.is-compact .fancybox__footer .fancybox__caption {
  padding: 12px;
}
.is-compact .fancybox__content > .f-button.is-close-btn {
  --f-button-border-radius:50%;
  --f-button-color:#fff;
  --f-button-hover-color:#fff;
  --f-button-outline-color:#000;
  --f-button-bg:rgba(0, 0, 0, 0.6);
  --f-button-active-bg:rgba(0, 0, 0, 0.6);
  --f-button-hover-bg:rgba(0, 0, 0, 0.6);
  --f-button-svg-width:18px;
  --f-button-svg-height:18px;
  --f-button-svg-filter:none;
  top: 5px;
  right: 5px;
}

.fancybox__nav {
  --f-button-width:50px;
  --f-button-height:50px;
  --f-button-border:0;
  --f-button-border-radius:50%;
  --f-button-color:var(--fancybox-color);
  --f-button-hover-color:var(--fancybox-hover-color);
  --f-button-bg:transparent;
  --f-button-hover-bg:rgba(24, 24, 27, 0.3);
  --f-button-active-bg:rgba(24, 24, 27, 0.5);
  --f-button-shadow:none;
  --f-button-transition:all 0.15s ease;
  --f-button-transform:none;
  --f-button-svg-width:26px;
  --f-button-svg-height:26px;
  --f-button-svg-stroke-width:2.5;
  --f-button-svg-fill:none;
  --f-button-svg-filter:drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.5));
  --f-button-svg-disabled-opacity:0.65;
  --f-button-next-pos:1rem;
  --f-button-prev-pos:1rem;
  opacity: var(--fancybox-opacity, 1);
}
.fancybox__nav .f-button:before {
  position: absolute;
  content: "";
  top: -30px;
  right: -20px;
  left: -20px;
  bottom: -30px;
  z-index: 1;
}

.is-idle .fancybox__nav {
  -webkit-animation: 0.15s ease-out both f-fadeOut;
          animation: 0.15s ease-out both f-fadeOut;
}
.is-idle.is-compact .fancybox__footer {
  pointer-events: none;
  -webkit-animation: 0.15s ease-out both f-fadeOut;
          animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__slide > .f-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: var(--f-spinner-top, calc(var(--f-spinner-width) * -0.5)) 0 0 var(--f-spinner-left, calc(var(--f-spinner-height) * -0.5));
  z-index: 30;
  cursor: pointer;
}

.fancybox-protected {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.fancybox-ghost {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 40;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}

.fancybox-focus-guard {
  outline: none;
  opacity: 0;
  position: fixed;
  pointer-events: none;
}

.fancybox__container:not([aria-hidden]) {
  opacity: 0;
}
.fancybox__container.is-animated[aria-hidden=false] > *:not(.fancybox__backdrop, .fancybox__carousel), .fancybox__container.is-animated[aria-hidden=false] .fancybox__carousel > *:not(.fancybox__viewport), .fancybox__container.is-animated[aria-hidden=false] .fancybox__slide > *:not(.fancybox__content) {
  -webkit-animation: var(--f-interface-enter-duration, 0.25s) ease 0.1s backwards f-fadeIn;
          animation: var(--f-interface-enter-duration, 0.25s) ease 0.1s backwards f-fadeIn;
}
.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop {
  -webkit-animation: var(--f-backdrop-enter-duration, 0.35s) ease backwards f-fadeIn;
          animation: var(--f-backdrop-enter-duration, 0.35s) ease backwards f-fadeIn;
}
.fancybox__container.is-animated[aria-hidden=true] > *:not(.fancybox__backdrop, .fancybox__carousel), .fancybox__container.is-animated[aria-hidden=true] .fancybox__carousel > *:not(.fancybox__viewport), .fancybox__container.is-animated[aria-hidden=true] .fancybox__slide > *:not(.fancybox__content) {
  -webkit-animation: var(--f-interface-exit-duration, 0.15s) ease forwards f-fadeOut;
          animation: var(--f-interface-exit-duration, 0.15s) ease forwards f-fadeOut;
}
.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop {
  -webkit-animation: var(--f-backdrop-exit-duration, 0.35s) ease forwards f-fadeOut;
          animation: var(--f-backdrop-exit-duration, 0.35s) ease forwards f-fadeOut;
}

.has-iframe .fancybox__content, .has-map .fancybox__content, .has-pdf .fancybox__content, .has-youtube .fancybox__content, .has-vimeo .fancybox__content, .has-html5video .fancybox__content {
  max-width: 100%;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  min-height: 1px;
  overflow: visible;
}

.has-iframe .fancybox__content, .has-map .fancybox__content, .has-pdf .fancybox__content {
  width: calc(100% - 120px);
  height: 90%;
}

.fancybox__container.is-compact .has-iframe .fancybox__content, .fancybox__container.is-compact .has-map .fancybox__content, .fancybox__container.is-compact .has-pdf .fancybox__content {
  width: 100%;
  height: 100%;
}

.has-youtube .fancybox__content, .has-vimeo .fancybox__content, .has-html5video .fancybox__content {
  width: 960px;
  height: 540px;
  max-width: 100%;
  max-height: 100%;
}

.has-map .fancybox__content, .has-pdf .fancybox__content, .has-youtube .fancybox__content, .has-vimeo .fancybox__content, .has-html5video .fancybox__content {
  padding: 0;
  background: rgba(24, 24, 27, 0.9);
  color: #fff;
}

.has-map .fancybox__content {
  background: #e5e3df;
}

.fancybox__html5video, .fancybox__iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0);
}

.fancybox-placeholder {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.f-carousel__thumbs {
  --f-thumb-width:96px;
  --f-thumb-height:72px;
  --f-thumb-outline:0;
  --f-thumb-outline-color:#5eb0ef;
  --f-thumb-opacity:1;
  --f-thumb-hover-opacity:1;
  --f-thumb-selected-opacity:1;
  --f-thumb-border-radius:2px;
  --f-thumb-offset:0px;
  --f-button-next-pos:0;
  --f-button-prev-pos:0;
}
.f-carousel__thumbs.is-classic {
  --f-thumb-gap:8px;
  --f-thumb-opacity:0.5;
  --f-thumb-hover-opacity:1;
  --f-thumb-selected-opacity:1;
}
.f-carousel__thumbs.is-modern {
  --f-thumb-gap:4px;
  --f-thumb-extra-gap:16px;
  --f-thumb-clip-width:46px;
}

.f-thumbs {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-perspective: 1000px;
          perspective: 1000px;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
.f-thumbs .f-spinner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ebeff2), to(#e2e8f0));
  background-image: linear-gradient(#ebeff2, #e2e8f0);
  z-index: -1;
}
.f-thumbs .f-spinner svg {
  display: none;
}
.f-thumbs.is-vertical {
  height: 100%;
}

.f-thumbs__viewport {
  width: 100%;
  height: auto;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.f-thumbs__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.f-thumbs__slide {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  margin: 0;
  width: var(--f-thumb-width);
  height: var(--f-thumb-height);
  overflow: visible;
  cursor: pointer;
}
.f-thumbs__slide.is-loading img {
  opacity: 0;
}

.is-classic .f-thumbs__viewport {
  height: 100%;
}

.is-modern .f-thumbs__track {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.is-modern .f-thumbs__track::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc((var(--f-thumb-clip-width, 0)) * -0.5);
  width: calc(var(--width, 0) * 1px + var(--f-thumb-clip-width, 0));
  cursor: pointer;
}
.is-modern .f-thumbs__slide {
  width: var(--f-thumb-clip-width);
  -webkit-transform: translate3d(calc(var(--shift, 0) * -1px), 0, 0);
          transform: translate3d(calc(var(--shift, 0) * -1px), 0, 0);
  -webkit-transition: none;
  transition: none;
  pointer-events: none;
}
.is-modern.is-resting .f-thumbs__slide {
  -webkit-transition: -webkit-transform 0.33s ease;
  transition: -webkit-transform 0.33s ease;
  transition: transform 0.33s ease;
  transition: transform 0.33s ease, -webkit-transform 0.33s ease;
}
.is-modern.is-resting .f-thumbs__slide__button {
  -webkit-transition: clip-path 0.33s ease;
  transition: clip-path 0.33s ease;
}

.is-using-tab .is-modern .f-thumbs__slide:focus-within {
  -webkit-filter: drop-shadow(-1px 0px 0px var(--f-thumb-outline-color)) drop-shadow(2px 0px 0px var(--f-thumb-outline-color)) drop-shadow(0px -1px 0px var(--f-thumb-outline-color)) drop-shadow(0px 2px 0px var(--f-thumb-outline-color));
          filter: drop-shadow(-1px 0px 0px var(--f-thumb-outline-color)) drop-shadow(2px 0px 0px var(--f-thumb-outline-color)) drop-shadow(0px -1px 0px var(--f-thumb-outline-color)) drop-shadow(0px 2px 0px var(--f-thumb-outline-color));
}

.f-thumbs__slide__button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: var(--f-thumb-width);
  height: 100%;
  margin: 0 -100% 0 -100%;
  padding: 0;
  border: 0;
  position: relative;
  border-radius: var(--f-thumb-border-radius);
  overflow: hidden;
  background: rgba(0, 0, 0, 0);
  outline: none;
  cursor: pointer;
  pointer-events: auto;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  opacity: var(--f-thumb-opacity);
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.f-thumbs__slide__button:hover {
  opacity: var(--f-thumb-hover-opacity);
}
.f-thumbs__slide__button:focus:not(:focus-visible) {
  outline: none;
}
.f-thumbs__slide__button:focus-visible {
  outline: none;
  opacity: var(--f-thumb-selected-opacity);
}

.is-modern .f-thumbs__slide__button {
  --clip-path:inset(0 calc( ((var(--f-thumb-width, 0) - var(--f-thumb-clip-width, 0))) * (1 - var(--progress, 0)) * 0.5 ) round var(--f-thumb-border-radius, 0));
  clip-path: var(--clip-path);
}

.is-classic .is-nav-selected .f-thumbs__slide__button {
  opacity: var(--f-thumb-selected-opacity);
}
.is-classic .is-nav-selected .f-thumbs__slide__button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: auto;
  bottom: 0;
  border: var(--f-thumb-outline, 0) solid var(--f-thumb-outline-color, transparent);
  border-radius: var(--f-thumb-border-radius);
  -webkit-animation: f-fadeIn 0.2s ease-out;
          animation: f-fadeIn 0.2s ease-out;
  z-index: 10;
}

.f-thumbs__slide__img {
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: var(--f-thumb-offset);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  pointer-events: none;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--f-thumb-border-radius);
}

.f-thumbs.is-horizontal .f-thumbs__track {
  padding: 8px 0 12px 0;
}
.f-thumbs.is-horizontal .f-thumbs__slide {
  margin: 0 var(--f-thumb-gap) 0 0;
}
.f-thumbs.is-vertical .f-thumbs__track {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 8px;
}
.f-thumbs.is-vertical .f-thumbs__slide {
  margin: 0 0 var(--f-thumb-gap) 0;
}

.fancybox__thumbs {
  --f-thumb-width:96px;
  --f-thumb-height:72px;
  --f-thumb-border-radius:2px;
  --f-thumb-outline:2px;
  --f-thumb-outline-color:#ededed;
  position: relative;
  opacity: var(--fancybox-opacity, 1);
  -webkit-transition: max-height 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  transition: max-height 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}
.fancybox__thumbs.is-classic {
  --f-thumb-gap:8px;
  --f-thumb-opacity:0.5;
  --f-thumb-hover-opacity:1;
}
.fancybox__thumbs.is-classic .f-spinner {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0.05)));
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}
.fancybox__thumbs.is-modern {
  --f-thumb-gap:4px;
  --f-thumb-extra-gap:16px;
  --f-thumb-clip-width:46px;
  --f-thumb-opacity:1;
  --f-thumb-hover-opacity:1;
}
.fancybox__thumbs.is-modern .f-spinner {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0.05)));
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}
.fancybox__thumbs.is-horizontal {
  padding: 0 var(--f-thumb-gap);
}
.fancybox__thumbs.is-vertical {
  padding: var(--f-thumb-gap) 0;
}

.is-compact .fancybox__thumbs {
  --f-thumb-width:64px;
  --f-thumb-clip-width:32px;
  --f-thumb-height:48px;
  --f-thumb-extra-gap:10px;
}

.fancybox__thumbs.is-masked {
  max-height: 0px !important;
}

.is-closing .fancybox__thumbs {
  -webkit-transition: none !important;
  transition: none !important;
}

.fancybox__toolbar {
  --f-progress-color:var(--fancybox-color, rgba(255, 255, 255, 0.94));
  --f-button-width:46px;
  --f-button-height:46px;
  --f-button-color:var(--fancybox-color);
  --f-button-hover-color:var(--fancybox-hover-color);
  --f-button-bg:rgba(24, 24, 27, 0.65);
  --f-button-hover-bg:rgba(70, 70, 73, 0.65);
  --f-button-active-bg:rgba(90, 90, 93, 0.65);
  --f-button-border-radius:0;
  --f-button-svg-width:24px;
  --f-button-svg-height:24px;
  --f-button-svg-stroke-width:1.5;
  --f-button-svg-filter:drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.15));
  --f-button-svg-fill:none;
  --f-button-svg-disabled-opacity:0.65;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif;
  color: var(--fancybox-color, currentColor);
  opacity: var(--fancybox-opacity, 1);
  text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.5));
  pointer-events: none;
  z-index: 20;
}
.fancybox__toolbar :focus-visible {
  z-index: 1;
}
.fancybox__toolbar.is-absolute {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.is-compact .fancybox__toolbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.is-idle .fancybox__toolbar {
  pointer-events: none;
  -webkit-animation: 0.15s ease-out both f-fadeOut;
          animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__toolbar__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: start;
      align-content: flex-start;
}
.fancybox__toolbar__column.is-left {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
}
.fancybox__toolbar__column.is-right {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.fancybox__infobar {
  padding: 0 5px;
  line-height: var(--f-button-height);
  text-align: center;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.fancybox__infobar span {
  padding: 0 5px;
}
.fancybox__infobar:not(:first-child):not(:last-child) {
  background: var(--f-button-bg);
}

[data-fancybox-toggle-slideshow] {
  position: relative;
}
[data-fancybox-toggle-slideshow] .f-progress {
  height: 100%;
  opacity: 0.3;
}
[data-fancybox-toggle-slideshow] svg g:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
[data-fancybox-toggle-slideshow] svg g:last-child {
  display: none;
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:first-child {
  display: none;
}
.has-slideshow [data-fancybox-toggle-slideshow] svg g:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

[data-fancybox-toggle-fullscreen] svg g:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
[data-fancybox-toggle-fullscreen] svg g:last-child {
  display: none;
}

:-webkit-full-screen [data-fancybox-toggle-fullscreen] svg g:first-child {
  display: none;
}

:-ms-fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child {
  display: none;
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child {
  display: none;
}
:-webkit-full-screen [data-fancybox-toggle-fullscreen] svg g:last-child {
  display: -webkit-box;
  display: flex;
}
:-ms-fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child {
  display: -ms-flexbox;
  display: flex;
}
:fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.f-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 0;
          transform-origin: 0;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  background: var(--f-progress-color, var(--f-carousel-theme-color, #0091ff));
  z-index: 30;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}

/**
 * Swiper 11.0.7
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2024 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 27, 2024
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color:#007aff;
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

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

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
          transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.swiper-android .swiper-slide, .swiper-ios .swiper-slide, .swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.swiper-vertical {
  -ms-touch-action: pan-x;
      touch-action: pan-x;
}

.swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-backface-hidden .swiper-slide {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.swiper-3d {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  -ms-scroll-snap-type: none;
      scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-ordinal-group: 10000;
      -ms-flex-order: 9999;
          order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader, .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000;
}

@-webkit-keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden, .swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next, .swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next svg, .swiper-button-prev svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transform-origin: center;
          transform-origin: center;
}

.swiper-rtl .swiper-button-next svg, .swiper-rtl .swiper-button-prev svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-lock {
  display: none;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
          transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top, 0.2s -webkit-transform;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left, 0.2s -webkit-transform;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right, 0.2s -webkit-transform;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  -ms-touch-action: none;
      touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar.swiper-scrollbar-vertical, .swiper-vertical > .swiper-scrollbar {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  -ms-touch-action: none;
      touch-action: none;
}

.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
          transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-next, .swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-filter: blur(50px);
          filter: blur(50px);
}

.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  -webkit-transition-property: opacity, height, -webkit-transform;
  transition-property: opacity, height, -webkit-transform;
  transition-property: transform, opacity, height;
  transition-property: transform, opacity, height, -webkit-transform;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

.block-ajax-search {
  background: #f5f5f5;
  padding: 100px 0;
}
.block-ajax-search .js-results {
  display: contents;
}

.block-animation {
  padding: 100px 0;
  background: #eee;
}
.block-animation .container {
  max-width: 1200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}
@media only screen and (max-width: 750px) {
  .block-animation .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.block-animation .image {
  width: 600px;
  /*
  fade( x, y );
  Añade transformacion x e y, y opacity 0 al elemento.
  Se pueden pasar valores negativos, por ejemplo, para desplazar x hacia la izquierda
  Tambien se puede pasar un porcentaje
  */
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0px) translateY(0));
          transform: var(--fade-transform, translateX(0px) translateY(0));
  /*
  En este caso paso false para transition, para pasar un transicion custom para el elemento
  tr( duracion, propiedades, delay)
  */
  -webkit-transition: all 2s ease-out;
  transition: all 2s ease-out;
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
.block-animation .text {
  max-width: 500px;
}
.block-animation .text .title {
  font-size: clamp(24px, 7.8px + 0.027 * 100vw, 36px);
  margin-bottom: 20px;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(200px));
          transform: var(--fade-transform, translateX(0) translateY(200px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.block-animation .text__content {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(200px));
          transform: var(--fade-transform, translateX(0) translateY(200px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
  margin-bottom: clamp(20px, 6.8px + 0.022 * 100vw, 30px);
}
.block-animation .text__button {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(200px));
          transform: var(--fade-transform, translateX(0) translateY(200px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.block-animation .grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr 10px 1fr 10px 1fr;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 10px;
  margin-top: 20px;
}
.block-animation .grid .i {
  aspect-ratio: 1;
  background: #ddd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.block-animation .grid .i:nth-child(1) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.block-animation .grid .i:nth-child(2) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.block-animation .grid .i:nth-child(3) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
.block-animation .grid .i:nth-child(4) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}
.block-animation .grid .i:nth-child(5) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 1.6s;
          transition-delay: 1.6s;
}
.block-animation .grid .i:nth-child(6) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 1.8s;
          transition-delay: 1.8s;
}
.block-animation .grid .i:nth-child(7) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 2s;
          transition-delay: 2s;
}
.block-animation .grid .i:nth-child(8) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 2.2s;
          transition-delay: 2.2s;
}
.block-animation .grid .i:nth-child(9) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 2.4s;
          transition-delay: 2.4s;
}
.block-animation .grid .i:nth-child(10) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 2.6s;
          transition-delay: 2.6s;
}
.block-animation .grid .i:nth-child(11) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 2.8s;
          transition-delay: 2.8s;
}
.block-animation .grid .i:nth-child(12) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 3s;
          transition-delay: 3s;
}
.block-animation .grid .i:nth-child(13) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 3.2s;
          transition-delay: 3.2s;
}
.block-animation .grid .i:nth-child(14) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 3.4s;
          transition-delay: 3.4s;
}
.block-animation .grid .i:nth-child(15) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 3.6s;
          transition-delay: 3.6s;
}
.block-animation .grid .i:nth-child(16) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 3.8s;
          transition-delay: 3.8s;
}
.block-animation .grid .i:nth-child(17) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 4s;
          transition-delay: 4s;
}
.block-animation .grid .i:nth-child(18) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 4.2s;
          transition-delay: 4.2s;
}
.block-animation .grid .i:nth-child(19) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 4.4s;
          transition-delay: 4.4s;
}
.block-animation .grid .i:nth-child(20) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 4.6s;
          transition-delay: 4.6s;
}

.block-blog_ajax {
  margin: 100px 0;
}
.block-blog_ajax .filters {
  margin-bottom: 20px;
}
.block-blog_ajax .filters button {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}
.block-blog_ajax .filters button.active {
  background: #BE1E2D;
  color: #fff;
}
.block-blog_ajax .post-item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.block-blog_ajax .blogpagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.block-blog_ajax .blogpagination a, .block-blog_ajax .blogpagination span {
  padding: 10px;
}

.buttons-block {
  margin-top: 90px;
  text-align: center;
}
.buttons-block .button {
  margin: 10px;
}

.block-slider {
  padding: 100px 0;
}
.block-slider .container {
  max-width: 1200px;
  margin: 0 auto;
}
.block-slider .swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.block-slider .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  background: #eee;
}
.block-slider .swiper-pagination-bullet-active {
  background: #333;
}
.block-slider .swiper-button-prev, .block-slider .swiper-button-next {
  cursor: pointer;
}

.block-wrapper {
  padding: 100px 0;
}
.block-wrapper.is-style-grey {
  background: #dddddd;
}
.block-wrapper.is-style-dark {
  background: #333F44;
  color: #ffffff;
}

.countdown {
  padding-block: 30px;
  background: #000 url(../images/countdown-bg.webp) center top no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (min-width: 900px) {
  .countdown {
    padding-top: 125px;
    padding-bottom: 195px;
  }
}
.countdown .clock-container {
  width: 100%;
  overflow: hidden;
  display: -ms-grid;
  display: grid;
  place-items: center;
}
@media only screen and (min-width: 1440px) {
  .countdown .clock-container {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.countdown .scale-box {
  display: inline-block;
}
.countdown .clock-display {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transform-origin: center left;
          transform-origin: center left;
  will-change: transform;
}
@media only screen and (min-width: 1440px) {
  .countdown .clock-display {
    -webkit-transform: scale(0.92);
            transform: scale(0.92);
    -webkit-transform-origin: center center;
            transform-origin: center center;
  }
}
@media only screen and (min-width: 1600px) {
  .countdown .clock-display {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.countdown .time-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  gap: 15px;
}
@media only screen and (max-width: 600px) {
  .countdown .time-group {
    padding-top: 12px;
  }
}
.countdown .time-group:nth-child(1) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.countdown .time-group:nth-child(2) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.countdown .time-group:nth-child(3) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.countdown .time-group:nth-child(4) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.countdown .time-group:nth-child(5) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
@media only screen and (max-width: 750px) {
  .countdown .time-group:nth-child(4) .digits-container .separator-circle {
    display: none;
  }
}
@media only screen and (max-width: 750px) {
  .countdown .time-group:nth-child(5) {
    display: none;
  }
}
.countdown .time-label {
  font-family: "Chromatica", sans-serif;
  font-size: 28px;
  height: 28px;
  padding-left: 24px;
  text-transform: uppercase;
  font-weight: 400;
  color: #ffffff;
  min-width: 30px;
  display: block;
  letter-spacing: 0.1em;
}
@media only screen and (min-width: 900px) {
  .countdown .time-label {
    font-size: 25px;
    height: 25px;
  }
}
@media only screen and (min-width: 1200px) {
  .countdown .time-label {
    font-size: 21px;
    height: 21px;
  }
}
.countdown .digits-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 0;
}
.countdown .digit {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  width: 110px;
}
.countdown .clock-cell {
  width: 55px;
  height: 55px;
  position: relative;
}
.countdown .separator-circle {
  width: 55px;
  height: 55px;
}

.signup {
  position: relative;
  overflow: hidden;
  z-index: 9;
}
.signup::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 33.33%;
  height: 30px;
  background-color: #ffffff;
  z-index: 2;
}
@media only screen and (min-width: 900px) {
  .signup::before {
    height: 65px;
  }
}
@media only screen and (min-width: 1440px) {
  .signup::before {
    height: 95px;
  }
}
.signup::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 33.33%;
  height: 20px;
  background-color: #ffffff;
  z-index: 2;
}
@media only screen and (min-width: 900px) {
  .signup::after {
    height: 35px;
  }
}
@media only screen and (min-width: 1440px) {
  .signup::after {
    height: 55px;
  }
}
.signup__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.signup__background video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.signup__background img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.signup__background .video-paused-image {
  z-index: 1;
  display: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.signup__background .video-paused-image img {
  display: block;
}
.signup__background .video-paused-image__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.signup__content {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 50px;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s ease, visibility 0.5s ease;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
@media only screen and (min-width: 900px) {
  .signup__content {
    padding-block: 95px 125px;
  }
}
.signup__content-text {
  text-align: center;
}
.signup__content-text img {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  -webkit-transition: opacity 0.5s ease, visibility 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, visibility 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
  transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
  max-width: 50%;
}
@media only screen and (min-width: 1050px) {
  .signup__content-text img {
    max-width: 100%;
  }
}
.signup__content-text-title {
  margin-top: 15px;
  font-family: "Cadillac Gothic", sans-serif;
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  -webkit-transition: opacity 0.5s ease, visibility 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, visibility 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
  transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
}
@media only screen and (min-width: 900px) {
  .signup__content-text-title {
    margin-top: 90px;
    font-size: 38px;
    font-family: "Cadillac Gothic", sans-serif;
    line-height: 1.2;
  }
}
@media only screen and (min-width: 900px) and (max-width: 1200px) {
  .signup__content-text-title {
    font-size: 32px;
  }
}
@media only screen and (min-width: 900px) and (max-width: 600px) {
  .signup__content-text-title {
    font-size: 23px;
  }
}
@media only screen and (max-width: 900px) {
  .signup__content-text-title {
    font-size: 17px;
  }
}
.signup__content-text-copy {
  margin-top: 40px;
  margin-bottom: 20px;
  font-family: "Cadillac Gothic", sans-serif;
  font-stretch: extra-expanded;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.1em;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  -webkit-transition: opacity 0.5s ease, visibility 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, visibility 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
  transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
}
@media only screen and (min-width: 900px) {
  .signup__content-text-copy {
    margin-block: 50px 45px;
    font-size: 21px;
  }
}
.signup__content-text-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  -webkit-transition: opacity 0.5s ease, visibility 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, visibility 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
  transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
}
.signup__content.show {
  opacity: 1;
  visibility: visible;
}
.signup__content.show img {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.signup__content.show .signup__content-text-title {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.signup__content.show .signup__content-text-copy {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.signup__content.show .signup__content-text-button {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.signup__video-controls {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media only screen and (min-width: 900px) {
  .signup__video-controls {
    top: 20px;
    right: 20px;
  }
}
.signup__video-controls .control-btn {
  background: rgba(29, 29, 27, 0.7);
  border: 2px solid var(--white);
  color: var(--white);
  padding: 0 20px;
  border-radius: 25px;
  height: 35px;
  line-height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  font-size: 10px;
  font-weight: bold;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  font-family: "Cadillac Gothic", sans-serif;
  font-stretch: expanded;
  letter-spacing: 0.1em;
}
.signup__video-controls .control-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}
@media only screen and (min-width: 900px) {
  .signup__video-controls .control-btn {
    font-size: 12px;
  }
}
.signup__video-controls .sound-btn {
  padding: 0 15px;
  font-size: 18px;
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.signup__video-controls .sound-btn.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  display: none;
}
.signup__video-controls .sound-btn .sound-icon {
  width: 24px;
  height: 24px;
  background: url("../images/icons/sound-mute.svg") no-repeat center center;
  background-size: contain;
  -webkit-filter: invert(1);
          filter: invert(1);
}
.signup__video-controls .sound-btn .sound-icon.is-muted {
  background: url("../images/icons/sound-max.svg") no-repeat center center;
  background-size: contain;
}
.signup__video-controls .skip-btn {
  text-transform: uppercase;
}
.signup__modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1000;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  display: none;
  visibility: hidden;
}
.signup__modal.show {
  opacity: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  visibility: visible;
}
.signup__modal.show .signup__modal-content {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.signup__modal-content {
  background: #000;
  border: 10px solid #ffffff;
  width: 100%;
  max-width: 650px;
  padding: 60px;
  z-index: 1001;
  position: relative;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media only screen and (max-width: 900px) {
  .signup__modal-content {
    margin: 20px;
    max-width: none;
    padding: 30px;
  }
}
.signup__modal-content-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-family: "Cadillac Gothic", sans-serif;
  font-size: 18px;
  z-index: 3;
  cursor: pointer;
  color: #ffffff;
}
@media only screen and (max-width: 900px) {
  .signup__modal-content-close {
    top: 5px;
    right: 5px;
  }
}
@media only screen and (max-width: 900px) {
  .signup__modal .gform_wrapper {
    width: 100%;
  }
}
.signup__modal .gform_wrapper .gform_fields {
  grid-column-gap: 0;
  grid-row-gap: 15px;
}
.signup__modal .gform_wrapper .gform_fields .gfield.gfield--type-consent {
  -ms-grid-column: 1 !important;
  -ms-grid-column-span: 11 !important;
  grid-column: 1/12 !important;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
  color: #ffffff;
  font-weight: normal;
  font-size: 12px;
  width: 100% !important;
  color: #ffffff !important;
  padding-bottom: 15px !important;
}
.signup__modal .gform_wrapper .gform_fields .gfield.gfield--type-consent .gform-field-label {
  font-family: "Cadillac Gothic", sans-serif !important;
  font-size: 12px !important;
  font-weight: normal !important;
  cursor: pointer;
  line-height: 1.5 !important;
}
@media only screen and (max-width: 900px) {
  .signup__modal .gform_wrapper .gform_fields .gfield.gfield--type-consent .gform-field-label {
    font-size: 11px !important;
  }
}
.signup__modal .gform_wrapper .gform_fields .gfield.gfield--type-consent .gform-field-label .gfield_required {
  display: none;
}
.signup__modal .gform_wrapper .gform_fields .gfield--type-email {
  -ms-grid-column-span: 8 !important;
  grid-column: span 8 !important;
  width: 100% !important;
  padding-bottom: 15px !important;
}
@media only screen and (max-width: 900px) {
  .signup__modal .gform_wrapper .gform_fields .gfield--type-email {
    -ms-grid-column-span: 12 !important;
    grid-column: span 12 !important;
  }
}
.signup__modal .gform_wrapper .gform_fields .gfield--type-email input {
  border-color: #ffffff !important;
  color: #ffffff !important;
}
.signup__modal .gform_wrapper .gform_fields .gfield--type-email input:focus {
  border-color: #ffffff !important;
  outline: none !important;
}
.signup__modal .gform_wrapper .gform_fields .gfield--type-submit {
  -ms-grid-column-span: 4 !important;
  grid-column: span 4 !important;
  width: 100% !important;
  padding-bottom: 15px !important;
}
@media only screen and (max-width: 900px) {
  .signup__modal .gform_wrapper .gform_fields .gfield--type-submit {
    -ms-grid-column-span: 12 !important;
    grid-column: span 12 !important;
  }
}
.signup__modal .gform_wrapper .gform_fields .gfield--type-submit input {
  font-size: 16px !important;
  cursor: pointer !important;
}
.signup__modal .gform_wrapper .gform_fields .gfield--type-submit .gform-loader {
  position: absolute !important;
  right: 10px !important;
  bottom: 10px !important;
}
@media only screen and (max-width: 900px) {
  .signup__modal .gform_wrapper .gform_fields .gfield--type-submit .gform-loader {
    right: 5px !important;
    bottom: 5px !important;
  }
}
.signup__modal .gform_wrapper .gform_fields .validation_message {
  background: transparent !important;
  padding: 0 !important;
  border: 0 none !important;
  position: absolute !important;
  font-size: 12px !important;
}
.signup__modal .gform_wrapper .gfield_error label {
  color: #ffffff !important;
}
.signup__modal .gform_wrapper .gform-button--width-full,
.signup__modal .gform_wrapper .button {
  height: 40px;
  position: relative;
}
.signup__modal .gform_wrapper .gform_footer {
  display: none !important;
}
.signup__modal .gform_confirmation_wrapper {
  color: #ffffff;
}
@media only screen and (max-width: 900px) {
  .signup__modal .gform_confirmation_wrapper {
    margin-bottom: 20px;
  }
}
.signup__modal .gform_confirmation_wrapper .gform_confirmation_message {
  font-size: 28px;
  position: relative;
  font-family: "Cadillac Gothic", sans-serif;
  text-align: center;
  margin-bottom: 0;
}
@media only screen and (max-width: 900px) {
  .signup__modal .gform_confirmation_wrapper .gform_confirmation_message {
    font-size: 18px;
  }
}
.signup__modal .gform_validation_errors {
  background: transparent !important;
}
.signup__modal .gform_validation_errors:focus {
  outline: none !important;
}
.signup__modal #mc_embed_signup {
  background: transparent;
  width: 100%;
}
.signup__modal #mc_embed_signup #mc_embed_signup_scroll {
  position: relative;
  padding-top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 15px;
}
@media only screen and (max-width: 900px) {
  .signup__modal #mc_embed_signup #mc_embed_signup_scroll {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 25px;
  }
}
.signup__modal #mc_embed_signup #mc_embed_signup_scroll h2 {
  display: none;
}
.signup__modal #mc_embed_signup #mc_embed_signup_scroll .indicates-required {
  display: none;
}
.signup__modal #mc_embed_signup #mc_embed_signup_scroll .asterisk {
  font-size: 10px !important;
  top: -1px !important;
  font-family: "Cadillac Gothic", sans-serif !important;
}
.signup__modal #mc_embed_signup #mc_embed_signup_scroll .mc-field-group {
  margin: 0;
  padding: 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% - 150px);
          flex: 0 0 calc(100% - 150px);
  width: 100%;
}
@media only screen and (max-width: 900px) {
  .signup__modal #mc_embed_signup #mc_embed_signup_scroll .mc-field-group {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
.signup__modal #mc_embed_signup #mc_embed_signup_scroll .mc-field-group label {
  font-family: "Cadillac Gothic", sans-serif !important;
}
.signup__modal #mc_embed_signup #mc_embed_signup_scroll .mc-field-group input {
  height: 40px;
  line-height: 40px;
  background: none;
  border: 1px solid #333F44;
  padding: 0 25px;
  font-size: 14px;
  color: #000;
  border-color: #ffffff !important;
  border-radius: 0 !important;
  color: #ffffff !important;
}
@media only screen and (max-width: 1200px) {
  .signup__modal #mc_embed_signup #mc_embed_signup_scroll .mc-field-group input {
    font-size: 16px;
  }
}
@media only screen and (max-width: 600px) {
  .signup__modal #mc_embed_signup #mc_embed_signup_scroll .mc-field-group input {
    font-size: 12px;
  }
}
.signup__modal #mc_embed_signup #mc_embed_signup_scroll .mc-field-group input::-webkit-input-placeholder {
  color: #BBBFC1;
}
.signup__modal #mc_embed_signup #mc_embed_signup_scroll .mc-field-group input::-moz-placeholder {
  color: #BBBFC1;
}
.signup__modal #mc_embed_signup #mc_embed_signup_scroll .mc-field-group input:-ms-input-placeholder {
  color: #BBBFC1;
}
.signup__modal #mc_embed_signup #mc_embed_signup_scroll .mc-field-group input::-ms-input-placeholder {
  color: #BBBFC1;
}
.signup__modal #mc_embed_signup #mc_embed_signup_scroll .mc-field-group input::placeholder {
  color: #BBBFC1;
}
.signup__modal #mc_embed_signup #mc_embed_signup_scroll .mc-field-group input:focus {
  border-color: #ffffff !important;
  outline: none !important;
}
.signup__modal #mc_embed_signup #mc_embed_signup_scroll .mc-field-group div.mce_inline_error {
  position: absolute !important;
  top: 100% !important;
  background: transparent !important;
  font-size: 12px !important;
  font-family: "Cadillac Gothic", sans-serif !important;
}
@media only screen and (max-width: 900px) {
  .signup__modal #mc_embed_signup #mc_embed_signup_scroll .clear {
    width: 100%;
  }
}
.signup__modal #mc_embed_signup #mc_embed_signup_scroll #mce-responses {
  position: absolute;
  left: 0;
  top: -65px;
  width: 100%;
  opacity: 1;
  visibility: visible;
  height: 40px;
  overflow: visible;
  padding: 0;
  margin: 0;
}
.signup__modal #mc_embed_signup #mc_embed_signup_scroll #mc_embed_signup #mce-success-response {
  position: absolute !important;
  left: 0 !important;
  top: 100% !important;
  font-family: "Cadillac Gothic", sans-serif !important;
}
.signup__modal #mc_embed_signup #mc_embed_signup_scroll #mc-embedded-subscribe {
  margin: 0;
  display: inline-block;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 8px 12px 2px 14px;
  background: #ffffff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  border-radius: 0;
  text-decoration: none;
  border: none;
  color: #000;
  height: auto;
  width: 150px;
  height: 40px;
  line-height: 40px;
  padding: 0 !important;
  border: 2px solid #ffffff !important;
}
@media only screen and (min-width: 1050px) {
  .signup__modal #mc_embed_signup #mc_embed_signup_scroll #mc-embedded-subscribe {
    padding: 10px 12px 4px 14px;
    gap: 10px;
  }
}
.signup__modal #mc_embed_signup #mc_embed_signup_scroll #mc-embedded-subscribe__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-family: "Chromatica", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.2em;
  line-height: 1.3;
  text-transform: uppercase;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
@media only screen and (min-width: 1050px) {
  .signup__modal #mc_embed_signup #mc_embed_signup_scroll #mc-embedded-subscribe__text {
    font-size: 16px;
  }
}
.signup__modal #mc_embed_signup #mc_embed_signup_scroll #mc-embedded-subscribe svg {
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  color: #000;
  width: 15px;
}
@media only screen and (min-width: 1050px) {
  .signup__modal #mc_embed_signup #mc_embed_signup_scroll #mc-embedded-subscribe svg {
    width: 18px;
  }
}
.signup__modal #mc_embed_signup #mc_embed_signup_scroll #mc-embedded-subscribe .icon {
  color: #000;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.signup__modal #mc_embed_signup #mc_embed_signup_scroll #mc-embedded-subscribe:hover, .signup__modal #mc_embed_signup #mc_embed_signup_scroll #mc-embedded-subscribe:focus {
  background-color: #000;
  text-decoration: none;
}
.signup__modal #mc_embed_signup #mc_embed_signup_scroll #mc-embedded-subscribe:hover svg,
.signup__modal #mc_embed_signup #mc_embed_signup_scroll #mc-embedded-subscribe:hover .icon,
.signup__modal #mc_embed_signup #mc_embed_signup_scroll #mc-embedded-subscribe:hover .btn__text, .signup__modal #mc_embed_signup #mc_embed_signup_scroll #mc-embedded-subscribe:focus svg,
.signup__modal #mc_embed_signup #mc_embed_signup_scroll #mc-embedded-subscribe:focus .icon,
.signup__modal #mc_embed_signup #mc_embed_signup_scroll #mc-embedded-subscribe:focus .btn__text {
  color: #ffffff;
}
.signup__modal #mc_embed_signup #mc_embed_signup_scroll #mc-embedded-subscribe--secondary {
  background: #000;
}
.signup__modal #mc_embed_signup #mc_embed_signup_scroll #mc-embedded-subscribe--secondary svg,
.signup__modal #mc_embed_signup #mc_embed_signup_scroll #mc-embedded-subscribe--secondary .icon,
.signup__modal #mc_embed_signup #mc_embed_signup_scroll #mc-embedded-subscribe--secondary .btn__text {
  color: #ffffff;
}
.signup__modal #mc_embed_signup #mc_embed_signup_scroll #mc-embedded-subscribe--secondary:hover, .signup__modal #mc_embed_signup #mc_embed_signup_scroll #mc-embedded-subscribe--secondary:focus {
  background: #ffffff;
}
.signup__modal #mc_embed_signup #mc_embed_signup_scroll #mc-embedded-subscribe--secondary:hover svg,
.signup__modal #mc_embed_signup #mc_embed_signup_scroll #mc-embedded-subscribe--secondary:hover .icon,
.signup__modal #mc_embed_signup #mc_embed_signup_scroll #mc-embedded-subscribe--secondary:hover .btn__text, .signup__modal #mc_embed_signup #mc_embed_signup_scroll #mc-embedded-subscribe--secondary:focus svg,
.signup__modal #mc_embed_signup #mc_embed_signup_scroll #mc-embedded-subscribe--secondary:focus .icon,
.signup__modal #mc_embed_signup #mc_embed_signup_scroll #mc-embedded-subscribe--secondary:focus .btn__text {
  color: #000;
}
.signup__modal #mc_embed_signup #mc_embed_signup_scroll #mc-embedded-subscribe--outline {
  padding: 8px 30px;
  border: 8px solid #000;
  background: transparent;
}
.signup__modal #mc_embed_signup #mc_embed_signup_scroll #mc-embedded-subscribe--outline .btn__text {
  font-family: "Cadillac Gothic", sans-serif;
  font-stretch: extra-expanded;
  letter-spacing: 0.2em;
  font-size: 14px;
  color: #000;
  letter-spacing: 0.2em;
}
.signup__modal #mc_embed_signup #mc_embed_signup_scroll #mc-embedded-subscribe--outline .icon,
.signup__modal #mc_embed_signup #mc_embed_signup_scroll #mc-embedded-subscribe--outline svg {
  display: none;
}
.signup__modal #mc_embed_signup #mc_embed_signup_scroll #mc-embedded-subscribe--outline:hover, .signup__modal #mc_embed_signup #mc_embed_signup_scroll #mc-embedded-subscribe--outline:focus {
  background: #000;
}
.signup__modal #mc_embed_signup #mc_embed_signup_scroll #mc-embedded-subscribe--outline:hover .btn__text, .signup__modal #mc_embed_signup #mc_embed_signup_scroll #mc-embedded-subscribe--outline:focus .btn__text {
  color: #ffffff;
}
.signup__modal #mc_embed_signup #mc_embed_signup_scroll #mc-embedded-subscribe--outline-white {
  padding: 10px 30px 8px;
  border: 8px solid #ffffff;
  background: transparent;
}
.signup__modal #mc_embed_signup #mc_embed_signup_scroll #mc-embedded-subscribe--outline-white .btn__text {
  font-family: "Cadillac Gothic", sans-serif;
  font-stretch: extra-expanded;
  letter-spacing: 0.2em;
  font-size: 14px;
  color: #ffffff;
  letter-spacing: 0.2em;
}
.signup__modal #mc_embed_signup #mc_embed_signup_scroll #mc-embedded-subscribe--outline-white .icon,
.signup__modal #mc_embed_signup #mc_embed_signup_scroll #mc-embedded-subscribe--outline-white svg {
  display: none;
}
.signup__modal #mc_embed_signup #mc_embed_signup_scroll #mc-embedded-subscribe--outline-white:hover, .signup__modal #mc_embed_signup #mc_embed_signup_scroll #mc-embedded-subscribe--outline-white:focus {
  background: #ffffff;
}
.signup__modal #mc_embed_signup #mc_embed_signup_scroll #mc-embedded-subscribe--outline-white:hover svg,
.signup__modal #mc_embed_signup #mc_embed_signup_scroll #mc-embedded-subscribe--outline-white:hover .icon,
.signup__modal #mc_embed_signup #mc_embed_signup_scroll #mc-embedded-subscribe--outline-white:hover .btn__text, .signup__modal #mc_embed_signup #mc_embed_signup_scroll #mc-embedded-subscribe--outline-white:focus svg,
.signup__modal #mc_embed_signup #mc_embed_signup_scroll #mc-embedded-subscribe--outline-white:focus .icon,
.signup__modal #mc_embed_signup #mc_embed_signup_scroll #mc-embedded-subscribe--outline-white:focus .btn__text {
  color: #000;
}
.signup__modal #mc_embed_signup #mc_embed_signup_scroll #mc-embedded-subscribe.icon-play .icon {
  width: 61px;
  height: 61px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  border: 4px solid currentColor;
}
@media only screen and (max-width: 900px) {
  .signup__modal #mc_embed_signup #mc_embed_signup_scroll #mc-embedded-subscribe {
    width: 100%;
  }
}
.signup__modal #mc_embed_signup #mc_embed_signup_scroll #mc-embedded-subscribe:hover {
  background: transparent !important;
  color: #ffffff !important;
}
.signup__modal #mc_embed_signup #mc_embed_signup_scroll #mc-embedded-subscribe:focus {
  background: #ffffff !important;
  color: #000 !important;
  border-color: #ffffff !important;
}

.text-column-image {
  position: relative;
  background-color: #ffffff;
}
@media only screen and (min-width: 1050px) {
  .text-column-image {
    border-bottom: 45px solid #ffffff;
  }
}
.text-column-image::before {
  height: 25px;
  width: 33.33%;
  background-color: #BE1E2D;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (min-width: 1050px) {
  .text-column-image::before {
    display: none;
  }
}
.text-column-image__content {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  height: 100%;
  gap: 15px;
}
@media only screen and (min-width: 1050px) {
  .text-column-image__content {
    -ms-grid-columns: calc(33.33% - 8px) 0 calc(66.66% + 8px);
    grid-template-columns: calc(33.33% - 8px) calc(66.66% + 8px);
    gap: 0;
  }
}
.text-column-image__text {
  width: 100%;
  position: relative;
  z-index: 2;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media only screen and (min-width: 1050px) {
  .text-column-image__text::before {
    height: 90px;
    width: calc(100% + 25px);
    background-color: #BE1E2D;
    content: "";
    position: absolute;
    top: 0;
    left: -25px;
  }
}
@media only screen and (min-width: 1050px) {
  .text-column-image__text {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding-top: 90px;
  }
}
.text-column-image__text-title {
  padding-block: 0 16px;
}
@media only screen and (min-width: 1050px) {
  .text-column-image__text-title {
    padding-block: 65px;
  }
}
.text-column-image__text-title-text {
  font-size: 38px;
  font-family: "Cadillac Gothic", sans-serif;
  text-align: right;
  line-height: 1.2;
  letter-spacing: 0.1em;
  line-height: 1.2;
  color: #000;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
  padding-inline: 25px;
}
@media only screen and (max-width: 1200px) {
  .text-column-image__text-title-text {
    font-size: 32px;
  }
}
@media only screen and (max-width: 600px) {
  .text-column-image__text-title-text {
    font-size: 23px;
  }
}
@media only screen and (min-width: 1050px) {
  .text-column-image__text-title-text {
    font-size: 24px;
    padding-inline: 25px 0;
    letter-spacing: 0.2em;
    line-height: 1.3;
  }
}
@media only screen and (min-width: 1050px) and (max-width: 1200px) {
  .text-column-image__text-title-text {
    font-size: 24px;
  }
}
@media only screen and (min-width: 1050px) and (max-width: 600px) {
  .text-column-image__text-title-text {
    font-size: 18px;
  }
}
@media only screen and (min-width: 1200px) {
  .text-column-image__text-title-text {
    font-size: 20px;
  }
}
@media only screen and (min-width: 1440px) {
  .text-column-image__text-title-text {
    font-size: 25px;
  }
}
@media only screen and (min-width: 1600px) {
  .text-column-image__text-title-text {
    font-size: 30px;
  }
}
@media only screen and (min-width: 1920px) {
  .text-column-image__text-title-text {
    font-size: 32px;
    margin-left: auto;
  }
}
.text-column-image__text-copy {
  position: relative;
  padding-block: 25px;
  padding-bottom: 45px;
}
@media only screen and (min-width: 1050px) {
  .text-column-image__text-copy {
    padding-block: 85px 75px;
  }
}
.text-column-image__text-copy::before {
  content: "";
  position: absolute;
  top: 0;
  left: -25px;
  width: calc(100% + 25px);
  height: 3px;
  background-color: #BE1E2D;
}
@media only screen and (min-width: 1050px) {
  .text-column-image__text-copy::before {
    height: 13px;
  }
}
.text-column-image__text-copy p {
  text-align: right;
  font-size: 16px;
  color: #BE1E2D;
  letter-spacing: 0.2em;
  font-family: "Chromatica", sans-serif;
  font-weight: 500;
  line-height: 1.6;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
@media only screen and (min-width: 1050px) {
  .text-column-image__text-copy p {
    font-size: 21px;
  }
}
@media only screen and (min-width: 1920px) {
  .text-column-image__text-copy p {
    max-width: 620px;
    margin-left: auto;
  }
}
.text-column-image__text-copy.font-chromatica sup {
  font-size: 0.7rem;
}
.text-column-image__text-button {
  position: relative;
  width: 100%;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(-100px) translateY(0));
          transform: var(--fade-transform, translateX(-100px) translateY(0));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
@media only screen and (min-width: 1050px) {
  .text-column-image__text-button {
    display: inline-block;
    right: unset;
    left: 100%;
  }
}
.text-column-image__text-button:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% + 25px);
  height: 100%;
  background-color: #BE1E2D;
}
@media only screen and (min-width: 1050px) {
  .text-column-image__text-button:before {
    right: 100%;
  }
}
.text-column-image__text-button .btn {
  margin-left: auto;
  position: relative;
  right: -25px;
}
@media only screen and (min-width: 1050px) {
  .text-column-image__text-button .btn {
    margin-left: unset;
    right: 0;
  }
}
.text-column-image__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  position: relative;
  padding-top: 45px;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(0));
          transform: var(--fade-transform, translateX(0) translateY(0));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
@media only screen and (min-width: 1050px) {
  .text-column-image__image {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    overflow: hidden;
    padding-inline: 25px;
  }
}

.text-columns {
  position: relative;
}
.text-columns__shape {
  position: relative;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 44px;
  background-color: #ffffff;
  z-index: 5;
}
@media only screen and (min-width: 1050px) {
  .text-columns__shape {
    height: 190px;
  }
}
.text-columns__shape:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 33.33%;
  height: 100%;
  background-color: #000;
}
@media only screen and (min-width: 1050px) {
  .text-columns__shape:before {
    width: 33.33%;
  }
}
.text-columns__shape:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 33.33%;
  height: 24px;
  background-color: #ffffff;
}
@media only screen and (min-width: 1050px) {
  .text-columns__shape:after {
    width: 33.33%;
    height: 95px;
  }
}
.text-columns__wrapper {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.text-columns__wrapper:before {
  content: "";
  position: absolute;
  z-index: 4;
  bottom: 0;
  right: 0;
  width: 66.66%;
  height: 25px;
  background-color: #ffffff;
}
@media only screen and (min-width: 1050px) {
  .text-columns__wrapper:before {
    width: 66.66%;
    height: 100px;
  }
}
.text-columns .image-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 140%;
  z-index: 1;
  overflow: hidden;
}
.text-columns .image-background img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transform: translateY(calc(var(--elementDistance, 0) * -0.2px));
          transform: translateY(calc(var(--elementDistance, 0) * -0.2px));
}
.text-columns__image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}
@media only screen and (min-width: 1050px) {
  .text-columns__image-overlay {
    background-color: rgba(0, 0, 0, 0.2);
  }
}
.text-columns__row {
  position: relative;
  z-index: 2;
  height: auto;
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-block: 75px;
}
@media only screen and (min-width: 1050px) {
  .text-columns__row {
    -ms-grid-columns: 33.33% 0 66.66%;
    grid-template-columns: 33.33% 66.66%;
    gap: 0;
    padding-block: 100px;
  }
}
@media only screen and (min-width: 1050px) {
  .text-columns__col-left {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
    -ms-grid-row-align: end;
        align-self: end;
    text-align: right;
    padding-top: 190px;
    padding-right: 22px;
  }
}
.text-columns__col-right {
  position: relative;
}
@media only screen and (min-width: 1050px) {
  .text-columns__col-right {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
    padding-bottom: 64px;
  }
}
.text-columns__title {
  position: relative;
}
.text-columns__title:before {
  content: "";
  position: absolute;
  top: -15px;
  left: 0;
  width: 50%;
  height: 3px;
  background: #ffffff;
}
@media only screen and (min-width: 1050px) {
  .text-columns__title:before {
    top: -85px;
    width: calc(100% + 22px);
    height: 10px;
  }
}
.text-columns__title-text {
  font-size: 38px;
  font-family: "Cadillac Gothic", sans-serif;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: 0.1em;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
  padding-inline: 25px;
}
@media only screen and (max-width: 1200px) {
  .text-columns__title-text {
    font-size: 32px;
  }
}
@media only screen and (max-width: 600px) {
  .text-columns__title-text {
    font-size: 23px;
  }
}
@media only screen and (min-width: 1050px) {
  .text-columns__title-text {
    font-size: 24px;
    text-align: right;
    padding-inline: 25px 0;
    letter-spacing: 0.2em;
    line-height: 1.3;
  }
}
@media only screen and (min-width: 1050px) and (max-width: 1200px) {
  .text-columns__title-text {
    font-size: 24px;
  }
}
@media only screen and (min-width: 1050px) and (max-width: 600px) {
  .text-columns__title-text {
    font-size: 18px;
  }
}
@media only screen and (min-width: 1200px) {
  .text-columns__title-text {
    font-size: 28px;
  }
}
@media only screen and (min-width: 1440px) {
  .text-columns__title-text {
    font-size: 32px;
  }
}
@media only screen and (min-width: 1600px) {
  .text-columns__title-text {
    font-size: 38px;
  }
}
@media only screen and (min-width: 1920px) {
  .text-columns__title-text {
    font-size: 42px;
    margin-left: auto;
    max-width: 620px;
  }
}
@media only screen and (min-width: 1920px) and (max-width: 1200px) {
  .text-columns__title-text {
    font-size: 38px;
  }
}
@media only screen and (min-width: 1920px) and (max-width: 600px) {
  .text-columns__title-text {
    font-size: 28px;
  }
}
.text-columns__text {
  font-size: 16px;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
  padding-inline: 25px;
}
@media only screen and (min-width: 1050px) {
  .text-columns__text {
    padding-inline: 0 25px;
    font-size: 28px;
  }
}
@media only screen and (min-width: 1920px) {
  .text-columns__text {
    max-width: 1150px;
  }
}
.text-columns__text-wrapper {
  padding-block: 0 36px;
  position: relative;
}
@media only screen and (min-width: 1050px) {
  .text-columns__text-wrapper {
    padding-block: 45px 32px;
    padding-left: 16px;
  }
  .text-columns__text-wrapper:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
  }
  .text-columns__text-wrapper:after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 50%;
    left: -100%;
    width: 100%;
    height: 50%;
    background: rgba(0, 0, 0, 0.5);
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.text-columns__button {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
  padding-inline: 25px;
}
@media only screen and (min-width: 1050px) {
  .text-columns__button {
    padding-inline: 0;
  }
}
.text-columns--var2 .text-columns__shape {
  background-color: transparent;
  height: 0;
}
@media only screen and (min-width: 1050px) {
  .text-columns--var2 .text-columns__shape {
    height: 78px;
    background-color: #000;
  }
}
@media only screen and (min-width: 1050px) {
  .text-columns--var2 .text-columns__shape:before {
    background-color: #ffffff;
  }
}
.text-columns--var2 .text-columns__shape:after {
  height: 31px;
}
@media only screen and (min-width: 1050px) {
  .text-columns--var2 .text-columns__shape:after {
    height: 54px;
  }
}
.text-columns--var2 .text-columns__wrapper:before {
  display: none;
}
@media only screen and (min-width: 1050px) {
  .text-columns--var2 .text-columns__wrapper:before {
    display: block;
    height: 83px;
  }
}
.text-columns--var2 .text-columns__wrapper:after {
  display: none;
}
@media only screen and (min-width: 1050px) {
  .text-columns--var2 .text-columns__wrapper:after {
    display: block;
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 33.33%;
    height: 240px;
    background-color: #ffffff;
  }
}
.text-columns--var2 .text-columns__row {
  padding-top: 31px;
  padding-bottom: 70px;
}
@media only screen and (min-width: 1050px) {
  .text-columns--var2 .text-columns__row {
    padding-top: 54px;
    padding-bottom: 100px;
  }
}
.text-columns--var2 .text-columns__col-left {
  padding-right: 0;
  padding-top: 35px;
}
@media only screen and (min-width: 1050px) {
  .text-columns--var2 .text-columns__col-left {
    padding-top: 80px;
  }
}
.text-columns--var2 .text-columns__title:before {
  display: none;
}
.text-columns--var2 .text-columns__text-wrapper {
  padding-top: 0;
}
@media only screen and (min-width: 1050px) {
  .text-columns--var2 .text-columns__text-wrapper {
    padding-top: 36px;
  }
}
.text-columns--var2 .text-columns__text-wrapper:after {
  display: none;
}

.team-principal {
  position: relative;
  background-color: #000;
  padding-bottom: 40px;
  overflow: hidden;
}
@media only screen and (min-width: 1050px) {
  .team-principal {
    padding-bottom: 150px;
  }
}
.team-principal .image-background {
  top: 20%;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(0));
          transform: var(--fade-transform, translateX(0) translateY(0));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.team-principal .image-background img {
  -o-object-position: 65% top;
     object-position: 65% top;
}
@media only screen and (min-width: 600px) {
  .team-principal .image-background {
    width: 70%;
    left: unset;
  }
}
@media only screen and (min-width: 1050px) {
  .team-principal .image-background {
    top: 0;
    width: 55%;
    height: 100%;
    margin-left: auto;
  }
  .team-principal .image-background img {
    -o-object-position: center;
       object-position: center;
  }
}
@media only screen and (min-width: 1050px) {
  .team-principal__shape {
    position: relative;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    z-index: 5;
    height: 50px;
  }
}
.team-principal__wrapper {
  position: relative;
  z-index: 5;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (min-width: 1050px) {
  .team-principal__wrapper {
    padding-bottom: 65px;
  }
}
.team-principal__wrapper:before {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: -40px;
  left: 0;
  width: 100%;
  height: 40px;
  background: #000;
}
@media only screen and (min-width: 1050px) {
  .team-principal__wrapper:before {
    display: none;
  }
}
.team-principal__row {
  position: relative;
  z-index: 2;
  height: 100%;
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  height: 100%;
}
@media only screen and (min-width: 1050px) {
  .team-principal__row {
    -ms-grid-columns: 33.33% 0 33.33% 0 33.33%;
    grid-template-columns: repeat(3, 33.33%);
    gap: 0;
  }
}
.team-principal__col-left {
  position: relative;
}
@media only screen and (min-width: 1050px) {
  .team-principal__col-left {
    padding-right: 40px;
  }
}
@media only screen and (min-width: 1050px) {
  .team-principal__col-left:before {
    content: "";
    position: absolute;
    left: 0;
    background: #ffffff;
    top: 0;
    width: 100%;
    height: 75px;
  }
  .team-principal__col-left:after {
    content: "";
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 50%;
    height: 12px;
    background: #ffffff;
  }
}
@media only screen and (min-width: 1050px) and (min-width: 1050px) {
  .team-principal__col-left:after {
    bottom: -50px;
    width: 100%;
  }
}
@media only screen and (min-width: 1050px) {
  .team-principal__col-left {
    padding-top: 260px;
    padding-bottom: 200px;
  }
}
.team-principal__col-center {
  position: relative;
  padding-bottom: 420px;
}
.team-principal__col-center .team-principal__button {
  display: none;
}
@media only screen and (min-width: 1050px) {
  .team-principal__col-center {
    padding-top: 270px;
    padding-bottom: 0px;
  }
  .team-principal__col-center .team-principal__button {
    display: block;
  }
}
@media only screen and (min-width: 1050px) {
  .team-principal__col-center:before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    background: #000;
    top: -53px;
    height: 53px;
  }
  .team-principal__col-center:after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: 0;
    width: 100%;
    height: 12px;
    background: #ffffff;
  }
}
.team-principal__col-right {
  position: relative;
}
.team-principal__col-right .team-principal__button {
  padding-top: 60px;
  margin-bottom: 15px;
}
.team-principal__col-right .team-principal__button .btn {
  background: transparent;
  width: 100%;
}
.team-principal__col-right .team-principal__button .btn:focus, .team-principal__col-right .team-principal__button .btn:hover {
  background: #ffffff;
}
.team-principal__col-right .team-principal__button .btn:before {
  content: "";
  position: absolute;
  bottom: -55px;
  right: 0;
  width: 33.33%;
  height: 5px;
  background: #ffffff;
}
@media only screen and (min-width: 1050px) {
  .team-principal__col-right .team-principal__button .btn:before {
    display: none;
  }
}
.team-principal__col-right .team-principal__button .btn:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 66.66%;
  height: 5px;
  background: #ffffff;
}
@media only screen and (min-width: 1050px) {
  .team-principal__col-right .team-principal__button .btn:after {
    display: none;
  }
}
@media only screen and (min-width: 1050px) {
  .team-principal__col-right {
    padding-bottom: 64px;
  }
  .team-principal__col-right .team-principal__button {
    display: none;
  }
}
@media only screen and (min-width: 1050px) {
  .team-principal__col-right:before {
    content: "";
    position: absolute;
    left: 0;
    background: #ffffff;
    top: 102px;
    width: 100%;
    height: 26px;
  }
}
@media only screen and (min-width: 1050px) {
  .team-principal__col-right:after {
    content: "";
    position: absolute;
    left: 0;
    background: #ffffff;
    bottom: -25px;
    height: 15px;
    width: 100%;
  }
}
.team-principal__title {
  position: relative;
  padding-block: 40px 26px;
}
@media only screen and (min-width: 1050px) {
  .team-principal__title {
    padding-block: 0;
  }
}
@media only screen and (min-width: 1050px) {
  .team-principal__title:before {
    content: "";
    position: absolute;
    left: 0;
    background: #ffffff;
    top: -95px;
    width: calc(100% + 40px);
    height: 25px;
  }
}
@media only screen and (min-width: 1050px) {
  .team-principal__title:after {
    content: "";
    position: absolute;
    left: 0;
    height: 53px;
    background: #ffffff;
    bottom: -285px;
    width: calc(100% + 40px);
  }
}
@media only screen and (min-width: 1440px) {
  .team-principal__title:after {
    bottom: -225px;
  }
}
@media only screen and (min-width: 1600px) {
  .team-principal__title:after {
    bottom: -175px;
  }
}
@media only screen and (min-width: 1920px) {
  .team-principal__title:after {
    bottom: -135px;
  }
}
.team-principal__title-text {
  font-size: 38px;
  font-family: "Cadillac Gothic", sans-serif;
  color: #ffffff;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: right;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
  padding-inline: 25px;
}
@media only screen and (max-width: 1200px) {
  .team-principal__title-text {
    font-size: 32px;
  }
}
@media only screen and (max-width: 600px) {
  .team-principal__title-text {
    font-size: 23px;
  }
}
@media only screen and (min-width: 1050px) {
  .team-principal__title-text {
    font-size: 24px;
    padding-inline: 25px 0;
    letter-spacing: 0.2em;
    line-height: 1.2;
  }
}
@media only screen and (min-width: 1050px) and (max-width: 1200px) {
  .team-principal__title-text {
    font-size: 24px;
  }
}
@media only screen and (min-width: 1050px) and (max-width: 600px) {
  .team-principal__title-text {
    font-size: 18px;
  }
}
@media only screen and (min-width: 1200px) {
  .team-principal__title-text {
    font-size: 28px;
  }
}
@media only screen and (min-width: 1440px) {
  .team-principal__title-text {
    font-size: 32px;
  }
}
@media only screen and (min-width: 1600px) {
  .team-principal__title-text {
    font-size: 38px;
  }
}
@media only screen and (min-width: 1920px) {
  .team-principal__title-text {
    font-size: 42px;
    max-width: 620px;
    margin-left: auto;
  }
}
@media only screen and (min-width: 1920px) and (max-width: 1200px) {
  .team-principal__title-text {
    font-size: 38px;
  }
}
@media only screen and (min-width: 1920px) and (max-width: 600px) {
  .team-principal__title-text {
    font-size: 28px;
  }
}
.team-principal__member_title {
  position: relative;
  padding-inline: 25px;
}
@media only screen and (min-width: 1050px) {
  .team-principal__member_title {
    padding-inline: 0;
  }
}
@media only screen and (min-width: 1050px) {
  .team-principal__member_title {
    margin-bottom: 215px;
  }
}
@media only screen and (min-width: 1050px) {
  .team-principal__member_title:before {
    content: "";
    position: absolute;
    bottom: calc(100% + 20px);
    left: 0;
    width: 100%;
    background: #ffffff;
    height: 148px;
  }
}
.team-principal__member_title-text {
  color: #ffffff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 8px;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
@media only screen and (min-width: 1050px) {
  .team-principal__member_title-text {
    font-size: 16px;
  }
}
.team-principal__member_name {
  position: relative;
  color: #ffffff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding-bottom: 65px;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
  padding-inline: 25px;
}
@media only screen and (min-width: 1050px) {
  .team-principal__member_name {
    padding-inline: 0;
    font-size: 16px;
  }
}
@media only screen and (min-width: 1050px) {
  .team-principal__member_name {
    margin-bottom: 180px;
  }
}
.team-principal__member_name-wrapper {
  position: relative;
}
.team-principal__member_name-wrapper:before {
  content: "";
  position: absolute;
  background: #ffffff;
  bottom: 40px;
  left: 0;
  width: 50%;
  height: 10px;
}
@media only screen and (min-width: 1050px) {
  .team-principal__member_name-wrapper:before {
    top: calc(100% + 180px);
    left: 0;
    width: 100%;
    height: 148px;
  }
}
.team-principal__member_name-wrapper:after {
  content: "";
  position: absolute;
  background: #ffffff;
  bottom: 20px;
  left: 50%;
  width: 50%;
  height: 53px;
}
@media only screen and (min-width: 1050px) {
  .team-principal__member_name-wrapper:after {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 53px;
  }
}
.team-principal__button {
  position: relative;
  z-index: 2;
  padding-top: 200px;
  margin-bottom: 40px;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
  padding-inline: 25px;
}
@media only screen and (min-width: 1050px) {
  .team-principal__button {
    padding-inline: 0;
  }
}
.team-principal__button .btn.icon-play .icon-caret {
  position: relative;
  top: -3px;
}
.team-principal__text {
  font-size: 18px;
  letter-spacing: 0.2em;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.7;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
@media only screen and (min-width: 1050px) {
  .team-principal__text {
    font-size: 18px;
    line-height: 1.3;
  }
}
@media only screen and (min-width: 1920px) {
  .team-principal__text {
    max-width: 620px;
  }
}
.team-principal__text-wrapper {
  position: relative;
  padding-inline: 25px;
}
@media only screen and (min-width: 1050px) {
  .team-principal__text-wrapper {
    padding-inline: 25px 0;
  }
}
@media only screen and (min-width: 1050px) {
  .team-principal__text-wrapper {
    top: 66%;
  }
}

/* 
// Woocommerce
@import
  'woocommerce/_header_cart',
  'woocommerce/_header_account',
  'woocommerce/_rating_stars',
  'woocommerce/_item',
  'woocommerce/_archive',
  'woocommerce/_single',
  'woocommerce/_cart',
  'woocommerce/_checkout',
  'woocommerce/_account';
*/