table.sticky-column td:first-child {
	position: sticky;
	left: 0;
	background-color:#F9F9F9;
}
table.dataTable td.dt-control {
	text-align: center;
	cursor: pointer;
}
table.dataTable td.dt-control:before {
	height: 1em;
	width: 1em;
	margin-top: -9px;
	display: inline-block;
	color: white;
	border: 0.15em solid white;
	border-radius: 1em;
	box-shadow: 0 0 0.2em #444;
	box-sizing: content-box;
	text-align: center;
	text-indent: 0 !important;
	font-family: "Courier New", Courier, monospace;
	line-height: 1em;
	content: "+";
	background-color: #31b131;
}
table.dataTable tr.dt-hasChild td.dt-control:before {
	content: "-";
	background-color: #d33333;
}
table.dataTable thead > tr > th.sorting,
table.dataTable thead > tr > th.sorting_asc,
table.dataTable thead > tr > th.sorting_desc,
table.dataTable thead > tr > th.sorting_asc_disabled,
table.dataTable thead > tr > th.sorting_desc_disabled,
table.dataTable thead > tr > td.sorting,
table.dataTable thead > tr > td.sorting_asc,
table.dataTable thead > tr > td.sorting_desc,
table.dataTable thead > tr > td.sorting_asc_disabled,
table.dataTable thead > tr > td.sorting_desc_disabled {
	cursor: pointer;
	position: relative;
	padding-right: 26px;
}
table.dataTable thead > tr > th.sorting:before,
table.dataTable thead > tr > th.sorting:after,
table.dataTable thead > tr > th.sorting_asc:before,
table.dataTable thead > tr > th.sorting_asc:after,
table.dataTable thead > tr > th.sorting_desc:before,
table.dataTable thead > tr > th.sorting_desc:after,
table.dataTable thead > tr > th.sorting_asc_disabled:before,
table.dataTable thead > tr > th.sorting_asc_disabled:after,
table.dataTable thead > tr > th.sorting_desc_disabled:before,
table.dataTable thead > tr > th.sorting_desc_disabled:after,
table.dataTable thead > tr > td.sorting:before,
table.dataTable thead > tr > td.sorting:after,
table.dataTable thead > tr > td.sorting_asc:before,
table.dataTable thead > tr > td.sorting_asc:after,
table.dataTable thead > tr > td.sorting_desc:before,
table.dataTable thead > tr > td.sorting_desc:after,
table.dataTable thead > tr > td.sorting_asc_disabled:before,
table.dataTable thead > tr > td.sorting_asc_disabled:after,
table.dataTable thead > tr > td.sorting_desc_disabled:before,
table.dataTable thead > tr > td.sorting_desc_disabled:after {
	position: absolute;
	display: block;
	opacity: 0.125;
	right: 10px;
	line-height: 9px;
	font-size: 0.9em;
}
table.dataTable thead > tr > th.sorting:before,
table.dataTable thead > tr > th.sorting_asc:before,
table.dataTable thead > tr > th.sorting_desc:before,
table.dataTable thead > tr > th.sorting_asc_disabled:before,
table.dataTable thead > tr > th.sorting_desc_disabled:before,
table.dataTable thead > tr > td.sorting:before,
table.dataTable thead > tr > td.sorting_asc:before,
table.dataTable thead > tr > td.sorting_desc:before,
table.dataTable thead > tr > td.sorting_asc_disabled:before,
table.dataTable thead > tr > td.sorting_desc_disabled:before {
	bottom: 50%;
	content: "\25B4";
}
table.dataTable thead > tr > th.sorting:after,
table.dataTable thead > tr > th.sorting_asc:after,
table.dataTable thead > tr > th.sorting_desc:after,
table.dataTable thead > tr > th.sorting_asc_disabled:after,
table.dataTable thead > tr > th.sorting_desc_disabled:after,
table.dataTable thead > tr > td.sorting:after,
table.dataTable thead > tr > td.sorting_asc:after,
table.dataTable thead > tr > td.sorting_desc:after,
table.dataTable thead > tr > td.sorting_asc_disabled:after,
table.dataTable thead > tr > td.sorting_desc_disabled:after {
	top: 50%;
	content: "\25BE";
}
table.dataTable thead > tr > th.sorting_asc:before,
table.dataTable thead > tr > th.sorting_desc:after,
table.dataTable thead > tr > td.sorting_asc:before,
table.dataTable thead > tr > td.sorting_desc:after {
	opacity: 0.6;
}
table.dataTable thead > tr > th.sorting_desc_disabled:after,
table.dataTable thead > tr > th.sorting_asc_disabled:before,
table.dataTable thead > tr > td.sorting_desc_disabled:after,
table.dataTable thead > tr > td.sorting_asc_disabled:before {
	display: none;
}
table.dataTable thead > tr > th:active,
table.dataTable thead > tr > td:active {
	outline: none;
}
div.dataTables_scrollBody table.dataTable thead > tr > th:before,
div.dataTables_scrollBody table.dataTable thead > tr > th:after,
div.dataTables_scrollBody table.dataTable thead > tr > td:before,
div.dataTables_scrollBody table.dataTable thead > tr > td:after {
	display: none;
}
div.dataTables_processing {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 200px;
	margin-left: -100px;
	margin-top: -26px;
	text-align: center;
	padding: 2px;
}
div.dataTables_processing > div:last-child {
	position: relative;
	width: 80px;
	height: 15px;
	margin: 1em auto;
}
div.dataTables_processing > div:last-child > div {
	position: absolute;
	top: 0;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background: rgba(13, 110, 253, 0.9);
	animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
div.dataTables_processing > div:last-child > div:nth-child(1) {
	left: 8px;
	animation: datatables-loader-1 0.6s infinite;
}
div.dataTables_processing > div:last-child > div:nth-child(2) {
	left: 8px;
	animation: datatables-loader-2 0.6s infinite;
}
div.dataTables_processing > div:last-child > div:nth-child(3) {
	left: 32px;
	animation: datatables-loader-2 0.6s infinite;
}
div.dataTables_processing > div:last-child > div:nth-child(4) {
	left: 56px;
	animation: datatables-loader-3 0.6s infinite;
}
@keyframes datatables-loader-1 {
	0% {
		transform: scale(0);
	}
	100% {
		transform: scale(1);
	}
}
@keyframes datatables-loader-3 {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(0);
	}
}
@keyframes datatables-loader-2 {
	0% {
		transform: translate(0, 0);
	}
	100% {
		transform: translate(24px, 0);
	}
}
table.dataTable.nowrap th,
table.dataTable.nowrap td {
	white-space: nowrap;
}
table.dataTable th.dt-left,
table.dataTable td.dt-left {
	text-align: left;
}
table.dataTable th.dt-center,
table.dataTable td.dt-center,
table.dataTable td.dataTables_empty {
	text-align: center;
}
table.dataTable th.dt-right,
table.dataTable td.dt-right {
	text-align: right;
}
table.dataTable th.dt-justify,
table.dataTable td.dt-justify {
	text-align: justify;
}
table.dataTable th.dt-nowrap,
table.dataTable td.dt-nowrap {
	white-space: nowrap;
}
table.dataTable thead th,
table.dataTable thead td,
table.dataTable tfoot th,
table.dataTable tfoot td {
	text-align: left;
}
table.dataTable thead th.dt-head-left,
table.dataTable thead td.dt-head-left,
table.dataTable tfoot th.dt-head-left,
table.dataTable tfoot td.dt-head-left {
	text-align: left;
}
table.dataTable thead th.dt-head-center,
table.dataTable thead td.dt-head-center,
table.dataTable tfoot th.dt-head-center,
table.dataTable tfoot td.dt-head-center {
	text-align: center;
}
table.dataTable thead th.dt-head-right,
table.dataTable thead td.dt-head-right,
table.dataTable tfoot th.dt-head-right,
table.dataTable tfoot td.dt-head-right {
	text-align: right;
}
table.dataTable thead th.dt-head-justify,
table.dataTable thead td.dt-head-justify,
table.dataTable tfoot th.dt-head-justify,
table.dataTable tfoot td.dt-head-justify {
	text-align: justify;
}
table.dataTable thead th.dt-head-nowrap,
table.dataTable thead td.dt-head-nowrap,
table.dataTable tfoot th.dt-head-nowrap,
table.dataTable tfoot td.dt-head-nowrap {
	white-space: nowrap;
}
table.dataTable tbody th.dt-body-left,
table.dataTable tbody td.dt-body-left {
	text-align: left;
}
table.dataTable tbody th.dt-body-center,
table.dataTable tbody td.dt-body-center {
	text-align: center;
}
table.dataTable tbody th.dt-body-right,
table.dataTable tbody td.dt-body-right {
	text-align: right;
}
table.dataTable tbody th.dt-body-justify,
table.dataTable tbody td.dt-body-justify {
	text-align: justify;
}
table.dataTable tbody th.dt-body-nowrap,
table.dataTable tbody td.dt-body-nowrap {
	white-space: nowrap;
}
table.dataTable {
	width: 100%;
	margin: 0 auto;
	clear: both;
	border-collapse: separate;
	border-spacing: 0;
}
table.dataTable thead th,
table.dataTable tfoot th {
	font-weight: bold;
}
table.dataTable thead th,
table.dataTable thead td {
	padding: 10px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
table.dataTable thead th:active,
table.dataTable thead td:active {
	outline: none;
}
table.dataTable tfoot th,
table.dataTable tfoot td {
	padding: 10px 10px 6px 10px;
	border-top: 1px solid rgba(0, 0, 0, 0.3);
}
table.dataTable tbody tr {
	background-color: transparent;
}
table.dataTable tbody tr.selected > * {
	box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.9);
	color: white;
}
table.dataTable tbody th,
table.dataTable tbody td {
	padding: 8px 10px;
}
table.dataTable.row-border tbody th,
table.dataTable.row-border tbody td,
table.dataTable.display tbody th,
table.dataTable.display tbody td {
	border-top: 1px solid rgba(0, 0, 0, 0.15);
}
table.dataTable.row-border tbody tr:first-child th,
table.dataTable.row-border tbody tr:first-child td,
table.dataTable.display tbody tr:first-child th,
table.dataTable.display tbody tr:first-child td {
	border-top: none;
}
table.dataTable.cell-border tbody th,
table.dataTable.cell-border tbody td {
	border-top: 1px solid rgba(0, 0, 0, 0.15);
	border-right: 1px solid rgba(0, 0, 0, 0.15);
}
table.dataTable.cell-border tbody tr th:first-child,
table.dataTable.cell-border tbody tr td:first-child {
	border-left: 1px solid rgba(0, 0, 0, 0.15);
}
table.dataTable.cell-border tbody tr:first-child th,
table.dataTable.cell-border tbody tr:first-child td {
	border-top: none;
}
table.dataTable.stripe > tbody > tr.odd > *,
table.dataTable.display > tbody > tr.odd > * {
	box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.023);
}
table.dataTable.stripe > tbody > tr.odd.selected > *,
table.dataTable.display > tbody > tr.odd.selected > * {
	box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.923);
}
table.dataTable.hover > tbody > tr:hover > *,
table.dataTable.display > tbody > tr:hover > * {
	box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.035);
}
table.dataTable.hover > tbody > tr.selected:hover > *,
table.dataTable.display > tbody > tr.selected:hover > * {
	box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.935);
}
table.dataTable.order-column > tbody tr > .sorting_1,
table.dataTable.order-column > tbody tr > .sorting_2,
table.dataTable.order-column > tbody tr > .sorting_3,
table.dataTable.display > tbody tr > .sorting_1,
table.dataTable.display > tbody tr > .sorting_2,
table.dataTable.display > tbody tr > .sorting_3 {
	box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.019);
}
table.dataTable.order-column > tbody tr.selected > .sorting_1,
table.dataTable.order-column > tbody tr.selected > .sorting_2,
table.dataTable.order-column > tbody tr.selected > .sorting_3,
table.dataTable.display > tbody tr.selected > .sorting_1,
table.dataTable.display > tbody tr.selected > .sorting_2,
table.dataTable.display > tbody tr.selected > .sorting_3 {
	box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.919);
}
table.dataTable.display > tbody > tr.odd > .sorting_1,
table.dataTable.order-column.stripe > tbody > tr.odd > .sorting_1 {
	box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.054);
}
table.dataTable.display > tbody > tr.odd > .sorting_2,
table.dataTable.order-column.stripe > tbody > tr.odd > .sorting_2 {
	box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.047);
}
table.dataTable.display > tbody > tr.odd > .sorting_3,
table.dataTable.order-column.stripe > tbody > tr.odd > .sorting_3 {
	box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.039);
}
table.dataTable.display > tbody > tr.odd.selected > .sorting_1,
table.dataTable.order-column.stripe > tbody > tr.odd.selected > .sorting_1 {
	box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.954);
}
table.dataTable.display > tbody > tr.odd.selected > .sorting_2,
table.dataTable.order-column.stripe > tbody > tr.odd.selected > .sorting_2 {
	box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.947);
}
table.dataTable.display > tbody > tr.odd.selected > .sorting_3,
table.dataTable.order-column.stripe > tbody > tr.odd.selected > .sorting_3 {
	box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.939);
}
table.dataTable.display > tbody > tr.even > .sorting_1,
table.dataTable.order-column.stripe > tbody > tr.even > .sorting_1 {
	box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.019);
}
table.dataTable.display > tbody > tr.even > .sorting_2,
table.dataTable.order-column.stripe > tbody > tr.even > .sorting_2 {
	box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.011);
}
table.dataTable.display > tbody > tr.even > .sorting_3,
table.dataTable.order-column.stripe > tbody > tr.even > .sorting_3 {
	box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.003);
}
table.dataTable.display > tbody > tr.even.selected > .sorting_1,
table.dataTable.order-column.stripe > tbody > tr.even.selected > .sorting_1 {
	box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.919);
}
table.dataTable.display > tbody > tr.even.selected > .sorting_2,
table.dataTable.order-column.stripe > tbody > tr.even.selected > .sorting_2 {
	box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.911);
}
table.dataTable.display > tbody > tr.even.selected > .sorting_3,
table.dataTable.order-column.stripe > tbody > tr.even.selected > .sorting_3 {
	box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.903);
}
table.dataTable.display tbody tr:hover > .sorting_1,
table.dataTable.order-column.hover tbody tr:hover > .sorting_1 {
	box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.082);
}
table.dataTable.display tbody tr:hover > .sorting_2,
table.dataTable.order-column.hover tbody tr:hover > .sorting_2 {
	box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.074);
}
table.dataTable.display tbody tr:hover > .sorting_3,
table.dataTable.order-column.hover tbody tr:hover > .sorting_3 {
	box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.062);
}
table.dataTable.display tbody tr:hover.selected > .sorting_1,
table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_1 {
	box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.982);
}
table.dataTable.display tbody tr:hover.selected > .sorting_2,
table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_2 {
	box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.974);
}
table.dataTable.display tbody tr:hover.selected > .sorting_3,
table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_3 {
	box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.962);
}
table.dataTable.no-footer {
	border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
table.dataTable.compact thead th,
table.dataTable.compact thead td {
	padding: 4px 17px;
}
table.dataTable.compact tfoot th,
table.dataTable.compact tfoot td {
	padding: 4px;
}
table.dataTable.compact tbody th,
table.dataTable.compact tbody td {
	padding: 4px;
}
table.dataTable th,
table.dataTable td {
	box-sizing: content-box;
}
.dataTables_wrapper {
	position: relative;
	clear: both;
}
.dataTables_wrapper .dataTables_length {
	float: left;
}
.dataTables_wrapper .dataTables_length select {
	border: 1px solid #aaa;
	border-radius: 3px;
	padding: 5px;
	background-color: transparent;
	padding: 4px;
}
.dataTables_wrapper .dataTables_filter {
	float: right;
	text-align: right;
}
.dataTables_wrapper .dataTables_filter input {
	border: 1px solid #aaa;
	border-radius: 3px;
	padding: 5px;
	background-color: transparent;
	margin-left: 3px;
}
.dataTables_wrapper .dataTables_info {
	clear: both;
	float: left;
	padding-top: 0.755em;
}
.dataTables_wrapper .dataTables_paginate {
	float: right;
	text-align: right;
	padding-top: 0.25em;
}
.dataTables_wrapper .dataTables_paginate .paginate_button {
	box-sizing: border-box;
	display: inline-block;
	min-width: 1.5em;
	padding: 0.5em 1em;
	margin-left: 2px;
	text-align: center;
	text-decoration: none !important;
	cursor: pointer;
	color: #333 !important;
	border: 1px solid transparent;
	border-radius: 2px;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
	color: #333 !important;
	border: 1px solid rgba(0, 0, 0, 0.3);
	background-color: rgba(230, 230, 230, 0.1);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(230, 230, 230, 0.1)), color-stop(100%, rgba(0, 0, 0, 0.1)));
	background: -webkit-linear-gradient(top, rgba(230, 230, 230, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
	background: -moz-linear-gradient(top, rgba(230, 230, 230, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
	background: -ms-linear-gradient(top, rgba(230, 230, 230, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
	background: -o-linear-gradient(top, rgba(230, 230, 230, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
	background: linear-gradient(to bottom, rgba(230, 230, 230, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
}
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
	cursor: default;
	color: #666 !important;
	border: 1px solid transparent;
	background: transparent;
	box-shadow: none;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
	color: white !important;
	border: 1px solid #111;
	background-color: #585858;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #585858), color-stop(100%, #111));
	background: -webkit-linear-gradient(top, #585858 0%, #111 100%);
	background: -moz-linear-gradient(top, #585858 0%, #111 100%);
	background: -ms-linear-gradient(top, #585858 0%, #111 100%);
	background: -o-linear-gradient(top, #585858 0%, #111 100%);
	background: linear-gradient(to bottom, #585858 0%, #111 100%);
}
.dataTables_wrapper .dataTables_paginate .paginate_button:active {
	outline: none;
	background-color: #2b2b2b;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #2b2b2b), color-stop(100%, #0c0c0c));
	background: -webkit-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
	background: -moz-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
	background: -ms-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
	background: -o-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
	background: linear-gradient(to bottom, #2b2b2b 0%, #0c0c0c 100%);
	box-shadow: inset 0 0 3px #111;
}
.dataTables_wrapper .dataTables_paginate .ellipsis {
	padding: 0 1em;
}
.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_processing,
.dataTables_wrapper .dataTables_paginate {
	color: #333;
}
.dataTables_wrapper .dataTables_scroll {
	clear: both;
}
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody {
	-webkit-overflow-scrolling: touch;
}
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > th,
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > td,
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > th,
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > td {
	vertical-align: middle;
}
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > th > div.dataTables_sizing,
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > td > div.dataTables_sizing,
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > th > div.dataTables_sizing,
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > td > div.dataTables_sizing {
	height: 0;
	overflow: hidden;
	margin: 0 !important;
	padding: 0 !important;
}
.dataTables_wrapper.no-footer .dataTables_scrollBody {
	border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.dataTables_wrapper.no-footer div.dataTables_scrollHead table.dataTable,
.dataTables_wrapper.no-footer div.dataTables_scrollBody > table {
	border-bottom: none;
}
.dataTables_wrapper:after {
	visibility: hidden;
	display: block;
	content: "";
	clear: both;
	height: 0;
}
@media screen and (max-width: 767px) {
	.dataTables_wrapper .dataTables_info,
	.dataTables_wrapper .dataTables_paginate {
		float: none;
		text-align: center;
	}
	.dataTables_wrapper .dataTables_paginate {
		margin-top: 0.5em;
	}
}
@media screen and (max-width: 640px) {
	.dataTables_wrapper .dataTables_length,
	.dataTables_wrapper .dataTables_filter {
		float: none;
		text-align: center;
	}
	.dataTables_wrapper .dataTables_filter {
		margin-top: 0.5em;
	}
} /*
* Container style
*/
.ps {
	overflow: hidden !important;
	overflow-anchor: none;
	-ms-overflow-style: none;
	touch-action: auto;
	-ms-touch-action: auto;
}

/*
* Scrollbar rail styles
*/
.ps__rail-x {
	display: none;
	opacity: 0;
	transition: background-color 0.2s linear, opacity 0.2s linear;
	-webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
	height: 15px;
	/* there must be 'bottom' or 'top' for ps__rail-x */
	bottom: 0px;
	/* please don't change 'position' */
	position: absolute;
}

.ps__rail-y {
	display: none;
	opacity: 0;
	transition: background-color 0.2s linear, opacity 0.2s linear;
	-webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
	width: 15px;
	/* there must be 'right' or 'left' for ps__rail-y */
	right: 0;
	/* please don't change 'position' */
	position: absolute;
}

.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
	display: block;
	background-color: transparent;
}

.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
	opacity: 0.6;
}

.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
	background-color: #eee;
	opacity: 0.9;
}

/*
* Scrollbar thumb styles
*/
.ps__thumb-x {
	background-color: #aaa;
	border-radius: 6px;
	transition: background-color 0.2s linear, height 0.2s ease-in-out;
	-webkit-transition: background-color 0.2s linear, height 0.2s ease-in-out;
	height: 6px;
	/* there must be 'bottom' for ps__thumb-x */
	bottom: 2px;
	/* please don't change 'position' */
	position: absolute;
}

.ps__thumb-y {
	background-color: #aaa;
	border-radius: 6px;
	transition: background-color 0.2s linear, width 0.2s ease-in-out;
	-webkit-transition: background-color 0.2s linear, width 0.2s ease-in-out;
	width: 6px;
	/* there must be 'right' for ps__thumb-y */
	right: 2px;
	/* please don't change 'position' */
	position: absolute;
}

.ps__rail-x:hover > .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
	background-color: #999;
	height: 11px;
}

.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
	background-color: #999;
	width: 11px;
}

/* MS supports */
@supports (-ms-overflow-style: none) {
	.ps {
		overflow: auto !important;
	}
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
	.ps {
		overflow: auto !important;
	}
}
:root {
	--height: 100%;
}

/* mixin usage */
/*--------------------------------
Responsive ratio
Used for creating scalable elements that maintain the same ratio
example:
.element {
@include responsive-ratio(400, 300);
}
*/
.header__info,
.navbar__nav,
.navbar__nav > li .sub-menu,
.footer__navbar-nav,
.copyright ul,
.recent__text ul,
.social,
.program__list-slide,
.program__tabset,
.program__tab-list,
.program ul:not([class]):not([id]),
.about__accordion-list,
.about__accordion-list > li > ul,
.about__accordion-list ul,
.content-area__wrap-text ul,
.news__list,
.tags__list,
.news-listing__filter-list,
.news-listing__pagination ul,
.share__btn .social,
.letters__list,
.letters__col ul,
.breadcrumb,
.areas__map-pins,
.popup ul,
.vertical-tabs__list,
.vertical-tabs__content ul,
.accordion__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.clearfix:after {
	content: "";
	display: block;
	clear: both;
}

.ellipsis {
	white-space: nowrap;
	/* 1 */
	text-overflow: ellipsis;
	/* 2 */
	overflow: hidden;
}

html {
	box-sizing: border-box;
	scroll-behavior: smooth;
}

*,
*:before,
*:after {
	box-sizing: inherit;
}

* {
	max-height: 1000000px;
}

body {
	color: #000;
	background: #fff;
	font: 16px/1.375 "aktiv-grotesk", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	min-width: 320px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: top;
}

.gm-style img {
	max-width: none;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
.h {
	font-family: "freight-text-pro", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	font-weight: 500;
	letter-spacing: 0.01em;
	margin: 0 0 0.5em;
	color: #000;
}

h1,
.h1 {
	font-size: 40px;
}

h2,
.h2 {
	font-size: 28px;
}

h3,
.h3 {
	font-size: 18px;
}

h4,
.h4 {
	font-size: 18px;
}

h5,
.h5 {
	font-size: 16px;
}

h6,
.h6 {
	font-size: 14px;
}

p {
	margin: 0 0 1em;
}

a {
	color: #16445c;
}
a:hover,
a:focus {
	text-decoration: none;
}

form,
fieldset {
	margin: 0;
	padding: 0;
	border-style: none;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="search"],
input[type="password"],
input[type="url"],
input[type="date"],
textarea {
	font-size: 16px;
	-webkit-appearance: none;
	-webkit-border-radius: 0;
	appearance: none;
	box-sizing: border-box;
	outline: none;
	background: #fff;
	height: 45px;
	padding: 10px 18px;
	width: 100%;
	margin: 0 0 8px;
	border: 0.75px solid #d2d2d2;
	border-radius: 4px;
}
@media (min-width: 768px) {
	input[type="text"],
	input[type="tel"],
	input[type="email"],
	input[type="search"],
	input[type="password"],
	input[type="url"],
	input[type="date"],
	textarea {
		margin: 0 0 16px;
	}
}
@media (min-width: 1024px) {
	input[type="text"],
	input[type="tel"],
	input[type="email"],
	input[type="search"],
	input[type="password"],
	input[type="url"],
	input[type="date"],
	textarea {
		margin: 0 0 24px;
	}
}
input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
input[type="url"]::-webkit-input-placeholder,
input[type="date"]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color: #000;
}
input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="email"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder,
input[type="url"]::-moz-placeholder,
input[type="date"]::-moz-placeholder,
textarea::-moz-placeholder {
	opacity: 1;
	color: #000;
}
input[type="text"]:-moz-placeholder,
input[type="tel"]:-moz-placeholder,
input[type="email"]:-moz-placeholder,
input[type="search"]:-moz-placeholder,
input[type="password"]:-moz-placeholder,
input[type="url"]:-moz-placeholder,
input[type="date"]:-moz-placeholder,
textarea:-moz-placeholder {
	color: #000;
}
input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder,
input[type="url"]:-ms-input-placeholder,
input[type="date"]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	color: #000;
}
input[type="text"].placeholder,
input[type="tel"].placeholder,
input[type="email"].placeholder,
input[type="search"].placeholder,
input[type="password"].placeholder,
input[type="url"].placeholder,
input[type="date"].placeholder,
textarea.placeholder {
	color: #000;
}

select {
	-webkit-border-radius: 0;
}

textarea {
	resize: vertical;
	vertical-align: top;
}

button,
input[type="button"],
input[type="reset"],
input[type="file"],
input[type="submit"] {
	-webkit-appearance: none;
	-webkit-border-radius: 0;
	cursor: pointer;
}

/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
* 1. Set default font family to sans-serif.
* 2. Prevent iOS and IE text size adjust after device orientation change,
*    without disabling user zoom.
*/
html {
	font-family: sans-serif;
	/* 1 */
	-ms-text-size-adjust: 100%;
	/* 2 */
	-webkit-text-size-adjust: 100%;
	/* 2 */
}

/**
* Remove default margin.
*/
body {
	margin: 0;
}

/* HTML5 display definitions
========================================================================== */
/**
* Correct `block` display not defined for any HTML5 element in IE 8/9.
* Correct `block` display not defined for `details` or `summary` in IE 10/11
* and Firefox.
* Correct `block` display not defined for `main` in IE 11.
*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
	display: block;
}

/**
* 1. Correct `inline-block` display not defined in IE 8/9.
* 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
*/
audio,
canvas,
progress,
video {
	display: inline-block;
	/* 1 */
	vertical-align: baseline;
	/* 2 */
}

/**
* Prevent modern browsers from displaying `audio` without controls.
* Remove excess height in iOS 5 devices.
*/
audio:not([controls]) {
	display: none;
	height: 0;
}

/**
* Address `[hidden]` styling not present in IE 8/9/10.
* Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
*/
[hidden],
template {
	display: none;
}

/* Links
========================================================================== */
/**
* Remove the gray background color from active links in IE 10.
*/
a {
	background-color: transparent;
}

/**
* Improve readability of focused elements when they are also in an
* active/hover state.
*/
a:active,
a:hover {
	outline: 0;
}

/* Text-level semantics
========================================================================== */
/**
* Address styling not present in IE 8/9/10/11, Safari, and Chrome.
*/
abbr[title] {
	border-bottom: 1px dotted;
}

/**
* Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
*/
b,
strong {
	font-weight: bold;
}

/**
* Address styling not present in Safari and Chrome.
*/
dfn {
	font-style: italic;
}

/**
* Address variable `h1` font-size and margin within `section` and `article`
* contexts in Firefox 4+, Safari, and Chrome.
*/
/**
* Address styling not present in IE 8/9.
*/
mark {
	background: #ff0;
	color: #000;
}

/**
* Address inconsistent and variable font size in all browsers.
*/
small {
	font-size: 80%;
}

/**
* Prevent `sub` and `sup` affecting `line-height` in all browsers.
*/
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

/* Embedded content
========================================================================== */
/**
* Remove border when inside `a` element in IE 8/9/10.
*/
img {
	border: 0;
}

/**
* Correct overflow not hidden in IE 9/10/11.
*/
svg:not(:root) {
	overflow: hidden;
}

/* Grouping content
========================================================================== */
/**
* Address margin not present in IE 8/9 and Safari.
*/
figure {
	margin: 1em 40px;
}

/**
* Address differences between Firefox and other browsers.
*/
hr {
	box-sizing: content-box;
	height: 0;
}

/**
* Contain overflow in all browsers.
*/
pre {
	overflow: auto;
}

/**
* Address odd `em`-unit font size rendering in all browsers.
*/
code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

/* Forms
========================================================================== */
/**
* Known limitation: by default, Chrome and Safari on OS X allow very limited
* styling of `select`, unless a `border` property is set.
*/
/**
* 1. Correct color not being inherited.
*    Known issue: affects color of disabled elements.
* 2. Correct font properties not being inherited.
* 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
*/
button,
input,
optgroup,
select,
textarea {
	color: inherit;
	/* 1 */
	font: inherit;
	/* 2 */
	margin: 0;
	/* 3 */
}

/**
* Address `overflow` set to `hidden` in IE 8/9/10/11.
*/
button {
	overflow: visible;
}

/**
* Address inconsistent `text-transform` inheritance for `button` and `select`.
* All other form control elements do not inherit `text-transform` values.
* Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
* Correct `select` style inheritance in Firefox.
*/
button,
select {
	text-transform: none;
}

/**
* 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
*    and `video` controls.
* 2. Correct inability to style clickable `input` types in iOS.
* 3. Improve usability and consistency of cursor style between image-type
*    `input` and others.
*/
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	/* 2 */
	cursor: pointer;
	/* 3 */
}

/**
* Re-set default cursor for disabled elements.
*/
button[disabled],
html input[disabled] {
	cursor: default;
}

/**
* Remove inner padding and border in Firefox 4+.
*/
button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

/**
* Address Firefox 4+ setting `line-height` on `input` using `!important` in
* the UA stylesheet.
*/
input {
	line-height: normal;
}

/**
* It's recommended that you don't attempt to style these elements.
* Firefox's implementation doesn't respect box-sizing, padding, or width.
*
* 1. Address box sizing set to `content-box` in IE 8/9/10.
* 2. Remove excess padding in IE 8/9/10.
*/
input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	/* 1 */
	padding: 0;
	/* 2 */
}

/**
* Fix the cursor style for Chrome's increment/decrement buttons. For certain
* `font-size` values of the `input`, it causes the cursor style of the
* decrement button to change from `default` to `text`.
*/
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

/**
* 1. Address `appearance` set to `searchfield` in Safari and Chrome.
* 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
*/
input[type="search"] {
	-webkit-appearance: textfield;
	/* 1 */
}

/**
* Remove inner padding and search cancel button in Safari and Chrome on OS X.
* Safari (but not Chrome) clips the cancel button when the search input has
* padding (and `textfield` appearance).
*/
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
* Define consistent border, margin, and padding.
*/
fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

/**
* 1. Correct `color` not being inherited in IE 8/9/10/11.
* 2. Remove padding so people aren't caught out if they zero out fieldsets.
*/
legend {
	border: 0;
	/* 1 */
	padding: 0;
	/* 2 */
}

/**
* Remove default vertical scrollbar in IE 8/9/10/11.
*/
textarea {
	overflow: auto;
}

/**
* Don't inherit the `font-weight` (applied by a rule above).
* NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
*/
optgroup {
	font-weight: bold;
}

/* Tables
========================================================================== */
/**
* Remove most spacing between table cells.
*/
table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: #fff;
	z-index: 999;
	flex-shrink: 0;
	box-shadow: 0 4px 4px rgba(201, 201, 201, 0.15);
}
.header:not(.fixed) .banner + .container {
	padding-top: 44px;
	padding-bottom: 6px;
}
@media (min-width: 768px) {
	.header:not(.fixed) .banner + .container {
		padding-top: 39px;
		padding-bottom: 34px;
	}
}
@media (min-width: 1200px) {
	.header:not(.fixed) .banner + .container .navbar__nav {
		margin-bottom: -44px;
	}
}
@media (min-width: 1200px) {
	.header:not(.fixed) .banner + .container .navbar__nav > li {
		padding-bottom: 44px;
	}
}
@media (max-width: 1023px) {
	.header:not(.fixed) .banner + .container .nav-opener {
		margin-top: 3px;
	}
}
@media (max-width: 767px) {
	.header:not(.fixed) .banner + .container .nav-opener {
		margin-top: 20px;
		margin-right: -2px;
	}
}
@media (max-width: 419px) {
	.header:not(.fixed) .banner + .container .nav-opener {
		margin-top: 19px;
		margin-right: 0;
	}
}
.header.fixed .banner {
	opacity: 0;
	visibility: hidden;
}
@media (min-width: 1200px) {
	.header.fixed > .container {
		align-items: center;
		padding-top: 21px;
		padding-bottom: 10px;
	}
}
.header.fixed .logo {
	width: 130px;
}
@media (min-width: 420px) {
	.header.fixed .logo {
		width: 166px;
	}
}
@media (min-width: 1200px) {
	.header.fixed .logo {
		margin-top: -12px;
	}
}
.header.fixed .logo__static {
	display: none;
}
.header.fixed .logo__fixed {
	display: block;
}
@media (min-width: 1200px) {
	.header.fixed .navbar__nav {
		margin-bottom: -18px;
	}
}
@media (min-width: 1200px) {
	.header.fixed .navbar__nav > li {
		padding-bottom: 20px;
	}
}
.header.fixed .header__wrap {
	width: calc(100% - 130px);
}
@media (min-width: 420px) {
	.header.fixed .header__wrap {
		width: calc(100% - 166px);
	}
}
.header .banner {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
}
.header > .container {
	transition: padding 0.3s ease-in-out;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 9px 15px 10px;
}
@media (min-width: 420px) {
	.header > .container {
		padding: 9px 15px 10px 34px;
	}
}
@media (min-width: 1024px) {
	.header > .container {
		padding-top: 26px;
		padding-bottom: 22px;
	}
}
@media (min-width: 1200px) {
	.header > .container {
		padding: 26px 15px 22px;
		align-items: flex-end;
	}
}
.header__wrap {
	transition: width 0.3s ease-in-out;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: calc(100% - 101px);
}
@media (min-width: 768px) {
	.header__wrap {
		width: calc(100% - 161px);
	}
}
@media (min-width: 1200px) {
	.header__wrap {
		position: relative;
		padding: 0 138px 7px 0;
	}
}
.header__info {
	display: flex;
	flex-wrap: wrap;
	margin: 5px 30px 0 0;
}
@media (min-width: 420px) {
	.header__info {
		margin: 5px 47px 0 0;
	}
}
@media (min-width: 1024px) {
	.header__info {
		margin: -2px 56px 0 0;
	}
}
@media (min-width: 1200px) {
	.header__info {
		margin: 0 30px 0 -8px;
	}
}
.header__info li {
	padding: 0 6px;
}
@media (min-width: 1200px) {
	.header__info li {
		padding: 0 8px;
	}
}
.header__info a {
	transition: opacity 0.3s ease-in-out;
}
.header__info a:hover {
	opacity: 0.7;
}
.header__info a img {
	width: 16px;
}
@media (min-width: 768px) {
	.header__info a img {
		width: auto;
	}
}
.header__search {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: #fff;
	z-index: 10;
	padding: 28px 0 25px;
	box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
	opacity: 0;
	visibility: hidden;
}
.search-active .header__search {
	opacity: 1;
	visibility: visible;
}
.header__search form {
	position: relative;
	max-width: 760px;
	margin: 0 auto;
}
.header__search form input[type="search"] {
	font-size: 13px;
	line-height: 1.154;
	letter-spacing: 0.02em;
	border: none;
	color: #05293c;
	width: 100%;
	height: 41px;
	border-radius: 0;
	border-bottom: 2px solid #e3b03b;
	margin: 0;
	padding: 5px 34px 0 4px;
}
.header__search form input[type="search"]::-webkit-input-placeholder {
	color: #05293c;
}
.header__search form input[type="search"]::-moz-placeholder {
	opacity: 1;
	color: #05293c;
}
.header__search form input[type="search"]:-moz-placeholder {
	color: #05293c;
}
.header__search form input[type="search"]:-ms-input-placeholder {
	color: #05293c;
}
.header__search form input[type="search"].placeholder {
	color: #05293c;
}
@media (min-width: 768px) {
	.header__search form input[type="search"] {
		padding: 5px 50px 0 4px;
	}
}
.header__search form button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 6px;
	width: 20px;
	padding: 0;
}
@media (min-width: 768px) {
	.header__search form button {
		width: 30px;
		right: 13px;
		margin-top: -5px;
	}
}
.header__search form button:before {
	content: "";
	display: block;
	width: 19px;
	height: 19px;
	background-size: 19px 19px;
	background-repeat: no-repeat;
	background-image: url(./1b755ab35825e29e388fce069c994a34.png);
}
@media (min-width: 768px) {
	.header__search form button:before {
		width: 29px;
		height: 29px;
		background-size: 29px 29px;
	}
}

.logo {
	transition: width 0.3s ease-in-out;
	position: relative;
	display: block;
	width: 101px;
}
@media (min-width: 768px) {
	.logo {
		width: 161px;
	}
}
.logo a {
	display: block;
}
.logo__fixed {
	display: none;
}

.navbar {
	transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
@media (max-width: 1199px) {
	.navbar {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: #f2dbab;
		padding: 15px 0;
		opacity: 0;
		visibility: hidden;
	}
}
.nav-active .navbar {
	opacity: 1;
	visibility: visible;
}
.navbar__nav {
	transition: margin 0.3s ease-in-out;
	font-size: 16px;
	line-height: 1.25;
	font-weight: 400;
}
@media (min-width: 1200px) {
	.navbar__nav {
		display: flex;
		flex-wrap: wrap;
		margin: 0 27px -32px -13px;
	}
}
.navbar__nav > li {
	transition: padding 0.3s ease-in-out;
	position: relative;
}
@media (min-width: 1200px) {
	.navbar__nav > li {
		padding: 0 13px 30px;
	}
}
.navbar__nav > li:hover:after {
	opacity: 1;
	visibility: visible;
}
.navbar__nav > li:hover .sub-menu {
	opacity: 1;
	visibility: visible;
}
.navbar__nav > li.active a:after {
	transform: translateY(-50%) rotate(180deg);
}
@media (min-width: 1200px) {
	.navbar__nav > li.active:after {
		visibility: visible;
		opacity: 1;
	}
}
.navbar__nav > li:after {
	transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
@media (min-width: 1200px) {
	.navbar__nav > li:after {
		content: "";
		position: absolute;
		bottom: 0;
		left: 6px;
		right: 6px;
		height: 6px;
		background: #e3b03b;
		opacity: 0;
		visibility: hidden;
	}
}
.navbar__nav > li a {
	transition: text-shadow 0.3s ease-in-out;
	display: block;
	position: relative;
	padding: 10px 40px 10px 15px;
}
@media (min-width: 420px) {
	.navbar__nav > li a {
		padding: 10px 65px 10px 34px;
	}
}
@media (min-width: 1200px) {
	.navbar__nav > li a {
		padding: 0;
	}
}
.navbar__nav > li a:hover {
	text-shadow: 0 0 #16445c;
}
.navbar__nav > li a:after {
	transition: transform 0.3s ease-in-out;
	content: "";
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	border-style: solid;
	border-width: 12.1px 7px 0 7px;
	border-color: #16445c transparent transparent transparent;
}
@media (min-width: 420px) {
	.navbar__nav > li a:after {
		right: 38px;
	}
}
@media (min-width: 1200px) {
	.navbar__nav > li a:after {
		display: none;
	}
}
.navbar__nav > li a:only-child:after {
	display: none;
}
.navbar__nav > li .sub-menu {
	transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
	font-size: 14px;
	line-height: 1.143;
	background: #fff;
	padding: 4px 0 6px;
}
@media (min-width: 1200px) {
	.navbar__nav > li .sub-menu {
		position: absolute;
		top: 100%;
		left: 6px;
		right: 6px;
		text-align: center;
		opacity: 0;
		visibility: hidden;
		z-index: 91;
		background: #e3e3e3;
		box-shadow: 0 3px 17px rgba(0, 0, 0, 0.45);
	}
}
.navbar__nav > li .sub-menu a {
	transition: background 0.3s ease-in-out, font-weight 0.3s ease-in-out;
	display: block;
	padding: 10px 15px 8px;
	color: #000;
}
@media (min-width: 420px) {
	.navbar__nav > li .sub-menu a {
		padding: 10px 34px 8px;
	}
}
@media (min-width: 1200px) {
	.navbar__nav > li .sub-menu a {
		padding: 10px 10px 8px;
	}
}
.navbar__nav > li .sub-menu a:hover {
	background: #97b7a1;
	font-weight: 500;
}
.navbar .btn {
	font-size: 14px;
	margin: 10px;
}
@media (min-width: 420px) {
	.navbar .btn {
		margin: 10px 30px;
	}
}
@media (min-width: 768px) {
	.navbar .btn {
		font-size: 16px;
	}
}
@media (min-width: 1200px) {
	.navbar .btn {
		position: absolute;
		top: 50%;
		right: 0;
		transform: translateY(-50%);
		margin: -5px 0 0;
	}
}

.nav-opener {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 5px;
	width: 34px;
	height: 34px;
	text-indent: -9999px;
	overflow: hidden;
	text-decoration: none;
	z-index: 999;
}
@media (min-width: 420px) {
	.nav-opener {
		right: 28px;
	}
}
@media (min-width: 1200px) {
	.nav-opener {
		display: none;
	}
}
.nav-opener:before,
.nav-opener:after,
.nav-opener span {
	background: #e3b03b;
	position: absolute;
	top: 16px;
	left: 20%;
	right: 20%;
	height: 2px;
	border-radius: 9px;
	transition: all 0.2s linear;
}
@media (min-width: 768px) {
	.nav-opener:before,
	.nav-opener:after,
	.nav-opener span {
		left: 15%;
		right: 15%;
	}
}
.nav-opener:before,
.nav-opener:after {
	content: "";
	top: 10px;
}
@media (min-width: 768px) {
	.nav-opener:before,
	.nav-opener:after {
		top: 8px;
	}
}
.nav-opener:after {
	top: 22px;
}
@media (min-width: 768px) {
	.nav-opener:after {
		top: 24px;
	}
}
.nav-active .nav-opener:before,
.nav-active .nav-opener:after {
	transform: rotate(45deg);
	top: 18px;
	left: 15%;
	right: 15%;
	margin-top: -2px;
}
@media (min-width: 768px) {
	.nav-active .nav-opener:before,
	.nav-active .nav-opener:after {
		left: 10%;
		right: 10%;
	}
}
.nav-active .nav-opener span {
	opacity: 0;
}
.nav-active .nav-opener:after {
	transform: rotate(-45deg);
}

.resize-active * {
	transition: none !important;
}

body {
	display: flex;
}
@media (min-width: 768px) {
	body {
		font-size: 18px;
		line-height: 1.333333;
	}
}
body.nav-active {
	overflow: hidden;
}

#wrapper {
	min-height: 100vh;
	width: 100%;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	position: relative;
	padding-top: 75px;
	/*background-color: #ffffff;*/
}
@media (min-width: 768px) {
	#wrapper {
		padding-top: 109px;
	}
}
@media (min-width: 1024px) {
	#wrapper {
		padding-top: 138px;
	}
}
#wrapper.has-banner {
	padding-top: 107px;
}
@media (min-width: 768px) {
	#wrapper.has-banner {
		padding-top: 163px;
	}
}

h1 {
	line-height: 1.125;
}
@media (min-width: 1024px) {
	h1 {
		font-size: 64px;
	}
}

h2 {
	line-height: 1.125;
}
@media (min-width: 768px) {
	h2 {
		font-size: 48px;
	}
}

@media (min-width: 768px) {
	h3 {
		font-size: 36px;
	}
}

a {
	transition: color 0.3s ease-in-out;
	text-decoration: none;
}

.btn {
	transition: color 0.3s ease-in-out, background 0.3s ease-in-out;
	font-size: 16px;
	line-height: 1.2;
	letter-spacing: 0.01em;
	position: relative;
	display: inline-block;
	vertical-align: middle;
	text-align: center;
	background: #16445c;
	color: #fff;
	border-radius: 3em;
	padding: 13px 18px;
	min-width: 165px;
}
.btn:hover {
	background: #3e6c84;
}
.btn--sm {
	min-width: 139px;
}
.btn--lg {
	min-width: 209px;
}
@media (min-width: 768px) {
	.btn--lg {
		min-width: 196px;
	}
}
.btn--xl {
	min-width: 275px;
}
.btn--yellow {
	background: #e3b03b;
	color: #000;
}
.btn--yellow:hover {
	background: #ffce59;
}
.btn--hero {
	min-width: 275px;
	background: #f2f6f0;
	color: #16445c;
}
.btn--hero:hover {
	background: #d8e6d1;
}

.container {
	max-width: 1146px;
	margin: 0 auto;
	padding: 0 15px;
}

main {
	flex-grow: 1;
}

button {
	background: transparent;
	border: none;
	outline: none;
}

.line {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 2px;
	background: #e3b03b;
}
.line--blue {
	background: #16445c;
}
.in-viewport .line {
	opacity: 1;
	visibility: visible;
}
@media (min-width: 1024px) {
	.in-viewport .line {
		animation: lineFadeDown 2s ease-in-out;
	}
}

.intro-text {
	padding: 52px 0;
	text-align: center;
	color: #343236;
	background-color: #ffffff;
}
.intro-text .container {
	max-width: 815px;
}
.intro-text h2 {
	margin: 0 0 14px;
}

.visual img {
	width: 100%;
	object-fit: cover;
}

.full-img {
	margin: 0 -15px;
}
@media (min-width: 768px) {
	.full-img {
		margin: 0 -39px;
	}
}

.share + .full-img {
	margin-top: 30px;
}
@media (min-width: 768px) {
	.share + .full-img {
		margin-top: 55px;
	}
}

.page-not-found {
	padding: 52px 25px 36px;
	text-align: center;
}
@media (min-width: 768px) {
	.page-not-found {
		padding: 72px 0 56px;
	}
}
.page-not-found__icon {
	width: 96px;
	margin: 0 0 34px;
}
@media (min-width: 768px) {
	.page-not-found__icon {
		margin: 0 0 42px;
	}
}
.page-not-found h2 {
	margin: 0 0 17px;
}
@media (min-width: 768px) {
	.page-not-found h2 {
		margin: 0 0 12px;
	}
}

.js-tab-hidden {
	display: block !important;
	left: -9999px !important;
	position: absolute !important;
	top: -9999px !important;
}

.sr-only {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

.sr-help-link {
	font-weight: 500;
	color: #16445c;
	padding: 6px;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
	clip: auto;
	height: auto;
	margin: 0;
	overflow: visible;
	position: static;
	width: auto;
}

@keyframes progress {
	0% {
		stroke-dasharray: 0 100;
	}
}

@keyframes lineFadeDown {
	0% {
		opacity: 0;
		height: 0;
	}
	100% {
		opacity: 1;
		height: calc(100% + var(--height));
	}
}

@keyframes lineFadeUp {
	0% {
		opacity: 0;
		height: 0;
	}
	100% {
		opacity: 1;
		height: calc(100% - var(--height));
	}
}

.footer {
	flex-shrink: 0;
	background: #16445c;
}
.footer__main {
	position: relative;
	padding: 26px 0 5px;
}
@media (min-width: 768px) {
	.footer__main {
		padding: 35px 0 40px;
	}
}
@media (min-width: 1024px) {
	.footer__main {
		padding: 50px 0 40px;
	}
}
.footer__main:after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	width: 414px;
	height: 441px;
	opacity: 0.6;
	background-image: url(./0bd31bc369e50bdae670222e75032a41.png);
	background-repeat: no-repeat;
	background-size: 414px 441px;
}
@media (min-width: 1024px) {
	.footer__main:after {
		top: 0;
		left: auto;
		bottom: 0;
		right: 38px;
		width: 521px;
		height: 359px;
		background-size: 521px 359px;
		background-image: url(./cb09bda2ab65b8260cdf7e52474ff98b.png);
	}
}
.footer__main .container {
	position: relative;
}
@media (min-width: 1024px) {
	.footer__main .container {
		display: flex;
		flex-wrap: wrap;
	}
}
.footer__main__logo {
	width: 285px;
}
.footer .logo {
	width: 101px;
	margin: 0 auto 25px;
}
@media (min-width: 768px) {
	.footer .logo {
		width: 220px;
	}
}
@media (min-width: 1024px) {
	.footer .logo {
		width: 285px;
		margin: 0 0 50px;
	}
}
.footer .social {
	padding: 0 0 32px;
}
@media (min-width: 768px) {
	.footer .social {
		padding: 0 0 50px;
	}
}
@media (min-width: 1024px) {
	.footer .social {
		padding: 0 0 0 7px;
	}
}
.footer__navbar {
	position: relative;
	z-index: 5;
	max-width: 168px;
	margin: 0 auto;
	text-align: center;
}
@media (min-width: 768px) {
	.footer__navbar {
		display: flex;
		flex-wrap: wrap;
		max-width: none;
		margin: 0;
		text-align: left;
	}
}
@media (min-width: 1024px) {
	.footer__navbar {
		padding: 18px 0 0 84px;
		width: calc(100% - 285px);
	}
}
.footer__navbar-nav {
	position: relative;
	font-size: 16px;
	line-height: 1.25;
	padding: 0 0 27px;
}
@media (min-width: 768px) {
	.footer__navbar-nav {
		width: 25%;
		padding: 0 10px;
	}
}
.footer__navbar-nav:last-child:before {
	content: "";
	position: absolute;
	top: -16px;
	left: -34px;
	right: -34px;
	height: 1px;
	background: #000;
}
@media (min-width: 768px) {
	.footer__navbar-nav:last-child:before {
		top: -6px;
		right: auto;
		left: -8px;
		bottom: 0;
		width: 1px;
		height: auto;
	}
}
.footer__navbar-nav li {
	margin: 0 0 10px;
}
@media (min-width: 768px) {
	.footer__navbar-nav li {
		margin: 0 0 22px;
	}
}
.footer__navbar-nav li:first-child a {
	color: #e3b03b;
	font-weight: 500;
}
.footer__navbar-nav li:first-child a:hover {
	color: #fff;
}
.footer__navbar-nav a {
	color: #fff;
}
.footer__navbar-nav a:hover {
	color: #e3b03b;
}
.footer__navbar-nav--yellow-link a {
	color: #e3b03b;
	font-weight: 500;
}
.footer__navbar-nav--yellow-link a:hover {
	color: #fff;
}

.copyright {
	background: #97b7a1;
	padding: 33px 0;
	color: #000000;
}
@media (min-width: 768px) {
	.copyright {
		padding: 10px 0;
	}
}
.copyright ul {
	font-size: 16px;
	line-height: 1.25;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.copyright ul li {
	position: relative;
	padding: 0 12px;
	text-align: center;
	color: #000000;
}
.copyright ul a {
	color: #000000;
}
@media (min-width: 768px) {
	.copyright ul li {
		text-align: left;
	}
}
.copyright ul li:first-child {
	width: 100%;
	margin: 0 0 6px;
}
@media (min-width: 768px) {
	.copyright ul li:first-child {
		width: auto;
		margin: 0;
	}
}
@media (max-width: 767px) {
	.copyright ul li:first-child:after {
		display: none;
	}
}
.copyright ul li:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 1px;
	background: #000;
}
@media (min-width: 768px) {
	.copyright ul li:after {
		top: 3px;
		bottom: 3px;
	}
}
.copyright ul li:last-child:after {
	display: none;
}
.copyright ul a {
	color: #000;
}
.copyright ul a:hover {
	color: #16445c;
	text-decoration: underline;
}

.banner .container {
	display: flex;
	justify-content: flex-end;
	padding: 0;
}
@media (min-width: 768px) {
	.banner .container {
		padding: 0 15px;
	}
}

.banner__text {
	position: relative;
	background: #f2dbab;
	font-size: 11px;
	line-height: 1.36;
	font-weight: 500;
	padding: 13px 27px 7px 35px;
	letter-spacing: 0.02em;
	color: #16445c;
	width: 100%;
	white-space: nowrap;
}
@media (min-width: 768px) {
	.banner__text {
		font-size: 14px;
		white-space: normal;
		width: 90%;
		border-radius: 0 0 0 26px;
		padding: 13px 27px 7px;
	}
}
@media (min-width: 1024px) {
	.banner__text {
		width: 83%;
	}
}
.banner__text:after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	padding: 0 9999px 0 0;
	margin: 0 -9999px 0 0;
	background: #f2dbab;
}
.banner__text p {
	margin: 0;
}

.banner + .header {
	padding: 0 0 36px;
	margin-top: -15px;
}

.hero {
	--height: 47px;
	position: relative;
	background-color: #000;
}
@media (min-width: 768px) {
	.hero:before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background-image: url(./6168e9d32443455ffc8a1e75c7fdde2e.png);
		background-size: cover;
		background-position: 50% 50%;
		background-repeat: no-repeat;
		z-index: 10;
	}
}
.hero picture img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hero .container {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: 537px;
	padding: 0 25px 45px;
}
@media (min-width: 768px) {
	.hero .container {
		min-height: 468px;
		align-items: center;
		padding: 0 15px;
		z-index: 10;
	}
}
.hero .line {
	display: none;
}
@media (min-width: 768px) {
	.hero .line {
		display: block;
		bottom: calc(var(--height) * -1);
		left: 15px;
	}
}
@media (min-width: 1024px) {
	.hero .line {
		left: 20px;
		animation: lineFadeDown 2s ease-in-out;
	}
}
@media (min-width: 1200px) {
	.hero .line {
		left: 15px;
	}
}
.hero__text {
	position: relative;
	padding: 27px 26px 23px 26px;
	max-width: 375px;
	color: #fff;
	border-left: 2px solid #e3b03b;
}
@media (min-width: 768px) {
	.hero__text {
		padding: 50px 0 62px 30px;
		max-width: 360px;
		border: none;
	}
}
@media (min-width: 1024px) {
	.hero__text {
		padding: 50px 0 62px 60px;
		max-width: 574px;
	}
}
.hero__text * {
	position: relative;
	z-index: 10;
}
.hero__text:before {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	width: 118px;
	height: 182px;
	background-image: url(./a7685bc0f5de356503f6d879d2d9fdcd.png);
	background-size: 118px 182px;
	background-repeat: no-repeat;
	opacity: 0.6;
	z-index: 5;
}
@media (min-width: 768px) {
	.hero__text:before {
		display: none;
	}
}
.hero__text:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #16445c;
	mix-blend-mode: multiply;
}
@media (min-width: 768px) {
	.hero__text:after {
		display: none;
	}
}
.hero h1 {
	font-size: 36px;
	color: #fff;
	margin: 0 0 13px;
}
@media (min-width: 420px) {
	.hero h1 {
		font-size: 46px;
	}
}
@media (min-width: 768px) {
	.hero h1 {
		margin: 0 0 26px;
	}
}
@media (min-width: 1024px) {
	.hero h1 {
		font-size: 64px;
		margin: 0 0 40px;
	}
}
.hero .btn {
	font-size: 16px;
	font-weight: 500;
	padding: 13px 33px;
}
@media (min-width: 768px) {
	.hero .btn {
		font-size: 20px;
		padding: 18px 30px;
	}
}
@media (min-width: 1024px) {
	.hero .btn {
		font-size: 24px;
	}
}
@media (max-width: 767px) {
	.hero .btn {
		min-width: 209px;
	}
}
.hero--without-image {
	background: #16445c;
}
.hero--without-image:before {
	left: auto;
	width: 584px;
	height: 468px;
	background-size: 584px 468px;
	background-image: url(./43ee9d8e40e32ab2f1d480bbd0ec9fdf.png);
	background-repeat: no-repeat;
}
@media (max-width: 767px) {
	.hero--without-image:before {
		content: "";
		position: absolute;
		top: 0;
		right: -2px;
		width: 288px;
		height: 468px;
		background-size: 288px 468px;
		background-image: url(./424a4ac95e99a45dc03586788d4a79f3.png);
	}
}
@media (max-width: 767px) {
	.hero--without-image .container {
		min-height: 468px;
	}
}
@media (max-width: 767px) {
	.hero--without-image .line {
		display: block;
		left: 26px;
		bottom: 58px;
	}
}
.hero--without-image .hero__text {
	border: none;
	padding: 30px 0 62px 34px;
}
@media (min-width: 1024px) {
	.hero--without-image .hero__text {
		padding: 62px 0 62px 43px;
		max-width: 856px;
	}
}
@media (max-width: 767px) {
	.hero--without-image .hero__text:before,
	.hero--without-image .hero__text:after {
		display: none;
	}
}
@media (min-width: 1024px) {
	.hero--without-image .hero__text h1 {
		font-size: 60px;
		line-height: 1.2;
	}
}
.hero--multiply:before {
	display: none;
}
.hero--multiply .container {
	z-index: inherit;
}
.hero--multiply .hero__text {
	max-width: 734px;
	width: 100%;
}
@media (min-width: 1024px) {
	.hero--multiply .hero__text {
		display: flex;
		flex-wrap: wrap;
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
		min-height: 351px;
		padding: 20px 15px 20px 49px;
	}
}
@media (min-width: 768px) {
	.hero--multiply .hero__text:before {
		content: "";
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: #16445c;
		mix-blend-mode: multiply;
		opacity: 1;
	}
}
.hero--multiply .hero__text h1 {
	letter-spacing: 0.01em;
	margin: 0;
}
@media (min-width: 1024px) {
	.hero--multiply .hero__text h1 {
		font-size: 60px;
		line-height: 1.2;
		margin-top: 42px;
	}
}
@media (min-width: 1024px) {
	.hero--multiply .hero__text h1:only-child {
		margin: 0 0 34px;
	}
}
.hero--multiply .hero__text .btn {
	margin-top: 44px;
}
.hero--multiply .line {
	top: 59px;
	z-index: 99;
}
@media (min-width: 768px) {
	.hero--multiply .line {
		top: 74px;
	}
}
@media (min-width: 1024px) {
	.hero--multiply .line {
		top: 59px;
	}
}
.hero + .hero {
	margin: 81px 0 0;
}

