@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  /* font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
   */scroll-behavior: smooth;
   font-family: "Open Sans", sans-serif;
}

:root {
  --primary-color: #ff0000;
  --secondary-color: #ffff00;
  --background-color: rgb(0, 0, 0);
  --font-color: aliceblue;
  --font-colorAlt: black;
  --backgorund-color-alt: #0f0f0f;
  --text-color: ;
  --text-hover-color: rgba(255, 255, 255, 0.7);
  --color3: #00ffff;
  --color3: #ff8000;
  --color3: #00ff00;
}

:root [data-theme="dark"] {
  --color: #00ffff;
  --color2: #ff8000;
  --color3: #00ff00;
}

html {
  font-size: 1rem;
  font-family: "Open Sans",  sans-serif;
}

/* .wrapper {
    display: grid;
    grid-template-columns: auto minmax(min-content, 1fr);
    grid-template-rows: auto minmax(min-content, 1fr);
    max-width: 700px;
    margin: 0 auto;
    background-color: aliceblue;
  } */

.hidden {
  opacity: 0;
  transition: all 5s;
  transform: translateX(0);
}
.show {
  animation: testshow 2s ease-in both;
}

@keyframes testshow {
  to {
    opacity: 1;
    transform: translateX(50%);
    background: #f1c40f;
  }
}

section {
  display: grid;
  align-content: center;
  font-family: "Open Sans",  sans-serif;
  /* max-height: 100vh; */
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  align-content: center;
  overflow-x: hidden;
  /* transition: 3s; */
  background: var(--background-color);
  font-family: "Open Sans",  sans-serif;
}

#container-body {
  background: var(--background-color);
}

/* ----------------------------------------------*/
/* ----------------------------------------------*/
/* ----------------------------------------------*/
/* ----------------- HEADER ----------------- */
/* ----------------------------------------------*/
/* ----------------------------------------------*/
/* ----------------------------------------------*/

header {
  overflow-x: hidden;
}

header .header-design {
  position: fixed;
  width: 100%;
  height: 9%;
  background: url(../img/nav-background.svg) no-repeat;
  background-size: cover;
  background-position: center;
  
  display: flex;
  align-items: center;
  align-content: center;
  padding: 0 2em;
  filter: drop-shadow(rgb(0, 0, 0) 0.1rem 0.3rem 10px);
  /* opacity: .9; */
  z-index: 10;
  animation: hide-menu linear both;
  animation-timeline: scroll();
  animation-range: 0vh 10vh;
  animation-duration: 1ms;
}

.navbar{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;

}

header .header-design .logo {
  width: 150px;
  display: inline-block;
  vertical-align: middle;
}

header .header-design .logo img {
  /* position: absolute; */

  cursor: pointer;
  transition: 0.3s;
}

@keyframes hide-menu {
  to {
    height: 6%;
  }
}

header .header-design .logo img:hover {
  filter: drop-shadow(rgb(255, 255, 255) 0.1rem 0.3rem 10px);
}

/* ----------------------------------------------*/
/* ----------------------------------------------*/
/* ----------------------------------------------*/
/* ----------------- NAVBAR -----------------  */
/* ----------------------------------------------*/
/* ----------------------------------------------*/
/* ----------------------------------------------*/



.nav-links li {
  display: inline-block;
  vertical-align: middle;
}

.navbar .nav-links a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Open Sans",  sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  cursor: pointer;
  top: 7px;
  padding: 0 15px;
  z-index: 1;
}

.navbar .nav-links a,
.navbar .nav-links a::after,
.navbar .nav-links a::before {
  transition: all 0.5s;
}

.navbar .nav-links a:hover {
  color: var(--background-color);
  text-decoration: none;
}

/* STROKE UNDERLINE */
/* .navbar a::after{
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
 
  width: 0%;
  content: '.';
  color: transparent;
  background: var(--secondary-color);
  height: 3px;
}

.navbar a:hover::after{
    width: 100%;
} */

/* SHIFT NAVBAR HOVER */

.navbar .nav-links a::after {
  display: block;
  position: absolute;
  top: 0;
  left: -5px;
  bottom: 0;

  visibility: hidden;
  width: 110%;
  height: auto;
  content: " ";
  color: transparent;
  background: var(--secondary-color);
  border-radius: 4px;
  /* visibility: none; */
  opacity: 0;
  z-index: -1;
}

.navbar .nav-links a:hover::after {
  visibility: visible;
  opacity: 1;
}

.play-ghost a {
  display: flex;
  justify-content: center;
  align-items: center;
  content: "";
  cursor: pointer;
  width: auto;
  height: auto;
  /* padding: .3em; */
  background: var(--color3);
  border-radius: 4px;
  border: 1px solid hsla(0, 0%, 100%, 0.5);
  box-shadow: 0 0 0 3px var(--primary-color), inset 0 0 0 0 #202020,
    0 0 0 0 rgba(0, 0, 0, 0.8);
  z-index: -1;
}

.play-ghost a {
  text-decoration: none;
  color: #000000;
  text-transform: uppercase;
  font-size: 1.3rem;
  font-weight: 800;
  transition: 0.5s;
}

.play-ghost a:hover {
  text-decoration: none;
  color: aliceblue;
  font-size: 1.7rem;
}

/* Botón de menú (hamburguesa) - solo visible en móviles */
.menu-toggle {
  display: none;
  font-size: 2.5rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}


/* ----------------------------------------------*/
/* ----------------------------------------------*/
/* ----------------------------------------------*/
/* ----------------- PRINCIPAL SECTION -----------------  */
/* ----------------------------------------------*/
/* ----------------------------------------------*/
/* ----------------------------------------------*/
.section-content-header {
  width: 100%;
  min-height: 100dvh;
  display: flex;
  /* justify-content: end; */
  /* background: white; */

  z-index: 1000;
}



