
main {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
  }

  article {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: var(--i);
  }

  .hero-info {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    z-index: 8;
  }
  .hero-info h2 {
    font-size: clamp(2rem, 9vw, 5rem);
    line-height: clamp(2rem, 9vw, 5rem);
    text-transform: uppercase;
  }
  .hero-info h1 {
    color: var(--white);
    font-size: clamp(3rem, 10vw, 4rem);
    line-height: clamp(3.2rem, 10vw, 7rem);
    text-transform: uppercase;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
  }
  .hero-info h3 {
    color: var(--white);
    font-size: 1.6rem;
    font-weight: normal;
    margin-top: 2em;
  }
  @supports (-webkit-text-stroke: 3px var(--pill)) {
    .hero-info h2 {
      color: transparent;
      -webkit-text-stroke: 3px var(--pill);
      text-shadow: none;
    }
  }

  .hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
  .filters-section-mobile{
    display: none;
  }
  .filters-section{
    position:relative;
    /* min-height: 25px; */
    margin-bottom: 0;

  }

  .filter-form{
    display: flex;
    gap:5px
  }

  .filter-form .input-block{
    width: 180px;
  }

  .filter-form .input-block select option{
        padding: 1rem;
  }
  .filter-form .input-block .input-label{
    margin-bottom: 5px;
  }

  .filter-form .input-block input,.filter-form .input-block textarea,.filter-form .input-block select {
    outline: 0;
    border: 1px solid rgb(211, 208, 208);
    border-radius: 5px;
    padding: 4px 0 0;
}

  .filter-block{
    background: #fff;
    /* padding: 3rem; */
    border-radius: 5px;
    position: absolute;
    top: -50px;
    /* top:50%; */
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

.group-filter{
    display: flex;
}
.filters-section-mobile .input-block{
    width: 100%;
}

.filters-section-mobile .filter-form{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
}
  @media only screen and (max-width: 767px){

    .filters-section-mobile{
        display: block;
      }
    .filters-section{
        height: 100px;
        display: none;
    }
    .filter-form{
        /* flex-direction: column; */
        gap:5px;
        flex-wrap: wrap;
      }
      .filter-block{
        background: #fff;
        width: 85%;
        border-radius: 5px;
        position: relative;
        top: 0;
        /* top:50%; */
        left: 50%;
        /* -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%); */
      }
      .group-filter{
        flex-direction: column;
    }
  }
  @media only screen and (max-width: 479px) {
    .filters-section{
        height: auto;
    }
    .filter-form{
        /* flex-direction: column; */
        gap:5px
      }

      .filter-block{
        background: #fff;
        width: 100%;
        border-radius: 5px;
        position: relative;

        /* top:50%;
        left: 50%; */
        left: 0;
        top: 0;
        -ms-transform: none;
        transform:none;

      }
      .filter-form .input-block {
        width: 100%;
      }
  }

