.box {
    padding: 20px;
    background-color: #f0f0f0;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    height: 150px;

  }
  .cat-box{
    padding: 20px;
    background-color: #f0f0f0;
    border: solid 2px var(--card-background);
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    transition: .3s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-decoration: none;
  }

  .cat-box:hover{
    transform: scale(1.02);
    border: solid 2px var(--button-color);
  }
  
  .cat-box h3{
    color: var(--button-color);
    font-weight: bold;
    font-size: 20px;
  }
  
  .flex {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
    width: 100%;
  }

  .flex{
    font-size: 20px;
    color: var(--button-color);
  }
  
  .switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
  }
  
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
  }
  
  input:checked + .slider {
    background-color: #2196F3;
  }
  
  input:checked + .slider:before {
    transform: translateX(26px);
  }
  
  .slider:after {
    content: "Off";
    color: white;
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    font-size: 12px;
  }
  
  input:checked + .slider:after {
    content: "On";
    left: 34px;
  }
  @media only screen and (max-width:414px){
    .text{
       visibility:collapse;
    }
    .phonetext{
       visibility:visible;
    }
 }

 @media (max-width: 765px) {

    .box{
      padding: 10px;
      width: 100%;
      height: auto;
    }

    .cat-box{
      width: 100%;
    }
    .cat-box h3{
      font-size: 16px;
    }
 }
    