.section-content2 {
  width: 100%;
  height: 100dvh;
  display: flex;
  /* justify-content: end; */
}

/* section .banner1{
    width: min(100%, 1360px);
    height: 100dvh;
   
} */

.banner-container-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  overflow: hidden;
}

.banner-container-bg video {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.banner-container-bg-vertical {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  overflow: hidden;
}


.banner-container-bg-vertical video {
  width: 100%;
  height: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}












@media (max-width: 500px) {
  .banner-container-bg {
    display: none;
  }

  .banner-container-bg-vertical {
    display: flex;
   }

}

/* 
.banner-container-bg{
    position: absolute;
    width: 100%;
    height: 100vh;
    background: url(../img/banner-bg.jpg) no-repeat;
    box-shadow: inset 15px -15px 50px #000000;
    background-size: cover;
    background-position: center;
    z-index: -1;

} */
/* ----------------------------------------------*/
/* ----------------------------------------------*/
/* ----------------------------------------------*/
/* ----------------- SUBJECT -----------------  */
/* ----------------------------------------------*/
/* ----------------------------------------------*/
/* ----------------------------------------------*/

/* .banner-container-subject img{
    position: absolute;
    width: 400px;
    height: 576px;
    right: 5rem;
    bottom: 0;
  
} */

/* ----------------------------------------------*/
/* ----------------------------------------------*/
/* ----------------------------------------------*/
/* ----------------- TRAILER -----------------  */
/* ----------------------------------------------*/
/* ----------------------------------------------*/
/* ----------------------------------------------*/
/* 
.modal-trailer video {
  width: 70%;
  z-index: 10;
} */

/* ----------------------------------------------*/
/* ----------------------------------------------*/
/* ----------------------------------------------*/
/* ----------------- RESERVATION -----------------  */
/* ----------------------------------------------*/
/* ----------------------------------------------*/
/* ----------------------------------------------*/

.banner-post-content {
  display: flex;
  width: 100%;
  height: 100dvh;
  justify-content: end;
  align-items: center;
  padding: 0% 5%;
  transition: 0.3s;
  padding-top: 50px;
}

.banner-post {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  align-items: center;
  align-content: center;
  width: 30%;
  height: auto;
  padding: 1.5em;
 
     backdrop-filter: blur(30px);
     color: aliceblue;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px var(--primary-color);
  border: 3px solid rgb(255, 0, 0, 0.7);
  transition: 0.3s;
  z-index: 3;
}

/* .banner-post{
    position: absolute;
    left: 2rem;
    top: 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    height: auto;
    max-width: 300px;
    padding: 1rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(227,228,237,0.37);
    border: 3px solid rgba(255, 255, 255, 0.18);
    
} */

.banner-post:hover {
  box-shadow: 0 0 70px var(--primary-color);
}

.banner-post .logo-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  /* padding-top: 5%; */
}

.banner-post .logo-banner img {
  width: 80%;
  height: auto;

  /* padding-bottom: 40px; */
}

.banner-post .info-banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  list-style: none;
  text-decoration: none;
  gap: 15px;
  height: auto;
  /* transform: translateY(-20px); */
  /* font-size: 1.1rem; */
}

.banner-post .info-banner p {
  color: aliceblue;
  font-size: 1.3rem;
  font-weight: 400;
  text-align: justify;
}

.banner-post .info-banner span {
  color: var(--color3);
  font-weight: 800;
}

/* ----------------------------------------------*/
/* ----------------------------------------------*/
/* ----------------------------------------------*/
/* -------------- ANIMATION trailer ------------ */
/* ----------------------------------------------*/
/* ----------------------------------------------*/
/* ----------------------------------------------*/

.banner-post .info-banner .op-trailer {
  display: block;
  align-items: center;
  text-align: center;
  /* width: 100%; */
  margin: auto;
  /* padding-bottom: 2rem;  */
  transform: translateY(-15px);
}

.banner-post .info-banner .op-trailer a {
  text-decoration: none;
  color: black;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 3px;
  cursor: pointer;
  display: flex;
  justify-content: start;
  margin-top: 10px;
}



.banner-post .info-banner .op-trailer a::before {
  /* display: inline-block; */

  position: absolute;
  bottom: 0;
  /* top: 34px; */
  content: "";
  width: 100%;
  height: 3px;
  background: aliceblue;
  border-radius: 4px;
  opacity: 0.7;
  z-index: 2;
}

.banner-post .info-banner .op-trailer a::after {
  display: block;
  position: absolute;
  /* left: 24%; */
  bottom: 0;
  content: "";
  height: 3px;
  background: black;
  border-radius: 4px;
  opacity: 0;
  z-index: 101;
}

.banner-post .info-banner .op-trailer a:hover::after {
  visibility: visible;
  opacity: 1;
  animation: slide-trailer 0.5s forwards;
}

