@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

.about-cards {
    min-height: 260px;
}

/* If want to make header sticky then uncomment this code ↓ */
/* .header {
    position: sticky;
    top: 0;
    box-shadow: 0px -2px 14px black;
    z-index: 1;
} */

.Mine-Cards .card {
    transition: all 0.28s ease-in-out;
}

.Mine-Cards .card:hover {
    transform: translateY(-9px);
    box-shadow: 0px 5px 7px #646464;
}

.black-btn {
    position: relative;
    overflow: hidden;
    border: 1px solid #18181a;
    color: #18181a;
    display: inline-block;
    font-size: 15px;
    line-height: 15px;
    padding: 18px 18px 17px;
    text-decoration: none;
    cursor: pointer;
    background: #fff;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.black-btn span:first-child {
    position: relative;
    transition: color 600ms cubic-bezier(0.48, 0, 0.12, 1);
    z-index: 10;
}

.black-btn span:last-child {
    color: white;
    display: block;
    position: absolute;
    bottom: 0;
    transition: all 500ms cubic-bezier(0.48, 0, 0.12, 1);
    z-index: 100;
    opacity: 0;
    top: 65%;
    left: 50%;
    transform: translateY(225%) translateX(-50%);
    height: 14px;
    line-height: 13px;
}

.black-btn:after {
    content: "";
    position: absolute;
    bottom: -105%;
    left: -100px;
    width: 157%;
    height: 145%;
    background-color: black;
    transform-origin: bottom center;
    transition: transform 1s cubic-bezier(0.48, 0, 0.12, 1);
    transform: skewY(9.3deg) scaleY(0);
    z-index: 50;
}

.black-btn:hover:after {
    transform-origin: bottom center;
    transform: skewY(9.3deg) scaleY(2);
}

.black-btn:hover span:last-child {
    transform: translateX(-50%) translateY(-100%);
    opacity: 1;
    transition: all 1.1s cubic-bezier(0.48, 0, 0.12, 1);
}

.Hero-Black-Btn::after {
    left: -35px;
}

@media only screen and (max-width: 991px) {
    .AboutImageRemove {
        display: none;
    }

    .AboutText {
        text-align: center;
    }

    .AboutGlimpse {
        text-align: center;
    }
}

@media only screen and (max-width: 767px) {
    .JavaScript-No-Assignments {
        padding: 25px 0;
        width: 100% !important;
    }

    .JavaScript-No-Assignments2 {
        position: absolute;
        bottom: -30px;
        z-index: -1;
        opacity: 0.2;
        overflow: hidden;
    }

    .JavaScript-No-Assignments2 img {
        width: 240px !important;
    }
}

@media only screen and (max-width: 667px) {
    .JavaScript-No-Assignments2 {
        bottom: -5%;
    }
}

@media only screen and (max-width: 508px) {
    .JavaScript-No-Assignments2 {
        bottom: -0%;
    }
}

@media only screen and (max-width: 590px) {
    #HeroImage {
        height: 70px;
    }

    .HeroButtons {
        padding: 5px 12px;
        font-size: 16px;
    }
}