@media  (min-width: 810px) and (max-width: 1279px) {
    .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;
    }
    
    #check-menu {
      display: none;
    
    }
    .nav{
      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: 70%;
    }
      * {
        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;
      }
      .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: 60%;
        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 {
            display: flex;
        }
      
        .footer-column {
          width: 25%;
        }
    
    body {
      display: flex;
      flex-direction: column;
      min-height: 100vh;
      font-family: 'Arial', sans-serif;
    }
    
    .footer {
      background-color: #e8f5f5;
      padding: 20px;
      margin-top: 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%;
    }
    }