.two-blocks {
	margin: 0 0 66px;
}

.two-blocks .container {
	background-color: #ffffff;
}
@media (min-width: 768px) {
	.two-blocks {
		margin: 0 0 123px;
	}
}
.two-blocks .container > h3 {
	margin: 0 0 64px;
	background-color: #ffffff;
}
@media (max-width: 767px) {
	.two-blocks .container > h3 {
		font-size: 28px;
		text-align: center;
		margin: 0 0 38px;
	}
}
@media (min-width: 768px) {
	.two-blocks--reverse .two-blocks__img {
		order: 2;
	}
}
@media (min-width: 768px) {
	.two-blocks--reverse .two-blocks__text {
		order: 1;
		margin: -50px -20px 0 0;
		padding: 47px 68px 64px 82px;
	}
}
.two-blocks--reverse .two-blocks__text .line {
	left: 25px;
}
@media (min-width: 420px) {
	.two-blocks--reverse .two-blocks__text .line {
		left: 39px;
	}
}
@media (min-width: 768px) {
	.two-blocks--reverse .two-blocks__btn {
		margin-left: -11px;
	}
}
@media (min-width: 1024px) {
	.two-blocks--reverse .two-blocks__btn {
		margin-left: -23px;
	}
}
.two-blocks__row {
	margin: 0 -15px;
}
@media (min-width: 768px) {
	.two-blocks__row {
		display: flex;
		flex-wrap: wrap;
		align-items: flex-start;
		margin: 0;
	}
}
.two-blocks__img {
	position: relative;
	z-index: 10;
}
@media (min-width: 768px) {
	.two-blocks__img {
		width: 51%;
	}
}
.two-blocks__img img {
	width: 100%;
	object-fit: cover;
	height: 328px;
}
@media (min-width: 768px) {
	.two-blocks__img img {
		height: auto;
	}
}
.two-blocks__text {
	--height: 60px;
	position: relative;
	padding: 20px 35px 40px 50px;
	background: #e3b03b;
}
@media (min-width: 420px) {
	.two-blocks__text {
		padding: 20px 64px 40px 64px;
	}
}
@media (min-width: 768px) {
	.two-blocks__text {
		margin: -34px 0 0 -26px;
		flex: 1 0 0;
		width: 49%;
	}
}
@media (min-width: 1024px) {
	.two-blocks__text {
		padding: 46px 42px 30px 116px;
	}
}
.two-blocks__text h3 {
	margin: 0 0 12px;
}
@media (max-width: 767px) {
	.two-blocks__text h3 {
		font-size: 28px;
		margin: 0 0 5px;
	}
}
.two-blocks__text p {
	margin: 0 0 24px;
}
.two-blocks__text .line {
	bottom: var(--height);
	left: 25px;
}
@media (min-width: 420px) {
	.two-blocks__text .line {
		left: 42px;
	}
}
@media (min-width: 1024px) {
	.two-blocks__text .line {
		opacity: 0;
		visibility: hidden;
		left: 76px;
	}
}
.in-viewport .two-blocks__text .line {
	opacity: 1;
	visibility: visible;
}
@media (min-width: 1024px) {
	.in-viewport .two-blocks__text .line {
		animation: lineFadeUp 2s ease-in-out;
	}
}
.two-blocks__btn {
	position: absolute;
	bottom: -24px;
	left: 0;
	right: 0;
	text-align: center;
}
@media (min-width: 768px) {
	.two-blocks__btn {
		bottom: -28px;
		margin-left: 25px;
	}
}
.two-blocks__btn .btn {
	padding: 18px 23px;
}
@media (max-width: 767px) {
	.two-blocks__btn .btn {
		min-width: 191px;
	}
}
@media (min-width: 768px) {
	.two-blocks + .two-blocks {
		margin: 0 0 79px;
	}
}

