@media (min-width: 991px){
    .container{
        width: 90%;
        margin: 0 auto;
    }
}

@media (min-width: 1199px){
    .container{
        width: 1070px;
        margin: 0 auto;
    }
}

/*
main css
*/
.unitek-blog-filter-wrapper{
    display: flex;
    flex-wrap: wrap;
}
.unitek-blog-filter-area,
.unitek-blog-post-container {
    width: 100%;
}
@media (min-width: 768px){
    .unitek-blog-filter-area {
        width: 24%;
        padding-right: 12px;
    }
    
    .unitek-blog-post-container {
        width: 76%;
        padding-left: 20px;
    }
}


.unitek-cateogry-filter h4 {
    font-size: 16px;
    font-weight: 700;
    color: #555;
    text-align: center;
    margin: 10px 0 15px;
}

ul.unitek-category-list {
    list-style: none !important;
}

ul.unitek-category-list li {
    max-height: 32px;
    padding: 0px 14px 0;
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 32px;
    border-radius: 16px;
    background-color: #F8F8F8;
    cursor: pointer;
    width: 100%;
    color: #555;
    position: relative;
    transition: all 0.3s ease;
}

ul.unitek-category-list li:hover,
ul.unitek-category-list li.active{
    background: #DAF0FD;
}

ul.unitek-category-list li span.filter-times {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    display: none;
}

ul.unitek-category-list li.active span.filter-times {
    display: block;
}

.unitek-cateogry-filter {
    margin-top: 18px;
}

