:root {
	--bs-font-sans-serif: "Open Sans", sans-serif;
	--bs-font-heading: "Roboto", sans-serif;
	--bs-font-secondary: "Mulish", sans-serif;
	--bs-body-color: #000;
	--bs-gray: #adaeb0;
	--bs-gray-100: #3c3c3c;
	--bs-blue: #051776;
	--bs-blue-dark: #2b2b43;
	--bs-blue-100: #3143a4;
	--bs-yellow: #ffd203;
	--bs-orange: #ff5a01;
	--bs-primary: #141c31;
	--bs-secondary: #030b35;
	--bs-body-color-rgb: 0, 0, 0;
	--bs-gray-rgb: 173, 174, 176;
	--bs-gray-100-rgb: 112, 112, 112;
	--bs-primary-rgb: 20, 28, 49;
	--bs-secondary-rgb: 3, 11, 53;
	--bs-blue-rgb: 5, 23, 118;
	--bs-blue-100-rgb: 49, 67, 164;
	--bs-link-color: var(--bs-secondary);
	--bs-link-hover-color: var(--bs-secondary);
	--bs-body-spacer: 218px;
	--bs-body-spacer-xs: 259px;
	--bs-body-spacer-md: 102px;
	--bs-body-spacer-lg: 111px;
	--bs-body-spacer-xl: 129px;
	--bs-body-spacer-xxl: 136px;
	--bs-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.78);
}

::-moz-selection { 
	background: #d7002e;
	color: var(--bs-white);
	text-shadow: none
}
	
::selection {
	background: #d7002e;
	color: var(--bs-white);
	text-shadow: none;
}

body {
	font-size: 20px;
	min-height: 100vh;
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	align-self: stretch;
	padding-top: var(--bs-body-spacer);
}

@media (min-width: 500px) {
	body {
		padding-top: var(--bs-body-spacer-xs);
	}
}

@media (min-width: 768px) {
	body {
		font-size: 16px;
		padding-top: var(--bs-body-spacer-md);
	}
}

@media (min-width: 992px) {
	body {
		padding-top: var(--bs-body-spacer-lg);
	}
}

@media (min-width: 1400px) and (max-resolution: 96dpi) {
	body {
		font-size: 20px;
		padding-top: var(--bs-body-spacer-xl);
	}
}

@media (min-width: 1800px) and (max-resolution: 96dpi) {
	body {
		padding-top: var(--bs-body-spacer-xxl);
	}
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
	color: var(--bs-primary);
	margin-bottom: 1.5rem;
}

h1, .h1,
h2, .h2 {
	font-family: var(--bs-font-heading);
	font-weight: 500;
}

h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
	font-weight: 800;
	font-family: var(--bs-font-secondary);
	letter-spacing: 0.05em;
}

h1, .h1 {
	font-size: 55px;
}

@media (min-width: 768px) {
	h1, .h1 {
		font-size: 35px;
	}
}

@media (min-width: 1400px) and (max-resolution: 96dpi) {
	h1, .h1 {
		font-size: 42px;
	}
}

h2, .h2 {
	font-size: 28px;
}

@media (min-width: 768px) {
	h2, .h2 {
		font-size: 24px;
	}
}

@media (min-width: 1400px) and (max-resolution: 96dpi) {
	h2, .h2 {
		font-size: 28px;
	}
}

h3, .h3 {
	font-size: 22px;
}

@media (min-width: 768px) {
	h3, .h3 {
		font-size: 20px;
	}
}

@media (min-width: 1400px) and (max-resolution: 96dpi) {
	h3, .h3 {
		font-size: 24px;
	}
}

h4, .h4 {
	font-size: 22px;
}

@media (min-width: 768px) {
	h4, .h4 {
		font-size: 20px;
	}
}

@media (min-width: 1400px) and (max-resolution: 96dpi) {
	h4, .h4 {
		font-size: 22px;
	}
}

h5, .h5 {
	font-size: 20px;
	
}

@media (min-width: 768px) {
	h5, .h5 {
		font-size: 18px;
	}
}

@media (min-width: 1400px) and (max-resolution: 96dpi) {
	h5, .h5 {
		font-size: 20px;
	}
}

p {
	margin-bottom: 1.675rem;
}

a {
	color: var(--bs-link-color);
	text-decoration: none;
}
.single-post .entry-content  a {
	color: var(--bs-blue);
}

a:hover,
a:focus {
	color: var(--bs-link-hover-color);
	text-decoration: underline;
}


ol, ul {
  padding-left: 2.5rem;
}

.container {
	--bs-gutter-x: 2rem;
}

@media (min-width: 768px) {
	.container {
		--bs-gutter-x: 1.5rem;
	}
}

@media (min-width: 1400px) {
	.container {
		max-width: 1320px;
	}
}

@media (min-width: 1800px) {
	.container {
		max-width: 1590px;
	}
}

@media (min-width: 1800px) {
	.navbar .container {
		max-width: 1750px;
	}
}

@media (min-width: 1800px) {
	.navbar-inner .container {
		max-width: 75%;
	}
}

.mobile-header {
	background-color: var(--bs-primary);
	color: var(--bs-white);
	font-size: 14px;
	padding: 10px 0 20px;
	transition: 0.3s ease-out;
}

@media (min-width: 500px) {
	.mobile-header {
		font-size: 20px;
		padding-bottom: 32px;
	}
}

.navbar-sticky .mobile-header {
	padding-top: 12px;
	padding-bottom: 20px;
}

.gx-sm {
	--bs-gutter-x: 0.5rem;
}

@media (min-width: 500px) {
	.gx-sm {
		--bs-gutter-x: 3rem;
	}
}

.mobile-header .item-text {
	font-weight: 800;
	font-family: var(--bs-font-secondary);
	letter-spacing: 0.05em;
	margin-bottom: 17px;
}

.mobile-header .btn {
	--bs-btn-padding-x: 0.5rem;
	--bs-btn-padding-y: 0.4375rem;
	--bs-btn-border-radius: 14px;
	--bs-btn-border-width: 0;
	--bs-btn-color: var(--bs-primary);
	--bs-btn-bg: var(--bs-white);
	--bs-link-hover-color: var(--bs-white);
	--bs-btn-hover-color: var(--bs-white);
	--bs-btn-hover-bg: var(--bs-secondary);
	--bs-btn-active-color: var(--bs-white);
	--bs-btn-active-bg: var(--bs-secondary);
	--bs-btn-disabled-color: var(--bs-primary);
	--bs-btn-disabled-bg: var(--bs-white);
	font-family: var(--bs-font-sans-serif);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0;
	text-transform: uppercase;
	box-shadow: none;
	width: 100%;
	white-space: nowrap;
}

@media (min-width: 500px) {
	.mobile-header .btn {
		--bs-btn-padding-x: 0.75rem;
		font-size: 16px;
	}
}

.mobile-header .btn .icon {
	color: var(--bs-secondary);
	/*font-size: 18px;*/
	vertical-align: middle;
	display: inline-block;
	margin-top: -3px;
}

@media (min-width: 500px) {
	.mobile-header .btn .icon {
		font-size: 20px;
	}
}

.mobile-header .btn:hover .icon,
.mobile-header .btn:focus-visible .icon,
.mobile-header .btn:active .icon {
	color: var(--bs-white);
}

.admin-bar .navbar {
	top: 46px;
}

@media (min-width: 768px) {
	.admin-bar .navbar {
		top: 32px;
	}
}