@keyframes slide-trailer {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

/* ----------------------------------------------*/
/* ----------------------------------------------*/
/* ----------------------------------------------*/
/* -------------- ANIMATION RESERVA ------------ */
/* ----------------------------------------------*/
/* ----------------------------------------------*/
/* ----------------------------------------------*/
/* .banner-post .info-banner .op-reserva a{
    
    text-decoration: none;
    color: aliceblue;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 3px;
     
}

.banner-post .info-banner .op-reserva a::before{
    display: block;
    position: absolute;
    top: -13px;
    left: 10%;
    content: '';
    min-width: 200px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 4px;
    border: 1px solid hsla(0, 0%, 100%, .5);
    box-shadow: 0 0 0 3px #E8110F, inset 0 0 0 0 #202020, 0 0 0 0 rgba(0, 0, 0, .8);
    
    z-index: -1;
  
}


.banner-post .info-banner .op-reserva a:hover::after{
    display: block;
    position: absolute;
    top: -13px;
    left: 10%;
    content: '';
    
    height: 50px;
    background: rgb(255, 255, 255);
    border-radius: 4px;
    border: 1px solid hsla(0, 0%, 100%, .3);
    animation: slide-reserva .5s forwards;
    opacity: .1;
    z-index: 1;
  
} */

.banner-post .info-banner .op-reserva {
  transform: translateY(0);
}

.banner-post .info-banner .op-reserva a {
  display: flex;
  justify-content: center;
  align-items: center;
  content: "";
  cursor: pointer;
  width: 100%;
  height: auto;
  color: var(--font-colorAlt);
  padding: 15px;
  font-family: "Open Sans",  sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-decoration: none;
  background: var(--color3);
  border-radius: 4px;
  border: 2px solid hsla(0, 0%, 0%, 0.5);
  box-shadow: 0 0 0 3px var(--color3), inset 0 0 0 0 #202020,
    0 0 0 0 rgba(0, 0, 0, 0.8);
  z-index: -1;
}

.banner-post .info-banner .op-reserva a:hover::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  height: 100%;
  cursor: pointer;
  background: rgb(255, 255, 255);
  border-radius: 4px;
  border: 1px solid rgb(0, 0, 0);
  animation: slide-reserva 0.5s forwards;
  opacity: 0.1;
  z-index: 1;
}

