:root {
	--primary: 43,94,167;
	--secondary: 232,0,36;
	--secondary-dk: 140,28,56;
	--dcd-blue-dk: 43,94,167; /*22,126,192;*/ /*167EC0*/
	--dcd-blue-lt: 75,160,255; /*17B4E9*/
	--dcd-green: 122,193,68;/*7AC144*/
	--dcd-grey: 89,89,89;/*595959*/
}
/*
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,700;0,800;1,300;1,400;1,500;1,700;1,800&display=swap');
*/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans');

.primary {
	color: rgba(var(--primary),1);
}
.secondary {
	color: rgba(var(--secondary),1);
}
.blue {
	color: rgba(var(--dcd-blue-dk),1);
}
.blue-bg {
	color: rgba(var(--dcd-blue-dk),1);
}
.lblue {
	color: rgba(var(--dcd-blue-lt),1);
}
.lblue-bg {
	color: rgba(var(--dcd-blue-lt),1);
}
.grey {
	color: rgba(var(--dcd-grey),1);
}
.grey-bg {
	color: rgba(var(--dcd-grey),1);
}
.green {
	color: rgba(var(--dcd-green),1);
}
.green-bg {
	color: rgba(var(--dcd-green),1);
}
.white, .wht {
	color: rgba(255,255,255,1) !important;
}
section {
	background-color: #eeeeee;
}




html,
body {
	height: auto;
	min-height: 100vh;
	overflow-x: hidden;
}

body {
	font-family: 'Open Sans', sans-serif;
	font-style: normal;
	font-size: 1.2rem;
	line-height: 1.5;
	letter-spacing: -0.03em;
	font-weight: 300;
	color: rgba(var(--dcd-grey),1);
	position: relative;
}

@media (max-width: 768px) {
	body {
		font-weight: 400;
	}
}



.display-1 {
	font-size: clamp(2rem,5vh,6vh);
	line-height: 1.1;
	letter-spacing: -0.03em;
}
.display-1 > .iconfont {
	font-size: clamp(2rem,5vh,6vh);
}
.display-2 {
	font-size: clamp(1.7rem,4vh,5vh);
	letter-spacing: -0.03em;
}
.display-2 > .iconfont {
	font-size: clamp(1.9rem,4vh,5vh);
}
.display-3 {
	font-size: clamp(1.5rem,3vh,4vh);
	letter-spacing: -0.03em;
}
.display-3 > .iconfont {
	font-size: clamp(1.7rem,3vh,4vh);
}
.display-4 {
	font-size: 1rem;
}
.display-4 > .iconfont {
	font-size: 1.4rem;
	margin: 3px 12px 0 0;
}
.display-5 {
	font-size: clamp(1.2rem,2vh,3vh);
	letter-spacing: -0.01em;
}
.display-5 > .iconfont {
	font-size: clamp(1.4rem,2vh,3vh);
}
.display-6 {
	font-size: clamp(1.1rem,1.5vh,2.5vh);
	letter-spacing: -0.03em;
}
.display-6 > .iconfont {
	font-size: clamp(1.3rem,1.5vh,2.5vh);
}
.display-7 {
	font-size: clamp(1rem,1vh,2vh);
	letter-spacing: -0.01em;
}
.display-7 > .iconfont {
	font-size: clamp(1.2rem,1vh,2vh);
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)	48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary 
@media (max-width: 768px) {
	.display-1 {
		font-size: 4rem;
	}
	.display-1A {
		font-size: 4vh;
	}
	.display-2 {
		font-size: 2.1rem;
	}
	.display-3 {
		font-size: 2rem;
	}
	.display-4 {
		font-size: 2rem;
	}
	.display-5 {
		font-size: 1.2rem;
	}
	.display-6 {
		font-size: 1.2rem;
	}
	.display-7 {
		font-size: 1.2rem;
	}
}
*/