.generation {
	padding: 17px 0 62px;
	background-color: #ffffff;
}
@media (min-width: 768px) {
	.generation {
		padding: 52px 0 76px;
	}
}
.generation h2 {
	color: #343236;
	background-color: #ffffff;
	text-align: center;
	margin: 0 0 32px;
}
@media (min-width: 768px) {
	.generation h2 {
		margin: 0 0 69px;
	}
}
.generation .two-blocks {
	margin: 0;
}
@media (min-width: 768px) {
	.generation .two-blocks__img {
		width: 48%;
	}
}
@media (min-width: 1024px) {
	.generation .two-blocks__img {
		width: 53%;
	}
}
.generation .two-blocks__text {
	padding: 20px 42px 22px 64px;
}
@media (min-width: 768px) {
	.generation .two-blocks__text {
		width: 52%;
		margin: -45px 0 0 -115px;
		padding: 48px 30px 45px 158px;
	}
}
@media (min-width: 1024px) {
	.generation .two-blocks__text {
		width: 47%;
		padding: 48px 56px 52px 202px;
	}
}
.generation .two-blocks__btn {
	margin-left: 0;
	bottom: -30px;
}
@media (min-width: 768px) {
	.generation .two-blocks__btn {
		margin-left: 85px;
		bottom: -28px;
	}
}
@media (min-width: 1024px) {
	.generation .two-blocks__btn {
		margin-left: 110px;
	}
}
@media (min-width: 768px) {
	.generation .two-blocks__btn .btn {
		padding: 18px 32px;
	}
}
@media (max-width: 767px) {
	.generation .two-blocks__btn .btn {
		min-width: 275px;
	}
}
.generation .two-blocks .line {
	left: 42px;
}
@media (min-width: 768px) {
	.generation .two-blocks .line {
		left: 134px;
	}
}
@media (min-width: 1024px) {
	.generation .two-blocks .line {
		left: 165px;
	}
}

.programs {
	padding: 34px 0 15px;
	background: #e8e8e8;
}
@media (min-width: 768px) {
	.programs {
		padding: 70px 0;
	}
}
.programs__head {
	max-width: 360px;
	margin: 0 auto 30px;
	text-align: center;
}
@media (min-width: 768px) {
	.programs__head {
		max-width: 600px;
		margin: 0 auto 50px;
	}
}
.programs__head h2 {
	margin: 0 0 18px;
}
@media (min-width: 768px) {
	.programs__head h2 {
		margin: 0 0 10px;
	}
}
.programs__row {
	margin: 0 0 32px;
}
@media (min-width: 768px) {
	.programs__row {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		max-width: 999px;
		margin: 0 auto 48px;
	}
}
@media (min-width: 1024px) {
	.programs__row {
		margin: 0 auto 68px;
	}
}
.programs__col {
	padding: 0 44px 18px;
}
@media (min-width: 768px) {
	.programs__col {
		width: 33.332%;
		padding: 0 12px;
	}
}
.programs select option.hidden {
	display: none;
}
.programs .jcf-select {
	position: relative;
	display: flex;
	align-items: center;
	font-family: "freight-text-pro", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	font-weight: 500;
	border: none;
	border-left: 6px solid #e3b03b;
	padding: 15px 20px;
	background: #fff;
	color: #16445c;
	min-height: 73px;
	max-height: 97px;
	height: 100%;
	margin: 0;
}
@media (min-width: 768px) {
	.programs .jcf-select {
		font-size: 18px;
	}
}
.programs .jcf-select .jcf-select-text {
	text-overflow: unset;
	white-space: normal;
	overflow: visible;
}
.programs .jcf-select .jcf-select-drop {
	left: -6px;
}
.programs .jcf-select .jcf-select-drop .jcf-option {
	padding: 5px 25px;
}
.programs .jcf-select .jcf-option-hidden {
	display: none;
}
.programs__message {
	display: none;
	text-align: center;
	margin: 0 0 30px;
}
@media (min-width: 768px) {
	.programs__message {
		margin: 0 0 60px;
	}
}
.no-result .programs__message {
	display: block;
}
.programs__clear {
	width: 100%;
	padding: 15px 0 0;
	font-weight: 500;
	text-align: center;
}

@media (min-width: 768px) {
	.programs + .quick-links {
		margin-top: -80px;
	}
}

@media (min-width: 1024px) {
	.programs + .quick-links {
		margin-top: -130px;
	}
}

.quick-links {
	margin: 0 -15px 37px;
}
@media (min-width: 768px) {
	.quick-links {
		margin: 0 0 69px;
	}
}
.quick-links h3 {
	margin: 0 0 32px;
	background-color: #ffffff;
}
@media (max-width: 767px) {
	.quick-links h3 {
		font-size: 28px;
		text-align: center;
		margin: 0 0 26px;
	}
}
@media (min-width: 768px) {
	.quick-links__row {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		margin: 0 -14px;
	}
}
.quick-links__col {
	padding: 0 0 20px;
}
@media (min-width: 768px) {
	.quick-links__col {
		flex-grow: 1;
		display: flex;
		width: 50%;
		padding: 0 14px 28px;
	}
}
@media (min-width: 1024px) {
	.quick-links__col {
		width: 33.332%;
	}
}
.quick-links__wrap {
	padding: 52px 30px 35px;
	background: #97b7a1;
}
@media (min-width: 420px) {
	.quick-links__wrap {
		padding: 52px 60px 35px;
	}
}
@media (min-width: 768px) {
	.quick-links__wrap {
		padding: 43px 30px 14px;
	}
}
@media (min-width: 1024px) {
	.quick-links__wrap {
		padding: 43px 65px 14px;
	}
}
.quick-links__wrap + .quick-links__wrap {
	margin-top: 20px;
}
@media (min-width: 768px) {
	.quick-links__wrap + .quick-links__wrap {
		margin-top: 30px;
	}
}
@media (min-width: 768px) {
	.quick-links__wrap.two-columns .quick-links__row {
		margin: 0 -21px;
	}
}
@media (min-width: 768px) {
	.quick-links__wrap.two-columns .quick-links__col {
		width: 50%;
		padding: 0 21px 28px;
	}
}
@media (min-width: 768px) {
	.quick-links__wrap.two-columns .quick-links__box-wrap {
		margin: 0 auto;
		padding: 0 15px 0 0;
	}
}
@media (min-width: 768px) {
	.quick-links__wrap.two-columns .quick-links__box strong {
		padding: 0 0 0 15px;
	}
}
.quick-links__box {
	transition: filter 0.3s ease-in-out;
	display: flex;
	align-items: center;
	width: 100%;
	padding: 12px 25px;
	background: #fafafa;
	min-height: 73px;
}
@media (min-width: 768px) {
	.quick-links__box {
		min-height: auto;
	}
}
.quick-links__box:hover {
	filter: drop-shadow(0 0 17px rgba(0, 0, 0, 0.6));
}
.quick-links__box-wrap {
	display: flex;
	align-items: center;
}
.quick-links__box-icon {
	width: 48px;
	text-align: center;
}
.quick-links__box strong {
	display: block;
	color: #16445c;
	font: 500 18px/1.33333 "freight-text-pro", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	width: calc(100% - 48px);
	padding: 0 0 0 20px;
}

.quick-links__wrap.two-columns {
	background: #97b7a1;
}

@media (min-width: 768px) {
	.recent {
		margin: 0 0 102px;
	}
}

.recent__row {
	margin: 3em -15px;
}
@media (min-width: 768px) {
	.recent__row {
		display: flex;
		flex-wrap: wrap;
		margin: 0;
	}
}

.recent__img {
	position: relative;
	z-index: 5;
}
@media (min-width: 768px) {
	.recent__img {
		order: 2;
		width: 50%;
	}
}
@media (min-width: 1024px) {
	.recent__img {
		width: 55.5%;
	}
}
.recent__img img {
	width: 100%;
	height: 328px;
	object-fit: cover;
}
@media (min-width: 768px) {
	.recent__img img {
		height: auto;
	}
}

.recent__text {
	--height: 71px;
	position: relative;
	background: #16445c;
	color: #fff;
	padding: 18px 35px 65px 55px;
}
@media (min-width: 420px) {
	.recent__text {
		padding: 18px 92px 65px 76px;
	}
}
@media (min-width: 768px) {
	.recent__text {
		order: 1;
		flex: 1 0 0;
		width: 50%;
		padding: 40px 158px 40px 70px;
		margin: 48px -140px 0 0;
	}
}
@media (min-width: 1024px) {
	.recent__text {
		padding: 60px 230px 54px 96px;
		width: 45.5%;
	}
}
.recent__text h3 {
	font-size: 36px;
	color: #fff;
	margin: 0 0 10px;
}
@media (min-width: 768px) {
	.recent__text h3 {
		margin: 0 0 28px;
	}
}
.recent__text ul {
	font-family: "freight-text-pro", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
}
.recent__text ul li {
	margin: 0 0 26px;
}
@media (min-width: 1024px) {
	.recent__text ul li {
		margin: 0 0 36px;
	}
}
.recent__text ul li p {
	margin: 0 0 5px;
}
@media (min-width: 768px) {
	.recent__text ul li p {
		margin: 0 0 10px;
	}
}
.recent__text ul li a {
	display: inline-block;
	vertical-align: middle;
	text-decoration: underline;
	font-family: "aktiv-grotesk", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	color: #fff;
}
.recent__text .btn {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -27px;
	padding: 18px;
}
.recent__text .line {
	bottom: var(--height);
	left: 30px;
}
@media (min-width: 420px) {
	.recent__text .line {
		left: 47px;
	}
}
@media (min-width: 1024px) {
	.recent__text .line {
		opacity: 0;
		visibility: hidden;
	}
}
.in-viewport .recent__text .line {
	opacity: 1;
	visibility: visible;
}
@media (min-width: 1024px) {
	.in-viewport .recent__text .line {
		animation: lineFadeUp 2s ease-in-out;
	}
}

