@charset "utf-8";

/* 2. General Settings */

* {
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
	text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}

html,
body {
	height: 100%;
}

body {
	font-size: 14px;
	font-weight: 400;
	background: #fff;
	color: #2b2e35;
	display: flex;
	flex-direction: column;
	font-family: sans-serif;
}

.preload-transition * {
	webkit-transition: none !important;
	-moz-transition: none !important;
	-ms-transition: none !important;
	-o-transition: none !important;
	transition: none !important;
}

.sticky-content {
	flex: 1 0 auto;
}

.fonts-loaded {
	font-family: 'Montserrat', sans-serif;
}

div {
	display: block;
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

ul {
	list-style: none;
	margin-bottom: 0px;
}

p {
	font-size: 14px;
	line-height: 2.15;
	font-weight: 500;
	color: #a2b0bf;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
	text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
	hyphens: auto; 
	-webkit-hyphens: auto; 
	-moz-hyphens: auto; 
	-ms-hyphens: auto;
}

.fonts-loaded p {
	font-family: 'Montserrat', sans-serif;
}

p a {
	display: inline;
	position: relative;
	color: inherit;
	border: none;
}

p:last-of-type {
	margin-bottom: 0;
}

a {
	-webkit-transition: color 400ms ease;
	-moz-transition: color 400ms ease;
	-ms-transition: color 400ms ease;
	-o-transition: color 400ms ease;
	transition: color 400ms ease;
}

a,
a:hover,
a:visited,
a:active,
a:link {
	text-decoration: none;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
	text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}

p a:active {
	position: relative;
	color: #3f8fa6;
}

p a:hover {
	color: #FFFFFF;
	background: none;
}

p a:hover::after {
	opacity: 0.2;
}

::selection {
	background: #4fb4d0;
	color: #ffffff;
}

p::selection {}

h1 {
	font-size: 48px;
	color: #2b2e35;
}

h2 {
	font-size: 36px;
	color: #2b2e35;
}

h3 {
	font-size: 24px;
	color: #fff;
}

h4 {
	font-size: 24px;
	color: #2b2e35;
	letter-spacing: -10;
	font-weight: 400;
}

h5 {
	font-size: 14px;
	color: #2b2e35;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
	text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
	line-height: 1.2;
}

.fonts-loaded h1,
.fonts-loaded h2,
.fonts-loaded h3,
.fonts-loaded h4,
.fonts-loaded h5,
.fonts-loaded h6 {
	font-family: 'Montserrat', sans-serif;
}

img {
	max-width: 100%;
}

section {
	display: block;
	position: relative;
	box-sizing: border-box;
}

.mobile-menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	z-index: 101;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 400ms ease;
	-moz-transition: all 400ms ease;
	-ms-transition: all 400ms ease;
	-o-transition: all 400ms ease;
	transition: all 400ms ease;
	display: none;
}

.mobile-menu-overlay.active {
	opacity: 1;
	visibility: visible;
}

#smoothScrollToTopButton {
	display: none;
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 99;
	font-size: 18px;
	border: none;
	outline: none;
	background-color: rgba(79, 180, 208, 0.8);
	color: white;
	cursor: pointer;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	line-height: 60px;
	-webkit-animation: fadeInFromNone 1s ease-in;
	-moz-animation: fadeInFromNone 1s ease-in;
	-ms-animation: fadeInFromNone 1s ease-in;
	-o-animation: fadeInFromNone 1s ease-in;
	animation: fadeInFromNone 1s ease-in;
	-webkit-transition: all 400ms ease-in-out;
	-moz-transition: all 400ms ease-in-out;
	-ms-transition: all 400ms ease-in-out;
	-o-transition: all 400ms ease-in-out;
	transition: all 400ms ease-in-out;
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}

#smoothScrollToTopButton:hover {
	background-color: rgba(89, 89, 89, 0.8);
	box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 7px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -1px rgba(0, 0, 0, 0.2);
}

#smoothScrollToTopButton i {
	font-size: 44px;
	line-height: 53px;
	width: inherit;
	display: inline-block;
	text-align: center;
	color: #fff;
}

