
   .text-morena {
            color: #56001a !important;
        }


        .bg-morena {
            background-color: #56001a;
        }

        .btn-morena {
            background-color: #56001a;
            color:    white;
        }

        .btn-morena:hover {
            background-color: white;
            color:  #56001a;
            border: 1px solid #56001a;
        }
        
        .btn-check:checked+.btn-outline-morena, .btn-check:active+.btn-outline-morena, .btn-outline-morena:active, .btn-outline-morena.active, .btn-outline-morena.dropdown-toggle.show {
            background-color: #56001a;
            color:    white;
        }
        
        
          .btn-outline-morena {
              
              background-color: white;
            color:  #56001a;
            border: 1px solid #56001a;
           
        }

        .btn-outline-morena:hover {
             background-color: #56001a;
            color:    white;
        }
        
        .btn-check:checked+.btn-outline-morena, .btn-check:active+.btn-outline-morena, .btn-outline-morena:active, .btn-outline-morena.active, .btn-outline-morena.dropdown-toggle.show {
            background-color: #56001a;
            color:    white;
        }
        
        .card-body {
            flex: 1 1 auto;
            padding: 1.5rem 0.5rem;
        }
        
        
        .nav-pills .nav-link.active, .nav-pills .nav-link.active:hover, .nav-pills .nav-link.active:focus {
            background-color: #56001a;
            color: #fff;
            box-shadow: 0 2px 4px 0 rgb(105 108 255 / 40%);
        }
        .nav-pills .nav-link.active, .nav-pills .nav-link.active:hover, .nav-pills .nav-link.active:active {
            background-color: #56001a;
            color: #fff;
            box-shadow: 0 2px 4px 0 rgb(105 108 255 / 40%);
        }
        
    
  .box {
    width: 250px;
    height: 250px;
    border-radius: 10px;
    background-color: rgb(68, 61, 61);
    margin: 20px;
    transition: 0.3s all ease-in-out;
    position: relative;
    box-shadow: 0px 0px 15px background;
  }
  .box .boxContent {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 15px;
  }
  .box .boxContent .icon {
    color: #ffffff;
    font-size: 68px;
    /* padding: 15px; */
  }
  .box .boxContent .title {
    font-size: 24px;
    color: #ffffff;
    font-weight: bold;
    padding: 10px;
  }
  .box .boxContent .desc {
    color: #ffffff;
    font-size: 15px;
    height: 20%;
    /* Link */
  }
  .box a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
  .box:hover {
    /* background: linear-gradient(130deg, #72133f 0%, #743351 100%); */
    background: #72133f;
    box-shadow: none;
  }
  .box:hover .icon, .box:hover .title, .box:hover .desc {
    color: white;
    transition: 0.3s all ease-in-out;
  }
      