/* ------------------------------------------------------------------------- */
/* FONTS */
/* ------------------------------------------------------------------------- */
/*

@font-face {
  font-family: 'nexabold';
  src: url(../fonts/nexa/NexaBold.eot);
  src: url(../fonts/nexa/NexaBold.eot) format('embedded-opentype'),
     url(../fonts/nexa/NexaBold.woff) format('woff'),
     url(../fonts/nexa/NexaBold.ttf) format('truetype'),
     url(../fonts/nexa/NexaBold.svg) format('svg');
  font-style: normal;
}

@font-face {
  font-family: 'nexalight';
  src: url(../fonts/nexa/NexaLight.eot);
  src: url(../fonts/nexa/NexaLight.eot) format('embedded-opentype'),
     url(../fonts/nexa/NexaLight.woff) format('woff'),
     url(../fonts/nexa/NexaLight.ttf) format('truetype'),
     url(../fonts/nexa/NexaLight.svg) format('svg');
  font-style: normal;
}

*/
/* ------------------------------------------------------------------------- */
/* VARIABLES */
/* ------------------------------------------------------------------------- */
/* 400 y 700   */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
figure,
fieldset,
form,
label,
legend,
button,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  border: 0;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
  text-decoration: none;
}

/* ==========================================================================
   RESET CSS
   ========================================================================== */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
figure,
fieldset,
form,
label,
legend,
button,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  border: 0;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
  text-decoration: none;
}

img {
  -ms-interpolation-mode: bicubic;
  border: 0;
  vertical-align: middle;
}

a {
  text-decoration: none;
  outline: 0;
}

a:hover {
  text-decoration: none;
}