/* Buttons */
.btn {
	padding: 10px 15px;
	border-radius: 0px;
}
.btn-sm {
	padding: 5px 10px;
	border-radius: 0px;
}
.btn-md {
	padding: 10px 15px;
	border-radius: 0px;
	/*transition: none;*/
	padding: 0.5rem 2rem;
}
.btn-md:hover {
	background-color: #0c5894;
	border-color: #0c5894;
}
.btn-lg {
	padding: 20px 20px;
	border-radius: 0px;
}
.bg-primary {
	background-color: #0c5894 !important;
}
.bg-success {
	background-color: #c81400 !important;
}
.bg-info {
	background-color: #8dc0e5 !important;
}
.bg-warning {
	background-color: #595959 !important;
}
.bg-danger {
	background-color: #e6f0f0 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
	background-color: #0c5894 !important;
	border-color: #0c5894 !important;
	color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
	color: #ffffff !important;
	background-color: #062e4d !important;
	border-color: #062e4d !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
	color: #ffffff !important;
	background-color: #062e4d !important;
	border-color: #062e4d !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
	background-color: rgb(var(--secondary)) !important;
	border-color: rgb(var(--secondary)) !important;
	color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
	color: #ffffff !important;
	background-color: rgb(var(--secondary-dk)) !important;
	border-color: rgb(var(--secondary-dk)) !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
	color: #ffffff !important;
	background-color: rgb(89,89,89) !important;
	border-color: rgb(89,89,89) !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
	background-color: rgb(var(--secondary)) !important;
	border-color: rgb(var(--secondary)) !important;
	color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
	color: #ffffff !important;
	background-color: #4f9ed7 !important;
	border-color: #4f9ed7 !important;
}
.btn-info.disabled,
.btn-info:disabled {
	color: #ffffff !important;
	background-color: #4f9ed7 !important;
	border-color: #4f9ed7 !important;
}
.btn-success,
.btn-success:link,
.btn-success:active,
.btn-success.active {
	background-color: #c81400 !important;
	border-color: #c81400 !important;
	color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
	color: #ffffff !important;
	background-color: #7c0c00 !important;
	border-color: #7c0c00 !important;
}
.btn-success.disabled,
.btn-success:disabled {
	color: #ffffff !important;
	background-color: #7c0c00 !important;
	border-color: #7c0c00 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
	background-color: rgba(12,88,148, 0.5) !important;
	border-color: rgba(12,88,148, 0.2) !important;
	color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
	color: #ffffff !important;
	background-color: rgba(12,88,148, 1) !important;
	border-color: rgba(12,88,148, 1) !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
	color: #ffffff !important;
	background-color: #333333 !important;
	border-color: #333333 !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
	background-color: #e6f0f0 !important;
	border-color: #e6f0f0 !important;
	color: #518686 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
	color: #518686 !important;
	background-color: #b6d3d3 !important;
	border-color: #b6d3d3 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
	color: #518686 !important;
	background-color: #b6d3d3 !important;
	border-color: #b6d3d3 !important;
}
.btn-white {
	color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
	background-color: #ffffff !important;
	border-color: #ffffff !important;
	color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
	color: #808080 !important;
	background-color: #d9d9d9 !important;
	border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
	color: #808080 !important;
	background-color: #d9d9d9 !important;
	border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
	background-color: #333333 !important;
	border-color: #333333 !important;
	color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
	color: #ffffff !important;
	background-color: #0d0d0d !important;
	border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
	color: #ffffff !important;
	background-color: #0d0d0d !important;
	border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
	background: none;
	border-color: #042036;
	color: #042036;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
	color: #ffffff;
	background-color: #0c5894;
	border-color: #0c5894;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
	color: #ffffff !important;
	background-color: #0c5894 !important;
	border-color: #0c5894 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
	background: none;
	border-color: #042036;
	color: #042036;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
	color: #ffffff;
	background-color: #0c5894;
	border-color: #0c5894;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
	color: #ffffff !important;
	background-color: #0c5894 !important;
	border-color: #0c5894 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
	background: none;
	border-color: #3a92d2;
	color: #3a92d2;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
	color: #ffffff;
	background-color: #8dc0e5;
	border-color: #8dc0e5;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
	color: #ffffff !important;
	background-color: #8dc0e5 !important;
	border-color: #8dc0e5 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
	background: none;
	border-color: #620a00;
	color: #620a00;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
	color: #ffffff;
	background-color: #c81400;
	border-color: #c81400;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
	color: #ffffff !important;
	background-color: #c81400 !important;
	border-color: #c81400 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
	background: none;
	border-color: #262626;
	color: #262626;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
	color: #ffffff;
	background-color: #595959;
	border-color: #595959;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
	color: #ffffff !important;
	background-color: #595959 !important;
	border-color: #595959 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
	background: none;
	border-color: #a6caca;
	color: #a6caca;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
	color: #518686;
	background-color: #e6f0f0;
	border-color: #e6f0f0;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
	color: #518686 !important;
	background-color: #e6f0f0 !important;
	border-color: #e6f0f0 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
	background: none;
	border-color: #000000;
	color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
	color: #ffffff;
	background-color: #333333;
	border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
	color: #ffffff !important;
	background-color: #333333 !important;
	border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
	background: none;
	border-color: #ffffff;
	color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
	color: #333333;
	background-color: #ffffff;
	border-color: #ffffff;
}
.text-primary {
	color: #0c5894 !important;
}
.text-secondary {
	color: #0c5894 !important;
}
.text-success {
	color: #c81400 !important;
}
.text-info {
	color: #8dc0e5 !important;
}
.text-warning {
	color: #595959 !important;
}
.text-danger {
	color: #e6f0f0 !important;
}
.text-white {
	color: #ffffff !important;
}
.text-black {
	color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
	color: #042036 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
	color: #042036 !important;
}
a.text-success:hover,
a.text-success:focus {
	color: #620a00 !important;
}
a.text-info:hover,
a.text-info:focus {
	color: #3a92d2 !important;
}
a.text-warning:hover,
a.text-warning:focus {
	color: #262626 !important;
}
a.text-danger:hover,
a.text-danger:focus {
	color: #a6caca !important;
}
a.text-white:hover,
a.text-white:focus {
	color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
	color: #4d4d4d !important;
}
.alert-success {
	background-color: #70c770;
}
.alert-info {
	background-color: #8dc0e5;
}
.alert-warning {
	background-color: #595959;
}
.alert-danger {
	background-color: #e6f0f0;
}
.mbr-section-btn a.btn:not(.btn-form) {
	border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
	box-shadow: none !important;
}
.mbr-gallery-filter li a {
	border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
	background-color: #0c5894;
	border-color: #0c5894;
	color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
	box-shadow: none;
}
.nav-tabs .nav-link {
	border-radius: 100px !important;
}
a,
a:hover {
	color: rgba(12,88,148,1);
}
p a {
	border-bottom: 1px solid rgba(12,88,148,0.1);
	transition: 0.5s;
}
p a:hover {
	border-bottom: 1px solid rgba(12,88,148,0.5);
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
	color: #319bee;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
	color: #ff5b48;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
	color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
	color: #999999;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
	color: #ffffff;
}
/* Scroll to top button*/
#scrollToTop a {
	border-radius: 100px;
}
#scrollToTop a i:before {
	content: '';
	position: absolute;
	height: 40%;
	top: 25%;
	background: #fff;
	width: 2px;
	left: calc(50% - 1px);
}
#scrollToTop a i:after {
	content: '';
	position: absolute;
	display: block;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	width: 40%;
	height: 40%;
	left: 30%;
	bottom: 30%;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}
