*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
  --whiteBackground: #fff;
  --whiteText: #fff;
  --darkText: rgba(20, 46, 44);
  --lightGray: rgba(244, 245, 246);
--gray: rgba(222, 226, 227);
--lightGreen:/* rgba(21, 80, 81);*/rgba(31, 127, 132);
--deepGreen: rgba(21, 80, 81);
--navDeepGreen: rgba(21, 80, 81);
--deepGreenFooter: rgba(21, 80, 81);
--accentGreen: rgba(54, 97, 80);
--gold: rgba(206, 172, 33);
--decorativeFont: 'Playfair Display SC', serif;
--titleFont: 'Playfair Display', serif;
--smallFont: 1rem;
}

.large-font{
  --smallFont: 1.5rem;
}

.enable-color{
  font-size: 2rem;
  }

.dark-mode{
  --whiteBackground:  #252525;
  --whiteText: yellow;
  --darkText: yellow;
--lightGray: #3a3838;
--gray: #252525;
--lightGreen: #252525;
--deepGreen:  #252525;
--deepGreenFooter:#3a3838;
--navDeepGreen: yellow;
--accentGreen: #252525;
--gold: yellow;
}

 html, body{
    font-family: 'Source Sans Pro', sans-serif;
    font-size: var(--smallFont);
    overflow-x: hidden;
    line-height: 1.6rem;
    color: var(--darkText);
 }
 @media screen and (min-width: 320px){
  body{
    background-color: var(--whiteBackground);
  }
  .logo{
    display: none;
 }
 .logo-phone{
     width:2rem;
     cursor: pointer;
 }
    nav{
        width: 100%;
        display: flex;
        align-items: center;
        position: fixed;
        height: 10vh;
        left:0;
        right: 0;
        top: 0;
        padding: 0 2rem;
        background-color: var(--lightGray);
        z-index: 999;
    }
    .nav-links{
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        position: absolute;
        right: 0px;
        height: 90vh;
        top:10vh;
        padding: 3rem 0;
        width: 100%;
        background-color: var(--lightGray);
        transform: translateX(100%);
    }
    .nav-links li {
        list-style: none;
      }
      .nav-links li a {
        text-decoration: none;
        z-index: 9999;
        color: var(--navDeepGreen);
        font-size: 1rem;
      }
      .nav-icons ul{
        display: flex;
        list-style: none;
        gap: 2rem;
      }
      .ukr-flag{
        width: 2rem;
      }
      .contrast-btn{
        border: none;
        color: var(--darkText);
        background-color: transparent;
        cursor: pointer;
      }
      .contrast-btn i{
        font-size: 1.2rem;
        margin-left: .5rem;
      }
      .font-btn{
        font-weight: 400;
        border: none;
        background-color: transparent;
        cursor: pointer;
        color: var(--darkText);
      }
      .big-a{
        font-size: 1.2rem;
      }
      .burger{
        position:absolute;
        right: 2rem;
        z-index: 99999;
      }
      .burger div{
        width: 28px;
        height: 2px;
        background-color:var(--navDeepGreen);
        margin: 5px;
        transition: all 0.3s ease;
        align-items: flex-end;
      }   
    .nav-active{
        transform: translateX(0%);
        transition: transform 0.5s ease-in;
      }
      @keyframes navLinkSlide{
          from{
              opacity: 0;
              transform: translateX(50px);
          }
          to{
              opacity: 1;
              transform: translateX(0px)
          }
      }
      .header-container{
        background-color: var(--lightGreen);
        height: 20vh;
        margin-top: 10vh;
        display: flex;
        justify-content: center;
        align-items: center;
      }
      .header-container h1{
        color: var(--whiteText);
        font-weight: 400;
        text-transform: uppercase;
      }
      main{
        padding: 1rem 1rem;
      }
      .section-1{
        margin: 1rem 0;
        margin-top: 0;
      }
      .section-1 .text{
        margin-bottom: 1rem;
      }
      .fundacja-img{
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
      }
    .fundacja-img img{
        width: 70vw;
        margin-bottom: 2rem;
    }
    hr{
      width: 100%;
      border: none;
      height: 1px;
      background-color: var(--lightGray);
    }
    .section-2{
      margin: 0 2rem;
    }
    .section-2 h2{
      font-weight: 600;
      font-size: 1rem;
      margin-bottom: 1rem;
    }
    .section-2 ul{
      margin-left: 1rem;
    }
   .section-2 ul li{
      list-style: circle;
      list-style-position: outside;
    }
    .fa-file{
      color: var(--gold);
      font-size: 1.2rem;
      margin-right: 1rem;
    }
    .polityka-container{
      margin-top: 2rem;
    }
    .polityka-container a{
      text-decoration: none;
      color: rgba(20, 46, 44);
    }
    .statut-container{
      margin-top: 2rem;
    }
    .statut-container h2{
      font-weight: 600;
    }
    .statut-container a{
      text-decoration: none;
      color: rgba(20, 46, 44);
    }
    .statut-container h3{
      margin: 2rem 0;
      text-align: center;
    }
    .statut-container .breake{
      text-align: center;
      margin-top: 1rem;
    }
   .statut-text{
    display: none;
   }
   .statut-dots{
    color: transparent;
   }
   .statut-btn{
    background-color: var(--whiteBackground);
      color: var(--darkText);
      border: var(--darkText) 2px solid;
      padding: .5rem 1rem;
      text-transform: uppercase;
      cursor: pointer;
      margin-top: 1rem;
    }
    .card button:hover{
      border: var(--deepGreen) 3px solid;
    }
    footer{
      width:100%;
      background-color: var(--deepGreenFooter);
      color: var(--whiteText);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
    }
    .footer-links-flex{
      display: flex;
    }
    .footer-links li {
      list-style: none;
      margin: .5rem;
    }
    .footer-links li a{
      text-decoration: none;
      color: var(--whiteText);
    }
    footer p{
      font-weight: 300;
      margin-bottom: .5rem;
    }
 }

 @media screen and (min-width: 700px){
  nav {
    height: 12vh;
    justify-content: space-between;
  }
  .logo{
    display: inline;
    width:8rem;
    cursor: pointer;
  }
  .logo-phone{
    display: none;
  }
  .burger{
    display: none;
  }
  .nav-links {
    all: unset;
  }
  .nav-links{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 70%;
  }
  .nav-links li{
   opacity: 1;
  } 
  .nav-links li a{
    font-size: 1rem;
  }
  .nav-links li a:hover{
    color: var(--gold);
  }
  .nav-links li button:hover{
    color: var(--gold);
  }
    .section-1{
      margin: 1rem 6rem;
    }
 .fundacja-img img{
    width: 60vh;
}
.section-2{
  margin: 1rem 6rem;
}

}

 @media screen and (min-width: 1000px){
  .nav-links{
    width: 60%;
  }
  .nav-icons ul{
    gap: 1rem;
  }
  .section-1{
    display: flex;
  }
  .section-1 .text{
    width: 70%;
  }
  .fundacja-img{
    width: 50%;
    display: flex;
    
  }
.fundacja-img img{
     width: 60vh;
    margin-bottom: 2rem;
    margin-left: 2rem;
}
}
