* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}




::-moz-selection { /* Code for Firefox */
  color:#F5F5F5;
}

::selection {
  color:#F5F5F5;
}

:root {
  --padding: 20px;
  --color-black: #000;
  --color-white: #fff;
  --color-grey: #777;
  --color-light: #efefef;
  --color-text: var(--color-black);
  --color-text-grey: var(--color-grey);
  --color-background: var(--color-white);
  --color-code-light-grey:  #cacbd1;
  --color-code-comment:     #a9aaad;
  --color-code-white:       #c5c9c6;
  --color-code-red:         #d16464;
  --color-code-orange:      #de935f;
  --color-code-yellow:      #f0c674;
  --color-code-green:       #a7bd68;
  --color-code-aqua:        #8abeb7;
  --color-code-blue:        #7e9abf;
  --color-code-purple:      #b294bb;
  --font-family-serif: "Times New Roman", Times, serif;
  --leading:110%;
  --leading-negative: -1.25em;

}

html, body {
  margin: 0;
  padding: 0;
  max-width: 100vw;
}

/* Prevent scroll when modal is active */
body:has(.modal.active),
html:has(.modal.active) {
  overflow: hidden !important;
}

html {
  font-family: var(--font-family-serif);
  color: var(--color-text);
  background: var(--color-background);
  scroll-behavior: smooth;
  -webkit-scroll-behavior: smooth; /* Safari */
  scroll-padding-top: 50px;
  height: 100%;
  min-height: 100vh;
  overflow: hidden;
  -webkit-overflow-scrolling: touch; /* Safari smooth scrolling */
}


html::-webkit-scrollbar {
  display: none; /* Chrome, Safari: Hides scrollbar */
}

body {
  padding: var(--padding);
  margin: 0 auto;
  scrollbar-width: none; /* Firefox: Hides scrollbar */
  height: 100%;
  min-height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch; /* Safari smooth scrolling */
}



body::-webkit-scrollbar {
  display: none; /* Chrome, Safari: Hides scrollbar */
  width: 0;
  height: 0;
}



header{
  position:fixed;
  top:0px;
  left:0px;
  right:0px;
  height:50px;
  width:100%;
  max-width: 100vw;
  background: linear-gradient(180deg, #fff calc(100% - 10px), hsla(0, 0%, 100%, 0));
  z-index: 9999999999999;
  color: var(--color-text);
  text-align: center;
  font-family: var(--font-family-serif);
  font-size: 0.9vw;
  line-height: var(--leading);
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

}

header a:hover{
color: rgba(0, 0, 0, 0.20);
}
.left_menu{
position:fixed;
top:14px;
left:20px;
}

.right_menu{
  position:fixed;
  top:14px;
  right:20px;
  }
  

.logo{
  text-align: center;
  left: 50%;
transform: translateX(-50%);
  position:fixed;
  z-index: 99999;
  top:14px;
}
.bio{
  width:55%;
  margin:0 auto;
  text-align: center;
  font-size: 1vw;
  line-height: var(--leading);
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
.center-container {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); text-align: center;
  font-size: 1vw;
  line-height: var(--leading);
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}


a{
  color: var(--color-text);
  text-decoration:none;
  cursor: pointer;
}

a:visited {
  color: var(--color-text);
  text-decoration:none;
}

.main{
   min-height: calc(100vh - 80px); 
  margin-top:40px;
  opacity: 0;
transition: opacity 1s ease-in-out; /* Adjust timing and easing as needed */
}


/* When page is fully loaded, make it visible */
.main.loaded {
opacity: 1;
}

.mobilemenu{
  display: none;
}

.video-container{
  display: none;


}

.video-container-expanded {
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
  z-index: 1; /* push it behind UI */
  opacity: 1;
  display: block;
}

.video-container-expanded video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.custom-video-wrapper {
  position: relative;
  width: 100%;

}
.video-controls {
  opacity: 0;
  display: flex; /* change this from 'none' to 'flex' */
  pointer-events: none;
  transition: opacity 0.3s;
    position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: none; 
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 5px;
  box-sizing: border-box;
  z-index: 99999; 
}

.video-container-expanded:hover .video-controls {
  opacity: 1;
  pointer-events: auto;
}
.video-container {
    position: relative;
}

.video-container::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 40px;
    background: transparent;
    z-index: 999;
    pointer-events: none;
}