.infographics {
	padding: 64px 0 28px;
	background: #f2f6f0;
	margin: 0 0 42px;
}
@media (min-width: 768px) {
	.infographics {
		margin: 0 0 111px;
	}
}
@media (min-width: 1024px) {
	.infographics {
		padding: 36px 0 60px;
	}
}
.infographics .container {
	max-width: 1010px;
}
@media (min-width: 1024px) {
	.infographics__row {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		margin: 0 -40px;
	}
}
.infographics__col {
	padding: 0 0 26px;
}
@media (min-width: 1024px) {
	.infographics__col {
		width: 33.332%;
		padding: 0 25px;
	}
}
.infographics__box {
	font-size: 18px;
	position: relative;
	text-align: center;
	width: 300px;
	height: 300px;
	padding: 40px 35px;
	margin: 0 auto;
}
@media (min-width: 1024px) {
	.infographics__box {
		margin: 0;
	}
}
.infographics__box:before {
	content: "";
	position: absolute;
	top: 12px;
	left: 50%;
	transform: translateX(-50%);
	width: 10px;
	background: #f2f6f0;
	height: 20px;
	z-index: 99;
}
.infographics__box.in-viewport .circle {
	animation: progress 1.8s ease-out forwards;
}
.infographics__box svg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 302px;
	height: 302px;
}
.infographics__box svg .circle {
	stroke: #97b7a1;
	fill: none;
	stroke-width: 1.1;
}
.infographics__box-icon {
	margin: 0 0 10px;
}
.infographics__box-num {
	position: relative;
	display: inline-block;
	vertical-align: top;
	font-size: 66px;
	line-height: 1;
	font-weight: 800;
	color: #16445c;
	margin: 0 0 5px -12px;
}
.infographics__box-num sup {
	position: absolute;
	top: 20px;
	right: -28px;
	font-size: 28px;
	font-weight: 400;
}
.infographics__box p {
	max-width: 190px;
	margin: 0 auto;
}

@media (min-width: 768px) {
	.cards {
		padding: 0 0 46px;
	}
}

@media (min-width: 768px) {
	.cards .row {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		margin: 0 -12px;
	}
}

.cards .col {
	padding: 0 0 56px;
}
@media (min-width: 420px) {
	.cards .col {
		padding: 0 21px 56px;
	}
}
@media (min-width: 768px) {
	.cards .col {
		display: flex;
		width: 50%;
		padding: 0 12px 56px;
	}
}
@media (min-width: 1024px) {
	.cards .col {
		width: 33.332%;
		padding: 0 12px 95px;
	}
}

.card {
	position: relative;
	background: #fff;
	width: 100%;
	min-height: 525px;
}
.card__img {
	width: 100%;
	height: 198px;
	object-fit: cover;
}
.card__body {
	font-size: 16px;
	line-height: 1.375;
	padding: 30px 30px 45px 30px;
}
@media (min-width: 768px) {
	.card__body {
		padding: 30px 32px 45px 30px;
	}
}
.card__body h3 {
	font-size: 18px;
	line-height: 1.333333;
	max-width: 282px;
	margin: 0 auto 22px;
	text-align: center;
	color: #16445c;
}
.card__body h3 a {
	display: inline-block;
	vertical-align: middle;
}
.card .btn {
	position: absolute;
	bottom: -24px;
	left: 50%;
	transform: translateX(-50%);
}

.social {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	font-size: 12px;
}
@media (min-width: 768px) {
	.social {
		font-size: 20px;
	}
}
@media (min-width: 1024px) {
	.social {
		justify-content: flex-start;
	}
}
.social li {
	padding: 0 14px 0 0;
}
@media (min-width: 768px) {
	.social li {
		padding: 0 27px 0 0;
	}
}
.social li:last-child {
	padding: 0;
}
.social a {
	transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	color: #f2f6f0;
	border: 1px solid #f2f6f0;
}
@media (min-width: 768px) {
	.social a {
		width: 33px;
		height: 33px;
	}
}
.social a:hover {
	color: #e3b03b;
	border-color: #e3b03b;
}

.cookies {
	background: #16445c;
	color: #fff;
	padding: 30px 0 68px;
}
@media (min-width: 768px) {
	.cookies {
		padding: 16px 0;
	}
}
.cookies .container {
	max-width: 1174px;
	padding: 0 34px;
}
@media (min-width: 768px) {
	.cookies .container {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-between;
		padding: 0 25px 0 15px;
	}
}
.cookies__text {
	font-size: 15px;
	line-height: 1.87;
	letter-spacing: 0.01em;
	margin: 0 0 30px;
}
@media (min-width: 768px) {
	.cookies__text {
		font-size: 14px;
		line-height: 1.3;
		max-width: 505px;
		margin: 0;
	}
}
.cookies__text p {
	margin: 0;
}
.cookies .btn {
	border: 1px solid #fff;
	min-width: 212px;
	padding: 12px;
}
.cookies .btn:hover {
	background: #fff;
	color: #16445c;
}

.program .container {
	max-width: 1176px;
}
@media (min-width: 1024px) {
	.program .container {
		display: flex;
		flex-wrap: wrap;
		align-items: flex-start;
		justify-content: space-between;
	}
}

.program__category {
	position: relative;
	margin: 14px 32px;
}
@media (min-width: 1024px) {
	.program__category {
		width: 290px;
		background: #e3b03b;
		padding: 31px 20px;
		margin: 0;
		z-index: 91;
	}
}
.program__category:before {
	content: "";
	position: absolute;
	top: -13px;
	left: -25px;
	right: -25px;
	height: 65px;
	background: #e3b03b;
}
@media (min-width: 1024px) {
	.program__category:before {
		display: none;
	}
}
.program__category-opener {
	display: block;
	position: relative;
	font: 500 18px/1.2 "freight-text-pro", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	background: #fff;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	padding: 8px 40px 8px 16px;
	border-left: 5px solid #16445c;
}
@media (min-width: 1024px) {
	.program__category-opener {
		display: none;
	}
}
.program__category-opener:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	border-style: solid;
	border-width: 7px 0 7px 12.1px;
	border-color: transparent transparent transparent #bababa;
	margin-top: 2px;
}

@media (max-width: 1023px) {
	.program__hold {
		background: #fff;
	}
}

.program-active .program__hold {
	box-shadow: 0 0 7px rgba(0, 0, 0, 0.45);
}

@media (min-width: 1024px) {
	.program__list {
		margin: 0 0 25px;
	}
}

@media (min-width: 1024px) {
	.program__list:last-child {
		margin: 0 0 15px;
	}
}

@media (min-width: 1024px) {
	.program__list.active {
		box-shadow: 0 0 7px rgba(0, 0, 0, 0.45);
	}
}

.program__list-opener {
	font: 500 18px/1.33333 "freight-text-pro", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	display: block;
	position: relative;
	padding: 5px 32px;
	border-left: 5px solid #16445c;
	background: #fff;
	color: #16445c;
}
@media (min-width: 1024px) {
	.program__list-opener {
		font-weight: 400;
		padding: 24px 17px;
	}
}
.program__list-opener:before {
	transition: transform 0.3s ease-in-out;
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 20px;
	border-style: solid;
	border-width: 3px 0 3px 5.2px;
	border-color: transparent transparent transparent #fff;
	z-index: 2;
}
@media (min-width: 1024px) {
	.program__list-opener:before {
		display: none;
	}
}
.program__list-opener:after {
	transition: transform 0.3s ease-in-out;
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 19px;
	border-style: solid;
	border-width: 4.5px 0 4.5px 7.8px;
	border-color: transparent transparent transparent #bababa;
}
@media (min-width: 1024px) {
	.program__list-opener:after {
		left: auto;
		right: 27px;
		border-width: 9px 0 9px 15.6px;
	}
}
.active .program__list-opener:before {
	transform: translateY(-50%) rotate(90deg);
}
.active .program__list-opener:after {
	transform: translateY(-50%) rotate(90deg);
}

.program__list-slide {
	font-size: 18px;
	padding: 0 0 0 40px;
	background: #fff;
	border-left: 5px solid #16445c;
}
@media (min-width: 1024px) {
	.program__list-slide {
		border-left: none;
		border-top: 1px solid #bababa;
		padding: 20px 0 14px;
	}
}
.program__list-slide li a {
	display: block;
	color: #000;
	padding: 7px 20px 3px;
}
.program__list-slide li a:hover {
	background: #97b7a1;
}

.program__content {
	padding: 42px 27px 29px 27px;
	background: #f2f6f0;
	margin: 60px -15px 0;
}
@media (min-width: 1024px) {
	.program__content {
		width: calc(100% - 318px);
		margin: 12px 0 0;
		padding: 29px 34px 29px 40px;
	}
}
@media (max-width: 767px) {
	.program__content {
		font-size: 18px;
		line-height: 1.34;
	}
}
.program__content-head {
	text-align: center;
	margin: 0 0 45px;
}
@media (min-width: 768px) {
	.program__content-head {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		text-align: left;
		margin: 0 0 13px;
	}
}
.program__content-head h3 {
	flex-grow: 1;
	margin: 0 0 5px;
}
@media (max-width: 767px) {
	.program__content-head h3 {
		font-size: 28px;
		margin: 0 0 34px;
	}
}
.program__content-head .btn {
	font-size: 12px;
	line-height: 1.25;
	min-width: 192px;
	padding: 10px 12px;
	margin: 0 auto;
}
@media (min-width: 768px) {
	.program__content-head .btn {
		margin: 0;
	}
}

.program__tabset {
	font: 500 18px/1.5 "freight-text-pro", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	max-width: 245px;
	margin: 0 auto 60px;
}
@media (min-width: 768px) {
	.program__tabset {
		display: flex;
		flex-wrap: wrap;
		margin: 0 0 35px;
		max-width: none;
	}
}
.program__tabset li {
	display: flex;
	padding: 0 0 18px;
}
@media (min-width: 768px) {
	.program__tabset li {
		padding: 0 11px 0 0;
		flex: 1;
	}
}
.program__tabset li:last-child {
	padding: 0;
}
.program__tabset a {
	transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 15px;
	text-align: center;
	background: #fff;
	color: #000;
}
.program__tabset a.active {
	background: #16445c;
	color: #fff;
}

.program__tab-item {
	width: 100%;
}

.program__tab-content {
	position: relative;
	width: 100%;
}
.program__tab-content h3 {
	margin: 0 0 16px;
}
@media (max-width: 767px) {
	.program__tab-content h3 {
		font-size: 28px;
		line-height: 1.1;
		margin: 0 0 20px;
	}
}
.program__tab-content p {
	margin: 0 0 24px;
}
.program__tab-content h5 {
	font-family: "aktiv-grotesk", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	font-size: 18px;
	margin: 40px 0 6px;
}
.program__tab-content .table-responsive {
	margin: 36px -27px 48px -27px;
}
@media (min-width: 768px) {
	.program__tab-content .table-responsive {
		margin: 30px -27px 55px -27px;
	}
}
@media (min-width: 1024px) {
	.program__tab-content .table-responsive {
		margin: 30px -34px 55px -40px;
	}
}
.program__tab-content .table-responsive.hard-table {
	margin-top: 56px;
	margin-bottom: 76px;
}
@media (min-width: 1024px) {
	.program__tab-content .table-responsive.hard-table {
		margin-top: 65px;
		margin-bottom: 96px;
	}
}

.program__tab-list {
	font-size: 18px;
	line-height: 1;
	max-width: 280px;
	margin: 0 auto 54px;
}
@media (min-width: 768px) {
	.program__tab-list {
		column-count: 2;
		column-gap: 55px;
		margin: 0 0 37px;
		max-width: none;
	}
}
.program__tab-list li {
	position: relative;
	padding: 0 0 6px 10px;
}
.program__tab-list li:before {
	content: "";
	position: absolute;
	top: 5px;
	left: 0;
	width: 5px;
	height: 5px;
	background: #000;
	border-radius: 50%;
}
.program__tab-list li a {
	color: #000;
	text-decoration: underline;
}
.program__tab-list li a:hover {
	text-decoration: none;
}

.program__cards {
	padding: 58px 15px 0;
	background: #f2f6f0;
	margin: 47px -15px 0;
}
@media (min-width: 1024px) {
	.program__cards {
		width: calc(100% - 325px);
		margin: 0;
		padding: 29px 27px 0 27px;
	}
}
@media (min-width: 1200px) {
	.program__cards {
		width: calc(100% - 358px);
	}
}
.program__cards .cards {
	padding: 0;
}
@media (min-width: 768px) {
	.program__cards .cards .col {
		width: 50%;
	}
}
@media (min-width: 1024px) {
	.program__cards .cards .col {
		padding-bottom: 68px;
	}
}

.program ol {
	padding: 5px 0 0 28px;
	margin: 0 0 24px;
}
.program ol li ul:not([class]):not([id]) {
	list-style: lower-latin;
	padding: 0 10px 0 27px;
	margin: 0;
}
.program ol li ul:not([class]):not([id]) li {
	padding: 0;
}
.program ol li ul:not([class]):not([id]) li:before {
	display: none;
}

.program p + ol {
	margin-top: -24px;
}

.program p + ul:not([class]):not([id]) {
	margin-top: -24px;
}

.program ul:not([class]):not([id]) {
	line-height: 1;
	margin: 0 0 24px 12px;
}
.program ul:not([class]):not([id]) li {
	position: relative;
	padding: 0 0 7px 16px;
}
.program ul:not([class]):not([id]) li:before {
	content: "";
	position: absolute;
	top: 5.6px;
	left: 0;
	width: 5px;
	height: 5px;
	background: #000;
	border-radius: 50%;
}

.program__listing {
	background: #f2f6f0;
	padding: 29px 49px;
	overflow: hidden;
	margin: 54px -15px 0;
}
@media (min-width: 1024px) {
	.program__listing {
		width: calc(100% - 318px);
		margin-top: -24px;
		padding: 39px 49px;
	}
}
.program__listing h3 {
	margin: 0 0 21px;
}
@media (max-width: 767px) {
	.program__listing h3 {
		font-size: 28px;
		text-align: center;
		margin: 0 0 35px;
	}
}
.program__listing-headline {
	display: block;
	font: 700 32px/1 "Inter", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	background: #16445c;
	color: #fff;
	text-transform: uppercase;
	padding: 6px 55px;
	margin: 0 -49px 49px;
}
@media (min-width: 1024px) {
	.program__listing-headline {
		margin: 0 -49px 59px;
	}
}
.program__listing-wrap {
	margin: 0 -49px 0 0;
}
@media (min-width: 1200px) {
	.program__listing-wrap {
		margin: 0 0 83px;
	}
}
.program__listing-wrap:last-of-type {
	margin-bottom: 44px;
}
.program__listing-back-link {
	display: inline-block;
	vertical-align: middle;
	color: #000;
	margin-top: -15px;
	margin-bottom: 50px;
}
@media (min-width: 1024px) {
	.program__listing-back-link {
		margin-top: -75px;
		margin-bottom: 0;
	}
}
.program__listing .table-responsive {
	margin: 0 0 45px;
}
@media (min-width: 1024px) {
	.program__listing .table-responsive {
		margin: 0 0 75px;
	}
}
.program__listing .table-responsive table {
	font-family: "Inter", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	font-size: 16px;
}
.program__listing .table-responsive table .caption {
	font: 500 18px/1.34 "freight-text-pro", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	text-align: left;
	background: #16445c;
	color: #fff;
	padding: 17px 21px;
}
.program__listing .table-responsive table tr:nth-child(even) {
	background: #fff;
}
.program__listing .table-responsive table tr td {
	padding: 10px 21px;
	border-color: #000;
}
.program__listing .table-responsive table tr td:first-child {
	width: 149px;
}
.program__listing .table-responsive table tr:last-child td {
	vertical-align: top;
}
.program__listing .jcf-scrollbar-horizontal {
	left: 0;
}

.table-responsive {
	position: relative;
}
.table-responsive .ps__rail-x {
	opacity: 1 !important;
}
.table-responsive .ps__thumb-x {
	height: 8px;
	background: #e3b03b;
	opacity: 1 !important;
}
.table-responsive table {
	/*  width: 828px;
	table-layout: fixed;
	*/
}
@media (min-width: 768px) {
	.table-responsive table {
		margin: 0 auto;
	}
}
@media (min-width: 1024px) {
	.table-responsive table {
		margin: 0;
	}
}
@media (min-width: 1200px) {
	.table-responsive table {
		/*    width: 100%;
		max-width: 100%; */
	}
}
.table-responsive table th {
	background: #16445c;
	color: #fff;
	text-align: left;
	font-weight: 400;
	padding: 12px 20px 9px;
	border: 1px solid #fff;
}
.table-responsive table tbody tr {
	background: #fff;
}
.table-responsive table tbody tr:nth-child(even) {
	background: #f9f9f9;
}
.table-responsive table tbody tr td {
	border: 1px solid #e7e7e7;
	border-top: none;
	padding: 8px 20px;
	height: 63px;
}
.table-responsive.small-table th {
	padding: 6px 22px 0;
}
.table-responsive.small-table tbody tr td {
	padding: 8px 22px;
	height: 40px;
}
.table-responsive.hard-table table {
	font-family: "Inter", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
}
.table-responsive.hard-table table thead th,
.table-responsive.hard-table table thead td {
	padding: 5px 10px;
}

.table-responsive.hard-table table tr.caption th {
	font-family: "freight-text-pro", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	background: #16445c;
	color: #fff;
	text-align: left;
	padding: 16px 41px;
}
.table-responsive.hard-table table tr.total th,
.table-responsive.hard-table table tr.total td {
	background: #f2f6f0;
}
.table-responsive.hard-table table th,
.table-responsive.hard-table table td {
	color: #000;
	border: 1px solid #000;
	padding: 19px 7px;
	font-weight: 400;
	background: #fff;
	text-align: center;
}
.table-responsive.hard-table table th.rotate-th,
.table-responsive.hard-table table td.rotate-th {
	writing-mode: vertical-lr;
	height: 164px;
}
@media (min-width: 1024px) {
	.table-responsive.hard-table table th.rotate-th,
	.table-responsive.hard-table table td.rotate-th {
		height: 180px;
	}
}
.table-responsive.hard-table table th.height-auto,
.table-responsive.hard-table table td.height-auto {
	height: auto;
}
.table-responsive.hard-table table tfoot {
	display: none;
}
.table-responsive.table-1 table tr th,
.table-responsive.table-1 table tr td {
	padding: 5px 30px 2px;
}
.table-responsive.table-1 table tr th:last-child,
.table-responsive.table-1 table tr td:last-child {
	width: 250px;
}
.table-responsive.table-1 table tr td {
	height: 61px;
}
.table-responsive.table-2 {
	margin-bottom: 36px;
}
@media (min-width: 1024px) {
	.table-responsive.table-2 {
		margin-bottom: 48px;
	}
}
.table-responsive.table-2 table tr th,
.table-responsive.table-2 table tr td {
	width: 142px;
	padding: 12px 10px 9px;
}
.table-responsive.table-2 table tr th:first-child,
.table-responsive.table-2 table tr td:first-child {
	width: 108px;
}
.table-responsive.table-2 table tr th:nth-child(2),
.table-responsive.table-2 table tr td:nth-child(2) {
	width: 210px;
}
.table-responsive.table-2 table tr th:last-child,
.table-responsive.table-2 table tr td:last-child {
	width: 83px;
}
.table-responsive.table-2 table tr th {
	height: 95px;
}
.table-responsive.table-2 table tr td {
	height: 93px;
}
.table-responsive.table-3 {
	margin-top: 38px;
	margin-bottom: 50px;
}
@media (min-width: 1024px) {
	.table-responsive.table-3 {
		margin-top: 24px;
		margin-bottom: 35px;
	}
}
.table-responsive.table-3 table tr th,
.table-responsive.table-3 table tr td {
	width: 157px;
	padding: 12px 10px 9px;
}
.table-responsive.table-3 table tr th:first-child,
.table-responsive.table-3 table tr td:first-child {
	width: 263px;
}
.table-responsive.table-3 table tr th:last-child,
.table-responsive.table-3 table tr td:last-child {
	width: 89px;
}
.table-responsive.table-3 table tr th {
	height: 95px;
}
.table-responsive.table-3 table tr td {
	height: 98px;
}
.table-responsive.table-4 {
	margin-bottom: 32px;
}
@media (min-width: 1024px) {
	.table-responsive.table-4 {
		margin-bottom: 18px;
	}
}
.table-responsive.table-4 table tr th,
.table-responsive.table-4 table tr td {
	padding: 4px 30px 0;
}
.table-responsive.table-4 table tr th:last-child,
.table-responsive.table-4 table tr td:last-child {
	width: 147px;
	padding: 4px 16px 0;
}
.table-responsive.table-4 table tr th {
	height: 32px;
}
.table-responsive.table-4 table tr td {
	height: 45px;
}

.big-table table {
	width: 100%;
}
.big-table table caption {
	text-align: left;
	width: 100%;
	background: #16445c;
	color: #fff;
}

.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
	background: transparent !important;
}

.ps__rail-x:hover > .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
	background-color: #e3b03b;
}

.about {
	padding: 46px 0 42px;
}
@media (min-width: 768px) {
	.about {
		padding: 64px 0 52px;
	}
}
.about__accordion {
	width: 257px;
	margin: 0 auto 75px;
	background-color: #ffffff;
}
@media (min-width: 768px) {
	.about__accordion {
		margin: 0;
	}
}
.fixed-position .about__accordion {
	margin-top: 30px;
	margin-left: 0;
}
.about__accordion .heading-text {
	font-size: 36px;
	display: block;
	font-family: "freight-text-pro", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	font-weight: 500;
	letter-spacing: 0.01em;
	margin: 0 0 0.5em;
	color: #000;
}
.about__accordion-list {
	font-size: 18px;
}
.about__accordion-list > li {
	border-bottom: 1px solid #ccc;
}
.about__accordion-list > li.active > a {
	font-weight: 700;
}
.about__accordion-list > li.active > a:after {
	transform: rotate(90deg);
}
.about__accordion-list > li > a {
	padding: 19px 0;
	padding-right: 35px;
}
.about__accordion-list > li > ul {
	padding: 16px 0 0;
	background: #f2f6f0;
	border-top: 1px solid #ccc;
}
.about__accordion-list > li > ul > li.active > a:after {
	transform: rotate(90deg);
}
.about__accordion-list > li > ul > li > a {
	padding: 12px 21px;
}
.about__accordion-list > li > ul ul {
	padding: 2px 0 22px 40px;
}
.about__accordion-list a {
	position: relative;
	display: block;
	color: #16445c;
}
.about__accordion-list a:after {
	transition: transform 0.3s ease-in-out;
	content: "\E905";
	display: inline-block;
	vertical-align: middle;
	font-size: 16px;
	font-weight: 400;
	margin: -2px 0 0 12px;
	font-family: "icomoon";
	color: #afafaf;
}
.about__accordion-list a:only-child:after {
	display: none;
}

.content-area {
	margin: 0 -15px 102px;
}
@media (min-width: 768px) {
	.content-area {
		margin: 0 0 64px;
	}
}
.content-area .container {
	max-width: 1098px;
}
@media (min-width: 768px) {
	.content-area .container {
		padding: 0 15px;
	}
}
.content-area__wrap {
	font-size: 16px;
	line-height: 1.25;
	padding: 0 15px;
	background-color: #ffffff;
}
@media (min-width: 420px) {
	.content-area__wrap {
		padding: 0 34px;
	}
}
@media (min-width: 768px) {
	.content-area__wrap {
		padding: 0 0 0 52px;
		background-color: #ffffff;
	}
}
.content-area__wrap-text {
	max-width: 735px;
	background-color: #ffffff;
}
.content-area__wrap-text h2 {
	margin: 0 0 16px;
}
@media (max-width: 767px) {
	.content-area__wrap-text h3 {
		font-size: 28px;
		margin: 0 0 18px;
	}
}
.content-area__wrap-text p {
	margin: 0 0 20px;
}
.content-area__wrap-text ul {
	margin: 0 0 22px;
}
.content-area__wrap-text ul li {
	position: relative;
	padding: 0 0 6px 8px;
}
.content-area__wrap-text ul li:before {
	content: "";
	position: absolute;
	top: 6px;
	left: 0;
	width: 4px;
	height: 4px;
	background: #000;
	border-radius: 50%;
}
.content-area__subhead {
	font: 500 28px/1.3 "freight-text-pro", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	display: block;
	color: #000;
	padding: 35px 0 10px;
}
@media (min-width: 768px) {
	.content-area__subhead {
		font-size: 36px;
		text-align: center;
		padding: 46px 0 10px;
	}
}
.content-area__row {
	display: flex;
	flex-wrap: wrap;
	padding: 0 0 4px;
}
@media (min-width: 768px) {
	.content-area__row {
		display: block;
	}
}
.content-area__row-text {
	order: 1;
	padding: 2px 0 0;
}
@media (min-width: 768px) {
	.content-area__row-text {
		width: calc(100% - 252px);
		overflow: hidden;
	}
}
.content-area__row-text p {
	margin: 0 0 20px;
}
.content-area__row-img {
	order: 2;
	width: 210px;
	margin: 6px auto 30px;
}
@media (min-width: 768px) {
	.content-area__row-img {
		float: left;
		margin: 0 32px 0 0;
	}
}
@media (min-width: 768px) {
	.content-area .align-right {
		float: right;
		margin: 0 0 0 41px;
	}
}
@media (min-width: 768px) {
	.content-area .blockquote {
		margin: 0 0 0 69px;
	}
}