.unitek-blog-post-page-item {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.unitek-blog-post {
    width: 33.33%;
    padding: 0 10px;
    margin-bottom: 20px;
}

.unitek-blog-post-inner{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.unitek-blog-post-inner:hover{
    box-shadow: 0 2px 8px 4px rgba(0,0,0,0.1);
}

.unitek-blog-thumb a {
    display: block;
}

.unitek-blog-thumb img {
    width: 100%;
    display: block;
}

.unitek-blog-desc {
    padding-top: 20px;
}

.unitek-blog-thumb {
    position: relative;
    min-height: 100px;
    background-color: #ededed;
}

.ubf-category-link {
    margin-top: 0;
    margin-bottom: 0;
    position: absolute;
    z-index: 9;
    padding-left: 8px;
	padding-right: 8px;
	padding-top: 4px;
	padding-bottom: 2px;
    background: #074975;
    color: #fff !important;
    font-size: 10px !important;
    line-height: 12px;
    font-weight: 500;
    top: 0;
    left: 0;
    text-transform: uppercase;
    display: block;
    text-decoration: none !important;
}
span.ubf-date {
    color: #555;
    font-size: 14px;
}
.unitek-blog-link-area {
    display: flex;
    justify-content: space-between;
}
h2.unitek-blog-title {
    font-size: 16px !important;
    font-weight: 700;
    margin-bottom: 15px;
}

h2.unitek-blog-title a {
    display: block;
    text-decoration: none !important;
    color: #555;
	font-size: 16px !important;
}

a.unitek-read-more {
    display: inline-block;
    border-color: transparent;
    background-color: transparent;
    padding: 0;
    font-weight: 400;
    font-size: 14px;
    color: #8BD;
    line-height: 22px;
    text-transform: initial !important;
    text-decoration: none;
    position: relative;
}

a.unitek-read-more::before{
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: #8BD;
    transition: all 0.3s ease;
    transform: scale(0);
    position: absolute;
    bottom: 0;
    left: 0;

}

a.unitek-read-more:hover::before{
    transform: scale(1);
}


/*
* Loader content
*/
.ubf-loader-thum {
    height: 180px;
}

.ubf-loader-content {
    height: 60px;
    margin-top: 15px;
    margin-bottom: 20px;
}

.ubf-loader-btn {
    height: 15px;
    width: 100px;
}

.ubf-loader-animation{
    animation-name: loader;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

@keyframes loader {
    0%   {background-color: #ededed;}
    50%  {background-color: #dddddd;}
    100% {background-color: #ededed;}
  }



/*
    New css file for responsive
*/
.ufb-no-post-found {
    margin-top: 50px;
    background: #F8F8F8;
    padding-left: 30px;
    margin-left: 20px;
    padding-top: 25px;
    padding-bottom: 12px;
    border-radius: 6px;
}

.ufb-no-post-found h2 {
    font-size: 24px !important;
}
@media (max-width: 767px){

    .unitek-filter-head {
        padding: 15px 20px;
        position: relative;
        cursor: pointer;
    }
    
    .unitek-cateogry-filter h4 {
        text-align: left;
        margin: 0;
        margin-left: 30px;
    }
    
    span.filter-accordion-icon {
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        display: block;
        width: 20px;
        height: 20px;
        border: 1px solid #666;
        border-radius: 50%;
    }
    
    span.filter-accordion-icon:after {
        content: '';
        display: block;
        width: 10px;
        height: 1px;
        background: #666;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    span.filter-accordion-icon:before {
        content: '';
        display: block;
        width: 10px;
        height: 1px;
        background: #666;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(90deg);
    }

    .unitek-filter-head.active-filter-head span.filter-accordion-icon:before{
        display: none;
    }

    .unitek-blog-filter-area {
        margin-bottom: 40px;
    }

    ul.unitek-category-list li span.filter-times {
        display: inline-block;
        width: 18px;
        height: 18px;
        vertical-align: text-top;
        border-width: 1px;
        border-style: solid;
        border-color: #D9D9D9;
        border-radius: 3px;
        background-color: #fff;
        transition: all .2s ease 0s;
        font-size: 0;
        left: 0;
        top: 6px;
    }
    
    ul.unitek-category-list li {
        background: transparent;
        padding: 0 0 0 25px;
        line-height: 1;
        margin-bottom: 23px;
    }
    
    ul.unitek-category-list li:hover, ul.unitek-category-list li.active {
        background: transparent;
    }
    
    ul.unitek-category-list li.active span.filter-times {
        background: #DAF0FD;
    }
    
    ul.unitek-category-list li.active span.filter-times::after {
        content: '\2713';
        display: block;
        position: absolute;
        top: 2px;
        left: 6px;
        width: 3px;
        height: 8px;
        border-right: 1px solid #000;
        border-bottom: 1px solid #000;
        transform: rotate(45deg);
    }

    .unitek-cateogry-filter {
        padding-top: 10px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .unitek-blog-post{
        width: 50%;
    }

    ul.unitek-category-list{
        transition: all 0.3s ease;
        max-height: 0;
        overflow: hidden;
        padding: 0 20px;
    }

    .unitek-category-list.active-filter-accordion{
        max-height: 400px;
        padding: 10px 20px;
    }
}

@media (max-width: 486px){
    .unitek-blog-post{
        width: 100%;
    }

    .unitek-blog-post-page-item{
        margin: 0;
    }
}

.uds-news-list-wrap {
    display: flex;
    flex-wrap: wrap;
	margin: 0 -15px;
}

article.uds-news-post {
    width: 33%;
    padding: 0 15px;
    margin-bottom: 30px;
}

.uds-news-contnet-wrap {
    box-shadow: 4px 4px 20px rgba(0,0,0, 0.15);
    height: 100%;
}

.uds-news-info {
    padding: 15px;
}

.uds-read-more-area {
    padding: 0 15px 15px;
}

ul.uds-news-meta {
    display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
}
ul.uds-news-meta li{
	margin-left: 0
}

ul.uds-news-meta li:first-child{
	margin-right: 10px
}

@media screen and (max-width: 768px) {
	article.uds-news-post {
		width: 50%;
	}
}
@media screen and (max-width: 600px) {
	article.uds-news-post {
		width: 100%;
	}
}

/* UDS Videos List */
.uds-video-embed {
    max-width: 400px;
}
.uds-video-list-continer {
    margin-bottom: 5px;
}
a.und-video-popup {
    transition: opacity .4s ease-in-out;
}
a.und-video-popup:before {
	content: '\E897';
    font-family: entypo-fontello;
	position: absolute;
    border-radius: 50px;
    background: #000;
    height: 80px;
    width: 80px;
	left: 50%;
	top: 50%;
    line-height: 80px;
    z-index: 500;
    text-align: center;
	background-color: #074975;
	opacity: 80%;
    color: #fff;
    border: 1px solid #fff;
	transform: translate(-50%, -50%);
}
a.und-video-popup .image-overlay.overlay-type-video .image-overlay-inside:before {
	display: none !important;
}
.uds-video-list-wrap {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
	margin-right: -15px;
}
.uds-video-item {
    padding-left: 15px;
	padding-right: 15px;
    width: 33%;
	position: relative;
	margin-bottom: 20px;
}

@media screen and (max-width: 991px) {
	.uds-video-item{
		width: 50%;
	}
}

@media screen and (max-width: 768px) {
	.uds-video-item {
		width: 100%;
		padding: 0;
	}
	.uds-video-embed {
		max-width: 100%;
		max-height: 100%;
	}
	a.und-video-popup {
		min-height: 390px !important;
	}
	
	.uds-video-list-wrap{
		margin: 0
	}
}
.uds-video-embed h3 {
    padding-top: 8px;
}
.uds-video-embed h3 a {
    text-decoration: none !important;
	font-size: 18px;
}
a.und-video-popup {
    display: block;
    min-height: 225px;
    position: relative;
    z-index: 1;
}
a.und-video-popup.mfp-iframe:after {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #000;
    content: "";
    opacity: .5;
}
a.und-video-popup{
	background-size: cover
}
a.und-video-popup > img{
	opacity: 0;
}
.uds-video-list-wrap a .image-overlay{
	height: 100% !important
}

/* UDS Load More */
.uds-loadmore-wrap {
  text-align: center;
}

a.uds-loadmore {
  display: inline-block;
  text-decoration: none !important;
  border: 1px solid;
  padding: 7px 25px;
  padding-top: 12px;
  border-radius: 5px;
  border-color: #074975 !important;
  font-size: 17px;
  line-height: 27px;

}

/* Eagle college news page */
.eagle-news-nav-wrap {
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}
.eagle-news-nav-wrap p {
    display: flex;
		justify-content: center;
}
.eagle-news-nav-wrap p a {
    padding: 0px 20px;
}
.eagle-news-nav-wrap p a:link {
    text-decoration: none !important;
}
.eagle-news-nav-wrap p a:first-child {
    border-right: 1px solid #ccc;
}
.uds-video-list,
.uds-news-list{
    padding-top: 25px;
}
.uds-news-list h2,
.uds-video-list h2 {
	line-height: 60px !important;
}
.news-post-read-time {
    font-size: 12px !important;
	color: #414042;
}

#news-submenu-section.active-submenu-sticky{
	position: fixed;
	z-index: 9999
}


#top #news-submenu-section.sticky {
    position: fixed;
    top: 123px;
    width: 100%;
    z-index: 999;
    left: 0;
    right: 0;
    overflow: auto;
}

#top.admin-bar #news-submenu-section.sticky {
    top: 155px;
}

/* #top #news-submenu-section ul.page-submenu{
    background: #074975;
    max-width: 1180px !important;
    margin: 0 auto !important;
} */

#top #news-submenu-section{
	background-color: none !important;
}

.uds-news-thumb img {
    height: 212px;
    object-fit: cover;
    object-position: top;
    width: 100%;
}

@media (max-width: 1099px){
	#top.admin-bar #news-submenu-section.sticky {
		top: 84px;
	}
	
	#top #news-submenu-section.sticky{
		top: 54px
	}
}


@media (max-width: 767px){
	.responsive #top #news-submenu-section.page-submenu-wrap {
		display: block !important;
	}
	
	#top.admin-bar #news-submenu-section.sticky {
		top: 100px;
	}
}

@media (max-width: 600px){
	#top.admin-bar #news-submenu-section.sticky {
		top: 54px;
	}
}