:root {
	--action-color: rgb(234, 2, 2)
}

body {
	font-family: 'Noto Sans', sans-serif;
	font-size: calc(16px + (16 - 14) * ((100vw - 360px) / (1600 - 360)));
	line-height: calc(1.4em + (1.8 - 1.4) * ((100vw - 360px) / (1600 - 360)));
	height: 100%;
}

a, a:link, a:visited, a:hover, a:active {
	text-decoration: none;
	color: #000000;
	-webkit-text-decoration-skip: objects;
}

.header {
	padding-top: 60px;
}

@media screen and (max-width: 1024px) {
	.header {
		padding-top: 40px;
	}
}

@media screen and (max-width: 768px) {
	.header {
		padding-top: 40px;
	}
}

.header {
	font-family: 'Fira Sans', sans-serif;
}

.header h1 {
	margin-bottom: 0;
}

.header h1:first-child span:last-child {
	color: #B3B3B3;
}

.header h1:last-child span {
	color: var(--action-color);
}

.header.slided_text_top {
	overflow: hidden;
	margin: 0;
	position: relative;
}

.staged_text {
	position: relative;
	opacity: 1;
}

.typewriter {
	padding-top: 40px;
	padding-bottom: 45px;
	font-family: 'IBM Plex Serif', serif;
	font-size: 24px;
	line-height: 24px;
	font-weight: 600;
	overflow: hidden;
}

.typewriter span {
/ height: 44 px;
}

@media screen and (max-width: 1024px) {
	.typewriter {
		padding-top: 30px;
		padding-bottom: 35px;
	}
}

@media screen and (max-width: 768px) {
	.typewriter {
		padding-top: 30px;
		padding-bottom: 35px;
		font-size: 22px;
	}
}

.main {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 10px;
}

@media screen and (max-width: 768px) {
	.main {
		display: grid;
		grid-template-columns: 1fr;
		column-gap: 0;
	}

	.hero {
		display: none;
	}
}

.page_nav {
	padding-top: 40px;
	padding-bottom: 45px;

}

.page_nav h4 {
	margin-bottom: 0;
	font-family: 'IBM Plex Serif', serif;
	font-size: 24px;
	line-height: 24px;
	font-weight: 600;
}

/*.inside {
	padding-top: 60px;
}

@media screen and (max-width: 1024px) {
	.inside {
		padding-top: 40px;
	}
}

@media screen and (max-width: 768px) {
	.inside {
		padding-top: 40px;
	}
}*/

.lead {
	font-family: 'Noto Sans', sans-serif;
	font-size: 18px;
}

.hero img {
	max-width: 100%;
}

.button_link {
	outline: none !important;
	border: none;
	height: 44px;
	width: max-content;
	padding: 0 16px 0 12px;
	margin-top: 45px;
	border-radius: 24px;
	display: grid;
	column-gap: 10px;
	grid-template-columns: 24px max-content;
	place-content: center left;
	background: #000000;
	font-size: 16px;
}

.button_link.button_outline {
	border: 2px solid black;
	margin-top: 45px;
	font-size: 16px;
	background: #fff;
	color: black;
}

@media screen and (max-width: 1024px) {
	.button_link {
		margin-top: 30px;
	}
}

@media screen and (max-width: 768px) {
	.button_link {
		margin-top: 30px;
	}
}

.button_link span {
	color: white;
}

.button_link.button_outline span {
	color: black;
}

.button_link.hover {
	transition: all .2s ease-in-out;
}

.button_link.hover:hover {
	background: var(--action-color);
}

.button_link.button_outline.hover:hover {
	background: #fff;
	border-color: var(--action-color);
	color: var(--action-color) !important;
}

.searchbox {
	padding-top: 60px;
}

@media screen and (max-width: 1024px) {
	.searchbox {
		padding-top: 40px;
	}
}

@media screen and (max-width: 768px) {
	.searchbox {
		padding-top: 40px;
	}
}

.form_group {
	display: grid;
	grid-template-columns: 350px max-content;
	column-gap: 16px;
	place-content: center;
}

.form_group #search_input {
	height: 44px;
	border-radius: 22px;
	padding-left: 20px;
	border: 2px solid black;
	transition: all .2s ease-in-out;
}

.form_group .btn {
	background: black;
	border-radius: 22px;
	padding: 0 22px 0 22px !important;
	color: white;
}

.form_group .btn {
	background: black;
	border-radius: 22px;
	padding: 0 22px 0 22px !important;
	color: white;
}

.form_group .btn.hover {
	transition: all .2s ease-in-out;
}

.form_group .btn.hover:hover {
	background: var(--action-color);
}