.navbar {
	--bs-navbar-color: var(--bs-body-color);
	--bs-navbar-padding-y: 0;
	--bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3Csvg width='32' height='20' viewBox='0 0 32 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 10C0 9.17157 0.671573 8.5 1.5 8.5H30C30.8284 8.5 31.5 9.17157 31.5 10C31.5 10.8284 30.8284 11.5 30 11.5H1.5C0.671573 11.5 0 10.8284 0 10Z' fill='%233143a4'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 1.5C0 0.671573 0.671573 0 1.5 0H30C30.8284 0 31.5 0.671573 31.5 1.5C31.5 2.32843 30.8284 3 30 3H1.5C0.671573 3 0 2.32843 0 1.5Z' fill='%233143a4'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 18.5C0 17.6716 0.671573 17 1.5 17H30C30.8284 17 31.5 17.6716 31.5 18.5C31.5 19.3284 30.8284 20 30 20H1.5C0.671573 20 0 19.3284 0 18.5Z' fill='%233143a4'/%3E%3C/svg%3E%0A");
	--bs-navbar-toggler-icon-active-bg: url("data:image/svg+xml,%3Csvg width='41' height='41' viewBox='0 0 41 41' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M28.5381 25.991L22.5961 20.049L28.5381 14.107C28.876 13.7691 29.0658 13.3108 29.0658 12.833C29.0658 12.3551 28.876 11.8969 28.5381 11.559C28.2002 11.2211 27.742 11.0313 27.2641 11.0313C26.7863 11.0313 26.328 11.2211 25.9901 11.559L20.0431 17.5L14.1011 11.558C13.7632 11.2201 13.305 11.0303 12.8271 11.0303C12.3493 11.0303 11.891 11.2201 11.5531 11.558C11.2152 11.8959 11.0254 12.3541 11.0254 12.832C11.0254 13.0686 11.072 13.3029 11.1626 13.5215C11.2531 13.7401 11.3858 13.9387 11.5531 14.106L17.4951 20.048L11.5571 25.991C11.3823 26.154 11.2429 26.3512 11.1476 26.5704C11.0524 26.7895 11.0032 27.026 11.0032 27.265C11.0032 27.504 11.0524 27.7404 11.1476 27.9596C11.2429 28.1788 11.3823 28.376 11.5571 28.539C11.7236 28.7077 11.922 28.8417 12.1407 28.9331C12.3594 29.0245 12.5941 29.0716 12.8311 29.0716C13.0682 29.0716 13.3028 29.0245 13.5215 28.9331C13.7402 28.8417 13.9386 28.7077 14.1051 28.539L20.0431 22.597L25.9901 28.541C26.3291 28.8769 26.7869 29.0653 27.2641 29.0653C27.7413 29.0653 28.1992 28.8769 28.5381 28.541C28.7071 28.3744 28.8413 28.1759 28.933 27.9571C29.0246 27.7382 29.0717 27.5033 29.0717 27.266C29.0717 27.0287 29.0246 26.7938 28.933 26.5749C28.8413 26.356 28.7071 26.1575 28.5381 25.991Z' fill='%23051776'/%3E%3Cpath d='M20.045 2.69805C24.0564 2.69956 27.9432 4.09182 31.0432 6.63765C34.1433 9.18347 36.2647 12.7254 37.0462 16.6599C37.8277 20.5945 37.2209 24.6782 35.3291 28.2156C33.4373 31.7529 30.3777 34.5249 26.6713 36.0593C22.965 37.5937 18.8413 37.7957 15.0028 36.6307C11.1643 35.4658 7.84837 33.006 5.62002 29.6705C3.39167 26.3349 2.38871 22.33 2.78202 18.3379C3.17533 14.3458 4.94057 10.6136 7.77701 7.77705C9.38439 6.16122 11.2964 4.88032 13.4022 4.0085C15.508 3.13668 17.7659 2.69126 20.045 2.69805ZM20.045 -0.00195312C16.0806 -0.00195311 12.2052 1.17362 8.90881 3.3761C5.61247 5.57858 3.04325 8.70907 1.52604 12.3717C0.00881779 16.0343 -0.388257 20.0646 0.385022 23.9529C1.1583 27.8412 3.0672 31.4129 5.87035 34.2163C8.67349 37.0197 12.245 38.929 16.1332 39.7026C20.0214 40.4763 24.0517 40.0796 27.7145 38.5628C31.3773 37.0459 34.508 34.477 36.7108 31.1809C38.9137 27.8848 40.0896 24.0095 40.09 20.045C40.0904 17.4126 39.5722 14.8058 38.565 12.3737C37.5578 9.94154 36.0813 7.73164 34.2198 5.87021C32.3584 4.00878 30.1485 2.53229 27.7164 1.52508C25.2842 0.517863 22.6775 -0.000347102 20.045 4.69685e-05V-0.00195312Z' fill='%23051776'/%3E%3C/svg%3E");
	background-color: var(--bs-white);
	transition: 0.3s ease-out;
}

.navbar-active,
.navbar-sticky {
	background-color: var(--bs-white);
	box-shadow: 0 5px 5px -5px rgba(0,0,0,0.5);
}

.navbar-brand {
	max-width: 470px;
	display: inline-block;
	margin-top: 30px;
	margin-bottom: 34px;
}

@media (min-width: 768px) {
	.navbar-brand {
		max-width: 332px;
		margin-top: 0;
		margin-bottom: 0;
	}
}

@media (min-width: 992px) and (max-resolution: 96dpi) {
	.navbar-brand {
		max-width: 382px;
	}
}

@media (min-width: 992px) and (max-width: 1199.98px) {
	.single-landing .navbar-brand {
		max-width: 330px;
	}
}

@media (min-width: 1400px) and (max-resolution: 96dpi) {
	.navbar-brand {
		max-width: 462px;
	}
}

@media (min-width: 768px) {
	.navbar-sticky .navbar-brand {
		max-width: 292px;
		transition: 0.3s ease-out;
	}
}

.top-right {
	padding-top: 16px;
	padding-bottom: 10px;
	transition: 0.3s ease-out;
}

@media (min-width: 1400px) and (max-resolution: 96dpi) {
	.top-right {
		padding-top: 20px;
		padding-bottom: 10px;
	}
}

@media (min-width: 1800px) and (max-resolution: 96dpi) {
	.top-right {
		padding-top: 27px;
		padding-bottom: 10px;
	}
}

@media (min-width: 768px) {
	.navbar-sticky .top-right {
		padding-top: 10px;
		padding-bottom: 10px;
	}
}

.text-top {
	color: var(--bs-primary);
	font-family: var(--bs-font-secondary);
	font-weight: 800;
	letter-spacing: 0.05em;
	/* transition: font-size 0.3s ease-out; */
	line-height: 1.4;
	margin-bottom: 0;
}

@media (min-width: 768px) {
	.text-top {
		font-size: 15px;
		display: inline;
	}
}

@media (min-width: 992px) {
	.text-top {
		font-size: 21px;
	}
}

@media (min-width: 1400px) {
	.text-top {
		font-size: 25px;
	}
}

@media (min-width: 1800px) {
	.text-top {
		display: block;
	}
}

@media (min-width: 992px) {
	.navbar-sticky .text-top {
		font-size: 16px;
		transition: font-size 0.3s ease-out;
	}
}

.text-top-label {
	display: block;
}

@media (min-width: 1800px) {
	.text-top-label {
		display: inline;
	}
}

.banner-home {
	min-height: calc(100vh - 231px);
	display: flex;
	align-items: stretch;
	color: var(--bs-white);
	background-color: var(--bs-gray);
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
	padding-top: 75px;
	padding-bottom: 45px;
	position: relative;
	z-index: 1;
	box-shadow: 0 3px 6px rgba(0,0,0,.16);
}

@media (min-width: 500px) {
	.banner-home {
		min-height: calc(100vh - var(--bs-body-spacer-xs));
	}
}

@media (min-width: 768px) {
	.banner-home {
		min-height: calc(100vh - var(--bs-body-spacer-md));
		padding-top: 70px;
		padding-bottom: 35px;
	}
}

@media (min-width: 992px) {
	.banner-home {
		min-height: calc(100vh - var(--bs-body-spacer-lg));
	}
}

@media (min-width: 1400px) {
	.banner-home {
		min-height: calc(100vh - var(--bs-body-spacer-xl));
		padding-top: 80px;
		padding-bottom: 45px;
	}
}

@media (min-width: 1800px) {
	.banner-home {
		min-height: calc(100vh - var(--bs-body-spacer-xxl));
		padding-top: 135px;
		padding-bottom: 50px;
	}
}

.banner-home:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.3);
	z-index: -1;
}

