* {
  box-sizing: border-box;
}

html,
body {
  position: relative;
  height: 100%;
}

body {
  background: #222;
  font-family: sans-serif;
  line-height: 1.35;
  margin: 0;
  padding: 0;
}

.hero {
  --border-radius: 12px;
  --transition-duration: 1000ms;
  position: relative;
  width: 100%;
  height: 100vh;
}

.hero__fullsize {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  filter: drop-shadow(0 5px 5px #0007);
  transition:
    top var(--transition-duration), 
    left var(--transition-duration), 
    width var(--transition-duration), 
    height var(--transition-duration),
    border-radius var(--transition-duration),
    transform var(--transition-duration),
    opacity var(--transition-duration);
}

.hero__content--hidden {
  visibility: hidden;
  transition: none;
  transform: none;
  opacity: 1;
  z-index: 0;
}

.hero__content--bottom {
  opacity: 0;
  transform: scale(1.5);
  z-index: 1;
}

.hero__content--top {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  z-index: 2;
}

/* curtain */

.hero__content--show-text::before {
  transform: translateX(0);
  transition: transform 300ms;
}

.hero__content--grow::before {
  transform: translateX(-100%);
  transition: none;
}

/* title */
.hero__content--show-text .content__title {
  transform: translateY(0);
  transition: transform 300ms;
}

.hero__content--show-text .content__title .word {
  clip-path: inset(0);
  transition: clip-path 300ms;
}

.hero__content--grow .content__title {
  visibility: hidden;
  transform: translateY(48px);
  transition: none;
}

.hero__content--grow .content__title .word {
  clip-path: inset(0 0 48px);
  transition: none;
}

/* desc */

.hero__content--show-text .content__desc {
  transform: translateY(0px);
  transition: transform 300ms;
}

.hero__content--show-text .content__desc .word {
  clip-path: inset(0);
  transition: clip-path 300ms;
}

.hero__content--grow .content__desc {
  visibility: hidden;
  transform: translateY(18px);
  transition: none;
}

.hero__content--grow .content__desc .word {
  clip-path: inset(0 0 18px);
  transition: none;
}



.swiper {
  --swiper-navigation-size: 20px;
  visibility: hidden;
  position: absolute;

}

.swiper.swiper-initialized {
  visibility: visible;
}

.swiper-slide-prev,
.swiper-slide-active {
  opacity: 0;
}

.swiper-slide {
  display: flex;
}

.content {
  display: flex;
  position: relative;
  width: 100%;
  filter: drop-shadow(0 5px 5px #0007);
  overflow: hidden;
  z-index: 0;
}

.content--slide {
  position: relative;
  border-radius: var(--border-radius, 0);
}

.content__text {
  display: flex;
  flex-direction: column;
  width: 100%;
  color: #fff;
}

.content__desc {
  margin: 0;
}

.content--slide .content__title {
  font-size: 100%;
  margin: 40% 0 0;
  padding: 0.35em 0.75em;
}

.content--slide .content__desc {
  position: absolute;
  left: 0;
  visibility: hidden;
}

.content--hero {
  padding: 100px 50px 0;
  position: absolute;
  border-radius: 0;
}

.content--hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, hsl(49deg 70% 5% / 67%), transparent);
  pointer-events: none;
  z-index: -1;
}

.content--hero .content__text {
  width: 45%;
}

.content__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.swiper-button-next {
  
  /*left: calc((100% - 25px * 2) / 3.5);*/
  padding-top: 1%;
  right: 10px;
  top: calc(50% - 20px) !important;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color:#FF9900;
}
.swiper-button-prev {

 /* left: calc((100% - 25px * 2) / 3.5);*/
  padding-top: 2%;
  right: 50px !important;
  left: auto !important;
  top: calc(50% - 20px) !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50%;
  border-width: 0 5px 3px 0;
  color: #E2E2E2;
}


    /* Style for the navigation bar */
    #nav {
        background-color:#000000; /* Transparent black background */
        position: fixed; /* Fixed position at the top */
        top: 0ch; /* Stick to the top of the viewport */
                                     
        width: 100%; /* Full width */
        z-index: 1000; /* Higher z-index to ensure it's on top of other content */
        border-top: 2px solid #F40009; /* Add a thin red line at the top */
    }

    #nav_top {
      text-align: right;

  }
    #nav ul {

        list-style-type: none;
        margin: 0;
        padding: 10px;
      
    }

    #nav li {
        display: inline-block; /* Display links horizontally */
        margin-right: 20px; /* Add spacing between links */
    }

    #nav li a {
        font-family: 'Giorgio Sans Trial', sans-serif;  
        text-decoration: none;
        color: #FFFFFF;
        font-weight: bold;
    }

    #nav li a:hover {
        color: #FF9900; /* Change color on hover */
    }


    
    #my-heading {
      position: absolute;
      bottom: 0;
      left: 0;
      padding-right: 60%;
      padding-bottom: 50PX;
      padding-left: 50PX;
      font-size: 100%;
      font-family: 'Giorgio Sans Trial', sans-serif; 
      
      /* Add any other styles you want */
    }

    /* Smartphones (portrait and landscape) */