/* Others*/
.note-check a[data-value=Rubik] {
	font-style: normal;
}
.mbr-arrow a {
	color: #ffffff;
}
@media (max-width: 767px) {
	.mbr-arrow {
		display: none;
	}
}
.form-control-label {
	position: relative;
	cursor: pointer;
	margin-bottom: .357em;
	padding: 0;
}
.alert {
	color: #ffffff;
	border-radius: 0;
	border: 0;
	font-size: .875rem;
	line-height: 1.5;
	margin-bottom: 1.875rem;
	padding: 1.25rem;
	position: relative;
}
.alert.alert-form::after {
	background-color: inherit;
	bottom: -7px;
	content: "";
	display: block;
	height: 14px;
	left: 50%;
	margin-left: -7px;
	position: absolute;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	width: 14px;
}
.form-control {
	font-family: 'Open Sans', sans-serif;
	font-size: 1rem;
}
.form-control > .mbr-iconfont {
	font-size: 1.6rem;
}
blockquote {
	border-color: #0c5894;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
	background-color: #0c5894;
	color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
	transition: 0.4s;
	border-top-color: currentColor;
	border-bottom-color: currentColor;
}
.jq-number__spin {
	background: #ffffff;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
	border-top-color: #0c5894;
	border-bottom-color: #0c5894;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
	color: #ffffff !important;
	background-color: #0c5894 !important;
	box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
	color: #ffffff !important;
	background: #0c5894 !important;
	box-shadow: none !important;
}
.lazy-bg {
	background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
	display: block;
	position: relative;
	padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
	content: '';
	position: absolute;
	width: 200px;
	height: 200px;
	background: transparent no-repeat center;
	background-size: contain;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%230c5894' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
	opacity: 0.5;
}
.cid-rQpDG8Fw7h .navbar-dropdown {
	position: relative!important;
	top: 0;
	left: 0;
	padding: .5rem 1rem;
}
.cid-rQpDG8Fw7h .collapsed {
	flex-direction: row!important;
}
.cid-rQpDG8Fw7h .collapsed .dropdown-menu .dropdown-item:before {
	display: none;
}
.cid-rQpDG8Fw7h .collapsed .dropdown .dropdown-menu .dropdown-item {
	padding: 0.235em 1.5em 0.235em 1.5em !important;
	transition: none;
	margin: 0 !important;
}
.cid-rQpDG8Fw7h .navbar {
	display: flex;
	flex-direction: column;
	min-height: 40px;
	transition: all .3s;
	background: #f2f6ff;
	box-shadow: 1px 0 30px rgba(0,0,0,0.3);
}
.cid-rQpDG8Fw7h .navbar.opened {
	transition: all .3s;
	background: #f2f6ff !important;
}
.cid-rQpDG8Fw7h .navbar .dropdown-item {
	padding: .235rem 1.5rem;
}
.cid-rQpDG8Fw7h .navbar .navbar-collapse {
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
	z-index: 1;
}
.cid-rQpDG8Fw7h .navbar.collapsed .nav-item .nav-link::before {
	display: none;
}
.cid-rQpDG8Fw7h .navbar.collapsed.opened .dropdown-menu {
	top: 0;
}
.cid-rQpDG8Fw7h .navbar.collapsed .dropdown-menu {
	background: transparent !important;
}
.cid-rQpDG8Fw7h .navbar.collapsed .dropdown-menu .dropdown-submenu {
	left: 0 !important;
}
.cid-rQpDG8Fw7h .navbar.collapsed .dropdown-menu .dropdown-item:after {
	right: auto;
}
.cid-rQpDG8Fw7h .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
	margin-left: .25rem;
	border-top: 0.35em solid;
	border-right: 0.35em solid transparent;
	border-left: 0.35em solid transparent;
	border-bottom: 0;
	top: 55%;
}
.cid-rQpDG8Fw7h .navbar.collapsed ul.navbar-nav li {
	margin: auto;
}
.cid-rQpDG8Fw7h .navbar.collapsed .dropdown-menu .dropdown-item {
	padding: .25rem 1.5rem;
	text-align: center;
}
.cid-rQpDG8Fw7h .navbar.collapsed .icons-menu {
	padding-left: 0;
	padding-top: .5rem;
	padding-bottom: .5rem;
}
@media (max-width: 991px) {
	.cid-rQpDG8Fw7h .navbar .nav-item .nav-link::before {
		display: none;
	}
	.cid-rQpDG8Fw7h .navbar.opened .dropdown-menu {
		top: 0;
	}
	.cid-rQpDG8Fw7h .navbar .dropdown-menu {
		background: transparent !important;
	}
	.cid-rQpDG8Fw7h .navbar .dropdown-menu .dropdown-submenu {
		left: 0 !important;
	}
	.cid-rQpDG8Fw7h .navbar .dropdown-menu .dropdown-item:after {
		right: auto;
	}
	.cid-rQpDG8Fw7h .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
		margin-left: .25rem;
		border-top: 0.35em solid;
		border-right: 0.35em solid transparent;
		border-left: 0.35em solid transparent;
		border-bottom: 0;
		top: 55%;
	}
	.cid-rQpDG8Fw7h .navbar .navbar-logo img {
		height: 3.8rem !important;
	}
	.cid-rQpDG8Fw7h .navbar ul.navbar-nav li {
		margin: auto;
	}
	.cid-rQpDG8Fw7h .navbar .dropdown-menu .dropdown-item {
		padding: .25rem 1.5rem !important;
		text-align: center;
	}
	.cid-rQpDG8Fw7h .navbar .navbar-brand {
		-webkit-flex-shrink: initial;
		flex-shrink: initial;
		-webkit-flex-basis: auto;
		flex-basis: auto;
		word-break: break-word;
	}
	.cid-rQpDG8Fw7h .navbar .navbar-toggler {
		-webkit-flex-basis: auto;
		flex-basis: auto;
	}
	.cid-rQpDG8Fw7h .navbar .icons-menu {
		padding-left: 0;
		padding-top: .5rem;
		padding-bottom: .5rem;
	}
}
.cid-rQpDG8Fw7h .navbar.navbar-short {
	background: #f2f6ff !important;
	min-height: 60px;
}
.cid-rQpDG8Fw7h .navbar.navbar-short .navbar-logo img {
	height: 3rem !important;
}
.cid-rQpDG8Fw7h .navbar.navbar-short .navbar-brand {
	padding: 0;
}
.cid-rQpDG8Fw7h .dropdown-item:before {
	content: '';
	position: absolute;
	left: 16px;
	top: 52%;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	opacity: 0;
	background-color: #0c5894;
	transform: translateY(-50%);
	transition: all 0.3s;
}
.cid-rQpDG8Fw7h .dropdown-item:hover:before {
	opacity: 1!important;
}
.cid-rQpDG8Fw7h .nav-item:focus,
.cid-rQpDG8Fw7h .nav-link:focus {
	outline: none;
}
.cid-rQpDG8Fw7h .text-white:hover,
.cid-rQpDG8Fw7h .text-white:active,
.cid-rQpDG8Fw7h .text-white:focus {
	color: white!important;
}
.cid-rQpDG8Fw7h .dropdown-item {
	font-weight: 400!important;
	color: black!important;
}
.cid-rQpDG8Fw7h .dropdown-item:hover {
	color: black!important;
}
.cid-rQpDG8Fw7h .dropdown-menu {
	background-color: white!important;
}
.cid-rQpDG8Fw7h .navbar .dropdown.open > .dropdown-menu {
	border-radius: 10px;
	box-shadow: 0 30px 55px 5px rgba(16, 116, 195, 0.35);
	display: block;
}
.cid-rQpDG8Fw7h .nav-link:before {
	content: '';
	position: absolute;
	left: 10px;
	top: 50%;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	opacity: 0;
	background-color: #0c5894;
	transform: translateY(-50%);
	transition: all 0.3s;
}
.cid-rQpDG8Fw7h .nav-item:hover .nav-link:before {
	opacity: 1!important;
}
@media (max-width: 992px) {
	.cid-rQpDG8Fw7h .navbar {
		flex-direction: row;
	}
}
@media (min-width: 992px) {
	.cid-rQpDG8Fw7h .nav-item {
		position: relative;
	}
}
.cid-rQpDG8Fw7h .dropdown .dropdown-menu .dropdown-item {
	width: auto;
	-webkit-transition: all 0.25s ease-in-out;
	-moz-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}