@media (min-width: 768px) {
	.banner-home:before {
		content: none;
	}
}

.banner-divider {
	position: relative;
}

.banner-divider::before {
	content: "";
	position: absolute;
	right: 100%;
	border-top: 1px solid var(--bs-white);
	top: 50%;
	width: 50vw;
	margin-right: 20px;
}

.text-shadow {
	text-shadow: 0 1px 2px rgba(0,0,0,.96);
}

.banner {
	height: 312px;
	display: flex;
	align-items: stretch;
	color: var(--bs-white);
	background-color: var(--bs-gray);
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
	padding-top: 100px;
	padding-bottom: 45px;
	position: relative;
	z-index: 1;
	box-shadow: 0 3px 6px rgba(0,0,0,.16);
}

@media (min-width: 768px) {
	.banner {
		height: 303px;
		padding-top: 165px;
	}
}

@media (min-width: 1400px) {
	.banner {
		height: 363px;
		padding-top: 195px;
	}
}

.display-1 {
	font-weight: 500;
	line-height: 1.12;
	font-size: 5.625rem;
	letter-spacing: 0.025em;
}

@media (min-width: 768px) {
	.display-1 {
		font-size: 4.25rem;
	}
}

@media (min-width: 1400px) and (max-resolution: 96dpi) {
	.display-1 {
		font-size: 5rem;
	}
}

@media (min-width: 1800px) and (max-resolution: 96dpi) {
	.display-1 {
		font-size: 6.875rem;
	}
}

.display-2 {
	font-weight: 500;
	line-height: 1.12;
	font-size: 3.75rem;
}

@media (min-width: 768px) {
	.display-2 {
		font-size: 2.5rem;
	}
}

@media (min-width: 1200px) and (max-resolution: 96dpi) {
	.display-2 {
		font-size: 3.5rem;
	}
}

@media (min-width: 1400px) and (max-resolution: 96dpi) {
	.display-2 {
		font-size: 4rem;
	}
}

@media (min-width: 1800px) and (max-resolution: 96dpi) {
	.display-2 {
		font-size: 5.3125rem;
	}
}

.display-3 {
	font-weight: 700;
	line-height: 1.12;
	font-size: 2.5rem;
}

@media (min-width: 500px) {
	.display-3 {
		font-size: 3.75rem;
	}
}

@media (min-width: 768px) {
	.display-3 {
		font-size: 3.5rem;
	}
}

@media (min-width: 1200px) and (max-resolution: 96dpi) {
	.display-3 {
		font-size: 4rem;
	}
}

@media (min-width: 1400px) and (max-resolution: 96dpi) {
	.display-3 {
		font-size: 4.6875rem;
	}
}

.display-4 {
	font-weight: 400;
	line-height: 1.2;
	font-size: 2.125rem;
}

@media (min-width: 500px) {
	.display-4 {
		font-size: 2.8125rem;
	}
}

@media (min-width: 768px) {
	.display-4 {
		font-size: 2.25rem;
	}
}

@media (min-width: 1200px) and (max-resolution: 96dpi) {
	.display-4 {
		font-size: 2.875rem;
	}
}

@media (min-width: 1400px) and (max-resolution: 96dpi) {
	.display-4 {
		font-size: 3.4375rem;
	}
}

.display-5 {
	font-weight: 400;
	line-height: 1.2;
	font-size: 2.25rem;
}

@media (min-width: 768px) {
	.display-5 {
		font-size: 2rem;
	}
}

@media (min-width: 1200px) and (max-resolution: 96dpi) {
	.display-5 {
		font-size: 2.25rem;
	}
}

@media (min-width: 1400px) and (max-resolution: 96dpi) {
	.display-5 {
		font-size: 2.375rem;
	}
}

@media (min-width: 1800px) and (max-resolution: 96dpi) {
	.display-5 {
		font-size: 2.8125rem;
	}
}

.btn {
	--bs-btn-padding-x: 1.5rem;
	--bs-btn-padding-y: 0.75rem;
	--bs-btn-border-radius: 9px;
	--bs-btn-border-width: 0;
	--bs-btn-color: var(--bs-white);
	--bs-btn-bg: var(--bs-primary);
	--bs-link-hover-color: var(--bs-white);
	--bs-btn-hover-color: var(--bs-white);
	--bs-btn-hover-bg: var(--bs-secondary);
	--bs-btn-active-color: var(--bs-white);
	--bs-btn-active-bg: var(--bs-secondary);
	--bs-btn-disabled-color: var(--bs-white);
	--bs-btn-disabled-bg: var(--bs-primary);
	font-family: var(--bs-font-secondary);
	font-weight: 800;
	font-size: 16px;
	letter-spacing: 0.05em;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.btn:focus {
  --bs-btn-bg: var(--bs-secondary);
}

@media (min-width: 500px) {
	.btn {
		font-size: 18px;
		--bs-btn-padding-x: 1.5rem;
		--bs-btn-padding-y: 0.75rem;
	}
}

@media (min-width: 768px) {
	.btn {
		font-size: 16px;
		--bs-btn-padding-x: 1.5rem;
		--bs-btn-padding-y: .675rem;
	}
}

@media (min-width: 1400px) {
	.btn {
		font-size: 18px;
		--bs-btn-padding-x: 2.5rem;
		--bs-btn-padding-y: 0.875rem;
	}
}

.btn:hover,
.btn:focus,
.btn:active {
	text-decoration: none;
}

.btn-mute {
	--bs-btn-color: var(--bs-primary);
	--bs-btn-bg: var(--bs-white);
	--bs-link-hover-color: var(--bs-white);
	--bs-btn-hover-color: var(--bs-white);
	--bs-btn-hover-bg: var(--bs-secondary);
	--bs-btn-active-color: var(--bs-white);
	--bs-btn-active-bg: var(--bs-secondary);
	--bs-btn-disabled-color: var(--bs-primary);
	--bs-btn-disabled-bg: var(--bs-white);
	--bs-btn-padding-x: 1rem;
}

.btn-mute.btn-xl {
	--bs-btn-padding-x: 2rem;
}

@media (min-width: 922px) {
	.btn-xxl {
		--bs-btn-padding-x: 3.5rem;
	}
}

@media (min-width: 1400px) {
	.btn-xxl {
		--bs-btn-padding-x: 4.5rem;
	}
}

.text-inherit {
	color: inherit;
}

a.text-inherit:hover,
a.text-inherit:focus {
	color: var(--bs-blue-100);
}

.intro {
	padding-top: 65px;
	padding-bottom: 75px;
}

@media (min-width: 768px) {
	.intro {
		padding-top: 25px;
		padding-bottom: 75px;
	}
}

@media (min-width: 1400px) {
	.intro {
		padding-top: 30px;
		padding-bottom: 80px;
	}
}

@media (min-width: 1800px) {
	.intro {
		padding-top: 53px;
		padding-bottom: 105px;
	}
}

@media (min-width: 768px) {
	.intro-col-wide {
		width: 52%;
	}
	
	.intro-col-small {
		width: 43%;
	}
}

.intro-text-col {
	padding-top: 0.5rem;
}

@media (min-width: 1800px) {
	.intro-text-col {
		padding-top: 1.5rem;
	}
}

@media (min-width: 768px) {
	.intro-heading {
		margin-bottom: 0.5rem;
	}
}

@media (min-width: 1800px) {
	.intro-heading {
		margin-bottom: 1.5rem;
	}
}

.info-wrapper {
	color: var(--bs-white);
	background-color: var(--bs-white);
	padding-top: 42px;
	padding-bottom: 10px;
	position: relative;
	z-index: 1;
}

.info-wrapper::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
	z-index: -1;
	opacity: 0.69;
}

.info-wrapper::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.58);
	z-index: -1;
}

.heading-secondary span,
.heading-secondary .span {
	display: block;
	margin-left: 16.66666667%;
	position: relative;
}

.heading-secondary span::before,
.heading-secondary .span::before {
	content: "";
	position: absolute;
	right: 100%;
	border-top: 1px solid var(--bs-white);
	top: 50%;
	width: 50vw;
	margin-right: 20px;
}

