@font-face {
    font-family: 'Giarek';
    src: url("/media/giarek.ttf") format('truetype');
    font-weight: normal;
    font-style: normal;
}

body, html {
    height: 100vh;
    overflow-y: hidden;
}

.modelHeader{
    width: 80%;
    height: 10vh;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: relative;
}

.title {
  font-size: 3emer;
  color: white;
  mix-blend-mode: difference;
  z-index: 5
}

.underTitle {
  font-size: 2.5em;
  color: white;
  mix-blend-mode: difference;
  z-index: 5
}

::-webkit-scrollbar-thumb{
  border-radius: 10px;
}
.Mgallery {
    position: relative;
    display: flex;
    flex-direction: row; /* Keep items aligned in a row */
    gap: 2.5vw;
    height: 100vh;
    overflow-x: auto; /* Enable horizontal scrolling */
    overflow-y: hidden; /* Disable vertical scrolling */
    white-space: nowrap; /* Prevent the items from wrapping onto the next line */
    scroll-snap-type: x mandatory; /* Optional: This will snap to items as you scroll */
    scrollbar-color: white black;
    scrollbar-width: thin;
    scrollbar-th
}

.slider {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    height: auto;
    position: relative;
    text-align: center;
    z-index: 4;
}


.slide {
    width: 100%;
    height: 55vh;
    display: none; /* Hide all images by default */
    object-fit: cover;
}

.active-slide {
    display: block; /* Show the active image */
}

/* Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0);
    border-radius: 3px;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 18px;
    z-index: 1;
    padding: 5px;
    mix-blend-mode: difference;
}

.prevBtn {
    left: 5%;
}

.nextBtn {
    right: 5%;
}

.slider-btn:hover {
    background-color: rgba(0, 0, 0, 0.4);
}

.wrap {
    display: block; /* Allow items to sit in a single row */
    width: 18vw; /* Maintain the same width for each item */
    border-radius: 5px;
    height: 65vh;
    overflow:hidden;
}

.panel{
  width: 100%;
  color: white;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1px 0 10px 0;
  margin-top: 2vh;
}

.panel .strip p {
      margin: 5px;

}

.panel h2{
  font-size: 1.6em;
  margin-top:1vh;
}

.swipeNote{
    display: none;
}

.instaLogo{
  position: relative;
  width: 50px;
  height: 50px;
  justify-content: center;
  margin-left: 1vw;
}

.strip{
    display: inline-flex;
    flex-direction: column;
    width: 30%;
}

/*#######################################################################*/

@media screen and (max-width: 1500px) {

.modelHeader{
    top: 0;
    width: 100vw;
    flex-direction: row;
    text-align: center;
    justify-content: space-between;
}

.title{
    width: auto;
    height: 2vh;
    font-size: 1.5em;
    padding: 10px;
    margin: 0;

}

.underTitle{
    width: auto;
    height: 2vh;
    font-size: 1.5em;
    padding: 10px;
    margin: 0;
}


.panel h2{
  font-size: 1.2em;
  margin-top:1vh;
}

.instaLogo{
  position: relative;
  width: 20px;
  height: 20px;
  justify-content: center;
  margin-left: 1vw;
}

}
@media screen and (max-width: 768px) {

body{
    overflow-y: scroll;
}


.swipeNote{
    display: block;
    width: 100vw;
    position: absolute;
    top: 6vh;
    text-align: center;
    font-size: 0.8em;
    color: rgba(200, 200, 200, 0.8);
}

.Mgallery {
    top: 10vh;
    width: 100vw;
    display: flex;
    height: auto;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    overflow-x: hidden;
    overflow-y: scroll;
    gap: 4vh;
    margin-bottom: 10vh;
}

.wrap{
    width: 80vw;
    height: 78vh;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(1px);
}

.instaLogo{
    -webkit-filter: invert(100%);
    filter: invert(100%);
}

.marginLast{
    margin-bottom: 12vh;
}

.slider {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 80vw;
    height: auto;
    position: relative;
    text-align: center;
    z-index: 4;
    margin: 0;
}

.slide {
    width: auto;
    height: 600px;
    display: none; /* Hide all images by default */
    border-radius: 10px;
}

.active-slide {
    display: block; /* Show the active image */
}

/* Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0);
    border-radius: 3px;
    color: white;
    border: none;
    padding-top: 80%;
    padding-bottom: 80%;
    cursor: pointer;
    font-size: 18px;
    z-index: 1;
}

.panel{
    margin-top: 1vh;
}

.prevBtn {
    left: -5%;
    padding-right: 50%;
}

.nextBtn {
    right: -5%;
    padding-left: 50%;
}

.slider-btn:hover {
    background-color: rgba(0, 0, 0, 0.1);
}
}
