.section-banner {
    background-image: url(../img/93e4dac409.jpg);
    background-repeat: no-repeat;
    background-size: 100vw;
    background-attachment: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: multiply;
}

.banner-top {
    position: relative;
    height: 400px;
}

.center-font {
    position: absolute;
    top: 40%;
    width: 100%;
    text-align: center;
    font-size: 40px;
    color: white;
    font-size: 70px;
    font-weight: bold;
    text-shadow: 2px 2px 2px black;
}

.news-info {
    position: relative;
    overflow: hidden;
    height: 450px;
    box-shadow: 0px 1px 10px 1px rgba(0, 0, 0, 0.2);
}

.news-info img {
    height: 250px;
}

.news-info-block {
    display: flex;
    position: absolute;
    flex-wrap: nowrap;
    align-items: baseline;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    bottom: 0;
    left: 0;
    width: 85%;
    height: 250px;
    background-color: white;
    box-shadow: 0px 2px 2px 2px rgba(0, 0, 0, 0.2);
}

.news-info-name {
    font-size: large;
    font-weight: bold;
}

.news-info-date {
    color: gray;
}

.news-info-block a {
    color: steelblue;
    margin: 10px;
}

.news-info img:hover {
    transform: scale(1.1);
    transition: transform 0.3s;
}

.news-info a img {
    width: 100%;
}

.news-place {
    font-size: larger;
    color: steelblue;
    font-weight: bold;
}

.news-place.active {
    color: aqua;
}

.news-place:hover {
    color: aqua;
}