.monos {
  position: relative;
  top: 0;
  left: 0;
  
  .farmer {
    position: absolute;
    width: 337px;
    bottom: -60px;
    left: 250px;
    z-index: -1;
  }
  
  .workman {
    position: absolute;
    width: 485px;
    bottom: -80px;
    right: 250px;
    z-index: -1;
  }
}

.title {
  display: flex;
  text-align: center;
  justify-content: center;
  padding: 10vh 0 0;
}

.login-wrapper {
  display: flex;
  justify-content: flex-end;
  margin-right: 50px;
  
  sl-button.login-button::part(base) {
    color: #585B5C;
    font-size: 16px;
  }

  .login-icon {
    font-size: 32px;
    color: #FFF;
    background-color: #FBAD48;
    display: block;
    align-content: center;
    border-radius: 16px;
  }
}

.main-wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;

  .main-buttons {
    width: 800px;
    display: flex;
    justify-content: center;
    margin: 5vh 0 0;
    gap: 20px;
    .compa-button, .jale-button {
      width: 40%;
      span {
        font-size: 24px;
      }
      sl-icon {
        font-size: 32px;
      }
    }
  }
  .info-wrapper {
    width: fit-content;
    align-self: center;
    margin-top: 20px;
    sl-button.info-button::part(base) {
      color: #585b5c;
      font-size: 16px;
    }
  }
}

.popular-search-main-wrapper {
  display: flex;
  justify-content: center;

  .popular-search-wrapper {
    display: flex;
    flex-direction: column;
    background-color: #faefce;
    padding: 20px 80px 40px;
    border-radius: 20px;
    margin: 3vh 16% 100px;
    width: 100%;
  
    .popular-search-title {
      align-self: center;
      color: #e36825;
    }
    .secondary-buttons {
      display: grid;
      gap: 0 10px;
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }
  }
}

@media (max-width: 1710px) {
  .monos {
    .farmer {
    left: 180px;
    }
    .workman {
      right: 160px;
    }
  }
}

@media (max-width: 1440px) {
  .title img {
    width: 70%;
  }

  .monos {
    .farmer {
      width: 285px;
    }
    .workman {
      width: 400px;
    }
  }
}

@media (max-width: 1200px) {
  .title {
    padding: 5vh 0 8vh;
    img {
      width: 65%;
    }
  }

  .monos {
    .farmer {
      left: 140px;
    }
    .workman {
      right: 140px;
    }
  }
}


@media (max-width: 820px) {
  .title img {
    width: 80%;
  }

  .main-wrapper {
    .main-buttons {
      min-width: 320px;
      width: 80% !important;
      flex-direction: column;
      .compa-button, .jale-button {
        width: 100%;
      }
    }
  }
  
  .popular-search-main-wrapper {
    .popular-search-wrapper {
      margin: 5vh 9% 20px;
      padding: 20px 40px 40px;

      .popular-search-title {
        font-size: 10px;
      }
      
      .secondary-buttons {
        gap: 0 16px;
        height: 200px;
        display: grid;
        grid-template-columns: 1fr 1fr;
    
        sl-button {
          flex-basis: 25%;
        }
      }
    }
  }
  .monos {
    display: none;
  }
}
