.caards {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }
  
  .caards .red {
    background-color: #ab001d;
  }
  
  .caards .blue {
    background-color: #032c6d;
  }
  
  .caards .green {
    background-color: #066a2b;
  }
  
  .caards .card {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    height: fit-content;
    width: 100%;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    transition: 400ms;
    padding: 8px;
  }
  
  .caards .card p.tip {
    font-size: 1,5em;
    font-weight: 700;
  }
  
  .caards .card p.second-text {
    font-size: 1em;
    text-align: start;
  }
  
  .caards .card:hover {
    transform: scale(1.1, 1.1);
  }
  
  .caards:hover > .card:not(:hover) {
    filter: blur(10px);
    transform: scale(0.9, 0.9);
  }

  .container2 {
    color: white;
    position: relative;
    font-family: sans-serif;
  }
  
  .container2::before,
  .container2::after {
    content: "";
    background-color: #fab5704c;
    position: absolute;
  }
  
  .container2::before {
    border-radius: 50%;
    width: 6rem;
    height: 6rem;
    top: 30%;
    right: 7%;
  }
  
  .container2::after {
    content: "";
    position: absolute;
    height: 3rem;
    top: 8%;
    right: 5%;
    border: 1px solid;
  }
  
  .container2 .box {
    width: 11.875em;
    height: 15.875em;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.074);
    border: 1px solid rgba(255, 255, 255, 0.222);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 0.7rem;
    transition: all ease 0.3s;
  }
  
  .container2 .box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .container2 .box .title {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.1em;
  }
  
  .container2 .box div strong {
    display: block;
    margin-bottom: 0.5rem;
  }
  
  .container2 .box div p {
    margin: 0;
    font-size: 0.9em;
    font-weight: 300;
    letter-spacing: 0.1em;
  }
  
  .container2 .box div span {
    font-size: 0.7rem;
    font-weight: 300;
  }
  
  .container2 .box div span:nth-child(3) {
    font-weight: 500;
    margin-right: 0.2rem;
  }
  
  .container2 .box:hover {
    box-shadow: 0px 0px 20px 1px #ffbb763f;
    border: 1px solid rgba(255, 255, 255, 0.454);
  }
  