/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

:root {
  --red: #9D0D0D;
  --yellow: #EAC552;
  --dark: #272727;
  --grey: #575757;


  --font-xl: /*69px;*/ clamp(2.5rem, 1.5359rem + 3.0851vw, 4.3125rem);
  --font-l: /*40px;*/ clamp(2rem, 1.734rem + 0.8511vw, 2.5rem);
  --font-m: /*22px;*/ clamp(1.1875rem, 1.0878rem + 0.3191vw, 1.375rem);
  --font-s: /*20px;*/ clamp(1.0625rem, 0.9628rem + 0.3191vw, 1.25rem);
  --font-xs: /*19px;*/ clamp(1rem, 0.9003rem + 0.3191vw, 1.1875rem);
  --font-xxs: /*16px;*/ clamp(0.875rem, 0.8085rem + 0.2128vw, 1rem);


  /* --padding-xl: 20% 0;
  --padding-l: 10% 0;
  --padding-m: 5% 0; */

  --margin-m: 5%;
}
p {
  line-height: 175%;
  font-size: var(--font-xs);
  color: var(--grey);
}

.red, .red * {
  color: var(--red);
}
.yellow, .yellow * {
  color: var(--yellow);
}
.dark, .dark * {
  color: var(--dark);
}
.grey, .grey * {
  color: var(--grey);
}

.font-xl {
  font-size: var(--font-xl);
}
.font-l {
  font-size: var(--font-l);
}
.font-m {
  font-size: var(--font-m);
}
.font-s {
  font-size: var(--font-s);
}
.font-xs {
  font-size: var(--font-xs);
}
.font-xxs {
  font-size: var(--font-xxs);
}

.padding-xl {
  padding: 20% 0;
}
.padding-l {
  padding: 10% 0;
}
.padding-m {
  padding: 10vh 10vw;
}
.padding-s {
  padding: 5% 10%;
}


.raleway-regular {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.raleway-medium {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.raleway-bold {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.page,
.post {
  margin: 0;
}
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  color: var(--dark);
}
*,
a,
button,
::after,
::before {
  /* font-family: var(--regular);
  color: var(--dark); */
  font-family: "Raleway", sans-serif;
  /* font-size: 16px; */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}



header a, footer a {
  -webkit-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
header a:hover, footer a:hover {
  color: var(--yellow);
}

header a img, footer a img {
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  -o-transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
header a:hover img, footer a:hover img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

header .branding a:hover img, footer .branding a:hover {
  -webkit-transform: scale(0.95);
      -ms-transform: scale(0.95);
          transform: scale(0.95);
}

.relative {
  position: relative;
}
.absolute {
  position: absolute;
}


.tblr {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}


ul {
  margin: 0;
  padding: 0;
}



.regular {
  font-family: var(--regular);
  font-style: normal;
  font-weight: normal;
}



.m-0 {
  margin: 0;
}

.mb-5 {
  margin-bottom: 5%;
}

.mt-0, .mt-0 p {
  margin-top: 0;
}
.title-mt-0 h2 {
  margin-top: 0;
}

.mt-m {
  margin-top: var(--margin-m);
}
.p-0 {
  padding: 0;
}

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

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

h1, h2, h3 {
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
h1 {
  margin: 0;
}
h1, h1 > * {
  font-size: var(--font-xl);
}

.slide-title {
  font-size: var(--font-xl);
    font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
h2, h2 > * {
  font-size: var(--font-l);
}

h2 {
  margin-bottom: 0;
}

header {
  background: var(--red);
  padding: 25px 5%;
  z-index: 10000;
}

header *, footer * {
  font-size: var(--font-s);
}
footer {
  padding: 16px 5%;
}
footer .branding {
  height: 25px;
}
footer .branding img {
  height: 100%;
  width: auto;
  max-width: none;
  display: block;
}

footer .nav-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

.header__nav {
  position: relative;
  z-index: 1000;
}

.header__nav, .footer__nav {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5vw;
}

header .branding img {
  display: block;
}

.header__nav *, .footer__nav * {
  color: white;
}

.header__nav .nav-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.shape {
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  -webkit-transform: translate(0, 50%);
      -ms-transform: translate(0, 50%);
          transform: translate(0, 50%);
  max-width: 100vw;
}

.slider {
  width: 100%;
  height: auto;
  border-bottom: 17px solid var(--red);
  overflow: hidden;
}

.slider img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;

  display: block;
}

.text_gallery, .posts_instagram {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10%;
}

.text_gallery__text, .text_gallery__photos, .posts_instagram__text, .posts_instagram__photos, .contact__left, .contact__map, .posts_instagram > div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.text_gallery__text img, .posts_instagram__text img {
  max-width: 125px;
  width: 10vw;
}

.text_gallery__text h2 {
  margin-top: 0;
}

.text_gallery__photos, .posts_instagram__photos {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -ms-grid-rows: 1fr 24px 1fr 24px 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 24px;
  -ms-grid-row-align: stretch;
      align-self: stretch;
  height: auto;
  max-height: 80dvh;
  grid-auto-flow: dense;
  }

.text_gallery__photos > *:nth-child(1), .posts_instagram__photos > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  }

.text_gallery__photos > *:nth-child(2), .posts_instagram__photos > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  }

.text_gallery__photos > *:nth-child(3), .posts_instagram__photos > *:nth-child(3) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  }

.text_gallery__photos > *:nth-child(4), .posts_instagram__photos > *:nth-child(4) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
  }

.text_gallery__photos > *:nth-child(5), .posts_instagram__photos > *:nth-child(5) {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
  }

.text_gallery__photos > *:nth-child(6), .posts_instagram__photos > *:nth-child(6) {
  -ms-grid-row: 5;
  -ms-grid-column: 3;
  }

.posts_instagram {
  background: #F7F7F7;
}

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

  .text_gallery__photos > div, .posts_instagram__photos > div {
overflow: hidden;
  }

  .text_gallery__photos img, .posts_instagram__photos img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }

  .posts_instagram__photos img {
    aspect-ratio: 9 / 10;
  }


