:root {
	--dark: #403d3d;
	--primary: #002855;
	--secondary: #B7C9D3;
	--gray: #f2f2f2;
}

::selection {
	background: var(--primary);
	color: #fff;
}

@font-face {
	font-family: 'Calibri';
	src: url('../fonts/Calibri-Light.eot');
	src: local('Calibri Light'), local('Calibri-Light'),
		url('../fonts/Calibri-Light.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Calibri-Light.woff2') format('woff2'),
		url('../fonts/Calibri-Light.woff') format('woff'),
		url('../fonts/Calibri-Light.ttf') format('truetype');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Calibri';
	src: url('../fonts/Calibri-Bold.eot');
	src: local('Calibri Bold'), local('Calibri-Bold'),
		url('../fonts/Calibri-Bold.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Calibri-Bold.woff2') format('woff2'),
		url('../fonts/Calibri-Bold.woff') format('woff'),
		url('../fonts/Calibri-Bold.ttf') format('truetype');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Calibri';
	src: url('../fonts/Calibri.eot');
	src: local('Calibri'),
		url('../fonts/Calibri.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Calibri.woff2') format('woff2'),
		url('../fonts/Calibri.woff') format('woff'),
		url('../fonts/Calibri.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

body {
	font-size: 18px;
	font-weight: normal;
	color: var(--dark);
	background: #fff;
	font-family: 'Calibri';
}

.alert p {
	margin: 0;
}

img:not([src]):not([srcset]) {
	visibility: hidden;
}

a {
	color: var(--primary);
	text-decoration: none;
	transition: all .5s;
}

a:hover {
	color: #3d7492;
	text-decoration: none;
}

a.nav-link {
	color: var(--primary);
}

a.nav-link:hover {
	color: var(--secondary);
}

.bg_dark {
	background-color: var(--dark);
}

.bg_gray {
	background-color: var(--gray);
}

.bg_primary {
	background-color: var(--primary);
}

.bg_secondary {
	background-color: var(--secondary);
}

.bg_white {
	background-color: #fff;
}

.color_primary {
	color: var(--primary);
}

.color_dark {
	color: var(--dark);
}

.color_secondary {
	color: var(--secondary);
}

.border-radius {
	border-radius: .5rem;
}

h1,
.h1 {
	font-weight: bold;
	margin-bottom: 0;
	margin-top: 0;
	line-height: 1;
	font-size: 4rem;
	padding-bottom: 30px;
}

h2,
.h2 {
	margin-bottom: 1rem;
	margin-top: 1.2rem;
	font-size: 1.5rem;
	font-weight: bold;
}

.stripe-loading-indicator .stripe,
.stripe-loading-indicator .stripe-loaded {
	background: var(--primary) !important;
}

button,
button:focus {
	outline: none;
}

.btn {
	outline: none !important;
	box-shadow: none !important;
	transition: all 0.5s;
	background-color: var(--gray);
	border-color: var(--gray);
	color: var(--dark)
}

.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active,
.btn:hover {
	background-color: var(--primary);
	border-color: var(--primary);
	color: #fff;
}

.btn-primary {
	background-color: var(--primary);
	border-color: var(--primary);
	color: #fff;
	text-transform: uppercase;
	padding: 12px 40px;
	border-radius: 7px;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:hover {
	background-color: var(--primary);
	border-color: var(--primary);
	color: #fff;
}

.bg_dark .btn-primary {
	color: #fff;
}

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
	color: var(--gray);
	pointer-events: none;
	background-color: var(--primary);
	border-color: var(--primary);
	opacity: .4;
}

.btn-secondary {
	background-color: transparent;
	border-color: var(--primary);
	color: var(--primary);
	text-transform: uppercase;
	padding: 14px 40px;
	border-radius: 7px;
	border-width: 2px;
}

.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.btn-secondary:hover {
	background-color: var(--primary);
	border-color: var(--primary);
	color: #fff;
}

.btn-secondary.disabled,
.btn-secondary:disabled {
	color: #868686;
	background-color: #fff;
	border-color: #D0D0D0;
}

.btn-link,
.btn-link:focus {
	padding: 0;
	text-decoration: none;
	border: 0;
	background: transparent;
	border-radius: 0;
	color: currentColor;
}

.btn-link:not(:disabled):not(.disabled).active,
.btn-link:not(:disabled):not(.disabled):active,
.btn-link:hover {
	padding: 0;
	text-decoration: none;
	border: 0;
	background: transparent;
	border-radius: 0;
	color: var(--primary);
}

.btn-icon {
	background: transparent;
	color: currentColor;
	border: 0;
	padding: 0;
	border-radius: 0;
}

.btn-icon:hover {
	background: transparent;
	color: var(--primary);
	border: 0;
}

.btn.btn-icon svg {
	width: 20px;
	height: 20px;
}

.btn-close {
	outline: none !important;
	box-shadow: none !important;
}

.btn-icon-menu {
	position: relative;
	width: 32px;
	height: 20px;
	color: #fff;
	border: 0;
	border-radius: 0;
	background: none;
	padding: 0;
}

.btn-icon-menu:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-top: 1px solid currentColor;
	transition: all 0.3s;
}

.btn-icon-menu:after {
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 0;
	border-bottom: 1px solid currentColor;
	transition: all 0.3s;
}

.btn-icon-menu span {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 0;
	border-bottom: 1px solid currentColor;
}

.btn-icon-menu:hover {
	color: var(--primary);
}

.btn-icon-menu:hover:before {
	transform: translateY(5px);
}

.btn-icon-menu:hover:after {
	transform: translateY(-5px);
}

.form-control {
	border: 1px solid #E7E7E7;
	outline: none;
	box-shadow: none;
	font-size: 16px;
	font-weight: normal;
	border-radius: 7px;
	padding: 11px 20px;
}

.form-control:focus {
	color: var(--dark);
	background-color: #fff;
	border-color: var(--dark);
	outline: 0;
	box-shadow: none;
}

.form-control::placeholder {
	color: #545454;
}

.form-control::-webkit-input-placeholder {
	color: #545454;
}

.form-control::-moz-placeholder {
	color: #545454;
}

.form-control:-ms-input-placeholder {
	color: #545454;
}

.form-control:-moz-placeholder {
	color: #545454;
}

.form-control:disabled,
.form-control[readonly] {
	background-color: #F4F4F4;
}

.form-select {
	border: 1px solid #E7E7E7;
	outline: none;
	box-shadow: none;
	font-size: 16px;
	font-weight: normal;
	border-radius: 7px;
	padding: 11px 20px;
}

.form-select:focus {
	color: var(--dark);
	background-color: #fff;
	border-color: var(--dark);
	outline: 0;
	box-shadow: none;
}

.form-label {
	margin-bottom: .5rem;
	margin-left: 0px;
	font-size: 14px;
	position: relative;
}

.form-label.required:after {
	content: '*';
	color: #DC2F2F;
	margin-left: 1px;
}

.form-check {
	display: block;
	min-height: 1.5rem;
	padding-left: 0;
	margin: 15px 0;
}

.form-check:last-child {
	margin-bottom: 0px;
}

.form-check input {
	display: none;
}

.form-check-label {
	font-size: 14px;
	position: relative;
	padding-left: 30px;
	cursor: pointer;
	display: inline-block;
}

.form-check-label:before {
	content: '✓';
	position: absolute;
	left: 0;
	top: 0;
	width: 20px;
	height: 20px;
	line-height: 18px;
	font-size: 12px;
	text-align: center;
	background: transparent;
	border: 1px solid #D6D6D6;
	color: rgba(255, 255, 255, 0);
	border-radius: 10px;
}

.form-check input:checked~.form-check-label:before {
	background: var(--primary);
	border-color: var(--primary);
	color: #fff;
}

.checkbox-group .form-check .form-check-label:before {
	border-radius: 4px;
}

.site_bg {
	background-repeat: no-repeat;
    background-position: top right;
    background-attachment: fixed;
	background-size: cover;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

#header .social a {
	display: flex;
	width: 32px;
	height: 32px;
	background-color: var(--secondary);
	color: var(--primary);
	border-radius: 50%;
	align-items: center;
	justify-content: center;
}

#header .social a:hover {
	background-color: var(--primary);
	color: var(--secondary);
}