.blockquote {
	font-size: 16px;
	line-height: 1.625;
	margin: 0;
	padding: 0 0 0 15px;
	border-left: 2px solid #16445c;
	max-width: 570px;
}
.blockquote figcaption {
	font-size: 12px;
	color: #000;
	margin: 0;
}
.blockquote blockquote p {
	margin: 0 0 8px;
}
.blockquote blockquote p strong {
	font-weight: 500;
	color: #16445c;
}

blockquote {
	margin: 0;
}

.search-wrap {
	padding: 28px 0 0;
}

.search-wrap .container {
	background-color: #ffffff;
}
@media (min-width: 768px) {
	.search-wrap {
		padding: 50px 0 62px;
	}
}
.search-wrap h2 {
	text-align: center;
	margin: 0 0 2px;
}
.search-wrap__form {
	position: relative;
	max-width: 338px;
	margin: 0 auto 68px;
}
@media (min-width: 768px) {
	.search-wrap__form {
		max-width: 761px;
		margin-bottom: 28px;
	}
}
.search-wrap__form input[type="search"] {
	border: none;
	padding: 6px 35px 6px 10px;
	border-bottom: 1px solid #000;
	margin: 0;
	height: 34px;
	border-radius: 0;
}
@media (min-width: 768px) {
	.search-wrap__form input[type="search"] {
		height: 42px;
		padding: 6px 55px 6px 10px;
	}
}
.search-wrap__form button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 12px;
	background-image: url(./1b755ab35825e29e388fce069c994a34.png);
	width: 16px;
	height: 16px;
	background-size: 16px 16px;
	background-repeat: no-repeat;
	padding: 0;
}
@media (min-width: 768px) {
	.search-wrap__form button {
		width: 29px;
		height: 29px;
		background-size: 29px 29px;
		margin-top: -3px;
		right: 15px;
	}
}

.events__wrap {
	position: relative;
	padding: 72px 0 30px;
	background: #e8e8e8;
}
@media (min-width: 768px) {
	.events__wrap {
		padding: 104px 0 72px;
	}
}
.events__wrap .container {
	max-width: 1122px;
}
.events__wrap-btn {
	position: absolute;
	bottom: -23px;
	left: 0;
	right: 0;
	text-align: center;
	z-index: 9;
}

.events__row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
@media (min-width: 1200px) {
	.events__row {
		margin: 0 -50px;
	}
}

.events__col {
	width: 100%;
	padding: 0 45px 48px 55px;
}
@media (min-width: 768px) {
	.events__col {
		width: 33.332%;
		padding: 0 15px;
	}
}
@media (min-width: 1200px) {
	.events__col {
		padding: 0 50px;
	}
}
@media (max-width: 1023px) {
	.events__col:last-child {
		padding-bottom: 0;
	}
}

.events__box {
	display: block;
	font: 600 20px/1.5 "Inter", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	color: #000;
}
.events__box:hover .events__box-date {
	background: #e3b03b;
	color: #16445c;
}
.events__box-date {
	transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
	font: 500 36px/1.05555 "freight-text-pro", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	position: absolute;
	top: -32px;
	left: -50px;
	width: 121px;
	height: 121px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #16445c;
	color: #fff;
	border-radius: 50%;
	overflow: hidden;
	text-transform: uppercase;
	z-index: 9;
	text-align: center;
	padding: 15px;
}
@media (min-width: 768px) {
	.events__box-date {
		font-size: 26px;
		width: 100px;
		height: 100px;
		left: -20px;
	}
}
@media (min-width: 1024px) {
	.events__box-date {
		font-size: 30px;
		top: -50px;
		width: 110px;
		height: 110px;
	}
}
@media (min-width: 1200px) {
	.events__box-date {
		font-size: 36px;
		width: 121px;
		height: 121px;
		top: -32px;
		left: -50px;
	}
}
.events__box-img {
	position: relative;
	margin: 0 0 8px;
}
.events__box-img img {
	width: 100%;
	object-fit: cover;
}

.featured {
	position: relative;
}
.featured__row {
	position: relative;
	padding: 66px 0 20px;
}
@media (min-width: 768px) {
	.featured__row {
		display: flex;
		flex-wrap: wrap;
		align-items: flex-start;
		padding: 86px 0 52px;
	}
}
@media (min-width: 1024px) {
	.featured__row {
		padding: 86px 0 160px;
	}
}
.featured__img {
	position: relative;
	width: 248px;
	margin: 0 auto;
}
@media (min-width: 768px) {
	.featured__img {
		margin: 0 0 0 40px;
	}
}
@media (min-width: 1024px) {
	.featured__img {
		width: 418px;
		margin-left: 64px;
	}
}
.featured__img-small {
	position: absolute;
	bottom: -110px;
	right: -34px;
	width: 166px;
}
@media (min-width: 420px) {
	.featured__img-small {
		right: -68px;
	}
}
@media (min-width: 768px) {
	.featured__img-small {
		bottom: -68px;
		right: -34px;
	}
}
@media (min-width: 1024px) {
	.featured__img-small {
		bottom: -182px;
		right: -118px;
		width: 279px;
	}
}
.featured__img img {
	width: 100%;
	object-fit: cover;
}
.featured__img:after {
	content: "";
	position: absolute;
	top: 55px;
	left: -38px;
	right: -34px;
	bottom: -45px;
	background: #e3b03b;
	z-index: -1;
}
@media (min-width: 768px) {
	.featured__img:after {
		top: 88px;
		left: -38px;
		right: -34px;
		bottom: -52px;
	}
}
@media (min-width: 1024px) {
	.featured__img:after {
		left: -64px;
		right: -58px;
		bottom: -73px;
	}
}
.featured__text {
	font: 16px/1.25 "Inter", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	letter-spacing: -0.35px;
	padding: 155px 28px 0 22px;
	background-color: #ffffff;
}
@media (min-width: 768px) {
	.featured__text {
		width: calc(100% - 288px);
		padding: 45px 18px 0 85px;
	}
}
@media (min-width: 1024px) {
	.featured__text {
		width: calc(100% - 486px);
		padding: 88px 18px 0 177px;
	}
}
.featured__text h3 {
	margin: 0 0 15px;
	letter-spacing: 0;
}
@media (max-width: 767px) {
	.featured__text h3 {
		font-size: 28px;
	}
}
.featured__text p {
	margin: 0 0 19px;
}
.featured__text .btn {
	margin: 0 0 0 -7px;
}
@media (min-width: 768px) {
	.featured__text .btn {
		margin: 12px 0 0 -7px;
	}
}
@media (min-width: 1024px) {
	.featured__text .btn {
		margin: 36px 0 0 -7px;
	}
}
@media (min-width: 768px) {
	.featured--reverse .featured__img {
		order: 2;
		margin: 0 0 0 -20px;
	}
}
.featured--reverse .featured__img-small {
	right: -70px;
}
@media (min-width: 768px) {
	.featured--reverse .featured__img-small {
		left: -30px;
		right: auto;
	}
}
@media (min-width: 1024px) {
	.featured--reverse .featured__img-small {
		left: -118px;
	}
}
.featured--reverse .featured__img:after {
	left: -36px;
	right: -36px;
}
@media (min-width: 768px) {
	.featured--reverse .featured__img:after {
		left: -30px;
		right: -32px;
	}
}
@media (min-width: 1024px) {
	.featured--reverse .featured__img:after {
		left: -60px;
		right: -62px;
	}
}
@media (min-width: 768px) {
	.featured--reverse .featured__text {
		order: 1;
		text-align: right;
		padding-right: 100px;
		padding-left: 0;
	}
}
@media (min-width: 1024px) {
	.featured--reverse .featured__text {
		padding-right: 196px;
	}
}
.featured--reverse .featured__text .btn {
	margin-left: 0;
	margin-right: -7px;
}
.featured__link {
	font-size: 14px;
	display: inline-block;
	vertical-align: middle;
	margin: 16px 0 0 24px;
	color: #000;
}
@media (min-width: 1024px) {
	.featured__link {
		margin: 33px 0 0 65px;
	}
}
.featured + .featured .featured__row:before {
	content: "";
	position: absolute;
	top: 20px;
	left: 15px;
	right: 15px;
	height: 1px;
	background: #ccc;
}
@media (min-width: 768px) {
	.featured + .featured .featured__row:before {
		left: 50%;
		width: 720px;
		right: auto;
		transform: translateX(-50%);
	}
}
@media (min-width: 1024px) {
	.featured + .featured .featured__row:before {
		width: 995px;
		top: 30px;
	}
}

.featured + .news .container:before {
	content: "";
	position: absolute;
	top: -44px;
	left: 38px;
	right: 38px;
	height: 1px;
	background: #ccc;
}
@media (min-width: 1024px) {
	.featured + .news .container:before {
		top: -32px;
		left: 15px;
		right: 15px;
	}
}

.news {
	padding: 84px 0 27px;
}
@media (min-width: 768px) {
	.news {
		padding: 98px 0 32px;
		background-color: #ffffff;
	}
}
.news .container {
	position: relative;
	max-width: 1022px;
	padding: 0 15px 40px;
	background-color: #ffffff;
}
@media (min-width: 420px) {
	.news .container {
		padding: 0 36px 40px;
	}
}
@media (min-width: 1024px) {
	.news .container {
		padding: 0 15px 33px;
		background-color: #ffffff;
	}
}
.news .container:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 15px;
	right: 15px;
	height: 1px;
	background: #ccc;
}
@media (min-width: 420px) {
	.news .container:after {
		left: 38px;
		right: 38px;
	}
}
@media (min-width: 1024px) {
	.news .container:after {
		left: 15px;
		right: 15px;
	}
}
.news h3 {
	margin: 0 0 27px;
}
@media (max-width: 767px) {
	.news h3 {
		font-size: 28px;
		margin: 0 0 20px;
	}
}
.news__list {
	font-size: 16px;
	line-height: 1.25;
}
.news__list li {
	margin: 0 0 30px;
}
@media (min-width: 768px) {
	.news__list li {
		margin: 0 0 36px;
	}
}
.news__list a {
	display: block;
	color: #000;
}
.news__list a strong {
	display: block;
	font: 500 16px/1.33333 "freight-text-pro", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	margin: 0 0 13px;
}
@media (min-width: 768px) {
	.news__list a strong {
		font-size: 18px;
	}
}
.news__list a p {
	margin: 0;
}
.news__link {
	font-size: 14px;
	display: inline-block;
	vertical-align: middle;
	color: #000;
}

.tags {
	padding: 0 0 32px;
}
.tags .container {
	max-width: 1022px;
	background-color: #ffffff;
}
@media (min-width: 420px) {
	.tags .container {
		padding: 0 36px;
	}
}
@media (min-width: 1024px) {
	.tags .container {
		padding: 0 15px;
	}
}
@media (max-width: 767px) {
	.tags h3 {
		font-size: 28px;
		margin: 0 0 6px;
	}
}
.tags__list {
	font-size: 16px;
	line-height: 1.25;
	display: flex;
	flex-wrap: wrap;
	margin: 0 -18px;
}
.tags__list li {
	padding: 0 18px 15px;
}
.tags__list a {
	color: #000;
	text-decoration: underline;
}
.tags__list a:hover {
	text-decoration: none;
	font-weight: bold;
}

.news-listing {
	padding: 0 0 36px;
}
@media (min-width: 768px) {
	.news-listing {
		padding: 0 0 114px;
	}
}
.news-listing .container {
	max-width: 1098px;
}
.news-listing__filter {
	position: relative;
	max-width: 214px;
	margin: 0 auto 90px;
}
@media (min-width: 768px) {
	.news-listing__filter {
		max-width: 310px;
		margin-bottom: 121px;
	}
}
.news-listing__filter-opener {
	font: 500 18px/1.33333 "freight-text-pro", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	display: block;
	position: relative;
	background: #fff;
	color: #16445c;
	border-left: 6px solid #16445c;
	text-align: center;
	padding: 6px 6px 6px 0;
}
@media (min-width: 768px) {
	.news-listing__filter-opener {
		font-size: 24px;
		padding: 7px 0;
	}
}
.news-listing__filter-opener:before {
	content: "";
	position: absolute;
	top: -11px;
	left: -19px;
	right: -15px;
	bottom: -13px;
	background: #e3b03b;
	z-index: -1;
}
@media (min-width: 768px) {
	.news-listing__filter-opener:before {
		left: -17px;
		right: -11px;
		bottom: -11px;
	}
}
.news-listing__filter-opener:after {
	transition: transform 0.3s ease-in-out;
	content: "";
	display: inline-block;
	vertical-align: middle;
	margin: -2px 0 0 13px;
	border-style: solid;
	border-width: 6px 0 6px 12px;
	border-color: transparent transparent transparent #bababa;
}
@media (min-width: 768px) {
	.news-listing__filter-opener:after {
		border-width: 8px 0 8px 15px;
		margin: -4px 0 0 18px;
	}
}
.active .news-listing__filter-opener {
	box-shadow: 0 0 7px rgba(0, 0, 0, 0.1);
}
.active .news-listing__filter-opener:after {
	transform: rotate(90deg);
}
.news-listing__filter-list {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: #fff;
	border-left: 6px solid #16445c;
	z-index: 9;
	padding: 17px 0 0;
}
.news-listing__filter-list li {
	margin: 0 0 5px;
}
.news-listing__filter-list a {
	display: block;
	padding: 6px 13px 2px;
	color: #000;
}
.news-listing__filter-list a:hover {
	background: #97b7a1;
}
.active .news-listing__filter-list {
	box-shadow: 0 7px 7px rgba(0, 0, 0, 0.1);
}
.news-listing__post {
	border-bottom: 1px solid #ccc;
	margin: 0 0 20px;
}
@media (min-width: 420px) {
	.news-listing__post {
		padding: 0 20px 8px 0;
		margin: 0 18px 30px;
	}
}
@media (min-width: 768px) {
	.news-listing__post {
		padding: 0 20px 20px 20px;
		margin: 0 0 42px;
	}
}
.news-listing__post:last-of-type {
	margin-bottom: 22px;
}
@media (min-width: 768px) {
	.news-listing__post:last-of-type {
		margin-bottom: 26px;
	}
}
.news-listing__post-wrap {
	color: #000;
}
@media (min-width: 420px) {
	.news-listing__post-wrap {
		display: flex;
		flex-wrap: wrap;
	}
}
.news-listing__post-img {
	width: 119px;
}
@media (min-width: 768px) {
	.news-listing__post-img {
		width: 174px;
	}
}
.news-listing__post-img img {
	width: 100%;
	object-fit: cover;
	margin: 0 0 6px;
}
@media (min-width: 768px) {
	.news-listing__post-img img {
		margin: 0 0 2px;
	}
}
.news-listing__post-img time {
	font-size: 10px;
}
.news-listing__post-text {
	font-size: 13px;
	line-height: 1.7;
	padding: 15px 0 10px;
}
@media (min-width: 420px) {
	.news-listing__post-text {
		padding: 0 0 0 18px;
		width: calc(100% - 119px);
	}
}
@media (min-width: 768px) {
	.news-listing__post-text {
		font-size: 16px;
		line-height: 1.25;
		width: calc(100% - 174px);
		padding: 0 0 0 35px;
	}
}
.news-listing__post-text strong {
	display: block;
	font: 500 14px/1.43 "freight-text-pro", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	margin: 0 0 2px;
}
@media (min-width: 768px) {
	.news-listing__post-text strong {
		font-size: 18px;
		line-height: 1.3333333;
		margin: 0 0 13px;
	}
}
.news-listing__post-text a {
	font-weight: 700;
	text-decoration: underline;
}
@media (min-width: 768px) {
	.news-listing__post-text a {
		font-size: 16px;
	}
}
.news-listing__post-text a:hover {
	text-decoration: none;
}
@media (min-width: 420px) {
	.news-listing__pagination {
		margin: 0 0 0 18px;
	}
}
@media (min-width: 768px) {
	.news-listing__pagination {
		display: flex;
		justify-content: flex-end;
		margin: 0 42px 0 0;
	}
}
.news-listing__pagination ul {
	font-size: 14px;
	line-height: 1.3;
	display: flex;
	align-items: center;
	letter-spacing: 0.01em;
	color: #000;
}
.news-listing__pagination ul li {
	margin: 0 0 0 4px;
}
.news-listing__pagination ul a {
	color: #000;
}
.news-listing__pagination ul a:not([class]):not([id]) {
	text-decoration: underline;
}

.article {
	padding: 40px 0 8px;
}
@media (min-width: 768px) {
	.article {
		padding: 65px 0 85px;
	}
}
.article .container {
	max-width: 1098px;
}
.article__back-link {
	display: inline-block;
	vertical-align: middle;
	font-size: 14px;
	font-weight: 700;
	margin: 0 0 20px;
	text-decoration: underline;
}
@media (min-width: 768px) {
	.article__back-link {
		font-size: 16px;
	}
}
.article__img {
	margin: 0 -15px;
}
@media (min-width: 768px) {
	.article__img {
		margin: 0;
	}
}
.article__title {
	display: block;
	font-size: 14px;
	font-weight: 400;
	color: #555;
	text-align: center;
	text-transform: uppercase;
	margin: 0 0 7px;
}
@media (min-width: 768px) {
	.article__title {
		font-size: 20px;
	}
}
.article h1 {
	font-size: 28px;
	line-height: 1.3;
	text-align: center;
	color: #16445c;
	margin: 0 0 18px;
}
@media (min-width: 768px) {
	.article h1 {
		font-size: 48px;
		margin: 0 0 22px;
	}
}
.article__wrap {
	font-size: 16px;
	line-height: 1.25;
	max-width: 798px;
	margin: 0 auto;
	padding: 33px 22px 0;
}
@media (min-width: 768px) {
	.article__wrap {
		padding: 55px 0 27px;
	}
}
.article__wrap h3 {
	text-align: center;
	color: #000;
	margin: 0 0 14px;
}
@media (max-width: 767px) {
	.article__wrap h3 {
		font-size: 28px;
		margin: 0 0 19px;
	}
}
.article__wrap p {
	margin: 0 0 20px;
}
.article__wrap a {
	text-decoration: underline;
	font-weight: bold;
}
.article__wrap a:hover {
	color: #000;
}
.article__contents {
	max-width: 351px;
	padding: 30px 14px 34px;
	margin: 0 auto;
	background: #f2f6f0;
	border-left: 5px solid #e3b03b;
}
@media (min-width: 768px) {
	.article__contents {
		padding-bottom: 23px;
	}
}
@media (min-width: 768px) {
	.article__contents {
		max-width: 530px;
	}
}
.article__contents .heading-text {
	font: 500 16px/1.2 "aktiv-grotesk", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	text-align: center;
	display: block;
	margin: 0 0 18px;
}
.article__contents ol {
	font-size: 16px;
	line-height: 1.625;
	margin: 0;
	padding: 0 15px 0 30px;
}
@media (min-width: 768px) {
	.article__contents ol {
		padding: 0 0 0 38px;
	}
}
@media (min-width: 768px) {
	.article__contents ol li {
		margin: 0 0 5px;
	}
}
.article__contents ol a {
	color: #000;
	text-decoration: underline;
}
.article .tags__list {
	max-width: 808px;
	margin: 0 auto;
}

.share {
	font-size: 12px;
	color: #5f5f5f;
	max-width: 995px;
	margin: 0 -15px 27px;
	padding: 21px 20px;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}
@media (min-width: 768px) {
	.share {
		font-size: 14px;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-between;
		margin: 0 auto 27px;
		padding: 6px 0;
	}
}
.share__info {
	width: 100%;
}
@media (min-width: 768px) {
	.share__info {
		width: 65%;
	}
}
@media (min-width: 1024px) {
	.share__info {
		display: flex;
		flex-wrap: wrap;
	}
}
.share__info p {
	margin: 0 20px 0 0;
}
.share__info p + p {
	margin: 5px 0 0;
}
@media (min-width: 1024px) {
	.share__info p + p {
		margin: 0;
	}
}
.share__btn {
	position: relative;
	padding: 16px 0 0;
	max-width: 108px;
	margin: 0 auto;
}
@media (min-width: 768px) {
	.share__btn {
		width: 35%;
		text-align: right;
		padding: 0;
		max-width: 100%;
		margin: 0;
	}
}
@media (max-width: 767px) {
	.share__btn .btn {
		font-size: 12px;
		min-width: 107px;
		padding: 10px 12px;
	}
}
.share__btn:hover .social {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.share__btn .social {
	transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
	position: absolute;
	top: 100%;
	left: 0;
	background: #16445c;
	padding: 9px 10px;
	z-index: 9;
	justify-content: center;
	margin-top: 10px;
	width: 115px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-12px);
}
@media (min-width: 768px) {
	.share__btn .social {
		left: auto;
		right: 0;
		width: 165px;
	}
}
.share__btn .social:before {
	content: "";
	position: absolute;
	top: -6px;
	left: 50%;
	transform: translateX(-50%);
	border-style: solid;
	border-width: 0 8px 8px 8px;
	border-color: transparent transparent #16445c transparent;
}
@media (min-width: 768px) {
	.share__btn .social:before {
		top: -10px;
		border-width: 0 12px 12px 12px;
	}
}
.share__btn .social li {
	padding: 0 14px 0 0;
}
.share__btn .social li:last-child {
	padding: 0;
}

.two-columns {
	font-size: 16px;
	line-height: 1.25;
	margin: 0 0 36px;
	background-color: #ffffff;
}
.two-columns__headline {
	font-size: 28px;
	line-height: 1.275;
	text-align: center;
	background-color: #ffffff;
}
@media (min-width: 768px) {
	.two-columns__headline {
		font-size: 40px;
		margin: 0 0 22px;
		text-align: left;
	}
}
@media (min-width: 1024px) {
	.two-columns__headline {
		margin-left: -95px;
	}
}
.two-columns .container {
	max-width: 958px;
}
@media (min-width: 420px) {
	.two-columns__row {
		margin: 0 35px;
	}
}
@media (min-width: 768px) {
	.two-columns__row {
		display: flex;
		flex-wrap: wrap;
		margin: 0 -30px;
	}
}
@media (min-width: 768px) {
	.two-columns__col {
		width: 50%;
		padding: 0 30px;
	}
}
.two-columns__col:only-child {
	width: 100%;
}
.two-columns__col p {
	margin: 0 0 20px;
}

.three-columns {
	font-size: 16px;
	line-height: 1.25;
	margin: 0 0 76px;
	background-color: #ffffff;
}
.three-columns__headline {
	font-size: 28px;
	text-align: center;
	background-color: #ffffff;
}
@media (min-width: 768px) {
	.three-columns__headline {
		font-size: 36px;
		text-align: left;
		margin: 0 0 36px;
	}
}
@media (min-width: 1024px) {
	.three-columns__headline {
		margin-left: -40px;
	}
}
.three-columns .container {
	max-width: 1064px;
}
@media (min-width: 420px) {
	.three-columns__row {
		margin: 0 35px;
	}
}
@media (min-width: 768px) {
	.three-columns__row {
		display: flex;
		flex-wrap: wrap;
		margin: 0 -17px;
	}
}
@media (min-width: 1024px) {
	.three-columns__row {
		margin: 0 -34px;
	}
}
@media (min-width: 768px) {
	.three-columns__col {
		width: 33.332%;
		padding: 0 17px;
	}
}
@media (min-width: 1024px) {
	.three-columns__col {
		padding: 0 34px;
	}
}
.three-columns__col p {
	margin: 0 0 20px;
}

