@media screen and (min-width: 768px) {
	select,
	textarea,
	input[type="text"],
	input[type="password"],
	input[type="datetime"],
	input[type="datetime-local"],
	input[type="date"],
	input[type="month"],
	input[type="time"],
	input[type="week"],
	input[type="number"],
	input[type="email"],
	input[type="url"],
	input[type="search"],
	input[type="tel"],
	input[type="color"],
	.inputbox {
		width: 100%;
	}
}

textarea {
	max-width: 100%;
}

.mod-languages {
    position: absolute;
    left: -70px;
    top: 16px;
}

.input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active {
    z-index: 0;
}

.tab-content {
    padding: 0;
    border-top: 0;
    padding-top: 15px;
}

.btn-toolbar .btn-group, .btn-toolbar .input-group {
    float: right;
}

.btn.modal {
    display: inline-block;
}

.breadcrumb > li + li:before {
	padding-right: 0;
}

/* RESPONSIVE SLIDESHOW */

@media screen and (max-width: 767px) {
    .carousel-inner {
        position: relative;
        overflow: hidden;
        width: 100%;
    }

    .carousel-inner .item {
        min-height: 240px;
        overflow: hidden;
    }

    .carousel-inner .item img {
        position: absolute;
        width: auto;
        max-width: none;
        max-height: 240px;
        left: 50%;
        -webkit-transform: translate(-50%);
        -moz-transform: translate(-50%);
        -ms-transform: translate(-50%);
        -o-transform: translate(-50%);
        transform: translate(-50%);
    }

    .carousel-indicators {
        bottom: 20px;
    }

    .carousel-caption {
        padding-bottom: 30px;
    }
}

/* CATEGORIES VIEW */

.filpcontent .categories .category .category-title {
    display: table-cell;
    height: 3.5em;
    vertical-align: middle;
    line-height: 1.2em;
}
.filpcontent .categories .category .category-title a {
	width: 100%;
	text-decoration: none;
}

.filpcontent .categories .category .category-img,
.filpcontent .item-image {
	margin-bottom: 5px;
	position: relative;
	overflow: hidden;
}

.filpcontent .categories .category .category-img:before,
.filpcontent .item-image:before {
	display: block;
	content: "";
	width: 100%;
	padding-top: 56.25%;
}

