@media  (max-width: 767px) {
.menu-container {
  margin: 20px auto;
  width: 95%;
  background-color: rgb(255, 255, 255);
  position: relative;
  color: rgb(0, 0, 0);
  text-align: center;
  height: 40px;
  font-family: sans-serif;
  display: flex;
  justify-content: space-between;
}
.nav{
  display: none;
}

#check-menu {
  display: none;

}

label {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
}

.burger-line {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 35px;
  height: 4px;
  background-color: rgb(114, 114, 114);
  
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.second, .third {
  top: 18px;
}

.fourth {
  top: 28px;
}

.menu {
  display: block;
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  max-height: 0;
  font-size: 0;
  overflow: hidden;
  -webkit-transition: 0.5s;
          transition: 0.5s;
  background: white;
}

a {
  display: block; 
  padding: 10px;
  color: white;
  text-decoration: none;
  color: black;
}

#check-menu:checked ~ .menu {
  max-height: 500px;
  font-size: 16px;
}

#check-menu:checked ~ .first {
  display: none;
}

#check-menu:checked ~ .second {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

#check-menu:checked ~ .third {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

#check-menu:checked ~ .fourth {
  display: none;
}
.header__img{
  width: 90%;
}
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }

  .header {
    padding: 1rem;
  }

  .logo {
    font-size: 1.5rem;
    font-weight: bold;
  }

  .burger-menu {
    font-size: 1.5rem;
    background: none;
    border: none;
  }

  .nav-links {
    list-style: none;
    display: none;
    flex-direction: column;
  }

  .nav-links li {
    margin: 0.5rem 0;
  }

  .nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 1.2rem;
  }

  .hero {
    padding: 2rem 1rem;
    background-color: #e9f7ef;
    text-align: center;
  }

  .cta-button {
    padding: 0.5rem 1rem;
    background-color: #2e8b57;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1rem;
  }

  .about, .history {
    padding: 1rem;
  }
  h1{
    padding: 1rem;
  }
  .history-block {
    margin: 1rem 0;
  }
  p{
    padding: 1rem;
  }
  .lets_go{
    background: rgb(250, 180, 51);
    width: 30%;
    margin: 0.5rem;
    border-radius: 2vh;
    text-align: center;
    color: white;
    display: flex;
    justify-content: center;
    font-weight: 800;
    box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.459);
  }
  .text{
    display: flex;
    flex-direction: column;
    padding: 1rem;

  }
    .footer-content {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .footer-menu {
      flex-direction: column;
      align-items: center;
    }
  
    .footer-column {
      margin-bottom: 15px;
    }

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: 'Arial', sans-serif;
}

.footer {
  background-color: #e8f5f5;
  padding: 20px;
  margin-top: auto;
}

.column{
  column-count: 2;
}

.footer-logo img {
  max-width: 60px;
  margin-bottom: 10px;
}
.footer-social {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
}
@media (min-width: 1280px){
    nav{
      display: flex;
      width: 100%;
      justify-content: space-between;
    }
    .nav_items{
      display: flex;
      justify-content: space-between;
      width: 40%;
    }
    .nav_item{
      cursor: pointer;
      border-radius: 20px;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: background 0.3s ease;
      padding: 0 20px;
    }
    .nav_item:hover{
      background: #cfcfcf50;
    }
    .menu-container{
      display: none;
    }
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
    
      body {
        font-family: Arial, sans-serif;
        line-height: 1.6;
      }
      header{
        display: flex;
        flex-direction: row-reverse;
        justify-content: center;
      }
      .header {
        padding: 1rem;
        width: 100%;
        text-align: center;
      }
      
      .header__img{
        width: 53%;
      }
      .logo {
        font-size: 1.5rem;
        font-weight: bold;
      }
    
      .burger-menu {
        font-size: 1.5rem;
        background: none;
        border: none;
      }
    
      .nav-links {
        list-style: none;
        display: none;
        flex-direction: column;
      }
      a {
        display: block; 
        padding: 10px;
        color: white;
        text-decoration: none;
        color: black;
      }
    
      .nav-links li {
        margin: 0.5rem 0;
      }
    
      .nav-links a {
        text-decoration: none;
        color: #333;
        font-size: 1.2rem;
      }
    
      .hero {
        padding: 2rem 1rem;
        background-color: #e9f7ef;
        text-align: center;
      }
    
      .cta-button {
        padding: 0.5rem 1rem;
        background-color: #2e8b57;
        color: white;
        border: none;
        cursor: pointer;
        font-size: 1rem;
      }
    
      .about, .history {
        padding: 1rem;
      }
      h1{
        padding: 1rem;
        text-align: center;
        width: 100%;
      }
      .history-block {
        margin: 1rem 0;
      }
      .lets_go{
        background: rgb(250, 180, 51);
        width: 30%;
        height: 10%;
        margin: 0.5rem;
        border-radius: 2vh;
        text-align: center;
        color: white;
        display: flex;
        justify-content: center;
        font-weight: 800;
        box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.459);
        display: flex;
        align-items: center;
      }
      .text{
        display: flex;
        flex-direction: column;
        padding: 1rem;
        width: 40%; 
        justify-content: center;
        align-items: center;
      }
        .footer-content {
          flex-direction: column;
          align-items: center;
          text-align: center;
        }
      
        .footer-menu {
            display: flex;
        }
      
        .footer-column {
          width: 25%;
        }
    
    .container{
      display: flex;
      flex-direction: column;
      font-family: 'Arial', sans-serif;
      height: 80%;
      width: 80%;
      margin: 0 auto;
    }
    
    .footer {
      background-color: #e8f5f5;
      padding: 20px;
      margin-top: auto;
      width: 80%;
      margin: 0 auto;
    }
    
    .column{
        flex-wrap: none;
    }
    
    .footer-logo img {
      max-width: 60px;
      margin-bottom: 10px;
    }
    .footer-social {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
    }
    } 