.cid-rQpDG8Fw7h .dropdown .dropdown-menu .dropdown-item::after {
	right: 0.5rem;
}
.cid-rQpDG8Fw7h .dropdown .dropdown-menu .dropdown-item:hover {
	padding-left: 2rem;
}
.cid-rQpDG8Fw7h .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
	margin-left: -1.8rem;
	padding-right: 1rem;
	font-size: inherit;
}
.cid-rQpDG8Fw7h .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
	display: inline-block;
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1);
	-webkit-transition: all 0.25s ease-in-out;
	-moz-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}
.cid-rQpDG8Fw7h .navbar-caption {
	font-weight: 600!important;
}
.cid-rQpDG8Fw7h .navbar-brand {
	-webkit-flex-shrink: 0;
	flex-shrink: 0;
	-webkit-align-items: center;
	align-items: center;
	margin-right: 0;
	padding: 0;
	transition: all .3s;
	word-break: break-word;
	z-index: 1;
}
.cid-rQpDG8Fw7h .navbar-brand .navbar-caption {
	line-height: inherit !important;
}
.cid-rQpDG8Fw7h .navbar-brand .navbar-logo a {
	outline: none;
}
.cid-rQpDG8Fw7h .dropdown-item.active,
.cid-rQpDG8Fw7h .dropdown-item:active {
	background-color: transparent;
}
.cid-rQpDG8Fw7h .navbar-expand-lg .navbar-nav .nav-link {
	padding: 0;
}
.cid-rQpDG8Fw7h .nav-dropdown .link.dropdown-toggle {
	margin-right: 1.667em;
}
.cid-rQpDG8Fw7h .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
	margin-right: 0;
	padding: 0.667em 1.667em;
}
.cid-rQpDG8Fw7h .navbar.navbar-expand-lg .dropdown .dropdown-menu {
	background: #f2f6ff;
}
.cid-rQpDG8Fw7h .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
	margin: 0;
	left: 100%;
}
.cid-rQpDG8Fw7h ul.navbar-nav {
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.cid-rQpDG8Fw7h .navbar-buttons {
	text-align: center;
}
.cid-rQpDG8Fw7h button.navbar-toggler {
	outline: none;
	width: 31px;
	height: 20px;
	cursor: pointer;
	transition: all .2s;
	position: relative;
	-webkit-align-self: center;
	align-self: center;
}
.cid-rQpDG8Fw7h button.navbar-toggler .hamburger span {
	position: absolute;
	right: 0;
	width: 30px;
	height: 2px;
	border-right: 5px;
	background-color: #0c5894;
}
.cid-rQpDG8Fw7h button.navbar-toggler .hamburger span:nth-child(1) {
	top: 0;
	transition: all .2s;
}
.cid-rQpDG8Fw7h button.navbar-toggler .hamburger span:nth-child(2) {
	top: 8px;
	transition: all .15s;
}
.cid-rQpDG8Fw7h button.navbar-toggler .hamburger span:nth-child(3) {
	top: 8px;
	transition: all .15s;
}
.cid-rQpDG8Fw7h button.navbar-toggler .hamburger span:nth-child(4) {
	top: 16px;
	transition: all .2s;
}
.cid-rQpDG8Fw7h nav.opened .hamburger span:nth-child(1) {
	top: 8px;
	width: 0;
	opacity: 0;
	right: 50%;
	transition: all .2s;
}
.cid-rQpDG8Fw7h nav.opened .hamburger span:nth-child(2) {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	transition: all .25s;
}
.cid-rQpDG8Fw7h nav.opened .hamburger span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	transition: all .25s;
}
.cid-rQpDG8Fw7h nav.opened .hamburger span:nth-child(4) {
	top: 8px;
	width: 0;
	opacity: 0;
	right: 50%;
	transition: all .2s;
}
.cid-rQpDG8Fw7h .nav-link {
	font-weight: 600!important;
}
.cid-rQpDG8Fw7h a.nav-link {
	-webkit-justify-content: center;
	justify-content: center;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
}
.cid-rQpDG8Fw7h .mbr-iconfont {
	font-size: 1.5rem;
	padding-right: .5rem;
}
.cid-rQpDG8Fw7h .icons-menu {
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	padding-left: 1rem;
	text-align: center;
}
.cid-rQpDG8Fw7h .icons-menu span {
	font-size: 26px;
	color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
	.cid-rQpDG8Fw7h .navbar {
		height: 77px;
	}
	.cid-rQpDG8Fw7h .navbar.opened {
		height: auto;
	}
	.cid-rQpDG8Fw7h .nav-item .nav-link:hover::before {
		width: 175%;
		max-width: calc(100% + 2rem);
		left: -1rem;
	}
}
.cid-rQpFcmvd4Y,.covid {
	padding-top: 120px;
	padding-bottom: 120px;
}
.covid .card-img span, 
.cid-rQpFcmvd4Y .card-img span {
	font-size: 100px;
}
.covid .mbr-text,
.cid-rQpFcmvd4Y .mbr-text,
.covid .mbr-section-btn, 
.cid-rQpFcmvd4Y .mbr-section-btn {
	color: #efefef;
}
@media (max-width: 768px) {
	.covid .mb-4,
	.cid-rQpFcmvd4Y .mb-4,
	.covid .my-4, 
	.cid-rQpFcmvd4Y .my-4 {
		margin-top: 5px !important;
	}
}