.img1 {
    -ms-grid-column-span: 2;
    grid-column: span 2 / span 2;
}

.img2 {
    -ms-grid-row-span: 2;
    grid-row: span 2 / span 2;
    -ms-grid-column: 2;
        grid-column-start: 2;
    -ms-grid-row: 2;
        grid-row-start: 2;
}

.img3 {
    -ms-grid-column: 1;
        grid-column-start: 1;
    -ms-grid-row: 2;
        grid-row-start: 2;
}


.button, input[type="submit"] {
  font-size: var(--font-xxs);
  color: var(--grey);
  padding: 10px 24px;
  border: solid 1px var(--red);

  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: transparent;
  cursor: pointer;
  border-radius: 0;
  -webkit-transition: background-color 0.5s ease-in-out;
  -o-transition: background-color 0.5s ease-in-out;
  transition: background-color 0.5s ease-in-out;
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;

}

.button:hover, input[type="submit"]:hover {
  background-color: rgba(157, 13, 13, 0.05);
  color: var(--grey);
  border-color: var(--red);
}

::-webkit-input-placeholder {
  font-size: var(--font-xxs);
  color: #301F1A;
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

::-moz-placeholder {
  font-size: var(--font-xxs);
  color: #301F1A;
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

:-ms-input-placeholder {
  font-size: var(--font-xxs);
  color: #301F1A;
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

::-ms-input-placeholder {
  font-size: var(--font-xxs);
  color: #301F1A;
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

::placeholder {
  font-size: var(--font-xxs);
  color: #301F1A;
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

input:focus, textarea:focus {
  outline: 1px solid var(--red);
}


.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16 / 9;
}

.slider-photos .next {
  position: absolute;
  top: 50%;
  right: -5vw;
    -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  z-index: 1;
}
.slider-photos .prev {
  position: absolute;
  top: 50%;
  left: -5vw;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  z-index: 1;
}

.contact__left {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 35px;
}

input[type="text"], input[type="email"], input[type="tel"], textarea {
  width: 100%;
  padding: 10px 15px;
  border: none;
  border-radius: 0;
  background-color: #F7F7F7;
}



form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.gap-20 {
  gap: 20px;
}

section.contact {
  gap: 10vw;
}

.contact .address p:last-child {
  margin-bottom: 0;
}



footer {
  background: var(--red);
}

.slide-content{
  position: absolute;
  bottom: 15%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  text-align: center;
  width: 100%;
}

.slide-content * {
  color: white;
}

.slide-content p {
  margin-bottom: 0 ;
}

  .slide-content > * {
       /* width: max-content; */
    /* margin: auto; */
    /* padding-left: 20px;
    padding-right: 20px;
    text-align: center; */
  }

.swiper-container {
  height: 100%;
  width: 100%;
}
video {
  height: 100%;
  width: 100%;
 display: block;
}

/* .slider .swiper-slide {
  height: calc(100vh - 85px - 17px);
} */
.fixed-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}
.video-slide {
  height: 100%;
  width: 100vw;
}

header {
  height: 85px;
}

.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 10%;
}

.slide__pagination {
  position: absolute;
  bottom: 20% ;
  left: 50% ;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1000000;
}

.slider .swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-max-content ;
  width: -moz-max-content ;
  width: max-content ;
  margin: auto;
  position: relative;

}
.dot-line {
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  border: 1px dotted white;
  width: calc(100% - 20px);
}

.swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  text-align: center;
  background: white;
outline: 3px solid rgba(255, 255, 255, 0.55);
opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--red);
  outline: none;
  -webkit-transform: scale(2);
      -ms-transform: scale(2);
          transform: scale(2);
}

