.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;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.arrow {
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    cursor: pointer;
}

.arrow-left {
    border-right: 10px solid black;
}

.arrow-right {
    border-left: 10px solid black;
}

.dots {
    display: flex;
    gap: 40px;
}

.dot {
    width: 20px;
    height: 20px;
    background-color: gray;
    border-radius: 50%;
}

.dot.active {
    background-color: steelblue;
}

.image-info {
    width: 100%;
}

.news-info {
    overflow: hidden;
    box-shadow: 0px 0px 10px 1px black;
}

.news-info-block {
    min-height: 250px;
    text-align: start;

}

.news-info:hover img {
    transform: scale(1.1);
    transition: transform 0.3s;
}