.mainMenu li {
	background-color: var(--primary);
	position: relative;
}

.mainMenu li.has-child {
	padding-right: 1rem;
}

.mainMenu li.has-child:after {
	content: '';
	position: absolute;
	width: 7px;
	height: 7px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: rotate(135deg);
	right: 10px;
	top: 18px;
}

.mainMenu li.has-child ul li.has-child:after {
	transform: rotate(45deg);
}

.mainMenu li a {
	color: var(--secondary);
	font-weight: bold;
	font-size: 18px;
	text-transform: uppercase;
	padding: 0.75rem 1.5rem;
}

.mainMenu li:hover>a,
.mainMenu li a:hover {
	color: #fff;
}

.mainMenu li ul {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 100%;
	z-index: 9;
}

.mainMenu li ul li ul {
	top: 0;
	left: 100%;
}

.mainMenu li ul li ul a {
	font-size: 14px;
}

.mainMenu li:hover>ul {
	display: flex;
	flex-direction: column;
}

.lang-picker a {
	display: block;
	text-transform: uppercase;
}

.lang-picker a.selected {
	opacity: .5;
}

.main-page-links .main-page-link-block {
	opacity: 0;
	transition: opacity .7s;
	transition-delay: .4s;
}

.main-page-links .main-page-link-block:nth-child(2) {
	transition-delay: .8s;
}

