
.main-content{
    position: relative;
}
.main-content:before {
    position: absolute;
    height: 4px;
    width: 100%;
    background: url(../images/img9.jpg) no-repeat center;
    background-size: cover;
    content: "";
    top: 0;
    left: 0;
}
.st1-title{
    font-size: 30px;
    font-weight: 800;
    text-align: center;
    line-height: 50px;
    margin: 0 0 10px;
    padding-bottom: 10px;
    position: relative;
    z-index: 9;
    color: #004da2;
    text-transform: uppercase;
}
.st1-title:before {
    content: "";
    position: absolute;
    width: 50px;
    border-top: 4px solid #004da2;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
}
.st1-heading{
    margin-bottom: 30px;
}
@media(max-width: 991px){
    .st1-heading{
        margin-bottom: 10px;
    }
    .st1-title{
        font-size: 24px;
    }
}
@media(max-width: 767px){
    .st1-title{
        font-size: 18px;
        line-height: 2;
    }
}


/*lay6*/
.lay6-box{
    background-color: #fff;
    border: 1px dashed #004da2;
    margin: 0 0 20px;
    height: 300px;
    overflow: hidden;
    padding: 20px 20px 10px;
    position: relative;
}
.lay6-box.active {
    height: auto;
}
a.btn-show2 {
    display: inline-flex;
    align-items: center;
    column-gap: 5px;
    line-height: 40px;
    color: #fff;
    font-weight: bold;
    padding: 0px 20px;
    border-radius: 20px;
    background: #004da2;
    margin: 0 10px;
}
a.btn-show2:hover {
    opacity: 0.7;
}
/*End lay6*/

/*pager*/
.pager{
    margin: 10px 0 0px;
}
.pager li>a, .pager li>span{
    border-radius: 0;
    margin: 0px 2px 5px;
    border: none;
    background: #004da2;
    padding: 5px 13px;
    color: #fff;
    line-height: 1.5;
}
.pager .active a, .pager .active span, 
.pager .active a:hover, 
.pager .active span:hover, 
.pager li:hover a {
    background: #ea2e22;
}
/*End pager*/

.new-item-inner{
    margin-bottom: 30px;
    display: block;
    position: relative;
    overflow: hidden;
}
.new-item-inner img{
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: all 0.3s;
}
.new-item-text{
    text-align: center;
    width: 100%;
    padding: 15px 10px 5px;
    color: #fff;
    background-image: linear-gradient(90deg, #053469, #004da2);
}
.new-item-inner:hover .new-item-text{
    background-image: linear-gradient(90deg, #004da2, #053469);
}
.new-item-inner:hover img{
    opacity: 0.8;
}
.new-item-name{
    font-size: 16px;
    margin: 0 0 5px;
    font-weight: bold;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 42px;
}
.new-item-text p{
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 42px;
}
@media(max-width: 767px){
    .new-item-name{
        height: initial;
        min-height: initial;
        margin-bottom: 10px;
    }
}