.fl {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 28px;
    right: 120px;
    text-align: center;
    font-size: 30px;
    z-index: 100;
    }
        .bnc {
          -webkit-animation-name: bounce;
          animation-name: bounce;
          -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
        }
        .m-t-70{
            margin-top:70px;
        }
		.m-t-40{
            margin-top:40px;
        }
        .btn-animate {
            transition: transform 0.3s ease, background-color 0.3s ease;
        }

        .btn-animate:hover {
            transform: scale(1.1);  /* Button grows slightly on hover */
            background-color: #007bff; /* Optionally change color on hover */
        }

        .btn-animate:focus {
            outline: none; /* Removes the default focus outline */
        }