.main-page-links .main-page-link-block:nth-child(3) {
	transition-delay: 1.2s;
}

body.loaded .main-page-links .main-page-link-block {
	opacity: 1 !important;
}

.main-page-link {
	color: #fff;
}

.main-page-link:hover {
	color: var(--secondary);
}

.main-page-link-title {
	font-size: 45px;
	font-weight: 400;
}

.offcanvas-body ul.nav ul {
	padding-left: 2rem;
}

.offcanvas-body ul.nav a.nav-link {
	text-transform: uppercase;
}

.offcanvas-body ul.nav ul.nav ul.nav a.nav-link {
	font-size: 14px;
}

.breadcrumb a,
.breadcrumb-item.active,
.breadcrumb-item+.breadcrumb-item::before {
	color: #fff;
}

.child-pages-list .card {
	min-height: 110px;
}

.child-pages-list .card .card-title {
	display: block;
	font-weight: bold;
	font-size: 1.15rem;
	line-height: 1.2;
}

.child-pages-list .card svg {
	position: absolute;
	bottom: 0.5rem;
	right: 0.5rem;
	width: 1.5rem;
	height: 1.5rem;
	transition: all .3s;
	transform: rotate(-45deg);
	color: #b7c9d3;
}

.child-pages-list .card:hover svg {
	transform: rotate(0deg);
}

.map iframe {
	width: 100%;
	height: auto;
	aspect-ratio: 16/9;
}

.child-pages-list .card .card-title {
	color: #b7c9d3
}

.card-body:hover .card-title {
	color: #002855;
}

.card-body:hover {
	background: #b7c9d3;
	transition: 1s;
	color: #ccc;
}

.card-body {
	background: #002855;
}

table.responsive td {
	padding: 1rem;
}

@media (max-width: 1399.98px) {}

@media (max-width: 1199.98px) {}

@media (max-width: 991.98px) {

	.main-page-link-title {
		font-size: 38px;
	}

}

@media (max-width: 767.98px) {

	table.responsive,
	table.responsive tbody {
		display: block;
	}

	table.responsive tbody tr {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}

	table.responsive tbody tr td {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 50%;
	}

}

@media (max-width: 575.98px) {

	h1,
	.h1 {
		font-size: 2.2rem;
	}

	h2,
	.h2 {
		font-size: 2rem;
	}

	.main-page-link-title {
		font-size: 20px;
		font-weight: bold;
	}
}



.bg_white.p-3.p-lg-5 {
	font-size: 20px;
	font-weight: 400;
	color: #002855;
}

.bg_white {
	background-color: #b7c9d3ed;
}

.bg_white blockquote {
	background: #002855;
	padding: 15px;
	color: #afbdc6;
	border-radius: 10px;
}

/*.bg_white blockquote:nth-child(2n){
    color: #002855;
    background: #afbdc6;
    padding: 15px;
    border-radius:15px;
    }*/