@-webkit-keyframes fadeInFromNone {
	0% {
		display: none;
		opacity: 0;
	}
	1% {
		display: block;
		opacity: 0;
	}
	100% {
		display: block;
		opacity: 1;
	}
}

@-moz-keyframes fadeInFromNone {
	0% {
		display: none;
		opacity: 0;
	}
	1% {
		display: block;
		opacity: 0;
	}
	100% {
		display: block;
		opacity: 1;
	}
}

@-ms-keyframes fadeInFromNone {
	0% {
		display: none;
		opacity: 0;
	}
	1% {
		display: block;
		opacity: 0;
	}
	100% {
		display: block;
		opacity: 1;
	}
}

@-o-keyframes fadeInFromNone {
	0% {
		display: none;
		opacity: 0;
	}
	1% {
		display: block;
		opacity: 0;
	}
	100% {
		display: block;
		opacity: 1;
	}
}

@keyframes fadeInFromNone {
	0% {
		display: none;
		opacity: 0;
	}
	1% {
		display: block;
		opacity: 0;
	}
	100% {
		display: block;
		opacity: 1;
	}
}

/* 3. Header */

.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: #ffffff;
	z-index: 100;
	-webkit-transition: all 600ms ease;
	-moz-transition: all 600ms ease;
	-ms-transition: all 600ms ease;
	-o-transition: all 600ms ease;
	transition: all 600ms ease;
}

.header.scrolled {
	top: -55px;
	box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.085);
}

.header-bar {
	width: 100%;
	height: 55px;
	background: #595959;
	padding-left: 64px;
	padding-right: 62px;
}

.header-bar-elements ul li:not(:last-of-type) {
	margin-right: 49px;
}

.header-bar-elements ul li>div {
	width: 23px;
	height: 23px;
}

.header-bar-elements ul li>div>img {
	max-height: 100%;
	max-width: 100%;
	vertical-align: unset;
}

.header-bar-elements ul li span {
	font-size: 14px;
	font-weight: 500;
	color: #ffffff;
	margin-left: 13px;
}

.header-mailto {
	color: #fff;
}

.header-mailto:hover {
	color: #b3b3b3;
}

.social-span {
	font-size: 14px;
	font-weight: 500;
	color: #ffffff;
	margin-left: 13px;
	margin-right: 20px;
}

.social ul li {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #4fb4d0;
	text-align: center;	
}

.social ul li:not(:last-of-type) {
	margin-right: 13px;
}

.social ul li a {
	display: block;
	height: 100%;
	line-height: 32px;
}

.social p {
	color: #a6a6a6;
	font-size: 14px;
	font-weight: 600;
}

.fonts-loaded .social p {
	font-family: "Poppins", sans-serif;
}

.social ul li a i {
	font-size: 14px;
	color: #ffffff;
}

.social ul li:hover {
	-webkit-transition: all 100ms ease-in-out;
	-moz-transition: all 100ms ease-in-out;
	-ms-transition: all 100ms ease-in-out;
	-o-transition: all 100ms ease-in-out;
	transition: all 100ms ease-in-out;
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}

.social-facebook {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #4fb4d0;
	text-align: center;
}

.social-facebook a {
	display: block;
	height: 100%;
	line-height: 32px;
}

.social-facebook a i {
	font-size: 14px;
	color: #ffffff;
}

.social-facebook:hover {
	-webkit-transition: all 100ms ease-in-out;
	-moz-transition: all 100ms ease-in-out;
	-ms-transition: all 100ms ease-in-out;
	-o-transition: all 100ms ease-in-out;
	transition: all 100ms ease-in-out;
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}

.header-content {
	width: 100%;
	height: 61px;
	background: #ffffff;
	padding-left: 40px;
}

.header-logo a {
	font-size: 20px;
	color: #6c7079;
	font-weight: 600;
}

.fonts-loaded .header-logo a {
	font-family: 'Titillium Web', sans-serif;
}

.header-logo a span {
	color: rgba(246, 36, 36, 1);
}

.main-nav {
	height: 100%;
	margin-left: 40px;
}

.main-nav ul {
	height: 100%;
}

