@media (max-width: 733px) {
  .main-card .container {
    display: block;
    padding: 0 5px;
  }

  .card {
    max-width: 490px;
    min-width: 200px;
    width: 100%;
    background-color: #fff;
    border-radius: 9px;
    box-shadow: 2px 2px 5px rgb(240, 235, 235);
    margin: 17px auto;
  }

  .card .main-title {
    color: rgb(78, 72, 72);
    text-align: center;
    margin: 70px 0;
    font-size: 20px;
    font-family: "Rubik", sans-serif;
  }

  .hide-card {
    display: none;
  }

  .card:active {
    transform: scale(1); /* يكبر أكثر عند الضغط */
    box-shadow: 0 3px 30px rgba(0, 0, 0, 0.2); /* يزيد الظل */
  }

  .card:hover {
    transform: scale(1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  }

  .card:active {
    transform: scale(1.1);
    box-shadow: 0 3px 30px rgba(0, 0, 0, 0.2);
  }
}

/* ================
1.1 drop down header
================ */

@media (max-width: 450px) {
  .main-navigation ul {
    display: none;
  }

  .dropDownContentSmallScreen {
    display: block;
  }

  .dropDownContentSmallScreen {
    height: 140px;
  }

  .dropDownContentSmallScreen li a {
    display: inline-block;
    width: 100%;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    padding: 10px 16px;
    border: 1px solid #ffffff52;
    border-radius: 9px;
    text-align: center;
  }

  #dropDownNav .container {
    justify-content: space-between;
    display: flex;
    gap: 0.5em;
  }
}
