.banners_on_main {
    background: #FFFFFF;
    overflow: hidden;
    position: relative;
}
.banners {
    padding: 20px 0 20px;
    position: relative;
}
.banners_slider {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    transition: transform 0.5s ease;
}
.banner {
    width: 135px;
    cursor: pointer;
    overflow: hidden;
    transition: box-shadow 0.3s ease-in-out;
    animation: Loading 1s ease-in-out 0.5s both infinite;
    border: 3px solid #1B4DCB;
    border-radius: 8px;
}
.banner:hover {
    box-shadow: 0px 0px 0px 3px #6691FD;
    border: 3px solid #193C94;
}
.banner_image {
    width: 100%;
    height: 135px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}
.banner_image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    transition: all 0.3s ease;
}
.banner:hover .banner_image::before {
    background: rgba(0, 0, 0, 0.3);
}
.banner_text {
    z-index: 1000;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #fff; 
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex-wrap: wrap;
    width: 124px;
    padding: 8px;
    word-break: break-word;
    hyphens: auto;
    transition: background 0.3s ease-in-out;
    backdrop-filter: blur(2px);
    background-color: rgba(255, 255, 255, 0.1);
}
.owl-stage {
    display: flex;
    gap: 38px;
    padding: 6px;
}


.banners_arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 1001;
    pointer-events: none;
}
.arrows_ {
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
}
.arrows_left, 
.arrows_right {
    pointer-events: auto;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}
.arrows_left:hover, 
.arrows_right:hover {
    background: white;
    transform: scale(1.05);
}
.arrows_left svg, 
.arrows_right svg {
    width: 16px;
    height: 24px;
}

.arrows_left img {
transform: rotate(180deg);
}


@media (max-width: 992px) {
.arrows_ {
    display: none;
}
}