﻿.banner {
    /*background-color: #ff6a00 !important;*/
    width: 100%;
    height: 95vh;
    background-image: url("/img/home-banner.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 40px 100px;
}

    .banner .tag {
        color: #d7d7d7 !important;
        font-size: 20px;
        margin-bottom:20px;
    }
        .banner .tag:nth-child(2) {
            font-size: 40px;
            margin-bottom: 30px;
        }
.vacancy-type-card {
    border: 2px solid #cccc52;
    box-shadow: 0.2rem .2rem rgba(0,0,0,.05) !important;
    z-index: 99;
    top: -40px
}
/* On screens that are 992px or less, set the background color to blue */
@media screen and (max-width: 992px) {

}

/* On screens that are 600px or less, set the background color to olive */
@media screen and (max-width: 600px) {
    .banner {
        height: 50vh;
        padding: 10px 10px;
    }
        .banner .tag {
            color: #d7d7d7 !important;
            font-size: 14px;
            margin-bottom: 5px;
        }

            .banner .tag:nth-child(2) {
                font-size: 20px;
                margin-bottom: 0px;
            }
    .vacancy-type-card {
        top: 10px;
        z-index: -1;
    }
}