 /* 
 MAG blue: #009dd9


 */
 
 :root {
  --MAG-blue: #009dd9; /* Blue */
  --MAG-blue-rgb: 0, 157, 217;
  }

 .img-round {
       border-radius: 15px;
   }
 .content-round {
       border-radius: 20px;
   }

  .feature-card {
    /*background: rgba(0, 157, 217, 0.5);*/
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid rgba(0, 156, 217, 0.2);
    /*cursor: pointer;*/
  }

  .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 0px 20px rgba(102, 126, 234, 0.3);
    border-color: var(--MAG-blue);
  }

  .btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border: 2px solid rgb(0, 156, 217);
    background: linear-gradient(310deg, rgba(var(--MAG-blue-rgb), 0.5), #fff);
    color: white;
    box-shadow: 0 0px 10px rgba(102, 126, 234, 0.3);
  }

  .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0px 0px 10px rgb(217,60,0);
  }