.main-nav ul li {
	position: relative;
	height: 100%;
	-webkit-transition: background 400ms ease;
	-moz-transition: background 400ms ease;
	-ms-transition: background 400ms ease;
	-o-transition: background 400ms ease;
	transition: background 400ms ease;
}

.main-nav ul li:not(:last-of-type) {
	margin-right: 26px;
}

.main-nav ul li.active,
.main-nav ul li:hover {
	background: #4fb4d0;
}

.main-nav ul li a {
	display: block;
	height: 100%;
	line-height: 61px;
	padding-left: 13px;
	padding-right: 13px;
	font-size: 16px;
	font-weight: 500;
	color: #2b2e35;
}

.main-nav ul li.active a {
	color: #ffffff;
}

.main-nav ul li a:hover {
	color: #ffffff;
}

.mobile-menu-bars {
	display: none;
	cursor: pointer;
}

.mobile-menu-bars i {
	font-size: 24px;
	color: #2b2e35;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

.mobile-menu-bars:hover i {
	color: #4fb4d0;
}

/* 4. Menu */

.mobile-menu {
	position: fixed;
	top: 0;
	right: -370px;
	width: 370px;
	height: 100vh;
	z-index: 102;
	background: #ffffff;
	padding-right: 30px;
	padding-top: 100px;
	-webkit-transition: all 400ms ease;
	-moz-transition: all 400ms ease;
	-ms-transition: all 400ms ease;
	-o-transition: all 400ms ease;
	transition: all 400ms ease;
}

.mobile-menu.active {
	right: 0;
}

.mobile-menu-close {
	position: absolute;
	top: 30px;
	right: 25px;
	padding: 5px;
	cursor: pointer;
}

.mobile-menu-close i {
	font-size: 20px;
	color: #2b2e35;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

.mobile-menu-close:hover i {
	color: #4fb4d0;
}

.mobile-menu-inner {
	display: inline-block;
}

.mobile-menu-nav {
	margin-top: 0px;
}

.mobile-menu-nav ul li:not(:last-of-type) {
	margin-bottom: 2px;
}

.mobile-menu-nav ul li a {
	font-size: 20px;
	color: #2b2e35;
	font-weight: 400;
}

.fonts-loaded .mobile-menu-nav ul li a {
	font-family: "Poppins", sans-serif;
}

.mobile-menu-nav ul li a:hover {
	color: #4fb4d0;
}

.mobile-menu-nav ul li.active a {
	color: #4fb4d0;
}

/* 5. Banner Area */

.banner-area {
	height: 356px;
}

.banner-area-content {
	padding-top: 192px;
}

.banner-area-title h3 {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 10px;
	color: #d9d9d9;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
}

.fonts-loaded .banner-area-title h3 {
	font-family: "Poppins", sans-serif;
}

.banner-area-title h4 {
	font-size: 48px;
	font-weight: 600;
	color: #fff;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
}

.fonts-loaded .banner-area-title h4 {
	font-family: "Poppins", sans-serif;
}

/* 6. News Area */

.news-area {
	padding-top: 90px;
	padding-bottom: 90px;
	background: #d4d4d9;
	height: 100%;
}

.news-post-area {
	border: 1px solid #e6e6e6;
	padding: 20px 20px 40px 20px;
	background: #f2f2f2;
	box-shadow: 0px 5px 14px rgba(0, 0, 0, 0.25);
}

.fonts-loaded .news-post-area {
	font-family: "Poppins", sans-serif;
}

.news-post-area:not(:last-child) {
	margin-bottom: 40px;
}

.news-post-area-date {
	position: absolute;
	top: 10px;
	left: 25px;
	width: 65px;
	height: 85px;
	background: rgba(79, 180, 208, 0.7);
}

.news-post-area-date>div:first-of-type {
	font-size: 36px;
	font-weight: 500;
	color: #ffffff;
	line-height: 0.75;
}

.news-post-area-date>div:last-of-type {
	font-size: 14px;
	font-weight: 500;
	color: #ffffff;
	line-height: 0.75;
	margin-top: 13px;
}

.news-post-area-content {
	padding-top: 0px;
}

.news-post-area-row {
	margin-top: 20px;
}

.news-post-area-title a h3 {
	font-size: 30px;
	font-weight: 500;
	color: #222222;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.news-post-area-title a h3:hover {
	color: #3f8fa6;
}

.fonts-loaded .news-post-area-title a h3 {
	font-family: "Poppins", sans-serif;
}

.news-post-area-info {
	margin-top: 2px;
}

.news-post-area-info ul li {
	font-size: 14px;
	color: #a2b0bf;
	font-weight: 500;
}

.news-post-area-info i {
	margin-right: 5px;
}

.news-post-area-info .news-post-area-info-separator {
	margin-left: 12px;
	margin-right: 12px;
}

.news-post-area-info .news-post-area-info-category {
	padding-right: 3px;
}

.news-post-area-info>ul>li:not(:last-of-type) a {
	color: #4fb4d0;
}

.news-post-area-info>ul>li:not(:last-of-type) a:hover {
	color: #3f8fa6;
}

.news-post-area-info>ul>li>ul>li:not(:last-of-type)::after {
	display: inline-block;
	content: ',';
	margin-right: 5px;
}

.news-post-area-info>ul>li>ul>li a {
	color: #a2b0bf;
}

.news-post-area-info>ul>li>ul>li a:hover {
	color: #4fb4d0;
}

.news-post-area-info>ul>li>ul {
	flex-wrap: wrap;
}

.news-post-area-text {
	margin-top: 0px;
	text-align: justify;
}

/* 7. Sidebar */

.sidebar {
	background: #e6e6e6;
	padding: 0px;
	border: 1px solid #cccccc;
	box-shadow: 0px 3px 9px rgba(0, 0, 0, 0.25);
}

.sidebar-search {
	padding-top: 20px;
	padding-right: 20px;
	padding-left: 20px;
}

.sidebar-search-form {
	display: block;
	position: relative;
}

.clear-all-filters {
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
}

.sidebar-search p {
	color: #808080;
}

.fonts-loaded .sidebar {
	font-family: "Poppins", sans-serif;
}

.card-header h5 {
	font-size: 18px;
	line-height: 50px;
	color: #808080;
	-webkit-transition: all 400ms ease-in-out;
	-moz-transition: all 400ms ease-in-out;
	-ms-transition: all 400ms ease-in-out;
	-o-transition: all 400ms ease-in-out;
	transition: all 400ms ease-in-out;
}

.card-header h5:hover {
	color: #999999;
}

.fonts-loaded .card-header h5 {
	font-family: "Titillium Web", sans-serif;
}

.sort-combobox {
	margin-top: 10px;
	cursor: pointer;
	width: 100%;
	padding-right: 20px;
	padding-left: 20px;
}

.sort-combobox p {
	color: #808080;
}

.form-control.search-in-stats {
	border-radius: 0px;
	width: 100%;
	height: 40px;
	background: #f2f2f2;
	font-size: 14px;
}

.fonts-loaded .form-control.search-in-stats {
	font-family: "Titillium Web", sans-serif;
}

.sidebar-search-input {
	width: 100%;
	height: 40px;
	background: #f2f2f2;
	border: solid 1px #ced4da;
	outline: none;
	padding-left: 17px;
	font-size: 14px;
	color: #4a5057;
	font-weight: normal;
}

.fonts-loaded .sidebar-search-input {
	font-family: "Titillium Web", sans-serif;
}

.sidebar-horizontal-separator {
	margin-top: 10px;
	margin-right: 20px;
	margin-left: 20px;
}

.sidebar-horizontal-separator-categories {
	margin-top: 20px;
	margin-right: 20px;
	margin-left: 20px;
	margin-bottom: 10px;
}

.sidebar-horizontal-separator-tags {
	margin-top: 10px;
	margin-right: 20px;
	margin-left: 20px;
	margin-bottom: 10px;
}

.sidebar-clear-button {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 12px;
	background: transparent;
	border: none;
	outline: none;
	cursor: pointer;
}

.sidebar-clear-button:active,
.sidebar-clear-button:focus {
	outline: 0;
	border: none;
	-moz-outline-style: none;
}

.categories {
	margin-top: 20px;
}

.sidebar-archive {
	margin-top: 15px;
}

.sidebar-archive ul {
	list-style-type: disc;
}

.sidebar-archive ul li {
	margin-left: 16px;
}

.sidebar-archive ul li:not(:last-of-type) {
	margin-bottom: 15px;
}

.sidebar-archive ul li a {
	font-size: 14px;
	font-weight: 500;
	color: #868b96;
}

.sidebar-archive ul li a:hover {
	color: #4fb4d0;
}

.sidebar-search-form:focus {
	outline: none;
}

.sidebar-categories {
	margin-top: 0px;
}

.sidebar-categories ul {
	width: calc(100% + 10px);
	margin-top: 15px;
}

.sidebar-categories ul li {
	height: 30px;
	background: #f2f2f2;
	text-align: center;
	margin-bottom: 10px;
	box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.25);
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

.sidebar-categories ul li:not(:last-of-type) {
	margin-right: 10px;
}

.sidebar-categories ul li:hover {
	background: rgba(79, 180, 208, 0.7);
}

.sidebar-categories ul li a {
	display: block;
	height: 100%;
	padding-left: 17px;
	padding-right: 17px;
	line-height: 32px;
	font-size: 12px;
	font-weight: 500;
	color: #727680;
}

.sidebar-categories ul li:hover a {
	color: #fff;
}

.sidebar-authors {
	margin-top: 0px;
}

.sidebar-authors ul {
	width: calc(100% + 10px);
	margin-top: 15px;
}

.sidebar-authors ul li {
	height: 30px;
	background: #f2f2f2;
	text-align: center;
	margin-bottom: 10px;
	box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.25);
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

.sidebar-authors ul li:not(:last-of-type) {
	margin-right: 10px;
}

.sidebar-authors ul li:hover {
	background: rgba(79, 180, 208, 0.7);
}

.sidebar-authors ul li a {
	display: block;
	height: 100%;
	padding-left: 17px;
	padding-right: 17px;
	line-height: 32px;
	font-size: 12px;
	font-weight: 500;
	color: #727680;
}

.sidebar-authors ul li:hover a {
	color: #fff;
}

.sidebar-filters-clear-button {
	border-radius: 0px;
	width: 100%;
	height: 40px;
	border: solid 1px #ced4da;
	color: #4a5057;
	background-color: #f2f2f2;
	font-weight: normal;
	box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.15);
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	-ms-transition: all 300ms ease-in-out;
	-o-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
	font-size: 14px;
}

.fonts-loaded .sidebar-filters-clear-button {
	font-family: "Titillium Web", sans-serif;
}

.sidebar-filters-clear-button:focus,
.sidebar-filters-clear-button:active,
.sidebar-filters-clear-button.active {
	outline: 0;
}

.sidebar-filters-clear-button:hover {
	color: #77818c;
	background-color: #d9d9d9;
	border-color: #b5babf;
}

#accordionCategoriesCollapse .card-body {
	background: #e6e6e6;
	padding-right: 20px;
	padding-left: 20px;
	margin: 0px;
	padding-top: 0px;
	padding-bottom: 0px;
}

