/* სლაიდერის ჩარჩოს ზომა */
.news_frame {
    display: block;
    width: 100%;
    height: 450px !important; 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

/* სათაურის სტილი - ქვედა ნაწილში, მუქ გამჭვირვალე ფონზე */
.news_frame_title {
    position: absolute;
    bottom: 0; /* აკრავს ქვედა კიდეს */
    left: 0;
    width: 100%;
    /* მუქი გამჭვირვალე ფონი (შავი 70%-იანი გამჭვირვალობით) */
    background: rgba(0, 0, 0, 0.7); 
    color: #fff;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: bold;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    z-index: 10;
}

/* თუ გინდა, რომ ფონი ქვემოდან ზემოთ ნელ-ნელა გადადიოდეს (Gradient), გამოიყენე ეს: */
/* background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 70%, rgba(0, 0, 0, 0) 100%); */

/* PAGER (წერტილები - რჩება ზედა მარჯვენა კუთხეში) */
.bx-wrapper .bx-pager {
    position: absolute;
    top: 15px !important;
    bottom: auto !important;
    width: auto !important;
    right: 20px !important;
    text-align: right !important;
    z-index: 999;
}