/* .video-controls {
  opacity: 1;

  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: none; 
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 5px;
  box-sizing: border-box;
  z-index: 2;
} */

button {
  background: none;
  border: none;
  cursor: pointer;
}

#play-pause{
padding-left:10px;
padding-bottom: 6px;
width:30px;
}

#play-pause svg {
  width: 100%;
  height: auto;
}

.responsive-icon {
  width:30px;
}

#mute-unmute{
  width:30px;
  margin-bottom:1px;
  margin-left: auto;
  transform: translateX(-10px);
}

#player {
  position: relative !important;
  z-index: 1 !important;
}


.mute-always-visible {
  position: absolute;
  bottom: 10px;
  right: 0px;
  z-index: 99999; 
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;

}

.mute-always-visible svg {
  display: block; /* critical */
  height: 33px; /* lock this to avoid jump */
  width: 41px;
  vertical-align: middle; /* or try baseline if block doesn't fix it */
}

#seek-bar {
  margin: 4px 10px;
  position: absolute;
  bottom: 50px;
  width: calc(100% - 20px);
  appearance: none;
  height: 2px;
  background: white;
  border-radius: 0px;
  outline: none;
}


/* Style for the slider thumb */
#seek-bar::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 30px;
  height: 6px;
  background: white;
  cursor: pointer;
}

#seek-bar::-moz-range-thumb {
  width: 30px;
  height: 6px;
  background: white;
  cursor: pointer;
}




/* video */
.home-grid {
  margin-bottom: 40px;
  width: 100%;
  max-width: 100%;
  display: grid;
  list-style: none;
  grid-gap: 2.5rem;
  margin-top:40px;
  grid-template-columns: repeat(1, 1fr);
  opacity: 0;
  transition: opacity 1s ease-in-out; /* Adjust timing and easing as needed */
}


/* When page is fully loaded, make it visible */
.home-grid.loaded {
  opacity: 1;
}


.home-grid_expanded{
  width: 100%;
  display: grid;
  list-style: none;
  grid-gap: 2.5rem;
  margin-top:40px;
  grid-template-columns: repeat(1, 1fr);
  grid-auto-flow: dense;
}
.home-grid_expanded li {
  width: 100%; /* Keep list items full width */
  display: flex;
  align-items: flex-start;
  gap: 20px; /* Maintain spacing between children */
  box-sizing: border-box; /* Prevent padding from overflowing width */
}
.home-grid li {
  width: 100%; /* Keep list items full width */
  display: flex;
  align-items: flex-start;
  gap: 10px; /* Maintain spacing between children */
  box-sizing: border-box; /* Prevent padding from overflowing width */
  margin-bottom: 20px; /* Add space between list items */
}




.title{
  font-size: 0.9vw;
  margin-left: auto;
  width: 350px;
  display: flex;
  z-index: 9999999999999;
  justify-content: space-between;
  align-items: flex-end;
  align-self: end;
  margin-bottom: 14px;
}

body:has(.modal.active) .title{
  position: static;
}


.title_text{
  font-size: 0.9vw;
  width: 350px;
  display: flex;
  z-index: 99999;
  justify-content: space-between;
  align-items: flex-start;
  align-self: end;
  margin-bottom: 4px;
}


/* .long_text {
  width: 350px;
  transition: width 1s ease, font-size 1s ease, line-height 1s ease;
} */
.long_text {

  width: 100%; /* Ensure it takes full width of parent */
  max-width: 100%; /* Prevent it from exceeding parent's width */
  white-space: normal; /* Allow wrapping of content */
  overflow-wrap: break-word; /* Break long words if necessary */
  box-sizing: border-box; /* Include padding and border in width calculation */
  /* transition: opacity 0.3s ease; */
}


.long_text div {
  margin-bottom: 0.5em;
}


.long_text.expanded {
  cursor:pointer;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
  /* transition: all 1s ease; */
}

.long_text.expanded:hover {
color:black;
}