#accordionCategories {
	border-style: none;
	border-width: 0px;
}

#accordionCategoriesCard {
	border-style: none;
	border-width: 0px;
	margin: 0px;
	padding: 0px;
	background: #e6e6e6;
}

#clickableCategoriesCard {
	border-style: none;
	border-width: 0px;
	background: #e6e6e6;
	padding-right: 20px;
	padding-left: 20px;
}

#clickableCategoriesCard a {
	color: #808080;
	font-size: 17px;
	font-weight: normal;
	font-weight: 500;
}

#clickableCategoriesCard a:hover {
	color: #469fb8;
}

.fonts-loaded #clickableCategoriesCard a {
	font-family: "Montserrat", sans-serif;
}

#accordionAuthorsCollapse .card-body {
	background: #e6e6e6;
	padding-right: 20px;
	padding-left: 20px;
	margin: 0px;
	padding-top: 0px;
	padding-bottom: 0px;
}

#accordionAuthors {
	border-style: none;
	border-width: 0px;
}

#accordionAuthorsCard {
	border-style: none;
	border-width: 0px;
	margin: 0px;
	padding: 0px;
	background: #e6e6e6;
}

#clickableAuthorsCard {
	border-style: none;
	border-width: 0px;
	background: #e6e6e6;
	padding-right: 20px;
	padding-left: 20px;
}