.info-content {
	font-family: var(--bs-font-secondary);
	font-weight: 800;
	letter-spacing: 0.05em;
	padding-top: 30px;
	padding-bottom: 80px;
}

@media (min-width: 768px) {
	.info-content {
		width: 86.33333333%;
		padding-top: 50px;
		padding-bottom: 80px;
	}
}

@media (min-width: 1400px) {
	.info-content {
		font-size: 19px;
		padding-top: 50px;
		padding-bottom: 80px;
	}
}

@media (min-width: 1800px) {
	.info-content {
		font-size: 22px;
		padding-top: 70px;
		padding-bottom: 125px;
	}
}

.info-content ol {
	list-style: none;
	counter-reset: step;
	padding: 0;
}

@media (min-width: 992px) {
	.info-content ol {
		display: grid;
		grid-template-columns: 1fr 1fr; 
		grid-auto-flow: column;
		grid-template-rows: repeat(var(--grid-rows), auto);
		gap: 45px 50px;
	}
}

@media (min-width: 1200px) {
	.info-content ol {
		gap: 50px 80px;
	}
}

@media (min-width: 1400px) {
	.info-content ol {
		gap: 50px 80px;
	}
}

@media (min-width: 1800px) {
	.info-content ol {
		gap: 55px 120px;
	}
}

.info-content ol li {
	position: relative;
    counter-increment: step;
	margin-bottom: 1.5rem;
	padding-left: 55px;
}

@media (min-width: 992px) {
	.info-content ol li {
		margin-bottom: 0;
		padding-left: 65px;
	}
}

@media (min-width: 1200px) {
	.info-content ol li {
		padding-left: 70px;
	}
}

@media (min-width: 1400px) {
	.info-content ol li {
		padding-left: 80px;
	}
}

@media (min-width: 1800px) {
	.info-content ol li {
		padding-left: 85px;
	}
}

.info-content ol li::before {
	content: counter(step);
	position: absolute;
	top: 0;
	left: 0;
	min-width: 35px;
	height: 35px;
	border: 2px solid var(--bs-white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	flex-shrink: 0;
	font-weight: 400;
	font-family: var(--bs-font-sans-serif);
	margin-top: 5px;
}

@media (min-width: 992px) {
	.info-content ol li::before {
		font-size: 26px;
		min-width: 45px;
		height: 45px;
	}
}

@media (min-width: 1200px) {
	.info-content ol li::before {
		font-size: 30px;
		min-width: 50px;
		height: 50px;
	}
}

@media (min-width: 1400px) {
	.info-content ol li::before {
		font-size: 32px;
		min-width: 60px;
		height: 60px;
		border-width: 3px;
	}
}

@media (min-width: 1800px) {
	.info-content ol li::before {
		font-size: 35px;
		min-width: 65px;
		height: 65px;
	}
}

@media (min-width: 1200px) {
	.gx-info {
		--bs-gutter-x: 4rem;
	}
}

@media (min-width: 1400px) {
	.gx-info {
		--bs-gutter-x: 5rem;
	}
}

@media (min-width: 1800px) {
	.gx-info {
		--bs-gutter-x: 7rem;
	}
}

.btn-large {
	--bs-btn-padding-x: 2rem;
}

@media (min-width: 1200px) {
	.btn-large {
		--bs-btn-padding-x: 2.5rem;
	}
}

@media (min-width: 1400px) {
	.btn-large {
		--bs-btn-padding-x: 3.5rem;
	}
}

@media (min-width: 1800px) {
	.btn-large {
		--bs-btn-padding-x: 7.75rem;
	}
}

.info-box {
	color: var(--bs-white);
	background-color: var(--bs-primary);
	border: 1px solid var(--bs-white);
	padding: 30px 16px 45px;
	max-width: 607px;
}

@media (min-width: 768px) {
	.info-box {
		padding: 30px 25px;
	}
}

.help-wrapper {
	padding-top: 50px;
	padding-bottom: 60px;
}

@media (min-width: 768px) {
	.help-wrapper {
		padding-top: 75px;
		padding-bottom: 60px;
	}
}

@media (min-width: 1400px) {
	.help-wrapper {
		padding-top: 90px;
		padding-bottom: 60px;
	}
}

@media (min-width: 1800px) {
	.help-wrapper {
		padding-top: 60px;
		padding-bottom: 30px;
	}
}

@media (min-width: 1200px) {
	.gx-help {
		--bs-gutter-x: 2.5rem;
	}
}

@media (min-width: 1400px) {
	.gx-help {
		--bs-gutter-x: 3rem;
	}
}

@media (min-width: 1800px) {
	.col-2xl-8 {
		width: 66.66666667%;
	}
	
	.col-2xl-9 {
		width: 75%;
	}
	
	.col-2xl-10 {
		width: 83.33333333%;
	}
}

@media (min-width: 768px) {
	.col-md-8-extend {
		width: 69%;
	}
}

.help-box {
	position: relative;
	max-width: 404px;
	margin: 0 auto 70px;
}

.item-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 20px 15px;
	z-index: 2;
	text-align: center;
	color: var(--bs-white);
	display: flex;
	flex-direction: column;
    align-items: center;
    justify-content: center;
	background-color: rgba(0,0,0,.45);
	transition: background-color 0.6s ease;
}

@media (min-width: 1400px) {
	.item-overlay {
		padding: 30px 20px;
	}
}

.help-box:hover .item-overlay {
	background-color: rgba(0,0,0,.8);
}

.overlay-body {
	font-size: 16px;
	max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all .75s ease 0s;
}

@media (min-width: 500px) {
	.overlay-body {
		font-size: 18px;
	}
}

@media (min-width: 768px) {
	.overlay-body {
		font-size: 14px;
	}
}

@media (min-width: 1200px) {
	.overlay-body {
		font-size: 16px;
	}
}

@media (min-width: 1400px) {
	.overlay-body {
		font-size: 18px;
	}
}

.help-box:hover .overlay-body {
	max-height: 355px;
	opacity: 1;
}

.consult-wrapper {
	color: var(--bs-white);
	background-color: var(--bs-gray);
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
	padding-top: 50px;
	padding-bottom: 50px;
	position: relative;
	z-index: 1;
}

@media (min-width: 768px) {
	.consult-wrapper {
		padding-top: 60px;
		padding-bottom: 20px;
	}
}

@media (min-width: 1400px) {
	.consult-wrapper {
		padding-top: 70px;
		padding-bottom: 35px;
	}
}

@media (min-width: 1800px) {
	.consult-wrapper {
		padding-bottom: 20px;
	}
}

.consult-wrapper::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.5);
	z-index: -1;
}

@media (min-width: 1800px) {
	.consult-wrapper .text-big {
		font-size: 22px;
	}
}

.consult-content {
	font-family: var(--bs-font-secondary);
	font-weight: 800;
	letter-spacing: 0.05em;
	padding-bottom: 50px;
}

@media (min-width: 1400px) {
	.consult-content {
		font-size: 19px;
	}
}

@media (min-width: 1800px) {
	.consult-content {
		font-size: 22px;
		padding-bottom: 80px;
	}
}

.consult-content ul {
	list-style: none;
	padding: 0;
}

@media (min-width: 992px) {
	.consult-content ul {
		display: grid;
		grid-template-columns: 1fr 1fr; 
		grid-auto-flow: column;
		grid-template-rows: repeat(var(--grid-rows), auto);
		gap: 25px 50px;
	}
}

@media (min-width: 1200px) {
	.consult-content ul {
		gap: 25px 160px;
	}
}

@media (min-width: 1400px) {
	.consult-content ul {
		gap: 25px 50px;
	}
}

@media (min-width: 1800px) {
	.consult-content ul {
		gap: 25px 80px;
	}
}

.consult-content ul li {
	position: relative;
	margin-bottom: 1.5rem;
	padding-left: 38px;
}

@media (min-width: 992px) {
	.consult-content ul li {
		margin-bottom: 0;
	}
}