.letters {
	padding: 34px 0 4px;
}
@media (min-width: 768px) {
	.letters {
		padding: 40px 0;
	}
}
.letters .container {
	max-width: 1134px;
}
.letters h1 {
	font-size: 28px;
	text-align: center;
	margin: 0 0 11px;
}
@media (min-width: 768px) {
	.letters h1 {
		font-size: 36px;
	}
}
@media (min-width: 1024px) {
	.letters h1 {
		font-size: 48px;
	}
}
.letters__list {
	font: 500 18px/1.2 "freight-text-pro", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	text-transform: uppercase;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	max-width: 250px;
	margin: 0 auto 22px;
}
@media (min-width: 768px) {
	.letters__list {
		font-size: 30px;
		line-height: 1.3;
		max-width: 514px;
		margin: 0 auto 34px;
	}
}
@media (min-width: 1024px) {
	.letters__list {
		font-size: 36px;
		max-width: none;
		margin: 0 0 34px;
	}
}
.letters__list li {
	margin: 0 4px 0 0;
}
@media (min-width: 768px) {
	.letters__list li {
		margin: 0 3px 0 0;
	}
}
.letters__list a {
	transition: color 0.3s ease-in-out, background 0.3s ease-in-out, width 0.3s ease-in-out;
	display: block;
	position: relative;
	color: #16445c;
	padding: 3px 0 0;
	text-align: center;
}
@media (min-width: 768px) {
	.letters__list a {
		padding: 15px 5px 0;
	}
}
.letters__list a:hover {
	color: #fff;
	background: #16445c;
}
.letters__headline {
	font-size: 11px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #f2f6f0;
	padding: 11px 11px 6px 10px;
	margin: 0 10px 25px;
	color: #16445c;
}
@media (min-width: 768px) {
	.letters__headline {
		font-size: 18px;
		padding: 9px 24px 4px 20px;
		margin: 0 0 40px;
	}
}
.letters__headline .letter {
	font: 500 18px/1.3 "freight-text-pro", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	text-transform: uppercase;
}
@media (min-width: 768px) {
	.letters__headline .letter {
		font-size: 28px;
	}
}
@media (min-width: 1024px) {
	.letters__headline .letter {
		font-size: 36px;
	}
}
.letters__headline.section-active {
	background: #16445c;
	color: #fff;
}
.letters__headline.section-active a {
	color: #fff;
}
.letters__headline a {
	color: #16445c;
	font-weight: 500;
}
.letters__headline a sup {
	top: -2px;
}
.letters__row {
	margin: 0 25px 30px;
}
@media (min-width: 768px) {
	.letters__row {
		display: flex;
		flex-wrap: wrap;
		margin: 0 22px 46px;
	}
}
@media (min-width: 768px) {
	.letters__col {
		width: 50%;
	}
}
@media (min-width: 1024px) {
	.letters__col {
		width: 25%;
	}
}
.letters__col ul {
	font-size: 18px;
}
.letters__col ul li {
	margin: 0 0 3px;
}
@media (min-width: 768px) {
	.letters__col ul li {
		margin: 0 0 4px;
	}
}
.letters__col ul a {
	color: #000;
}

.breadcrumb {
	font-size: 18px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	font-weight: 300;
	letter-spacing: 0.01em;
	padding: 45px 0 47px 12px;
	background-color: #ffffff;
}
@media (min-width: 768px) {
	.breadcrumb {
		justify-content: flex-start;
		padding: 74px 0 47px;
	}
}
.breadcrumb li {
	position: relative;
	padding: 0 13px 0 0;
}
.breadcrumb li.active {
	color: #16445c;
}
.breadcrumb li:before {
	content: "/";
	float: left;
	padding: 0 12px 0 0;
}
.breadcrumb li:first-child:before {
	display: none;
}
.breadcrumb li a {
	color: #000;
}

@media (min-width: 768px) {
	.get-started__row {
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-end;
	}
}

@media (min-width: 768px) {
	.get-started__wrap {
		width: calc(100% - 257px);
		padding: 0 0 0 35px;
		margin-top: -5px;
	}
}

@media (min-width: 1024px) {
	.get-started__wrap {
		padding: 0 65px 0;
	}
}

@media (min-width: 1200px) {
	.get-started__wrap {
		padding: 0 0 0 138px;
	}
}

.get-started__wrap-text {
	font-size: 18px;
	line-height: 1.3333333;
	padding: 0 32px;
	color: #343236;
	text-align: center;
	background-color: #ffffff;
}
@media (min-width: 768px) {
	.get-started__wrap-text {
		padding: 0 32px 0 0;
		text-align: left;
	}
}

.get-started__wrap h1 {
	font-size: 32px;
	margin: 0 0 20px;
	color: #000;
}
@media (min-width: 768px) {
	.get-started__wrap h1 {
		font-size: 36px;
		margin: 0 0 16px;
	}
}
@media (min-width: 1024px) {
	.get-started__wrap h1 {
		font-size: 48px;
		color: #000000;
	}
}

.get-started__wrap h4 {
	font-size: 24px;
	font-weight: 400;
	margin: 35px 0 22px;
}
@media (min-width: 768px) {
	.get-started__wrap h4 {
		margin: 47px 0 11px;
	}
}

.form {
	font-size: 16px;
	padding: 45px 0 55px;
	max-width: 342px;
	margin: 0 auto;
}
@media (min-width: 768px) {
	.form {
		padding: 63px 0;
		max-width: 706px;
	}
}
@media (min-width: 1024px) {
	.form__row {
		display: flex;
		flex-wrap: wrap;
		margin: 0 -11px;
	}
}
@media (min-width: 1024px) {
	.form__col {
		width: 50%;
		padding: 0 11px;
	}
}
.form strong {
	display: block;
	margin: 17px 0 13px;
}
.form__group {
	padding: 26px 0 19px;
}
@media (min-width: 768px) {
	.form__group {
		padding: 10px 0 19px;
	}
}
.form label {
	display: block;
	font-size: 16px;
	letter-spacing: 0.01em;
	margin: 0 0 8px;
}
.form input[type="checkbox"] {
	padding: 0;
	height: initial;
	width: initial;
	margin-bottom: 0;
	display: none;
	cursor: pointer;
}
.form input[type="checkbox"] + label {
	position: relative;
	cursor: pointer;
}
.form input[type="checkbox"] + label:before {
	content: "";
	-webkit-appearance: none;
	background-color: transparent;
	width: 14px;
	height: 14px;
	border: 0.75px solid #d2d2d2;
	border-radius: 4px;
	display: inline-block;
	position: relative;
	vertical-align: middle;
	cursor: pointer;
	margin: -3px 8px 0 0;
}
.form input[type="checkbox"]:checked + label:before {
	background: #4383ff;
}
.form input[type="checkbox"]:checked + label:after {
	content: "";
	display: block;
	position: absolute;
	top: 5px;
	left: 5px;
	width: 4px;
	height: 8px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}
.form input[type="radio"]:checked,
.form input[type="radio"]:not(:checked) {
	position: absolute;
	left: -9999px;
}
.form input[type="radio"]:checked + label,
.form input[type="radio"]:not(:checked) + label {
	position: relative;
	padding-left: 22px;
	cursor: pointer;
	display: block;
}
.form input[type="radio"]:checked + label:before,
.form input[type="radio"]:not(:checked) + label:before {
	content: "";
	position: absolute;
	top: 2px;
	left: 0;
	width: 14px;
	height: 14px;
	border: 1px solid #ddd;
	border-radius: 100%;
	background: #fff;
}
.form input[type="radio"]:checked + label:after,
.form input[type="radio"]:not(:checked) + label:after {
	content: "";
	width: 10px;
	height: 10px;
	background: #4383ff;
	position: absolute;
	top: 4px;
	left: 2px;
	border-radius: 100%;
	transition: all 0.2s ease;
}
.form input[type="radio"]:not(:checked) + label:after {
	opacity: 0;
	transform: scale(0);
}
.form input[type="radio"]:checked + label:after {
	opacity: 1;
	transform: scale(1);
}
.form .password-note {
	font-size: 14px;
	line-height: 1.3;
	letter-spacing: 0.01em;
	color: #767676;
	margin: 10px 0 0;
}
@media (min-width: 768px) {
	.form .password-note {
		margin-top: -6px;
	}
}
.form .jcf-select {
	font: 400 16px/1.25 "aktiv-grotesk", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	min-height: 45px;
	border: 0.75px solid #d2d2d2;
	border-radius: 4px;
	padding: 10px 8px;
}
.form .jcf-select .jcf-select-opener:after {
	content: ">";
	border: none;
	right: 13px;
	transform: translateY(-50%) rotate(90deg);
}
.form .datepicker input {
	margin: 0 0 24px;
}
.form .datepicker input::-webkit-input-placeholder {
	color: #9c9c9c;
}
.form .datepicker input::-moz-placeholder {
	opacity: 1;
	color: #9c9c9c;
}
.form .datepicker input:-moz-placeholder {
	color: #9c9c9c;
}
.form .datepicker input:-ms-input-placeholder {
	color: #9c9c9c;
}
.form .datepicker input.placeholder {
	color: #9c9c9c;
}
.form__btns {
	display: flex;
	flex-wrap: wrap;
	padding: 5px 3px;
}
.form input[type="submit"],
.form input[type="reset"] {
	transition: background 0.3s ease-in-out;
	font-size: 16px;
	line-height: 1.32;
	letter-spacing: 0.01em;
	padding: 0;
	background: #16445c;
	color: #fff;
	min-width: 125px;
	border-radius: 3em;
	text-align: center;
	border: none;
	padding: 13px 12px 11px;
	margin: 0 10px 0 0;
}
.form input[type="submit"]:hover,
.form input[type="reset"]:hover {
	background: #3e6c84;
}
.form textarea {
	height: 102px;
}
.form__message {
	padding: 20px 0 24px;
}
@media (min-width: 768px) {
	.form__message {
		padding: 55px 0 24px;
	}
}

.multiple-select select,
.multiple-select .jcf-list-box {
	width: 100%;
	padding: 16px 0 17px;
	max-height: 126px;
	overflow-y: auto;
	border: 0.75px solid #d2d2d2;
	border-radius: 4px;
	margin: 0 0 24px;
}
.multiple-select select option,
.multiple-select .jcf-list-box option {
	padding: 3px 10px 2px;
}

.multiple-select .jcf-list .jcf-option {
	padding: 1px 9px;
}

.ui-datepicker {
	z-index: 999 !important;
}

.bio {
	padding: 36px 0 0;
}
@media (min-width: 768px) {
	.bio {
		padding: 62px 0 132px;
	}
}
.bio .back-link {
	margin: 0 0 30px 23px;
}
@media (min-width: 768px) {
	.bio .back-link {
		margin: 0 0 30px;
	}
}
.bio__row {
	margin: 0 -15px;
}
@media (min-width: 768px) {
	.bio__row {
		display: flex;
		flex-wrap: wrap;
		margin: 0;
	}
}
.bio__img {
	position: relative;
	z-index: 5;
}
@media (min-width: 768px) {
	.bio__img {
		order: 2;
		width: 50%;
		margin: 51px 0 0;
	}
}
@media (min-width: 1024px) {
	.bio__img {
		width: 53%;
	}
}
.bio__text {
	--height: 58px;
	font-size: 18px;
	line-height: 1.3333333;
	position: relative;
	background: #e3b03b;
	padding: 43px 46px 27px 77px;
}
@media (min-width: 768px) {
	.bio__text {
		order: 1;
		width: 50%;
		flex: 1 0 0;
		padding: 55px 65px 14px 55px;
		margin: 0 -45px 0 0;
	}
}
@media (min-width: 1024px) {
	.bio__text {
		padding: 55px 68px 14px 74px;
		width: 47%;
	}
}
@media (min-width: 1200px) {
	.bio__text {
		padding: 55px 92px 14px 74px;
	}
}
.bio__text h1 {
	font-size: 28px;
	margin: 0 0 19px;
}
@media (min-width: 1024px) {
	.bio__text h1 {
		font-size: 36px;
		margin: 0 0 10px;
	}
}
.bio__text h3 {
	font: 400 21px/1.375 "aktiv-grotesk", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	letter-spacing: 0;
	margin: 0 0 30px;
}
@media (min-width: 1024px) {
	.bio__text h3 {
		font-size: 24px;
		margin: 0 0 24px;
	}
}
.bio__text p {
	margin: 0 0 24px;
}
.bio__text .line {
	left: 41px;
	bottom: var(--height);
}
@media (min-width: 768px) {
	.bio__text .line {
		left: 25px;
	}
}
@media (min-width: 1024px) {
	.bio__text .line {
		left: 39px;
	}
}
.in-viewport .bio__text .line {
	opacity: 1;
	visibility: visible;
}
@media (min-width: 1024px) {
	.in-viewport .bio__text .line {
		animation: lineFadeUp 2s ease-in-out;
	}
}

.back-link {
	font-size: 14px;
	display: inline-block;
	vertical-align: middle;
	color: #000;
	text-decoration: underline;
}

.areas {
	padding: 40px 0;
}
@media (min-width: 768px) {
	.areas {
		padding: 50px 0 160px;
	}
}
.areas__head {
	max-width: 358px;
	margin: 0 auto 48px;
	text-align: center;
	color: #343236;
}
@media (min-width: 768px) {
	.areas__head {
		max-width: 785px;
		margin: 0 auto 90px;
	}
}
.areas__head h2 {
	margin: 0 0 14px;
}
.areas__map {
	position: relative;
	max-width: 404px;
	margin: 0 auto;
}
@media (min-width: 768px) {
	.areas__map {
		max-width: 730px;
	}
}
@media (min-width: 1024px) {
	.areas__map {
		max-width: 985px;
	}
}
@media (min-width: 1200px) {
	.areas__map {
		max-width: 1130px;
	}
}
.areas__map.in-viewport #map .pin {
	transform: scale(1);
}
.areas__map #map {
	width: 100%;
	height: auto;
}
.areas__map #map .pin {
	transition: transform 0.3s ease-in-out;
	cursor: pointer;
	transform: scale(0);
}
.areas__map #map .pin:nth-child(1) {
	transition-delay: 50ms;
}
.areas__map #map .pin:nth-child(2) {
	transition-delay: 100ms;
}
.areas__map #map .pin:nth-child(3) {
	transition-delay: 150ms;
}
.areas__map #map .pin:nth-child(4) {
	transition-delay: 200ms;
}
.areas__map #map .pin:nth-child(5) {
	transition-delay: 250ms;
}
.areas__map #map .pin:nth-child(6) {
	transition-delay: 300ms;
}
.areas__map #map .pin:nth-child(7) {
	transition-delay: 350ms;
}
.areas__map #map .pin:nth-child(8) {
	transition-delay: 400ms;
}
.areas__map #map .pin:nth-child(9) {
	transition-delay: 450ms;
}
.areas__map #map .pin:nth-child(10) {
	transition-delay: 500ms;
}
.areas__map #map .pin:nth-child(11) {
	transition-delay: 550ms;
}
.areas__map #map .pin:nth-child(12) {
	transition-delay: 600ms;
}
.areas__map #map .pin:nth-child(13) {
	transition-delay: 650ms;
}
.areas__map #map .pin:nth-child(14) {
	transition-delay: 700ms;
}
.areas__map #map .pin:nth-child(15) {
	transition-delay: 750ms;
}
.areas__map #map .pin:nth-child(16) {
	transition-delay: 800ms;
}
.areas__map #map .pin:nth-child(17) {
	transition-delay: 850ms;
}
.areas__map #map .pin:nth-child(18) {
	transition-delay: 900ms;
}
.areas__map #map .pin:nth-child(19) {
	transition-delay: 950ms;
}
.areas__map #map .pin:nth-child(20) {
	transition-delay: 1000ms;
}
.areas__map #map .pin:nth-child(21) {
	transition-delay: 1050ms;
}
.areas__map #map .pin:nth-child(22) {
	transition-delay: 1100ms;
}
.areas__map #map .pin:nth-child(23) {
	transition-delay: 1150ms;
}
.areas__map #map .pin:nth-child(24) {
	transition-delay: 1200ms;
}
.areas__map #map .pin:nth-child(25) {
	transition-delay: 1250ms;
}
.areas__map #map .pin:nth-child(26) {
	transition-delay: 1300ms;
}
.areas__map #map .pin:nth-child(27) {
	transition-delay: 1350ms;
}
.areas__map #map .pin:nth-child(28) {
	transition-delay: 1400ms;
}
.areas__map #map .pin:nth-child(29) {
	transition-delay: 1450ms;
}
.areas__map #map .pin:nth-child(30) {
	transition-delay: 1500ms;
}
.areas__map #map .pin:nth-child(31) {
	transition-delay: 1550ms;
}
.areas__map #map .pin:nth-child(32) {
	transition-delay: 1600ms;
}
.areas__map #map .pin:nth-child(33) {
	transition-delay: 1650ms;
}
.areas__map #map .pin:nth-child(34) {
	transition-delay: 1700ms;
}
.areas__map #map .pin:nth-child(35) {
	transition-delay: 1750ms;
}
.areas__map #map .pin:nth-child(36) {
	transition-delay: 1800ms;
}
.areas__map #map .pin:nth-child(37) {
	transition-delay: 1850ms;
}
.areas__map #map .pin:nth-child(38) {
	transition-delay: 1900ms;
}
.areas__map #map .pin:nth-child(39) {
	transition-delay: 1950ms;
}
.areas__map #map .pin:nth-child(40) {
	transition-delay: 2000ms;
}
.areas__map #map .pin:nth-child(41) {
	transition-delay: 2050ms;
}
.areas__map #map .pin:nth-child(42) {
	transition-delay: 2100ms;
}
.areas__map #map .pin:nth-child(43) {
	transition-delay: 2150ms;
}
.areas__map #map .pin:nth-child(44) {
	transition-delay: 2200ms;
}
.areas__map #map .pin:nth-child(45) {
	transition-delay: 2250ms;
}
.areas__map #map .pin:nth-child(46) {
	transition-delay: 2300ms;
}
.areas__map #map .pin:nth-child(47) {
	transition-delay: 2350ms;
}
.areas__map #map .pin:nth-child(48) {
	transition-delay: 2400ms;
}
.areas__map #map .pin:nth-child(49) {
	transition-delay: 2450ms;
}
.areas__map #map .pin:nth-child(50) {
	transition-delay: 2500ms;
}
.areas__map #map .pin:nth-child(51) {
	transition-delay: 2550ms;
}
.areas__map #map .pin:nth-child(52) {
	transition-delay: 2600ms;
}
.areas__map #map .pin:nth-child(53) {
	transition-delay: 2650ms;
}
.areas__map #map .pin:nth-child(54) {
	transition-delay: 2700ms;
}
.areas__map #map .pin:nth-child(55) {
	transition-delay: 2750ms;
}
.areas__map #map .pin:nth-child(56) {
	transition-delay: 2800ms;
}
.areas__map #map .pin:nth-child(57) {
	transition-delay: 2850ms;
}
.areas__map #map .pin:nth-child(58) {
	transition-delay: 2900ms;
}
.areas__map #map .pin:nth-child(59) {
	transition-delay: 2950ms;
}
.areas__map #map .pin:nth-child(60) {
	transition-delay: 3000ms;
}
.areas__map #map .pin:nth-child(61) {
	transition-delay: 3050ms;
}
.areas__map #map .pin:nth-child(62) {
	transition-delay: 3100ms;
}
.areas__map #map .pin:nth-child(63) {
	transition-delay: 3150ms;
}
.areas__map #map .pin:nth-child(64) {
	transition-delay: 3200ms;
}
.areas__map #map .pin:nth-child(65) {
	transition-delay: 3250ms;
}
.areas__map #map .pin:nth-child(66) {
	transition-delay: 3300ms;
}
.areas__map #map .pin:nth-child(67) {
	transition-delay: 3350ms;
}
.areas__map #map .pin:nth-child(68) {
	transition-delay: 3400ms;
}
.areas__map #map .pin:nth-child(69) {
	transition-delay: 3450ms;
}
.areas__map #map .pin:nth-child(70) {
	transition-delay: 3500ms;
}
.areas__map #map .pin:nth-child(71) {
	transition-delay: 3550ms;
}
.areas__map #map .pin:nth-child(72) {
	transition-delay: 3600ms;
}
.areas__map #map .pin:nth-child(73) {
	transition-delay: 3650ms;
}
.areas__map #map .pin:nth-child(74) {
	transition-delay: 3700ms;
}
.areas__map #map .pin:nth-child(75) {
	transition-delay: 3750ms;
}
.areas__map #map .pin:nth-child(76) {
	transition-delay: 3800ms;
}
.areas__map #map .pin:nth-child(77) {
	transition-delay: 3850ms;
}
.areas__map #map .pin:nth-child(78) {
	transition-delay: 3900ms;
}
.areas__map #map .pin:nth-child(79) {
	transition-delay: 3950ms;
}
.areas__map #map .pin:nth-child(80) {
	transition-delay: 4000ms;
}
.areas__map #map .pin:nth-child(81) {
	transition-delay: 4050ms;
}
.areas__map #map .pin:nth-child(82) {
	transition-delay: 4100ms;
}
.areas__map #map .pin:nth-child(83) {
	transition-delay: 4150ms;
}
.areas__map #map .pin:nth-child(84) {
	transition-delay: 4200ms;
}
.areas__map #map .pin:nth-child(85) {
	transition-delay: 4250ms;
}
.areas__map #map .pin:nth-child(86) {
	transition-delay: 4300ms;
}
.areas__map #map .pin:nth-child(87) {
	transition-delay: 4350ms;
}
.areas__map #map .pin:nth-child(88) {
	transition-delay: 4400ms;
}
.areas__map #map .pin:nth-child(89) {
	transition-delay: 4450ms;
}
.areas__map #map .pin:nth-child(90) {
	transition-delay: 4500ms;
}
.areas__map #map .pin:nth-child(91) {
	transition-delay: 4550ms;
}
.areas__map #map .pin:nth-child(92) {
	transition-delay: 4600ms;
}
.areas__map #map .pin:nth-child(93) {
	transition-delay: 4650ms;
}
.areas__map #map .pin:nth-child(94) {
	transition-delay: 4700ms;
}
.areas__map #map .pin:nth-child(95) {
	transition-delay: 4750ms;
}
.areas__map #map .pin:nth-child(96) {
	transition-delay: 4800ms;
}
.areas__map #map .pin:nth-child(97) {
	transition-delay: 4850ms;
}
.areas__map #map .pin:nth-child(98) {
	transition-delay: 4900ms;
}
.areas__map #map .pin:nth-child(99) {
	transition-delay: 4950ms;
}
.areas__map #map .pin:nth-child(100) {
	transition-delay: 5000ms;
}
.areas__map #map .pin.active {
	r: 16px;
	stroke: #16445c;
	stroke-width: 3;
	fill: #e3b03b;
}
.areas__map-pins {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.areas__map-pin {
	position: absolute;
	top: 0;
	left: 0;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: #f00;
}
@media (min-width: 768px) {
	.areas__map-pin {
		width: 17px;
		height: 17px;
	}
}

.popup {
	position: absolute;
	top: -9999px;
	left: -9999px;
	z-index: 99;
	background: #fff;
	width: 97px;
	padding: 6px 10px 0 12px;
	border-left: 3px solid #e3b03b;
	border-radius: 5px;
	opacity: 0;
	visibility: hidden;
	margin: 0 0 0 -9px;
	text-align: left;
	filter: drop-shadow(0px 0px 14px rgba(0, 0, 0, 0.25));
}
@media (min-width: 768px) {
	.popup {
		width: 250px;
		border-width: 8px;
		padding: 15px 20px 20px;
		margin: 15px 0 0 -14px;
	}
}
@media (min-width: 1024px) {
	.popup {
		padding: 15px 34px 20px;
		width: 269px;
	}
}
.popup.active {
	opacity: 1;
	visibility: visible;
}
.popup.right {
	margin-left: 15px;
}
@media (min-width: 768px) {
	.popup.right {
		margin-left: 40px;
	}
}
.popup strong {
	display: block;
	color: #16445c;
}
.popup__name {
	position: relative;
	font: 700 9px/1.22222 "freight-text-pro", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	letter-spacing: 0.01em;
	padding: 0 0 3px;
	margin: 0 0 5px;
}
@media (min-width: 768px) {
	.popup__name {
		font-size: 24px;
		line-height: 1.3;
		padding: 0 0 12px;
		margin: 0 0 16px;
	}
}
.popup__name:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 11px;
	height: 1px;
	background: #e3b03b;
}
@media (min-width: 768px) {
	.popup__name:after {
		width: 31px;
	}
}
.popup__title {
	font-size: 5px;
	font-weight: 800;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	margin: 0 0 5px;
}
@media (min-width: 768px) {
	.popup__title {
		font-size: 12px;
		letter-spacing: 1.1px;
		margin: 0 0 20px 4px;
	}
}
.popup ul {
	font-size: 6px;
	padding: 0 0 0 1px;
}
@media (min-width: 768px) {
	.popup ul {
		font-size: 16px;
		padding: 0 0 6px 4px;
	}
}
@media (min-width: 1024px) {
	.popup ul {
		font-size: 18px;
	}
}
.popup ul li {
	margin: 0 0 2px;
}
@media (min-width: 768px) {
	.popup ul li {
		margin: 0 0 4px;
	}
}
.popup .btn {
	font-size: 5px;
	min-width: 41px;
	padding: 2px 5px;
	margin-top: -5px;
}
@media (min-width: 768px) {
	.popup .btn {
		font-size: 14px;
		min-width: 113px;
		padding: 8px;
		margin-left: -5px;
		margin-top: 0;
	}
}

