﻿/* Update custom css - 2020/02/19 */

/* Jobs area */
.ellipsis {
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.block-ellipsis {
	display: block;
	display: -webkit-box;
	max-width: 100%;
	height: 65px;
	margin: 0 auto;
	font-size: 14px;
	line-height: 1.2;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.thumb {
	background-color: transparent;
	background-image: none;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	display: flex;
	align-items: center;
	padding: 20px 0px;
}

	.thumb a {
		height: 100% !important;
	}

.img-hover-zoom--slowmo {
	overflow: hidden;
}

	.img-hover-zoom--slowmo div.img-cover {
		height: 180px;
		transition: transform .5s, filter 1.5s ease-in-out;
	}

	/* The Transformation */
	.img-hover-zoom--slowmo:hover div.img-cover {
		transform: scale(1.1);
	}

/* Right nav menu */
.fixed-plugin {
	position: fixed;
	top: 150px;
	right: 0;
	width: 64px;
	z-index: 1031;
}

	.fixed-plugin .right-menu-button,
	.fixed-plugin .right-menu {
		position: fixed;
		right: 0;
		border-radius: 5px 0 0 5px;
		-moz-transition: all 500ms ease;
		-webkit-transition: all 500ms ease;
		-o-transition: all 500ms ease;
		-ms-transition: all 500ms ease;
		transition: all 500ms ease;
	}

.right-menu-button {
	background: rgba(0,0,0,.3);
	color: #f8f9fa !important;
	padding: 8px 12px;
	opacity: 1;
}

.right-menu {
	width: 175px;
	padding-top: 10px;
	padding-bottom: 10px;
	/*background: rgba(21,16,101,.5);*/
	background: rgba(0,0,0,.3);
	transform: translateX(100%);
}

	.right-menu li {
		list-style: none;
		padding: 5px 0px;
		width: 100%;
	}

	.right-menu a {
		color: #fff;
		padding: 10px;
		display: inline-flex;
		font-size: 15px;
		width: 100%;
	}

		.right-menu a:hover {
			background: rgba(0, 6, 16, .4);
		}

	.right-menu span {
		margin: 0px 15px 0px 10px;
		font-size: 22px;
	}

.fixed-plugin:hover .right-menu {
	/*opacity: 1;*/
	transform: translateX(0);
}

.fixed-plugin:hover .right-menu-button {
	/*opacity: 0;*/
	transform: translateX(100%);
}

@media(max-width: 767px) {
	.fixed-plugin {
		display: none;
	}
}

/*==========================================================*/
/* BUTTON ==================================================*/
/*==========================================================*/
.btn {
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 1px;
	text-align: center;
	padding: 12px 20px;
	border-radius: 5px;
	cursor: pointer;
	white-space: nowrap;
	line-height: 1;
	vertical-align: middle;
	position: relative;
	z-index: 1;
	border: 0;
	overflow: hidden;
	margin: 0;
	display: inline-block;
	font-family: 'Montserrat','Barlow', sans-serif;
}

.btn-xl {
	padding: 20px 48px !important;
}

.btn-sm {
	padding: 8px 16px !important;
}

.btn-xs {
	padding: 5px 12px !important;
}

.btn-upper {
	text-transform: uppercase;
	letter-spacing: 1px;
}

.btn-primary, .btn-primary--outline {
	color: #fff;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

	.btn-primary:hover,
	.btn-primary:focus {
		background-color: #f5f5f5;
	}

.btn-primary--outline {
	background-color: #f5f5f5;
	color: #ff8449;
	border: 1px solid #ff8449;
}

	.btn-primary--outline:hover,
	.btn-primary--outline:focus {
		color: #fff;
		background-color: #ff8449;
	}


.btn-bounce {
	background: #ff8449;
	color: #fff;
}

.btn-bounce--outline {
	background: #f5f5f5;
	color: #e0581e;
	border: 1px solid #e0581e;
}

	.btn-bounce:hover,
	.btn-bounce--outline:hover {
		color: #fff;
	}

	.btn-bounce::before,
	.btn-bounce--outline::before {
		content: "";
		background: #e0581e;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		transition: transform 1s cubic-bezier(0.5, 1.6, 0.4, 0.7);
		transform-origin: 0 0;
		transform: scaleX(0);
		position: absolute;
		z-index: -1;
	}

	.btn-bounce:hover::before,
	.btn-bounce--outline:hover::before {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
		z-index: -1;
	}

.btn-danger-fade {
	background: #f5f5f5;
	color: #e0581e;
	border: 1px solid #e0581e;
	transition: all 0.3s ease-in-out;
}

	.btn-danger-fade:hover {
		color: #fff;
		background: #e0581e;
	}

/*==========================================================*/
/* IMAGE COVER =============================================*/
/*==========================================================*/
.hlo-block-cover--vertical {
	overflow: hidden;
	margin-bottom: 12px;
}

	.hlo-block-cover--vertical div {
		height: 180px;
	}

.hlo-block-cover--horizal {
	overflow: hidden;
}

	.hlo-block-cover--horizal div {
		width: 9999px;
		max-width: 100%;
		height: 150px;
	}

	.hlo-block-cover--vertical div,
	.hlo-block-cover--horizal div {
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center center;
	}

.zoom-in-animated {
	transition: all .3s ease-in-out;
}

	.zoom-in-animated:hover {
		transform: scale(1.1);
	}



/*==========================================================*/
/* POPOVER =================================================*/
/*==========================================================*/
.animated {
	animation-duration: 1s;
	animation-fill-mode: both;
	-webkit-animation-duration: 1s;
	-webkit-animation-fill-mode: both;
}
.popover-mini {
	font-family: 'Montserrat', sans-serif !important;
	position: absolute;
	left: 0;
	top: -17px;
	background-color: #3f3f3f;
	color: #fff;
	font-weight: 700;
	font-size: 13px;
	padding: 0 15px;
	line-height: 30px;
	min-height: 0;
	min-width: 0;
	z-index: 100;
	cursor: default;
	border-radius: 30px;
	box-shadow: 0px 2px 5px 1px rgb(0 0 0 / 20%);
	border: 2px solid #fff;
	white-space: nowrap;
}

	.popover-mini:before {
		content: "";
		position: absolute;
		bottom: -7px;
		left: 50%;
		margin-left: -9px;
		width: 0;
		height: 0;
		box-sizing: border-box;
		border: 5px solid #000;
		border-color: transparent transparent #47c9e5 #47c9e5;
		-webkit-transform-origin: 0 0;
		-ms-transform-origin: 0 0;
		transform-origin: 0 0;
		-webkit-transform: rotate( -45deg );
		-ms-transform: rotate(-45deg);
		transform: rotate( -45deg );
		z-index: 10;
	}
	.popover-mini:after {
		content: "";
		position: absolute;
		bottom: -10px;
		left: 50%;
		margin-left: -9px;
		width: 0;
		height: 0;
		box-sizing: border-box;
		border: 5px solid #000;
		border-color: transparent transparent #fff #fff;
		-webkit-transform-origin: 0 0;
		-ms-transform-origin: 0 0;
		transform-origin: 0 0;
		-webkit-transform: rotate( -45deg );
		-ms-transform: rotate(-45deg);
		transform: rotate( -45deg );
		box-shadow: -5px 4px 5px -2px rgb(0 0 0 / 15%);
		z-index: 5;
	}

	.popover-mini:not(.popover-mini-dark) {
		background-color: #ff8449;
	}

		.popover-mini:not(.popover-mini-dark):before {
			border-color: transparent transparent #ff8449 #ff8449 !important;
		}


/*==========================================================*/
/* PAGING ==================================================*/
/*==========================================================*/
.paging-default-color {
	color: #8d8d8d !important;
	text-align: center;
}

	.paging-default-color a {
		color: #8d8d8d !important;
		text-decoration: none;
	}

		.paging-default-color a:hover {
			color: #ff8449 !important;
			border: solid 1px #ff8449;
			border-radius: 30px;
		}

ul.page-numbers {
	display: inline-flex;
	margin: 0 auto;
	list-style: none;
	background-color: #fff;
	/*background-color: #f1d7cc;*/
	padding: 5px 4px;
	border-radius: 30px;
	border: solid 1px #ffe4c4;
	margin-bottom: 30px;
}

	ul.page-numbers li {
		display: block;
		float: left;
		margin: 0 2px;
		text-align: center;
	}

	ul.page-numbers .current {
		/*background-color: #294cfe !important;*/
		background-color: #ff8449 !important;
		color: #fff;
		border-radius: 30px;
		font-weight: 700;
	}

	ul.page-numbers span {
		display: block;
		width: 40px;
		height: 40px;
		line-height: 40px;
		font-weight: 400;
		cursor: pointer;
		padding: 0;
	}

	ul.page-numbers a {
		display: block;
		width: 40px;
		height: 40px;
		line-height: 40px;
		font-weight: 600;
		cursor: pointer;
		padding: 0;
	}