#clickableAuthorsCard a {
	color: #808080;
	font-size: 17px;
	font-weight: normal;
	font-weight: 500;
}

#clickableAuthorsCard a:hover {
	color: #469fb8;
}

.fonts-loaded #clickableAuthorsCard a {
	font-family: "Montserrat", sans-serif;
}

#accordionArchiveCollapse .card-body {
	background: #e6e6e6;
	padding-right: 20px;
	padding-left: 20px;
	margin: 0px;
	padding-top: 0px;
	padding-bottom: 0px;
}

#accordionArchive {
	border-style: none;
	border-width: 0px;
}

#accordionArchiveCard {
	border-style: none;
	border-width: 0px;
	margin: 0px;
	padding: 0px;
	background: #e6e6e6;
}

#clickableArchiveCard {
	border-style: none;
	border-width: 0px;
	background: #e6e6e6;
	padding-right: 20px;
	padding-left: 20px;
}

#clickableArchiveCard a {
	color: #808080;
	font-size: 17px;
	font-weight: normal;
	font-weight: 500;
}

#clickableArchiveCard a:hover {
	color: #469fb8;
}

.fonts-loaded #clickableArchiveCard a {
	font-family: "Montserrat", sans-serif;
}

.custom-filters-chevron {
	padding-left: 5px;
	color: #999999;
}