@keyframes slide-reserva {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

/* .banner-post .info-banner .op-trailer a:hover::after{
    visibility: visible;
    opacity: 1;
    animation: slide-trailer 1s forwards;
       
}    */

/* -----------------------------------------------------------------*/
/* -----------------------------------------------------------------*/
/* -----------------------------------------------------------------*/
/* ------------------ LEAVES MOMIJI --------------------------------*/
/* -----------------------------------------------------------------*/
/* -----------------------------------------------------------------*/
/* -----------------------------------------------------------------*/

.leaf-momiji img {
  animation: moveMomiji1 linear both;
  animation-timeline: scroll();
  animation-range: 0vh 50vh;
  animation-duration: 1ms;
}

.leaf-momiji2 img {
  animation: moveMomiji2 linear both;
  animation-timeline: scroll();
  animation-range: 0vh 50vh;
  animation-duration: 1ms;
}

.leaf-momiji img,
.leaf-momiji2 img {
  width: 100px;
  height: 100px;
  filter: drop-shadow(0 0 0.3rem #f1a854);
}

@keyframes moveMomiji1 {
  to {
    transform: rotate(-30deg) translateY(500px) rotate(0deg) scale(0.2);
  }
}

@keyframes moveMomiji2 {
  to {
    transform: rotate(100deg) translateY(500px) rotate(0deg) scale(0.2);
  }
}

@keyframes moveMomiji3 {
  to {
    transform: rotate(200deg) translateY(500px) rotate(0deg) scale(2);
  }
}

.leaf-momiji3 img {
  width: 500px;
  height: 500px;
  animation: moveMomiji3 linear both;
  animation-timeline: scroll();
  animation-range: 0vh 50vh;
  animation-duration: 1ms;
}

.leaf-momiji {
  position: absolute;
  top: 0%;
  left: 50%;
  cursor: pointer;
  animation: leaf-momiji1 6s forwards ease;
  z-index: 10;
}

.leaf-momiji2 {
  position: absolute;
  top: 0%;
  left: 50%;
  cursor: pointer;
  animation: leaf-momiji2 3s forwards ease;
  z-index: 10;
}

.leaf-momiji3 {
  position: absolute;
  bottom: 20%;
  right: 30%;
  /* cursor: pointer; */
  animation-delay: 5s;
  animation: leaf-momiji3 3s forwards ease;

  /* animation: leaf-momiji3 3s forwards ease, leaf-momiji2 6s forwards ease; */
  z-index: 10;
}

.leaf-momiji:hover,
.leaf-momiji2:hover,
.leaf-momiji3:hover {
  filter: drop-shadow(0 0 0.7rem #ffffff);
}

/* -------------------ANIMATION MOMIJI--------------- */

@keyframes leaf-momiji1 {
  0% {
    top: 0%;
    left: 60%;
  }
  100% {
    top: 10%;
    left: 10%;
  }
}

@keyframes leaf-momiji2 {
  0% {
    top: 0%;
    left: 60%;
  }
  100% {
    top: 10%;
    left: 70%;
  }
}

@keyframes leaf-momiji3 {
  0% {
    transform: rotate(0deg) translate(100px) rotate(0);
  }

  100% {
    transform: rotate(100deg) translate(250px) rotate(-100deg) scale(0.2);
  }
}

/* -------------- SCROLL ANIMATION MOMIJI --------*/

.modal-trailer {
  /* display: none; */
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 4;
}

/* -----------------------------------------------*/
/* -----------------------------------------------*/
/* -----------------------------------------------*/
/* ----------------SECTION 2----------------- */
/* -----------------------------------------------*/
/* -----------------------------------------------*/
/* -----------------------------------------------*/

.section-content {
  width: 100%;
  min-height: 100dvh;
  display: flex;
  /* justify-content: end; */
  /* background: white; */

  
}

.banner-wrapper {
  position: relative;
  width: min(100%, 1360px);
  height: 110dvh;
  /* margin-inline: auto; */
}

.banner-inner {
  display: flex;
  width: 100%;
  height: 110dvh;
  justify-content: end;
  align-items: center;
  /* margin: 0 auto; */
  padding: 0 10%;
}

.banner .banner-wrapper .banner-container-subject-2 {
  position: absolute;
  width: 100%;
  height: auto;
  bottom: 0;
  left: 10%;
  z-index: 1;
}

@media (max-width: 1200px) {
  @media (max-height: 500px) {
    .banner .banner-wrapper .banner-container-subject-2 {
      width: 25%;
    }
  }
}

.banner .banner-wrapper .banner-container-subject-2 img {
  width: 450px;
  transform: translateX(-550px);
  /* Create View Timeline */
  /* view-timeline-name: --revealing_image;
    view-timeline-axis: block; */
  /* Attach animation, linked to the  View Timeline */
  animation: linear reveal-subject2 forwards;
  animation-timeline: view(block);
  animation-range: entry 25% cover 35%;
}

@keyframes reveal-subject2 {
  from {
    transform: translateX(-550px);
  }
  to {
    transform: translateX(0);
  }
}

.banner-container-bg2 {
  position: absolute;
  width: 100%;
  height: 110dvh;
  background: url(../img/ghost-of-tsusima-wallpaper2.webp) no-repeat;
  -webkit-box-shadow: inset 0px 0px 35px 20px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: inset 0px 0px 35px 20px rgba(0, 0, 0, 0.75);
  box-shadow: inset 0px 0px 35px 20px rgba(0, 0, 0, 0.75);
  background-size: cover;
  background-position: center;
  /* transform: scaleX(-1); */
  z-index: 1;
}

.banner-content {
  width: 50%;
  height: auto;
  /* transform: translateX(100%); */
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 9px;
  flex-direction: column;
  z-index: 2;
  text-align: center;
   padding: 1.5em;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px var(--primary-color);
  border: 3px solid rgb(255, 0, 0, 0.7);
  transform: translateY(400px);
  transition: 0.5s;
  /* Create View Timeline */
  view-timeline-name: --revealing-image;
  view-timeline-axis: block;
  /* Attach animation, linked to the  View Timeline */
  animation: linear reveal2 forwards;
  animation-timeline: --revealing-image;
  /* Tweak range when effect should run*/
  animation-range: entry 15% cover 45%;
}

@keyframes reveal2 {
  from {
    transform: translateY(400px);
  }
  to {
    transform: translateY(0px);
  }
}

.banner-content:hover {
  box-shadow: 0 0 70px var(--primary-color);
}


.banner-content h2 {
  font-family: "Open Sans", sans-serif;

  font-weight: 700;
  /* letter-spacing: 2px; */
  text-transform: uppercase;
  /* text-shadow: 1px 2px 0 rgba(0, 0, 0, 0.75); */
  color: #ffffff;
}

.banner-content p {

  
  font-family: "Open Sans", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  text-align: justify;
  color: var(--font-color);
  text-shadow: 2px 3px 6px rgba(0, 0, 0, 0.71);
  padding-bottom: 6px;
}

.banner-content p span {
  color: var(--primary-color);
  font-weight: 800;
}

.banner-inner .banner-content .op-reserva {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  content: "";
  cursor: pointer;
  width: auto;
  height: auto;
  padding: 1em;
  background: var(--primary-color);
  border-radius: 4px;
  border: 1px solid hsla(0, 0%, 100%, 0.5);
  box-shadow: 0 0 0 3px #e8110f, inset 0 0 0 0 #202020,
    0 0 0 0 rgba(0, 0, 0, 0.8);
  z-index: -1;
}

.banner-inner .banner-content .op-reserva a {
  text-decoration: none;
  
  color: aliceblue;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 3px;
}

.banner-inner .banner-content .op-reserva a:hover::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  height: 100%;
  background: rgb(255, 255, 255);
  border-radius: 4px;
  border: 1px solid hsla(0, 0%, 100%, 0.3);
  animation: slide-reserva 0.5s forwards;
  opacity: 0.1;
  z-index: 1;
}

/* -----------------------------------------------*/
/* -----------------------------------------------*/
/* -----------------------------------------------*/
/* -------------------- SECTION 3  -------------- */
/* -----------------------------------------------*/
/* -----------------------------------------------*/
/* -----------------------------------------------*/
.section-content-gallery {
  width: 100%;
  min-height: 100dvh;
  display: flex;
  /* justify-content: end; */
  /* background: white; */

  
}

.banner-wrapper3 {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 110dvh;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  /* gap: 3vh; */
  /* padding-top: 250px; */

  view-timeline-name: --text-gallery-move;
  view-timeline-axis: block;
}



.banner-container-bg3 {
  position: absolute;
  width: 100%;
  height: 110dvh;
  background: url(../img/ghost-of-tsusima-wallpaper3.png) no-repeat;
  box-shadow: inset 15px -15px 50px #000000;
  background-size: cover;
  background-position: center;
  object-fit: cover;
  /* transform: scaleX(-1); */
}

.banner-inner3 {
  width: 70%;
  height: auto;
  display: flex;
  /* padding-top: 200px; */
  flex-direction: column;

  /* Attach animation, linked to the  View Timeline */
  animation: linear reveal3 forwards;
  /* animation-timeline: --text-gallery-move; */
  /* Tweak range when effect should run*/
  animation-range: entry 0% cover 40%;
}

@keyframes reveal3 {
  from {
    transform: translateY(-300px);
  }
  to {
    transform: translateY(50px);
  }
}


.banner-inner3 .banner-content3 div:first-child {
  width: auto;
  height: 3px;
  background: #777777;
  border-radius: 4px;
  margin-top: 10px;
  display: flex;
  justify-content: center;
}

.banner-inner3 .banner-content3 a::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-top: 0;
  border-bottom: 10px solid rgb(91, 91, 91);
  transform: translate(-50%, 10px);
}

.banner-inner3 .banner-content3 a::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-top: 0;
  border-bottom: 10px solid rgb(91, 91, 91);
  rotate: 180deg;
  transform: translate(50%, 15px);
}

