@charset "utf-8";

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

*:focus {
	outline: none;
}

html,
body {
	min-height: 100%;
}

:root {
	--content-max: 1532px;
	--content-pad: 6px;
	--theme-bg: #ffffff;
	--theme-text: #30363d;
	--theme-text-muted: #5f6974;
	--theme-primary: #296fa3;
	--theme-primary-dark: #1e5c88;
	--theme-surface: #f5f9fd;
	--theme-border: #d2e1ee;
	--theme-border-strong: #9fbfd8;
}

body {
	background: var(--theme-bg);
	color: var(--theme-text);
	font: 13px/1.45 Verdana, Helvetica, sans-serif;
}

a {
	color: var(--theme-primary);
	text-decoration: none;
}

a:hover {
	color: var(--theme-primary-dark);
}

img,
embed,
object,
video {
	display: block;
	max-width: 100%;
	height: auto;
	border: 0;
}

.cc {
	clear: both;
}

.right {
	float: right !important;
}

#header,
#page,
#footer {
	width: 100%;
	min-width: 0;
	background: var(--theme-bg);
}

.page-layout {
	width: 100%;
	max-width: var(--content-max);
	margin: 0 auto;
	padding: 0 var(--content-pad);
	position: relative;
}

.container {
	width: 100%;
	margin: 0 auto;
	padding: 0;
	text-align: center;
}

#header .header1 {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 14px;
	padding: 14px 6px;
	width: 100%;
	color: var(--theme-text);
}

#header .logo {
	float: none;
	display: block;
	flex: 0 0 auto;
}

.header-note {
	margin-left: auto;
	flex: 1 1 auto;
	min-width: 0;
	max-width: none;
	color: var(--theme-text-muted);
	font-size: 12px;
	line-height: 1.35;
	text-align: right;
}

#menu-up {
	display: none;
}

.main-nav-bar {
	width: 100%;
	background: linear-gradient(180deg, #245f8a 0%, #1d4f75 100%);
	box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.12);
}

.main-nav-inner {
	width: 100%;
	max-width: var(--content-max);
	margin: 0 auto;
	padding: 0 6px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 68px;
	flex-wrap: nowrap;
}

.main-menu-toggle {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.main-menu-button {
	display: none;
	align-items: center;
	gap: 8px;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	padding: 12px 0;
	cursor: pointer;
}

.main-menu-button svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: #fff;
	stroke-width: 2.2;
	stroke-linecap: round;
}

.main-nav-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 28px;
	flex: 1 1 auto;
	min-width: 0;
}

.main-nav-list a {
	display: block;
	padding: 13px 0;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.2px;
	text-decoration: none;
	white-space: nowrap;
}

.main-nav-list a:hover {
	color: #e6f2fb;
}

#search-box.nav-search {
	order: 3;
	float: none;
	width: 196px;
	max-width: 30%;
	min-width: 154px;
	height: auto;
	margin-top: 0;
	margin-left: auto;
	color: var(--theme-text);
	flex: 0 1 30%;
}

#search-box.nav-search form {
	width: 100%;
	position: relative;
}

#search-box.nav-search .searchform {
	width: 100%;
	height: 42px;
	padding: 0 48px 0 10px;
	border: 1px solid var(--theme-border-strong);
	border-radius: 10px;
	background: #fff;
	color: var(--theme-text);
	font-size: 13px;
	line-height: 42px;
}

#search-box.nav-search .searchform::placeholder {
	color: #93a4b3;
}

#search-box.nav-search .searchbut {
	position: absolute;
	top: 50%;
	right: 4px;
	transform: translateY(-50%);
	width: 34px;
	height: 34px;
	margin: 0;
	padding: 0;
	text-indent: 0;
	border: none;
	border-radius: 8px;
	background: var(--theme-primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

#search-box.nav-search .searchbut:hover {
	background: var(--theme-primary-dark);
}

#search-box.nav-search .searchbut svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: #fff;
	stroke-width: 2.2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

#page {
	font-family: Arial, sans-serif;
}

#page .page-layout {
	padding-left: 6px;
	padding-right: 6px;
}

.title-box {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	margin: 0;
	padding: 10px 0;
}

.title-box>span {
	margin: 0;
	padding: 0;
	width: 100%;
	background: none;
	color: #2f3d4b;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.2;
	text-align: right;
}

.title-box.title-box-split {
	height: auto;
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-top: 10px;
	margin-bottom: 10px;
}

.title-box.title-box-split .title-box-title {
	float: none;
	width: auto;
	flex: 0 0 auto;
	margin: 0;
	margin-left: auto;
	padding: 0;
	background: none;
	color: #2f3d4b;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.2;
	text-align: right;
}

.title-box.title-box-split .title-box-nav {
	display: inline-flex;
	align-items: center;
	gap: 0;
	flex: 0 0 auto;
	border: 1px solid #bfc9d3;
	border-radius: 8px;
	overflow: hidden;
	background: #f4f6f8;
}

.title-box.title-box-split .title-filter-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 92px;
	height: 38px;
	padding: 0 14px;
	border: none;
	border-radius: 0;
	background: linear-gradient(180deg, #ffffff 0%, #eef2f6 100%);
	color: #5d6772;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.title-box.title-box-split .title-filter-btn+.title-filter-btn {
	border-left: 1px solid #c8d1da;
}