.press-links li a {
  display: inline-flex; /* Aligns elements in a row */
  align-items: flex-start; /* Aligns the SVG to the top */
  gap: 4px; /* Adds spacing between SVG and text */
  text-decoration: none; /* Removes underline */
}

.press-links li a svg {
  display: inline-block;
  vertical-align: top; /* Aligns the SVG to the top */
  margin-top: 2px; /* Fine-tune spacing as needed */
}


.title_sticky{
  margin-left: auto;
  width: 350px;
  display: flex;
  z-index: 99990999999999;
  justify-content: space-between;
  align-items: flex-end;
  align-self: end;
  margin-bottom: 14px;
}


.body_text{
  width: 100%;

}

.text_info{
cursor: pointer;
  flex-shrink: 0;
  width:350px;
  font-size: 0.9vw;
  line-height: var(--leading);
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  gap: 14px;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;

}

.text_info:not(.text_info_expanded):hover{
  opacity: 0.2;
}


.text_info_expanded{
  cursor:text;
  flex-shrink: 0;
  width: calc(100% - 100px);
  line-height: var(--leading);
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;

  text-size-adjust: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  gap: 14px;
  margin-bottom: 30px;
}

.long_text_expanded{
  cursor:text; 
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
}




.image-list{
  display: block;
  padding-top: 20px;
}

.partners{
  display: none;
}




.image-container {
  cursor: pointer;
  position: sticky;
  top: 40px;
  width: 90px;
}

.image-container-context {
  cursor: pointer;
  position: sticky;
  top: 40px;
  width: 90px;
}

.image-container-context .cover {
  position: relative;
  width: 90px;
}

.cover {
  position: absolute;   /* make it stackable */
  top: 0;
  left: 0;
  width: 90px;
  cursor: pointer;
  z-index: 2;           /* on top */
}
.image-container:hover .cover {
  opacity: 0;
}

.thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 90px;
  cursor: pointer;
  z-index: 1;           /* behind */
}



.thumbnail-fade {
  transition: opacity 0.5s ease-in-out;
}
.collapse{

  display: none;

}

.collapse_expanded{
  padding-left: 10px;
  font-size: 14px;
  margin-top:30px;
  display: block;
}
.collapse_film{
  font-size: 14px;
  margin-top:30px;
  display: block;
}


