.bg-dark {
    background: black !important;
}

.bg-primary {
    background: #0067f4 !important;
}

.h1 {
    font-size: 48px;
}

.title {
    font-size: 60px;
}

.banner {
    padding-top: 100px;
    padding-bottom: 30px;
    background-image: url("../assets/img/banner.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.sub-banner {
    width: 50%;
    padding: 10px 30px 120px;
}

.navbar {
    position: absolute;
    width: 100%;
}

.sticky {
    position: fixed !important;
    width: 100%;
    background: black !important;
    box-shadow: 0 10px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19) !important;
    z-index: 999;
}

.about {
    padding: 60px;
}

.card {
    box-shadow: 0 10px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19) !important;
}

.steps {
    background: #f4f6f7;
    padding-top: 60px;
    padding-bottom: 60px;
}

.card2-height {
    height: 280px;
}

.box-effect {
    box-shadow: 0 10px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19) !important;
}

.apply-now {
    position: fixed;
    bottom: 10px;
    right: 10px;
}

.apply-now img {
    width: 90px;
    height: 90px;
    border-radius: 5px;
}

.fa-bolt,
.fa-diagnoses,
.fa-id-card {
    font-size: 65px;
}

.card-img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.card-img i {
    box-shadow: 0 10px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19) !important;
    padding: 50px;
    font-size: 250px;
}

.hand i {
    font-size: 150px;
}

.pt-100{
    padding-top:70px;    
}

/* animation */
.shake:hover {
    animation: shake 0.82s cubic-bezier(.36, .07, .19, .97) both;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}

@keyframes shake {

    10%,
    90% {
        transform: translate3d(-1px, 0, 0);
    }

    20%,
    80% {
        transform: translate3d(2px, 0, 0);
    }

    30%,
    50%,
    70% {
        transform: translate3d(-4px, 0, 0);
    }

    40%,
    60% {
        transform: translate3d(4px, 0, 0);
    }
}

@media only screen and (max-width: 768px) {
    .title {
        font-size: 50px;
    }

    .card2-height {
        height: 100%;
    }

    .sub-banner {
        padding-top: 30px;
        width: 100%;
    }

    .card-img {
        display: none;
    }

    .banner {
        padding-top: 200px;
    }
    .pt-100{
        padding-top:30px;
    }
}

@media only screen and (max-width: 767px) {
    .hand {
        display: none;
    }

    .navbar {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}