.title-box.title-box-split .title-filter-btn:hover {
	background: linear-gradient(180deg, #ffffff 0%, #e8edf2 100%);
	color: #3e4a56;
}

.title-box.title-box-split .title-filter-btn.is-active {
	background: linear-gradient(180deg, #d3dbe3 0%, #c2ccd6 100%);
	color: #303a45;
	box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.18);
}

.thumbs-grid {
	position: relative;
	min-height: 220px;
}

.thumbs-loader {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(16, 29, 40, 0.1);
	z-index: 20;
	transition: opacity 0.25s ease, visibility 0.25s ease;
}

.page-loader-spinner,
.thumbs-loader .page-loader-spinner {
	width: 44px;
	height: 44px;
	border: 4px solid rgba(41, 111, 163, 0.22);
	border-top-color: var(--theme-primary);
	border-radius: 50%;
	animation: page-loader-spin 0.8s linear infinite;
}

.thumbs-loader.is-hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

@keyframes page-loader-spin {
	to {
		transform: rotate(360deg);
	}
}

.th_container {
	list-style-type: none;
	position: relative;
	margin: 10px 0 0;
	padding: 0;
	visibility: hidden;
}

.th_container.mosaic-ready {
	visibility: visible;
}

.th_container li {
	background: #fff;
	border: 1px solid var(--theme-border-strong);
	border-radius: 5px;
	overflow: hidden;
	cursor: pointer;
}

.th_container li:hover {
	border-color: var(--theme-primary);
}

.th_container li img {
	width: 100%;
	height: auto;
}

.th_container a {
	position: relative;
	display: block;
}

.category-badge {
	position: absolute;
	bottom: 14px;
	right: 0;
	z-index: 5;
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 8px;
	font-weight: 700;
	font-size: 16px;
	line-height: 1;
	color: #fff;
	background: rgba(30, 47, 62, 0.52);
	border-radius: 8px;
}

.category-badge span {
	opacity: 1;
}

.archive {
	display: flex;
	justify-content: flex-end;
	gap: 12px;
	padding: 12px 0;
	margin: 20px 0 15px;
}

.archive a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 18px;
	border: 1px solid var(--theme-border);
	border-radius: 7px;
	background: var(--theme-surface);
	color: var(--theme-primary);
	font-size: 18px;
	font-weight: 700;
}

.archive a:hover {
	color: #fff;
	background-color: var(--theme-primary);
}

.archive a svg {
	display: block;
}

#footer {
	margin-top: 20px;
}

#footer-bottom {
	margin-top: 20px;
	margin-bottom: 10px;
}

#footer p {
	margin: 20px;
	font-size: 12px;
	text-align: center;
	line-height: 1.5;
	color: var(--theme-text-muted);
}

#footer p.copy {
	font-size: 13px;
	color: var(--theme-text-muted);
}

#footer p.copy a {
	color: var(--theme-primary);
	font-weight: 700;
}

@media only screen and (max-width: 960px) {
	#header .logo {
		float: none;
	}
	#menu-up {
		float: none;
		display: block;
		width: 100%;
	}
}

@media only screen and (max-width: 900px) {
	#search-box {
		float: none;
		width: 100%;
	}
	#search-box form {
		display: flex;
		align-items: center;
	}
	#search-box .searchbut {
		flex: 0 0 72px;
	}
	#search-box .searchform {
		width: calc(100% - 82px);
		min-width: 0;
	}
	#header .header1 {
		justify-content: center;
	}
	#header .logo {
		width: 100%;
		max-width: 100%;
		margin: 0 auto;
	}
	#header .logo img {
		width: 100%;
		height: auto;
	}
	.header-note {
		display: none;
	}
}

@media only screen and (min-width: 601px) and (max-width: 960px) {
	.main-nav-inner {
		gap: 10px;
	}
	.main-nav-list {
		gap: 12px;
	}
	.main-nav-list a {
		font-size: 14px;
		padding: 11px 0;
	}
	#search-box.nav-search {
		width: 161px;
		max-width: 30%;
		min-width: 126px;
	}
}

@media only screen and (max-width: 760px) {
	.title-box.title-box-split {
		flex-wrap: wrap;
	}
}

@media only screen and (max-width: 600px) {
	.main-nav-inner {
		padding: 0 6px 10px;
		flex-wrap: wrap;
		gap: 8px 14px;
		min-height: 56px;
	}
	.main-menu-button {
		display: inline-flex;
		order: 1;
	}
	.main-nav-list {
		display: none;
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
		padding: 0 0 12px;
		width: 100%;
		order: 3;
	}
	.main-menu-toggle:checked~.main-nav-list {
		display: flex;
	}
	.main-nav-list a {
		padding: 10px 2px;
	}
	#search-box.nav-search {
		order: 2;
		width: 100%;
		max-width: 100%;
		min-width: 0;
		margin-left: 0;
		flex-basis: 100%;
	}
	#search-box.nav-search .searchform {
		height: 44px;
		padding-right: 50px;
		line-height: 44px;
	}
	#search-box.nav-search .searchbut {
		width: 36px;
		height: 36px;
	}
}

@media only screen and (max-width: 480px) {
	.title-box.title-box-split .title-box-title {
		display: none;
	}
}