.bts_list{
  display:flex;
  position: relative;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  flex: 1 0 0;
  width: calc(100% - 440px);
  overflow: hidden;
}
.bts_list img{
  flex: 1;
  min-width: 0;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
.bts_gallery{
  margin-top:4px;
  display: flex;
  width: 100%;
  align-items: flex-start;
  align-content: flex-start;
  gap:4px 2px;
  flex-wrap: wrap;
}

.bts_box{
  display: flex;
      width: 30px;
      flex-direction: column;
      align-items: flex-start;
      gap: 4px;
      flex-shrink: 0;
}

.bts_box:hover {
  opacity: 0.2;
}

.bts_box img{
  width: 100%;
}
.partners{
  margin-top: 20px;
  padding-left: 50px;
}
.img_box_inside{
  align-items: flex-start;
  flex-direction: column;
}
.images_inside{

  align-items: flex-start;
  height:20px;
 width:100%;
}

/* Individual image fade-in effect - only for images inside img_box */
.img_box .images_inside img {
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.img_box .images_inside img.loaded {
  opacity: 1;
}
.links_inside{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  width:100%;
}

.img_box{
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  flex: 1 0 0;
  width:calc(100% - 440px);
  overflow-x: auto;
  overflow-y: hidden;
  opacity: 0; /* Start fully transparent */
  transition: opacity 0.5s ease-in-out; /* Smooth fade-in effect */
  position: relative;
  pointer-events: none; /* Disable interactions when hidden */
  -webkit-overflow-scrolling: touch; /* Safari smooth scrolling */
}

.img_box[style*="opacity: 1"] {
  pointer-events: auto; /* Enable interactions when visible */
}

.img_box::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 60px;
  background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
  pointer-events: none;
  z-index: 1;
}

.img_box::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

/* Hide scrollbar for IE, Edge and Firefox */
.img_box {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
.fadeaway{
  position: absolute;
  float: right;
  right: 0px;
  width: 150px;
height: 186px;
flex-shrink: 0;
background: linear-gradient(270deg, #FFF 61.48%, rgba(255, 255, 255, 0.00) 76.73%);
}

.long_text {
  font-size: 0.7vw;
  line-height: 110%;
  display: inline; /* Ensure the container respects inline flow */
  white-space: normal; /* Allow wrapping if necessary */
}

.hidden {
  display: block; /* Hides the section */
}

.sentence {
  opacity: 0;
  display: inline; /* Keep sentences inline */
  animation: fadeIn 1s ease forwards;
}

.nav_contact{
  /* Contact is now in right_menu */
}

/* 
:modalmodal */


/* .bts_list{
  display:flex;
  position: relative;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  flex: 1 0 0;
  width: calc(100% - 440px);
  overflow: hidden;
}

.bts_gallery{
  margin-top:4px;
  display: flex;
  width: 100%;
  align-items: flex-start;
  align-content: flex-start;
  gap:4px 2px;
  flex-wrap: wrap;
}


.bts_box{
  display: flex;
      width: 30px;
      flex-direction: column;
      align-items: flex-start;
      gap: 4px;
      flex-shrink: 0;
} */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;

}

.gallery_inside {
  display: inline-flex;
  gap: 30px;

}

.links_inside a{
  font-size: 16px;
  text-decoration: underline;
  cursor: pointer;
}
.links_inside a:hover{
   color: rgba(0, 0, 0, 0.20);

}
.links_inside img{
  height:20px;
  cursor: pointer;
  transition: transform 0.2s;
}
.gallery_inside img {
  height:20px;
  cursor: pointer;
  transition: transform 0.2s;
}



.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 100vw;
  height: 100%;
  display: none;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  z-index: 9999999;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding-top: calc(15vh - 40px);
  overflow: hidden;
}
.modal-content{
  cursor: auto;
  margin-top: 40px;
}

.modal-nav-bar {
  position: fixed;
  top: calc(15vh - 40px);
  left: 50%;
  transform: translateX(-50%);
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 12px;
  font-style: normal;
  font-family: "Times New Roman";
  color: black;
  z-index: 999999999;
  width: auto;
  visibility: visible !important;
  opacity: 1 !important;
}

.modal-counter {
  font-size: 12px;
  font-style: normal;
}

.modal-nav-arrow {
  cursor: pointer;
  user-select: none;
  font-size: 12px;
  transition: opacity 0.2s;
}

.modal-nav-arrow:hover {
  opacity: 0.5;
}

.modal-close-x {
  position: fixed;
  top: calc(15vh - 40px);
  right: 20px;
  cursor: pointer;
  user-select: none;
  font-family: 'Times New Roman', Times, serif;
  font-size: 16px;
  line-height: 70%;
  transition: opacity 0.2s;
  z-index: 999999999;
  color: black;
}

.modal-close-x:hover {
  opacity: 0.5;
}

.modal.active {
  display: flex;
  cursor: url('cursor.svg') 40 40, auto;
}

/* Remove all cursor pointer effects when modal is open */
body:has(.modal.active) {
  overflow: hidden !important;
}

body:has(.modal.active) * {
  cursor: default !important;
}

/* Keep cursor pointer only for modal navigation elements */
body:has(.modal.active) .modal-nav-arrow,
body:has(.modal.active) .modal-close-x,
body:has(.modal.active) .close-btn {
  cursor: pointer !important;
}

/* Left half = previous image */
.modal.active .image-container-modal::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 10%;
  height: 100%;
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 24 24"><path d="M14 6L8 12L14 18" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter"/></svg>') 30 30, auto;
}
/* Right half = next image */
.modal.active .image-container-modal::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 10%;
  height: 100%;
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 24 24"><path d="M10 6L16 12L10 18" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter"/></svg>') 30 30, auto;
}

/* Style for link images - 300px width with centered layout */
.modal.active .image-container-modal.link-image {
  flex-direction: column;
  align-items: center;
}