.scroll-arrow {
  bottom: 30px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  z-index: 1000000;
  -webkit-animation: pulse 1s infinite;
          animation: pulse 1s infinite;
  will-change: transform;
}

.sound-switcher {
  bottom: 10%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  z-index: 1000000;
}


@-webkit-keyframes pulse {
  0% {
    -webkit-transform: translate(-50%, 0) scale(1);
            transform: translate(-50%, 0) scale(1);
  }
  25% {
    -webkit-transform: translate(-50%, 0) scale(.8);
            transform: translate(-50%, 0) scale(.8);
  }

  100% {
    -webkit-transform: translate(-50%, 0) scale(1);
            transform: translate(-50%, 0) scale(1);
  }
}


@keyframes pulse {
  0% {
    -webkit-transform: translate(-50%, 0) scale(1);
            transform: translate(-50%, 0) scale(1);
  }
  25% {
    -webkit-transform: translate(-50%, 0) scale(.8);
            transform: translate(-50%, 0) scale(.8);
  }

  100% {
    -webkit-transform: translate(-50%, 0) scale(1);
            transform: translate(-50%, 0) scale(1);
  }
}

.split {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 1;
  height: 2px;
  width: 70%;
  border-bottom: 1px solid var(--dark);
  -webkit-transform:  translate(-50%, -50%) rotate(45deg) scale(1);
      -ms-transform:  translate(-50%, -50%) rotate(45deg) scale(1);
          transform:  translate(-50%, -50%) rotate(45deg) scale(1);
}

.split-unmuted {
  -webkit-transform:  translate(-50%, -50%) rotate(45deg) scale(0);
      -ms-transform:  translate(-50%, -50%) rotate(45deg) scale(0);
          transform:  translate(-50%, -50%) rotate(45deg) scale(0);
}
.split-muted {
  -webkit-transform:  translate(-50%, -50%) rotate(45deg) scale(1);
      -ms-transform:  translate(-50%, -50%) rotate(45deg) scale(1);
          transform:  translate(-50%, -50%) rotate(45deg) scale(1);
}

html:not(.no-js) [data-aos=fade-down] {
  -webkit-transform: translate3d(0, -25px, 0);
  transform: translate3d(0, -25px, 0);
}

.error-404 {

  height: 60vh;
}
.error-404 .page-content{
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.links a {
  font-size: 15px;
}

header .nav-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

header .nav-right, header .nav-left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.swiper-container {
  width: 100%;
  overflow: hidden;
}

.swiper-slide {
  width: 100% !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide-video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.video-slide {
  width: 100%;
  position: relative;
}

.slide-video {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
}