﻿.header-title {
    font-size: 20px;
}
.vacancy-container{
    position:relative;
    height:170px;
}
    .vacancy-container .vacancy-suggestion-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }
    .vacancy-container .vacancy-info {
        position: absolute;
        border-radius: 10px;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: #313131;
        opacity: 0.7;
        padding: 20px;
    }
        .vacancy-container .vacancy-info .text {
            color: #d3d3d3;
        }

        .vacancy-container .vacancy-info:hover {
            opacity: 0.95;
        }
            .vacancy-container .vacancy-info:hover .text {
                color: #e2e2e2;
            }
        