@media only screen and (min-device-width: 0px) and (max-device-width: 1024px) {
  /* Styles for smartphones */
  .content--hero .content__title {
    font-size: 42px;
    padding-top: 60%;
    padding-left: 35PX;
  }
  #my-paragraph {
    position: absolute;
    bottom: 0;
    left: 0;
    padding-right: 50%;
    padding-bottom: 30px;
    padding-left: 20PX;
    font-size: 100%;
    font-family: 'Montserrat';
}
.logo {
  width: 60px;  
  position: fixed;
  top: 5px;
  left: 10px;
  padding-bottom: 10%;
}
.hero__swiper {
  position: absolute;
  width: 70%;
  aspect-ratio: 2.5 / 1;
  right: 0px;
 bottom: 40%;

  z-index: 1;
  user-select: none;
}
}

/* iPads (portrait and landscape) */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1400px) {
  /* Styles for iPads */
  .content--hero .content__title {
    font-size: 42px;
    padding-top: 50%;
    padding-left: 35PX;
  }
  .logo {
    width: 60px;    
    position: fixed;
    top: 5px;
    left: 20px;
    padding-bottom: 10%;
}

#my-paragraph {
  position: absolute;
  bottom: 0;
  left: 0;
  padding-right: 40%;
  padding-bottom: 30px;
  padding-left: 100PX;
  font-size: 100%;
  font-family: 'Montserrat';
  /* Add any other styles you want */
}
.hero__swiper {
  position: absolute;
  width: 70%;
  aspect-ratio: 2.5 / 1;
  right: 0px;
 bottom: 10%;

  z-index: 1;
  user-select: none;
}
}



/* Mac*/
@media only screen and (min-width: 1400px) and (max-device-width: 1600px)  {
  /* Styles for larger screens */
  .content--hero .content__title {
    font-size: 42px;
    padding-top: 67%;
    padding-left: 35PX;
  }
  .logo {
    width: 60px;   
    position: fixed;
    top: 5px;
    left: 10px;
    padding-bottom: 10%;
  }
  #my-paragraph {
    position: absolute;
    bottom: 0;
    left: 0;
    padding-right: 40%;
    padding-bottom: 30px;
    padding-left: 100PX;
    font-size: 100%;
    font-family: 'Montserrat';
    /* Add any other styles you want */
  }
  .hero__swiper {
    position: absolute;
    width: 70%;
    aspect-ratio: 2.5 / 1;
    right: 0px;
    bottom: 15%;
    z-index: 1;
    user-select: none;
  }
}

/* Desktops and laptops */
@media only screen and(min-width: 1600px) and (max-device-width: 2100px){
  /* Styles for larger screens */
  .content--hero .content__title {
    font-size: 42px;
    padding-top: 50%;
    padding-left: 35PX;
  }
  .logo {
    width: 60px;   
    position: fixed;
    top: 5px;
    left: 10px;
    padding-bottom: 10%;
  }
  #my-paragraph {
    position: absolute;
    bottom: 0;
    left: 0;
    padding-right: 50%;
    padding-bottom: 30px;
    padding-left: 35PX;
    font-size: 100%;
    font-family: 'Montserrat';
    /* Add any other styles you want */
  }
  .hero__swiper {
    position: absolute;
    width: 70%;
    aspect-ratio: 2.5 / 1;
    right: 0px;
    bottom: 15%;
    z-index: 1;
    user-select: none;
  }
}


/* Mac size */
@media only(min-width: 2100) and (max-device-width: 2500px)  {
  /* Styles for larger screens */
  .content--hero .content__title {
    font-size: 42px;
    padding-top: 60%;
    padding-left: 35PX;
  }
  .logo {
    width: 60px;   
    position: fixed;
    top: 5px;
    left: 10px;
    padding-bottom: 10%;
  }
  #my-paragraph {
    font-size: 100px;
    position: absolute;
    bottom: 0;
    left: 0;
    padding-right: 10%;
    padding-bottom: 50px;
    padding-left: 35PX;
    font-size: 100%;
    font-family: 'Montserrat';
    /* Add any other styles you want */
  }
  .hero__swiper {
    position: absolute;
    width: 70%;
    aspect-ratio: 2.5 / 1;
    right: 0px;
    bottom: 15%;
    z-index: 1;
    user-select: none;
  }
}

/* Bigger than mac*/
@media only screen and (min-width: 2500px)  {
  /* Styles for larger screens */
  .content--hero .content__title {
    font-size: 42px;
    padding-top: 60%;
    padding-left: 35PX;
  }
  .logo {
    width: 60px;   
    position: fixed;
    top: 5px;
    left: 10px;
    padding-bottom: 10%;
  }
  #my-paragraph {
    font-size: 100px;
    position: absolute;
    bottom: 0;
    left: 0;
    padding-right: 10%;
    padding-bottom: 50px;
    padding-left: 35PX;
    font-size: 100%;
    font-family: 'Montserrat';
    /* Add any other styles you want */
  }
  .hero__swiper {
    position: absolute;
    width: 70%;
    aspect-ratio: 2.5 / 1;
    right: 0px;
    bottom: 15%;
    z-index: 1;
    user-select: none;
  }
}