.faculty {
	margin: -15px -15px 0;
}
@media (min-width: 768px) {
	.faculty {
		margin: 0;
	}
}
.faculty .container {
	max-width: 1176px;
}
.faculty__table {
	overflow-x: auto;
}
.faculty .dataTables_wrapper {
	width: 828px;
	margin: 0 auto;
}
@media (min-width: 1024px) {
	.faculty .dataTables_wrapper {
		width: 100%;
		margin: 0;
	}
}
.faculty #faculty-table_length,
/* .faculty #faculty-table_filter, */
.faculty #faculty-table_info {
	display: none;
}

.dataTables_filter {
	position: relative;
	max-width: 338px;
	margin: 0 auto 68px;
}
@media (min-width: 768px) {
	.dataTables_filter {
		max-width: 761px;
		margin-bottom: 28px;
	}
}
.dataTables_filter input[type="search"] {
	border: none;
	padding: 6px 35px 6px 10px;
	border-bottom: 1px solid #000;
	margin: 0;
	height: 34px;
	border-radius: 0;
}
@media (min-width: 768px) {
	.dataTables_filter input[type="search"] {
		height: 42px;
		padding: 6px 55px 6px 10px;
	}
}
.dataTables_filter button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 12px;
	background-image: url(./1b755ab35825e29e388fce069c994a34.png);
	width: 16px;
	height: 16px;
	background-size: 16px 16px;
	background-repeat: no-repeat;
	padding: 0;
}

.dataTables_filter input[type="search"] {
	background: url(./1b755ab35825e29e388fce069c994a34.png);
	background-repeat: no-repeat;
	background-position: 0px 3px !important;
	background-position: right;
	background-size: 30px;
	padding-left: 40px;
}

@media (min-width: 768px) {
	.dataTables_filter button {
		width: 29px;
		height: 29px;
		background-size: 29px 29px;
		margin-top: -3px;
		right: 15px;
	}
}

.faculty .dataTables_wrapper .dataTables_paginate {
	font-family: "Inter", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	width: 100%;
	background: #97b7a1;
	padding: 27px 26px;
	margin-top: 0;
	text-align: left;
}
@media (min-width: 1024px) {
	.faculty .dataTables_wrapper .dataTables_paginate {
		text-align: right;
		padding: 27px 37px;
	}
}
.faculty .dataTables_wrapper .dataTables_paginate .paginate_button {
	position: relative;
	padding: 0;
	background: none !important;
	border: none !important;
	color: #000 !important;
	min-width: auto;
	margin-left: 5px;
	text-decoration: underline !important;
}
.faculty .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
	text-decoration: none !important;
}
.faculty .dataTables_wrapper .dataTables_paginate .paginate_button.previous,
.faculty .dataTables_wrapper .dataTables_paginate .paginate_button.next {
	font-size: 0;
	text-decoration: none !important;
}
.faculty .dataTables_wrapper .dataTables_paginate .paginate_button.previous:before,
.faculty .dataTables_wrapper .dataTables_paginate .paginate_button.next:before {
	content: "<<";
	font-size: 18px;
}
.faculty .dataTables_wrapper .dataTables_paginate .paginate_button.previous.disabled,
.faculty .dataTables_wrapper .dataTables_paginate .paginate_button.next.disabled {
	display: none;
}
.faculty .dataTables_wrapper .dataTables_paginate .paginate_button.next:before {
	content: ">>";
}
.faculty .dataTables_wrapper .dataTables_paginate .paginate_button.current {
	background: none;
	text-decoration: none !important;
}
.faculty .dataTables_wrapper .dataTables_paginate span .paginate_button:first-child:before {
	content: "Page";
	display: inline-block;
	vertical-align: top;
	margin: 0 5px 0 0;
	pointer-events: none;
}

#faculty-table {
	font-family: "Inter", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	table-layout: fixed;
	background-color: #ffffff;
}
@media (min-width: 1200px) {
	#faculty-table {
		width: 100%;
		max-width: 100%;
		background-color: #ffffff;
	}
}
#faculty-table thead th {
	font-family: "freight-text-pro", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	font-weight: 500;
	background: #16445c;
	color: #fff;
	padding: 22px 0 10px 14px;
}
#faculty-table thead th:before,
#faculty-table thead th:after {
	display: none;
}
#faculty-table tbody tr.even td {
	background: #f2f6f0;
}
#faculty-table tbody tr.odd td {
	background: #ffffff;
}
#faculty-table tbody td {
	border: 1px solid #000;
	padding: 15px 14px;
}
@media (min-width: 1024px) {
	#faculty-table tbody td {
		padding: 25px 14px;
	}
}
#faculty-table tbody td:first-child {
	border-left: 2px solid #000;
}
#faculty-table tbody td:last-child {
	border-right: 2px solid #000;
}

#faculty-table a {
	text-decoration: underline;
	font-weight: bold;
}
#faculty-table a:hover {
	text-decoration: none;
}

.modules .container {
	max-width: 1170px;
}

.modules .get-started__row {
	display: block;
}
@media (min-width: 1024px) {
	.modules .get-started__row {
		display: flex;
		flex-wrap: wrap;
	}
}

@media (min-width: 1024px) {
	.modules .about__accordion {
		margin-left: 12px;
	}
}

@media (max-width: 1023px) {
	.modules .about__accordion {
		width: 257px;
		margin: 0 0 116px;
	}
}

@media (max-width: 767px) {
	.modules .about__accordion {
		margin: 0 auto 116px;
	}
}

@media (min-width: 1024px) {
	.modules__module {
		width: calc(100% - 269px);
		padding: 0 0 0 92px;
		background-color: #ffffff;
	}
}

@media (min-width: 768px) {
	.modules__module .two-blocks__text {
		margin: 0 0 0 -73px;
		padding-left: 100px;
		padding-right: 42px;
	}
}

@media (min-width: 1024px) {
	.modules__module .two-blocks__text {
		padding-left: 107px;
		padding-bottom: 35px;
	}
}

@media (min-width: 768px) {
	.modules__module .two-blocks__text .line {
		left: 84px;
	}
}

@media (min-width: 1024px) {
	.modules__module .two-blocks__text .line {
		left: 88px;
	}
}

@media (min-width: 768px) {
	.modules__module .two-blocks__img {
		margin-top: 47px;
		width: 47%;
	}
}

@media (min-width: 768px) {
	.modules__module .two-blocks__btn {
		bottom: -18px;
		margin-left: -103px;
	}
}

@media (min-width: 768px) {
	.modules__module .two-blocks--reverse .two-blocks__img {
		width: 50.6%;
	}
}

@media (min-width: 768px) {
	.modules__module .two-blocks--reverse .two-blocks__text {
		padding: 47px 74px 28px 39px;
		margin-right: -50px;
		margin-left: 0;
	}
}

@media (min-width: 768px) {
	.modules__module .two-blocks--reverse .two-blocks__text .line {
		left: 18px;
	}
}

@media (min-width: 1024px) {
	.modules__module .two-blocks--reverse .two-blocks__btn {
		margin-left: 0;
		bottom: -28px;
	}
}

@media (min-width: 768px) {
	.modules__module .deadline__img {
		width: 47%;
		min-height: 313px;
	}
}

@media (min-width: 768px) {
	.modules__module .deadline__img img {
		width: 202px;
	}
}

@media (min-width: 768px) {
	.modules__module .deadline__text {
		margin: -48px 0 0 -75px;
		padding-left: 110px;
	}
}

@media (min-width: 1200px) {
	.modules__module .deadline__text {
		padding: 92px 45px 88px 107px;
	}
}

.modules__module .deadline__text .line {
	display: none;
}

.modules__module .deadline__btn {
	left: 96px;
	transform: none;
}

@media (min-width: 768px) {
	.modules__module .cards .row {
		margin: 0 -30px;
		justify-content: flex-start;
	}
}

@media (min-width: 768px) {
	.modules__module .cards .col {
		width: 50%;
		padding-left: 30px;
		padding-right: 30px;
	}
}

.modules__module .cards .card {
	border: 1px solid #979797;
}

.modules__module .infographics {
	position: relative;
	margin: 0 -15px;
}
@media (min-width: 1024px) {
	.modules__module .infographics {
		padding: 30px 0 28px;
		margin: 0 -8px 100px 0;
	}
}
@media (min-width: 1200px) {
	.modules__module .infographics {
		margin: 0 -20px 100px 0;
	}
}
@media (min-width: 1024px) {
	.modules__module .infographics__row {
		margin: 0 -12px;
	}
}
@media (min-width: 1024px) {
	.modules__module .infographics__col {
		padding: 0 12px;
	}
}
@media (min-width: 1024px) {
	.modules__module .infographics__box {
		font-size: 14px;
		width: 210px;
		height: 210px;
		margin: 0 auto;
		padding: 35px 40px 20px;
	}
}
@media (min-width: 1200px) {
	.modules__module .infographics__box {
		font-size: 16px;
		width: 243px;
		height: 243px;
	}
}
@media (min-width: 1024px) {
	.modules__module .infographics__box:before {
		top: 0;
	}
}
@media (min-width: 1024px) {
	.modules__module .infographics__box svg {
		width: 210px;
		height: 210px;
	}
}
@media (min-width: 1200px) {
	.modules__module .infographics__box svg {
		width: 243px;
		height: 243px;
	}
}
@media (min-width: 1024px) {
	.modules__module .infographics__box svg .circle {
		stroke-width: 1.2;
	}
}
@media (min-width: 1024px) {
	.modules__module .infographics__box-num {
		font-size: 44px;
	}
}
@media (min-width: 1200px) {
	.modules__module .infographics__box-num {
		font-size: 60px;
	}
}
@media (min-width: 1024px) {
	.modules__module .infographics__box-icon {
		margin: 0 0 3px;
	}
}
.modules__module .infographics__box-icon img {
	width: 42px;
}
@media (min-width: 1024px) {
	.modules__module .infographics__box-icon img {
		width: 34px;
	}
}
@media (min-width: 1200px) {
	.modules__module .infographics__box-icon img {
		width: 42px;
	}
}

.vertical-tabs {
	padding: 25px 0;
	background-color: #ffffff;
}
.vertical-tabs .container {
	max-width: 1162px;
}
.vertical-tabs .container > h3 {
	margin: 0 0 45px;
	background-color: #ffffff;
}
@media (max-width: 767px) {
	.vertical-tabs .container > h3 {
		font-size: 28px;
		text-align: center;
		margin: 0 0 20px;
	}
}
@media (min-width: 768px) {
	.vertical-tabs__row {
		display: flex;
		flex-wrap: wrap;
	}
}
.vertical-tabs__list {
	font-size: 18px;
	font-family: "freight-text-pro", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	font-weight: 500;
	background: #fbfbfb;
	max-width: 370px;
	margin: 0 auto 32px;
}
@media (min-width: 768px) {
	.vertical-tabs__list {
		width: 240px;
		max-width: 100%;
		margin: 0;
	}
}
@media (min-width: 1024px) {
	.vertical-tabs__list {
		width: 296px;
	}
}
.vertical-tabs__list li {
	border-bottom: 1px solid #f0f0f0;
	border-left: 1px solid #f0f0f0;
	border-right: 1px solid #f0f0f0;
}
.vertical-tabs__list li:first-child {
	border-top: 1px solid #f0f0f0;
}
.vertical-tabs__list a {
	display: block;
	padding: 30px 20px;
	background: #fff;
	text-align: center;
}
@media (min-width: 768px) {
	.vertical-tabs__list a {
		padding: 18px 60px 18px 29px;
		min-height: 87px;
		text-align: left;
	}
}
@media (min-width: 1024px) {
	.vertical-tabs__list a {
		padding: 18px 90px 18px 29px;
	}
}
.vertical-tabs__list a.active {
	background: #f0f0f0;
}
.vertical-tabs__content {
	background: #f0f0f0;
	margin: 0 -15px;
	padding: 34px 15px 58px;
}
@media (min-width: 420px) {
	.vertical-tabs__content {
		padding: 34px 38px 58px;
	}
}
@media (min-width: 768px) {
	.vertical-tabs__content {
		width: calc(100% - 240px);
		margin: 0;
	}
}
@media (min-width: 1024px) {
	.vertical-tabs__content {
		width: calc(100% - 296px);
		padding: 34px 63px 34px 52px;
	}
}
.vertical-tabs__content h3 {
	font-size: 24px;
	line-height: 1.3;
	text-align: center;
	margin: 0 0 18px;
}
@media (min-width: 768px) {
	.vertical-tabs__content h3 {
		font-size: 28px;
		text-align: left;
	}
}
@media (min-width: 1024px) {
	.vertical-tabs__content h3 {
		font-size: 32px;
	}
}
.vertical-tabs__content p {
	margin: 0 0 22px;
}
@media (min-width: 768px) {
	.vertical-tabs__content p {
		margin: 0 0 24px;
	}
}

.accordion {
	padding: 12px 0 44px;
	background: #e8e8e8;
}
@media (min-width: 768px) {
	.accordion {
		padding: 62px 0 44px;
	}
}
.accordion .container {
	max-width: 1176px;
}
@media (max-width: 767px) {
	.accordion h3 {
		font-size: 28px;
		text-align: center;
		margin: 0 0 64px;
	}
}
.accordion__list {
	font-size: 18px;
	line-height: 1.3333333;
	margin: 0 -15px;
}
@media (min-width: 768px) {
	.accordion__list {
		margin: 0;
	}
}
.accordion__list li {
	margin: 0 0 6px;
}
@media (min-width: 768px) {
	.accordion__list li {
		margin: 0 0 18px;
	}
}
.accordion__list li.active .accordion__list-opener:after {
	transform: translateY(-50%) rotate(90deg);
}
.accordion__list-opener {
	font-family: "freight-text-pro", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	font-weight: 500;
	position: relative;
	display: flex;
	align-items: center;
	background: #fff;
	min-height: 94px;
	padding: 20px 75px 20px 26px;
	border-left: 6px solid #e3b03b;
}
@media (min-width: 768px) {
	.accordion__list-opener {
		display: block;
		padding: 24px 95px 24px 29px;
		min-height: auto;
	}
}
.accordion__list-opener:after {
	transition: transform 0.3s ease-in-out;
	content: "";
	position: absolute;
	top: 50%;
	right: 37px;
	transform: translateY(-50%);
	border-style: solid;
	border-color: transparent transparent transparent #bababa;
	border-width: 9px 0 9px 15.6px;
	margin-top: -2px;
}
@media (min-width: 768px) {
	.accordion__list-opener:after {
		right: 40px;
		margin-top: 0;
	}
}
.accordion__list-slide {
	padding: 32px 20px 10px 26px;
	background: #f9f9f9;
}
@media (min-width: 768px) {
	.accordion__list-slide {
		padding: 30px 78px 16px 45px;
	}
}

.table {
	padding: 32px 0;
}
@media (min-width: 768px) {
	.table {
		padding: 62px 0;
	}
}
.table .container {
	max-width: 1190px;
}
.table h3 {
	margin: 0 0 34px;
	background-color: #ffffff;
}
@media (max-width: 767px) {
	.table h3 {
		font-size: 28px;
		text-align: center;
		margin: 0 0 50px;
	}
}
.table .table-responsive {
	margin: 0 -15px;
}
@media (min-width: 768px) {
	.table .table-responsive {
		margin: 0;
	}
}
.table .table-responsive table th {
	background: #f9f9f9;
	color: #16445c;
	font-weight: 500;
}
.table .table-responsive table th,
.table .table-responsive table td {
	height: 76px;
	border: 1px solid #e7e7e7;
	padding: 12px 30px 8px;
}
.table .table-responsive table td {
	color: #000;
}

.kitchensink-headline {
	max-width: 1144px;
	margin: 0 auto 38px;
	background-color: #ffffff;
	padding: 0 15px;
}
@media (max-width: 767px) {
	.kitchensink-headline {
		font-size: 28px;
	}
}

.kitchensink-divider {
	margin: 69px 0;
	box-sizing: border-box;
	border-top: 1px solid rgba(22, 68, 92, 0.35);
}

.deadline {
	padding: 100px 0;
}
@media (min-width: 1024px) {
	.deadline {
		padding: 75px 0;
	}
}
.deadline .container {
	max-width: 1148px;
}
.deadline__row {
	margin: 0 -15px;
}
@media (min-width: 768px) {
	.deadline__row {
		display: flex;
		flex-wrap: wrap;
		align-items: flex-start;
		margin: 0;
	}
}
.deadline__img {
	position: relative;
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f2f6f0;
	text-align: center;
	min-height: 328px;
}
@media (min-width: 768px) {
	.deadline__img {
		width: 45%;
	}
}
@media (min-width: 1024px) {
	.deadline__img {
		width: 51%;
		min-height: 422px;
	}
}
.deadline__img img {
	width: 192px;
	margin-left: 28px;
}
@media (min-width: 1024px) {
	.deadline__img img {
		width: 254px;
	}
}
.deadline__text {
	--height: 48px;
	position: relative;
	background: #e3b03b;
	padding: 95px 16px 95px 40px;
}
@media (min-width: 420px) {
	.deadline__text {
		padding: 105px 84px 119px 63px;
	}
}
@media (min-width: 768px) {
	.deadline__text {
		--height: 58px;
		flex: 1 0 0;
		padding: 90px 20px 90px 75px;
		margin: -35px 0 0 -25px;
	}
}
@media (min-width: 1024px) {
	.deadline__text {
		padding: 125px 55px 149px 114px;
	}
}
@media (min-width: 1200px) {
	.deadline__text {
		padding: 125px 114px 149px 114px;
	}
}
.deadline__text h3 {
	margin: 0 0 12px;
}
@media (max-width: 767px) {
	.deadline__text h3 {
		font-size: 28px;
		margin: 0 0 2px;
	}
}
.deadline__text .line {
	bottom: var(--height);
	left: 20px;
}
@media (min-width: 420px) {
	.deadline__text .line {
		left: 42px;
	}
}
@media (min-width: 1024px) {
	.deadline__text .line {
		opacity: 0;
		visibility: hidden;
		left: 76px;
	}
}
.in-viewport .deadline__text .line {
	opacity: 1;
	visibility: visible;
}
@media (min-width: 1024px) {
	.in-viewport .deadline__text .line {
		animation: lineFadeUp 2s ease-in-out;
	}
}
.deadline__btn {
	position: absolute;
	bottom: -28px;
	left: 50%;
	transform: translateX(-50%);
}
@media (min-width: 768px) {
	.deadline__btn {
		margin-left: 12px;
	}
}
.deadline__btn .btn {
	padding: 18px 23px;
	min-width: 191px;
}
@media (min-width: 768px) {
	.deadline__btn .btn {
		min-width: 165px;
	}
}

.pages-list {
	width: 100%;
	padding: 50px 0;
}
.pages-list__logo {
	width: 320px;
	margin: 0 auto 50px;
	text-align: center;
}
.pages-list table {
	table-layout: fixed;
	width: 100%;
	color: #000;
}
.pages-list table tr:nth-child(odd) {
	background: #f9f9f9;
}
.pages-list table td {
	padding: 14px 20px 10px;
	vertical-align: top;
	border-top: 1px solid #dee2e6;
}
.pages-list table td a {
	font-weight: 700;
	text-decoration: underline;
}
.pages-list table td a:hover {
	color: #000;
}

@font-face {
	font-family: "icomoon";
	src: url(./2dab49aea761223660a70ed052c20f0d.eot);
	src: url(./2dab49aea761223660a70ed052c20f0d.eot#iefix) format("embedded-opentype"), url(./f7ff2c6b2d299e06e2979f8e5dfef2e4.ttf) format("truetype"), url(./721bca61141daaaca1b9c5143651ded3.woff) format("woff"),
		url(./7ca14506115ffad9a5cff89b02823967.svg#icomoon) format("svg");
	font-weight: normal;
	font-style: normal;
	font-display: block;
}

[class^="icon-"],
[class*=" icon-"] {
	/* use !important to prevent issues with browser extensions that change fonts */
	font-family: "icomoon" !important;
	speak: never;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.icon-arrow:before {
	content: "\E905";
}

.icon-instagram:before {
	content: "\E900";
}

.icon-youtube:before {
	content: "\E901";
}

.icon-twitter:before {
	content: "\E902";
}

.icon-linkedin:before {
	content: "\E903";
}

.icon-facebook:before {
	content: "\E904";
}

@font-face {
	font-family: "Inter";
	src: url(./ea2c76b525641c2051cdf7d930e465ba.woff) format("woff"), url(./a90c493e75dbd61aec1195dbb9bb6b06.woff2) format("woff2");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Inter";
	src: url(./0b0032825214b711197bfcd54966edbb.woff) format("woff"), url(./920533ddd1d6ea543f7fc3e89b4556bb.woff2) format("woff2");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Inter";
	src: url(./a0e8358d58e034584e0df3a2e85df70d.woff) format("woff"), url(./231f444dc08212ed0133d8ea5c95c670.woff2) format("woff2");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

/*! jQuery UI - v1.11.4 - 2015-11-30
* http://jqueryui.com
* Includes: core.css, autocomplete.css, datepicker.css, menu.css, theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Arial%2CHelvetica%2Csans-serif&fsDefault=1em&fwDefault=normal&cornerRadius=3px&bgColorHeader=e9e9e9&bgTextureHeader=flat&borderColorHeader=dddddd&fcHeader=333333&iconColorHeader=444444&bgColorContent=ffffff&bgTextureContent=flat&borderColorContent=dddddd&fcContent=333333&iconColorContent=444444&bgColorDefault=f6f6f6&bgTextureDefault=flat&borderColorDefault=c5c5c5&fcDefault=454545&iconColorDefault=777777&bgColorHover=ededed&bgTextureHover=flat&borderColorHover=cccccc&fcHover=2b2b2b&iconColorHover=555555&bgColorActive=007fff&bgTextureActive=flat&borderColorActive=003eff&fcActive=ffffff&iconColorActive=ffffff&bgColorHighlight=fffa90&bgTextureHighlight=flat&borderColorHighlight=dad55e&fcHighlight=777620&iconColorHighlight=777620&bgColorError=fddfdf&bgTextureError=flat&borderColorError=f1a899&fcError=5f3f3f&iconColorError=cc0000&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=666666&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=5px&offsetTopShadow=0px&offsetLeftShadow=0px&cornerRadiusShadow=8px
* Copyright jQuery Foundation and other contributors; Licensed MIT */
.ui-helper-hidden {
	display: none;
}

.ui-helper-hidden-accessible {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

.ui-helper-reset {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	line-height: 1.3;
	text-decoration: none;
	font-size: 100%;
	list-style: none;
}

.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
	content: "";
	display: table;
	border-collapse: collapse;
}

.ui-helper-clearfix:after {
	clear: both;
}

.ui-helper-clearfix {
	min-height: 0;
}

.ui-helper-zfix {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	opacity: 0;
	filter: Alpha(Opacity=0);
}

.ui-front {
	z-index: 100;
}

.ui-state-disabled {
	cursor: default !important;
}

.ui-icon {
	display: block;
	text-indent: -99999px;
	overflow: hidden;
	background-repeat: no-repeat;
}

.ui-widget-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.ui-autocomplete {
	position: absolute;
	top: 0;
	left: 0;
	cursor: default;
}

.ui-datepicker {
	width: 17em;
	padding: 0.2em 0.2em 0;
	display: none;
}

.ui-datepicker .ui-datepicker-header {
	position: relative;
	padding: 0.2em 0;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
	position: absolute;
	top: 2px;
	width: 1.8em;
	height: 1.8em;
}

.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
	top: 1px;
}

.ui-datepicker .ui-datepicker-prev {
	left: 2px;
}

.ui-datepicker .ui-datepicker-next {
	right: 2px;
}

.ui-datepicker .ui-datepicker-prev-hover {
	left: 1px;
}

.ui-datepicker .ui-datepicker-next-hover {
	right: 1px;
}

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
	display: block;
	position: absolute;
	left: 50%;
	margin-left: -8px;
	top: 50%;
	margin-top: -8px;
}

.ui-datepicker .ui-datepicker-title {
	margin: 0 2.3em;
	line-height: 1.8em;
	text-align: center;
}

.ui-datepicker .ui-datepicker-title select {
	font-size: 1em;
	margin: 1px 0;
}

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
	width: 45%;
}

.ui-datepicker table {
	width: 100%;
	font-size: 0.9em;
	border-collapse: collapse;
	margin: 0 0 0.4em;
}

.ui-datepicker th {
	padding: 0.7em 0.3em;
	text-align: center;
	font-weight: bold;
	border: 0;
}

.ui-datepicker td {
	border: 0;
	padding: 1px;
}

.ui-datepicker td span,
.ui-datepicker td a {
	display: block;
	padding: 0.2em;
	text-align: right;
	text-decoration: none;
}

.ui-datepicker .ui-datepicker-buttonpane {
	background-image: none;
	margin: 0.7em 0 0 0;
	padding: 0 0.2em;
	border-left: 0;
	border-right: 0;
	border-bottom: 0;
}

.ui-datepicker .ui-datepicker-buttonpane button {
	float: right;
	margin: 0.5em 0.2em 0.4em;
	cursor: pointer;
	padding: 0.2em 0.6em 0.3em 0.6em;
	width: auto;
	overflow: visible;
}

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
	float: left;
}

