.banner-slider {
    border-radius: 0;
    height: 345px;
    position: relative;
    overflow: hidden;
}

.banner-slides {
    height: 100%;
    position: relative;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 5px;
    box-sizing: border-box;
    display: none;
}

.banner-slide:first-child {
    display: block;
}

.banner-link {
    display: block;
    height: 100%;
    color: white;
    text-decoration: none;
    transition: none !important;
}

.banner-link:hover {
    color: white !important;
    text-decoration: none !important;
    background: transparent !important;
}

.banner-text-content {
    height: 35%;
    padding-bottom: 10px;
}

.banner-title {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 10px;
}

.banner-text {
    font-size: 16px;
    margin-bottom: 5px;
}

.banner-img {
    height: 65%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-img img {
    max-height: 100%;
    max-width: 100%;
}

.banner-dots {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    text-align: center;
}

.dot {
    display: inline-block;
    width: 15px;
    height: 15px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    margin: 0 10px;
    cursor: pointer;
}

.dot.active {
    background: white;
}

/* Мобильная версия */
@media (max-width: 768px) {
    .banner-slider {
        height: 380px;
    }

    .banner-text-content {
        height: 35%;
    }

    .banner-img {
        height: 65%;
    }

    .banner-title {
        font-size: 25px;
    }

    .banner-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .banner-slider {
        height: 365px;
    }

    .banner-slide {
        padding: 5px;
    }

    .banner-text-content {
        height: 35%;
    }

    .banner-img {
        height: 65%;
    }
}