.filpcontent .categories .category .category-img img,
.filpcontent .item-image img {
	max-width: 100%;
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.filpcontent .row-feature:first-child {
    padding-top: 0;
    padding-bottom: 30px;
}

.filpcontent .item-image {
	margin-bottom: 10px;
}

.filpcontent .categories .category .category-desc {
	margin: 0;
	line-height: 1.5em;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	max-height: 4.5em;
	-webkit-line-clamp: 3; 
	-webkit-box-orient: vertical;
}

.filpcontent .categories .category {
	margin-bottom: 30px;
}

.filpcontent .category .overlay-link {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
}

.filpcontent .category .overlay-link a {
    width: 50px;
    height: 50px;
    /* border-radius: 50%; */
    display: block;
    line-height: 50px;
    text-align: center;
    margin-left: -50%;
    margin-top: -50%;
    font-size: 1.25em;
    background-color: rgba(255,255,255,0.8);
    transform: scale(0.1);
    opacity: 0;
    overflow: hidden;
    color: #444;
    transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
}

.filpcontent .category:hover .overlay-link a {
    transform: scale(1);
    opacity: 1;
}

.filpcontent .category:hover .overlay-link a i.fa{
	vertical-align: middle;
}

.filpcontent .category .category-img:after {
    background-color: #b79d65;
}

.filpcontent .category .category-img:after {
    content: "";
    display: block;
    width: 100%;
    height: calc(100% + 1px);
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
}

.filpcontent .category:hover .category-img:after{
    opacity: 0.5;
}




/*
	ARTICLES HOME
*/

.articles-home .article {
    display: table;
	width: 100%;
    margin-bottom: 20px;
    border-top: 1px solid #bfa876;
    padding-top: 20px;
}

.articles-home .article:first-child {
    border: none;
    padding-top: 0;
}

.articles-home .article .image, 
.articles-home .article .body {
    display: table-cell;
}

.articles-home .article .image {
    width: 180px;
    height: 180px;
}

.articles-home .article .image .image-box {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    /* background: #eee; */
}

.articles-home .article .image img {
    max-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.articles-home .article .body {
    vertical-align: top;
}

@media screen and (min-width: 700px) {
	.articles-home .article.odd .body {
		padding-right: 20px;
	}
}

.articles-home .article.even .body {
    padding-left: 20px;
}

.articles-home .article .body .intro {
    text-align: justify;
    height: 80px;
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.articles-home .article .body h4.heading {
    margin: 0 0 10px;
}

.articles-home .article .body h4.heading > a {
    display: block;
    width: 100%;
    padding: 10px 15px;
    background-color: #0077bb; */
    color:;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    line-height: 20px;
    outline: none;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

.articles-home .article .body h4.heading > a:hover {
    background-color: #444444;
}

.articles-home .article .body .bottom {}

.articles-home .article .body .bottom a.read-more {
    float: right;
    padding: 10px 15px;
    line-height: 20px;
    display: inline-block;
}

.articles-home .article .body .bottom a.read-more {
    text-decoration: none;
    text-transform: uppercase;
    background-color: #0077bb;
    color: #fff;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

.articles-home .article .body .bottom a.read-more:hover {
	background-color: #444444;
}

.articles-home .article .body .bottom a.read-more > i {
    padding-right: 5px;
}

.social-share {
    
}

.social-share a {
    line-height: 20px;
    width: 40px;
    padding: 10px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    background-color: #0077bb;
    color: #fff;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

.social-share a:hover {
    background-color: #444444;
}

.social-share a.share-fb:hover {
    background-color: #3b5998;
}

.social-share a.share-tw:hover {
    background-color: #1dcaff;
}

.social-share a.share-li:hover {
    background-color: #0077b5;
}

.social-share a.share-gp:hover {
    background-color: #d34836;
}

.social-share a.share-vk:hover {
    background-color: #45668e;
}

.social-share a.share-ok:hover {
    background-color: #ed812b;
}


/*
	RESPONSIVE
*/

@media screen and (max-width: 700px) {
    .articles-home .article .image {
        display: block;
        width: 100%;
        height: 250px;
    }

    .articles-home .article {
        display: block;
    }

    .articles-home .article .body {
        display: block;
    }

    .articles-home .article.even .body {
        padding-left: 0;
        margin-top: 10px;
    }

    .articles-home .article .body .bottom a.read-more {
        display: none;
    }

    .social-share a {
        padding: 10px;
        width: 40px;
        margin-bottom: 5px;
    }
}

@media screen and (max-width: 350px) {
	.social-share a {
        padding: 7px;
        width: 34px;
        margin-bottom: 5px;
    }
}

.articles-home .article .image .image-box img {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.articles-home .article .image .image-box:hover img {
    max-height: 120%;
}


/*
	Article Single
*/

.article-single .image {
    width: 50%;
    float: right;
    padding-left: 20px;
    padding-bottom: 20px;
}

.article-single .article {
	margin-bottom: 20px;
}

.article-single .title {
	margin-top: 0; 
    margin-bottom: 40px;
}

@media (max-width: 992px) {
	.article-single .image {
		width: 100%;
		padding: 0;
		margin-bottom: 20px;
		float: none;
	}
	
	.article-single .title {
		font-size: 28px;
	}
}

@media (max-width: 480px) {
	.article-single .title {
		font-size: 22px;
	}
}


/*
	CATEGORY ARTICLES
*/


.articles-list .pagination {
    float: none;
    margin: 0;
    margin-bottom: 10px;
}

.articles-list .pagination .counter {
    float: left;
}

.articles-list .pagination ul.pagination {
    float: right;
}

.articles-list .pagination ul.pagination a {
    margin-bottom: 0;
}



/* HEAD */
/* HEAD */
.head {
    padding-top: 15px;
    padding-bottom: 30px;
    background-color: #eee;
    font-family: 'Arbutus Slab', serif;
}

.head-logo img {
    max-height: 85px;
    max-width: 100%;
    /* padding-top: 15px; */
    /* padding-bottom: 15px; */
    display: block;
    margin: auto;
}

.head .text-1 {
    text-transform: uppercase;
    text-align: center;
    font-family: 'Arbutus Slab', serif;
}

.head .text-2 {
    line-height: 20px;
    margin: 0;
    padding-top: 15px;
    text-align: center;
    font-family: 'Arbutus Slab', serif;
}

.head .text-3 {
    margin-bottom: 0;
    padding-top: 15px;
    text-align: center;
}

.head hr {
	border-color: #888;
}

/* CLOCK */

#clock {
    width: 100%;
    text-align: center;
    padding: 15px;
    margin-bottom: 15px;
    background-color:  #0077bb;
    color: #fff;
}

#clock > .date {
    font-size: 20px;
}

#clock > .time {
    font-size: 40px;
    font-weight: bold;
}

.feed .newsfeed, .feed ul.newsfeed {
    border-top: 0;
}

.module-title {
    margin-top: 30px;
    margin-bottom: 10px;
}