.revealdiv {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
}



.banner-inner3 .banner-content3 .move-h1 h1 {
  text-transform: uppercase;
  color: #fff;
  margin-top: 10px;
}

.move-h1 {
  width: 100%;
  height: auto;
  transform: translateY(50%);
  flex-direction: row;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.move-h1 h1{
  font-size: 2rem;
  text-align: center;
}

.move-h1 h1:first-child {
  /* Attach animation, linked to the  View Timeline */
  animation: linear reveal-h1-gallery-right forwards;
  animation-timeline: --text-gallery-move;
  /* Tweak range when effect should run*/
  animation-range: entry 0% cover 40%;
}

.move-h1 h1:last-child {
  /* Attach animation, linked to the  View Timeline */
  animation: reveal-h1-gallery-left auto linear both;
  animation-timeline: --text-gallery-move;
  /* Tweak range when effect should run*/
  animation-range: entry 0% cover 40%;
}

@keyframes reveal-h1-gallery-right {
  from {
    transform: translateX(-300px);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes reveal-h1-gallery-left {
  from {
    transform: translateX(300px);
  }
  to {
    transform: translateX(0);
  }
}

.banner-inner3 .banner-content3 span {
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary-color);
}

.banner-inner3 .banner-content3 p {
  padding: 2rem 1.5rem;
  font-size: 1.3rem;
  text-align: justify;
  color: #fff;
  animation: change linear forwards;
  animation-timeline: --text-gallery-move;
  animation-range: entry 0 cover 50%;
  
}

@keyframes change {
  from {
    opacity: 0;
    transform: translateY(150px);
  }
  to {
    opacity: 1;
    transform: translateY(20px);
  }
}

/* -----------------------------------------------*/
/* -----------------------------------------------*/
/* -----------------------------------------------*/
/* -------------- GALLERY IMAGES SECTION 3 ---------------------- */
/* -----------------------------------------------*/
/* -----------------------------------------------*/
/* -----------------------------------------------*/

.gallery-container {
  max-width: 100%;
  height: auto;
}

.banner-content3-gallery {
  width: 50%;
  height: auto;
  margin: 0 auto;
  /* box-shadow: 0 0 20px rgba(227,228,237,0.37); */
  box-shadow: 0px 0px 15px #7e7e7e;
  /* border: 3px solid rgba(255, 255, 255, 0.18); */
  transition: 0.3s;
}

/* -------------------------------------------------------------- */
/* -------------------------------------------------------------- */
/* -------------------------------------------------------------- */
/* --------------  SECTION 4 ---------------------- */
/* -------------------------------------------------------------- */
/* -------------------------------------------------------------- */
/* -------------------------------------------------------------- */

#sectionPin {
  /* Stretch it out, so that we create room for the horizontal scroll animation */
  height: 120vh;
  overflow: visible; /* To make position sticky work … */
  view-timeline-name: --section-pin-tl;
  view-timeline-axis: block;
}

.pin-wrap-sticky {
  /* Stick to Top */
  height: 100vh;
  width: 100%;
  position: sticky;
  top: 0;
  overflow-x: hidden;
  overflow-y: hidden;
  /* transform: translateY(-100px); */
}

.pin-wrap {
  height: 100vh;
  width: 500vmin;
  /* Hook animation */
  will-change: transform;
  animation: linear move-right-slide forwards;
  /* Link animation to view-timeline */
  animation-timeline: --section-pin-tl;
  animation-range: contain 0% contain 300%;
}

@keyframes move-right-slide {
  to {
    /* Move horizontally so that right edge is aligned against the viewport */
    transform: translateX(calc(-100% + 100vw));
  }
}

.gallery-content-seccion4 {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  height: 100vh;
  gap: 20px;
  padding-left: 20px;
}

.gallery-content-seccion4 img {
  width: 350px;
  aspect-ratio: 9 / 16;
  animation: moveSlideImg linear both;
  animation-timeline: --section-pin-tl;
  animation-range: contain 20% cover 150%;
  animation-duration: 1ms;
}

@keyframes moveSlideImg {
  to {
    width: 250px;
    margin-top: 15%;
  }
}

.text-gallery {
  position: absolute;
  left: 0;
  /* animation: moveSlideText2 linear both;
	animation-timeline: --section-pin-tl;
    animation-range: entry 0% cover 100%;
    
	animation-duration: 1ms; */
}

/* .text-gallery{
    position: absolute;
    left: 0;

    animation: moveSlideText2 linear both;
	animation-timeline: --section-pin-tl;
    
    animation-range: 0vh 300vh;
	animation-duration: 1ms;
} */

.text-gallery p {
  font-size: 10rem;
  font-weight: 800;
  text-transform: uppercase;
  opacity: 0.7;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px #e3e3e3;
  animation: moveSlideText2 linear both;
  animation-timeline: --section-pin-tl;
  animation-range: 0vh 400vh;
  animation-duration: 1ms;
}

@keyframes moveSlideText2 {
  from {
  }
  to {
    transform: translateX(200%);
  }
}

/* ------------------------------------------------------------- */
/* ------------------------------------------------------------- */
/* ------------------------------------------------------------- */
/* --------------------- SECTION 5 SUBSCRIBE --------------------- */
/* ------------------------------------------------------------- */
/* ------------------------------------------------------------- */
/* ------------------------------------------------------------- */

.banner-wrapper-subscribe {
  position: relative;
  /* width: min(100%, 1360px); */
  width: 100%;
  height: 70dvh;
  /* margin-inline: auto; */
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-inner-subscribe {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  height: auto;
  justify-content: center;
  align-items: center;
  background: url(../img/banner-bg2.webp);
  color: var(--font-color);
  text-align: justify;

  padding: 3em;
  -webkit-box-shadow: inset 0px 0px 35px 20px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: inset 0px 0px 35px 20px rgba(0, 0, 0, 0.75);
  box-shadow: inset 0px 0px 35px 20px rgba(0, 0, 0, 0.75);
}

.banner-inner-subscribe h1 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}

.content-email {
  display: flex;
  flex-direction: row;
  height: auto;
  gap: 1rem;
}

.content-email input[type="email"] {
  border: 1px solid black;
  border-radius: 4px;
  padding: 0 1rem;
  background: aliceblue;
  color: #000000;
}

.content-email input[type="email"]:hover {
  border: 2px solid var(--primary-color);
}

/* .wrapper-subscribe{
    position: relative;
    display: flex;
    flex-direction: row;
    height: auto;
    gap: 1rem;
} */
.subscribe {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  content: "";
  cursor: pointer;
  width: auto;
  height: auto;
  padding: 1em;
  background: var(--primary-color);
  border-radius: 4px;
  border: 1px solid hsla(0, 0%, 100%, 0.5);
  box-shadow: 0 0 0 3px #e8110f, inset 0 0 0 0 #202020,
    0 0 0 0 rgba(0, 0, 0, 0.8);
  text-decoration: none;
}

.subscribe a {
  text-decoration: none;
  color: aliceblue;
  text-transform: uppercase;
 
  font-weight: 800;
  letter-spacing: 3px;
}

.subscribe a::after {
  text-decoration: none;
  color: aliceblue;
}

.subscribe a:hover::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  height: 100%;
  text-decoration: none;
  background: rgb(255, 255, 255);
  border-radius: 4px;
  border: 1px solid hsla(0, 0%, 100%, 0.3);
  animation: slide-reserva 0.5s forwards;
  opacity: 0.1;
  z-index: 1;
}