/* 8. Pagination */

.pagination-nav {
	margin-top: 40px;
	margin-bottom: 0px;
}

.pagination {
	display: -ms-flexbox;
	display: flex;
	padding-left: 0;
	list-style: none;
	border-radius: 0rem;
	font-weight: normal;
	font-size: 15px;
}

.fonts-loaded .pagination {
	font-family: "Titillium Web", sans-serif;
}

.page-item {
	box-shadow: 0px 3px 9px rgba(0, 0, 0, 0.25);
}

.page-item:first-child .page-link {
	margin-left: 0;
	border-top-left-radius: 0rem;
	border-bottom-left-radius: 0rem;
}

.page-item:last-child .page-link {
	border-top-right-radius: 0rem;
	border-bottom-right-radius: 0rem;
}

.page-item.active .page-link {
	z-index: 1;
	color: #fff;
	background-color: rgba(79, 180, 208, 0.7);
	border-color: rgba(79, 180, 208, 0.7);
}

.page-item.disabled .page-link {
	color: #999999;
	pointer-events: none;
	cursor: auto;
	background-color: rgba(217, 217, 217, 0.7);
	border-color: rgba(217, 217, 217, 0.7);
}

.page-link {
	position: relative;
	display: block;
	padding: 0.5rem 0.75rem;
	margin-left: -1px;
	line-height: 1.25;
	color: #808080;
	background-color: #f2f2f2;
	border: 1px solid #d9d9d9;
	white-space: nowrap;
}

.page-link:hover {
	z-index: 2;
	color: #fff;
	text-decoration: none;
	background-color: rgba(205, 231, 239, 0.6);
	border-color: rgba(205, 231, 239, 0.6);
}

.page-link:focus {
	z-index: 2;
}

.page-link:not(:disabled):not(.disabled) {
	cursor: pointer;
}

/* 9. Footer */

.footer {
	flex-shrink: 0;
}

.footer-content {
	padding-top: 40px;
	padding-bottom: 40px;
	background: #494d4d;
}

.footer-company-logo h5 a {
	font-size: 18px;
	font-weight: 500;
	color: #f2f2f2;
	line-height: 1.2;
}

.fonts-loaded .footer-company-logo h5 a {
	font-family: 'Titillium Web', sans-serif;
}

.footer-company-logo h5 a span {
	color: rgba(246, 36, 36, 1);
}

.footer-text {
	margin-top: 30px;
}

.footer-text p {
	color: #a6a6a6;
	text-align: justify;
	font-size: 14px;
}

.footer-title h5 {
	font-size: 18px;
	font-weight: 500;
	color: #f2f2f2;
	line-height: 1.2;
	text-transform: uppercase;
}