#key-dates {
/*
	padding-top: 120px;
	padding-bottom: 120px;
*/
	background-color: #ffffff;
}
#key-dates .mbr-text,
#key-dates .mbr-section-subtitle {
	color: #767676;
}
#key-dates .card-title {
	color: #66458e;
}
#key-dates .card .card-img span {
	color: rgba(var(--primary));
	font-size: 60px;
	background: linear-gradient(45deg, rgba(var(--dcd-blue-lt),.5), rgba(var(--primary)));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	padding-top: 15px;
}
@media (max-width: 767px) {
	#key-dates .mbr-section-subtitle,
	#key-dates .mbr-section-title {
		text-align: center !important;
	}
}
#key-dates .card-title,
#key-dates .card-img {
	color: rgba(var(--primary));
}
#key-dates .mbr-text {
	color: rgba(var(--dcd-grey));
}
#key-dates .mbr-section-title {
	color: rgba(var(--primary));
}




.dcd-section {
	background: white;
}
.dcd-section .content-block {
	text-align: center;
	position: absolute;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	top: 50%;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 80%;
	background-color: #0c5894;
	transition: all 0.4s ease-in-out;
}
.dcd-section .content-section {
	height: 100%;
	padding: 0 3rem;
	margin-bottom: 2rem;
}
.dcd-section .image-wrap:hover img {
	opacity: 1;
	-webkit-transform: translateY(-4%);
	transform: translateY(-4%);
}
.dcd-section .image-wrap:hover > .content-block {
	opacity: .6;
}
.dcd-section .image-wrap {
	width: 100%;
	height: auto;
}
.dcd-section .image-wrap img {
	transition: all 0.3s ease-in-out;
	width: 100%;
	max-width: 300px;
}