@keyframes slide-reserva {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}


/* ------------------------------------------------------------- */
/* ------------------------------------------------------------- */
/* ------------------------------------------------------------- */
/* --------------------- FOOTER --------------------- */
/* ------------------------------------------------------------- */
/* ------------------------------------------------------------- */
/* ------------------------------------------------------------- */

section .footer {
  width: min(100%, 1600px);
  height: auto;
  background: #00ff00;
}



.banner-wrapper-footer {
  position: relative;
  /* width: min(100%, 1600px); */
  width: 100%;
  height: auto;
  /* margin-inline: auto; */
  padding-top: 30px;
}

.banner-inner-footer {
  display: flex;
  flex-direction: column;

  width: 100%;
  height: auto;
  justify-content: start;
  align-items: center;
  /* background: gold; */
  /* margin: 0 auto; */
  -webkit-box-shadow: inset 0px 0px 35px 20px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: inset 0px 0px 35px 20px rgba(0, 0, 0, 0.75);
  box-shadow: inset 0px 0px 35px 20px rgba(0, 0, 0, 0.75);
}

.social-media li {
  display: inline-block;
  cursor: pointer;
}

.social-media li:not(:first-of-type) {
  padding-left: 1.5em;
}

.social-media li i {
  color: #5d5d5d;
  font-size: 2rem;
  transition: 0.5s;
}

.social-media li i:hover {
  color: var(--text-hover-color);
}

.designer {
  width: 100%;
  height: 100px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.5em;
}

.designer div:first-child {
  max-width: 150px;
  height: auto;
  cursor: pointer;
}

.designer div:last-child {
  width: 50px;
  height: auto;
}

.footer-contact {
  width: 100%;
  height: 150px;
  background: var(--backgorund-color-alt);
  display: flex;
  justify-content: start;
  align-items: center;
  padding-left: 1.5em;
}

.footer-contact div li {
  display: inline-block;
  color: var(--text-hover-color);
  
}

.footer-contact div li:not(:first-of-type) {
  padding-left: 2rem;
}

.footer-contact div ul:first-child li {
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
}

.footer-contact div ul:first-child li:hover {
  color: var(--primary-color);
}







/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------- RESPONSIVE HORIZONTAL MOBILE IPHONE 13 PROMAX----------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/