.consult-content ul li::before {
	content: "";
	display: inline-block;
	position: absolute;
	width: 18px;
	height: 14px;
	background-image: url("data:image/svg+xml,%3Csvg width='18' height='14' viewBox='0 0 18 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.72 10.827L1.453 6.559L0 8.002L5.72 13.722L18 1.443L16.557 0L5.72 10.827Z' fill='%23fff'/%3E%3C/svg%3E%0A");
	left: 0;
	top: 10px;
}

.testimonial-wrapper {
	color: var(--bs-white);
	background-color: var(--bs-gray);
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
	padding-top: 50px;
	padding-bottom: 50px;
	position: relative;
	z-index: 1;
}

@media (min-width: 768px) {
	.testimonial-wrapper {
		padding-top: 60px;
		padding-bottom: 40px;
	}
}

@media (min-width: 1400px) and (max-resolution: 96dpi) {
	.testimonial-wrapper {
		padding-top: 70px;
		padding-bottom: 70px;
	}
}

.testimonial-wrapper::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.52);
	z-index: -1;
}

.testimonial-holder {
	padding: 45px 0 15px;
}

@media (min-width: 768px) {
	.testimonial-holder {
		padding: 40px 20px 35px;
	}
}

@media (min-width: 992px) and (max-resolution: 96dpi) {
	.testimonial-holder {
		padding: 75px 30px 35px;
	}
}

@media (min-width: 1400px) and (max-resolution: 96dpi) {
	.testimonial-holder {
		padding: 100px 35px 35px;
	}
}

@media (min-width: 1800px) and (max-resolution: 96dpi) {
	.testimonial-holder {
		padding: 120px 35px 35px;
	}
}

.blockquote {
	font-size: 22px;
	line-height: 1.4;
	position: relative;
	text-align: center;
	padding: 25px 30px 20px;
}

@media (min-width: 500px) {
	.blockquote {
		font-size: 28px;
		padding: 25px 50px 20px;
	}
}

@media (min-width: 768px) {
	.blockquote {
		font-size: 25px;
		padding: 25px 50px 20px;
	}
}

@media (min-width: 992px) and (max-resolution: 96dpi) {
	.blockquote {
		font-size: 25px;
		padding: 25px 75px 20px;
	}
}

@media (min-width: 1400px) and (max-resolution: 96dpi) {
	.blockquote {
		font-size: 30px;
		padding: 25px 70px 20px;
	}
}

@media (min-width: 1800px) and (max-resolution: 96dpi) {
	.blockquote {
		padding: 25px 60px 60px;
	}
}

.blockquote::before,
.blockquote::after {
	content: "";
	display: inline-block;
	position: absolute;
	font-size: 90px;
}

.blockquote::before {
	top: 0;
	left: 2px;
	content: open-quote;
}

.blockquote::after {
	bottom: 0;
	right: 2px;
    content: close-quote;
}

.blockquote-footer {
	padding: 25px 60px 1px;
}

@media (min-width: 768px) {
	.blockquote-footer {
		padding: 25px 60px 15px;
	}
}

.blockquote-footer::before {
	color: var(--bs-white);
}

.blockquote-footer cite {
	color: var(--bs-white);
	font-size: 20px;
}

@media (min-width: 500px) {
	.blockquote-footer cite {
		font-size: 25px;
	}
}

@media (min-width: 768px) {
	.blockquote-footer cite {
		font-size: 26px;
	}
}

@media (min-width: 1400px) {
	.blockquote-footer cite {
		font-size: 30px;
	}
}

.testimonial-carousel .slick-dots li button {
	background-color: var(--bs-white);
}

.testimonial-carousel .slick-dots .slick-active button {
	background-color: var(--bs-blue-100);
}

.js-slide {
	height: 0;
	visibility: hidden;
	overflow: hidden;
}

.js-slide:first-child {
	height: auto;
	visibility: visible;
	overflow: visible;
}

.js-carousel.slick-initialized .js-slide {
	visibility: visible;
	height: auto;
	overflow: visible;
}

.carousel-flex .slick-track {
	display: -ms-flexbox;
	display: flex;
}

.slick-arrow {
	position: absolute;
	top: 50%;
	font-size: 0;
	min-width: 20px;
	margin-top: -16px;
	display: inline-block;
	z-index: 10;
	padding: 0;
	cursor: pointer;
	color: transparent;
	border: 0;
	background-color: transparent;
}

.slick-prev {
	left: 0;
}

.slick-next {
	right: 0;
}

.slick-arrow::before {
	font-family: "icomoon";
	font-style: normal;
	font-weight: normal;
	font-size: 34px;
	color: rgba(var(--bs-gray-rgb), 0.57);
}

@media (min-width: 768px) {
	.slick-arrow::before {
		font-size: 24px;
	}
}

@media (min-width: 1400px) {
	.slick-arrow::before {
		font-size: 26px;
	}
}

@media (min-width: 1800px) {
	.slick-arrow::before {
		font-size: 34px;
	}
}

.slick-prev::before {
	content: "\e902";
}

.slick-next::before {
	content: "\e903";
}

.slick-arrow:hover::before,
.slick-arrow:focus::before {
	color: var(--bs-secondary);
}

.slick-dots {
	text-align: center;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0 5px;
    cursor: pointer;
}

@media (min-width: 1800px) {
	.slick-dots li {
		padding-left: 7px;
		padding-right: 7px;
	}
}

.slick-dots > li:only-child {
	display: none;
}

.slick-dots li button {
	font-size: 0;
	line-height: 0;
	display: block;
	width: 10px;
	height: 10px;
	padding: 0;
	cursor: pointer;
	color: transparent;
	outline: none;
	border: 0;
	background-color: var(--bs-primary);
	border-radius: 50%;
}

.slick-dots .slick-active button {
    outline: none;
	background-color: var(--bs-secondary);
}

.contact-wrapper {
	padding-top: 60px;
	padding-bottom: 60px;
}

@media (min-width: 768px) {
	.contact-wrapper {
		padding-top: 88px;
	}
}

@media (min-width: 1400px) {
	.contact-wrapper {
		padding-top: 110px;
	}
}

@media (min-width: 768px) {
	.contact-col-lg {
		width: 47%;
	}
	
	.contact-col-md {
		width: 44%;
	}
	
	.footer .menu-col {
		width: 44.66666667%;
	}
}

.text-leading {
	font-size: 24px;
}

@media (min-width: 768px) {
	.text-leading {
		font-size: 20px;
	}
}

@media (min-width: 1400px) {
	.text-leading {
		font-size: 24px;
	}
}

.cta-text {
	font-size: 24px;
	color: var(--bs-black);
	position: relative;
	padding-bottom: 115px;
	margin-bottom: 40px;
}

@media (min-width: 768px) {
	.cta-text {
		font-size: 20px;
		max-width: 75%;
		padding-bottom: 0;
		margin-bottom: 24px;
	}
}

@media (min-width: 1400px) {
	.cta-text {
		max-width: 78%;
		font-size: 24px;
		margin-bottom: 30px;
	}
}

@media (min-width: 1800px) {
	.cta-text {
		max-width: 72%;
	}
}

.cta-text::after {
	content: "";
	position: absolute;
	width: 178px;
	height: 108px;
	background-image: url(images/arrow.png);
	background-repeat: no-repeat;
	background-size: 100%;
	right: 10%;
	bottom: 0;
	transform: rotate(55deg);
}

@media (min-width: 768px) {
	.cta-text::after {
		width: 110px;
		height: 67px;
		left: 100%;
		right: auto;
		margin-left: 20px;
		margin-bottom: 5px;
		transform: none;
	}
}

@media (min-width: 1200px) {
	.cta-text::after {
		width: 178px;
		height: 108px;
	}
}

.item-media {
	display: inline-block;
	font-size: 20px;
	font-weight: 800;
	font-family: var(--bs-font-secondary);
	text-transform: uppercase;
	text-align: center;
	--bs-link-hover-color: var(--bs-blue-100);
	transition: transform .3s ease-out;
	margin-bottom: 40px;
}