.modal.active .image-container-modal.link-image .image_box {
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.modal.active .image-container-modal.link-image .modal-img {
  width: auto;
  height: auto;
  max-width: 300px;
  cursor: pointer;
  object-fit: contain;
}

.modal.active .image-container-modal.link-image .caption {
  max-width: 300px;
  width: 100%;
  text-align: center;
  margin-top: 10px;
}

/* Hide close button when image has links */
.modal.has-links .close-btn {
  display: none;
}

.modal-content {
  position: relative;
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
  max-width: 100%;
  width: 100%;
}

.image-container-modal  {
  position: relative;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: center;
}

.modal-img {
  max-width: 70vw;
  max-height: 60vh;
  border-radius: 0px;
  transition: transform 0.2s;
}

.caption {
    max-width: 340px;

    font-size: 12px;
  font-style: italic;

  
  color: black;
  margin-top:8px;
  text-align: left;
  width: 100%;
}
.caption a {
  text-decoration: underline;

}

.thumb-nav {
  display: none;

  max-width: 70vw;
  height: auto;
  max-height: unset;
  object-fit: contain;
  border-radius: 0;
}

.highlighted {
  transition: all 0.3s ease;
  /* Add your highlight styling here */
}
.thumb-nav:hover {
  opacity: 1;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 32px;
  color: white;
  cursor: pointer;
  z-index: 10;
}

/* Mobile Close Button */
.mobile-close-btn {
  display: none;
  position: absolute;
  right: 20px;
  top: -50px;
  font-size: 30px;
  color: black;
  cursor: pointer;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

.text_info.text_info_expanded > .title {
  cursor:text;
  margin-bottom:45px;
  position: static;
  font-size: 32px;
  line-height: 100%;
  width: 100%;
}
.text_info.text_info_expanded > .title  a{
    cursor:text;
}

@media (max-width: 840px) {
  .close-btn {
    display: none;
  }

  .mobile-close-btn {
    display: block;
  }
}

.thumbnail-strip {
  gap:4px;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  bottom: 20px;
  left: 120px;
  display: flex;
  width:100%;
  z-index: 1100;
}

.thumbnail-strip img {
  width: auto;
  margin-right:2px;
  height: 20px;
  cursor: pointer;
}

#imageContainerModalMobile {
  display: none;
}

.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    display: flex;
    align-items: center;
    padding: 15px 20px;
    gap: 15px;
    z-index: 100;
}

.custom-play-pause, .mute-unmute-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.custom-play-pause:hover, .mute-unmute-btn:hover {
    background: rgba(255,255,255,0.2);
}

.progress-container {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(255,255,255,0.3);
    border-radius: 3px;
    position: relative;
    cursor: pointer;
}

.progress-fill {
    height: 100%;
    background: white;
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s;
}



.progress-bar:hover .progress-handle {
    opacity: 1;
}

.time-display {
    color: white;
    font-size: 12px;
    font-family: monospace;
    min-width: 80px;
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #000;
  font-family: "Times New Roman";
  position: static;
  width: 100%;
  max-width: 100%;
  padding-top:40px;
  padding-bottom:20px;
  margin-top: auto; /* This pushes footer to bottom */
  font-size: 0.9vw;
}
@media only screen and (max-width: 1200px) {

#mobileImageStrip {
   display: none;
}

  .bts_list img {
    width: 60px;
}




  .text_info{
    font-size:0.9vw;
  }
  
  .bio{
    font-size:0.9vw;
  }
  .center-container {
    font-size:0.9vw;
  }
  .thumbnail  {
    width:90px;
  }
  .cover {
    width:90px;
  }
  
}


