.career{
    background-color: rgba(255, 255, 255, 0.349);
    width:100%;
    height: 100%;
}

.JS{
    color: rgb(0,123,255);
}

.btn {
    text-decoration: none;
    border: 1px solid #004896;
    position: relative;
    overflow: hidden;
    width:100%;
  }

.btn:hover {
    box-shadow: 1px 1px 25px 10px #004896;
    color: #007bff;
}

.btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 50%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(146, 148, 248, 0.4),
        transparent
    );
    transition: all 3s;
}

.btn:hover:before {
left: 100%;
}

/*----------------------------------------------*/  