.fonts-loaded .footer-title h5 {
	font-family: 'Titillium Web', sans-serif;
}

.footer-info-content {
	margin-top: 30px;
}

.footer-info-content ul li:not(:last-of-type) {
	margin-bottom: 20px;
}

.footer-info-content ul li div {
	width: 20px;
	height: 20px;
	min-width: 20px;
	min-height: 20px;
}

.footer-info-content ul li div img {
	max-height: 100%;
}

.footer-info-content ul li span {
	padding-top: 4px;
	font-size: 14px;
	font-weight: 600;
	color: #a6a6a6;
	padding-left: 15px;
}

.footer-links ul {
	margin-top: 30px;
}

.footer-links ul li:not(:last-of-type) {
	margin-bottom: 17px;
}

.footer-links ul li a {
	font-size: 14px;
	font-weight: 600;
	color: #a6a6a6;
}

.footer-links ul li a:hover {
	color: #4fb4d0;
}

.footer-bar {
	background: #313333;
}

.footer-bar-content {
	height: 50px;
}

.footer-mailto {
	color: #a6a6a6;
}

.footer-mailto:hover {
	color: #d9d9d9;
}

.copyright-content {
	font-size: 14px;
	font-weight: 400;
	color: #cccccc;
	text-align: center;
}

.fonts-loaded .copyright-content {
	font-family: "Poppins", sans-serif;
}

.copyright-content a {
	color: #4fb4d0;
}

.copyright-content a:hover {
	color: #3a8499;
}

.footer-collapsible-button {
	display: none;	
	background-color: #494d4d;
	color: #f2f2f2;
	cursor: pointer;
	padding: 12px 0px;
	width: 100%;
	border: none;
	text-align: left;
	outline: none !important;
	font-size: 18px;
	text-transform: uppercase;
}

.fonts-loaded .footer-collapsible-button {
	font-family: 'Titillium Web', sans-serif;
}

.footer-collapsible-button:after {
	content: '\002B';
	color: #f2f2f2;
	font-weight: 600;
	float: right;
	margin-left: 5px;
}

.footer-collapsible-active:after {
	content: "\2212";
}

/* 10. Cookies */

#cookieinfo * {
	margin: 0px;
	padding: 0px;
}

#cookieinfo {
	position: fixed;
	font-size: 12px;
	left: 0px;
	bottom: 0px;
	right: 0px;
	background-color: rgba(50, 51, 52, 0.9);
	padding: 20px;
	box-shadow: 0px -1px 3px rgba(0, 0, 0, 0.5);
	z-index: 1000;
}

#cookieinfo h6 {
	font-size: 16px;
	color: #f2f2f2;
	text-shadow: 0px 1px 1px rgba(0, 0, 0, 1);
	margin-bottom: 7px;
}

.fonts-loaded #cookieinfo h6 {
	font-family: "Poppins", sans-serif;
}

#cookieinfo p {
	font-size: 12px;
	color: #bec3cc;
	line-height: 1.5em;
}

.fonts-loaded #cookieinfo p {
	font-family: "Poppins", sans-serif;
}

#cookieinfo .close-cookie-alert {
	display: block;
	position: absolute;
	right: 10px;
	top: 10px;
	width: 22px;
	height: 22px;
	border-radius: 11px;
	line-height: 22px;
	font-size: 12px;
	color: #ffffff;
	text-align: center;
	text-decoration: none;
	background-color: rgba(79, 180, 208, 0.9);
}

#cookieinfo .close-cookie-alert:hover {
	background-color: rgba(68, 154, 179, 0.8);
}

#cookieinfo .cookie-alert-policy {
	border-style: none;
	color: #4fb4d0;
}

#cookieinfo .cookie-alert-policy:hover {
	background: none;
	color: #3f8fa6;
	-webkit-transition: all 400ms ease;
	-moz-transition: all 400ms ease;
	-ms-transition: all 400ms ease;
	-o-transition: all 400ms ease;
	transition: all 400ms ease;
}

/* 11. Remove Angular Flickering */

.no-angular-flicker {
	display: none;
}

#removeAngularFlicker {
	display: block;
}

#removeAngularFlicker.no-angular-flicker {
	display: none;
}