* {
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

p a {
  outline: 0;
}

p a:hover {
  text-decoration: underline;
}

input[type=submit],
input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

html,
body {
  /*overflow-x: hidden;*/
}

/* ------------------------------------------------------------------------- */
/* MIXINS */
/* ------------------------------------------------------------------------- */
/*
@mixin theme($theme: DarkGray) {
  background: $theme;
  box-shadow: 0 0 1px rgba($theme, .25);
  color: #fff;
}

.info {
  @include theme;
}
.alert {
  @include theme($theme: DarkRed);
}
.success {
  @include theme($theme: DarkGreen);
}
*/
/* ------------------------------------------------------------------------- */
/* GENEREAL STYLE - Classes used throught all the project */
/* ------------------------------------------------------------------------- */
body {
  background: #271221 url("../images/bg.jpg") no-repeat center top;
  background-size: 100% auto;
  min-height: 100%;
  font-family: "Poppins", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-weight: 400;
  font-optical-sizing: auto;
  color: #FFAF12;
  font-size: 1rem;
  line-height: 150%;
  -webkit-font-smoothing: antialiased;
}

p {
  font-size: 1rem;
  line-height: 150%;
  font-weight: 400;
  font-optical-sizing: auto;
  margin-bottom: 1rem;
}

.normal {
  font-weight: 400;
}

.bold {
  font-weight: 600;
}

.align-center {
  text-align: center;
}

ul li {
  font-size: 1rem;
  line-height: 150%;
  margin-bottom: 0.6rem;
}

.container-xs, .container-s, .container-m, .container-l, .container-xl, .container-full, .container-micro, .container-mini, .container-medio, .container {
  margin: 0 auto;
  padding-left: 5%;
  padding-right: 5%;
}

.container {
  max-width: 1600px;
}

.container.full {
  max-width: unset;
}

.container-medio {
  max-width: 1440px;
}

.container-mini {
  max-width: 1100px;
}

.container-micro {
  max-width: 800px;
}

/* This is for the editables containers */
.container-full {
  max-width: unset;
}

.container-xl {
  max-width: 1600px;
}

.container-l {
  max-width: 1400px;
}

.container-m {
  max-width: 1100px;
}

.container-s {
  max-width: 900px;
}

.container-xs {
  max-width: 800px;
}

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

a,
button {
  cursor: pointer;
}

.clearfix, .clear {
  clear: both;
}

b, strong {
  font-weight: 600;
}

p a, a {
  text-decoration: none;
  color: #FFAF12;
  font-weight: 400;
}

p i, i {
  font-style: italic;
}

ul {
  list-style: none;
}

sup {
  vertical-align: super;
  font-size: 60%;
}

em, i {
  font-style: italic;
}

.relative {
  position: relative;
}

.bg-color {
  background-color: #FFAF12;
  color: #271221;
}

.bg-color .title {
  color: #271221;
}

img.full {
  width: 100%;
  height: auto;
}

.mobile {
  display: none;
}

p.big, .big p {
  font-size: 1.3rem;
}

.no_padding {
  padding: 0px !important;
}

.align-center {
  text-align: center;
}

.align-right {
  text-align: right;
}

.padding-small {
  padding-top: 40px;
  padding-bottom: 40px;
}

.padding-medium {
  padding-top: 80px;
  padding-bottom: 80px;
}

.padding-big {
  padding-top: 140px;
  padding-bottom: 140px;
}

.pt-0 {
  padding-top: 0;
}

.pt-xs {
  padding-top: 20px;
}

.pt-s {
  padding-top: 40px;
}

.pt-m {
  padding-top: 80px;
}

.pt-l {
  padding-top: 140px;
}

.pt-xl {
  padding-top: 200px;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-xs {
  padding-bottom: 20px;
}

.pb-s {
  padding-bottom: 40px;
}

.pb-m {
  padding-bottom: 80px;
}

.pb-l {
  padding-bottom: 140px;
}

.pb-xl {
  padding-bottom: 200px;
}

.mt-0 {
  margin-top: 0;
}

.mt-xs {
  margin-top: 20px;
}

.mt-s {
  margin-top: 40px;
}

.mt-m {
  margin-top: 80px;
}

.mt-l {
  margin-top: 140px;
}

.mt-xl {
  margin-top: 200px;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-xs {
  margin-bottom: 20px;
}

.mb-s {
  margin-bottom: 40px;
}

.mb-m {
  margin-bottom: 80px;
}

.mb-l {
  margin-bottom: 140px;
}

.mb-xl {
  margin-bottom: 200px;
}

/* CALLTOACTIONS */
.calltoaction {
  display: inline-block;
  margin: 0;
  width: auto;
  text-align: center;
  padding: 0.5rem 2.5rem;
  letter-spacing: 0.15rem;
  color: #361E2D;
  font-family: "Minerva", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 110%;
  background-color: #FFAF12;
  border-radius: 10px;
  border: 1px solid #FFAF12;
  transition: 0.2s all ease-out;
  opacity: 1;
  -webkit-appearance: none;
  cursor: pointer;
}

.calltoaction:hover {
  text-decoration: none;
  background-color: #361E2D;
  color: #FFAF12;
}

.calltoaction.full {
  width: 100%;
}

.calltoaction.border {
  border: 1px solid #FFAF12;
}

.calltoaction.contrast {
  background-color: #271221;
  border-color: #271221;
  color: #FFAF12;
}

.calltoaction.contrast:hover {
  background-color: #FFAF12;
  color: #271221;
}

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

.lozad {
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -webkit-transition: all 0.3s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -moz-transition: all 0.3s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -ms-transition: all 0.3s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -o-transition: all 0.3s cubic-bezier(0.07, 0.71, 0.1, 0.9);
}

.lozad.loaded {
  opacity: 1;
}

/* ANIMATIONS */
.animated {
  animation-fill-mode: both;
  animation-duration: 1.6s;
}

.fadeInUp {
  animation-name: fadeInUp;
}

.fadeToLeft {
  animation-name: fadeToLeft;
}

.fadeToRight {
  animation-name: fadeToRight;
}

.fadeOpacity {
  animation-name: fadeOpacity;
}

.fadeOut {
  animation-name: fadeOut;
}

@keyframes blinkingimage {
  50% {
    transform: scaleY(1);
  }
}
@keyframes blinking {
  50% {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate(0, 200px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes fadeToLeft {
  0% {
    opacity: 0;
    transform: translate(100px, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes fadeToRight {
  0% {
    opacity: 0;
    transform: translate(-100px, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes fadeOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
@media only screen and (width <= 1100px) {
  .padding-medium {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .padding-big {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .mt-m {
    margin-top: 70px;
  }
  .mt-l {
    margin-top: 120px;
  }
  .mt-xl {
    margin-top: 160px;
  }
  .mb-m {
    margin-bottom: 70px;
  }
  .mb-l {
    margin-bottom: 120px;
  }
  .mb-xl {
    margin-bottom: 160px;
  }
  .pt-m {
    padding-top: 70px;
  }
  .pt-l {
    padding-top: 120px;
  }
  .pt-xl {
    padding-top: 160px;
  }
  .pb-m {
    padding-bottom: 70px;
  }
  .pb-l {
    padding-bottom: 120px;
  }
  .pb-xl {
    padding-bottom: 160px;
  }
}
@media only screen and (width <= 900px) {
  .padding-medium {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .padding-big {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .mt-m {
    margin-top: 60px;
  }
  .mt-l {
    margin-top: 100px;
  }
  .mt-xl {
    margin-top: 120px;
  }
  .mb-m {
    margin-bottom: 60px;
  }
  .mb-l {
    margin-bottom: 100px;
  }
  .mb-xl {
    margin-bottom: 120px;
  }
  .pt-m {
    padding-top: 60px;
  }
  .pt-l {
    padding-top: 100px;
  }
  .pt-xl {
    padding-top: 120px;
  }
  .pb-m {
    padding-bottom: 60px;
  }
  .pb-l {
    padding-bottom: 100px;
  }
  .pb-xl {
    padding-bottom: 120px;
  }
}
@media only screen and (width <= 800px) {
  .padding-medium {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .padding-big {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .mt-s {
    margin-top: 30px;
  }
  .mt-m {
    margin-top: 50px;
  }
  .mt-l {
    margin-top: 80px;
  }
  .mt-xl {
    margin-top: 110px;
  }
  .mb-s {
    margin-bottom: 30px;
  }
  .mb-m {
    margin-bottom: 50px;
  }
  .mb-l {
    margin-bottom: 80px;
  }
  .mb-xl {
    margin-bottom: 110px;
  }
  .pt-s {
    padding-top: 30px;
  }
  .pt-m {
    padding-top: 50px;
  }
  .pt-l {
    padding-top: 80px;
  }
  .pt-xl {
    padding-top: 110px;
  }
  .pb-s {
    padding-bottom: 30px;
  }
  .pb-m {
    padding-bottom: 50px;
  }
  .pb-l {
    padding-bottom: 80px;
  }
  .pb-xl {
    padding-bottom: 110px;
  }
  .desktop {
    display: none;
  }
  .mobile {
    display: block;
  }
}
@media only screen and (width <= 600px) {
  .padding-medium {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .padding-big {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .mt-m {
    margin-top: 40px;
  }
  .mt-l {
    margin-top: 60px;
  }
  .mt-xl {
    margin-top: 100px;
  }
  .mb-m {
    margin-bottom: 40px;
  }
  .mb-l {
    margin-bottom: 60px;
  }
  .mb-xl {
    margin-bottom: 100px;
  }
  .pt-m {
    padding-top: 40px;
  }
  .pt-l {
    padding-top: 60px;
  }
  .pt-xl {
    padding-top: 100px;
  }
  .pb-m {
    padding-bottom: 40px;
  }
  .pb-l {
    padding-bottom: 60px;
  }
  .pb-xl {
    padding-bottom: 100px;
  }
}
/* ------------------------------------------------------------------------- */
/* GENEREAL STYLE - Classes used throught all the project */
/* ------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: "Minerva", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  color: #FFAF12;
  line-height: 110%;
  font-optical-sizing: auto;
  /*font-weight:$font-weight-bold;*/
  margin-bottom: 2rem;
}

h1, .title_h1 {
  font-size: clamp(2.2rem, 2.2rem + (1vw - 0.2rem) * 4.4, 4.4rem);
}

h2, .title_h2 {
  font-size: clamp(1.4rem, 1.4rem + (1vw - 0.2rem) * 2.3, 2.3rem);
}

h3, .title_h3 {
  font-size: clamp(1.2rem, 1.2rem + (1vw - 0.2rem) * 1.9, 1.9rem);
}

h4, .title_h4,
h5, .title_h5,
h6, .title_h6 {
  font-size: clamp(1rem, 1rem + (1vw - 0.2rem) * 1.4, 1.4rem);
}

.title {
  text-wrap-style: balance;
}

.title_center {
  text-align: center;
}

.color {
  color: #FFAF12;
}

.uppercase {
  text-transform: uppercase;
}

.margin0 {
  margin: 0;
}

.title-big {
  font-size: clamp(1.9rem, 1.9rem + (1vw - 0.2rem) * 3.4, 3.4rem);
}

.font-breamcatcher {
  font-family: "Breamcatcher", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  line-height: 110%;
  font-weight: 400;
}

.font-minerva {
  font-family: "Minerva", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  line-height: 110%;
  font-weight: 400;
}

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

h1.font-breamcatcher, .title_h1.font-breamcatcher {
  letter-spacing: 30%;
}

h2.font-breamcatcher, .title_h2.font-breamcatcher {
  letter-spacing: 30%;
}

@media only screen and (width <= 800px) {
  h1, h2, h3, h4 {
    margin-bottom: 1.25rem;
  }
  h1.font-breamcatcher, .title_h1.font-breamcatcher {
    letter-spacing: 2px;
  }
  h2.font-breamcatcher, .title_h2.font-breamcatcher {
    letter-spacing: 2px;
  }
}
/* ------------------------------------------------------------------------- */
/* COOKIES */
/* ------------------------------------------------------------------------- */
/*.cookies{ position: fixed; bottom: 10px; left:10px; width: 90%; max-width: 400px; padding: 25px 40px 20px 25px; z-index:100; background-color:white; border-radius: $border-radius; box-shadow: 0 0 20px rgba(0,0,0,0.2);}
.cookies .message-close-button { position: absolute; top: 15px; right: 15px; width: 15px; height: 15px; background: transparent url(../images/close.svg) no-repeat; background-size: 100%; cursor:pointer;}
.cookies p { font-size: 14px; color:$color-txt; line-height:130%; margin-bottom: 0;}
.cookies p.cookies__text {margin-bottom:3px;}
.cookies p:last-child {text-align: right;}
.cookies p a{ color: $color-txt; font-weight:$font-weight-bold; font-size:15px;}
.cookies p a:hover{ color: $color-txt;}

@media only screen and (max-width: 800px){
  .cookies p { font-size:13px; }
  .cookies p a{ font-size:14px;}
}
@media only screen and (max-width: 600px){
  .cookies{ width: calc(100% - 20px);  max-width: none;}
  .cookies p { font-size:12px; }
  .cookies p a{ font-size:13px;}
}*/
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 0px rgba(0, 0, 0, 0);
  border-radius: 10px;
  background-color: #fff;
}

::-webkit-scrollbar {
  width: 10px;
  background-color: #fff;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 0px rgba(0, 0, 0, 0);
  background-color: #4a4a4a;
}

/* ------------------------------------------------------------------------- */
/* HEADER STYLES */
/* ------------------------------------------------------------------------- */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  box-sizing: border-box;
  background-color: transparent;
  z-index: 10;
  transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -webkit-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -moz-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -ms-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -o-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
}

.header .container {
  width: 100%;
}

.header.fixed {
  background-color: rgba(39, 18, 33, 0.7215686275);
  backdrop-filter: blur(5px);
}

.header .header-box {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 15px;
  transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -webkit-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -moz-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -ms-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -o-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  border-bottom: 1px solid #FFAF12;
}

.header.fixed .header-box {
  padding-top: 10px;
  padding-bottom: 10px;
}

.header .header-start,
.header .header-end {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header .web-logo {
  width: 117px;
  z-index: 10000;
}

.header.fixed .web-logo {
  width: 80px;
}

/* MENUS */
.header__nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.header__nav ul li {
  padding: 0;
  margin: 0;
}

.header__nav ul li a {
  font-family: "Minerva", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  color: #FFAF12;
  letter-spacing: 1px;
  font-size: 1.5rem;
  line-height: 110%;
  position: relative;
  overflow: hidden;
  display: block;
  padding: 4px 1px 4px;
  transition: all 0.2s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -webkit-transition: all 0.2s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -moz-transition: all 0.2s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -ms-transition: all 0.2s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -o-transition: all 0.2s cubic-bezier(0.07, 0.71, 0.1, 0.9);
}

.header__nav ul li a:after {
  backface-visibility: hidden;
  transform-style: preserve-3d;
  transform: translateZ(0);
  will-change: transform;
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #FFAF12;
  transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -webkit-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -moz-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -ms-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -o-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  transform: translate3d(-103%, 0, 0);
  -webkit-transform: translate3d(-103%, 0, 0);
}

.header__nav ul li a:hover:after,
.header__nav ul li.current-menu-item a:after,
.header__nav ul li.selected a:after {
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
}

/*.header__nav ul li a:hover, 
.header__nav ul li.current-menu-item a,
.header__nav ul li.selected a {

}*/
.header .calltoaction {
  padding: 0.4rem 1.2rem;
  letter-spacing: 0.1rem;
}

/*.header.transparent .header__nav ul li a { color:$color-txt; }
.header.transparent .header__nav ul li a:after { background:$color-txt; }
.header.fixed .header__nav ul li a {  }*/
/* IDIOMAS */
/*.header_idiomas ul { display: flex; align-items: center; gap:10px; }
.header_idiomas ul li { margin: 0; }
.header_idiomas ul li a {color:$color-txt; font-size:.8rem; line-height:$line-height2; font-weight:$font-weight-semibold; position: relative; display:inline-block; padding: 3px; opacity:1; @include transition(0.2s);}
.header_idiomas ul li a:hover { opacity:.6; }
.header_idiomas ul li.wpml-ls-current-language a { opacity:.6; }
.header.transparent .header_idiomas ul li a { color:$color-txt; }
.header.fixed .header_idiomas ul li a {  }*/
/* MENU BURGER */
.header__menu-burguer {
  display: none;
}

#nav-open-close {
  display: inline-block;
  position: relative;
  z-index: 10001;
  width: 30px;
  height: 22px;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

#nav-open-close span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: black;
  opacity: 1;
  left: 0;
  border-radius: 6px;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

#nav-open-close span {
  background: #FFAF12;
}

.transparent #nav-open-close span {
  background: #FFAF12;
}

#nav-open-close span:nth-child(1) {
  top: 0px;
}

#nav-open-close span:nth-child(2) {
  top: 10px;
}

#nav-open-close span:nth-child(3) {
  top: 20px;
}

/*#nav-open-close.open span,
.transparent.fixed #nav-open-close.open span { background:$color-txt; }*/
#nav-open-close.open span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
  width: 35px;
  left: -2px;
}

#nav-open-close.open span:nth-child(2) {
  opacity: 0;
  left: 0px;
}

#nav-open-close.open span:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg);
  width: 35px;
  left: -2px;
}

/* MENU MOBILE */
.header__desplegable {
  position: absolute;
  height: auto;
  width: 100%;
  z-index: 20;
  background-color: #271221;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -webkit-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -moz-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -ms-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -o-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
}

.header__desplegable.appear {
  visibility: visible;
  opacity: 1;
}

/* top level */
.header__nav-mobile {
  width: 100%;
  margin: 0;
  padding: 0;
  border-top: 1px solid #262626;
  border-bottom: 1px solid #FFAF12;
}

.header__nav-mobile li {
  margin: 0;
  border-bottom: 1px solid #262626;
}

.header__nav-mobile li.highlight {
  background-color: #FFAF12;
  border-bottom: 1px solid #262626;
}

.header__nav-mobile li a {
  text-align: right;
  position: relative;
  display: block;
  padding: 15px 20px;
  font-family: "Minerva", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  color: #FFAF12;
  letter-spacing: 1.5px;
  font-size: 1.7rem;
  line-height: 110%;
}

.header__nav-mobile li.current-menu-item a,
.header__nav-mobile li.selected a {
  color: #271221;
  background-color: #FFAF12;
}

main {
  margin-top: 120px;
}

main.transparent {
  margin-top: 0;
}

@media only screen and (width <= 900px) {
  .header__nav {
    display: none;
  }
  .header__menu-burguer {
    display: flex;
  }
  .header .web-logo {
    width: 80px;
  }
  .header .calltoaction {
    font-size: 1.2rem;
    padding: 0.4rem 1rem;
  }
  main {
    margin-top: 90px;
  }
}
/* ------------------------------------------------------------------------- */
/* HOME CSS */
/* ------------------------------------------------------------------------- */
main {
  position: relative;
}

.background-opacity {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #271221;
  opacity: 0.2;
}

.appearup {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.77, 0, 0.18, 1);
}

.appearup.show {
  opacity: 1;
  transform: translateY(0);
}

.top-section {
  position: relative;
  height: 100vh;
  min-height: 660px;
  padding: 30px 7%;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 0 5%;
}

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

.presentation .productora {
  font-size: 1.688rem;
  letter-spacing: 0.15rem;
}

.presentation .presenta {
  font-size: 0.8rem;
  letter-spacing: 0.6rem;
}

.illustration {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.illustration .animation {
  position: relative;
  aspect-ratio: 140/253;
  width: auto;
  height: calc(100vh - 100px);
  min-height: 500px;
}

.illustration .animation img.fixed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.glowing {
  width: 100%;
  opacity: 0;
  animation: slideFades 3s cubic-bezier(0.77, 0, 0.18, 1);
  animation-delay: 1s;
  animation-fill-mode: forwards;
}

@keyframes slideFades {
  100% {
    opacity: 1;
  }
  /*20% {opacity:1; }
  40% {opacity:1; }
  60% {opacity:0; }*/
}
.illustration .presentation {
  display: none;
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.content .logo {
  margin: 0 auto 1.5rem;
  max-width: 570px;
}

.content .slogan {
  font-size: clamp(1rem, 1rem + (1vw - 0.2rem) * 1.4, 1.4rem);
  letter-spacing: 0.9rem;
  margin-bottom: 0.9rem;
}

.content .cast {
  font-size: 0.7rem;
  letter-spacing: 0.15rem;
  margin-bottom: 0;
}

.content .date {
  font-size: clamp(1.5rem, 1.5rem + (1vw - 0.2rem) * 2.5, 2.5rem);
  letter-spacing: 0.4rem;
  margin: 3.2rem 0;
}

.links-section {
  padding-top: 1rem;
  margin-top: 30px;
  border-top: 1px solid #FFAF12;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15%;
}

.links-section .logo {
  max-width: 200px;
}

.links-section .logo p {
  font-size: 0.74rem;
  margin-top: 25px;
}

.links-section .logo p a {
  text-decoration: underline;
}

.links-section ul.links {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px 30px;
  margin-top: 10px;
}

.links-section ul.links li {
  list-style: none;
  margin: 0;
}

.links-section ul.links li a {
  font-family: "Minerva", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: clamp(1.2rem, 1.2rem + (1vw - 0.2rem) * 1.5, 1.5rem);
  line-height: 70%;
  color: #FFAF12;
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  gap: 5px;
}

.links-section ul.links li a span {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0 0 5px;
}

.links-section ul.links li a span:after {
  backface-visibility: hidden;
  transform-style: preserve-3d;
  transform: translateZ(0);
  will-change: transform;
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #FFAF12;
  transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -webkit-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  transform: translate3d(-103%, 0, 0);
  -webkit-transform: translate3d(-103%, 0, 0);
}

.links-section ul.links li a:hover span:after {
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
}

.logos-section {
  padding: 1rem 0;
  margin-top: 40px;
  border-top: 1px solid #FFAF12;
  border-bottom: 1px solid #FFAF12;
}

.logos-section img {
  width: 100%;
}

/*hr { margin:20px auto; background: $color-txt; border:none; height:1px; width:100%; }*/
small {
  font-size: 60%;
}

/* ANIMACIONES*/
.fadeup {
  opacity: 0;
  transform: translateY(200px);
  transition: all 1s cubic-bezier(0.77, 0, 0.18, 1);
}

.fadeup.show {
  opacity: 1;
  transform: translateY(0);
}

/* PAGES */
.back-home {
  position: relative;
  font-size: 1.5rem;
  line-height: 70%;
  letter-spacing: 2px;
}

.back-home img {
  max-width: 140px; /*transform: rotate(270deg);*/
}

/*.back-home:hover{ text-decoration: underline;}*/
.page {
  position: relative;
}

.page p {
  font-size: 1rem;
  line-height: 160%;
  margin-bottom: 1.5rem;
}

.page h1 {
  font-size: clamp(1.5rem, 1.5rem + (1vw - 0.2rem) * 2.5, 2.5rem);
  margin-bottom: 1.5rem;
}

.page h2, .page h3, .page h4 {
  font-size: clamp(1.2rem, 1.2rem + (1vw - 0.2rem) * 2, 2rem);
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

.page table {
  font-size: 0.7rem;
}

.page table th, .page table td {
  border-bottom: 1px solid rgba(255, 175, 20, 0.3607843137);
}

@media only screen and (width <= 900px) {
  .top-section {
    grid-template-columns: 1fr;
    height: auto;
    min-height: unset;
  }
  .illustration .presentation {
    display: flex;
  }
  .illustration .animation {
    height: auto;
    min-height: unset;
    width: 100%;
    max-width: 300px;
  }
  .content .presentation {
    display: none;
  }
  .content .slogan {
    letter-spacing: 0.3rem;
  }
  .content .date {
    letter-spacing: 0.2rem;
  }
  .links-section .logo {
    max-width: 162px;
  }
  .links-section .logo p {
    font-size: 0.6rem;
  }
  .links-section ul.links {
    flex-direction: column;
    align-items: flex-end;
  }
  .logos-section {
    margin-top: 50px;
    padding: 0.5rem 0;
  }
}
/* ------------------------------------------------------------------------- */
/* PAGE PAGE STYLES */
/* ------------------------------------------------------------------------- */
.acknowledgements {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 30px 0;
}
.acknowledgements .acknowledgement {
  flex-basis: 22%;
  margin: 0 1%;
  padding: 20px;
  border: 1px solid rgba(39, 18, 33, 0.2156862745);
  border-radius: 10px;
}
.acknowledgements .acknowledgement h1, .acknowledgements .acknowledgement h2, .acknowledgements .acknowledgement h3, .acknowledgements .acknowledgement h4 {
  color: #271221;
  font-size: clamp(1rem, 1rem + (1vw - 0.2rem) * 1.4, 1.4rem);
  margin-bottom: 1.5rem;
}
.acknowledgements .acknowledgement p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.twocolumns_1_3 {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0 7%;
}

.border-top {
  border-top: 1px solid;
}

.border-bottom {
  border-bottom: 1px solid;
}

.border-right {
  padding-right: 30px;
  border-right: 1px solid;
}

.column-details {
  padding-top: 50px;
  padding-bottom: 60px;
}

.detail_container {
  display: flex;
  margin-bottom: 1rem;
  gap: 0.6rem 1rem;
}
.detail_container .title {
  min-width: 80px;
}

/* ELENC */
.section-actors {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.section-actors a {
  display: block;
}
.section-actors a .image {
  width: 100%;
  aspect-ratio: 80/100;
  overflow: hidden;
  margin-bottom: 1rem;
}
.section-actors a .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -webkit-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -moz-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -ms-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -o-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
}
.section-actors a .title {
  font-size: 1.5rem;
  margin-bottom: 0.2rem;
}
.section-actors a p {
  margin: 0;
}
.section-actors a:hover .image img {
  transform: scale(1.05);
}

/* TEAM */
.line {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin-bottom: 0.5rem;
}
.line strong {
  font-family: "Minerva", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  text-align: right;
  font-size: 1.3rem;
  letter-spacing: 1px;
}

/* PRODUCTION */
.twocolumns_1_1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 10%;
}

.section-productors {
  border-top: 1px solid;
}
.section-productors .productor {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 10px;
  border-bottom: 1px solid;
}
.section-productors .productor .title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.section-productors .productor img {
  max-width: 100px;
  margin-bottom: 1rem;
}

/* Media */
.media-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.section-media {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.section-media .gallery-item {
  width: 100%;
  aspect-ratio: 100/70;
  overflow: hidden;
}
.section-media .gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -webkit-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -moz-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -ms-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -o-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
}
.section-media .gallery-item:hover img {
  transform: scale(1.05);
}

@media only screen and (width <= 1400px) {
  .acknowledgements .acknowledgement {
    flex-basis: 48%;
  }
}
@media only screen and (width <= 1100px) {
  .twocolumns_1_3 {
    grid-template-columns: 1fr;
  }
  .border-right {
    border-right: none;
    padding-right: 0;
  }
  .border-top {
    border-top: none;
  }
  .border-bottom {
    border-bottom: none;
  }
  .column-details {
    padding-top: 0;
    padding-bottom: 0;
  }
  .section-actors {
    grid-template-columns: repeat(3, 1fr);
  }
  .section-media {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media only screen and (width <= 900px) {
  .twocolumns_1_1 {
    grid-template-columns: 1fr;
  }
  .section-actors {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
  .section-media {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .section-media .gallery-item {
    aspect-ratio: 1/1;
  }
}
@media only screen and (width <= 600px) {
  .acknowledgements .acknowledgement {
    flex-basis: 100%;
    margin: 0;
  }
}
.actor-single {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  gap: 30px;
}
.actor-single__header {
  height: -moz-fit-content;
  height: fit-content;
}
.actor-single__header a.back {
  display: flex;
  margin-bottom: 10px;
}
.actor-single__header a.back img {
  width: 10px;
  transform: rotate(-90deg);
}
.actor-single__header .title {
  margin-bottom: 1rem;
}
.actor-single__image {
  grid-area: 1/2/span 2/2;
}

@media only screen and (width <= 800px) {
  .actor-single {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
  .actor-single__image {
    grid-area: 2/1/span 1/1;
  }
}
/* ------------------------------------------------------------------------- */
/* GENERAL FORM STYLES */
/* ------------------------------------------------------------------------- */
.hundreds-form__form {
  position: relative;
}

.submit-button-container {
  position: relative;
  margin-top: 30px;
}

.hundreds__loader {
  position: absolute;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.antibot_field {
  position: absolute;
  left: -9999px;
} /* antibot field */
.hundreds__messages--hide, .hundreds__loader_hidden {
  display: none;
}

.hundreds__messages--show {
  display: block;
}

.hundreds__messages {
  margin: 30px 0 0;
}

.hundreds__messages p {
  margin: 0;
  font-size: 1.125rem;
}

/* checkbox labels privacy policy*/
.hundreds-form__checkbox label {
  color: #FFAF12;
  cursor: pointer;
  display: block;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 150%;
  padding-left: 30px;
  margin-top: 15px;
  position: relative;
  text-align: left;
}

.hundreds-form__checkbox label:before {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 0;
  height: 15px;
  width: 15px;
  border: 1px solid #FFAF12;
  background-color: transparent;
  border-radius: 2px;
  transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -webkit-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -moz-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -ms-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -o-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
}

.hundreds-form__checkbox label a {
  color: #FFAF12;
  border-bottom: 1px solid #FFAF12;
}

form input[type=checkbox]:checked + label {
  color: #FFAF12;
}

form input[type=checkbox]:checked + label:before {
  background-color: #FFAF12;
}

form input[type=email],
form input[type=tel],
form input[type=text],
form input[type=number],
form textarea {
  border: 1px solid #FFAF12;
  padding: 0.9rem;
  margin-bottom: 10px;
  border-radius: 10px;
  color: #FFAF12;
  font-family: "Poppins", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 1.125rem;
  line-height: 110%;
  background: transparent;
  outline: 0;
  width: 100%;
  transition: all 0.5s cubic-bezier(0.15, 0.9, 0.34, 0.95);
  -webkit-appearance: none;
}

form textarea {
  resize: none;
}

form input[type=checkbox], form input[type=radio] {
  display: none;
}

form input[type=submit] {
  display: block;
  position: relative;
  background: #FFAF12;
  font-size: 1.25rem;
  line-height: 110%;
  font-weight: 400;
  cursor: pointer;
  border-radius: 10px;
  color: #FFAF12;
  border: 1px solid #FFAF12;
  opacity: 1;
  margin: 0;
  outline: 0;
  padding: 0.9rem 1.25rem;
  width: 100%;
  max-width: 160px;
  -webkit-appearance: none;
  transition: all 0.2s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -webkit-transition: all 0.2s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -moz-transition: all 0.2s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -ms-transition: all 0.2s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -o-transition: all 0.2s cubic-bezier(0.07, 0.71, 0.1, 0.9);
}

form input[type=submit]:hover {
  background-color: white;
  color: #FFAF12;
}

::-webkit-input-placeholder {
  opacity: 0.8;
}

:-moz-placeholder {
  opacity: 0.8;
}

::-moz-placeholder {
  opacity: 0.8;
}

:-ms-input-placeholder {
  opacity: 0.8;
}

@media only screen and (width <= 800px) {
  form input[type=submit] {
    width: 100%;
  }
  form label {
    font-size: 0.875rem;
  }
  .hundreds-form__checkbox {
    margin: 0;
    width: auto;
  }
}
@media only screen and (width <= 480px) {
  form input[type=submit] {
    padding: 0.75rem;
  }
  form input[type=email],
  form input[type=text],
  form input[type=tel],
  form input[type=number],
  form textarea {
    font-size: 1rem;
  }
  form label {
    font-size: 0.75rem;
  }
}
/* ------------------------------------------------------------------------- */
/* NEWSLETTER FORM STYLES */
/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
/* FOOTER STYLES */
/* ------------------------------------------------------------------------- */
.footer {
  position: relative;
}

.footer-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  font-size: 0.8rem;
  line-height: 110%;
}

.footer-content span {
  flex-shrink: 0;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.8rem;
  gap: 20px;
  line-height: 110%;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

@media only screen and (width <= 900px) {
  .footer-links {
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
  }
}
/* ------------------------------------------------------------------------- */
/* WordPress WYSIWYG Editor Styles */
/* ------------------------------------------------------------------------- */
.entry-content img {
  margin: 0 0 1.5em 0;
}

.alignleft, img.alignleft {
  margin-right: 1.5em;
  display: inline;
  float: left;
}

.alignright, img.alignright {
  margin-left: 1.5em;
  display: inline;
  float: right;
}

.aligncenter, img.aligncenter {
  margin-right: auto;
  margin-left: auto;
  display: block;
  clear: both;
}

.alignnone,
img.alignnone {
  /* not sure about this one */
}

.wp-caption {
  margin-bottom: 1.5em;
  text-align: center;
  padding-top: 5px;
}

.wp-caption img {
  border: 0 none;
  padding: 0;
  margin: 0;
}

.wp-caption p.wp-caption-text {
  line-height: 1.5;
  font-size: 10px;
  margin: 0;
}

.wp-smiley {
  margin: 0 !important;
  max-height: 1em;
}

blockquote.left {
  margin-right: 20px;
  text-align: right;
  margin-left: 0;
  width: 33%;
  float: left;
}

blockquote.right {
  margin-left: 20px;
  text-align: left;
  margin-right: 0;
  width: 33%;
  float: right;
}

/* ------------------------------------------------------------------------- */
/* VARIABLES 100X100 */
/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
/* GENEREAL STYLE FRO 100X100 */
/* ------------------------------------------------------------------------- */
.center-content {
  text-align: center;
}

.left-content {
  text-align: left;
}

.right-content {
  text-align: right;
}

/* ------------------------------------------------------------------------- */
/* 100X100 GRID SYSTEM */
/* ------------------------------------------------------------------------- */
.column-container {
  font-size: 0;
}

.column {
  display: inline-block;
  padding: 0.5%;
  vertical-align: top;
}

.column-1 {
  width: 8.3333333333%;
}

.column-2 {
  width: 16.6666666667%;
}

.column-3 {
  width: 25%;
}

.column-4 {
  width: 33.333333333%;
}

.column-5 {
  width: 41.666666667%;
}

.column-6 {
  width: 50%;
}

.column-7 {
  width: 58.333333333%;
}

.column-8 {
  width: 66.666666667%;
}

.column-9 {
  width: 75%;
}

.column-10 {
  width: 83.33333333%;
}

.column-11 {
  width: 91.66666667%;
}

.column-12 {
  width: 100%;
}

/* Special Grids */
.column-margin {
  display: inline-block;
  vertical-align: top;
}

.column-1_11 {
  width: 8.5%;
  margin-left: 0.29545455%;
  margin-right: 0.29545455%;
}

@media only screen and (max-width: 1100px) {
  .column-1-tablet {
    width: 8.3333333333%;
  }
  .column-2-tablet {
    width: 16.6666666667%;
  }
  .column-3-tablet {
    width: 25%;
  }
  .column-4-tablet {
    width: 33.333333333%;
  }
  .column-5-tablet {
    width: 41.666666667%;
  }
  .column-6-tablet {
    width: 50%;
  }
  .column-7-tablet {
    width: 58.333333333%;
  }
  .column-8-tablet {
    width: 66.666666667%;
  }
  .column-9-tablet {
    width: 75%;
  }
  .column-10-tablet {
    width: 83.33333333%;
  }
  .column-11-tablet {
    width: 91.66666667%;
  }
  .column-12-tablet {
    width: 100%;
  }
}
@media only screen and (max-width: 800px) {
  .column-1-mobile {
    width: 8.3333333333%;
  }
  .column-2-mobile {
    width: 16.6666666667%;
  }
  .column-3-mobile {
    width: 25%;
  }
  .column-4-mobile {
    width: 33.333333333%;
  }
  .column-5-mobile {
    width: 41.666666667%;
  }
  .column-6-mobile {
    width: 50%;
  }
  .column-7-mobile {
    width: 58.333333333%;
  }
  .column-8-mobile {
    width: 66.666666667%;
  }
  .column-9-mobile {
    width: 75%;
  }
  .column-10-mobile {
    width: 83.33333333%;
  }
  .column-11-mobile {
    width: 91.66666667%;
  }
  .column-12-mobile {
    width: 100%;
  }
  .column-0-mobile {
    display: none;
  }
}
/* ------------------------------------------------------------------------- */
/* VARIABLES FORM VALIDATION 100x100 */
/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
/* GENEREAL STYLE FORM VALIDATION 100x100 */
/* ------------------------------------------------------------------------- */
/* INPUT CSS */
.hundreds-validation__input_error {
  border-color: #d63031 !important;
}

label.hundreds-validation__input_error,
p.hundreds-validation__input_error,
label.hundreds-validation__input_error a {
  color: #d63031 !important;
  border-color: #d63031 !important;
}

.hundreds-form__error {
  display: none;
  color: #d63031;
}

/*.hundreds-validation__input_success{
	border-color: $hundreds-success-color !important;
}*/
/* MESSAGES CSS */
.form-messages {
  margin: 20px 0 30px;
}

.form-messages__success {
  color: #00b894;
}

.form-messages__errors {
  color: #d63031;
}

.form-messages_hide {
  display: none;
}

.form-messages_show {
  display: block;
}

/**
 * Swiper 12.1.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2026 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 18, 2026
 */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

: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;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

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

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

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

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

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

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

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

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

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

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

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

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

/* CSS Mode */
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-slides-offset-before);
      scroll-margin-inline-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-inline-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-slides-offset-before);
      scroll-margin-block-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-block-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: "";
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    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;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

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

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

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

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
  &.swiper-pagination-hidden {
    opacity: 0;
  }
  .swiper-pagination-disabled > &,
  &.swiper-pagination-disabled {
    display: none !important;
  }
}

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

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
  .swiper-pagination-bullet {
    transform: scale(0.33);
    position: relative;
  }
  .swiper-pagination-bullet-active {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-main {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-next-next {
    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& {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }
  .swiper-pagination-clickable & {
    cursor: pointer;
  }
  &: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-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
  .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block;
  }
  &.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    .swiper-pagination-bullet {
      display: inline-block;
      transition: 200ms transform, 200ms top;
    }
  }
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-horizontal.swiper-pagination-bullets {
  .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  }
  &.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    .swiper-pagination-bullet {
      transition: 200ms transform, 200ms left;
    }
  }
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

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

/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
  .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top;
  }
  .swiper-rtl & .swiper-pagination-progressbar-fill {
    transform-origin: right top;
  }
  .swiper-horizontal > &,
  &.swiper-pagination-horizontal,
  .swiper-vertical > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0;
  }
  .swiper-vertical > &,
  &.swiper-pagination-vertical,
  .swiper-horizontal > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
    width: var(--swiper-pagination-progressbar-size, 4px);
    height: 100%;
    left: 0;
    top: 0;
  }
}

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

/*.swiper .swiper-slide { height:100vh; }*/
.swiper-button-prev,
.swiper-button-next {
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: transparent;
}
.swiper-button-prev:not(.swiper-button-disabled):hover,
.swiper-button-next:not(.swiper-button-disabled):hover {
  opacity: 0.9;
}
.swiper-button-prev.swiper-button-lock,
.swiper-button-next.swiper-button-lock {
  display: none;
}

.swiper-button-disabled {
  opacity: 0.3;
}

.swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper-pagination.swiper-pagination-lock {
  display: none !important;
}
.swiper-pagination .swiper-pagination-bullet {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 4px;
  background-color: white;
  border-radius: 8px;
  opacity: 0.2;
  transition: all 0.2s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -webkit-transition: all 0.2s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -moz-transition: all 0.2s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -ms-transition: all 0.2s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -o-transition: all 0.2s cubic-bezier(0.07, 0.71, 0.1, 0.9);
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 32px;
  opacity: 1;
}

/*# sourceMappingURL=100x100.min.css.map*/