@media (max-width: 850px) and (max-height: 450px){
  /*---------------------*/
 /*---------------------*/
 /*------ SECTION 1 --------------*/
 /*--------------------*/
 /*---------------------*/

 header .header-design .logo {
  width: 100px;

}
.banner-post .logo-banner img {
  width: 50%;
  height: auto;

  /* padding-bottom: 40px; */
}

.banner-post .info-banner {
gap: 0;
}

 .banner-post{
   width: 50%;
   height: 100%;
   margin-bottom: 5%;
   
 }



 .banner-post .info-banner p {
   font-size: 1em;
   
 }
 
 .banner-post .info-banner .op-trailer a {
   font-size: .7em;
 }
 
 .banner-post .info-banner .op-reserva a {
 font-size: .7em;
 }

 .modal-trailer {
  
   height: 110dvh;
   
 }



   /*---------------------*/
  /*---------------------*/
  /*------ SECTION 2 --------------*/
  /*--------------------*/
  /*---------------------*/

  .banner-wrapper {
    
    height: 110dvh;
   
  }  

  .banner-container-bg2 {
   
    height: 110dvh;
   
  }

  .banner-inner {
  
    justify-content: center;
   
  }

  .banner-content {
    width: 80%;
    gap: 30px;
  
    /* animation-range: entry 1% cover 55%;    */
  }

  .banner-content h2 {
    font-size: 2rem;
}

.banner-content p {
  font-size: 1.5em;
}


  .banner-inner .banner-content .op-reserva{
    font-size: 1rem;
  }

  /*---------------------*/
  /*---------------------*/
  /*------ SECTION 3 --------------*/
  /*--------------------*/
  /*---------------------*/
 
  .section-content-gallery {
    
    height: 200dvh;
   }

   
.banner-wrapper3 {
  
  height: 200dvh;

}

  .banner-inner3 .banner-content3 p {
    
    font-size: 1.5em;
    
  }
  
  .banner-inner3 .banner-content3 .move-h1 h1 {
    font-size: 2rem;
  }

  .banner-content3-gallery {
    width: 90%;
  }
/*---------------------*/
  /*---------------------*/
  /*------ SECTION 4 photo design --------------*/
  /*--------------------*/
  /*---------------------*/

  #sectionPin {
    /* Stretch it out, so that we create room for the horizontal scroll animation */
    height: 200dvh;
   
  }
  
  .pin-wrap-sticky {
    /* Stick to Top */
    height: 100dvh;
   
  }

  .pin-wrap {
    width: 700vmin;
    animation-range: contain 0% contain 200%;
  }
  


  .gallery-content-seccion4 img {
    width: 300px;
    
  }


/*---------------------*/
  /*---------------------*/
  /*------ SECTION 5 SUBSCRIBE --------------*/
  /*--------------------*/
  /*---------------------*/

  .banner-wrapper-subscribe {
  
    height: 100dvh;
    
  }


  .banner-inner-subscribe h1 {
    font-size: 2rem;
  
  }
  
  .banner-inner-subscribe p {
    font-size: 1.5rem;
  }
  
  .content-email input[type="email"] {
   font-size: 1.5rem;
  }
  
  .subscribe {
    
    padding: 1.5em;
  }

  .subscribe a {
   font-size: 1.5rem;
  }
  



} 




/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------- RESPONSIVE DESKTOP----------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/

@media (max-width: 900px) and (min-height: 670px) {
  
  .banner-post {
    min-width: 50%;
   
  }  

  .banner-inner {
    padding: 0;
    justify-content: center;
   
  }

  .banner-content {
  width: 90%;

}


.banner-content h2 {
  font-size: 3rem;
}
}


/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------- RESPONSIVE VERTICAL MOBILE IPHONE 13 PROMAX----------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/