.cid-rQq0A6BlKl {
	padding-top: 120px;
	padding-bottom: 120px;
}
.cid-rQq0A6BlKl .content-block {
	text-align: center;
	position: absolute;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	top: 50%;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 80%;
	background-color: #0c5894;
	transition: all 0.4s ease-in-out;
}
.cid-rQq0A6BlKl .content-block .mbr-text {
	margin: 0;
}
.cid-rQq0A6BlKl .content-section {
	height: 100%;
	padding: 0 3rem;
	margin-bottom: 2rem;
}
.cid-rQq0A6BlKl .image-wrap:hover img {
	opacity: 1;
	-webkit-transform: translateY(-4%);
	transform: translateY(-4%);
}
.cid-rQq0A6BlKl .image-wrap:hover > .content-block {
	opacity: .6;
}
.cid-rQq0A6BlKl .image-wrap {
	width: 100%;
	height: auto;
}
.cid-rQq0A6BlKl .image-wrap img {
	transition: all 0.3s ease-in-out;
	width: 100%;
	max-width: 300px;
}
.cid-rQq0A6BlKl h4.mbr-text a {
	display: block;
	min-width: 100%;
}
.cid-rQq0A6BlKl .mbr-section-title {
	color: #f2f6ff;
}
.cid-rQq0A6BlKl .mbr-section-subtitle {
	color: #8dc0e5;
}
.cid-rQq0A6BlKl P {
	color: #f2f6ff;
}





/* COUNTDOWN */

#counter {
	padding-top: 75px;
	padding-bottom: 75px;
	background-image: url("../images/surf-1920x1079.jpg");
}
#counter .mbr-section-subtitle {
	color: #767676;
	font-weight: 300;
}
#counter .number-wrap {
	color: #8dc0e5;
	border-color: rgba(255, 255, 255, 0.15);
	position: relative;
	display: inline-block;
	text-align: center;
	padding: 5px 10px 13px 10px;
	margin: 0;
	min-width: 118px;
	border-radius: 2px;
	max-width: 100%;
}
#counter .number {
	font-style: normal;
	font-weight: 700;
	font-size: 55px;
	text-transform: none;
	letter-spacing: -2px;
	word-spacing: 0;
	line-height: 1.3;
	color: #e6f0f0;
}
#counter .period {
	display: block;
	padding-top: 2px;
}
#counter .dot {
	display: none;
}
#counter .countdown-cont {
	margin: 0 auto;
}
@media (max-width: 768px) {
	#counter .dot {
		display: none;
	}
}
@media (max-width: 543px) {
	#counter .number-wrap {
		margin-bottom: 15px;
	}
}
@media (max-width: 550px) {
	#counter .col-xs-3 {
		padding-left: 0;
		padding-right: 0;
		max-width: 25%;
		flex: 0 0 25%;
	}
	#counter .number-wrap {
		min-width: auto;
	}
}
@media (max-width: 440px) {
	#counter .number,
	#counter .dot {
		font-size: 40px;
	}
}
@media (max-width: 380px) {
	#counter .period {
		font-size: 0.8rem;
	}
}
#counter H2 {
	color: #8dc0e5;
}



