main{
    width: 100%;
    height: 100%;
}
body{
    background-color: rgb(2,17,27);
    overflow-x: hidden;
}
.top{
    background-image: url('../img/mozaika.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100vw;
    height: 100vh;
    position: relative;
}
.top::after{
    content: '';
    width: 100%;
    height: 100%;
    background: rgb(2,17,27);
    background: linear-gradient(0deg, rgba(2,17,27,1) 0%, rgba(255,255,255,0) 100%);
    position: absolute;
}

.plama {
    width: 272px;
    height: 394px;
    background: radial-gradient(circle, #553601 0%, rgba(2,17,27,1) 100%);
    border-radius: 50%;
    filter: blur(64px);
    position: absolute;
    z-index: -1;
    left: -20%;
}
.plama2 {
    width: 202px;
    height: 242px;
    background: radial-gradient(circle, #73865A 0%, rgba(2,17,27,1) 100%);
    border-radius: 50%;
    filter: blur(106px);
    position: absolute;
    z-index: -1;
    right: -20%;
}
.black{
    width: 100%;
    background-color: #02111B;
    color: white;
    padding-bottom: 40px;
    position: relative;
    z-index: 2;
    overflow-x: hidden;
}

.black h1{
    font-family:var(--md) ;
    margin: 0;
    padding-top: 80px;
    padding-left: 10px;
    font-size: 40px;
    font-weight: 400;
    color: #AEAEAE;
}


.gsap{
    width: 100%;
    margin: auto;
  }
        .element {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 6xl;
            font-weight: bold;
            height: 600px;
        }
        .column {
            flex: 50%;
        }
        @media (max-width: 768px) {
            .column {
                flex: 100%;
            }
        }
        .pin-spacer{
          background-color: aqua!important;
        }
        .verticalContainer{
          position: relative;
        }
        .inside{
          position: absolute;
          left: 50%;
          top: 50%;
          transform: translate(-50%,-50%);
        }

.onRight{
    width: 80%;
    height: auto;
    text-align: match-parent;
    word-spacing: 3px;
    margin-left: 12vw;
    /* margin-top: 50%; */
}

.onRight h2{
    font-family: var(--md);
    color: white;
}
.onRight p{
    color: #AEAEAE;
    font-family: var(--century);
    font-size: 16px;
}
.hiddenMobile li a:visited {
  color: white;
}
.hiddenMobile li a {
  text-decoration: none;
}

.grafic {
    position: relative;
    width: 66vw;
    height: auto;
    margin: auto;
    margin-right: 5vw;
    padding-top: 5vh;
}

.grafic img {
    width: 100%;
    border-radius: 30px;
}
.dp{
    position: relative;
    margin-bottom: 20vh;
}
.marquee {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 100%);
    z-index: 1; /* Ustawienie wyższego indeksu z-index, aby tekst był na wierzchu */
    width: 100vw;
    max-width: 100%;
    height: 200px;
    overflow-x: hidden;
}

.track {
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    animation: marquee 50s linear infinite;
}

.content {
    font-size: 90px;
    color: transparent;
    -webkit-text-stroke: 2px #ffa600;
    font-family: var(--md);
    font-weight: 300;
    text-transform: uppercase;
}
h4{
    color: #73865A;
    font-family: var(--md);
    margin: 0;
}
@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
.cont{
    width: 60%;
    margin: auto;
    padding: 10px 30px;
    border-radius: 100px;
    border: 2px solid #73865A;
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    margin-top: 7vh;
    font-size: 22px;
    color: white;
}
.big{
    font-size: 40px;
    margin-top: 0;
}
/* --- */
* {
    box-sizing: border-box;
  }
  
  .menu {
    overflow: hidden;
    cursor: -webkit-grab;
    cursor: grab;
    width: 100%;
    position: relative;
    z-index: 1;
    height: 30vh;
  }
  
  .menu.is-dragging {
    cursor: -webkit-grabbing;
    cursor: grabbing;
  }
  
  .menu--wrapper {
    counter-reset: count;
    display: flex;
    position: absolute;
    z-index: 1;
    height: 100%;
    top: 0;
    left: 0;
    width: 100%;
  }
  
  .menu--item {
    counter-increment: count;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 40vw; /* Zwiększone szerokości zdjęć */
    height: 100%;
    padding: 0 2vw; /* Zwiększone odstępy */
    overflow: hidden;
    border-radius: 10px; /* Zaokrąglone rogi */
  }
  
  @media (max-width: 767px) {
    .menu--item {
      width: 80vw; /* Dostosowane dla mniejszych ekranów */
      height: 80vw;
      padding: 0 2vw; /* Dostosowane odstępy */
    }
  }
  
  .menu--item:nth-child(n+10):before {
    position: absolute;
    content: counter(count);
    color: #ffffff;
    font-size: 2vw; /* Rozmiar numeru */
    bottom: 1vw;
    left: 1vw;
    z-index: 2;
  }
  
  .menu--item figure {
    position: absolute;
    z-index: 1;
    display: block;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-appearance: none;
    padding: 0;
    border: none;
    outline: none;
    box-shadow: none;
    cursor: pointer;
    width: 80%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    transform-origin: center;
  }
  
  .menu--item figure img {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 22vh;
    -o-object-fit: cover;
    object-fit: cover;
    vertical-align: middle;
    transform-origin: center;
    border-radius: 10px; /* Zaokrąglone rogi */
  }
  
/*  */

.effect{
    width: 100%;
    height: auto;
    background-color: #3B462D;
    padding-bottom: 10vh;
}
.effect h1{
    margin: 0px;
    padding-top: 5vh;
    padding-left: 5vw;
    font-family: var(--md);
    color: #8FAC8A;
    font-size: 40px;
}

/* 
 */


 .boxScroll{
    width: 98vw;
    overflow: hidden;
    margin:auto;
  }
  :root { font-size: 16px }
@media (max-width: 500px) { :root { font-size: 14px } }
.loader{
  display: none!important;
}
::-moz-selection {
  background: #738656;
  color: white;
}

::selection {
  background: #738656;
  color: white;
}

::-webkit-scrollbar {
  width: 12px; /* Szerokość paska przewijania */
}

::-webkit-scrollbar-track {
  background: #f0f0f0; /* Kolor tła ścieżki paska przewijania */
  border-radius: 6px; /* Zaokrąglenie krawędzi ścieżki paska przewijania */
}

::-webkit-scrollbar-thumb {
  background-color: #b5ca97; /* Kolor kciuka paska przewijania */
  border-radius: 6px; /* Zaokrąglenie krawędzi kciuka */
  border: 2px solid #f0f0f0; /* Obramowanie kciuka - kolor tła dla efektu marginesu */
}

/* Opcjonalne: Zmiana wyglądu kciuka paska przewijania podczas najechania kursorem myszy */
::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8; /* Ciemniejszy kolor kciuka */
}

.boxScroll img {
  width: 80%;
  height: auto;
  background: #f0f0f0;
  border-radius: 30px;
}

.boxScroll ul {
  padding-left: 1rem;
  list-style: none;
}

.boxScroll li {
  flex-shrink: 0;
  width: clamp(500px, 60vw, 800px);
  padding-right: 1rem;
}



:-webkit-any-link { color: #4e9815; }

:-moz-any-link { color: #4e9815; }


.df {display: flex}
.aic {align-items: center}
.jcc {justify-content: center}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: black;
  color: white;
}

.demo-wrapper {
  overflow-x: hidden;
}

.wrapper {
  display: flex;
}

.demo-gallery:not(.last) {
  padding-bottom: 1rem;
}

.demo-text .text {
  font-size: clamp(8rem, 15vw, 16rem);
  line-height: 1;
  font-weight: 900;
}
@media (max-width: 768px) {
      :root { font-size: 14px; }
      .boxScrollh1 { font-size: 3rem; }
      .boxScrollh2 { font-size: 1.5rem; }
      .wrapper { padding: 0.5rem; }
      .boxScrollimg {
        max-width: 100%;
        height: auto;
      }
      .boxScrollli {
        width: 100%;
        padding-right: 0;
      }
      
      .demo-wrapper {
        overflow-x: hidden;
      }
      @media (max-width: 768px) {
        .loader {
          display: none !important;
        }
      }
    }

    footer{
        background-color: #212818;
        color: white;
    }

  
      .rights{
        position: absolute;
        
        width: 80%;
        text-align: center;
        font-size: 12px;
        bottom: 10px;
        border-top: 2px solid #6D6D6D;
        left: 50%;
        /* bottom: 10px; */
        transform: translate(-50%, 0px);
        padding-top: 10px;
      }
      .logoFooter{
          color: #e4e4e4;
      }
      
      .links{
        display: flex;
          flex-direction: column;
          align-content: center;
          justify-content: center;
          align-items: flex-start;
          width: 80%;
          margin: auto;
          
          color: #8e9a7b;
      }
      .links p{
        margin-bottom: 5px;
      }
      .links h3{
        color:#979797;
        border-bottom: 2px solid #6D6D6D;
        padding-bottom: 5px;
        margin-bottom: 5px;
        margin-top: 20px;
        font-weight: 600;
      }
      .links img{
        width: 50px;
      }
      .textFooter{
        margin-top: 50px;
      }

      .top{
        width: 100%;
    }
    .topText{
        position: absolute;
        z-index: 1;
        left: 50%;
        top: 50%;
        transform: translate(-50%,60%);
    }
    .topText h1{
        font-family: var(--inter);
        text-transform: uppercase;
        font-size: 35px;
        text-align: center;
        margin: 0px;
        color: white;
    }
    .topText h3{
        text-wrap: nowrap;
        font-weight: 100;
    }
    .type{
        text-align: center;
        margin: auto;
        font-family: var(--md);
        font-size: 18px;
        color: rgb(198, 198, 198);
        letter-spacing: 2px;
    }
    .topText p {
        height: 100px;
        width: 100px;
        position: relative;
        animation: effect 8s linear infinite;
      }
      
      @keyframes effect {
        0% {
          transform: rotate(0deg);
        }
        100% {
          transform: rotate(360deg);
        }
      }
     .topText span {
        position: absolute;
        left: 50%;
        transform-origin: 0px 50px;
        transform-style: flat;
        font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
        text-transform: uppercase;
        font-weight: 400;
        font-size: 10px;
        color: #ffffff;
      }
      .circle{
        margin-top: 5vh;
        position: relative;
        width: fit-content;
      }
      .arrow{
        position: absolute;
        color: #ffffff;
        font-size: 30px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
      }
    /* Dla wszystkich elementów */




    :root{
        --bgcolor:#EFE0D3;
        --dark:#02111B;
        --inter:'Inter';
        --md:'DM Serif Display';
        --century:'Century Gothic';
    }
    body,html {
        margin: 0;
        font-family: 'Arial', sans-serif;
        height: 100%;
        width: 100%;
      }
    
      #menu-container {
        position: fixed;
        top: 0;
        right: -110%;
        width: 100vw;
        height: 80vh;
        transition: right 0.4s cubic-bezier(0.47, 0, 0.745, 0.715);
        background-color: var(--bgcolor);
        z-index: 100000;
    }
    .nav{
        z-index: 1000;
    }
      #menu-social {
        position: fixed;
        z-index: 100000;
        bottom: 0;
        left: -110%;
        width: 100vw;
        height: 20vh;
        background-color: var(--bgcolor);
        transition: left 0.4s cubic-bezier(0.47, 0, 0.745, 0.715);
    }
    .nav-item{
        color: black;
    }
    .mdd{
        margin-top: 120px;
    }
    .mrr h2{
        width: 70%;
        text-wrap: balance;
    }
    .mrr{
        background-color: #212818;
        width: 87%;
        margin: auto;
        height: -webkit-fill-available;
        margin-bottom: 10px;
        border-radius: 20px;
        padding: 20px;
        color: white;
        position: relative;
    }
    .mrr img{
        width: 100px;
        
    }
    .flexImg{
        position: absolute;
        bottom: 0px;
        right: 30px;
        display: flex;
    }
      #menu-container a {
        padding: 25px 60px;
        text-decoration: none;
        font-size: 1.5em;
        color: rgb(0, 0, 0);
        display: block;
        transition: 0.3s;
      }
    
    
      #menu-button {
        top: 20px;
        right: 20px;
        font-size: 1em;
        cursor: pointer;
        z-index: 10000;
        color: var(--bgcolor);
        border: var(--bgcolor) 2px solid;
        border-radius: 100px;
        padding: 5px 15px;
        z-index: 100000;
      }
    li{
        list-style: none;
        font-family: var(--inter);
        font-weight: 800;
    }
    
    
    
    
    
    /* koniec menu  */
    footer{
        width: 100%;
        height: auto;
        background-color: #E0D2C5;
        position: relative;
        padding-top: 10vh;
      }
      .rights{
        position: absolute;
        
        width: 80%;
        text-align: center;
        font-size: 12px;
        bottom: 10px;
        border-top: 2px solid #6D6D6D;
        left: 50%;
        /* bottom: 10px; */
        transform: translate(-50%, 0px);
        padding-top: 10px;
      }
      .logoFooter{
        width: 80%;
          height: auto;
          margin: auto;
          padding-bottom: 50px;
          color: #525252;
          font-family: 'Times New Roman', Times, serif;
      }
      
      .links{
        display: flex;
          flex-direction: column;
          align-content: center;
          justify-content: center;
          align-items: flex-start;
          width: 80%;
          margin: auto;
          
          color: #919191;
      }
      .links p{
        margin-bottom: 5px;
      }
      .links h3{
        color:#6D6D6D;
        border-bottom: 2px solid #6D6D6D;
        padding-bottom: 5px;
        margin-bottom: 5px;
        margin-top: 20px;
        font-weight: 600;
      }
      .links img{
        width: 50px;
      }
      .textFooter{
        margin-top: 50px;
      }
    
    
    /* koniec footer */
    
    *{
        -webkit-tap-highlight-color: transparent;
    }
    nav{
        width: 100vw;
        height: fit-content;
        background-color: #02111B;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: space-around;
        align-items: center;
        z-index: 100000;
    }
    .logo{
        width: 100px;
        z-index: 1000;
    }
    .logo img{
        width: 50px;
    }
    /* -------------------------------------- */
    .hiddenMobile{
      display: none;
    }
    footer{
      background-color: #212818;
      color: white;
  }
    .links{
      display: flex;
        flex-direction: column;
        align-content: center;
        justify-content: center;
        align-items: flex-start;
        width: 80%;
        margin: auto;
        
        color: #8e9a7b;
    }
    .links p{
      margin-bottom: 5px;
    }
    .links h3{
      color:#979797;
      border-bottom: 2px solid #6D6D6D;
      padding-bottom: 5px;
      margin-bottom: 5px;
      margin-top: 20px;
      font-weight: 600;
    }
    .links a {
      color: #919191;
      text-decoration: none;
  }
  .logoFooter {
    width: 80%;
    height: auto;
    margin: auto;
    padding-bottom: 50px;
    color: #525252;
    font-family: 'Times New Roman', Times, serif;
}
.logoFooter {
  color: #e4e4e4;
}
    .links img{
      width: 50px;
    }
    .textFooter{
      margin-top: 50px;
    }

    .middle {
      width: 100%;
      height: auto;
      margin: auto;
      background-color: #02111B;
      padding-top: 20vh;
      padding-bottom: 20vh;
    }
    
    .flexMiddle {
      width: 70%;
      display: flex;
      margin: auto;
      color: white;
      font-family: var(--md);
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      gap: 20px; /* Dodaj przerwę między .leftSide a .rightSide */
    }
    
    .flexMiddle h1 {
      font-size: 30px;
      color: #B3CB93;
    }
    
    .leftSide {
      width: 45%;
      background-color: #485635;
      border: 2px solid #485635;
      padding: 15px;
      border-radius: 40px;
      flex: 1; /* Ustawienie flex na 1, aby oba boki miały taką samą wysokość */
      min-height: 20vh;
      font-size: 1.3em;
    }
    
    .rightSide {
      width: 45%;
      border: 2px solid #485635;
      padding: 15px;
      border-radius: 40px;
      flex: 1; /* Ustawienie flex na 1, aby oba boki miały taką samą wysokość */
      min-height: 20vh;
      font-size: 1.3em;

    }
    .flexMiddleSecond
    {
      padding-top: 20vh;
      width: 70%;
      display: flex;
      margin: auto;
      color: white;
      font-family: var(--md);
      flex-direction: row;
      align-items: flex-start;
      justify-content: space-between;
    }


    .leftSecond {
      width: 40%;
     
      padding: 15px;
      min-height: 20vh;
      
    }
    .leftSecond a{
      text-decoration: none;
      font-size: 24px;
      color: rgb(237, 237, 237);
      border-bottom: 2px solid rgb(237, 237, 237);
      padding-bottom: 10px;
    }
    .leftSecond p{
      color: rgb(123, 123, 123);
      font-weight: 400;
      font-size: 18px;
    }
    .leftSecond a:hover{
      text-decoration: none;
      color: rgb(241, 241, 241);
      border-bottom: 2px solid rgb(241, 241, 241);
      font-weight: 900;
    }
    .linkMiddle{
      margin-bottom: 40px;
    }
    .rightSecond {
      width: 60%;
     
      padding: 15px;
     
      min-height: 20vh;
    }
    .rightSecond img {
      width: 100%;
    }
    .flexMiddleThree{
      padding-top: 20vh;
      width: 70%;
      display: flex;
      margin: auto;
      color: white;
      font-family: var(--md);
      flex-direction: row;
      align-items: flex-start;
      justify-content: space-between;
      gap: 20px; 
    }

    .leftThree {
      width: 40%;
      text-wrap: nowrap;
      padding: 15px;
      border-radius: 40px;
      min-height: 20vh;
    }
    .leftThree .big {
      font-size: 4vw;
    }
    .leftThree h4 {
      font-size: 20px;
    }
    .rightThree {
      width: 60%;
      padding: 15px;
      border-radius: 40px;
      min-height: 20vh;
    }
    .leftThree .cont{
      width: auto;
    margin: 0;
    padding: 10px 30px;
    border-radius: 100px;
    border: 2px solid #73865A;
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    
    font-size: 22px;
    color: white;
    }
    
    @media (min-width: 880px) {
    
      .links{
        display: flex;
        flex-direction: row;
        width: 75%;
        justify-content: space-between;
      }
      .hiddenMobile{
        display: flex;
      }
      #menu-button{
        display: none;
      }
      .hiddenMobile li{
        margin-right: 20px;
      }
      .hiddenMobile li a{
        color: white;
    
      }
      .hiddenMobile li a:visited{
        color: white;
      }
      .nav-link{
        padding: 0!important;
      }
     
    }
@media(max-width: 1000px){
  .flexMiddleSecond {
    width: 70%;
    flex-direction: column;
    padding-top: 10vh;
}
.leftSecond,.rightSecond{
  width: 100%;
}
}
    @media (max-width: 880px) {
    .flexMiddle{
      width: 90%;
      flex-direction: column;
    }
    .leftSide {
      width: 100%;
     
    }
    
    .rightSide {
      width: 100%;
    
    }
    .flexMiddleSecond {
      width: 90%;
      
  }
  .leftSecond,.rightSecond,.leftThree,.rightThree{
    width: 100%;
  }
  .flexMiddleThree{
    padding-top: 10vh;
    width: 90%;
    flex-direction: column;
  }
  .rightThree p{
    font-size: 2em;
  }
  .leftThree .big{
    font-size: 4em;
  }
  .leftThree .cont{
    width: 100%;
  }
  }
    @media (min-width: 1000px) {
      
      .topText h1{
        font-size: 100px;
      }
      .topText h3{
        font-size: 40px;
      }
      .topText{
        transform: translate(-50%,-40%);      }
    }