.ui-datepicker.ui-datepicker-multi {
	width: auto;
}

.ui-datepicker-multi .ui-datepicker-group {
	float: left;
}

.ui-datepicker-multi .ui-datepicker-group table {
	width: 95%;
	margin: 0 auto 0.4em;
}

.ui-datepicker-multi-2 .ui-datepicker-group {
	width: 50%;
}

.ui-datepicker-multi-3 .ui-datepicker-group {
	width: 33.3%;
}

.ui-datepicker-multi-4 .ui-datepicker-group {
	width: 25%;
}

.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
	border-left-width: 0;
}

.ui-datepicker-multi .ui-datepicker-buttonpane {
	clear: left;
}

.ui-datepicker-row-break {
	clear: both;
	width: 100%;
	font-size: 0;
}

.ui-datepicker-rtl {
	direction: rtl;
}

.ui-datepicker-rtl .ui-datepicker-prev {
	right: 2px;
	left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next {
	left: 2px;
	right: auto;
}

.ui-datepicker-rtl .ui-datepicker-prev:hover {
	right: 1px;
	left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next:hover {
	left: 1px;
	right: auto;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane {
	clear: right;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button {
	float: left;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
	float: right;
}

.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
	border-right-width: 0;
	border-left-width: 1px;
}

.ui-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: block;
	outline: none;
}

.ui-menu .ui-menu {
	position: absolute;
}

.ui-menu .ui-menu-item {
	position: relative;
	margin: 0;
	padding: 3px 1em 3px 0.4em;
	cursor: pointer;
	min-height: 0;
	list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
}

.ui-menu .ui-menu-divider {
	margin: 5px 0;
	height: 0;
	font-size: 0;
	line-height: 0;
	border-width: 1px 0 0 0;
}

.ui-menu .ui-state-focus,
.ui-menu .ui-state-active {
	margin: -1px;
}

.ui-menu-icons {
	position: relative;
}

.ui-menu-icons .ui-menu-item {
	padding-left: 2em;
}

.ui-menu .ui-icon {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0.2em;
	margin: auto 0;
}

.ui-menu .ui-menu-icon {
	left: auto;
	right: 0;
}

.ui-widget {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
}

.ui-widget .ui-widget {
	font-size: 1em;
}

.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
}

.ui-widget-content {
	border: 1px solid #ddd;
	background: #fff;
	color: #333;
}

.ui-widget-content a {
	color: #333;
}

.ui-widget-header {
	border: 1px solid #ddd;
	background: #e9e9e9;
	color: #333;
	font-weight: bold;
}

.ui-widget-header a {
	color: #333;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
	border: 1px solid #c5c5c5;
	background: #f6f6f6;
	font-weight: normal;
	color: #454545;
}

.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited {
	color: #454545;
	text-decoration: none;
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus {
	border: 1px solid #ccc;
	background: #ededed;
	font-weight: normal;
	color: #2b2b2b;
}

.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited {
	color: #2b2b2b;
	text-decoration: none;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
	border: 1px solid #003eff;
	background: #007fff;
	font-weight: normal;
	color: #fff;
}

.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
	color: #fff;
	text-decoration: none;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
	border: 1px solid #dad55e;
	background: #fffa90;
	color: #777620;
}

.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
	color: #777620;
}

.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
	border: 1px solid #f1a899;
	background: #fddfdf;
	color: #5f3f3f;
}

.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
	color: #5f3f3f;
}

.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
	color: #5f3f3f;
}

.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
	font-weight: bold;
}

.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
	opacity: 0.7;
	filter: Alpha(Opacity=70);
	font-weight: normal;
}

.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
	opacity: 0.35;
	filter: Alpha(Opacity=35);
	background-image: none;
}

.ui-state-disabled .ui-icon {
	filter: Alpha(Opacity=35);
}

.ui-icon {
	width: 16px;
	height: 16px;
}

.ui-icon,
.ui-widget-content .ui-icon {
	background-image: url(./d80747d34afb87753b51d45a36f8bd17.png);
}

.ui-widget-header .ui-icon {
	background-image: url(./d80747d34afb87753b51d45a36f8bd17.png);
}

.ui-state-default .ui-icon {
	background-image: url(./68855e6e3d288ab126a1f1dd82b64e26.png);
}

.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon {
	background-image: url(./1e70a2d46244ee4070fd47152bd71db1.png);
}

.ui-state-active .ui-icon {
	background-image: url(./41612b0f4a034424f8321c9f824a94da.png);
}

.ui-state-highlight .ui-icon {
	background-image: url(./eb4a975c630f379279fe78c604d0b36c.png);
}

.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
	background-image: url(./7c81a6253b77a9fdaf51bb1038f8c840.png);
}

.ui-icon-blank {
	background-position: 16px 16px;
}

.ui-icon-carat-1-n {
	background-position: 0 0;
}

.ui-icon-carat-1-ne {
	background-position: -16px 0;
}

.ui-icon-carat-1-e {
	background-position: -32px 0;
}

.ui-icon-carat-1-se {
	background-position: -48px 0;
}

.ui-icon-carat-1-s {
	background-position: -64px 0;
}

.ui-icon-carat-1-sw {
	background-position: -80px 0;
}

.ui-icon-carat-1-w {
	background-position: -96px 0;
}

.ui-icon-carat-1-nw {
	background-position: -112px 0;
}

.ui-icon-carat-2-n-s {
	background-position: -128px 0;
}

.ui-icon-carat-2-e-w {
	background-position: -144px 0;
}

.ui-icon-triangle-1-n {
	background-position: 0 -16px;
}

.ui-icon-triangle-1-ne {
	background-position: -16px -16px;
}

.ui-icon-triangle-1-e {
	background-position: -32px -16px;
}

.ui-icon-triangle-1-se {
	background-position: -48px -16px;
}

.ui-icon-triangle-1-s {
	background-position: -64px -16px;
}

.ui-icon-triangle-1-sw {
	background-position: -80px -16px;
}

.ui-icon-triangle-1-w {
	background-position: -96px -16px;
}

.ui-icon-triangle-1-nw {
	background-position: -112px -16px;
}

.ui-icon-triangle-2-n-s {
	background-position: -128px -16px;
}

.ui-icon-triangle-2-e-w {
	background-position: -144px -16px;
}

.ui-icon-arrow-1-n {
	background-position: 0 -32px;
}

.ui-icon-arrow-1-ne {
	background-position: -16px -32px;
}

.ui-icon-arrow-1-e {
	background-position: -32px -32px;
}

.ui-icon-arrow-1-se {
	background-position: -48px -32px;
}

.ui-icon-arrow-1-s {
	background-position: -64px -32px;
}

.ui-icon-arrow-1-sw {
	background-position: -80px -32px;
}

.ui-icon-arrow-1-w {
	background-position: -96px -32px;
}

.ui-icon-arrow-1-nw {
	background-position: -112px -32px;
}

.ui-icon-arrow-2-n-s {
	background-position: -128px -32px;
}

.ui-icon-arrow-2-ne-sw {
	background-position: -144px -32px;
}

.ui-icon-arrow-2-e-w {
	background-position: -160px -32px;
}

.ui-icon-arrow-2-se-nw {
	background-position: -176px -32px;
}

.ui-icon-arrowstop-1-n {
	background-position: -192px -32px;
}

.ui-icon-arrowstop-1-e {
	background-position: -208px -32px;
}

.ui-icon-arrowstop-1-s {
	background-position: -224px -32px;
}

.ui-icon-arrowstop-1-w {
	background-position: -240px -32px;
}

.ui-icon-arrowthick-1-n {
	background-position: 0 -48px;
}

.ui-icon-arrowthick-1-ne {
	background-position: -16px -48px;
}

.ui-icon-arrowthick-1-e {
	background-position: -32px -48px;
}

.ui-icon-arrowthick-1-se {
	background-position: -48px -48px;
}

.ui-icon-arrowthick-1-s {
	background-position: -64px -48px;
}

.ui-icon-arrowthick-1-sw {
	background-position: -80px -48px;
}

.ui-icon-arrowthick-1-w {
	background-position: -96px -48px;
}

.ui-icon-arrowthick-1-nw {
	background-position: -112px -48px;
}

.ui-icon-arrowthick-2-n-s {
	background-position: -128px -48px;
}

.ui-icon-arrowthick-2-ne-sw {
	background-position: -144px -48px;
}

.ui-icon-arrowthick-2-e-w {
	background-position: -160px -48px;
}

.ui-icon-arrowthick-2-se-nw {
	background-position: -176px -48px;
}

.ui-icon-arrowthickstop-1-n {
	background-position: -192px -48px;
}

.ui-icon-arrowthickstop-1-e {
	background-position: -208px -48px;
}

.ui-icon-arrowthickstop-1-s {
	background-position: -224px -48px;
}

.ui-icon-arrowthickstop-1-w {
	background-position: -240px -48px;
}

.ui-icon-arrowreturnthick-1-w {
	background-position: 0 -64px;
}

.ui-icon-arrowreturnthick-1-n {
	background-position: -16px -64px;
}

.ui-icon-arrowreturnthick-1-e {
	background-position: -32px -64px;
}

.ui-icon-arrowreturnthick-1-s {
	background-position: -48px -64px;
}

.ui-icon-arrowreturn-1-w {
	background-position: -64px -64px;
}

.ui-icon-arrowreturn-1-n {
	background-position: -80px -64px;
}

.ui-icon-arrowreturn-1-e {
	background-position: -96px -64px;
}

.ui-icon-arrowreturn-1-s {
	background-position: -112px -64px;
}

.ui-icon-arrowrefresh-1-w {
	background-position: -128px -64px;
}

.ui-icon-arrowrefresh-1-n {
	background-position: -144px -64px;
}

.ui-icon-arrowrefresh-1-e {
	background-position: -160px -64px;
}

.ui-icon-arrowrefresh-1-s {
	background-position: -176px -64px;
}

.ui-icon-arrow-4 {
	background-position: 0 -80px;
}

.ui-icon-arrow-4-diag {
	background-position: -16px -80px;
}

.ui-icon-extlink {
	background-position: -32px -80px;
}

.ui-icon-newwin {
	background-position: -48px -80px;
}

.ui-icon-refresh {
	background-position: -64px -80px;
}

.ui-icon-shuffle {
	background-position: -80px -80px;
}

.ui-icon-transfer-e-w {
	background-position: -96px -80px;
}

.ui-icon-transferthick-e-w {
	background-position: -112px -80px;
}

.ui-icon-folder-collapsed {
	background-position: 0 -96px;
}

.ui-icon-folder-open {
	background-position: -16px -96px;
}

.ui-icon-document {
	background-position: -32px -96px;
}

.ui-icon-document-b {
	background-position: -48px -96px;
}

.ui-icon-note {
	background-position: -64px -96px;
}

.ui-icon-mail-closed {
	background-position: -80px -96px;
}

.ui-icon-mail-open {
	background-position: -96px -96px;
}

.ui-icon-suitcase {
	background-position: -112px -96px;
}

.ui-icon-comment {
	background-position: -128px -96px;
}

.ui-icon-person {
	background-position: -144px -96px;
}

.ui-icon-print {
	background-position: -160px -96px;
}

.ui-icon-trash {
	background-position: -176px -96px;
}

.ui-icon-locked {
	background-position: -192px -96px;
}

.ui-icon-unlocked {
	background-position: -208px -96px;
}

.ui-icon-bookmark {
	background-position: -224px -96px;
}

.ui-icon-tag {
	background-position: -240px -96px;
}

.ui-icon-home {
	background-position: 0 -112px;
}

.ui-icon-flag {
	background-position: -16px -112px;
}

.ui-icon-calendar {
	background-position: -32px -112px;
}

.ui-icon-cart {
	background-position: -48px -112px;
}

.ui-icon-pencil {
	background-position: -64px -112px;
}

.ui-icon-clock {
	background-position: -80px -112px;
}

.ui-icon-disk {
	background-position: -96px -112px;
}

.ui-icon-calculator {
	background-position: -112px -112px;
}

.ui-icon-zoomin {
	background-position: -128px -112px;
}

.ui-icon-zoomout {
	background-position: -144px -112px;
}

.ui-icon-search {
	background-position: -160px -112px;
}

.ui-icon-wrench {
	background-position: -176px -112px;
}

.ui-icon-gear {
	background-position: -192px -112px;
}

.ui-icon-heart {
	background-position: -208px -112px;
}

.ui-icon-star {
	background-position: -224px -112px;
}

.ui-icon-link {
	background-position: -240px -112px;
}

.ui-icon-cancel {
	background-position: 0 -128px;
}

.ui-icon-plus {
	background-position: -16px -128px;
}

.ui-icon-plusthick {
	background-position: -32px -128px;
}

.ui-icon-minus {
	background-position: -48px -128px;
}

.ui-icon-minusthick {
	background-position: -64px -128px;
}

.ui-icon-close {
	background-position: -80px -128px;
}

.ui-icon-closethick {
	background-position: -96px -128px;
}

.ui-icon-key {
	background-position: -112px -128px;
}

.ui-icon-lightbulb {
	background-position: -128px -128px;
}

.ui-icon-scissors {
	background-position: -144px -128px;
}

.ui-icon-clipboard {
	background-position: -160px -128px;
}

.ui-icon-copy {
	background-position: -176px -128px;
}

.ui-icon-contact {
	background-position: -192px -128px;
}

.ui-icon-image {
	background-position: -208px -128px;
}

.ui-icon-video {
	background-position: -224px -128px;
}

.ui-icon-script {
	background-position: -240px -128px;
}

.ui-icon-alert {
	background-position: 0 -144px;
}

.ui-icon-info {
	background-position: -16px -144px;
}

.ui-icon-notice {
	background-position: -32px -144px;
}

.ui-icon-help {
	background-position: -48px -144px;
}

.ui-icon-check {
	background-position: -64px -144px;
}

.ui-icon-bullet {
	background-position: -80px -144px;
}

.ui-icon-radio-on {
	background-position: -96px -144px;
}

.ui-icon-radio-off {
	background-position: -112px -144px;
}

.ui-icon-pin-w {
	background-position: -128px -144px;
}

.ui-icon-pin-s {
	background-position: -144px -144px;
}

.ui-icon-play {
	background-position: 0 -160px;
}

.ui-icon-pause {
	background-position: -16px -160px;
}

.ui-icon-seek-next {
	background-position: -32px -160px;
}

.ui-icon-seek-prev {
	background-position: -48px -160px;
}

.ui-icon-seek-end {
	background-position: -64px -160px;
}

.ui-icon-seek-start {
	background-position: -80px -160px;
}

.ui-icon-seek-first {
	background-position: -80px -160px;
}

.ui-icon-stop {
	background-position: -96px -160px;
}

.ui-icon-eject {
	background-position: -112px -160px;
}

.ui-icon-volume-off {
	background-position: -128px -160px;
}

.ui-icon-volume-on {
	background-position: -144px -160px;
}

.ui-icon-power {
	background-position: 0 -176px;
}

.ui-icon-signal-diag {
	background-position: -16px -176px;
}

.ui-icon-signal {
	background-position: -32px -176px;
}

.ui-icon-battery-0 {
	background-position: -48px -176px;
}

.ui-icon-battery-1 {
	background-position: -64px -176px;
}

.ui-icon-battery-2 {
	background-position: -80px -176px;
}

.ui-icon-battery-3 {
	background-position: -96px -176px;
}

.ui-icon-circle-plus {
	background-position: 0 -192px;
}

.ui-icon-circle-minus {
	background-position: -16px -192px;
}

.ui-icon-circle-close {
	background-position: -32px -192px;
}

.ui-icon-circle-triangle-e {
	background-position: -48px -192px;
}

.ui-icon-circle-triangle-s {
	background-position: -64px -192px;
}

.ui-icon-circle-triangle-w {
	background-position: -80px -192px;
}

.ui-icon-circle-triangle-n {
	background-position: -96px -192px;
}

.ui-icon-circle-arrow-e {
	background-position: -112px -192px;
}

.ui-icon-circle-arrow-s {
	background-position: -128px -192px;
}

.ui-icon-circle-arrow-w {
	background-position: -144px -192px;
}

.ui-icon-circle-arrow-n {
	background-position: -160px -192px;
}

.ui-icon-circle-zoomin {
	background-position: -176px -192px;
}

.ui-icon-circle-zoomout {
	background-position: -192px -192px;
}

.ui-icon-circle-check {
	background-position: -208px -192px;
}

.ui-icon-circlesmall-plus {
	background-position: 0 -208px;
}

.ui-icon-circlesmall-minus {
	background-position: -16px -208px;
}

.ui-icon-circlesmall-close {
	background-position: -32px -208px;
}

.ui-icon-squaresmall-plus {
	background-position: -48px -208px;
}

.ui-icon-squaresmall-minus {
	background-position: -64px -208px;
}

.ui-icon-squaresmall-close {
	background-position: -80px -208px;
}

.ui-icon-grip-dotted-vertical {
	background-position: 0 -224px;
}

.ui-icon-grip-dotted-horizontal {
	background-position: -16px -224px;
}

.ui-icon-grip-solid-vertical {
	background-position: -32px -224px;
}

.ui-icon-grip-solid-horizontal {
	background-position: -48px -224px;
}

.ui-icon-gripsmall-diagonal-se {
	background-position: -64px -224px;
}

.ui-icon-grip-diagonal-se {
	background-position: -80px -224px;
}

.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
	border-top-left-radius: 3px;
}

.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
	border-top-right-radius: 3px;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
	border-bottom-left-radius: 3px;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
	border-bottom-right-radius: 3px;
}

.ui-widget-overlay {
	background: #aaa;
	opacity: 0.3;
	filter: Alpha(Opacity=30);
}

.ui-widget-shadow {
	margin: 0 0 0 0;
	padding: 5px;
	background: #666;
	opacity: 0.3;
	filter: Alpha(Opacity=30);
	border-radius: 8px;
}

/* custom select styles */
.jcf-select {
	display: flex;
	align-items: center;
	position: relative;
	height: 45px;
	border: 0.75px solid #d2d2d2;
	background: #fff;
	border-radius: 4px;
	margin: 0 0 24px;
	cursor: pointer;
}
.jcf-select.jcf-drop-active {
	box-shadow: 0 4px 7px rgba(0, 0, 0, 0.45);
}
.jcf-select.jcf-drop-active .jcf-select-opener:after {
	transform: translateY(-50%) rotate(90deg);
}

.jcf-select select {
	z-index: 1;
	left: 0;
	top: 0;
}

.jcf-select .jcf-select-text {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	cursor: default;
	display: block;
	margin: 0 35px 0 0;
}

.jcf-select .jcf-select-opener {
	position: absolute;
	text-align: center;
	width: 60px;
	bottom: 0;
	right: 0;
	top: 0;
}
.jcf-select .jcf-select-opener:after {
	transition: transform 0.3s ease-in-out;
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%) rotate(90deg);
	right: 26px;
	border-style: solid;
	border-width: 10px 0 10px 17.3px;
	border-color: transparent transparent transparent #bababa;
}
@media (min-width: 768px) {
	.jcf-select .jcf-select-opener:after {
		transform: translateY(-50%);
		right: 22px;
	}
}

body > .jcf-select-drop {
	position: absolute;
	margin: -1px 0 0;
	z-index: 9999;
}

body > .jcf-select-drop.jcf-drop-flipped {
	margin: 1px 0 0;
}

.jcf-select .jcf-select-drop {
	border-top: 1px solid #bababa;
	font-family: "aktiv-grotesk", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	font-weight: 400;
	position: absolute;
	margin-top: 0px;
	z-index: 9999;
	top: 100%;
	left: -1px;
	right: -1px;
	box-shadow: 0 4px 7px rgba(0, 0, 0, 0.45);
}

.jcf-select .jcf-drop-flipped {
	bottom: 100%;
	top: auto;
}

/* multiple select styles */
.jcf-list-box {
	overflow: hidden;
	display: inline-block;
	margin: 0 15px;
}

/* select options styles */
.jcf-list {
	display: inline-block;
	vertical-align: top;
	position: relative;
	background: #fff;
	width: 100%;
}

.jcf-list .jcf-list-content {
	vertical-align: top;
	display: inline-block;
	overflow: auto;
	width: 100%;
	max-height: 236px !important;
}

.jcf-list ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.jcf-list ul li {
	overflow: hidden;
	display: block;
}

.jcf-list .jcf-overflow {
	overflow: auto;
}

.jcf-list .jcf-option {
	overflow: hidden;
	cursor: default;
	display: block;
	padding: 5px 9px;
	height: 1%;
	color: #000;
	cursor: pointer;
}

.jcf-list .jcf-disabled {
	background: #fff !important;
	color: #aaa !important;
}

.jcf-select-drop .jcf-hover,
.jcf-list-box .jcf-selected {
	background: #97b7a1;
	color: #000;
}

.jcf-list .jcf-optgroup-caption {
	white-space: nowrap;
	font-weight: bold;
	display: block;
	padding: 5px 9px;
	cursor: default;
	color: #000;
}

.jcf-list .jcf-optgroup .jcf-option {
	padding-left: 30px;
}

.table-responsive table tr.caption {
	font-family: "freight-text-pro", "Arial", "Helvetica Neue", "Helvetica", sans-serif !important;
	background: #16445c !important;
	color: #fff !important;
	text-align: left !important;
	padding: 16px 41px !important;
}

.table-responsive table tr.caption td {
	color: #ffffff;
	background: #16445c !important;
	text-align: left;
	padding: 16px 41px !important;
}

/* common custom form elements styles */
.jcf-disabled {
	background: #ddd !important;
}
.close-pin {
	overflow: hidden;
	position: relative;
	border: none;
	padding: 0;
	width: 1em;
	height: 1em;
	border-radius: 50%;
	background: transparent;
	color: #16445c;
	font: inherit;
	text-indent: 100%;
	cursor: pointer;
	float: right;
	margin-top: -5px;
	margin-right: -20px;
}

.close-pin:focus {
	outline: solid 0 transparent;
	box-shadow: 0 0 0 2px #8ed0f9;
}

.close-pin:hover {
	background: rgba(29, 161, 142, 0.1);
}

.close-pin:before,
.close-pin:after {
	position: absolute;
	top: 15%;
	left: calc(50% - 0.0625em);
	width: 0.125em;
	height: 70%;
	border-radius: 0.125em;
	transform: rotate(45deg);
	background: currentcolor;
	content: "";
}

.close-pin:after {
	transform: rotate(-45deg);
}

/*# sourceMappingURL=app.min.css.map*/

ul.program__list-slide li a {
	border-bottom: 1px solid rgba(0, 0, 0, 0.4);
}