/*
.countdown {
	padding-top: 75px;
	padding-bottom: 75px;
	background-image: url("../images/surf-1920x1079.jpg");
}
*/
#countdown .mbr-section-subtitle {
	color: #767676;
	font-weight: 300;
}
#countdown .number-wrap {
	color: #8dc0e5;
	border-color: rgba(255, 255, 255, 0.15);
	position: relative;
	display: inline-block;
	text-align: center;
	padding: 5px 10px 13px 10px;
	margin: 0;
	min-width: 118px;
	border-radius: 2px;
	max-width: 100%;
}
#countdown .number {
	font-style: normal;
	font-weight: 700;
	font-size: 55px;
	text-transform: none;
	letter-spacing: -2px;
	word-spacing: 0;
	line-height: 1.3;
	color: #e6f0f0;
}
#countdown .period {
	display: block;
	padding-top: 2px;
}
#countdown .dot {
	display: none;
}
#countdown #countdown-cont {
	margin: 0 auto;
}
@media (max-width: 768px) {
	#countdown .dot {
		display: none;
	}
}
@media (max-width: 543px) {
	#countdown .number-wrap {
		margin-bottom: 15px;
	}
}
@media (max-width: 550px) {
	#countdown .col-xs-3 {
		padding-left: 0;
		padding-right: 0;
		max-width: 25%;
		flex: 0 0 25%;
	}
	#countdown .number-wrap {
		min-width: auto;
	}
}
@media (max-width: 440px) {
	#countdown .number,
	#countdown .dot {
		font-size: 40px;
	}
}
@media (max-width: 380px) {
	#countdown .period {
		font-size: 0.8rem;
	}
}
#countdown H2 {
	color: #8dc0e5;
}




.cid-rQpGISuQrI {
	padding-top: 60px;
	padding-bottom: 60px;
	background-color: #ffffff;
}
.cid-rQpGISuQrI .navbar-logo {
	width: 100px;
	margin-bottom: 10px;
	margin: auto;
}
.cid-rQpGISuQrI .navbar-brand {
	margin: auto;
	width: 100%;
	text-align: center;
}
.cid-rQpGISuQrI .socicon {
	font-size: 1.3rem;
	background: #767676;
	border-radius: 100%;
	width: 40px;
	height: 40px;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
}
.cid-rQpGISuQrI .social-list {
	padding-left: 0;
	margin-bottom: 0;
	list-style: none;
}
.cid-rQpGISuQrI .social-list .soc-item {
	display: inline-block;
	margin: 0 0.3rem;
}
.cid-rQpGISuQrI .text2 {
	color: #000000;
	text-align: left;
}
.cid-rQpGISuQrI .group-title {
	text-align: left;
	color: #000000;
	padding-bottom: 0.2rem;
}
.cid-rQpGISuQrI .logo-title {
	text-align: center;
}
.cid-rQpGISuQrI .logo-sub-title {
	text-align: center;
	color: #767676;
}
.cid-rQpGISuQrI .links {
	text-align: center;
	color: #656565;
}
.cid-rQpGISuQrI .logo-sub-title i {
	color: #9e9e9e;
}
.cid-rQpGISuQrI .logo-title,
.cid-rQpGISuQrI .logo {
	color: #8dc0e5;
}






/* REGISTRATION */