@media (min-width: 768px) {
	.item-media {
		font-size: 18px;
		margin-bottom: 15px;
	}
}

@media (min-width: 1400px) {
	.item-media {
		font-size: 20px;
	}
}

.item-media:hover,
.item-media:focus {
	transform: scale(1.1);
}

.item-media span {
	display: block;
	padding-top: 27px;
}

.contact-block {
	color: var(--bs-white);
	background-color: var(--bs-primary);
	padding: 30px 20px;
}

@media (min-width: 500px) {
	.contact-block {
		padding: 40px;
	}
}

@media (min-width: 1400px) {
	.contact-block {
		padding: 50px 40px;
	}
}

@media (min-width: 1800px) {
	.contact-block {
		padding: 50px;
	}
}

.contact-block-alt {
	position: relative;
	z-index: 1;
}

@media (min-width: 1200px) {
	.contact-block-alt {
		padding-left: 60px;
		padding-right: 60px;
	}
}

@media (min-width: 1400px) {
	.contact-block-alt {
		padding-left: 70px;
		padding-right: 70px;
	}
}

@media (min-width: 1200px) {
	.contact-block-home {
		padding-left: 70px;
		padding-right: 70px;
	}
}

@media (min-width: 1400px) {
	.contact-block-home {
		padding-left: 100px;
		padding-right: 100px;
	}
}

@media (min-width: 1800px) {
	.contact-block-home {
		padding-left: 130px;
		padding-right: 130px;
	}
}

.contact-block-alt::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 12px 15px;
	border: 1px solid var(--bs-white);
	z-index: -1;
}

@media (min-width: 1400px) and (max-resolution: 96dpi) {
	.contact-block-home .gform_wrapper {
		padding-top: 1.5rem;
	}
}

.text-lg {
	font-size: 28px;
}

@media (min-width: 768px) {
	.text-lg {
		font-size: 24px;
	}
}

@media (min-width: 1400px) {
	.text-lg {
		font-size: 28px;
	}
}

.gform_heading {
	padding-bottom: 1px;
}

@media (min-width: 768px) {
	.gform_heading {
		padding-bottom: 10px;
	}
}

@media (min-width: 1400px) {
	.gform_heading {
		padding-bottom: 20px;
	}
}

.contact-block-secondary .gform_heading {
	padding-bottom: 1px;
}

@media (min-width: 1400px) {
	.contact-block-secondary .gform_heading {
		padding-bottom: 15px;
	}
}

.gform_title {
	font-size: 28px;
	font-weight: normal;
	text-align: center;
}

@media (min-width: 768px) {
	.gform_title {
		font-size: 24px;
	}
}

@media (min-width: 1400px) {
	.gform_title {
		font-size: 28px;
	}
}

.gform_wrapper.gravity-theme .gform_body .gform_fields {
	grid-row-gap: 25px;
}

@media (min-width: 768px) {
	.gform_wrapper.gravity-theme .gform_body .gform_fields {
		grid-column-gap: 20px;
	}
}

@media (min-width: 1200px) {
	.gform_wrapper.gravity-theme .gform_body .gform_fields {
		grid-column-gap: 24px;
	}
}

@media (min-width: 1400px) {
	.gform_wrapper.gravity-theme .gform_body .gform_fields {
		grid-row-gap: 26px;
	}
}

@media (min-width: 768px) {
	.contact-block-alt .gform_wrapper.gravity-theme .gform_body .gform_fields {
		grid-column-gap: 30px;
	}
}

/*@media (min-width: 1200px) {
	.contact-block-alt .gform_wrapper.gravity-theme .gform_body .gform_fields {
		grid-column-gap: 60px;
	}
}*/

.contact-block-home .gform_wrapper.gravity-theme .gform_body .gform_fields {
	grid-row-gap: 25px;
}

@media (min-width: 768px) {
	.contact-block-home .gform_wrapper.gravity-theme .gform_body .gform_fields {
		grid-column-gap: 16px;
	}
}

@media (min-width: 1400px) {
	.contact-block-home .gform_wrapper.gravity-theme .gform_body .gform_fields {
		grid-row-gap: 19px;
	}
}

.contact-block-home .gform_wrapper.gravity-theme .ginput_container_date input {
	width: 100%;
}

.gform_wrapper.gravity-theme input[type=email], 
.gform_wrapper.gravity-theme input[type=number], 
.gform_wrapper.gravity-theme input[type=password], 
.gform_wrapper.gravity-theme input[type=search], 
.gform_wrapper.gravity-theme input[type=file], 
.gform_wrapper.gravity-theme input[type=tel], 
.gform_wrapper.gravity-theme input[type=text], 
.gform_wrapper.gravity-theme select, 
.gform_wrapper.gravity-theme textarea {
	color: var(--bs-white);
	font-family: var(--bs-font-secondary);
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 0.025em;
	background-color: transparent;
	border: 0;
	border-bottom: 2px solid var(--bs-white);
	border-radius: 0;
	padding: 10px 0;
}

