@media screen and (max-width:50rem) {
    .container{
      width: 100%;
  }
   nav{
       padding:1rem 2rem;
       position: relative;
   }
   .logo img{
       height: 40px;
       width: 80px;
       margin-left:0;
    }
    .menu ul{
        display: none;
    }
    .bar{
        display: inline;
    }
    .menu .active{
        display: flex;
        flex-direction: column;
        position: absolute;
        top:100%;
        left: 0;
        height: 100vh;
        width: 100vw;
        backdrop-filter: blur(5px)brightness(60%);
    }
    .hero{
        background-image: none;
        padding: 1rem;
        height: 350px;
    }
    .hero-info{
        width: 100%;
        color: #000;
    }
    .hero h3{
        font-size: 1.4rem;
        line-height: 1.5;
    }
    .hero h1{
        font-size: 2.2rem;
    }
    .hero p{
        font-size: 1rem;
        margin-top: 1rem;
    }
    .hero-btn{
        flex-direction: column; 
    }
    .hero-btn button:first-child {
        border: none;
        background-color: #fa4a0c;
        padding: 0.7rem 1.2rem;
        font-size: 1.2rem;
        font-weight: 700;
        border-radius: 5rem;
      }
      .hero-btn button:last-child {
        border: 2px #000 solid;
        background-color: transparent;
        padding: 0.7rem 1.2rem;
        font-size: 1.2rem;
        font-weight: 700;
        border-radius: 5rem;
      }
      .hero-btn button:last-child a{
          color: #000;
          font-weight: 700;
      }
      .hero-image{
          width: 100%;
          display:block;
          margin:0 auto;
          border: 0;
      }
      .hero-image img{
          width:100%;
          margin:-15rem auto 0 -5rem;
          object-fit: cover;
      }
      .hero-process{
          border-top: 2px rgba(0, 0, 0, 0.3) solid;
          padding: 1rem;
        }
        .hero-process > h1{
            font-size: 1.7rem;
        }
        .process{
            grid-template-columns: 1fr;
            padding:3rem 3rem;
            text-align: center;
        }
        .process img{
            transform: translateX(4rem);
        }
        .process-info{
            width: 100%;
            order:-1;
        }
        .process-info h3{
            font-size: 2.2rem;
        }
        .process-info h1{
            font-size: 2.7rem;
        }
        .hero-finish{
            background-image: none;
            color:#000;
            height: 40rem;
        }
        footer{
            flex-direction:column;
            gap:3rem;
            padding: 2rem;
        }
        
  }
  @media  screen and (min-width:50rem) and (max-width:75rem) {
      .container{
          width: 100%;
          }
        .bar{
            display: none;
        }
        nav{
            padding: 1.5rem 2.5rem;
        }
        .logo img{
            width: 14rem;
            height: 5rem;
        }
        ul {
            gap:1.4rem;
        }
        .menu ul li{
            padding: 0.6rem 1.2rem;
        }
        .menu ul li a {
         font-size: 2rem;
        }
        .hero{
            height: 55rem;
        }
        .hero-info{
            width: 80%;
        }
        .hero h3{
            font-size: 1.8rem;
        }
        .hero h1{
            font-size: 3rem;
        }
        .hero-image{
            width: 70%;
            display: flex;
            margin:0 auto;
            align-items: center;
            justify-content: center;
        }
        .hero-image img{
            margin:-28rem auto 0;
            width: 100%;
        }
        .process{
            padding: 0 4rem;
        }
        .process-info{
            width: 100%;
        }
        .process-info h3{
            font-size:1.8rem;
        }
        .process-info h1{
            font-size: 2.4rem;
        }
        .process-info p{
            font-size: 1.2rem;
        }
        .hero-finish{
            height:40rem;
            border: 2px red solid;
        }
        .hero-finish h1{
            font-size: 2.4rem;
        }
        .hero-finish p{
            font-size: 1.6rem;
        }
        footer{
            font-size: 1.6rem;
            padding:3rem;
        }
            


  }