/*
.primary {
	color: rgba(12,88,148, 1);
}
.secondary {
	color: rgba(141,192,229, 1);
}
*/
#regist {
	padding-top: 30px;
	padding-bottom: 30px;
}
#cancellation {
	background: rgb(204,204,204);
	background: -moz-linear-gradient(0deg, rgba(204,204,204,0.3) 80%, rgba(204,204,204,1) 100%);
	background: -webkit-linear-gradient(0deg, rgba(204,204,204,0.3) 80%, rgba(204,204,204,1) 100%);
	background: linear-gradient(0deg, rgba(204,204,204,0.3) 80%, rgba(204,204,204,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#cccccc",endColorstr="#cccccc",GradientType=1);
		padding-top: 80px !important;
		padding-bottom: 80px !important;
}
.list-inline-item {
	width: 100px;
	padding: 0 15px 10px;
}
.list-inline-item img {
	width: 100%;
	height: auto;
}
.list-inline {
	margin-bottom: 25px !important;
}
p.li {
	margin-bottom: 30px !important;
}
u {
	text-decoration: none;
	border-bottom: 1px solid #ccc;
}
.list-inline-item {
		width: 100px;
		padding: 0 15px 10px;
}
.list-inline-item img {
		width: 100%;
		height: auto;
}
.tbl,.tbl2,.tbl3,.tbl4,.tbl5 {
	border-top: 1px solid #ccc;
	clear: both;
	display: block;
	overflow: hidden;
	padding-top: 5px;
	padding-bottom: 5px;
	width: 100%;
	transition: all .35s ease-in-out .1s;
	cursor: default;
}
.tbl3 {
	border-top: none;
	padding-top: 3px;
	padding-bottom: 3px;
}
.tbl4 {
	border-top: 3px solid #fff;
	padding-top: 8px;
	padding-bottom: 8px;
	background-color: #f2f6ff;
}
.tbl5 {
	border-top: none;
	padding: 0;
}
.tbl strong,.tbl2 strong,.tbl3 strong,.tbl4 strong,.tbl5 strong {
	font-weight: 700;
}
.tblexp {
	width: 100%;
	display: none;
}
.tbl:hover, .tbl:focus {
	background-color: #ffffff;
	box-shadow: 0 0 20px #ccc;
	border-top: 1px solid #fff;
}
@media (max-width: 680px) {
	.special:hover, .special:focus {
		background-color: transparent;
	}
}
.tgrey,.tblue,.twhite {
	color: #565656;
	float: left;
	padding-top: 3px;
	padding-bottom: 3px;
/*	line-height: 1.5;*/
}
.tcenter {
	text-align: center !important;
}
.tleft {
	text-align: left;
}
.tbullet {
	position: relative;
	display: inline-block;
}
.tbullet::before {
	content: '';
	position: absolute;
	right: 20px;
	top: 16px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	opacity: 1;
	background-color: #0c5894;
	transform: translateY(-50%);
	transition: all 0.3s;
}
/*
.tgrey,.tblue,.twhite {padding-right:10px;}
*/
.tblue {color: rgba(41-192-229, 1);}
.twhite {color: #ffffff;}
.bgrey {background-color: #f1f1f1;}
.blk {display: block;padding-bottom: 10px;}
.t2,.t5,.tx5,.t6,.t8 {padding-right:0 !important;}
.t2 {width: 1.9%;}
.t5,.tx5 {width: 4.9%;}
.t6 {width: 5.9%;}
.t8 {width: 8.9%;}
.t10 {width: 9.9%;}
.t15 {width: 14.9%;}
.t20 {width: 19.9%;}
.t25 {width: 24.9%;}
.t28 {width: 27.9%;}
.t30 {width: 29.9%;}
.t35 {width: 34.9%;}
.t40 {width: 39.9%;}
.t45 {width: 44.9%;}
.t50 {width: 49.9%;}
.t55 {width: 54.9%;}
.t60 {width: 59.9%;}
.t65 {width: 64.9%;}
.t70 {width: 69.9%;}
.t75 {width: 74.9%;}
.t80 {width: 79.9%;}
.t85 {width: 84.9%;}
.t90 {width: 89.9%;}
.t95,.tx95 {width: 94.9%;}
.t100 {width: 100%;}
/*.tindent {padding-left: 10px;}*/
.tright {text-align: right;padding-right: 0;}
.tcentre {text-align: center;}
.tbold {font-weight: 700;}
.tbl-last {margin-bottom: 30px;}
@media (max-width: 990px) {
	.thide {display: none;}
	.tright, .tcentre, .tleft {text-align: center;}
	.tbullet {display: none;}
	.tindent {padding-left: 0;}
	.t2, .t5, .tx5, .t6, .t8, .t10, .t15, .t20, .t25, 
	.t28, .t30, .t35, .t40, .t45, .t50, .t55, .t60, 
	.t65, .t70, .t75, .t80, .t85, .t90, .t95,.tx95, .t100 {
		text-align: center;
		width: 100%;
	}
	.tp {
		font-size: 0.8rem;
		line-height: 0.8rem;
		text-transform: uppercase;
		margin-top: 3px;
	}
	.tbl:hover, .tbl:focus {box-shadow: 0 0 30px #ccc;}
	.tgrey, .tblue, .twhite {padding-right: 0;}
}
.disabled {
	color: #ccc !important;
}
.early {
	color: green;
	padding-right: 10px;
}
.after {
	padding-right: 10px;
}


.disappear, .disappeared {
	display: none;
}


.previous-year {
	display: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: auto;
	background-color: red;
}
.previous-year p, .previous-year a {
	margin: 0 auto;
	text-align: center;
	font-size: 0.7rem;
	line-height: 1;
	font-weight: 400;
	padding: 2px 0 2px;
	color: white;
	letter-spacing: 0.03em;
}

.nobr {
	white-space: nowrap;
}

.stick {
  position: absolute;
  display: flex;
  height: 100px;
  width: 100vw;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  z-index: 999;
  overflow: hidden;
}
.stick img {
  height: clamp(100px,18vh,200px);
  width: auto;
  margin: -5vh auto 0 auto;
}

@media (max-width: 990px) {
	.hideme {
		display: none;
	}
}

.warning {
	display: inline-block;
	margin: 30px 0 !important;
	color: white;
	font-weight: 500;
	background: red;
	padding: 20px 40px;
	border-radius: 20px;
}

.dcd-section-btn a {
  margin-left: -0.25rem;
  margin-right: -0.25rem;
  padding: 1rem 3rem !important;
  border-radius: 100px !important;
}


.blinker {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
	50% {
		opacity: 0.3;
	}
}