.gform_wrapper.gravity-theme textarea {
	resize: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active {
    -webkit-background-clip: text;
	-webkit-text-fill-color: var(--bs-white) !important;
}

.gfield input::-webkit-input-placeholder,
.gfield textarea::-webkit-input-placeholder {
	color: var(--bs-white);
	text-transform: uppercase;
}

.gfield input::-moz-placeholder,
.gfield textarea::-moz-placeholder {
	color: var(--bs-white);
	text-transform: uppercase;
}

.gfield input:-ms-input-placeholder,
.gfield textarea:-ms-input-placeholder {
	color: var(--bs-white);
	text-transform: uppercase;
}

.gfield input::-ms-input-placeholder,
.gfield textarea::-ms-input-placeholder {
	color: var(--bs-white);
	text-transform: uppercase;
}

.gfield input::placeholder,
.gfield textarea::placeholder {
	color: var(--bs-white);
	text-transform: uppercase;
}

.gfield input:focus,
.gfield textarea:focus {
	box-shadow: 0 0 0 1px var(--bs-white);
}

.gfield--type-html {
	font-size: 16px;
	font-style: italic;
	padding-bottom: 15px;
}
.gform_required_legend {
	display:none;
}

@media (min-width: 768px) {
	.gfield--type-html {
		font-size: 14px;
		padding-left: 20px;
		padding-right: 20px;
	}
}

@media (min-width: 1400px) {
	.gfield--type-html {
		padding-left: 40px;
		padding-right: 20px;
	}
}

.gfield_consent_label {
	font-size: 16px;
	font-style: italic;
	padding-bottom: 15px;
}

@media (min-width: 768px) {
	.gfield_consent_label {
		font-size: 14px;
	}
}

@media (min-width: 1400px) {
	.gfield_consent_label {
		font-size: 16px;
	}
}

.ginput_container_consent {
	padding-left: 40px;
}

@media (min-width: 768px) {
	.ginput_container_consent {
		margin-top: -7px;
	}
}

@media (min-width: 1400px) {
	.ginput_container_consent {
		margin-top: -10px;
	}
}

.contact-block input[type=checkbox] {
	width: 20px;
	height: 20px;
	margin-top: 0.15em;
	vertical-align: top;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: var(--bs-form-check-bg);
	background-image: var(--bs-form-check-bg-image);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	border: 2px solid var(--bs-white);
	-webkit-print-color-adjust: exact;
	color-adjust: exact;
	print-color-adjust: exact;
	float: left;
	margin-left: -40px;
}

.contact-block input[type=checkbox]:focus {
	border-color: var(--bs-secondary);
	outline: 0;
	box-shadow: 0 0 0 0.25rem rgba(var(--bs-secondary-rgb), 0.25);
}

.contact-block input[type=checkbox]:checked {
	background-color: var(--bs-secondary);
	border-color: var(--bs-secondary);
}

.contact-block input[type=checkbox]:checked[type=checkbox] {
	--bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

.contact-block input[type=checkbox]:indeterminate {
	background-color: var(--bs-secondary);
	border-color: var(--bs-secondary);
	--bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}

.gform_footer {
	justify-content: center;
}

.gform_button {
	font-size: 17px;
	font-weight: bold;
	letter-spacing: 0;
	text-transform: uppercase;
	--bs-btn-border-radius: 0;
	--bs-btn-color: var(--bs-primary);
	--bs-btn-bg: var(--bs-white);
	--bs-link-hover-color: var(--bs-white);
	--bs-btn-hover-color: var(--bs-white);
	--bs-btn-hover-bg: var(--bs-secondary);
	--bs-btn-active-color: var(--bs-white);
	--bs-btn-active-bg: var(--bs-secondary);
	--bs-btn-disabled-color: var(--bs-primary);
	--bs-btn-disabled-bg: var(--bs-white);
	--bs-btn-padding-y: 0.75rem;
	--bs-btn-padding-x: 5rem;	
}

.contact-block-home .gform_wrapper.gravity-theme .gform_fileupload_rules {
	display: none;
}

@media (min-width: 992px) {
	.gf-custom-row {
		--bs-gutter-x: 5rem;
	}
}

@media (min-width: 1200px) {
	.gf-custom-row {
		--bs-gutter-x: 7rem;
	}
}

@media (min-width: 1400px) {
	.gf-custom-row {
		--bs-gutter-x: 10rem;
	}
}

.gf-custom-row .gfield {
	margin-bottom: 20px;
}

@media (min-width: 1800px) {
	.gf-custom-row .gfield {
		margin-bottom: 29px;
	}
}

.gform_wrapper.gravity-theme input[type=file] {
	padding: 0 0 8px;
}

.contact-block-home .gform_wrapper.gravity-theme .gf-custom-row .gfield textarea {
	height: 101px;
}

@media (min-width: 1800px) and (max-resolution: 96dpi) {
	.contact-block-home .gform_wrapper.gravity-theme .gf-custom-row .gfield textarea {
		height: 110px;
	}
}

.contact-block-home .gfield--type-html {
	font-style: normal;
	padding: 0;
	margin: 0;
}

.contact-block-home .gfield--type-html,
.contact-block-home .gform_wrapper.gravity-theme .gfield--type-consent {
	line-height: 1.3;
}

@media (min-width: 576px) {
	.contact-block-home .gfield--type-html,
	.contact-block-home .gform_wrapper.gravity-theme .gfield--type-consent {
		max-width: 87.5%;
		margin-left: auto;
		margin-right: auto;
	}
}

.contact-block-home .gfield--type-html,
.contact-block-home .gfield_consent_label {
	font-size: .875rem;
}

@media (min-width: 1800px) {
	.contact-block-home .gfield--type-html,
	.contact-block-home .gfield_consent_label {
		font-size: 1rem;
	}
}

.contact-block-home .gfield--type-html h5 {
	margin-bottom: 1.25rem;
}

@media (min-width: 1400px) and (max-resolution: 96dpi) {
	.contact-block-home .gform_wrapper.gravity-theme .gform_footer {
		padding-top: 43px;
		padding-bottom: 40px;
	}
}

@media (min-width: 768px) {
	.col-thumbnail {
		padding-left: 5.33333333%;
		text-align: right;
	}
}

.entry-content {
	word-wrap: break-word;
}

.entry-content ul {
	margin-left: 36px;
	margin-bottom: 24px;
}

.entry-content ul li {
	margin-bottom: 8px;
}

@media (min-width: 768px) {
	.entry-content ul {
		margin-left: 26px;
		margin-bottom: 16px;
	}
}

@media (min-width: 1400px) {
	.entry-content ul {
		margin-left: 30px;
		margin-bottom: 18px;
	}
}

@media (min-width: 1800px) {
	.entry-content ul {
		margin-left: 36px;
		margin-bottom: 24px;
	}
}

.py-primary {
	padding-top: 50px;
	padding-bottom: 80px;
}

@media (min-width: 768px) {
	.py-primary {
		padding-top: 50px;
		padding-bottom: 95px;
	}
}

@media (min-width: 1400px) {
	.py-primary {
		padding-top: 50px;
	}
}

@media (min-width: 1800px) {
	.py-primary {
		padding-top: 95px;
	}
}

.py-secondary {
	padding-top: 65px;
	padding-bottom: 75px;
}

@media (min-width: 768px) {
	.py-secondary {
		padding-top: 25px;
		padding-bottom: 75px;
	}
}

@media (min-width: 1400px) {
	.py-secondary {
		padding-top: 30px;
		padding-bottom: 80px;
	}
}

@media (min-width: 1800px) {
	.py-secondary {
		padding-top: 70px;
		padding-bottom: 105px;
	}
}

.object-cover {
	width: 100%;
	height: 100%;
	display: block;
	-o-object-fit: cover;
	object-fit: cover;
}

.review-block {
	padding: 20px;
	color: var(--bs-black);
	font-size: 20px;
}

@media (min-width: 768px) {
	.review-block {
		font-size: 16px;
		padding: 20px 50px;
		min-height: 100vh;
	}
}

@media (min-width: 1400px) {
	.review-block {
		font-size: 20px;
		padding: 24px 10px;
	}
}

@media (min-width: 1800px) {
	.review-block {
		padding: 32px 50px;
	}
}

.review-header {
	padding: 15px 0;
	margin-bottom: 10px;
}

@media (min-width: 1800px) {
	.review-header {
		margin-bottom: 33px;
	}
}

.review-brand {
	display: inline-block;
	max-width: 492px;
}

@media (min-width: 1800px) {
	.review-brand {
		max-width: 645px;
	}
}

.review-content {
	padding-top: 20px;
	padding-bottom: 40px;
}

@media (min-width: 768px) {
	.review-content {
		padding-top: 0;
		padding-bottom: 20px;
	}
}

@media (min-width: 1800px) {
	.review-content {
		padding-top: 15px;
	}
}

.review-title {
	color: var(--bs-primary);
	font-size: 28px;
	font-family: var(--bs-font-sans-serif);
	font-weight: 700;
	letter-spacing: 0;
	margin-bottom: 10px;
}

@media (min-width: 768px) {
	.review-title {
		font-size: 20px;
	}
}

@media (min-width: 1400px) {
	.review-title {
		font-size: 28px;
	}
}

.social-buttons {
	max-width: 550px;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 20px;
	line-height: 1.1;
}

@media (min-width: 768px) {
	.social-buttons {
		max-width: 450px;
	}
}

@media (min-width: 1400px) {
	.social-buttons {
		max-width: 550px;
	}
}

.social-buttons .btn {
	--bs-btn-border-radius: 0;
	display: block;
	position: relative;
	text-transform: uppercase;
	font-weight: 600;
	font-family: var(--bs-font-sans-serif);
	letter-spacing: 0;
	padding-left: 1.5rem;
	padding-right: 4.5rem;
}

@media (min-width: 992px) {
	.social-buttons .btn {
		padding-left: 4.5rem;
		padding-right: 4.5rem;
	}
}

.social-buttons .btn + .btn {
	margin-top: 25px;
}

.social-buttons .btn .icon {
	font-size: 155%;
	position: absolute;
	right: 34px;
	top: 50%;
	bottom: 0;
	transform: translateY(-50%);
}

.social-media a {
	text-decoration: none;
	--bs-link-hover-color: var(--bs-blue-100);
}

.heading-border {
	position: relative;
	padding-bottom: 1px;
	margin-bottom: 25px;
}

.heading-border::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 85%;
	border-bottom: 1px solid var(--bs-white);
	transform: translateX(-50%);
}

.single-landing {
	padding-top: 0;
}

.left-column {
	padding-top: var(--bs-body-spacer);
}

@media (min-width: 500px) {
	.left-column {
		padding-top: var(--bs-body-spacer-xs);
	}
}

@media (min-width: 768px) {
	.left-column {
		padding-top: var(--bs-body-spacer-md);
	}
}

@media (min-width: 992px) and (max-resolution: 96dpi) {
	.left-column {
		padding-top: var(--bs-body-spacer-lg);
	}
}

@media (min-width: 1400px) and (max-resolution: 96dpi) {
	.left-column {
		padding-top: var(--bs-body-spacer-xl);
	}
}

@media (min-width: 1800px) and (max-resolution: 96dpi) {
	.left-column {
		padding-top: var(--bs-body-spacer-xxl);
	}
}

@media (min-width: 992px) {
	.single-landing .navbar, 
	.left-column {
		width: 62.33333333%;
	}
	
	.right-column {
		width: 37.66666667%;
		border-left: 2px solid var(--bs-white);
	}
}

.left-column .banner-home {
	padding-top: 105px;
}

@media (min-width: 768px) {
	.left-column .banner-home {
		padding-top: 70px;
	}
}

@media (min-width: 1400px) {
.single-landing .navbar, 
	.left-column {
		width: 69.66666667%;
	}
	.right-column {
		width: 29.66666667%;
	}

	.left-column .banner-home {
		padding-top: 80px;
	}
}

@media (min-width: 1800px) {
	.left-column .banner-home {
		padding-top: 95px;
	}
}

.left-column .display-3 {
	font-weight: 700;
	line-height: 1.12;
	font-size: 2.75rem;
}

@media (min-width: 500px) {
	.left-column .display-3 {
		font-size: 3.75rem;
	}
}

@media (min-width: 768px) {
	.left-column .display-3 {
		font-size: 2.5rem;
	}
}

@media (min-width: 1200px) {
	.left-column .display-3 {
		font-size: 3.125rem;
	}
}

@media (min-width: 1400px) {
	.left-column .display-3 {
		font-size: 3.5rem;
	}
}

@media (min-width: 1800px) {
	.left-column .display-3 {
		font-size: 4.0625rem;
	}
}

.footer {
	--bs-border-opacity: 0.24;
	border-top: 1px solid rgba(var(--bs-primary-rgb), var(--bs-border-opacity));
	color: var(--bs-primary);
	margin-top: auto;
	padding-top: 35px;
	padding-bottom: 35px;
	font-size: 16px;
	text-align: center;
}

@media (min-width: 768px) {
	.footer {
		text-align: left;
		padding-top: 40px;
		padding-bottom: 40px;
		font-size: 15px;
	}
}

@media (min-width: 1200px) {
	.footer {
		font-size: 16px;
	}
}

@media (min-width: 1400px) {
	.footer {
		padding-top: 55px;
		padding-bottom: 55px;
	}
}

.footer-top {
	padding-bottom: 10px;
}

@media (min-width: 768px) {
	.footer-top {
		padding-bottom: 33px;
	}
}

@media (min-width: 1400px) {
	.footer-top {
		padding-bottom: 40px;
	}
}

.single-landing .footer-top {
	padding-bottom: 20px;
}

.footer-brand {
	margin-bottom: 20px;
	display: inline-block;
}

@media (min-width: 768px) {
	.footer-brand {
		max-width: 500px;
	}
}

@media (min-width: 1400px) {
	.footer-brand {
		max-width: 606px;
	}
}

.adr {
	font-family: var(--bs-font-heading);
	font-size: 16px;
	padding-top: 10px;
	margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
	.adr {
		font-size: 18px;
	}
}

@media (min-width: 1400px) and (max-resolution: 96dpi) {
	.adr {
		font-size: 22px;
	}
}

.v-line {
	display: block;
	font-size: 0;
	line-height: 0;
	color: transparent;
}

@media (min-width: 768px) {
	.v-line {
		display: inline;
		font-size: inherit;
		line-height: inherit;
		color: inherit;
		padding-left: 5px;
		padding-right: 5px;
	}
}

.footer-title {
	font-size: 20px;
	font-family: var(--bs-font-secondary);
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin-bottom: 6px;
}

.menu-col {
	padding-bottom: 36px;
}

.footer .menu {
	padding-left: 0;
	list-style: none;
}

@media (min-width: 992px) {
	/* .menu-col {
		width: 28%;
		padding-bottom: 0;
	}
	
	.menu-col:last-child {
		width: 16%;
	} */
	
	.footer .menu {
		max-width: 260px;
	}
}

.footer .menu li {
	margin-bottom: 10px;
}

.footer a {
	text-decoration: none;
	color: var(--bs-primary);
}

.footer a:hover,
.footer a:focus {
	text-decoration: underline;
	color: var(--bs-blue-100);
}

.social-icons {
	list-style: none;
	padding-left: 0;
	margin-bottom: 2rem;
}

@media (min-width: 768px) {
	.social-icons {
		margin-bottom: 0.5rem;
	}
}

.social-icons li {
	display: inline-block;
	margin: 0 0.5rem;
}

.social-icons a {
	color: var(--bs-primary);
	font-size: 1.5rem;
}

@media (min-width: 768px) {
	.social-icons a {
		font-size: 1.125rem;
	}
}

@media (min-width: 1400px) {
	.social-icons a {
		font-size: 1.5rem;
	}
}

.social-icons a:hover,
.social-icons a:focus {
	text-decoration: none;
}

.footer-bottom {
	font-size: 12px;
	padding-bottom: 1.5rem;
}

@media (min-width: 1400px) {
	.footer-bottom {
		padding-top: 12px;
	}
}

@media (min-width: 1800px) {
	.footer-bottom {
		padding-top: 38px;
	}
}

.copyright {
	margin-bottom: 0;
	display: inline;
}

.copyright-column p {
	margin-bottom: 0;
	display: inline;
}

.copyright-column ul {
	display: inline;
	list-style: none;
	padding-left: 12px;
}

.copyright-column ul li {
	display: inline-block;
}

.list-inline-divider {
	display: inline;
}

.list-inline-divider li:not(:last-child) {
	margin-right: 0.25rem;
}

.list-inline-divider li::before {
	content: "\007C";
	display: inline-block;
	margin-left: 0.375rem;
	margin-right: 0.375rem;
}

.text-card {
	font-size: 18px;
}

@media (min-width: 500px) {
	.text-card {
		font-size: 22px;
	}
}

@media (min-width: 768px) {
	.text-card {
		font-size: 18px;
	}
}

@media (min-width: 1400px) {
	.text-card {
		font-size: 22px;
	}
}

@media (min-width: 768px) {
	.text-card p {
		margin-bottom: 0;
	}
}

.text-card img {
	margin-top: 0.5rem;
}

.font-body {
	font-family: var(--bs-font-sans-serif);
}

.font-heading {
	font-family: var(--bs-font-heading);
}

.font-secondary {
	font-family: var(--bs-font-secondary);
}

.tracking-normal {
	letter-spacing: 0em;
}

.tracking-wide {
	letter-spacing: 0.025em;
}

.tracking-wider {
	letter-spacing: 0.05em;
}

.tracking-widest {
	letter-spacing: 0.1em;
}

.leading-none {
	line-height: 1;
}

.leading-tight {
	line-height: 1.2;
}

.leading-normal {
	line-height: 1.5;
}

.leading-relaxed {
	line-height: 1.675;
}

.leading-loose {
	line-height: 2;
}

/* == WordPress WYSIWYG Editor Styles == */

.entry-content img {
	margin: 0 0 1.5em 0;
	max-width: 100%;
	height: auto;
}
.alignleft, img.alignleft {
	margin-right: 1.5em;
	display: inline;
	float: left;
}
.alignright, img.alignright {
	margin-left: 1.5em;
	display: inline;
	float: right;
}
.aligncenter, img.aligncenter {
	margin-right: auto;
	margin-left: auto;
	display: block;
	clear: both;
}
.wp-caption {
	margin-bottom: 1.5em;
	text-align: center;
	padding-top: 5px;
}
.wp-caption img {
	border: 0 none;
	padding: 0;
	margin: 0;
}
.wp-caption p.wp-caption-text {
	line-height: 1.5;
	font-size: 10px;
	margin: 0;
}
.wp-smiley {
	margin: 0;
	max-height: 1em;
}
blockquote.left {
	margin-right: 20px;
	text-align: right;
	margin-left: 0;
	width: 33%;
	float: left;
}
blockquote.right {
	margin-left: 20px;
	text-align: left;
	margin-right: 0;
	width: 33%;
	float: right;
}