.form_group #search_input:focus {
	border: 2px solid var(--action-color);
	box-shadow: 0 0 6px 0.25rem rgba(215, 116, 45, .35);
}

.results {
	padding-top: 60px;
}

@media screen and (max-width: 1024px) {
	.results {
		padding-top: 40px;
	}
}

@media screen and (max-width: 768px) {
	.results {
		padding-top: 40px;
	}
}

.footer {
	padding-top: 60px;
	padding-bottom: 40px;
	text-align: center;
	font-size: 12px;
	line-height: 16px;
}

.footer p {
	margin: 0;
	padding: 0;
}

@media screen and (max-width: 1024px) {
	.footer {
		padding-top: 40px;
	}
}

@media screen and (max-width: 768px) {
	.footer {
		padding-top: 40px;
	}
}

.icon_geo {
	width: 17px;
	height: 24px;
}

.search_yellow {
	background: rgba(250, 91, 0, .25);
}

table {
	font-family: 'Noto Sans', sans-serif;
	font-size: 16px;
	border-spacing: 10px 50px;
}

thead {
	padding: 10px 0;
}

tbody:before {
	line-height: .5em;
	content: ".";
	display: block;
}

tr.desc th {
	background: #434343;
}

tr th {
	border: 1px solid var(--bs-table-border-color);
}

tr td:nth-child(3), tr td:nth-child(6) {
	border-right: 1px solid var(--bs-border-color);
}

.tr_link:not(.link_disable) {
	cursor: pointer;
	transition: background-color .1s linear;
}

.tr_link:not(.link_disable):hover {
	background-color: #d8eedb;
}

.tr_link.link_disable {
	border-bottom: none !important;
}

#map {
	height: 500px;
	width: 100%;
}

@media screen and (max-width: 1024px) {
	#map {
		height: 400px;
	}
}

@media screen and (max-width: 768px) {
	#map {
		height: 300px;
	}
}

.textLink {
	color: rgba(94, 130, 249, 1) !important;
	padding-bottom: 1px;
	transition: all .1s linear;
}

.textLink:link {
	border-bottom: 2px solid rgba(94, 130, 249, .5);
}

.textLink:visited {
	border-bottom: 2px solid rgba(94, 130, 249, .5);
}

.textLink:hover {
	color: #0db570 !important;
	border-bottom: 2px solid #0db570;
}

/* pagination GRID */
.p_grid {
	display: grid;
	grid-template-columns: repeat( auto-fit, minmax(40px, max-content));
	place-content: center;
	width: 100%;
}

.p_item {
	display: inline-block;
	text-align: center;
}

.p_item a {
	color: #444;
	border-radius: 4px;
	display: inline-block;
	width: 100%;
	font-size: 1rem;
	line-height: 30px;
}

.p_item a img {
	height: 30px;
}

.p_item a.link_active {
	cursor: default;
	pointer-events: none;
	background-color: var(--action-color);
	color: white;
}

.p_item:not(.active, .arrow_prev, .arrow_next) a:hover {
	background: #ededed;
}

.p_item:first-child {
/ margin-left: 15 px;
}

.p_item:last-child {
/ margin-right: 15 px;
}

.p_item.arrow_prev {
	margin-right: 20px;
/ width: 42 px;
}

.p_item.arrow_next {
	margin-left: 20px;
/ width: 42 px;
}

.p_separator {
	margin: 0 2px;
}

/* END pagination GRID */

.progress-wrap {
	position: fixed;
	bottom: 50px;
	height: 46px;
	width: 46px;
	border-radius: 46px;
	background-color: #ffffff;
	box-shadow: inset 0 0 0 2px #cccccc;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
	cursor: pointer;
}

.progress-wrap.btn-left-side {
	left: 50px;
}

.progress-wrap.btn-right-side {
	right: 50px;
}

.progress-wrap::after {
	text-align: center;
	position: absolute;
	left: 0;
	top: 0;
	width: 46px;
	height: 46px;
	color: #1f2029;
	font-size: 24px;
	content: '\2191';
	line-height: 46px;
}

.progress-wrap:hover svg.progress-circle path {
	stroke: var(--action-color);
	fill: none;
	stroke-width: 2px;
}

.progress-wrap svg.progress-circle path {
	stroke: #1f2029;
	fill: none;
	stroke-width: 2px;
}

.progress-wrap.active-progress {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}


@media only screen and (min-width: 768px) and (max-width: 991px) {
	.progress-wrap {
		display: none;
	}
}

@media only screen and (max-width: 767px) {
	.progress-wrap {
		display: none;
	}
}