@media only screen and (max-width: 840px) {
  .bts_list{
    height:30px;
  }
  .modal{
    overflow: hidden;
  }
  .thumbnail-strip{
    left:40px;
  }
  .image-container-modal{
    gap:20px;
  }
  .thumb-nav {
    display: block;
  }
  

  /* added
  
  
  */

  .modal-img {
  transition: transform 0.3s ease;
}


.image-list{
  bottom: 20px;
    left: 10px;
}
.home-grid{
          margin-bottom: 20px;
  margin-top:80px;
  grid-gap: 10px;
}
  .home-grid li {
    gap: 6px;
        width: 100% !important;
    max-width: 100vw;

    box-sizing: border-box;
  }

   .video-container-expanded {
    width: 100% !important;
    max-height: 300px;
    position: relative;
    overflow: hidden;
  }
  
  .video-container-expanded iframe {
    width: 100% !important;
    height: 100% !important;
    max-width: 100%;
    object-fit: cover;
  }
  


  .mute-always-visible svg{
    height: 23px;
    width: 31px;
  }
  #play-pause{
    width: 20px;
  }
  #seek-bar {

    bottom: 35px;

    height: 1px;

}

  .long_text_expanded p {
    padding:0;
    font-size: 16px;
    line-height: 18px; 
  }

  .image-list {
    padding-left: 0px;
    padding-top:10px;
  }
  .text_info.text_info_expanded{
    width: calc(100% - 42px);
    margin-bottom:40px;
  }
  main {

 min-height: calc(100vh - 500px);
  }

  
  footer {
    padding-top:0;
    font-size: 12px;
    padding-bottom:12px;
    margin-top: auto;
  }
  .nav_contact{
    position:Fixed;
    right:20px;
    margin-left:40px;
  }
  
  .text_info.text_info_expanded > .title {
    position: static;
    margin-bottom:40px;
    font-size: 22px;
    width: 100%;
 }
 
  .title{
        line-height: 100%;
    margin-bottom:10px;
      position: static;
      width: 100%;
      align-items: flex-start;

  }
  .menu {
    display: none;
  }

  .image-container{
    width:32px;
    top:50px;
  }
  .image-container-context {
    width:32px;
    top:50px;
  }

  .image-container-context .cover {
    width:32px;
  }
  
  .thumbnail {
    width:32px;
  }
  .cover {
            padding-top: 0px;
    width:32px;
  }
  .mobilemenu{
    width:100%;
    display: block;
  }
  .left{
    padding:0px 20px 0px 20px;
    float: left;
  }
  .right{
    padding:0px 20px 0px 20px;
    float: right;
  }
  header{
    height:40px;
    width: 100%;
    padding:12px 0px;
    font-size: 12px;
  }
  .text_info{
    width: 65px;
    font-size: 14px;
  }

  .bio{
    width:100%;
    font-size: 12px;
  }
  .center-container {
    font-size: 12px;
    line-height:130%;
  }


.image-container-modal  {
 display: none;
}



#mobileImageStrip {
  overflow-x: auto;
  overflow-y: hidden;
  overflow-anchor: none;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-scroll-snap-type: x mandatory; /* Safari */
  display: flex;
  width: 100%;
}
#mobileImageStrip::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}
.images_inside{
  height:100%;
}


.images_inside_mobile {
      padding-left: 60px;
          padding-right: 40px;

    align-items: flex-start;
  display: flex;
  gap: 10px;
}


.images_inside_mobile img {
  max-width: 70vw;
  width: auto;
  height: auto;
  scroll-snap-align: center;
  flex: 0 0 auto;
  cursor: pointer;
  object-fit: contain;
}

.images_inside_mobile .mobile-slide {
  width: 70vw;
  flex: 0 0 70vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: center;
}

/* Center align items for mobile slides that have links */
.images_inside_mobile .mobile-slide:has(.caption a) {
  align-items: center;
}

/* Center caption text for link images in mobile slides */
.images_inside_mobile .mobile-slide .caption:has(a) {
  text-align: center;
}



 

    .modal.active .image-container-modal::before,
  .modal.active .image-container-modal::after {
    cursor: pointer !important;
  }
  .modal-img {
    max-width: 70vw;
    height: auto;
    max-height: unset;
    object-fit: contain;
    border-radius: 0;
  }

  /* Mobile styles for linked images */
  .modal.active .image-container-modal.link-image .image_box {
    width: 70vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .modal.active .image-container-modal.link-image .modal-img {
    width: auto;
    height: auto;
    max-width: 70vw;
    cursor: pointer;
    object-fit: contain;
  }

  .modal.active .image-container-modal.link-image .caption {
    max-width: 70vw;
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }



  .caption {
    font-size:11px;
  }


/* modal */


@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

  
}





@media only screen and (min-width: 1200px) {
#mobileImageStrip {
   display: none;
}
}