@media (max-width: 500px) and (min-height: 600px) {
 

 
  /*---------------------*/
  /*---------------------*/
  /*------ SECTION 1 NAVBAR --------------*/
  /*--------------------*/
  /*---------------------*/

  .section-content-header {
    
    height: 150dvh;
    
  }

  

  .banner-post-content {
    width: 100%;
    height: 150dvh;
    flex-direction: column;
    justify-content: end;
    align-items: center;
   
    
  }

  header .header-design .logo {
    width: 170px;
   
  }

  .banner-container-bg-vertical{
  
    display: flex;
    position: absolute;
    width: 100%;
   
    z-index: 2;
    overflow: hidden;
  
  }

  .banner-container-bg-vertical video{
    width: 100%;
  height: auto;

  }

  .banner-container-bg{
    display: none;
  }

  .banner-post {
    min-width: 80%;
    padding: 5%;
   
     transform: translateY(-15%);
    /* background: #fff; */
  }

  
  
  
  
  .banner-post .info-banner .op-trailer a {
    color: aliceblue;
   
  }

  .leaf-momiji img,
  .leaf-momiji2 img {
    width: 100px;
    height: 100px;
    filter: drop-shadow(0 0 0.3rem #f1a854);
  }

  .leaf-momiji3 {
    padding-right: 100px;
  }



  .modal-trailer {
   
    height: 110dvh;
    
  }

  /*---------------------*/
  /*---------------------*/
  /*------ SECTION 2 --------------*/
  /*--------------------*/
  /*---------------------*/

  .banner-inner {
  
    justify-content: center;
   
  }

  .banner-content {
    width: 90%;
    gap: 30px;
  
    /* animation-range: entry 1% cover 55%;    */
  }

  .banner-content h2 {
    font-size: 2rem;
}


  .banner-inner .banner-content .op-reserva{
    margin-bottom: 7%;
  }

  /*---------------------*/
  /*---------------------*/
  /*------ SECTION 3 --------------*/
  /*--------------------*/
  /*---------------------*/

  .banner-wrapper3 {
    
    height: 115vh;
    
  }

  

  .banner-content3-gallery {
    width: 90%;
  }

  /*---------------------*/
  /*---------------------*/
  /*------ SECTION 4 --------------*/
  /*--------------------*/
  /*---------------------*/

  .pin-wrap {
    width: 700vmin;
    animation-range: contain 0% contain 600%;
  }
  


  /*---------------------*/
  /*---------------------*/
  /*------ SECTION 5 SUBSCRIBE --------------*/
  /*--------------------*/
  /*---------------------*/

  .banner-inner-subscribe h1 {
    font-size: 2rem;
    font-weight: 700;
  }
  
  .content-email {
    width: 70%;
    flex-direction: column;
    align-items: center;
    gap: 1em;
  }

  .content-email input[type="email"] {
    padding: 0.5em 1rem;
  }

  /*---------------------*/
  /*---------------------*/
  /*------ SECTION footer contact --------------*/
  /*--------------------*/
  /*---------------------*/
  

  .footer-contact div li {
    display: inline-block;
    color: var(--text-hover-color);

  }
}






















/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------- RESPONSIVE VERTICAL TABLET----------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/




@media (max-width: 800px) and (min-height: 900px)  {


  header .header-design .logo {
    width: 200px;
   
  }

 /*---------------------*/
  /*---------------------*/
  /*------ SECTION 1 --------------*/
  /*--------------------*/
  /*---------------------*/

  .banner-post{
    min-width: 50%;
    
  }

  .banner-post .logo-banner img {
    width: 500px;
  }

  .banner-post .info-banner p {
    font-size: 1.5em;
    
  }
  
  .banner-post .info-banner .op-trailer a {
    font-size: 2rem;
  }
  
  .banner-post .info-banner .op-reserva a {
  font-size: 2rem;
  }

  .modal-trailer {
   
    height: 110dvh;
    
  }

   /*---------------------*/
  /*---------------------*/
  /*------ SECTION 2 --------------*/
  /*--------------------*/
  /*---------------------*/

  .banner-wrapper {
    
    height: 120dvh;
   
  }  

  .banner-container-bg2 {
   
    height: 120dvh;
   
  }

  .banner-inner {
  
    justify-content: center;
   
  }

  .banner-content {
    width: 90%;
    gap: 30px;
  
    /* animation-range: entry 1% cover 55%;    */
  }

  .banner-content h2 {
    font-size: 3rem;
}

.banner-content p {
  font-size: 2rem;
}


  .banner-inner .banner-content .op-reserva{
    font-size: 1.5rem;
  }

  /*---------------------*/
  /*---------------------*/
  /*------ SECTION 3 --------------*/
  /*--------------------*/
  /*---------------------*/
 

  .banner-inner3 .banner-content3 p {
    
    font-size: 2rem;
    
  }
  
  .banner-inner3 .banner-content3 .move-h1 h1 {
    font-size: 3rem;
  }

  .banner-content3-gallery {
    width: 90%;
  }
/*---------------------*/
  /*---------------------*/
  /*------ SECTION 4 photo design --------------*/
  /*--------------------*/
  /*---------------------*/



  .pin-wrap {
    width: 700vmin;
    animation-range: contain 0% contain 500%;
  }
  


  .gallery-content-seccion4 img {
    width: 650px;
    
  }


/*---------------------*/
  /*---------------------*/
  /*------ SECTION 5 SUBSCRIBE --------------*/
  /*--------------------*/
  /*---------------------*/

  .banner-inner-subscribe h1 {
    font-size: 3rem;
    font-weight: 700;
  }
  
  .banner-inner-subscribe p {
    font-size: 2rem;
  }
  
  .content-email input[type="email"] {
   font-size: 1.5rem;
  }
  
  .subscribe {
    
    padding: 1.5em;
  }

  .subscribe a {
   font-size: 1.5rem;
  }
  


}




/* Responsive Design */

/* Pantallas de 750px o menos */
@media (max-width: 750px) {



  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 7em;
    left: 0;
    width: 100%;
    background-color: #000;
    padding: 20px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
 
  }

  .nav-links li {
    display: block;
    margin: 10px 0;
    text-align: center;
    
    
  }

  




  .menu-toggle {
    display: block; /* Mostramos el botón de menú */
  }

  .nav-links.show2 {
    display: flex; /* Mostramos el menú desplegable cuando está activo */
  }
}







/* 
@keyframes show {
    from{
        opacity: 0;
        scale: 25%;
    }

    to{
        opacity: 1;
        scale: 100%;
    }
} */

/* @keyframes animate-in-and-out {
	entry 0%  {
		 transform: translateY(50px);
	}
	entry 50%  {
		 transform: translateY(0);
	}

	 /* exit 0% {
		opacity: 1; transform: translateY(0);
	}
	exit 100% {
		opacity: 0; transform: translateY(-100%);
	}  
}

section{
    animation: linear animate-in-and-out;
	animation-timeline: view();
} */

.carousel-container {
  position: relative;
  width: 300px;
  height: 80vh;
  max-width: 800px;
  overflow: hidden;
  border: 2px solid #ddd;
  border-radius: 10px;
  background-color: #fff;
}

.carousel-slide {
  display: flex;
  width: 100%;
  transition: transform 0.4s ease-in-out;
}

.carousel-slide img {
  width: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
}

.prev-btn,
.next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 25%;
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

/* ---------- Swiper slider ----------- */

.slider-wrapper {
  overflow: hidden;
  max-width: 1200px;
  margin: 0 70px 55px;
}

.card-list .card-item {
  color: #fff;
  width: 400px;

  padding: 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  backdrop-filter: blur(30px);
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.card-list .card-item .user-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 40px;
  border: 3px solid #fff;
  padding: 4px;
}

.card-list .card-item .user-profession {
  font-size: 1.15rem;
  color: #e3e3e3;
  font-weight: 500;
  margin: 14px 0 40px;
}

.card-list .card-item .message-button {
  font-size: 1.25rem;
  padding: 10px 35px;
  color: #030728;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  background: #ddd;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.card-list .card-item .message-button:hover {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #fff;
  color: #fff;
}

.slider-wrapper .swiper-pagination-bullet {
  background: #fff;
  height: 15px;
  width: 15px;
}

swiper-container {
  width: 700px;
  height: 300px;
  overflow: hidden;
}

swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

swiper-slide img {
  display: block;
  width: 700px;
  height: 100vh;
  object-fit: cover;
}

swiper-container {
  margin-left: auto;
  margin-right: auto;
}

:where(
    :not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)
  ) {
  all: unset;
  display: revert;
}
