:root{
    --bgcolor:#EFE0D3;
    --dark:#02111B;
    --inter:'Inter';
    --md:'DM Serif Display';
    --century:'Century Gothic';
}
body,html {
    margin: 0;
    padding: 0;   
     font-family: 'Arial', sans-serif;
    width: 100%;
    scroll-behavior: smooth;
    scrollbar-width: thin; /* Dla Firefox */
    scrollbar-color: #c1c1c1 #f0f0f0; /* Dla Firefox */
    /* overflow-x: hidden; */
  }
  ::-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: #515b42; /* Ciemniejszy kolor kciuka */
}
  ::-moz-selection {
    background: #738656;
    color: white;
  }
  
  ::selection {
    background: #738656;
    color: white;
  }
  #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;
}
a{
  text-decoration: none;
  font-style: none;
}
  #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;
}
.md{
    margin-top: 120px;
}
.mr h2{
    width: 70%;
    text-wrap: balance;
}
.mr{
    background-color: #212818;
    width: 87%;
    margin: auto;
    height: -webkit-fill-available;
    margin-bottom: 10px;
    border-radius: 20px;
    padding: 20px;
    color: white;
    position: relative;
}
.mr img{
    width: 100px;
    
}
.flex{
    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;
      
  }
  .links a{
    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;
}


@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;
  }
  .links h3 {
    color: #979797;
    border-bottom: 2px solid #6D6D6D;
    padding-bottom: 5px;
    margin-bottom: 5px;
    margin-top: 20px;
    font-weight: 600;
}
}
