/* .container div{
        border:1px solid red;
    } */

.btn-landing {
    padding: 6px 12px !important;
}

.banner-container{
    position: absolute;
 
    bottom: 35px;
    width:100%;
    background-color:#ffc500;
}

.banner-h1 {

    font-size:32px;
    font-weight: 700;
    color: #000;
    padding:12px;
    text-align:center;
}

.subhead-h2 {
    text-align: center;
    font-size:24px;
    padding: 20px 0px;
    color: #ffffff;
}

.subhead-p {
    color: #ffffff;
}

.card-container {
    padding: 100px 0px;
    -webkit-perspective: 1000;
    perspective: 1000;
}



.course-card {
    max-width: 300px;
    background-color: #FFF;
    border-radius: 5px;
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    margin: 10px auto;
    cursor: pointer;
}

.course-card img {
    filter: brightness(50%);
    transition: all 0.25s linear;
}

.course-card .course-content {
    position: relative;
    padding: 15px;
    background-color: #FFF;
}

.course-card .course-name {
    font-weight: bold;
    position: absolute;
    left: 0px;
    right: 0px;
    top: -90px;
    color: white;
    font-size: 20px;
}

.course-card .course-name p {
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1.5px;
}

.course-card .course-description {
    color: #777;
    font-size: 12px;
    padding: 10px;
}

.course-card .course-overview {
    padding: 15px 0px;
}

.course-card .course-overview p {
    font-size: 10px;
    font-weight: 600;
    color: #777;
}

.course-card .course-overview h4 {
    color: #273751;
    font-weight: bold;
}

/* .course-card .course-content::before {
    content: "";
    position: absolute;
    height: 20px;
    top: -10px;
    left: 0px;
    right: 0px;
    background-color: #FFF;
    z-index: 0;
    transform: skewY(3deg);
} */

.course-card:hover img {
    transform: rotate(5deg) scale(1.1, 1.1);
    filter: brightness(110%);
}

.shadowy{
    text-shadow: -1px 1px 4px #000000;
}