/*
Table Of Contents

 1.) Typography
 2.) Default Styles
 3.) Header - Main
 4.) Content - Main
 5.) Footer - Main
 6.) Inner - Pages
 7.) Extra core
 8.) Text - Colors / Wordpress Cores

========================================*/

/*
 1.) Typography
----------------------------------------*/

/*
.libre-baskerville { font-family: "Libre Baskerville", serif; }
.open-sans { font-family: "Open Sans", sans-serif; }
.tk-turbinado-pro { font-family: "turbinado-pro", sans-serif; }
*/


/*
 2.) Default Styles
----------------------------------------*/

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
p,
ol,
ul,
li {
	padding: 0;
	margin: 0;
}

body {
	-webkit-font-smoothing: antialiased;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
	font-family: "Open Sans", sans-serif;
	font-weight: 400;
	font-size: 18px;
	color: #444444;
	line-height: 150%;
	background: #ffffff;
	margin: 0;
	padding: 0;
}

sub,
sup {
	font-size: 60%;
}

sup {
	top: 0;
}

sub {
	bottom: 0;
}

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


/*= Links
=======================================================*/

a {
	font-weight: 700;
	color: #365072;
	text-decoration: underline;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	cursor: pointer;
}

a:hover,
a:focus,
a:active {
	color: #365072;
	text-decoration: none;
}

a:visited {
	outline: 0;
}

a[href^="mailto:"] {
	word-break: break-all;
}


/*= Headings: P, H1, H2, H3, H4, H5, H6
=======================================================*/

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
	font-family: "Libre Baskerville", serif;
	font-weight: 400;
	color: #365072;
	line-height: 140%;
	padding-bottom: 20px;
}

h1,
.h1 {
	font-size: 56px;
	line-height: 138%;
	letter-spacing: -1.1px;
}

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

h3,
.h3 {
	font-size: 35px;
	letter-spacing: -0.7px;
}

h4,
.h4,
h5,
.h5,
h6,
.h6 {
	font-family: "Open Sans", sans-serif;
	font-weight: 600;
	line-height: 130%;
}

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

h5,
.h5,
h6,
.h6 {
	font-size: 22px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	font-weight: inherit;
	color: inherit;
}

h1:last-child,
.h1:last-child,
h2:last-child,
.h2:last-child,
h3:last-child,
.h3:last-child,
h4:last-child,
.h4:last-child,
h5:last-child,
.h5:last-child,
h6:last-child,
.h6:last-child {
	padding-bottom: 0;
}

p {
	padding-bottom: 15px;
}

p:last-child {
	padding-bottom: 0;
}

.txt {
	margin-bottom: 60px;
}

.txt:last-child {
	margin-bottom: 0;
}

em {
	font-style: italic;
}

em.fal,
em.far,
em.fas,
em.fab {
	font-style: normal;
}

em.fab.fa-facebook-square {
    color: #5499C8;
	margin-top: 20px;
}

strong {
	font-weight: 700;
}

@media (max-width: 1199px) {
h1,
.h1 {
	font-size: 50px;
	letter-spacing: -1px;
}

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

h3,
.h3 {
	font-size: 32px;
	letter-spacing: -0.6px;
}

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

.txt {
	margin-bottom: 50px;
}
}

@media (max-width: 767px) {
h1,
.h1 {
	font-size: 40px;
	letter-spacing: -0.8px;
}

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

h3,
.h3 {
	font-size: 28px;
	letter-spacing: normal;
}

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

h5,
.h5,
h6,
.h6 {
	font-size: 20px;
}

.txt {
	margin-bottom: 40px;
}
}

@media (max-width: 389px) {
h1,
.h1 {
	font-size: 35px;
	letter-spacing: -0.7px;
}
}


/*= Unorder List
=======================================================*/

ul,
ol {
	list-style: none;
	padding-left: 15px;
}

li {
	position: relative;
	padding-left: 18px;
}

ul li:before {
	content: "\f111";
	font-family: "Font Awesome\ 5 Pro";
	font-weight: 900;
	font-size: 30%;
	line-height: 30%;
	position: absolute;
	top: 2.25em;
	left: 0;
}

li:last-child {
	padding-bottom: 15px;
}

ul:last-child li:last-child,
ol:last-child li:last-child {
	padding-bottom: 0;
}

ul li ul,
ol li ol {
	padding: 15px 0 0 0;
}


/*= Order List
=======================================================*/

ol {
	counter-reset: item;
}

ol > li {
	counter-increment: item;
	padding-left: 20px;
}

ol > li:before {
	content: counter(item)".";
	position: absolute;
	top: 0;
	left: 0;
}


/* #Input Styles
================================================= */

select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
	border-radius: 0;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	outline: 0;
}

select,
textarea,
input {
	-webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
	-moz-transition: border linear 0.2s, box-shadow linear 0.2s;
	-ms-transition: border linear 0.2s, box-shadow linear 0.2s;
	-o-transition: border linear 0.2s, box-shadow linear 0.2s;
	transition: border linear 0.2s, box-shadow linear 0.2s;
}

label {
	width: 100%;
	font-family: "Open Sans", sans-serif;
	font-weight: 400;
	font-size: 18px;
	color: #365072;
	line-height: 150%;
	padding: 0;
	margin: 0 0 8px 0;
}

select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
	width: 100%;
	height: 66px;
	font-family: "Open Sans", sans-serif;
	font-weight: 400;
	font-size: 20px;
	color: #444444;
	line-height: 150%;
	white-space: nowrap;
	text-overflow: ellipsis;
	background: #ffffff;
	box-shadow: inset #64a5ce 0 0 0 1px;
	border: none;
	border-radius: 4px;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	overflow: hidden;
	position: relative;
	padding: 16px 28px;
	margin: 0;
}

textarea {
	height: 220px;
	white-space: normal;
	outline: none;
	resize: none;
	padding-top: 20px;
	padding-bottom: 20px;
}

select {
	background-image: url(../img/chevron-down.svg);
	background-size: 21px auto;
	background-repeat: no-repeat;
	background-position: top 29px right 26px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding-top: 0;
	padding-right: 70px;
	padding-bottom: 0;
}

select::-ms-expand {
	display:none;
}

select.colorize expand-item.def:not([disabled]),
select.colorize.empty:not([disabled]) {
	color: rgba(68, 68, 68, .70);
}

::-webkit-input-placeholder,
::-webkit-textarea-placeholder {
	color: rgba(68, 68, 68, .70);
}

input::-moz-placeholder,
textarea::-moz-placeholder {
	color: rgba(68, 68, 68, .70);
}

::-moz-placeholder {
	color: rgba(68, 68, 68, .70);
}

::-ms-input-placeholder {
	color: rgba(68, 68, 68, .70);
}

select:focus,
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
	box-shadow: inset #46734d 0 0 0 1px;
	outline: 0;
}

@media (max-width: 767px) {
select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
	height: 58px;
	font-size: 18px;
	line-height: 28px;
	padding: 12px 25px;
}

textarea {
	height: 175px;
	padding-top: 20px;
	padding-bottom: 20px;
}

select {
	background-size: 19px auto;
	background-position: top 25px right 23px;
	padding-right: 50px;
}
}


/* Error */
.error {
	display: none;
}

.error-wrap {
	position: relative;
}

.error-wrap .error {
	width: 100%;
	font-weight: 400;
	font-size: 16px;
	color: #ff423e;
	line-height: 20px;
	text-align: right;
	overflow: hidden;
	position: absolute;
	bottom: -30px;
	left: 0;
	padding: 0 15px;
	margin: 0;
	display: block;
}

@media (max-width: 767px) {
.error-wrap .error {
	font-size: 14px;
	line-height: 24px;
}
}


/* Form - Check */
.form-check, .gchoice {
	width: 100%;
	min-height: 26px;
	float: none;
	display: inline-block;
	vertical-align: top;
	position: relative;
	padding: 0 0 0 40px;
	margin: 0 0 15px 0;
}

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

.form-check .form-check-input, .gchoice .gfield-choice-input {
	width: 26px;
	height: 26px;
	float: none;
	display: inline-block !important;
	vertical-align: top !important;
	background: #ffffff;
	border: 1px solid #64a5ce;
	border-radius: 900px !important;
	box-shadow: none;
	outline: 0;
	position: absolute;
	top: 1px !important;
	left: 0;
	padding: 0;
	margin: 0;

	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-print-color-adjust: exact;
}

.form-check .form-check-input[type="checkbox"], .gchoice .gfield-choice-input[type="checkbox"] {
	border-radius: 0 !important;
}

.form-check .form-check-input:focus,
.form-check .form-check-input:active,
.gchoice .gfield-choice-input:focus,
.gchoice .gfield-choice-input:active,
.gfield_radio .gfield-choice-input:focus,
.gfield_radio .gfield-choice-input:active {
	filter: brightness(100%);
}

.form-check .form-check-input:checked,
.gchoice .gfield-choice-input:checked,
.gfield_radio .gfield-choice-input:checked {
	background-color: #365072;
	background-repeat: no-repeat;
	background-image: url(../img/check-tick.svg);
	background-position: center center;
	background-size: 13px auto;
	border-color: #365072;
}

.form-check .form-check-input:checked[type="radio"],
.gfield_radio .gfield-choice-input:checked[type="radio"] {
	background-image: url(../img/circle-solid.svg);
	background-size: 10px auto;
}

.form-check .form-check-label, .gfield_checkbox .gfield-choice-label, .gchoice label {
	font-size: 18px !important;
	line-height: 150% !important;
	position: relative;
	z-index: 1;
	padding: 0;
	margin: 0;
}

@media (max-width: 767px) {
.form-check, .gchoice {
	min-height: 24px;
	padding-left: 36px;
}

.form-check .form-check-input, .gchoice .gfield-choice-input {
	width: 24px;
	height: 24px;
	top: -1px;
}
}


/* File - Upload */
input[type=file] {
	width: 100%;
	font-size: 18px;
	line-height: 24px;
}

input[type=file]::file-selector-button {
	font-family: "Open Sans", sans-serif;
	font-weight: 400;
	font-size: 20px;
	color: #444444;
	line-height: 150%;
	background: #ffffff;
	box-shadow: inset #365072 0 0 0 1px;
	border-radius: 8px;
	border: none;
	cursor: pointer;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	outline: 0;
	padding: 20px 35px;
	margin: 0 15px 0 0;
}

input[type=file]::file-selector-button:hover {
	color: #ffffff;
	background: #365072;
}

.txt-size {
	font-size: 16px;
	line-height: 22px;
	margin-top: 10px;
}

@media (max-width: 767px) {
input[type=file] {
	font-size: 16px;
	line-height: 22px;
}

input[type=file]::file-selector-button {
	font-size: 18px;
	line-height: 24px;
	padding: 16px 30px;
}

.upload-wrap {
	overflow: hidden;
}
}


/* #Buttons
================================================== */

/* Arrow Right */
@keyframes arrowright {
	0% { margin-left: 13px; margin-right: 0;}
	75% { margin-left: 20px; margin-right: -7px;}
	100% { margin-left: 13px; margin-right: 0;}
}

@-webkit-keyframes arrowright {
	0% { margin-left: 13px; margin-right: 0;}
	75% { margin-left: 20px; margin-right: -7px;}
	100% { margin-left: 13px; margin-right: 0;}
}

/* Arrow Up Right */
@keyframes arrowupright {
	0% { margin-left: 13px; margin-right: 0; margin-top: 0; margin-bottom: 0;}
	75% { margin-left: 20px; margin-right: -7px; margin-top: -5px; margin-bottom: 3px;}
	100% { margin-left: 13px; margin-right: 0; margin-top: 0; margin-bottom: 0;}
}

@-webkit-keyframes arrowupright {
	0% { margin-left: 13px; margin-right: 0; margin-top: 0; margin-bottom: 0;}
	75% { margin-left: 20px; margin-right: -7px; margin-top: -5px; margin-bottom: 3px;}
	100% { margin-left: 13px; margin-right: 0; margin-top: 0; margin-bottom: 0;}
}

/* Arrow Left */
@keyframes arrowleft {
	0% { margin-right: 13px; margin-left: 0;}
	75% { margin-right: 20px; margin-left: -7px;}
	100% { margin-right: 13px; margin-left: 0;}
}

@-webkit-keyframes arrowleft {
	0% { margin-right: 13px; margin-left: 0;}
	75% { margin-right: 20px; margin-left: -7px;}
	100% { margin-right: 13px; margin-left: 0;}
}

/* Arrow Down */
@keyframes anidownload {
	0% { margin-top: 0; margin-bottom: 0;}
	75% { margin-top: 4px; margin-bottom: -4px;}
	100% { margin-top: 0; margin-bottom: 0;}
}

@-webkit-keyframes anidownload {
	0% { margin-top: 0; margin-bottom: 0;}
	75% { margin-top: 4px; margin-bottom: -4px;}
	100% { margin-top: 0; margin-bottom: 0;}
}


/* Custom - Select */
button {
	background: none;
	border: none;
	box-shadow: none;
	text-decoration: none;
	white-space: normal;
	cursor: pointer;
	outline: 0;
	padding: 0;
	margin: 0;
}

button:hover,
button:focus,
button:active,
button:active:focus,
button.active,
button.active:focus {
	outline: 0;
}

.btn,
input[type="button"],
input[type="submit"] {
	width: auto;
	height: auto;
	float: none;
	display: inline-block;
	vertical-align: middle;
	font-family: "Open Sans", sans-serif;
	font-weight: 700;
	font-size: 18px;
	color: #365072;
	line-height: 150%;
	text-align: center;
	text-decoration: none;
	white-space: normal;
	background: #f5ba36;
	box-shadow: inset #f5ba36 0 0 0 2px;
	border-radius: 900px;
	border: none;
	overflow: hidden;
	position: relative;
	z-index: 0;
	cursor: pointer;
	outline: 0;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	padding: 19px 40px;
	margin: 0;
	text-wrap: balance;
}

.btn:after {
	content: "";
	width: 13px;
	height: 13px;
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	vertical-align: middle;
	background: url(../img/arrow-up-right-navy.svg) no-repeat center center;
	background-size: 100% auto;
	text-indent: -9999px;
	position: relative;
	top: -1px;
	margin: 0 0 0 13px;
}

.btn:hover,
.btn:focus,
.btn:active,
.btn:active:focus,
.btn.active,
.btn.active:focus,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="button"]:active,
input[type="button"]:active:focus,
input[type="button"].active,
input[type="button"].active:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
input[type="submit"]:active,
input[type="submit"]:active:focus,
input[type="submit"].active,
input[type="submit"].active:focus,
.btn:not(:disabled):not(.disabled).active,
a.box:hover .btn,
a.box:focus .btn,
a.box:active .btn {
	color: #ffffff;
	text-decoration: none;
	background-color: #365072;
	box-shadow: inset #f5ba36 0 0 0 2px;
	outline: 0;
}

.btn:hover:after,
.btn:focus:after,
.btn:active:after,
.btn:active:focus:after,
.btn.active:after,
.btn.active:focus:after,
a.box:hover .btn:after,
a.box:focus .btn:after,
a.box:active .btn:after {
	background-image: url(../img/arrow-up-right-white.svg);
	animation: arrowupright 0.5s linear 1;
	-webkit-animation-name: arrowupright 0.5s linear 1;
}

input[type="button"],
input[type="submit"] {
	background-image: url(../img/arrow-up-right-navy.svg);
	background-repeat: no-repeat;
	background-size: 13px auto;
	background-position: top 26px right 40px;
	padding-right: 70px;
}

input[type="button"]:hover,
input[type="button"]:focus,
input[type="button"]:active,
input[type="submit"]:hover,
input[type="submit"]:focus,
input[type="submit"]:active {
	background-image: url(../img/arrow-up-right-white.svg);
}

.btn-navy,
input.btn-navy[type="button"],
input.btn-navy[type="submit"] {
	color: #ffffff;
	background-color: #365072;
	box-shadow: inset #365072 0 0 0 2px;
}

.btn-navy:after {
	background-image: url(../img/arrow-up-right-white.svg);
}

.btn-navy:hover,
.btn-navy:focus,
.btn-navy:active,
.btn-navy:active:focus,
.btn-navy.active,
.btn-navy.active:focus,
input.btn-navy[type="button"]:hover,
input.btn-navy[type="button"]:focus,
input.btn-navy[type="button"]:active,
input.btn-navy[type="button"]:active:focus,
input.btn-navy[type="button"].active,
input.btn-navy[type="button"].active:focus,
input.btn-navy[type="submit"]:hover,
input.btn-navy[type="submit"]:focus,
input.btn-navy[type="submit"]:active,
input.btn-navy[type="submit"]:active:focus,
input.btn-navy[type="submit"].active,
input.btn-navy[type="submit"].active:focus,
.btn-navy:not(:disabled):not(.disabled).active,
a.box:hover .btn-navy,
a.box:focus .btn-navy,
a.box:active .btn-navy {
	color: #365072;
	background-color: #f5ba36;
}

.btn-navy:hover:after,
.btn-navy:focus:after,
.btn-navy:active:after,
.btn-navy:active:focus:after,
.btn-navy.active:after,
.btn-navy.active:focus:after,
a.box:hover .btn-navy:after,
a.box:focus .btn-navy:after,
a.box:active .btn-navy:after {
	background-image: url(../img/arrow-up-right-navy.svg);
}

.btn-navy2,
input.btn-navy2[type="button"],
input.btn-navy2[type="submit"] {
	color: #f5ba36;
	background-color: #365072;
	box-shadow: inset #365072 0 0 0 2px;
}

.btn-navy2:after {
	background-image: url(../img/arrow-up-right-gold.svg);
}

.btn-navy2:hover,
.btn-navy2:focus,
.btn-navy2:active,
.btn-navy2:active:focus,
.btn-navy2.active,
.btn-navy2.active:focus,
input.btn-navy2[type="button"]:hover,
input.btn-navy2[type="button"]:focus,
input.btn-navy2[type="button"]:active,
input.btn-navy2[type="button"]:active:focus,
input.btn-navy2[type="button"].active,
input.btn-navy2[type="button"].active:focus,
input.btn-navy2[type="submit"]:hover,
input.btn-navy2[type="submit"]:focus,
input.btn-navy2[type="submit"]:active,
input.btn-navy2[type="submit"]:active:focus,
input.btn-navy2[type="submit"].active,
input.btn-navy2[type="submit"].active:focus,
.btn-navy2:not(:disabled):not(.disabled).active,
a.box:hover .btn-navy2,
a.box:focus .btn-navy2,
a.box:active .btn-navy2 {
	color: #365072;
	background-color: #f5ba36;
	/* box-shadow: inset #365072 0 0 0 2px; */
}

.btn-navy2:hover:after,
.btn-navy2:focus:after,
.btn-navy2:active:after,
.btn-navy2:active:focus:after,
.btn-navy2.active:after,
.btn-navy2.active:focus:after,
a.box:hover .btn-navy2:after,
a.box:focus .btn-navy2:after,
a.box:active .btn-navy2:after {
	background-image: url(../img/arrow-up-right-navy.svg);
}

.btn-video {
	background: #ffffff;
	box-shadow: none;
	padding-left: 35px;
	padding-right: 76px;
}

.btn-video:after {
	content: "\f04b";
	font-family: "Font Awesome 5 Pro";
	font-weight: 900;
	width: 44px;
	height: 44px;
	font-size: 90%;
	color: #ffffff;
	background: #365072;
	text-indent: 0;
	border-radius: 900px;
	position: absolute;
	top: 50%;
	right: 12px;
	-ms-transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	transform: translate(0, -50%);
	padding: 0 0 0 1px;
	margin: 0;
}

.btn-video:hover,
.btn-video:focus,
.btn-video:active,
.btn-video:active:focus,
.btn-video.active,
.btn-video.active:focus,
input.btn-video[type="button"]:hover,
input.btn-video[type="button"]:focus,
input.btn-video[type="button"]:active,
input.btn-video[type="button"]:active:focus,
input.btn-video[type="button"].active,
input.btn-video[type="button"].active:focus,
input.btn-video[type="submit"]:hover,
input.btn-video[type="submit"]:focus,
input.btn-video[type="submit"]:active,
input.btn-video[type="submit"]:active:focus,
input.btn-video[type="submit"].active,
input.btn-video[type="submit"].active:focus,
.btn-video:not(:disabled):not(.disabled).active,
a.box:hover .btn-video,
a.box:focus .btn-video,
a.box:active .btn-video {
	color: #ffffff;
	background: #365072;
	box-shadow: none;
}

.btn-video:hover:after,
.btn-video:focus:after,
.btn-video:active:after,
.btn-video:active:focus:after,
.btn-video.active:after,
.btn-video.active:focus:after,
a.box:hover .btn-video:after,
a.box:focus .btn-video:after,
a.box:active .btn-video:after {
	color: #365072;
	background: #ffffff;
	animation: none;
	-webkit-animation-name: none;
}

.btn:focus,
input[type="button"]:focus,
input[type="submit"]:focus {
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: 2px;
}

.disabled {
	cursor: not-allowed;
	filter: alpha(opacity=65);
	opacity: .65;
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
	cursor: not-allowed;
	filter: alpha(opacity=65);
	-webkit-box-shadow: none;
	box-shadow: none;
	opacity: .65;
}

a.btn.disabled,
fieldset[disabled] a.btn {
	pointer-events: none;
}

.btn-center {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	text-align: center;
}

.btn-out {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	margin-top: 25px;
}

.btn-wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin: 25px -11px -16px -11px;
}

.btn-wrap .btn {
	float: left;
	margin: 0 11px 16px 11px;
}

@media (max-width: 1199px) {
.btn-out,
.btn-wrap {
	margin-top: 20px;
}
}

@media (max-width: 767px) {
.btn,
input[type="button"],
input[type="submit"] {
	padding: 17px 35px;
}

input[type="button"],
input[type="submit"] {
	background-position: top 23px right 35px;
	padding-right: 65px;
}

.btn-video {
	padding-left: 30px;
	padding-right: 65px;
}

.btn-video:after {
	width: 38px;
	height: 38px;
	right: 10px;
}
}

@media (max-width: 399px) {
.btn,
input[type="button"],
input[type="submit"] {
	font-size: 16px;
}
}


/* Table */
table,
tbody,
thead,
tr,
th,
td {
	border-spacing: 0;
	border-collapse: collapse;
	padding: 0;
	margin: 0;
}


/* Figure */
figure,
.figure {
	vertical-align: top;
}

.break-word {
	word-wrap: break-word;
}


/* #Owl-carousel
=======================================================*/

.owl-carousel {
	display: none;
	width: 100%;
	-webkit-tap-highlight-color: transparent;
	/* position relative and z-index fix webkit rendering fonts issue */
	position: relative;
	z-index: 1;
}

.owl-carousel .owl-stage {
	position: relative;
	-ms-touch-action: pan-Y;
	touch-action: manipulation;
	-moz-backface-visibility: hidden;
	/* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

.owl-carousel .owl-stage-outer {
	position: relative;
	overflow: hidden;
	/* fix for flashing background */
	-webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
	position: relative;
	min-height: 1px;
	float: left;
	-webkit-backface-visibility: hidden;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
	width: 100%;
	display: inline-block;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.owl-carousel.owl-loaded {
	display: block;
}

.owl-carousel.owl-loading {
	opacity: 0;
	display: block;
}

.owl-carousel.owl-hidden {
	opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
	visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.owl-carousel.owl-grab {
	cursor: move;
	cursor: grab;
}

.owl-carousel.owl-rtl {
	direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
	float: right;
}


/* No Js */
.no-js .owl-carousel {
	display: block;
}


/* Owl Carousel - Animate Plugin */
.owl-carousel .animated {
	animation-duration: 1000ms;
	animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
	z-index: 0;
}

.owl-carousel .owl-animated-out {
	z-index: 1;
}

.owl-carousel .fadeOut {
	animation-name: fadeOut;
}

@keyframes fadeOut {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}


/* Owl Carousel - Auto Height Plugin */
.owl-height {
	transition: height 500ms ease-in-out;
}


/* Owl Carousel - Lazy Load Plugin */
.owl-carousel .owl-item {
/**
This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
calculation of the height of the owl-item that breaks page layouts
*/
}

.owl-carousel .owl-item .owl-lazy {
	opacity: 0;
	transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""],
.owl-carousel .owl-item .owl-lazy:not([src]) {
	max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
	transform-style: preserve-3d;
}


/* Owl Carousel - Video Plugin */
.owl-carousel .owl-video-wrapper {
	position: relative;
	height: 100%;
	background: #000;
}

.owl-carousel .owl-video-play-icon {
	position: absolute;
	height: 80px;
	width: 80px;
	left: 50%;
	top: 50%;
	margin-left: -40px;
	margin-top: -40px;
	/*background: url("owl.video.play.png") no-repeat;*/
	cursor: pointer;
	z-index: 1;
	-webkit-backface-visibility: hidden;
	transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
	-ms-transform: scale(1.3, 1.3);
	transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
	display: none;
}

.owl-carousel .owl-video-tn {
	opacity: 0;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
	position: relative;
	z-index: 1;
	height: 100%;
	width: 100%;
}


/* #Slider Controls
================================================== */

/* Previous and Next */
.owl-nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	margin: 55px 0 0 0;
}

.owl-nav button {
	width: 67px;
	height: 67px;
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	vertical-align: top;
	font-weight: inherit;
	font-size: 28px;
	color: #ffffff;
	line-height: 1em;
	text-decoration: none;
	text-align: center;
	background: #5499c8;
	border-radius: 10px;
	box-shadow: none;
	border: none;
	position: relative;
	cursor: pointer;
	z-index: 2;
	outline: 0;
	padding: 0;
	margin: 0 4px;
}

.owl-nav button:hover,
.owl-nav button:focus,
.owl-nav button:active {
	color: #ffffff;
	background: #005a9c;
	border-color: #005a9c;
	outline: 0;
}

.owl-nav button.owl-prev {
	left: 0;
	margin-left: 0;
}

.owl-nav button.owl-next {
	right: 0;
	margin-right: 0;
}

.owl-nav button.disabled {
	cursor: not-allowed;
	filter: alpha(opacity=65);
	-webkit-box-shadow: none;
	box-shadow: none;
	opacity: .65;
}

.owl-nav.disabled {
	display: none;
}

@media (max-width: 1199px) {
.owl-nav button {
	width: 56px;
	height: 56px;
	font-size: 24px;
	border-radius: 8px;
}
}

@media (max-width: 767px) {
.owl-nav button {
	width: 48px;
	height: 48px;
	font-size: 20px;
	border-radius: 6px;
}
}


/* Bullets */
.owl-dots {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	text-align: center;
	line-height: .5em;
	margin: 55px 0 -12px 0;
}

.owl-dots button.owl-dot {
	width: 15px;
	height: 15px;
	float: none;
	display: inline-block;
	vertical-align: top;
	text-align: center;
	background: #5499c8;
	border-radius: 900px;
	box-shadow: none;
	border: none;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	position: relative;
	cursor: pointer;
	padding: 0;
	margin: 0 6px 12px 6px;
}

.owl-dots button.owl-dot:hover,
.owl-dots button.owl-dot:focus,
.owl-dots button.owl-dot:active,
.owl-dots button.owl-dot.active {
	background: #005a9c;
}

.owl-dots.disabled {
	display: none;
}

@media (max-width: 767px) {
.owl-dots {
	margin: 40px 0 0 0;
}
}


/* #Flying focus
================================================== */

#flying-focus {
	position: absolute;
	margin: 0;
	background: transparent;
	-webkit-transition-property: left, top, width, height, opacity;
	transition-property: left, top, width, height, opacity;
	-webkit-transition-timing-function: cubic-bezier(0, 0.2, 0, 1);
	transition-timing-function: cubic-bezier(0, 0.2, 0, 1);
	visibility: hidden;
	pointer-events: none;
	box-shadow: -webkit-focus-ring-color 0 0 0 2px;
	border-radius: 0;
}

#flying-focus.flying-focus_visible {
	visibility: visible;
	z-index: 9999;
}

.flying-focus_target {
	outline: none !important; /* Doesn't work in Firefox :( */
}

/* http://stackoverflow.com/questions/71074/how-to-remove-firefoxs-dotted-outline-on-buttons-as-well-as-links/199319 */
.flying-focus_target::-moz-focus-inner {
	border: 0 !important;
}

/* Replace it with @supports rule when browsers catch up */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
#flying-focus {
	box-shadow: none;
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -3px;
}
}


/* Skip - Button */
.skip-btn {
	height: 45px;
	float: left;
	font-weight: 700;
	font-size: 18px;
	color: #365072;
	line-height: 45px;
	text-align: center;
	text-decoration: none;
	background: #f5ba36;
	border-radius: 5px;
	-webkit-transition: top 1s ease-out, background 1s linear;
	transition: top 1s ease-out, background 1s linear;
	overflow: hidden;
	position: absolute;
	z-index: 1001;
	top: -47px;
	opacity: 0;
	padding: 0 30px;
	margin: 0 0 0 3px;
}

.skip-btn:focus,
.skip-btn:active {
	top: 3px;
	color: #365072;
	text-decoration: none;
	background: #f5ba36;
	-webkit-transition: top .1s ease-in, background .5s linear;
	transition: top .1s ease-in, background .5s linear;
	opacity: 1;
}


/*= Container - Main
=======================================================*/

.container-main {
	width: 100%;
	min-height: 100vh;
	float: left;
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
	z-index: 1;
}


/* Container */
.container {
	width: 100%;
	max-width: 1440px;
	padding: 0 40px;
}

@media (min-width: 768px) {
.container.max-1070 {
	max-width: 1150px;
}
}

@media (max-width: 767px) {
.container {
	max-width: 590px;
	padding: 0 25px;
}
}


/* Dropdown - Menu */
.dropdown-menu {
	font-size: inherit;
	color: inherit;
	z-index: 7;
}


/* Figure */
.figure {
	width: 100%;
	text-align: center;
	position: relative;
	overflow: hidden;
	margin-bottom: 60px;
}

.figure:last-child {
	margin-bottom: 0;
}

.figure img {
	width: 100%;
	vertical-align: top;
}

@media (max-width: 1199px) {
.figure {
	margin-bottom: 50px;
}
}

@media (max-width: 767px) {
.figure {
	margin-bottom: 40px;
}
}


/* Figure - Caption */
.figure-caption {
	font-weight: inherit;
	font-style: inherit;
	font-size: 18px;
	color: inherit;
	line-height: 150%;
	padding: 0;
	margin: 0;
}

@media (max-width: 767px) {
.figure-caption {
	font-size: 16px;
}
}


/* Figure Wrap */
.figure-wrap {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	position: relative;
	padding-bottom: 32px;
	margin-bottom: 60px;
}

.figure-wrap:last-child {
	margin-bottom: 0;
}

.figure-wrap .btn-out {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 0;
	margin: 0;
	z-index: 2;
}

@media (max-width: 1199px) {
.figure-wrap {
	margin-bottom: 50px;
}
}

@media (max-width: 991px) {
.figure-wrap {
	padding-bottom: 0;
}

.figure-wrap .btn-out {
	position: relative;
	margin-top: -32px;
}
}

@media (max-width: 767px) {
.figure-wrap {
	margin-bottom: 40px;
}

.figure-wrap .btn-out {
	padding: 0 30px;
	margin-top: -28px;
}
}


/* Figure - Over */
.figure-over {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	overflow: hidden;
	position: relative;
	margin-bottom: 60px;
}

.figure-over:last-child {
	margin-bottom: 0;
}

.figure-over .figure {
	margin: 0;
}

.figure-over .figure img {
	min-width: 560px;
	margin: 0 -280px;
}

.figure-over .btn-out {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 40px;
	margin: 0;
}

.figure-over .address {
	width: 330px;
	font-weight: 600;
	font-size: 20px;
	color: #365072;
	line-height: 150%;
	background: #ffffff;
	border-radius: 10px;
	position: absolute;
	bottom: 30px;
	left: 30px;
	padding: 26px 35px 31px 35px;
}

@media (max-width: 1199px) {
.figure-over {
	margin-bottom: 50px;
}

.figure-over .btn-out {
	padding: 30px;
}

.figure-over .address {
	bottom: 20px;
	left: 20px;
}
}

@media (max-width: 767px) {
.figure-over {
	margin-bottom: 40px;
}

.figure-over .btn-out {
	padding: 10px;
}

.figure-over .address {
	width: 280px;
	font-size: 18px;
	border-radius: 8px;
	bottom: 10px;
	left: 10px;
	padding: 12px 20px 17px 20px;
}
}


/* Video - Block */
.video-block {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	overflow: hidden;
	position: relative;
	margin-bottom: 60px;
}

.video-block:last-child {
	margin-bottom: 0;
}

.video-block h2 {
    text-align: center;
    padding-bottom: 50px;
}

.video-block .box {
	width: 100%;
	max-height: 718px;
	float: left;
	overflow: hidden;
	position: relative;
}

.video-block .box::before {
	content: "";
	width: 100%;
	height: 100%;
	float: left;
	background: rgba(70, 115, 77, 0.64);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.video-block .box img {
	width: 100%;
	min-width: 560px;
	display: inline-block;
	vertical-align: top;
	filter: grayscale(1);
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	margin: 0;
}

.video-block .box .btn-out {
	width: 100%;
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	right: 0;
	padding: 20px;
	margin: 0;
	z-index: 1;
}

.video-block .box:hover img,
.video-block .box:focus img,
.video-block .box:active img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	transform: scale(1.1);
}

div#campusTourModal, div#secondarycampusTourModal {
    width: 75%;
}

@media (max-width: 1199px) {
.video-block {
	margin-bottom: 50px;
}
}

@media (max-width: 767px) {
.video-block {
	margin-bottom: 40px;
}
div#campusTourModal, div#secondarycampusTourModal  {
    width: 100%;
}
}


/* Divider */
.divider {
	width: 100%;
	height: 15px;
	background: url(../img/divider-horizontal.png) no-repeat center center;
	background-size: 100% 100%;
	overflow: hidden;
}

.divider.reverse {
	background-image: url(../img/divider-horizontal-reverse.png);
}


/* Divider2 */
.divider2 {
	width: 100%;
	height: 26px;
	background: url(../img/divider-horizontal3.png) no-repeat center center;
	background-size: 100% 100%;
	overflow: hidden;
}

.divider2.reverse {
	background-image: url(../img/divider-horizontal3-reverse.png);
}

@media (max-width: 767px) {
.divider2 {
	height: 18px;
}
}


/* Date */
.date {
	font-weight: 600;
	font-size: 20px;
	color: #365072;
	line-height: 150%;
	position: relative;
	padding-left: 35px;
	margin-bottom: 30px;
}

.date:before {
	content:"\f073";
	font-family: "Font Awesome 5 Pro";
	font-weight: 400;
	font-size: 120%;
	color: #5499c8;
	line-height: 1em;
	-webkit-transition: all 0.25s ease-out;
	-moz-transition: all 0.25s ease-out;
	-o-transition: all 0.25s ease-out;
	transition: all 0.25s ease-out;
	position: absolute;
	top: 50%;
	left: 0;
	-ms-transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	transform: translate(0, -50%);
}

.date:last-child {
	margin-bottom: 0;
}

@media (max-width: 767px) {
.date {
	font-size: 18px;
	margin-bottom: 25px;
}
}


/* Sub - Heading */
.sub-heading,
.sub-heading2 {
	font-family: "turbinado-pro", sans-serif;
	font-weight: 700;
	font-size: 60px;
	color: #46734d;
	line-height: 120%;
	position: relative;
	margin-bottom: 10px;
}

.sub-heading2 {
	padding-left: 42px;
}

.sub-heading2::before {
	content: "";
	width: 35px;
	height: 4px;
	background: url(../img/sub-heading-divider-green.png) no-repeat center center;
	background-size: 100% auto;
	position: absolute;
	top: 31px;
	left: 0;
}

.sub-heading2.blue-light {
	color: #64a5ce;
}

.sub-heading2.blue-light::before {
	background-image: url(../img/sub-heading-divider-blue.png);
}

.sub-heading:last-child,
.sub-heading2:last-child {
	margin-bottom: 0;
}

@media (max-width: 1199px) {
.sub-heading,
.sub-heading2 {
	font-size: 48px;
}

.sub-heading2::before {
	top: 22px;
}
}

@media (max-width: 767px) {
.sub-heading,
.sub-heading2 {
	font-size: 36px;
}

.sub-heading2::before {
	top: 17px;
}
}


/* Read - More */
.read-more {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	margin: 15px 0 0 0;
}

.read-more a,
.read-more .a {
	float: none;
	display: inline-block;
	vertical-align: top;
	font-weight: 700;
	font-size: 18px;
	color: #365072;
	line-height: 150%;
	text-decoration: underline;
	cursor: pointer;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	position: relative;
	z-index: 0;
	padding-bottom: 0;
	margin-bottom: 15px;
}

.read-more a:last-child,
.read-more .a:last-child {
	margin-bottom: 0;
}

.read-more a em,
.read-more .a em {
	font-size: 100%;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	position: relative;
	top: 1px;
	margin: 0 0 0 10px;
}

.read-more a:hover,
.read-more a:focus,
.read-more a:active,
a.box:hover .read-more .a,
a.box:focus .read-more .a,
a.box:active .read-more .a {
	text-decoration: none;
}

.read-more a:hover em,
.read-more a:focus em,
.read-more a:active em,
a.box:hover .read-more .a em,
a.box:focus .read-more .a em,
a.box:active .read-more .a em {
	animation: arrowright 0.5s linear 1;
	-webkit-animation-name: arrowright 0.5s linear 1;
}


/* Social - Links */
.social-links {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	margin-bottom: 60px;
}

.social-links:last-child {
	margin-bottom: 0;
}

.social-links ul {
	float: none;
	display: inline-block;
	vertical-align: middle;
	padding: 0;
	margin: 0 -8px -18px -8px;
}

.social-links ul li {
	float: none;
	display: inline-block;
	vertical-align: bottom;
	padding: 0;
	margin: 0 8px 18px 8px;
}

.social-links ul li:before {
	display: none;
}

.social-links ul li a {
	font-size: 26px;
	color: #365072;
	line-height: 100%;
	text-decoration: none;
}

.social-links ul li a:hover,
.social-links ul li a:focus,
.social-links ul li a:active {
	color: #365072;
	text-decoration: none;
}

@media (max-width: 1199px) {
.social-links {
	margin-bottom: 50px;
}
}

@media (max-width: 767px) {
.social-links {
	margin-bottom: 40px;
}
}


/* Heading - Txt */
.heading-txt {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	font-weight: 300;
	font-size: 28px;
	color: #365072;
	line-height: 150%;
	text-align: center;
	margin-bottom: 60px;
}

.heading-txt:last-child {
	margin-bottom: 0;
}

.heading-txt strong {
	font-weight: 600;
}

.heading-txt p {
	padding-bottom: 20px;
}

.heading-txt p:last-child {
	padding-bottom: 0;
}

.heading-txt .aside {
	width: 100%;
	max-width: 1040px;
	float: none;
	display: inline-block;
	vertical-align: top;
}

.heading-txt .aside.max-700 {
	max-width: 700px;
}

.heading-txt .aside.max-1130 {
	max-width: 1130px;
}

@media (max-width: 1199px) {
.heading-txt {
	font-size: 24px;
	margin-bottom: 50px;
}

.heading-txt .aside.max-700 {
	max-width: 630px;
}
}

@media (max-width: 767px) {
.heading-txt {
	font-size: 22px;
	margin-bottom: 40px;
}

.heading-txt p {
	padding-bottom: 15px;
}

.heading-txt .aside.max-700 {
	max-width: 480px;
}
}

@media (max-width: 479px) {
.heading-txt h2 br,
.heading-txt h3 br,
.heading-txt h4 br,
.heading-txt h5 br,
.heading-txt h6 br {
	display: none;
}
}


/* Heading - Txt2 */
.heading-txt2 {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	font-weight: 300;
	font-size: 22px;
	line-height: 150%;
	margin-bottom: 60px;
}

.heading-txt2:last-child {
	margin-bottom: 0;
}

.heading-txt2 p {
	padding-bottom: 20px;
}

.heading-txt2 p:last-child {
	padding-bottom: 0;
}

.heading-txt2 .aside {
	width: 100%;
	max-width: 1130px;
	float: none;
	display: inline-block;
	vertical-align: top;
}

@media (min-width: 992px) {
.heading-txt2 .aside.max-390 {
	max-width: 390px;
}
}

@media (max-width: 1199px) {
.heading-txt2 {
	margin-bottom: 50px;
}
}

@media (max-width: 767px) {
.heading-txt2 {
	font-size: 20px;
	margin-bottom: 40px;
}

.heading-txt2 p {
	padding-bottom: 15px;
}
}

@media (max-width: 479px) {
.heading-txt2 h2 br,
.heading-txt2 h3 br,
.heading-txt2 h4 br,
.heading-txt2 h5 br,
.heading-txt2 h6 br {
	display: none;
}
}


/* Heading - Split */
.heading-split {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 60px;
}

.heading-split:last-child {
	padding-bottom: 0;
}

.heading-split h1,
.heading-split h2,
.heading-split h3,
.heading-split h4,
.heading-split h5,
.heading-split h6 {
	width: 44%;
	float: left;
	padding: 0 40px 0 0;
	margin: 0;
}

.heading-split .txt {
	width: 56%;
	float: left;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 0;
	margin: 0;
}

.heading-split .txt p {
}

@media (max-width: 1299px) {
.heading-split h1,
.heading-split h2,
.heading-split h3,
.heading-split h4,
.heading-split h5,
.heading-split h6 {
	width: 50%;
}

.heading-split .txt {
	width: 50%;
}
}

@media (max-width: 1199px) {
.heading-split {
	margin-bottom: 50px;
}

.heading-split h1,
.heading-split h2,
.heading-split h3,
.heading-split h4,
.heading-split h5,
.heading-split h6 {
	width: 55%;
}

.heading-split .txt {
	width: 45%;
}
}

@media (max-width: 991px) {
.heading-split h1,
.heading-split h2,
.heading-split h3,
.heading-split h4,
.heading-split h5,
.heading-split h6 {
	width: 60%;
}

.heading-split .txt {
	width: 40%;
}
}

@media (max-width: 767px) {
.heading-split {
	margin-bottom: 40px;
}

.heading-split h1,
.heading-split h2,
.heading-split h3,
.heading-split h4,
.heading-split h5,
.heading-split h6 {
	width: 100%;
	padding: 0 0 20px 0;
}

.heading-split .txt {
	width: 100%;
}

.heading-split .txt p {
	max-width: 100%;
}
}


/* Heading - Split ALT */
.heading-split.alt h2,
.heading-split.alt h3,
.heading-split.alt h4,
.heading-split.alt h5,
.heading-split.alt h6 {
	width: 50%;
}

.heading-split.alt .txt {
	width: 50%;
}

.heading-split.alt .txt p {
	max-width: 405px;
}

@media (max-width: 1299px) {
.heading-split.alt h2,
.heading-split.alt h3,
.heading-split.alt h4,
.heading-split.alt h5,
.heading-split.alt h6 {
	width: 57%;
}

.heading-split.alt .txt {
	width: 43%;
}
}

@media (max-width: 1199px) {
.heading-split.alt h2,
.heading-split.alt h3,
.heading-split.alt h4,
.heading-split.alt h5,
.heading-split.alt h6 {
	width: 60%;
}

.heading-split.alt .txt {
	width: 40%;
}
}

@media (max-width: 767px) {
.heading-split.alt h2,
.heading-split.alt h3,
.heading-split.alt h4,
.heading-split.alt h5,
.heading-split.alt h6 {
	width: 100%;
}

.heading-split.alt .txt {
	width: 100%;
}

.heading-split.alt .txt p {
	max-width: 100%;
}
}


/* Heading - Split ALT2 */
.heading-split.alt2 h2,
.heading-split.alt2 h3,
.heading-split.alt2 h4,
.heading-split.alt2 h5,
.heading-split.alt2 h6 {
	width: 47%;
}

.heading-split.alt2 .txt {
	width: 53%;
}

.heading-split.alt2 .txt p {
	max-width: 390px;
}

@media (max-width: 1299px) {
.heading-split.alt2 h2,
.heading-split.alt2 h3,
.heading-split.alt2 h4,
.heading-split.alt2 h5,
.heading-split.alt2 h6 {
	width: 57%;
}

.heading-split.alt2 .txt {
	width: 43%;
}
}

@media (max-width: 1199px) {
.heading-split.alt2 h2,
.heading-split.alt2 h3,
.heading-split.alt2 h4,
.heading-split.alt2 h5,
.heading-split.alt2 h6 {
	width: 58%;
}

.heading-split.alt2 .txt {
	width: 42%;
}
}

@media (max-width: 767px) {
.heading-split.alt2 h2,
.heading-split.alt2 h3,
.heading-split.alt2 h4,
.heading-split.alt2 h5,
.heading-split.alt2 h6 {
	width: 100%;
}

.heading-split.alt2 .txt {
	width: 100%;
}

.heading-split.alt2 .txt p {
	max-width: 100%;
}
}


/* Heading - Split */
.heading-split2 {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	margin-bottom: 40px;
}

.heading-split2:last-child {
	padding-bottom: 0;
}

.heading-split2 .txt {
	width: 100%;
	float: left;
	padding: 0 360px 0 0;
	margin: 0;
}

.heading-split2 .txt h1,
.heading-split2 .txt h2,
.heading-split2 .txt h3,
.heading-split2 .txt h4,
.heading-split2 .txt h5,
.heading-split2 .txt h6 {
	/* max-width: 700px; */
	max-width: 100%;
	text-wrap: balance;
}

.heading-split2 .btn-out {
	width: 320px;
	float: left;
	text-align: right;
	position: relative;
	z-index: 1;
	margin: 0 0 5px -320px;
}

.heading-split2 .btn-out .btn {
	margin: 0;
}

@media (max-width: 991px) {
.heading-split2 {
	margin-bottom: 50px;
}

.heading-split2 .txt {
	padding: 0 0 30px 0;
}

.heading-split2 .txt h1,
.heading-split2 .txt h2,
.heading-split2 .txt h3,
.heading-split2 .txt h4,
.heading-split2 .txt h5,
.heading-split2 .txt h6 {
	max-width: 100%;
}

.heading-split2 .btn-out {
	width: 100%;
	text-align: left;
	margin: 0;
}
}


/* Blockquote */
.blockquote, blockquote {
	font-size: inherit;
	background: none;
	border: none;
	border-radius: 0;
	overflow: hidden;
	position: relative;
	padding: 0;
	margin: 0 0 60px 0;
}

.blockquote p, blockquote p {
	font-family: "Libre Baskerville", serif;
	font-size: 35px;
	color: #46734d;
	line-height: 140%;
	letter-spacing: -0.7px;
	position: relative;
	padding: 5px 0 5px 35px;
	margin: 0 0 20px 0;
}

.blockquote p:last-child, blockquote p:last-child {
	margin-bottom: 0;
}

.blockquote p:before, blockquote p:before {
	content: "";
	width: 6px;
	height: 100%;
	background: url(../img/divider-vertical.png) no-repeat center center;
	background-size: 100% 100%;
	overflow: hidden;
	position: absolute;
	left: 0;
}

.blockquote .name, blockquote .name {
	padding-left: 35px;
}

@media (max-width: 1199px) {
.blockquote, blockquote {
	margin-bottom: 50px;
}

.blockquote p, blockquote p {
	font-size: 30px;
	letter-spacing: -0.6px;
}
}

@media (max-width: 767px) {
.blockquote, blockquote {
	margin-bottom: 40px;
}

.blockquote p, blockquote p {
	font-size: 24px;
	letter-spacing: normal;
	padding-left: 27px;
}

.blockquote p:before, blockquote p:before {
	width: 4px;
}

.blockquote .name, blockquote .name {
	padding-left: 27px;
}
}


/* CTA - Box */
.cta-box {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	color: #ffffff;
	background: #365072;
	overflow: hidden;
	position: relative;
	z-index: 1;
	padding: 75px 8.5% 75px 8.5%;
	margin-bottom: 60px;
}

.cta-box:before {
	content: "";
	width: 100%;
	height: 13px;
	background: url(../img/divider-horizontal-reverse.png) no-repeat center center;
	background-size: 100% 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

.cta-box:last-child {
	margin-bottom: 0;
}

.cta-box h1,
.cta-box h2,
.cta-box h3,
.cta-box h4,
.cta-box h5,
.cta-box h6 {
	color: inherit;
}

@media (max-width: 1199px) {
.cta-box {
	margin-bottom: 50px;
}
}

@media (max-width: 767px) {
.cta-box {
	padding: 63px 25px 53px 25px;
	margin-bottom: 40px;
}
}


/* Accordion - Items */
.accord-items {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	border-top: 1px solid #64a5ce;
	margin-bottom: 60px;
}

.accord-items:last-child {
	margin-bottom: 0;
}

.accord-items .accord-item {
	width: 100%;
	float: left;
	border-bottom: 1px solid #64a5ce;
}

.accord-items .accord-header {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
}

.accord-items .accord-header a {
	width: 100%;
	float: left;
	font-weight: 600;
	font-size: 28px;
	color: #365072;
	line-height: 130%;
	text-decoration: none;
	position: relative;
	padding: 30px 80px 30px 0;
}

.accord-items .accord-header a:after {
	content:"\f067";
	font-family: "Font Awesome 5 Pro";
	font-weight: 300;
	font-size: 100%;
	color: #5499c8;
	line-height: 1em;
	-webkit-transition: all 0.25s ease-out;
	-moz-transition: all 0.25s ease-out;
	-o-transition: all 0.25s ease-out;
	transition: all 0.25s ease-out;
	position: absolute;
	top: 50%;
	right: 30px;
	-ms-transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	transform: translate(0, -50%);
}

.accord-items .accord-item.active .accord-header a:after {
	content: "\f068";
}

.accord-items .accord-body {
	width: 100%;
	padding: 0 80px 30px 0;
}

@media (max-width: 1199px) {
.accord-items {
	margin-bottom: 50px;
}

.accord-items .accord-header a {
	font-size: 24px;
	padding: 30px 70px 30px 0;
}

.accord-items .accord-header a:after {
	right: 20px;
}

.accord-items .accord-body {
	padding: 0 70px 30px 0;
}
}

@media (max-width: 767px) {
.accord-items {
	margin-bottom: 40px;
}

.accord-items .accord-header a {
	font-size: 20px;
	padding: 25px 50px 25px 0;
}

.accord-items .accord-header a:after {
	right: 0;
}

.accord-items .accord-body {
	padding: 0 0 25px 0;
}
}

@media (max-width: 369px) {
.accord-items .accord-header a {
	font-size: 18px;
}
}


/* Accordion - Items ALT */
.accord-items.alt {
	border-top: none;
}

.accord-items.alt .accord-item {
	border-bottom: none;
	margin-bottom: 10px;
}

.accord-items.alt .accord-item:last-child {
	margin-bottom: 0;
}

.accord-items.alt .accord-header a {
	font-size: 22px;
	color: #ffffff;
	background: #365072;
	padding: 15px 55px 15px 23px;
}

.accord-items.alt .accord-header a:before {
	content: "";
	width: 0;
	height: 100%;
	background: #f5ba36;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.accord-items.alt .accord-header a:after {
	font-size: 110%;
	color: inherit;
	right: 15px;
}

.accord-items.alt .accord-header a:hover:before,
.accord-items.alt .accord-header a:focus:before,
.accord-items.alt .accord-header a:active:before,
.accord-items.alt .accord-item.active .accord-header a:before {
	width: 8px;
}

.accord-items.alt .accord-body {
	color: #365072;
	background: #ffffff;
	padding: 23px;
}

.accord-items.alt .accord-body .figure {
	margin-top: 7px;
}

@media (max-width: 767px) {
.accord-items.alt .accord-header a {
	font-size: 20px;
}
}

/* Accordion Band Column Widths */
@media (min-width: 992px) {
.accordion-col-left {
	flex: 0 0 40%;
	max-width: 40%;
}

.accordion-col-right {
	flex: 0 0 60%;
	max-width: 60%;
}

.accordion-col-left .heading-txt2 .aside.max-390 {
	max-width: 100%;
}
}


/* Form - Block */
.form-block {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	margin-bottom: 60px;
}

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

.form-block form {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	padding: 0;
	margin: 0;
}

.form-block ul {
	display: flex;
	flex-wrap: wrap;
	padding: 0;
	margin: 0 -20px -30px -20px;
}

.form-block ul li {
	width: 100%;
	float: left;
	padding: 0 20px;
	margin: 0 0 30px 0;
}

.form-block ul li:before {
	display: none;
}

.form-block ul li.half-width {
	width: 50%;
}

.form-block .btn-out {
	margin: 35px 0 25px 0;
}

.form-block .btn-out:last-child {
	margin-bottom: 0;
}

.form-block .term-txt {
	font-size: 16px;
	line-height: 24px;
}

@media (max-width: 1199px) {
.form-block {
	margin-bottom: 50px;
}
}

@media (max-width: 767px) {
.form-block {
	margin-bottom: 40px;
}

.form-block ul {
	margin: 0 -15px -25px -15px;
}

.form-block ul li {
	padding: 0 15px;
	margin: 0 0 25px 0;
}

.form-block ul li.half-width {
	width: 100%;
}

.form-block .btn-out {
	margin: 35px 0 35px 0;
}
}


/* Form - Box */
.form-box {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	background: #ffffff;
	padding: 45px;
	margin-bottom: 60px;
}

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

.form-box .txt {
	color: #365072;
	margin-bottom: 30px;
}

.form-box .txt:last-child {
	margin-bottom: 0;
}

@media (max-width: 1199px) {
.form-box {
	padding: 35px;
	margin-bottom: 50px;
}
}

@media (min-width: 992px) and (max-width: 1199px) {
.form-box p br {
	display: none;
}
}

@media (max-width: 767px) {
.form-box {
	padding: 35px 25px;
	margin-bottom: 40px;
}
}

@media (max-width: 479px) {
.form-box p br {
	display: none;
}
}


/* Search - Box */
.search-box {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	margin-bottom: 60px;
}

.search-box:last-child {
	margin-bottom: 0;
}

.search-box form {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	position: relative;
	padding: 0;
	margin: 0;
}

.search-box select,
.search-box textarea,
.search-box input[type="text"],
.search-box input[type="password"],
.search-box input[type="datetime"],
.search-box input[type="datetime-local"],
.search-box input[type="date"],
.search-box input[type="month"],
.search-box input[type="time"],
.search-box input[type="week"],
.search-box input[type="number"],
.search-box input[type="email"],
.search-box input[type="url"],
.search-box input[type="search"],
.search-box input[type="tel"],
.search-box input[type="color"],
.search-box .uneditable-input {
	height: 65px;
	font-size: 20px;
	color: #365072;
	line-height: 26px;
	border-radius: 900px;
	padding: 13px 30px 13px 72px;
}

.search-box select.colorize expand-item:not([disabled]) {
	color: #365072;
}

.search-box select.colorize expand-item.def:not([disabled]),
.search-box select.colorize.empty:not([disabled]) {
	color: #365072;
}

.search-box ::-webkit-input-placeholder,
.search-box ::-webkit-textarea-placeholder {
	color: #365072;
}

.search-box input::-moz-placeholder,
.search-box textarea::-moz-placeholder {
	color: #365072;
}

.search-box ::-moz-placeholder {
	color: #365072;
}

.search-box ::-ms-input-placeholder {
	color: #365072;
}

.search-box .btn,
.search-box input[type="button"],
.search-box input[type="submit"] {
	min-width: inherit;
	width: 22px;
	height: 100%;
	float: right;
	background-color: transparent;
	background-image: url(../img/search.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 20px auto;
	box-shadow: none;
	border-radius: 900px 0 0 900px;
	border: none;
	text-indent: -9999px;
	outline: 0;
	position: absolute;
	top: 0;
	left: 35px;
	padding: 0;
	margin: 0;
	z-index: 1;
}

.search-box .btn:hover,
.search-box .btn:focus,
.search-box .btn:active,
.search-box .btn:active:focus,
.search-box .btn.active,
.search-box .btn.active:focus,
.search-box input[type="button"]:hover,
.search-box input[type="button"]:focus,
.search-box input[type="button"]:active,
.search-box input[type="button"]:active:focus,
.search-box input[type="button"].active,
.search-box input[type="button"].active:focus,
.search-box input[type="submit"]:hover,
.search-box input[type="submit"]:focus,
.search-box input[type="submit"]:active,
.search-box input[type="submit"]:active:focus,
.search-box input[type="submit"].active,
.search-box input[type="submit"].active:focus,
.search-box .btn:not(:disabled):not(.disabled).active,
.search-box .btn:not(:disabled):not(.disabled):active  {
	background-color: transparent;
}

@media (max-width: 1199px) {
.search-box {
	margin-bottom: 50px;
}
}

@media (max-width: 767px) {
.search-box {
	margin-bottom: 40px;
}

.search-box select,
.search-box textarea,
.search-box input[type="text"],
.search-box input[type="password"],
.search-box input[type="datetime"],
.search-box input[type="datetime-local"],
.search-box input[type="date"],
.search-box input[type="month"],
.search-box input[type="time"],
.search-box input[type="week"],
.search-box input[type="number"],
.search-box input[type="email"],
.search-box input[type="url"],
.search-box input[type="search"],
.search-box input[type="tel"],
.search-box input[type="color"],
.search-box .uneditable-input {
	height: 55px;
	font-size: 18px;
	line-height: 24px;
	padding: 10px 30px 10px 67px;
}

.search-box .btn,
.search-box input[type="button"],
.search-box input[type="submit"] {
	left: 30px;
}
}


/* Search - Box2 */
.search-box2 {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	margin-bottom: 60px;
}

.search-box2:last-child {
	margin-bottom: 0;
}

.search-box2 select,
.search-box2 textarea,
.search-box2 input[type="text"],
.search-box2 input[type="password"],
.search-box2 input[type="datetime"],
.search-box2 input[type="datetime-local"],
.search-box2 input[type="date"],
.search-box2 input[type="month"],
.search-box2 input[type="time"],
.search-box2 input[type="week"],
.search-box2 input[type="number"],
.search-box2 input[type="email"],
.search-box2 input[type="url"],
.search-box2 input[type="search"],
.search-box2 input[type="tel"],
.search-box2 input[type="color"],
.search-box2 .uneditable-input {
	height: 65px;
	font-size: 20px;
	color: #365072;
	line-height: 26px;
	background-image: url(../img/search.svg);
	background-repeat: no-repeat;
	background-position: 35px center;
	border-radius: 900px;
	padding: 13px 30px 13px 72px;
}

.search-box2 select.colorize expand-item:not([disabled]) {
	color: #365072;
}

.search-box2 select.colorize expand-item.def:not([disabled]),
.search-box2 select.colorize.empty:not([disabled]) {
	color: #365072;
}

.search-box2 ::-webkit-input-placeholder,
.search-box2 ::-webkit-textarea-placeholder {
	color: #365072;
}

.search-box2 input::-moz-placeholder,
.search-box2 textarea::-moz-placeholder {
	color: #365072;
}

.search-box2 ::-moz-placeholder {
	color: #365072;
}

.search-box2 ::-ms-input-placeholder {
	color: #365072;
}

@media (max-width: 1199px) {
.search-box2 {
	margin-bottom: 50px;
}
}

@media (max-width: 767px) {
.search-box2 {
	margin-bottom: 40px;
}

.search-box2 select,
.search-box2 textarea,
.search-box2 input[type="text"],
.search-box2 input[type="password"],
.search-box2 input[type="datetime"],
.search-box2 input[type="datetime-local"],
.search-box2 input[type="date"],
.search-box2 input[type="month"],
.search-box2 input[type="time"],
.search-box2 input[type="week"],
.search-box2 input[type="number"],
.search-box2 input[type="email"],
.search-box2 input[type="url"],
.search-box2 input[type="search"],
.search-box2 input[type="tel"],
.search-box2 input[type="color"],
.search-box2 .uneditable-input {
	height: 55px;
	font-size: 18px;
	line-height: 24px;
	background-position: 30px center;
	padding: 10px 30px 10px 67px;
}
}


/* Breadcrumb */
.breadcrumb-cont {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	margin-bottom: 60px;
}

.breadcrumb-cont:last-child {
	margin-bottom: 0;
}

.breadcrumb-cont p span {
	display: inline-block;
}

.breadcrumb-cont ul,
.breadcrumb-cont p > span {
	float: left;
	background: none;
	border-radius: 0;
	padding: 0;
	margin: 0 -20px -15px 0;
}

.breadcrumb-cont li,
.breadcrumb-cont p > span > span {
	float: left;
	font-weight: 600;
	font-size: 16px;
	color: #444444;
	line-height: 120%;
	padding: 0 19px 0 0;
	margin: 0 11px 15px 0;
	position: relative;
}

.breadcrumb-cont li:before,
.breadcrumb-cont p > span > span:before {
	display: none;
}

.breadcrumb-cont li:after,
.breadcrumb-cont p > span > span:after {
	content: "/";
	font-weight: 300;
	font-size: 120%;
	line-height: 1em;
	-webkit-transition: all 0.25s ease-out;
	-moz-transition: all 0.25s ease-out;
	-o-transition: all 0.25s ease-out;
	transition: all 0.25s ease-out;
	position: absolute;
	top: 50%;
	right: 0;
	-ms-transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	transform: translate(0, -50%);
	margin: 0;
}

.breadcrumb-cont li:last-child:after,
.breadcrumb-cont p > span > span:last-child:after {
	display: none;
}

.breadcrumb-cont li a,
.breadcrumb-cont li .a,
.breadcrumb-cont p > span > span > a,
.breadcrumb-cont p > span > span > .a {
	font-weight: 300;
	color: inherit;
	text-decoration: underline;
}

.breadcrumb-cont li a:hover,
.breadcrumb-cont li a:focus,
.breadcrumb-cont li a:active,
.breadcrumb-cont p > span > span > a:hover,
.breadcrumb-cont p > span > span > a:focus,
.breadcrumb-cont p > span > span > a:active {
	color: #365072;
	text-decoration: none;
}

@media (max-width: 1199px) {
.breadcrumb-cont {
	margin-bottom: 50px;
}
}

@media (max-width: 767px) {
.breadcrumb-cont {
	margin-bottom: 40px;
}
}


/* Pagination */
.pagination-out {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	text-align: center;
	margin-top: 80px;
}

.pagination-out nav {
	padding: 0;
	margin: 0;
}

.pagination-out nav ul {
	width: auto;
	float: none;
	display: inline-block;
	vertical-align: top;
	background: #edf2f4;
	border-radius: 900px;
	overflow: hidden;
	border: none;
	padding: 10px 30px;
	margin: 0;
}

.pagination-out nav ul li {
	height: 36px;
	float: left;
	padding: 0 2px;
	margin: 0;
}

.pagination-out nav ul li:before {
	display: none;
}

.pagination-out nav ul li.page-item.active .page-link {
	z-index: inherit;
}

.pagination-out nav ul li a,
.pagination-out nav ul li span {
	width: 36px;
	height: 36px;
	float: left;
	font-weight: 400;
	font-size: 18px;
	color: #365072!important;
	line-height: 36px;
	text-align: center;
	text-decoration: none;
	border: none;
	background: none!important;
	box-shadow: none;
	border-radius: 900px;
	position: relative;
	z-index: 1;
	padding: 0;
	margin: 0;
}

.pagination-out nav ul li.page-item:first-child .page-link,
.pagination-out nav ul li.page-item:last-child .page-link{
	border-radius: 900px;
}

.pagination-out nav ul li a:hover,
.pagination-out nav ul li a:focus,
.pagination-out nav ul li a:active,
.pagination-out nav ul li.active a,
.pagination-out nav ul li.active span {
	color: #ffffff!important;
	background: #365072!important;
}

.pagination-out nav ul li .dotted {
	font-size: 24px;
	color: #365072;
	line-height: 32px;
	position: relative;
	top: -5px;
	margin: 0 6px;
}

.pagination-out nav ul li.previous {
	border: none;
	padding: 0;
	margin: 0 20px 0 0;
}

.pagination-out nav ul li.next {
	border: none;
	padding: 0;
	margin: 0 0 0 20px;
}

.pagination-out nav ul li.previous a,
.pagination-out nav ul li.next a {
	width: auto;
	height: 36px;
	background: none!important;
	border-radius: 0;
	padding: 0;
	margin: 0;
}

.pagination-out nav ul li.previous a:hover,
.pagination-out nav ul li.previous a:focus,
.pagination-out nav ul li.previous a:active,
.pagination-out nav ul li.next a:hover,
.pagination-out nav ul li.next a:focus,
.pagination-out nav ul li.next a:active {
	color: #365072!important;
}

.pagination-out nav ul li.disabled a {
	cursor: default;
}

@media (max-width: 1199px) {
.pagination-out {
	margin-top: 70px;
}
}

@media (max-width: 767px) {
.pagination-out {
	margin-top: 50px;
}

.pagination-out nav {
	margin: 0 -25px;
}

.pagination-out nav ul {
	padding: 10px 25px;
}

.pagination-out nav ul li {
	height: 30px;
}

.pagination-out nav ul li a {
	width: 30px;
	height: 30px;
	font-size: 16px;
	line-height: 30px;
}

.pagination-out nav ul li .dotted {
	font-size: 22px;
	top: -7px;
	margin: 0 4px;
}

.pagination-out nav ul li.previous {
	padding: 0;
	margin: 0 15px 0 0;
}

.pagination-out nav ul li.next {
	padding: 0;
	margin: 0 0 0 15px;
}

.pagination-out nav ul li.previous a,
.pagination-out nav ul li.next a {
	width: auto;
	height: 30px;
}
}


/*
 3.) Header - Main
----------------------------------------*/

.header-main {
	width: 100%;
	height: 140px;
	float: left;
	background: #365072;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9;
}

.header-main:before {
	content: "";
	width: 100%;
	height: 50px;
	background: #edf2f4;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.header-main:after {
	content: "";
	width: 40px;
	height: 90px;
	background: url(../img/divider-header.png) no-repeat center center;
	background-size: 100% 100%;
	position: absolute;
	bottom: 0;
	left: 18px;
	z-index: 1;
}

.fixed-scrollup .header-main {
	position: fixed;
}

@media (min-width: 992px) {
.header-main .container {
	max-width: 1480px;
}
}

@media (max-width: 1579px) {
.header-main:after {
	width: 20px;
	height: 90px;
	left: 0;
}
}

@media (max-width: 1199px) {
.header-main {
	height: 100px;
	padding-top: 10px;
}

.header-main:before {
	height: 10px;
	background: url(../img/divider-horizontal.png) no-repeat right center;
	background-size: 100% 100%;
}

.header-main:after {
	display: none;
}
}

@media (max-width: 767px) {
.header-main {
	height: 85px;
	padding-top: 5px;
}

.header-main:before {
	height: 5px;
}
}


/* Top - Bar */
.header-main .top-bar {
	width: 100%;
	height: 50px;
	float: left;
	position: relative;
	z-index: 11;
}

.header-main .top-bar .top-inn {
	float: right;
}

.header-main .top-bar .top-menu {
	float: left;
}

.header-main .top-bar .top-menu ul {
	float: left;
	padding: 0;
	margin: 0 0 0 -30px;
}

.header-main .top-bar .top-menu ul li {
	float: left;
	padding: 0;
	margin: 0 0 0 30px;
}

.header-main .top-bar .top-menu ul li:before {
	display: none;
}

.header-main .top-bar .top-menu ul li > a {
	height: 50px;
	float: left;
	font-weight: 400;
	font-size: 16px;
	color: #365072;
	line-height: 50px;
	text-decoration: none;
	position: relative;
}

.header-main .top-bar .top-menu ul li:hover > a,
.header-main .top-bar .top-menu ul li > a:focus,
.header-main .top-bar .top-menu ul li.nav-menu-open > a,
.header-main .top-bar .top-menu ul li.current-menu-item > a,
.header-main .top-bar .top-menu ul li.current-menu-parent > a,
.header-main .top-bar .top-menu ul li.current-menu-ancestor > a,
.header-main .top-bar .top-menu ul li.current_page_parent > a{
	color: #365072;
	text-decoration: underline;
}

.header-main .top-bar .search-box {
	width: auto;
	height: 42px;
	float: left;
	line-height: 1em;
	background: #5499C842;
	border-radius: 900px;
	position: relative;
	z-index: 2;
	margin: 4px 0 4px 30px;
}

.header-main .top-bar .search-box form {
	width: 42px;
	float: left;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	overflow: hidden;
	padding: 0 0 0 42px;
	margin: 0;
}

.header-main .top-bar .search-box select,
.header-main .top-bar .search-box textarea,
.header-main .top-bar .search-box input[type="text"],
.header-main .top-bar .search-box input[type="password"],
.header-main .top-bar .search-box input[type="datetime"],
.header-main .top-bar .search-box input[type="datetime-local"],
.header-main .top-bar .search-box input[type="date"],
.header-main .top-bar .search-boxinput[type="month"],
.header-main .top-bar .search-box input[type="time"],
.header-main .top-bar .search-box input[type="week"],
.header-main .top-bar .search-box input[type="number"],
.header-main .top-bar .search-box input[type="email"],
.header-main .top-bar .search-box input[type="url"],
.header-main .top-bar .search-box input[type="search"],
.header-main .top-bar .search-box input[type="tel"],
.header-main .top-bar .search-box input[type="color"],
.header-main .top-bar .search-box .uneditable-input {
	width: 100%;
	height: 42px;
	font-size: 16px;
	line-height: 20px;
	background: none;
	border-radius: 0;
	box-shadow: none;
	border: none;
	padding: 10px 20px 10px 0;
	margin: 0;
}

.header-main .top-bar .search-box .btn,
.header-main .top-bar .search-box input[type="button"],
.header-main .top-bar .search-box input[type="submit"] {
	min-width: inherit;
	width: 42px;
	height: 42px;
	float: right;
	background: url(../img/search.svg) no-repeat center center;
	background-size: 16px auto;
	border-radius: 0;
	box-shadow: none;
	border: none;
	text-indent: -99999px;
	z-index: 2;
	opacity: 1;
	position: absolute;
	top: 0;
	left: 0;
	padding: 0;
	margin: 0;
}

.header-main .top-bar .search-box .btn:hover,
.header-main .top-bar .search-box .btn:focus,
.header-main .top-bar .search-box .btn:active,
.header-main .top-bar .search-box .btn:active:focus,
.header-main .top-bar .search-box .btn.active,
.header-main .top-bar .search-box .btn.active:focus,
.header-main .top-bar .search-box input[type="button"]:hover,
.header-main .top-bar .search-box input[type="button"]:focus,
.header-main .top-bar .search-box input[type="button"]:active,
.header-main .top-bar .search-box input[type="button"]:active:focus,
.header-main .top-bar .search-box input[type="button"].active,
.header-main .top-bar .search-box input[type="button"].active:focus,
.header-main .top-bar .search-box input[type="submit"]:hover,
.header-main .top-bar .search-box input[type="submit"]:focus,
.header-main .top-bar .search-box input[type="submit"]:active,
.header-main .top-bar .search-box input[type="submit"]:active:focus,
.header-main .top-bar .search-box input[type="submit"].active,
.header-main .top-bar .search-box input[type="submit"].active:focus,
.header-main .top-bar .search-box .btn:not(:disabled):not(.disabled):active  {
	background-color: transparent;
}

.header-main .top-bar .search-box.btn-disabled form .btn,
.header-main .top-bar .search-box.btn-disabled form input[type="button"],
.header-main .top-bar .search-box.btn-disabled form input[type="submit"] {
	cursor: not-allowed;
	pointer-events: none;
}

.header-main .top-bar .search-box:hover form,
.header-main .top-bar .search-box.open form {
	width: 200px;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	overflow: visible;
}

@media (min-width: 1300px) {
.header-main .top-bar .top-menu ul li > a {
	font-size: 18px;
}
}

@media (max-width: 1199px) {
.header-main .top-bar {
	display: none;
}
}


/* Site - Brand */
.header-main .brand {
	height: 90px;
	float: left;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
	z-index: 10;
	padding: 0;
	margin: 0 -500px 0 0;
}

.header-main .brand img {
	width: 100%;
	max-width: 229px;
	display: inline-block;
	vertical-align: top;
}

@media (max-width: 1399px) {
.header-main .brand img {
	max-width: 185px;
}
}

@media (max-width: 1199px) {
.header-main .brand {
	height: 90px;
}
}

@media (max-width: 767px) {
.header-main .brand {
	width: 100%;
	height: 80px;
	padding-right: 60px;
	margin: 0;
}

.header-main .brand img {
	max-width: 170px;
}
}


/* Middle - Bar */
.header-main .middle-bar {
	width: 100%;
	float: left;
}

.header-main .mega-menu {
	display: none;
}

@media (min-width: 1200px) {
.header-main .nav-bar {
	float: right;
}

.header-main .nav-bar .nav-max,
.header-main .nav-bar .nav-inn {
	float: left;
}

/* Primary - Menu */
.header-main .primary-menu {
	float: left;
}

.header-main .primary-menu ul {
	float: left;
	padding: 0;
	margin: 0 0 0 -30px;
}

.header-main .primary-menu ul li {
	height: 90px;
	float: left;
	padding: 25px 0;
	margin: 0 0 0 30px;
}

.header-main .primary-menu ul li:before {
	display: none;
}

.header-main .primary-menu ul li > a {
	height: 40px;
	float: left;
	font-weight: 600;
	font-size: 16px;
	color: #ffffff;
	line-height: 40px;
	text-decoration: none;
	position: relative;
	overflow: hidden;
}

.header-main .primary-menu ul li > a:before {
	content: "";
	width: 0;
	height: 2px;
	float: left;
	background: #f5ba36;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
	opacity: 0;
}

.header-main .primary-menu ul li.menu-mb {
	display: none;
}

.header-main .primary-menu ul li:hover > a,
.header-main .primary-menu ul li > a:focus,
.header-main .primary-menu ul li.nav-menu-open > a,
.header-main .primary-menu ul li.current-menu-item > a,
.header-main .primary-menu ul li.current-menu-parent > a,
.header-main .primary-menu ul li.current-menu-ancestor > a {
	color: #f5ba36;
	text-decoration: none;
}

.header-main .primary-menu ul li:hover > a:before,
.header-main .primary-menu ul li > a:focus:before,
.header-main .primary-menu ul li.nav-menu-open > a:before,
.header-main .primary-menu ul li.current-menu-item > a:before,
.header-main .primary-menu ul li.current-menu-parent > a:before,
.header-main .primary-menu ul li.current-menu-ancestor > a:before {
	width: 27px;
	opacity: 1;
}

.header-main .primary-menu ul li > ul {
	width: 290px;
	float: left;
	background: #ffffff;
	box-shadow: 0px 4px 30px 0px #0000001A;
	border-radius: 0 0 10px 10px;
	transition: all .2s ease-in-out;
	transform-origin: left top;
	transform: scaleY(0);
	visibility: hidden;
	opacity: 0;
	display: block!important;
	position: absolute;
	top: 100%;
	left: -30px;
	z-index: 1;
	padding: 11px 0;
	margin: 0;
}

.header-main .primary-menu ul li > a:focus+ul,
.header-main .primary-menu ul li:hover > ul,
.header-main .primary-menu ul li.nav-menu-open > ul {
	transform: scaleY(1);
	visibility: visible;
	opacity: 1;
}

.header-main .primary-menu ul li > ul li {
	width: 100%;
	height: auto;
	float: left;
	padding: 0;
	margin: 0;
}

.header-main .primary-menu ul li > ul li > a {
	width: 100%;
	height: auto;
	color: #365072;
	line-height: 20px;
	padding: 11px 30px;
}

.header-main .primary-menu ul li > ul li > a:hover,
.header-main .primary-menu ul li > ul li > a:focus,
.header-main .primary-menu ul li > ul li.nav-menu-open > a,
.header-main .primary-menu ul li > ul li.current-menu-item > a,
.header-main .primary-menu ul li > ul li.current-menu-parent > a,
.header-main .primary-menu ul li > ul li.current-menu-ancestor > a {
	color: #365072;
	background: #f5ba36;
}

.header-main .nav-bar .btn-donate {
	float: left;
	margin: 17.5px 0 17.5px 30px;
}

.header-main .nav-bar .btn-donate a {
	min-width: inherit;
	height: 55px;
	font-size: 16px;
	line-height: 55px;
	padding: 0 30px;
}

.header-main .nav-bar .btn-donate a:after {
	display: none;
}

.header-main .nav-bar .search-box {
	float: left;
	display: none;
}

/* Mega - Menu */
.header-main .primary-menu ul li.mega-menu-item {
	position: static;
}

.header-main .primary-menu ul li .mega-menu {
	display: block!important;
	width: 100%;
	float: left;
	color: #365072;
	background: #ffffff;
	box-shadow: 0px 4px 30px 0px #0000001A;
	border-radius: 0 0 10px 10px;
	transition: all .2s ease-in-out;
	transform-origin: left top;
	overflow: hidden;
	visibility: hidden;
	opacity: 0;
	position: absolute;
	top: 140px;
	left: 0;
	-ms-transform: scaleY(0) translate(0, 0);
	-webkit-transform: scaleY(0) translate(0, 0);
	-moz-transform: scaleY(0) translate(0, 0);
	-o-transform: scaleY(0) translate(0, 0);
	transform: scaleY(0) translate(0, 0);
	z-index: 9999;
	padding: 50px 0;
}

.header-main .primary-menu ul li.mega-menu-item:hover > .mega-menu,
.header-main .primary-menu ul li.mega-menu-item.nav-menu-open .mega-menu {
	-ms-transform: scaleY(1) translate(0, 0);
	-webkit-transform: scaleY(1) translate(0, 0);
	-moz-transform: scaleY(1) translate(0, 0);
	-o-transform: scaleY(1) translate(0, 0);
	transform: scaleY(1) translate(0, 0);
	visibility: visible;
	opacity: 9999;
}

.header-main .primary-menu ul li .mega-menu .mega-menu-inn {
	width: 100%;
	max-width: 1440px;
	padding: 0 40px;
	margin: 0 auto;
}

.header-main .primary-menu ul li .mega-menu .aside-links {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -25px -45px -25px;
}

.header-main .primary-menu ul li .mega-menu .aside {
	width: 33.33333333333333%;
	float: left;
	padding: 0 25px 45px 25px;
}

.header-main .primary-menu ul li .mega-menu .aside .box {
	width: 100%;
	height: 100%;
	float: left;
	font-weight: 600;
	font-size: 16px;
	color: #365072;
	line-height: 140%;
	text-align: left;
	text-decoration: none;
	position: relative;
	padding: 0 0 0 28px;
}

.header-main .primary-menu ul li .mega-menu .aside .box .bx-title i {
	content: "\f3c5";
	font-family: "Font Awesome\ 5 Pro";
	font-weight: 900;
	font-size: 22px;
	color: #5499C8;
	line-height: 100%;
	position: absolute;
	top: 8px;
	left: 0;
}

.header-main .primary-menu ul li .mega-menu .aside .box .bx-title {
	font-weight: 600;
	font-size: 24px;
	line-height: 130%;
	/* cursor: default;
	pointer-events: none; */
	margin-bottom: 20px;
}

.header-main .primary-menu ul li .mega-menu .aside .box .bx-title a {
	text-decoration: none;
}

.header-main .primary-menu ul li .mega-menu .aside .box .bx-title a:focus,
.header-main .primary-menu ul li .mega-menu .aside .box .bx-title a:hover,
.header-main .primary-menu ul li .mega-menu .aside .box .bx-title a:active {
	text-decoration: underline;
}

.header-main .primary-menu ul li .mega-menu .aside .box .bx-title:last-child {
	margin-bottom: 0;
}

.header-main .primary-menu ul li .mega-menu .aside .box p {
	padding-bottom: 20px;
}

.header-main .primary-menu ul li .mega-menu .aside .box p:last-child {
	padding-bottom: 0;
}

.header-main .primary-menu ul li .mega-menu .aside .box ul {
	display: flex;
	flex-wrap: wrap;
	padding: 0;
	margin: 0 0 -20px 0;
}

.header-main .primary-menu ul li .mega-menu .aside .box ul li {
	width: 100%;
	height: auto;
	padding: 0;
	margin: 0 0 20px 0;
}

.header-main .primary-menu ul li .mega-menu .aside .box ul li a {
	height: auto;
	font-weight: inherit;
	font-size: inherit;
	color: inherit;
	line-height: inherit;
	text-decoration: none;
}

.header-main .primary-menu ul li .mega-menu .aside .box ul li a:before,
.header-main .primary-menu ul li .mega-menu .aside .box ul li a:after {
	display: none;
}

.header-main .primary-menu ul li .mega-menu .aside .box ul li > a:hover,
.header-main .primary-menu ul li .mega-menu .aside .box ul li > a:focus,
.header-main .primary-menu ul li .mega-menu .aside .box ul li.nav-menu-open > a,
.header-main .primary-menu ul li .mega-menu .aside .box ul li.current-menu-item > a,
.header-main .primary-menu ul li .mega-menu .aside .box ul li.current-menu-parent > a,
.header-main .primary-menu ul li .mega-menu .aside .box ul li.current-menu-ancestor > a {
	text-decoration: underline;
}

.overlay-menu-xl {
	width: 100%;
	height: 100%;
	float: left;
	background: rgba(0, 0, 0, .50);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 8;
	visibility: hidden;
	opacity: 0;
}

.overlay-menu-xl.show-over {
	visibility: visible;
	opacity: 1;
}

.overlay-megamenu-xl {
	width: 100%;
	height: 100%;
	float: left;
	background: rgba(0, 0, 0, .50);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 8;
	visibility: hidden;
	opacity: 0;
}

.overlay-megamenu-xl.show-over {
	visibility: visible;
	opacity: 1;
}
}

@media (min-width: 1300px) {
.header-main .primary-menu ul {
	margin-left: -35px;
}

.header-main .primary-menu ul li {
	margin-left: 35px;
}

.header-main .primary-menu ul li > a {
	font-size: 18px;
}

.header-main .primary-menu ul li > ul {
	width: 322px;
}

.header-main .primary-menu ul li > ul li > a {
	line-height: 22px;
}

.header-main .nav-bar .btn-donate {
	margin-left: 35px;
}

.header-main .nav-bar .btn-donate a {
	font-size: 18px;
}

.header-main .primary-menu ul li .mega-menu .aside .box {
	font-size: 18px;
}

.header-main .primary-menu ul li .mega-menu .aside .box .bx-title {
	font-size: 28px;
}
}

@media (min-width: 1400px) {
.header-main .primary-menu ul {
	margin-left: -40px;
}

.header-main .primary-menu ul li {
	margin-left: 40px;
}

.header-main .nav-bar .btn-donate {
	margin-left: 40px;
}
}

@media (max-width: 1199px) {
.hiddenscroll-menu {
	overflow: hidden;
}

.header-main .overlay-menu {
	width: 100%;
	height: 100%;
	float: left;
	background: #000000;
	position: fixed;
	top: 100px;
	left: 0;
	z-index: 7;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: top .15s ease-out;
	-moz-transition: top .15s ease-out;
	transition: top .15s ease-out;
	overflow: hidden;
}

.header-main .overlay-menu.active {
	visibility: visible;
	opacity: .70;
	-webkit-transition: opacity .2s ease-out;
	-moz-transition: opacity .2s ease-out;
	transition: opacity .2s ease-out;
}

.mega-menu .aside-links a {
	margin-left: 20px;
}

/* Nav - Bar */
.header-main .nav-bar {
	width: 100%;
	max-width: 420px;
	height: 100%;
	float: right;
	overflow: hidden;
	visibility: hidden;
	position: fixed;
	top: 0;
	right: -100%;
	z-index: 9;
	padding: 100px 0 0 0;
}

.header-main .nav-bar:before {
	content: "";
	width: 150%;
	height: 100%;
	box-shadow: inset 0px 3px 12px #00000029;
	position: absolute;
	top: 100px;
	left: -25%;
}

.header-main .nav-bar.active {
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	visibility: visible;
	right: 0;
}

.header-main .nav-bar .nav-max {
	width: 100%;
	height: 100%;
	float: left;
	text-align: center;
	background: #ffffff;
	overflow: auto;
	overflow-x: hidden;
}

.header-main .nav-bar .nav-inn {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	text-align: left;
	padding: 17px 40px 50px 40px;
}


/* Primary - Menu */
.header-main .primary-menu {
	width: 100%;
	float: left;
	margin-bottom: 45px;
}

.header-main .primary-menu:last-child {
	margin-bottom: 0;
}

.header-main .primary-menu ul {
	width: 100%;
	float: left;
	padding: 0;
	margin: 0;
}

.header-main .primary-menu ul li {
	width: 100%;
	float: left;
	border-bottom: 1px solid rgba(37, 62, 77, .20);
	padding: 0;
	margin: 0;
}

.header-main .primary-menu ul li:before {
	display: none;
}

.header-main .primary-menu ul li > a {
	width: 100%;
	float: left;
	font-weight: 600;
	font-size: 18px;
	color: #00223b;
	line-height: 24px;
	text-decoration: none;
	position: relative;
	overflow: hidden;
	padding: 22px 0;
}

.header-main .primary-menu ul li:hover > a,
.header-main .primary-menu ul li > a:focus,
.header-main .primary-menu ul li.nav-menu-open > a,
.header-main .primary-menu ul li.current-menu-item > a,
.header-main .primary-menu ul li.current-menu-parent > a,
.header-main .primary-menu ul li.current-menu-ancestor > a {
	color: #46734d;
	text-decoration: none;
}

.header-main .primary-menu ul li .submenu-arrow {
	display: none;
}

.header-main .primary-menu ul li.mega-menu-item > .submenu-arrow,
.header-main .primary-menu ul li.menu-item-has-children > .submenu-arrow {
	display: block;
	width: 100px;
	height: 69px;
	float: right;
	font-size: 20px;
	text-align: right;
	cursor: pointer;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
}

.header-main .primary-menu ul li.mega-menu-item > .submenu-arrow:after,
.header-main .primary-menu ul li.menu-item-has-children > .submenu-arrow:after {
	content: "\f078";
	font-family: "Font Awesome\ 5 Pro";
	font-weight: 400;
	font-size: 120%;
	line-height: 120%;
	position: absolute;
	top: 50%;
	right: 0;
	-ms-transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	transform: translate(0, -50%);
	margin: 1px 0 0 0;
}

.header-main .primary-menu ul li.mega-menu-item > .submenu-arrow.active:after,
.header-main .primary-menu ul li.menu-item-has-children > .submenu-arrow.active:after {
	content: "\f077";
}

.header-main .primary-menu ul li.mega-menu-item:hover > .submenu-arrow:after,
.header-main .primary-menu ul li.menu-item-has-children:hover > .submenu-arrow:after {
	color: #f5ba36;
}

.header-main .primary-menu ul li.current-menu-item > .submenu-arrow:after,
.header-main .primary-menu ul li.current-menu-parent > .submenu-arrow:after,
.header-main .primary-menu ul li.current-menu-ancestor > .submenu-arrow:after {
	color: #46734d;
}

.header-main .primary-menu ul li ul {
	display: none;
	padding: 0 0 29px 15px;
	margin: 0 0 -22px 0;
}

.header-main .primary-menu ul li ul li {
	border-bottom: none;
	margin-bottom: 22px;
}

.header-main .primary-menu ul li ul li a {
	padding: 0;
}

.header-main .primary-menu ul li ul li ul {
	display: block;
	padding-top: 22px;
	padding-bottom: 0;
}

.header-main .primary-menu ul li .mega-menu,
.header-main .primary-menu ul li .mega-menu .mega-menu-inn {
	width: 100%;
	float: left;
}

.header-main .primary-menu ul li .mega-menu .aside-links {
	display: flex;
	flex-wrap: wrap;
	padding: 0 0 29px 15px;
	margin: 0 0 -22px 0;
}

.header-main .primary-menu ul li .mega-menu .aside {
	width: 100%;
	float: left;
	margin-bottom: 22px;
}

.header-main .primary-menu ul li .mega-menu .aside .box {
	width: 100%;
	float: left;
	font-weight: 600;
	font-size: 18px;
	color: #00223b;
	line-height: 24px;
	text-decoration: none;
	position: relative;
	padding-left: 20px;
}

.header-main .primary-menu ul li .mega-menu .aside .box .bx-title i {
	content: "\f3c5";
	font-family: "Font Awesome\ 5 Pro";
	font-weight: 900;
	font-size: 16px;
	color: #5499C8;
	line-height: 100%;
	position: absolute;
	top: 4px;
	left: 0;
}

.header-main .primary-menu ul li .mega-menu .aside .box p {
	display: none;
}

.header-main .primary-menu ul li .mega-menu .aside .box .bx-title {
	width: 100%;
	float: left;
	position: relative;
	cursor: pointer;
}

.header-main .primary-menu ul li .mega-menu .aside .box .bx-title:after {
	content: "\f078";
	font-family: "Font Awesome\ 5 Pro";
	font-weight: 400;
	font-size: 120%;
	line-height: 120%;
	position: absolute;
	top: 50%;
	right: 0;
	-ms-transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	transform: translate(0, -50%);
	margin: 1px 0 0 0;
}

.header-main .primary-menu ul li .mega-menu .aside .box .bx-title.active:after {
	content: "\f077";
}

.header-main .primary-menu ul li .mega-menu .aside .box .bx-title:hover,
.header-main .primary-menu ul li .mega-menu .aside .box .bx-title:focus,
.header-main .primary-menu ul li .mega-menu .aside .box .bx-title.active {
	color: #f5ba36;
}

.header-main .primary-menu ul li .mega-menu .aside .box .bx-cont {
	width: 100%;
	float: left;
	font-size: 16px;
	line-height: 22px;
	display: none;
	padding: 22px 50px 0 0;
}

.header-main .primary-menu ul li .mega-menu .aside .box .bx-cont p {
	padding-bottom: 22px;
}

.header-main .primary-menu ul li .mega-menu .aside .box .bx-cont p:last-child {
	padding-bottom: 0;
}

.header-main .primary-menu ul li .mega-menu .aside .box .bx-cont ul {
	display: block!important;
	padding: 0;
	margin: 0 0 -22px 0;
}

.header-main .primary-menu ul li .mega-menu .aside .box .bx-cont ul li {
	padding: 0;
	margin: 0 0 22px 0;
}

.header-main .primary-menu ul li .mega-menu .aside .box .bx-cont ul li > a {
	font-weight: inherit;
	font-size: inherit;
	line-height: inherit;
}

.header-main .nav-bar .btn-donate {
	width: 100%;
	float: left;
	margin: 0 0 40px 0;
}

.header-main .nav-bar .btn-donate:last-child {
	margin-bottom: 0;
}

.header-main .nav-bar .btn-donate a {
	font-size: 18px;
	line-height: 24px;
	padding: 19px 35px;
}

.header-main .nav-bar .search-clone {
	width: 100%;
	float: left;
	margin: 0 0 40px 0;
}

.header-main .nav-bar .search-clone:last-child {
	margin-bottom: 0;
}

.header-main .nav-bar .search-clone .search-box {
	margin: 0;
}
}

@media (max-width: 767px) {
.header-main .overlay-menu {
	top: 85px;
}

.header-main .nav-bar {
	padding: 85px 0 0 0;
}

.header-main .nav-bar:before {
	top: 85px;
}

.header-main .nav-bar .nav-inn {
	max-width: 590px;
	padding-left: 25px;
	padding-right: 25px;
}

.header-main .nav-bar .btn-donate a {
	font-size: 18px;
	line-height: 24px;
	padding: 17px 35px;
}
}

@media (max-width: 575px) {
.header-main .nav-bar {
	max-width: 100%;
}
}

@media (max-width: 399px) {
.header-main .nav-bar .btn-donate a {
	font-size: 16px;
	line-height: 22px;
}
}


/* Single Service/Location Menu Overrides */
.single-service .force-not-current.current-menu-item a,
.single-service .force-not-current.current_page_parent a,
.single-service.force-not-current.current_page_ancestor a,
.single-location .force-not-current.current-menu-item a,
.single-location .force-not-current.current_page_parent a,
.single-location.force-not-current.current_page_ancestor a {
	text-decoration: none !important;
	border-bottom: none !important;
}


/* Menu - Button */
.header-main .menu-btn {
	min-width: inherit;
	height: 90px;
	float: right;
	display: none;
	flex-wrap: wrap;
	align-items: center;
	font-weight: inherit;
	font-size: inherit;
	color: inherit;
	background: none;
	cursor: pointer;
	position: relative;
	z-index: 10;
	padding: 0;
	margin: 0 0 0 -500px;
}

.header-main .menu-btn .menu-bar {
	width: 40px;
	height: 3px;
	float: left;
	background: #ffffff;
	text-indent: -99999px;
	position: relative;
	margin: 11px 0;
}

.header-main .menu-btn .menu-bar:before,
.header-main .menu-btn .menu-bar:after {
	content: "";
	width: 100%;
	height: 3px;
	background: #ffffff;
	position: absolute;
	left: 0;
}

.header-main .menu-btn .menu-bar:before {
	top: -11px;
}

.header-main .menu-btn .menu-bar:after {
	top: 11px;
}

.header-main .menu-btn.active .menu-bar {
	background: none;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
}

.header-main .menu-btn.active .menu-bar:before,
.header-main .menu-btn.active .menu-bar:after {
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	top: 0;
}

.header-main .menu-btn.active .menu-bar:before {
	-webkit-transform: rotate3d(0, 0, 1, -45deg);
	transform: rotate3d(0, 0, 1, -45deg);
}

.header-main .menu-btn.active .menu-bar:after {
	-webkit-transform: rotate3d(0, 0, 1, 45deg);
	transform: rotate3d(0, 0, 1, 45deg);
}

@media (max-width: 1199px) {
.header-main .menu-btn {
	display: flex;
}
}

@media (max-width: 767px) {
.header-main .menu-btn {
	height: 80px;
}

.header-main .menu-btn .menu-bar {
	width: 30px;
}

.header-main .menu-btn .menu-bar {
	height: 2px;
	margin: 9px 0;
}

.header-main .menu-btn .menu-bar:before,
.header-main .menu-btn .menu-bar:after {
	height: 2px;
}

.header-main .menu-btn .menu-bar:before {
	top: -9px;
}

.header-main .menu-btn .menu-bar:after {
	top: 9px;
}
}


/*
 4.) Content - Main
----------------------------------------*/

.content-main {
	width: 100%;
	float: left;
	flex: 1 0 auto;
	overflow: hidden;
	padding: 140px 0 0 0;
}

@media (max-width: 1199px) {
.content-main {
	padding: 100px 0 0 0;
}
}

@media (max-width: 767px) {
.content-main {
	padding: 85px 0 0 0;
}
}


/* Row */
.row-out {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	padding-bottom: 130px;
}

.row-out:last-child {
	padding-bottom: 0;
}

.row {
	padding-bottom: 130px;
	margin: 0 -35px -60px -35px;
}

.row:last-child {
	padding-bottom: 0;
}

.row > div {
	padding: 0 35px 60px 35px;
}

.row.no-gutters {
	padding: 0;
	margin: 0;
}

.row.no-gutters > div {
	padding: 0;
}

@media (max-width: 1399px) {
.row {
	margin-left: -30px;
	margin-right: -30px;
}

.row > div {
	padding-left: 30px;
	padding-right: 30px;
}
}

@media (max-width: 1299px) {
.row {
	margin-left: -25px;
	margin-right: -25px;
}

.row > div {
	padding-left: 25px;
	padding-right: 25px;
}
}

@media (max-width: 1199px) {
.row-out {
	padding-bottom: 100px;
}

.row {
	padding-bottom: 100px;
	margin: 0 -20px -50px -20px;
}

.row > div {
	padding: 0 20px 50px 20px;
}

.row.no-gutters {
	padding: 0;
	margin: 0;
}

.row.no-gutters > div {
	padding: 0;
}
}

@media (max-width: 767px) {
.row-out {
	padding-bottom: 70px;
}

.row {
	padding-bottom: 70px;
	margin: 0 -15px -50px -15px;
}

.row > div {
	padding: 0 15px 50px 15px;
}

.row.no-gutters {
	padding: 0;
	margin: 0;
}

.row.no-gutters > div {
	padding: 0;
}
}

/* Search */

.search-rows {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	max-width: 1440px;
    padding: 0 40px;
    align-items: center;
    margin: 0 auto;
	padding-bottom: 48px;
}

.search-result-item {
    flex-basis: 50%;
	display: flex;
	flex-flow: column;
}

.search-result-item-cta {
	margin-top: auto;
    max-width: 1440px;
    padding: 0 40px;
}

.heading-split2 form#searchform #searchsubmit {
    margin-top: 20px;
}

@media (max-width: 900px) {
	.search-result-item {
    flex-basis: 100%;
}
}

/* Hero - Main */
.hero-main {
	width: 100%;
	font-weight: 300;
	font-size: 22px;
	line-height: 150%;
	background: #edf2f4;
	overflow: hidden;
	padding: 90px 0;
}

.hero-main .row {
	padding: 0;
	margin: 0;
}

.hero-main .row > div {
	position: relative;
	padding: 0;
	margin: 0;
}

.hero-main .row > div .aside {
	width: 100%;
	max-width: 720px;
	float: right;
	position: relative;
	z-index: 2;
	padding: 20px 40px;
}

.hero-main .row > div .aside h1,
.hero-main .row > div .aside .h1 {
	padding-bottom: 28px;
}

.hero-main .row > div .aside h1:last-child,
.hero-main .row > div .aside .h1:last-child {
	padding-bottom: 0;
}

.hero-main .row > div .aside .btn-out,
.hero-main .row > div .aside .btn-wrap {
	margin-top: 40px;
}

.hero-main .row > div .aside .txt-max {
	width: 100%;
}

.hero-main .row > div .figure {
	border-radius: 20px 0 0 20px;
	margin: 0;
}

.hero-main .row > div .slider-wrap {
	display: flex;
	flex-wrap: wrap;
	border-radius: 20px 0 0 20px;
	overflow: hidden;
	position: relative;
}

.hero-main .row > div .owl-item .figure {
	border-radius: 0;
}

.hero-main .owl-nav {
	position: absolute;
	bottom: 14px;
	right: 14px;
	margin: 0;
}

.hero-main .owl-nav button {
	color: #365072;
	background: rgba(237, 242, 244, 0.6);
}

.hero-main .owl-nav button:hover,
.hero-main .owl-nav button:focus,
.hero-main .owl-nav button:active {
	color: #ffffff;
	background: #365072;
}

@media (min-width: 1300px) {
.hero-main .row > div .aside {
	padding-right: 75px;
}

.hero-main .row > div .slider-wrap {
	margin-left: -35px;
}
}

@media (min-width: 992px) {
.hero-main .row {
	align-items: center;
}

.hero-main .row > div .aside .txt-max {
	max-width: 550px;
}

.hero-main .row > div .figure {
	min-height: 715px;
}

.hero-main .row > div .figure img {
	width: auto;
	max-width: none;
	max-height: none;
	min-width: 100%;
	min-height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	margin: 0;
}
}

@media (max-width: 1199px) {
.hero-main .row > div .aside h1,
.hero-main .row > div .aside .h1 {
	padding-bottom: 25px;
}

.hero-main .row > div .aside .btn-out,
.hero-main .row > div .aside .btn-wrap {
	margin-top: 30px;
}
}

@media (max-width: 991px) {
.hero-main {
	padding: 80px 0;
}

.hero-main .row > div .aside {
	max-width: 100%;
	float: none;
	padding: 0 40px 70px 40px;
	margin: 0 auto;
}

.hero-main .row > div:nth-child(2) {
	padding-left: 40px;
}
}

@media (max-width: 767px) {
.hero-main {
	font-size: 20px;
	padding: 60px 0;
}

.hero-main .row > div:nth-child(2) {
	padding-left: 25px;
}

.hero-main .row > div .aside {
	max-width: 590px;
	padding: 0 25px 50px 25px;
}

.hero-main .row > div .aside h1,
.hero-main .row > div .aside .h1 {
	padding-bottom: 20px;
}

.hero-main .row > div .aside .btn-out,
.hero-main .row > div .aside .btn-wrap {
	margin-top: 20px;
}
}


/* Featured - Links */
.featured-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	color: #ffffff;
	background: #365072 url(../img/pattern-navy.jpg) repeat center center;
	padding: 100px 7%;
	margin-bottom: 130px;
}

.featured-links:last-child {
	margin-bottom: 0;
}

.featured-links .featured-max {
	width: 100%;
	max-width: 1140px;
	margin: 0 auto;
}

.featured-links .heading-txt {
	width: 58.75%;
	float: left;
	font-size: inherit;
	color: inherit;
	line-height: inherit;
	text-align: left;
	padding: 0 50px 0 0;
	margin: 0;
}

.featured-links .heading-txt .sub-heading2 {
	color: #64a5ce;
}

.featured-links .heading-txt .sub-heading2::before {
	background-image: url(../img/sub-heading-divider-blue.png);
}

.featured-links .heading-txt h1,
.featured-links .heading-txt h2,
.featured-links .heading-txt h3,
.featured-links .heading-txt h4,
.featured-links .heading-txt h5,
.featured-links .heading-txt h6 {
	color: inherit;
}

.featured-links .heading-txt .aside {
	max-width: 530px;
}

.featured-links .links {
	width: 41.25%;
	float: left;
}

.featured-links .links ul {
	display: flex;
	flex-wrap: wrap;
	padding: 0;
	margin: 0;
}

.featured-links .links ul li {
	width: 100%;
	float: left;
	padding: 0;
	margin: 0 0 20px 0;
}

.featured-links .links ul li:last-child {
	margin-bottom: 0;
}

.featured-links .links ul li::before {
	display: none;
}

.featured-links .links ul li a {
	width: 100%;
	float: left;
	font-weight: 600;
	font-size: 28px;
	color: #365072;
	line-height: 130%;
	text-decoration: none;
	background: #edf2f4;
	border-radius: 0 8px 8px 0;
	position: relative;
	padding: 20px 39px 22px 42px;
}

.featured-links .links ul li a::before {
	content: "";
	width: 10px;
	height: 100%;
	float: left;
	background: #F5BA36;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	position: absolute;
	top: 0;
	left: 0;
}

.featured-links .links ul li a::after {
	content: "";
	width: 52px;
	height: 20px;
	float: none;
	display: inline-block;
	vertical-align: top;
	background: url(../img/arrow-long-right-navy.svg) no-repeat right center;
	background-size: auto 20px;
	overflow: hidden;
	position: relative;
	top: 9px;
	margin-left: 22px;
}

.featured-links .links ul li a:hover,
.featured-links .links ul li a:focus,
.featured-links .links ul li a:active {
	padding-left: 55px;
}

.featured-links .links ul li a:hover::before,
.featured-links .links ul li a:focus::before,
.featured-links .links ul li a:active::before {
	width: 23px;
}

.featured-links .links ul li a.link-yellow::before {
	background: #F5BA36;
}
.featured-links .links ul li a.link-darkgreen::before {
	background: #46734d;
}
.featured-links .links ul li a.link-blue::before {
	background: #5499c8;
}
.featured-links .links ul li a.link-lightgreen::before {
	background: #97ac3c;
}

@media (max-width: 1299px) {
.featured-links {
	padding: 80px 50px;
}

.featured-links .heading-txt {
	width: 55%;
}

.featured-links .links {
	width: 45%;
}
}

@media (max-width: 1199px) {
.featured-links {
	padding: 80px 50px;
	margin-bottom: 100px;
}

.featured-links .heading-txt {
	width: 50%;
}

.featured-links .links {
	width: 50%;
}

.featured-links .links ul li a {
	font-size: 24px;
	padding: 20px 40px 22px 40px;
}

.featured-links .links ul li a::before {
	width: 8px;
}

.featured-links .links ul li a::after {
	width: 47px;
	height: 18px;
	background-size: auto 18px;
	top: 7px;
	margin-left: 20px;
}

.featured-links .links ul li a:hover,
.featured-links .links ul li a:focus,
.featured-links .links ul li a:active {
	padding-left: 52px;
}

.featured-links .links ul li a:hover::before,
.featured-links .links ul li a:focus::before,
.featured-links .links ul li a:active::before {
	width: 20px;
}
}

@media (max-width: 991px) {
.featured-links {
	padding: 80px 8%;
}

.featured-links .heading-txt {
	width: 100%;
	padding: 0 0 40px 0;
}

.featured-links .links {
	width: 100%;
}
}

@media (max-width: 767px) {
.featured-links {
	padding: 60px 25px;
	margin-bottom: 70px;
}

.featured-links .heading-txt h1,
.featured-links .heading-txt .h1,
.featured-links .heading-txt h2,
.featured-links .heading-txt .h2,
.featured-links .heading-txt h3,
.featured-links .heading-txt .h3,
.featured-links .heading-txt h4,
.featured-links .heading-txt .h4 {
	padding-bottom: 15px;
}

.featured-links .links {
	width: 100%;
}

.featured-links .links ul li a {
	font-size: 20px;
	border-radius: 0 6px 6px 0;
	padding: 16px 16px 18px 26px;
}

.featured-links .links ul li a::before {
	width: 8px;
}

.featured-links .links ul li a::after {
	width: 27px;
	height: 14px;
	background-size: auto 14px;
	top: 8px;
	margin-left: 10px;
}

.featured-links .links ul li a:hover,
.featured-links .links ul li a:focus,
.featured-links .links ul li a:active {
	padding-left: 34px;
}

.featured-links .links ul li a:hover::before,
.featured-links .links ul li a:focus::before,
.featured-links .links ul li a:active::before {
	width: 16px;
}
}

@media (max-width: 379px) {
.featured-links .links ul li a {
	font-size: 18px;
}

.featured-links .links ul li a::after {
	top: 6px;
}
}


/* Two Column - Content */
.two-col-cont {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	margin-bottom: 130px;
}

.two-col-cont:last-child {
	margin-bottom: 0;
}

.two-col-cont .row {
	margin: 0 -20px -40px -20px;
}

.two-col-cont .row > div {
	padding: 0 20px 40px 20px;
	margin: 0;
}

.two-col-cont .row > div .aside {
	width: 100%;
}

.two-col-cont .row > div .aside h2 {
	padding-bottom: 25px;
}

.two-col-cont .row > div .aside h2:last-child {
	padding-bottom: 0;
}

.two-col-cont .row > div .figure {
	margin: 0;
}

.two-col-cont .row > div .figure img {
	width: auto;
	max-width: 100%;
}

@media (min-width: 768px) {
.two-col-cont .row > div {
	position: relative;
}

.two-col-cont .row > div .aside {
	max-width: 580px;
	float: right;
}

.two-col-cont .row > div .aside h1,
.two-col-cont .row > div .aside h2,
.two-col-cont .row > div .aside h3,
.two-col-cont .row > div .aside h4,
.two-col-cont .row > div .aside h5,
.two-col-cont .row > div .aside h6 {
	width: 100%;
	max-width: 510px;
}

.two-col-cont .row > div .aside p {
	width: 100%;
	max-width: 500px;
}

.two-col-cont .row:nth-child(even) > div {
	left: 50%;
}

.two-col-cont .row:nth-child(even) > div:nth-child(even) {
	left: -50%;
}

/* Col - Reverse  */
.two-col-cont.col-reverse .row > div {
	left: 50%;
}

.two-col-cont.col-reverse .row > div:nth-child(even) {
	left: -50%;
}

.two-col-cont.col-reverse .row:nth-child(even) > div {
	left: 0;
}

.two-col-cont.col-reverse .row:nth-child(even) > div:nth-child(even) {
	left: 0;
}
}

@media (min-width: 992px) {
.two-col-cont .row {
	align-items: center;
}

.two-col-cont .sub-heading2 {
	width: 80%;
}
}

@media (max-width: 1199px) {
.two-col-cont {
	margin-bottom: 100px;
}

.two-col-cont .row > div .aside h2 {
	padding-bottom: 20px;
}
}

@media (max-width: 767px) {
.two-col-cont {
	margin-bottom: 70px;
}
}


/* Two Column - Content ALT */
.two-col-cont.alt .row > div .figure img {
	width: 100%;
}

@media (min-width: 768px) {
.two-col-cont.alt .row > div {
	width: 47%;
}

.two-col-cont.alt .row > div:nth-child(even) {
	width: 53%;
}

.two-col-cont.alt .row > div .aside {
	max-width: 540px;
	float: left;
}

.two-col-cont.alt .row > div .aside h1,
.two-col-cont.alt .row > div .aside h2,
.two-col-cont.alt .row > div .aside h3,
.two-col-cont.alt .row > div .aside h4,
.two-col-cont.alt .row > div .aside h5,
.two-col-cont.alt .row > div .aside h6 {
	max-width: inherit;
}

.two-col-cont.alt .row > div .aside p {
	max-width: inherit;
}

.two-col-cont.alt .row:nth-child(even) > div {
	left: 53%;
}

.two-col-cont.alt .row:nth-child(even) > div .aside {
	float: right;
}

.two-col-cont.alt .row:nth-child(even) > div:nth-child(even) {
	left: -47%;
}

/* Col - Reverse  */
.two-col-cont.alt.col-reverse .row > div {
	left: 53%;
}

.two-col-cont.alt.col-reverse .row > div .aside {
	float: right;
}

.two-col-cont.alt.col-reverse .row > div:nth-child(even) {
	left: -47%;
}

.two-col-cont.alt.col-reverse .row:nth-child(even) > div {
	left: 0;
}

.two-col-cont.alt.col-reverse .row:nth-child(even) > div .aside {
	float: left;
}

.two-col-cont.alt.col-reverse .row:nth-child(even) > div:nth-child(even) {
	left: 0;
}
}


/* Two Column - Content ALT2 */
.two-col-cont.alt .row > div .figure img {
	width: 100%;
}

@media (min-width: 768px) {
.two-col-cont.alt2 .row > div {
	width: 47%;
}

.two-col-cont.alt2 .row > div:nth-child(even) {
	width: 53%;
}

.two-col-cont.alt2 .row > div .aside {
	float: left;
}

.two-col-cont.alt2 .row > div .aside h1,
.two-col-cont.alt2 .row > div .aside h2,
.two-col-cont.alt2 .row > div .aside h3,
.two-col-cont.alt2 .row > div .aside h4,
.two-col-cont.alt2 .row > div .aside h5,
.two-col-cont.alt2 .row > div .aside h6 {
	max-width: inherit;
}

.two-col-cont.alt2 .row > div .aside p {
	max-width: inherit;
}

.two-col-cont.alt2 .row:nth-child(even) > div {
	left: 53%;
}

.two-col-cont.alt2 .row:nth-child(even) > div .aside {
	float: right;
}

.two-col-cont.alt2 .row:nth-child(even) > div:nth-child(even) {
	left: -47%;
}

/* Col - Reverse  */
.two-col-cont.alt2.col-reverse .row > div {
	left: 53%;
}

.two-col-cont.alt2.col-reverse .row > div .aside {
	float: right;
}

.two-col-cont.alt2.col-reverse .row > div:nth-child(even) {
	left: -47%;
}

.two-col-cont.alt2.col-reverse .row:nth-child(even) > div {
	left: 0;
}

.two-col-cont.alt2.col-reverse .row:nth-child(even) > div .aside {
	float: left;
}

.two-col-cont.alt2.col-reverse .row:nth-child(even) > div:nth-child(even) {
	left: 0;
}
}


/* Split - Content */
.split-cont {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 130px;
}

.split-cont:last-child {
	margin-bottom: 0;
}

.split-cont .heading-txt {
	width: 42.65%;
	float: left;
	text-align: left;
	padding: 0 80px 0 0;
	margin: 0;
}

.split-cont .row-out {
	width: 57.35%;
	float: left;
	padding: 0;
	margin: 0;
}

.split-cont .row > div .box {
	width: 100%;
	height: 100%;
	float: left;
	display: flex;
	flex-direction: column;
	font-weight: inherit;
	color: inherit;
	text-decoration: none;
}

.split-cont .row > div .box .aside {
	width: 100%;
	float: left;
	flex: 1 0 auto;
	margin: 0 0 15px 0;
}

.split-cont .row > div .box .aside:last-child {
	margin-bottom: 0;
}

.split-cont .row > div .box .read-more {
	flex-shrink: 0;
	margin-top: 5px;
}

@media (max-width: 1199px) {
.split-cont {
	margin-bottom: 100px;
}

.split-cont .heading-txt {
	width: 38%;
	padding: 0 40px 0 0;
}

.split-cont .row-out {
	width: 62%;
}
}

@media (max-width: 991px) {
.split-cont .heading-txt {
	width: 100%;
	padding: 0 0 40px 0;
}

.split-cont .row-out {
	width: 100%;
}
}

@media (max-width: 767px) {
.split-cont {
	margin-bottom: 70px;
}
}


/* Split - Content2 */
.split-cont2 {
	width: 100%;
	background: #edf2f4 url(../img/pattern-gray.jpg) no-repeat center center;
	background-size: cover;
	overflow: hidden;
	position: relative;
	padding: 130px 0;
}

.split-cont2 .row {
	align-items: center;
}

.split-cont2 .row > div h2,
.split-cont2 .row > div .h2 {
	padding: 0 0 0 50px;
}

.split-cont2 .row > div h3,
.split-cont2 .row > div .h3 {
	padding: 0 0 28px 0;
}

.split-cont2 .row > div h3:last-child,
.split-cont2 .row > div .h3:last-child {
	padding-bottom: 0;
}

.split-cont2 .row > div .aside {
	width: 100%;
	float: left;
	position: relative;
	padding: 0 0 0 115px;
}

.split-cont2 .row > div .aside::before {
	content: "";
	width: 102px;
	height: 2px;
	float: left;
	background: #5499C8;
	position: absolute;
	top: 23px;
	left: 0;
}

.split-cont2 .row > div .figure {
	border: 37px solid rgba(100, 165, 206, 0.14);
	border-radius: 900px;
}

@media (min-width: 992px) {
.split-cont2 .row > div {
	width: 53%;
}

.split-cont2 .row > div:nth-child(even) {
	width: 47%;
}

.split-cont2 .row > div:nth-child(even) .figure {
	max-width: 580px;
	float: right;
}
}

@media (max-width: 1199px) {
.split-cont2 {
	padding: 100px 0;
}

.split-cont2 .row > div h2,
.split-cont2 .row > div .h2 {
	padding: 0 0 0 40px;
}

.split-cont2 .row > div h3,
.split-cont2 .row > div .h3 {
	padding: 0 0 25px 0;
}

.split-cont2 .row > div .aside {
	padding: 0 0 0 100px;
}

.split-cont2 .row > div .aside::before {
	width: 90px;
}

.split-cont2 .row > div .figure {
	border-width: 28px;
}
}

@media (max-width: 991px) {
.split-cont2 .row > div:nth-child(even) {
	text-align: center;
}

.split-cont2 .row > div:nth-child(even) .figure {
	max-width: 500px;
	float: none;
	display: inline-block;
	vertical-align: top;
}
}

@media (max-width: 767px) {
.split-cont2 {
	padding: 70px 0;
}

.split-cont2 .row > div h2,
.split-cont2 .row > div .h2 {
	padding: 0;
}

.split-cont2 .row > div h3,
.split-cont2 .row > div .h3 {
	padding: 0 0 15px 0;
}

.split-cont2 .row > div .aside {
	padding: 0 0 0 40px;
}

.split-cont2 .row > div .aside::before {
	width: 30px;
	top: 18px;
}

.split-cont2 .row > div .figure {
	border-width: 20px;
}
}


/* Split - Content3 */
.split-cont3 {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	margin-bottom: 130px;
}

.split-cont3:last-child {
	margin-bottom: 0;
}

.split-cont3 .row {
	background: #edf2f4;
	padding: 35px;
	margin: 0;
}

.split-cont3 .row > div {
	padding: 0;
	margin: 0;
}

.split-cont3 .row > div .aside {
	width: 100%;
	float: left;
	position: relative;
	padding: 0 85px;
}

.split-cont3 .row > div .aside::before {
	content: "";
	width: 35px;
	height: 50px;
	background: url(../img/divider-heading-gold.png) no-repeat left center;
	background-size: 100% auto;
	position: absolute;
	top: 0;
	left: -35px;
}

.split-cont3 .row > div .aside h2,
.split-cont3 .row > div .aside h3,
.split-cont3 .row > div .aside h4,
.split-cont3 .row > div .aside h5,
.split-cont3 .row > div .aside h6 {
	padding-bottom: 25px;
}

.split-cont3 .row > div .aside h2:last-child,
.split-cont3 .row > div .aside h3:last-child,
.split-cont3 .row > div .aside h4:last-child,
.split-cont3 .row > div .aside h5:last-child,
.split-cont3 .row > div .aside h6:last-child {
	padding-bottom: 0;
}

.intro-text {
	width: 55%;
	padding-bottom: 40px;
}

/* Blog spotlight - full width heading and intro section */
.split-cont3 .row > .col-12 {
	padding: 0 85px 40px 85px;
	margin: 0;
}

.split-cont3 .row > .col-12 h2 {
	padding-bottom: 25px;
}

.split-cont3 .row > .col-12 h2:last-child {
	padding-bottom: 0;
}

.split-cont3 .row > .col-12 .intro-text {
	width: 75%;
	padding-bottom: 0;
}

@media (min-width: 992px) {
.split-cont3 .row > div:nth-child(1) {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
}

@media (max-width: 1199px) {
.split-cont3 {
	margin-bottom: 100px;
}

.split-cont3 .row > div .aside {
	padding: 0 35px;
}

.split-cont3 .row > div .aside::before {
	width: 35px;
}

.split-cont3 .row > div .aside h2,
.split-cont3 .row > div .aside h3,
.split-cont3 .row > div .aside h4,
.split-cont3 .row > div .aside h5,
.split-cont3 .row > div .aside h6 {
	padding-bottom: 20px;
}

.split-cont3 .row > .col-12 {
	padding: 0 35px 40px 35px;
}

.split-cont3 .row > .col-12 h2 {
	padding-bottom: 20px;
}
}

@media (max-width: 991px) {
.split-cont3 .row {
	padding: 35px;
}

.split-cont3 .row > div .figure {
	width: 100%;
}

.split-cont3 .row > div .aside {
	width: 100%;
	padding: 0 0 40px 35px;
}

.split-cont3 .row > div .aside::before {
	left: -35px;
}
}

@media (max-width: 767px) {
.split-cont3 {
	margin-bottom: 70px;
}

.split-cont3 .row {
	padding: 40px 25px 25px 25px;
}

.split-cont3 .row > div .aside {
	padding: 0 0 40px 15px;
}

.split-cont3 .row > div .aside::before {
	width: 25px;
	top: -5px;
	left: -25px;
}

.split-cont3 .row > .col-12 {
	padding: 0 25px 30px 25px;
}

.intro-text {
	width: 100%;
	padding-bottom: 30px;
}
}


/* Split - Content4 */
.split-cont4 {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	margin-bottom: 130px;
}

.split-cont4:last-child {
	margin-bottom: 0;
}

.split-cont4 .left-cl {
	width: 42.85%;
	float: left;
	padding: 0 40px 0 0;
}

.split-cont4 .right-cl {
	width: 57.15%;
	float: left;
}

.split-cont4 .right-cl .row {
	padding: 0;
	margin: 0 0 -160px 0;
}

.split-cont4 .right-cl .row > div {
	padding: 0 0 160px 0;
	margin: 0;
}

.split-cont4 .right-cl .row > div .figure {
	margin-bottom: 40px;
}

.split-cont4 .right-cl .row > div .figure:last-child {
	margin-bottom: 0;
}

.split-cont4 .right-cl .row > div .aside {
	width: 100%;
	max-width: 640px;
	float: left;
}

@media (max-width: 1199px) {
.split-cont4 {
	margin-bottom: 100px;
}

.split-cont4 .right-cl .row {
	margin: 0 0 -120px 0;
}

.split-cont4 .right-cl .row > div {
	padding: 0 0 120px 0;
}
}

@media (max-width: 991px) {
.split-cont4 .left-cl {
	width: 100%;
	padding: 0 0 50px 0;
}

.split-cont4 .right-cl {
	width: 100%;
	min-height: inherit!important;
	position: relative!important;
	top: 0;
	left: 0;
	padding: 0;
	margin: 0;
}

.split-cont4 .StickySidebar {
	width: 100%!important;
	float: none!important;
	position: relative!important;
	top: 0!important;
	left: 0!important;
	padding: 0!important;
	margin: 0 auto!important;
}
}

@media (max-width: 767px) {
.split-cont4 {
	margin-bottom: 70px;
}

.split-cont4 .left-cl {
	padding: 0 0 40px 0;
}

.split-cont4 .right-cl .row {
	margin: 0 0 -80px 0;
}

.split-cont4 .right-cl .row > div {
	padding: 0 0 80px 0;
}

.split-cont4 .right-cl .row > div .figure {
	margin-bottom: 30px;
}
}


/* Split - Content5 */
.split-cont5 {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	margin-bottom: 130px;
}

.split-cont5:last-child {
	margin-bottom: 0;
}

.split-cont5 .row > div .aside {
	width: 100%;
}

.split-cont5 .row > div .accord-items {
	border: none;
}

.split-cont5 .row > div .accord-items .accord-item {
	border: none;
	padding: 0;
	margin: 0 0 26px 0;
}

.split-cont5 .row > div .accord-items .accord-item:last-child {
	margin-bottom: 0;
}

.split-cont5 .row > div .accord-items .accord-header a {
	font-size: 20px;
	line-height: 150%;
	background: none;
	border: none;
	padding: 0 0 0 28px;
}

.split-cont5 .row > div .accord-items .accord-header a:after {
	right: auto;
	left: 0;
}

.split-cont5 .row > div .accord-items .accord-body {
	padding: 10px 0 0 28px;
}

@media (min-width: 992px) {
.split-cont5 .row > div .aside {
	max-width: 520px;
}
}

@media (max-width: 1199px) {
.split-cont5 {
	margin-bottom: 100px;
}
}

@media (max-width: 767px) {
.split-cont5 {
	margin-bottom: 70px;
}
}


/* Split - Content6 */
.split-cont6 {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	margin-bottom: 130px;
}

.split-cont6:last-child {
	margin-bottom: 0;
}

.split-cont6 .row {
	background: #ffffff;
	border: 1px solid #64a5ce;
	padding: 20px;
	margin: 0 0 130px 0;
}

.split-cont6 .row:last-child {
	margin-bottom: 0;
}

.split-cont6 .row > div {
	text-align: center;
	position: relative;
	padding: 0;
	margin: 0;
}

.split-cont6 .row > div .aside {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	text-align: left;
	padding: 30px 40px 30px 20px;
}

.split-cont6 .row > div .aside .read-more {
	margin-top: 10px;
}

@media (min-width: 992px) {
.split-cont6 .row > div .aside {
	max-width: 520px;
}


.split-cont6 .row > div .figure {
	height: 100%;
	position: relative;
}

.split-cont6 .row > div .figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	margin: 0;
	object-fit: cover;
}
}

@media (max-width: 1199px) {
.split-cont6 {
	margin-bottom: 100px;
}

.split-cont6 .row {
	padding: 15px;
}
}

@media (max-width: 991px) {
.split-cont6 .row > div .aside {
	padding: 30px 30px 50px 30px;
}
}

@media (max-width: 767px) {
.split-cont6 {
	margin-bottom: 70px;
}

.split-cont6 .row {
	padding: 10px;
}

.split-cont6 .row > div .aside {
	padding: 30px 15px 40px 15px;
}
}


/* Split - Content7 */
.split-cont7 {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	padding-bottom: 130px;
}
.split-cont7.bg-gray,
.split-cont7.bg-blue {
	padding-top: 130px;
}

.split-cont7:not(.featured-services):last-child {
	padding-bottom: 0;
}

.split-cont7 .row {
	margin: 0 -20px -60px -20px;
}

.split-cont7 .row > div {
	padding: 0 20px 60px 20px;
}

.split-cont7 .row > div .box {
	width: 100%;
	height: 100%;
	float: left;
	display: flex;
	flex-direction: column;
	font-weight: inherit;
	color: inherit;
	text-decoration: none;
	padding: 17px 0 0 0;
}

.split-cont7 .row > div .box.border-lightgreen {
	border-top: 7px solid #97ac3c;
}

.split-cont7 .row > div .box.border-darkgreen {
	border-top: 7px solid #46734d;
}

.split-cont7 .row > div .box.border-blue {
	border-top: 7px solid #5499c8;
}

.split-cont7 .row > div .box.border-yellow {
	border-top: 7px solid #f5ba36;
}

.split-cont7 .row > div .box .aside {
	width: 100%;
	float: left;
	flex: 1 0 auto;
	padding: 0 0 15px 0;
}

.split-cont7 .row > div .box .aside:last-child {
	padding-bottom: 0;
}

.split-cont7 .row > div .box .aside h4,
.split-cont7 .row > div .box .aside .h4 {
	padding-bottom: 15px;
}

.split-cont7 .row > div .box .aside h4:last-child,
.split-cont7 .row > div .box .aside .h4:last-child {
	padding-bottom: 0;
}

.split-cont7 .row > div .box .read-more {
	flex-shrink: 0;
	margin: 5px 0 0 0;
}


@media (max-width: 1199px) {
.split-cont7 {
	padding-bottom: 100px;
}
.split-cont7.bg-gray,
.split-cont7.bg-blue {
	padding-top: 100px;
}
}

@media (min-width: 992px) and (max-width: 1199px) {
.split-cont7 .row > div .box .aside h4,
.split-cont7 .row > div .box .aside .h4 {
	font-size: 22px;
}
}

@media (max-width: 767px) {
.split-cont7 {
	padding-bottom: 70px;
}
.split-cont7.bg-gray,
.split-cont7.bg-blue {
	padding-top: 70px;
}

.split-cont7 .row {
	margin: 0 -20px -50px -20px;
}

.split-cont7 .row > div {
	padding: 0 20px 50px 20px;
}
}


/* CTA - Content */
.cta-cont {
	width: 100%;
	background: #365072;
	overflow: hidden;
	padding: 30px;
}

.cta-cont .inn-box {
	width: 100%;
	text-align: center;
	background: #edf2f4;
	overflow: hidden;
	position: relative;
	padding: 145px 40px 180px 40px;
}

.cta-cont .inn-box:after {
	content: "";
	width: 100%;
	height: 30px;
	background: url(../img/divider-horizontal.png) no-repeat center center;
	background-size: 100% 100%;
	position: absolute;
	bottom: 0;
	left: 0;
}

.cta-cont .aside {
	width: 100%;
	max-width: 1130px;
	display: inline-block;
	vertical-align: top;
	text-align: center;
}

.cta-cont .aside h2,
.cta-cont .aside .h2 {
	font-size: 56px;
	letter-spacing: -1.1px;
}

.cta-cont .aside h2:last-child,
.cta-cont .aside .h2:last-child {
	padding-bottom: 0;
}

.cta-cont .aside .btn-out,
.cta-cont .aside .btn-wrap {
	justify-content: center;
	margin-top: 40px;
}

.btn-wrap .btn {
	z-index: 0;
}
@media (max-width: 1299px) {
.cta-cont .aside h2,
.cta-cont .aside .h2 {
	font-size: 52px;
	letter-spacing: -1px;
}

.cta-cont .aside {
	max-width: 1090px;
}
}

@media (max-width: 1199px) {
.cta-cont {
	padding: 20px;
}

.cta-cont .inn-box {
	padding: 105px 40px 135px 40px;
}

.cta-cont .inn-box:after {
	height: 25px;
}

.cta-cont .aside h2,
.cta-cont .aside .h2 {
	font-size: 46px;
	letter-spacing: -0.9px;
}

.cta-cont .aside .btn-out,
.cta-cont .aside .btn-wrap {
	margin-top: 30px;
}
}

@media (max-width: 767px) {
.cta-cont {
	padding: 15px;
}

.cta-cont .inn-box {
	padding: 75px 25px 95px 25px;
}

.cta-cont .inn-box:after {
	height: 15px;
}

.cta-cont .aside {
	max-width: 520px;
}

.cta-cont .aside h2,
.cta-cont .aside .h2 {
	font-size: 35px;
	letter-spacing: -0.7px;
}

.cta-cont .aside .btn-out,
.cta-cont .aside .btn-wrap {
	margin-top: 20px;
}
}


/*
 5.) Footer - Main
----------------------------------------*/

.footer-main {
	width: 100%;
	float: left;
	flex-shrink: 0;
	font-weight: 400;
	font-size: 16px;
	color: #ffffff;
	line-height: 26px;
	background: #365072;
	overflow: hidden;
	position: relative;
	z-index: 0;
}

.footer-main .pre-footer {
	display: flex;
	flex-wrap: wrap;
	padding: 50px 0 60px 0;
}

.footer-main .pre-footer .brand {
	margin-bottom: 50px;
}

.footer-main .pre-footer .brand:last-child {
	margin-bottom: 0;
}

.footer-main .pre-footer .brand img {
	width: 100%;
	max-width: 229px;
	display: inline-block;
	vertical-align: top;
}

.footer-main .pre-footer .foot-links {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	overflow: hidden;
	margin-bottom: 50px;
}

.footer-main .pre-footer .foot-links:last-child {
	margin-bottom: 0;
}

.footer-main .pre-footer .foot-links ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 0;
	margin: 0 -20px -40px -20px;
}

.footer-main .pre-footer .foot-links ul li {
	width: 100%;
	float: left;
	padding: 0 20px;
	margin: 0 0 40px 0;
}

.footer-main .pre-footer .foot-links ul li:before {
	display: none;
}

.footer-main .pre-footer .foot-links ul li a {
	font-weight: 700;
	color: #ffffff;
	text-decoration: none;
}

.footer-main .pre-footer .foot-links ul li.menu-item-has-children > a {
	display: none;
}

.footer-main .pre-footer .foot-links ul li .menu-txt {
	font-weight: 700;
	color: #ffffff;
}

.footer-main .pre-footer .foot-links ul li > a:hover,
.footer-main .pre-footer .foot-links ul li > a:focus,
.footer-main .pre-footer .foot-links ul li > a:active,
.footer-main .pre-footer .foot-links ul li.current-menu-item > a,
.footer-main .pre-footer .foot-links ul li.current-menu-parent > a,
.footer-main .pre-footer .foot-links ul li.current-menu-ancestor > a {
	color: #f5ba36;
}

.footer-main .pre-footer .foot-links ul li ul {
	margin-top: 10px;
	margin-bottom: -10px;
}

.footer-main .pre-footer .foot-links ul li ul li {
	width: 100%;
	margin-bottom: 10px;
}

.footer-main .pre-footer .foot-links ul li ul li a {
	font-weight: 400;
}

.footer-main .pre-footer .foot-links ul li ul li > a:hover,
.footer-main .pre-footer .foot-links ul li ul li > a:focus,
.footer-main .pre-footer .foot-links ul li ul li > a:active,
.footer-main .pre-footer .foot-links ul li ul li.current-menu-item > a,
.footer-main .pre-footer .foot-links ul li ul li.current-menu-parent > a,
.footer-main .pre-footer .foot-links ul li ul li.current-menu-ancestor > a {
	text-decoration: underline;
}

.footer-main .copy-rights {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	font-size: 14px;
	line-height: 140%;
	border-top: 1px solid #64a5ce;
	padding: 37px 0;
}

.footer-main .copy-rights p {
	float: none;
	display: inline-block;
	vertical-align: middle;
	position: relative;
	padding: 0 10px 0 41px;
	margin: 0;
}

.footer-main .copy-rights p .icon-logo {
	width: 31px;
	height: 31px;
	float: left;
	background: url(../img/logo-3mw.png) no-repeat center center;
	background-size: 100% auto;
	text-indent: -99999px;
	position: absolute;
	top: 50%;
	left: 0;
	-ms-transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	transform: translate(0, -50%);
}

.footer-main .copy-rights .term-links {
	float: none;
	display: inline-block;
	vertical-align: middle;
	margin: 0;
}

.footer-main .copy-rights .term-links ul {
	float: none;
	display: inline-block;
	vertical-align: top;
	overflow: hidden;
	padding: 0;
	margin: 0 -8px 0 -11px;
}

.footer-main .copy-rights .term-links ul li {
	float: none;
	display: inline-block;
	vertical-align: top;
	padding: 0 8px 0 11px;
	margin: 0;
}

.footer-main .copy-rights .term-links ul li:before {
	content: "";
	width: 1px;
	height: 14px;
	background: #ffffff;
	position: absolute;
	top: 50%;
	left: 0;
	-ms-transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	transform: translate(0, -50%);
	margin: 1px 0 0 0;
}

.footer-main .copy-rights .term-links ul li:first-child:before {
	display: none;
}

.footer-main .copy-rights .term-links ul li a {
	font-weight: 600;
	color: inherit;
	text-align: left;
	text-decoration: underline;
}

.footer-main .copy-rights .term-links ul li > a:hover,
.footer-main .copy-rights .term-links ul li > a:focus,
.footer-main .copy-rights .term-links ul li > a:active,
.footer-main .copy-rights .term-links ul li.current-menu-item > a,
.footer-main .copy-rights .term-links ul li.current-menu-parent > a,
.footer-main .copy-rights .term-links ul li.current-menu-ancestor > a {
	color: #f5ba36;
	text-decoration: underline;
}

.footer-main .copy-rights .inn-wrap {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: middle;
	position: relative;
	padding: 0 190px 0 0;
	margin: 0 -5px 0 0;
}

.footer-main .copy-rights .social-links {
	width: 190px;
	float: none;
	display: inline-block;
	vertical-align: middle;
	text-align: right;
	margin: 0 -2px 0 -190px;
}

.footer-main .copy-rights .social-links ul li a {
	color: #ffffff;
}

.footer-main .copy-rights .social-links ul li a:hover,
.footer-main .copy-rights .social-links ul li a:focus,
.footer-main .copy-rights .social-links ul li a:active {
	color: #f5ba36;
}

@media (min-width: 768px) {
.footer-main .pre-footer .foot-links ul li {
	width: 33.33333333333333%;
}

.footer-main .pre-footer .foot-links ul li ul li {
	width: 100%!important;
}

.footer-main .pre-footer .foot-links ul li .menu-txt {
	pointer-events: none;
	cursor: default;
}

.footer-main .pre-footer .foot-links ul li ul {
	display: flex!important;
}

.footer-main .copy-rights p {
	position: static;
	padding-left: 0;
}

.footer-main .copy-rights p br {
	display: none;
}

.footer-main .copy-rights .inn-wrap {
	position: relative;
	padding-left: 41px;
}
}

@media (min-width: 992px) {
.footer-main .pre-footer .foot-links ul li {
	width: 16.5%;
}

.footer-main .pre-footer .foot-links ul li:nth-child(1) {
	width: 17%;
}

.footer-main .pre-footer .foot-links ul li:nth-child(2) {
	width: 18%;
}

.footer-main .pre-footer .foot-links ul li:nth-child(3) {
	width: 18%;
}

.footer-main .pre-footer .foot-links ul li:nth-child(6) {
	width: 14%;
}
}

@media (min-width: 1200px) {
.footer-main .pre-footer .foot-links ul li {
	width: 16%;
}

.footer-main .pre-footer .foot-links ul li:nth-child(1) {
	width: 18%;
}

.footer-main .pre-footer .foot-links ul li:nth-child(2) {
	width: 18%;
}

.footer-main .pre-footer .foot-links ul li:nth-child(3) {
	width: 20%;
}

.footer-main .pre-footer .foot-links ul li:nth-child(6) {
	width: 12%;
}
}

@media (max-width: 1399px) {
.footer-main .pre-footer .brand img {
	max-width: 185px;
}
}

@media (max-width: 767px) {
.footer-main .pre-footer {
	padding: 50px 0;
}

.footer-main .pre-footer .brand img {
	max-width: 170px;
}

.footer-main .pre-footer .foot-links ul {
	justify-content: left;
	margin-bottom: -25px;
}

.footer-main .pre-footer .foot-links ul li {
	width: 100%;
	margin-bottom: 25px;
}

.footer-main .pre-footer .foot-links ul li .menu-txt {
	width: 100%;
	float: left;
	position: relative;
	cursor: pointer;
	padding: 0 24px 0 0;
}

.footer-main .pre-footer .foot-links ul li .menu-txt:after {
	content: "\f078";
	font-family: "Font Awesome\ 5 Pro";
	font-weight: 400;
	font-size: 120%;
	line-height: 120%;
	position: absolute;
	top: 50%;
	right: 0;
	-ms-transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	transform: translate(0, -50%);
	margin: 1px 0 0 0;
}

.footer-main .pre-footer .foot-links ul li .menu-txt:hover,
.footer-main .pre-footer .foot-links ul li .menu-txt.active {
	color: #f5ba36;
	text-decoration: none;
}

.footer-main .pre-footer .foot-links ul li .menu-txt.active:after {
	content: "\f077";
}

.footer-main .pre-footer .foot-links ul li ul {
	width: 100%;
	float: left;
	padding: 0 0 0 15px;
	margin: 20px 0 -16px 0;
	display: none;
}

.footer-main .pre-footer .foot-links ul li ul li {
	padding: 0;
	margin-bottom: 16px;
}

.footer-main .copy-rights {
	text-align: center;
	display: flex;
	flex-flow: column;
}

.footer-main .copy-rights p {
	width: 100%;
	padding: 40px 0 0 0;
	margin-top: 20px;
	order: 2;
}

.footer-main .copy-rights p .icon-logo {
	top: 0;
	left: 50%;
	-ms-transform: translate(-50%, 0);
	-webkit-transform: translate(-50%, 0);
	-moz-transform: translate(-50%, 0);
	-o-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
}

.footer-main .copy-rights .inn-wrap {
	display: flex;
	flex-flow: column;
	order: 2;
	margin: 25px 0 0 0;
}

.footer-main .copy-rights .term-links {
	overflow: hidden;
	order: 1;
}

.footer-main .copy-rights .inn-wrap {
	vertical-align: top;
	padding: 0;
	/* margin: 0; */
}

.footer-main .copy-rights .social-links {
	width: 100%;
	vertical-align: top;
	text-align: center;
	margin: 0 auto;
	order: 1;
}
}


/*
 6.) Inner - Pages
----------------------------------------*/

/* Hero - Inner */
.hero-inner {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	font-weight: 300;
	font-size: 22px;
	line-height: 150%;
	background: #edf2f4;
	overflow: hidden;
	position: relative;
	z-index: 1;
	padding: 38px 0 0 0;
}

.hero-inner strong {
	font-weight: 600;
}

.hero-inner .hero-bg {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
	z-index: -1;
}

.hero-inner .hero-bg:before {
	content: "";
	width: 100%;
	height: 100%;
	background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, #edf2f4 100%);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.hero-inner .hero-bg img {
	width: auto;
	max-width: none;
	max-height: none;
	min-width: 100%;
	min-height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	margin: 0;
}

.hero-inner .breadcrumb-cont {
	margin-bottom: 0;
}

.hero-inner .row {
	padding: 0;
	margin: 0;
}

.hero-inner .row > div {
	padding: 0;
	margin: 0;
}

.hero-inner .row > div .aside {
	width: 100%;
	max-width: 590px;
	float: none;
	display: inline-block;
	vertical-align: top;
	padding: 90px 0 120px 0;
}

.hero-inner .row > div .aside p {
	width: 100%;
	max-width: 530px;
}

.hero-inner .row > div .figure {
	overflow: visible;
	position: relative;
	z-index: 1;
	margin: 0;
}

.hero-inner .row > div .figure .circle-bg {
	width: 100%;
	opacity: .80!important;
	position: absolute;
	bottom: -20%;
	right: -8%;
	z-index: -1;
	animation-delay: 1s;
}

.hero-inner .row > div .figure .circle-bg img {
	width: 100%;
}

@media (min-width: 768px) {
.hero-inner .row > div:nth-child(1) {
	width: 60%;
	min-height: 350px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding-right: 40px;
	margin-left: 0;
	margin-right: 0;
}

.hero-inner .row > div:nth-child(2) {
	width: 47%;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	margin-left: -4%;
	margin-right: -4%;
}

.hero-inner .row > div .aside h1,
.hero-inner .row > div .aside .h1 {
	margin-right: -32%;
}

.hero-inner .row > div .figure img {
	width: auto;
	max-width: 100%;
	max-height: 570px;
}

.hero-inner .row > div .figure .circle-bg {
	max-width: 639px;
	bottom: -50px;
	right: -8%;
}

.hero-inner .row > div .figure .circle-bg img {
	max-width: inherit;
	max-height: inherit;
	width: 100%;
}
}

@media (min-width: 992px) {
.hero-inner .row > div:nth-child(1) {
	width: 50%;
	min-height: 450px;
	margin-left: 0;
	margin-right: 0;
}

.hero-inner .row > div:nth-child(2) {
	width: 51%;
	margin-left: 0;
	margin-right: -2%;
}

.hero-inner .row > div .aside h1,
.hero-inner .row > div .aside .h1 {
	margin-right: -30%;
}

.hero-inner .row > div .figure .circle-bg {
	bottom: -100px;
}
}

@media (min-width: 1200px) {
.hero-inner .row > div .aside h1,
.hero-inner .row > div .aside .h1 {
	margin-right: -20%;
}

.hero-inner .row > div .figure .circle-bg {
	bottom: -150px;
}
}

@media (min-width: 1300px) {
.hero-inner .row > div:nth-child(1) {
	min-height: 550px;
}

.hero-inner .row > div .aside h1,
.hero-inner .row > div .aside .h1 {
	margin-right: -10%;
}

.hero-inner .row > div .figure .circle-bg {
	bottom: -180px;
}
}

@media (max-width: 1199px) {
.hero-inner .row > div .aside {
	padding: 70px 0 90px 0;
}
}

@media (max-width: 767px) {
.hero-inner {
	font-size: 20px;
}

.hero-inner .row > div .aside {
	padding: 40px 0 60px 0;
}
}


/* Hero - Inner ALT */
.hero-inner.alt .row > div .figure .circle-bg {
	bottom: -48%;
}

@media (min-width: 768px) {
.hero-inner.alt .row > div .figure .circle-bg {
	bottom: -55%;
}
}

@media (min-width: 992px) {
.hero-inner.alt .row > div .figure .circle-bg {
	bottom: -50%;
}
}

@media (min-width: 1200px) {
.hero-inner.alt .row > div .figure .circle-bg {
	bottom: -48%;
}
}

@media (min-width: 1300px) {
.hero-inner.alt .row > div .figure .circle-bg {
	bottom: -35%;
}
}


/* Hero - Inner ALT2 */
.hero-inner.alt2 .row > div .aside {
	padding-bottom: 150px;
}

.hero-inner.alt2 .row > div .figure .circle-bg {
	bottom: -70%;
	right: -25px;
}

@media (min-width: 768px) {
.hero-inner.alt2 .row > div:nth-child(1) {
	width: 60%;
	margin-left: 0;
	margin-right: 0;
}

.hero-inner.alt2 .row > div:nth-child(2) {
	width: 52%;
	margin-left: -8%;
	margin-right: -4%;
}

.hero-inner.alt2 .row > div .aside h1,
.hero-inner.alt2 .row > div .aside .h1 {
	margin-right: -40%;
}

.hero-inner.alt2 .row > div .figure .circle-bg {
	bottom: -45%;
	right: -30%;
}
}

@media (min-width: 992px) {
.hero-inner.alt2 .row > div:nth-child(1) {
	width: 47%;
	margin-right: -10%;
}

.hero-inner.alt2 .row > div:nth-child(2) {
	width: 63%;
	margin-left: 4%;
	margin-right: -4%;
}

.hero-inner.alt2 .row > div .aside h1,
.hero-inner.alt2 .row > div .aside .h1 {
	margin-right: -35%;
}

.hero-inner.alt2 .row > div .figure .circle-bg {
	bottom: -35%;
	right: -25%;
}
}

@media (min-width: 1200px) {
.hero-inner.alt2 .row > div .aside h1,
.hero-inner.alt2 .row > div .aside .h1 {
	margin-right: -20%;
}

.hero-inner.alt2 .row > div .figure .circle-bg {
	bottom: -25%;
	right: -15%;
}
}

@media (min-width: 1300px) {
.hero-inner.alt2 .row > div .aside h1,
.hero-inner.alt2 .row > div .aside .h1 {
	margin-right: -15%;
}

.hero-inner.alt2 .row > div .figure .circle-bg {
	bottom: -15%;
	right: -4%;
}
}

@media (max-width: 1199px) {
.hero-inner.alt2 .row > div .aside {
	padding-bottom: 150px;
}
}

@media (max-width: 991px) {
.hero-inner.alt2 .row > div .aside {
	padding-bottom: 110px;
}
}

@media (max-width: 767px) {
.hero-inner.alt2 .row > div .aside {
	padding-bottom: 60px;
}
}


/* Hero - Inner2 */
.hero-inner2 {
	width: 100%;
	background: linear-gradient(0deg, #edf2f4 0%, rgba(237, 242, 244, 0.4) 100%);
	overflow: hidden;
}

.hero-inner2 .inner-cont {
	width: 100%;
	float: left;
	position: relative;
	z-index: 1;
	padding: 38px 0 130px 0;
}

.hero-inner2 .inner-cont::before {
	content: "";
	width: 1140px;
	height: 1140px;
	float: left;
	background: rgba(84, 153, 200, 0.14);
	border-radius: 100%;
	position: absolute;
	top: -405px;
	left: -420px;
	z-index: -1;
}

.hero-inner2 .cust-row {
	align-items: center;
	margin: 0;
}

.single-location .hero-inner2 .cust-row {
	gap: 20px;
}

.hero-inner2 .cust-row > div {
	padding: 0;
}

.hero-inner2 .cust-row > div .aside {
	font-weight: 300;
	font-size: 22px;
	line-height: 150%;
	position: relative;
	z-index: 1;
}

#slider-team a.box {
    text-decoration: none;
}

#slider-team a.box:hover,
#slider-team a.box:focus,
#slider-team a.box:active {
    text-decoration: underline;
}

.hero-inner2 .figure img {
    max-height: 600px;
    object-fit: contain;
}

#locations {
	scroll-margin-top: 150px;
}


@media (min-width: 768px) {
.hero-inner2 .cust-row > div {
	width: 52%;
	margin-right: -2%;
}

.hero-inner2 .cust-row > div:nth-child(even) {
	width: 50%;
}
}

@media (min-width: 992px) {
.hero-inner2 .cust-row > div {
	width: 39.25%;
	margin-right: -3%;
}

.single-location .hero-inner2 .cust-row > div {
	margin-right: 0%;
}

.hero-inner2 .cust-row > div:nth-child(even) {
	width: 63.75%;
}

.single-location .hero-inner2 .cust-row > div:nth-child(even) {
		width: 55%;
}

.row.cust-row > div:first-child {
	padding-right: 10px;
}
}

@media (max-width: 1399px) {
.hero-inner2 .inner-cont::before {
	width: 960px;
	height: 960px;
	top: -300px;
	left: -300px;
}
}

@media (max-width: 1199px) {
.hero-inner2 .inner-cont {
	padding: 38px 0 100px 0;
}

.hero-inner2 .inner-cont::before {
	width: 860px;
	height: 860px;
	top: -360px;
	left: -360px;
}
}

@media (max-width: 991px) {
.hero-inner2 .inner-cont::before {
	top: -400px;
	left: -400px;
}

.hero-inner2 .cust-row {
	margin-bottom: -50px;
}

.hero-inner2 .cust-row > div {
	padding-bottom: 50px;
}
}

@media (max-width: 767px) {
.hero-inner2 .inner-cont {
	padding: 38px 0 70px 0;
}

.hero-inner2 .inner-cont::before {
	width: 560px;
	height: 560px;
	top: -200px;
	left: -200px;
}

.hero-inner2 .cust-row > div .aside {
	font-size: 20px;
}
}


/* Anchor Menu - Links */
.anchor-menu-links {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	margin-bottom: 50px;
}

.anchor-menu-links:last-child {
	margin-bottom: 0;
}

.anchor-menu-links ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 0;
	margin: 0 -30px -20px -30px;
}

.anchor-menu-links ul li {
	padding: 0;
	margin: 0 30px 20px 30px;
}

.anchor-menu-links ul li::before {
	display: none;
}

.anchor-menu-links ul li a {
	font-weight: 600;
	font-size: 20px;
	color: #365072;
	line-height: 150%;
	text-decoration: none;
	position: relative;
	padding: 0 0 2px 0;
}

.anchor-menu-links ul li a:after {
	content: "";
	width: 0;
	height: 2px;
	background: #365072;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	position: absolute;
	bottom: 0;
	left: 50%;
}

.anchor-menu-links ul li a:hover:after,
.anchor-menu-links ul li.current > a:after {
	width: 100%;
	left: 0;
}

@media (max-width: 1199px) {
.anchor-menu-links {
	margin-bottom: 100px;
}
}

@media (max-width: 767px) {
.anchor-menu-links {
	margin-bottom: 70px;
}

.anchor-menu-links ul {
	margin: 0 -20px -20px -20px;
}

.anchor-menu-links ul li {
	padding: 0;
	margin: 0 20px 20px 20px;
}

.anchor-menu-links ul li a {
	font-size: 18px;
}
}


/* Table - Content */
.table-cont-wrap {
	padding-top: 130px;
	padding-bottom: 130px;
}
.table-cont-wrap.wrap-gray {
	background: #EDF2F4;
}
.table-cont-wrap.wrap-gray .table-cont {
	background: #fff;
}
.table-cont-wrap.wrap-white {
	background: #ffffff;
}
.table-cont-wrap.wrap-white .table-cont {
	background: #EFF4F6;
}

.table-cont {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	border-top: 20px solid #64a5ce;
	overflow: hidden;
	padding: 70px 5.5% 80px 5.5%;
	margin-bottom: 130px;
	background: #ffffff;
}

.table-cont:last-child {
	margin-bottom: 0;
}

.table-cont h2,
.table-cont .h2 {
	text-align: center;
	padding-bottom: 50px;
}

.table-cont h2:last-child,
.table-cont .h2:last-child {
	padding-bottom: 0;
}

.table-cont ul {
	display: flex;
	flex-wrap: wrap;
	overflow: hidden;
	padding: 0;
	margin: 0;
}

.table-cont ul li {
	width: 33.33333333333333%;
	float: left;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	font-weight: 600;
	font-size: 20px;
	color: #365072;
	line-height: 150%;
	position: relative;
	padding: 33px;
	margin: 0;
}

.table-cont ul li:last-child {
	padding: 33px;
}

.table-cont ul li::before {
	content: "";
	width: 100%;
	height: 1px;
	background: #5499c8;
	position: absolute;
	top: -1px;
	left: 0;
}

.table-cont ul li::after {
	content: "";
	width: 1px;
	height: 100%;
	background: #5499c8;
	position: absolute;
	top: 0;
	right: -1px;
}

.table-cont ul li:nth-child(3n)::after {
	display: none;
}

.table-cont ul li.empty-cell {
	pointer-events: none;
}

.table-cont ul li a {
	font-weight: inherit;
	color: inherit;
	text-decoration: none;
}

.table-cont ul li a:hover,
.table-cont ul li a:focus,
.table-cont ul li a:active {
	text-decoration: underline;
}

.table-cont ul {
	  grid-template-columns: repeat(6, minmax(0, 1fr)); 
}

.table-cont ul li {
  box-sizing: border-box;
	/* justify-content: center; */
	grid-column: span 2;
}

@media (max-width: 1199px) {
.table-cont-wrap {
	padding-top: 100px;
	padding-bottom: 100px;
}

.table-cont {
	border-top-width: 15px;
	padding: 60px 5% 70px 5%;
	margin-bottom: 100px;
}

.table-cont h2,
.table-cont .h2 {
	padding-bottom: 40px;
}

.table-cont ul li {
	padding: 30px;
}

.table-cont ul li:last-child {
	padding: 30px;
}
}

@media (max-width: 991px) {
.table-cont-wrap {
	padding-top: 80px;
	padding-bottom: 80px;
}

.table-cont ul li {
	width: 50%;
}
.table-cont ul li:nth-child(3n)::after {
	display: block;
}
}

@media (max-width: 767px) {
.table-cont-wrap {
	padding-top: 70px;
	padding-bottom: 70px;
}

.table-cont {
	border-top-width: 10px;
	padding: 40px 25px;
	margin-bottom: 70px;
}

.table-cont h2,
.table-cont .h2 {
	padding-bottom: 30px;
}

.table-cont ul li {
	font-size: 18px;
	padding: 25px 20px;
}

.table-cont ul li:last-child {
	padding: 25px 20px;
}
}

@media (max-width: 575px) {
.table-cont ul {
	border-bottom: 1px solid #5499c8;
}

.table-cont ul li {
	width: 100%;
}

.table-cont ul li::before {
	top: 0;
}
}


/* Timeline - Content */
.timeline-cont {
	width: 100%;
	overflow: hidden;
	padding: 135px 0 145px 0;
}

.timeline-cont .timeline {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	overflow: hidden;
	margin-bottom: 25px;
}



.timeline-cont .timeline .article-wrap {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	padding: 80px 0 140px 0;
}

.timeline-cont .timeline .article-wrap .default-line {
	width: 3px;
	height: 100%;
	float: left;
	background: #bdc3c7;
	position: absolute;
	top: 0;
	left: 50%;
	-ms-transform: translate(-50%, 0);
	-webkit-transform: translate(-50%, 0);
	-moz-transform: translate(-50%, 0);
	-o-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
}

.timeline-cont .timeline .article-wrap .draw-line {
	width: 3px;
	height: 0;
	float: left;
	background: #64a5ce;
	position: absolute;
	top: 0;
	left: 50%;
	-ms-transform: translate(-50%, 0);
	-webkit-transform: translate(-50%, 0);
	-moz-transform: translate(-50%, 0);
	-o-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
}

.timeline-cont .timeline .article-wrap .btm-dot {
	width: 47px;
	height: 47px;
	float: left;
	text-indent: -999999px;
	text-align: center;
	background: #365072;
	border: 16px solid #ffffff;
	border-radius: 360px;
	position: absolute;
	bottom: 0;
	left: 50%;
	-ms-transform: translate(-50%, 0);
	-webkit-transform: translate(-50%, 0);
	-moz-transform: translate(-50%, 0);
	-o-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	z-index: 1;
}

.timeline-cont .timeline .article {
	width: 50%;
	float: left;
	padding-left: 5%;
	margin-top: -140px;
	margin-left: 50%;
	position: relative;
	min-height: 400px;
}

.timeline-cont .timeline .article:first-child {
	margin-top: 0;
}

.timeline-cont .timeline .article .aside {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	padding: 0 0 32px 0;
}

.timeline-cont .timeline .article .aside:last-child {
	padding-bottom: 0;
}

.timeline-cont .timeline .article .dot {
	width: 47px;
	height: 47px;
	float: left;
	text-indent: -999999px;
	text-align: center;
	background: #bdc3c7;
	border: 16px solid #ffffff;
	border-radius: 360px;
	position: absolute;
	top: 0;
	left: -23px;
	z-index: 1;
	transition: 0.125s ease-in-out, background-color 0.2s ease-out, color 0.1s ease-out, border 0.1s ease-out;
}

.timeline-cont .timeline .article.dot::before {
	content: "";
	width: 47px;
	height: 47px;
	float: left;
	border-radius: 360px;
	background: #365072;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	border: 16px solid #ffffff;
	position: absolute;
	left: -23px;
	top: 0;
	z-index: 2;
	transition: 0.125s ease-in-out, background-color 0.2s ease-out, color 0.1s ease-out, border 0.1s ease-out;
}

.timeline-cont .bottom-cont {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	text-align: center;
}

.timeline-cont .bottom-cont .aside {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
}

.timeline-cont .bottom-cont .aside h2,
.timeline-cont .bottom-cont .aside .h2 {
	width: 100%;
	max-width: 690px;
	padding-bottom: 40px;
	margin: 0 auto;
}

.timeline-cont .bottom-cont .aside h2:last-child,
.timeline-cont .bottom-cont .aside .h2:last-child {
	padding-bottom: 0;
}

.timeline-cont .bottom-cont .aside ul {
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: center;
	background: rgba(84, 153, 200, 0.2);
	border-radius: 900px;
	padding: 13px;
	margin: 0;
}

.timeline-cont .bottom-cont .aside ul li {
	min-height: 46px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	border-right: 1px solid rgba(54, 80, 114, 0.4);
	padding: 0 40px;
	margin: 0;
}

.timeline-cont .bottom-cont .aside ul li::before {
	display: none;
}

.timeline-cont .bottom-cont .aside ul li:last-child {
	border-right: none;
}

.timeline-cont .bottom-cont .aside ul li a {
	color: #365072;
	text-decoration: none;
}

.timeline-cont .bottom-cont .aside ul li a:after {
	content: "";
	width: 13px;
	height: 13px;
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	vertical-align: middle;
	background: url(../img/arrow-up-right-navy.svg) no-repeat center center;
	background-size: 100% auto;
	text-indent: -9999px;
	position: relative;
	top: -1px;
	margin: 0 0 0 13px;
}

.timeline-cont .bottom-cont .aside ul li a:hover,
.timeline-cont .bottom-cont .aside ul li a:focus,
.timeline-cont .bottom-cont .aside ul li a:active {
	text-decoration: underline;
}

.timeline-cont .bottom-cont .aside ul li a:hover:after,
.timeline-cont .bottom-cont .aside ul li a:focus:after,
.timeline-cont .bottom-cont .aside ul li a:active:after {
	animation: arrowupright 0.5s linear 1;
	-webkit-animation-name: arrowupright 0.5s linear 1;
}

@media (min-width: 768px) {
.timeline-cont .timeline .article:nth-child(even) {
	text-align: right;
	padding-left: 0;
	padding-right: 5%;
	margin-left: 0;
	margin-right: 50%;
}

.timeline-cont .timeline .article:nth-child(even) .dot {
	left: auto;
	right: -23px;
}

.timeline-cont .timeline .article:nth-child(even).dot::before {
	left: auto;
	right: -23px;
}

.timeline-cont .timeline .article:nth-child(even).fadeInRight {
	-webkit-animation-name: fadeInLeft;
	animation-name: fadeInLeft;
}

.timeline-cont .article.image-article {
    min-height: 900px;
}

}

@media (max-width: 1199px) {
.timeline-cont {
	padding: 110px 0;
}
}

@media (max-width: 1199px) {
.timeline-cont .bottom-cont .aside ul li {
	min-height: 46px;
	padding: 0 30px;
}
}

@media (max-width: 767px) {
.timeline-cont {
	padding: 80px 0;
}

.timeline-cont .container {
	padding-left: 0;
	padding-right: 0;
}

.timeline-cont .heading-txt {
	padding-left: 25px;
	padding-right: 25px;
}

.timeline-cont .timeline .article-wrap {
	padding: 50px 0 30px 0;
}

.timeline-cont .timeline .article-wrap .default-line {
	left: 22px;
	transform: none;
}

.timeline-cont .timeline .article-wrap .draw-line {
	left: 22px;
	transform: none;
}

.timeline-cont .timeline .article-wrap .btm-dot {
	left: 0;
	transform: none;
}

.timeline-cont .timeline .article {
	width: 100%;
	padding-left: 50px;
	padding-right: 25px;
	margin: 0 0 70px 0;
}

.timeline-cont .timeline .article .dot {
	top: -5px;
	left: 0;
}

.timeline-cont .timeline .article.dot::before {
	top: -5px;
	left: 0;
}

.timeline-cont .bottom-cont {
	padding-left: 25px;
	padding-right: 25px;
}

.timeline-cont .bottom-cont .aside h2,
.timeline-cont .bottom-cont .aside .h2 {
	padding-bottom: 30px;
}

.timeline-cont .bottom-cont .aside ul li {
	width: 100%;
	min-height: 40px;
	border-right: none;
	padding: 0;
}
}


/* Testimonials - Slider */
.testimonials-slider {
	width: 100%;
	background: #365072;
	overflow: hidden;
	position: relative;
}

.testimonials-slider::before {
	content: "";
	width: 100%;
	height: 23px;
	background: url(../img/divider-horizontal-reverse.png) no-repeat center center;
	background-size: 100% 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.testimonials-slider .item {
	width: 100%;
	float: left;
	text-align: center;
	padding: 140px 0;
}

.testimonials-slider .item .aside {
	width: 100%;
	max-width: 1120px;
	float: none;
	display: inline-block;
	vertical-align: top;
	font-weight: 300;
	font-size: 28px;
	color: #ffffff;
	line-height: 150%;
	text-align: left;
	background: url(../img/quote.svg) no-repeat left 14px;
	background-size: 103px auto;
	position: relative;
	padding: 0 0 0 150px;
}

.testimonials-slider .item .aside h2,
.testimonials-slider .item .aside h3,
.testimonials-slider .item .aside h4,
.testimonials-slider .item .aside h5,
.testimonials-slider .item .aside h6 {
	color: inherit;
	padding-bottom: 28px;
}

.testimonials-slider .item .aside h2:last-child,
.testimonials-slider .item .aside h3:last-child,
.testimonials-slider .item .aside h4:last-child,
.testimonials-slider .item .aside h5:last-child,
.testimonials-slider .item .aside h6:last-child {
	padding-bottom: 0;
}

.testimonials-slider .item .aside p {
	padding-bottom: 27px;
}

.testimonials-slider .item .aside p:last-child {
	padding-bottom: 0;
}

.testimonials-slider .item .aside .name {
	font-weight: 400;
	font-size: 22px;
	position: relative;
	padding: 0 0 0 37px;
}

.testimonials-slider .item .aside .name::before {
	content: "";
	width: 21px;
	height: 2px;
	background: #97ac3c;
	position: absolute;
	top: 23px;
	left: 0;
}

.testimonials-slider .owl-carousel {
	position: static;
}

.testimonials-slider .owl-item {
	overflow: hidden;
}

.testimonials-slider .owl-nav {
	position: absolute;
	bottom: 40px;
	right: 40px;
	margin: 0;
}

@media (max-width: 1199px) {
.testimonials-slider .item {
	padding: 120px 0;
}

.testimonials-slider .item .aside {
	font-size: 24px;
	background-position: left 12px;
	background-size: 80px auto;
	padding: 0 0 0 120px;
}

.testimonials-slider .item .aside .name {
	font-size: 20px;
}
}

@media (max-width: 767px) {
.testimonials-slider::before {
	height: 15px;
}

.testimonials-slider .item {
	padding: 80px 0 110px 0;
}

.testimonials-slider .item .aside {
	font-size: 22px;
	background-position: left 0px;
	background-size: 64px auto;
	padding: 80px 0 0 0;
}

.testimonials-slider .item .aside h2,
.testimonials-slider .item .aside h3,
.testimonials-slider .item .aside h4,
.testimonials-slider .item .aside h5,
.testimonials-slider .item .aside h6 {
	padding-bottom: 25px;
}

.testimonials-slider .item .aside .name {
	font-size: 18px;
	padding: 0 0 0 36px;
}

.testimonials-slider .item .aside .name::before {
	width: 20px;
	top: 15px;
}

.testimonials-slider .owl-nav {
	bottom: 25px;
	right: 25px;
}
}


/* Testimonials - Slider ALT */
.container .testimonials-slider .item {
	padding-left: 40px;
	padding-right: 40px;
}

@media (max-width: 767px) {
.container .testimonials-slider .item {
	padding-left: 25px;
	padding-right: 25px;
}
}


/* Team - Slider */
.team-slider {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	margin-bottom: 130px;
}

.team-slider:last-child {
	margin-bottom: 0;
}

.team-slider .row > div .owl-nav {
	justify-content: flex-start;
	margin: 0;
	display: none;
}

.team-slider .row > div .item {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
}

.team-slider .row > div .item h4:last-child,
.team-slider .row > div .item .h4:last-child {
	padding: 10px 0 0;
}

.team-slider .row > div .item .figure {
	margin-bottom: 25px;
}

.team-slider .row > div .item .figure:last-child {
	margin-bottom: 0;
}

.team-slider .row > div .item .aside {
	width: 100%;
}

.team-slider .row > div .item .aside .position{
	font-weight: 600;
	font-size: 20px;
	color: #365072;
	line-height: 150%;
}

.team-slider .row > div .owl-stage-outer {
	overflow: visible;
}

.team-slider .row > div .owl-stage {
	display: flex;
	flex-wrap: wrap;
	/* align-items: center; */
}

@media (min-width: 992px) {
.team-slider .row > div:nth-child(1) {
	position: relative;
	z-index: 2;
}

.team-slider .row > div:nth-child(1):before {
	content: "";
	width: 10000px;
	height: 100%;
	background: #ffffff;
	position: absolute;
	top: 0;
	right: -20px;
	z-index: -1;
}
}

@media (min-width: 1200px) {
.team-slider .row > div:nth-child(1):before {
	right: -25px;
}
}

@media (min-width: 1300px) {
.team-slider .row > div:nth-child(1):before {
	right: -30px;
}
}

@media (min-width: 1400px) {
.team-slider .row > div:nth-child(1):before {
	right: -35px;
}
}

@media (max-width: 1199px) {
.team-slider {
	margin-bottom: 100px;
}
}

@media (max-width: 991px) {
.team-slider .row > div .item {
	width: 280px;
}
}

@media (max-width: 767px) {
.team-slider {
	margin-bottom: 70px;
}

.team-slider .row > div .item h4,
.team-slider .row > div .item .h4 {
	padding-bottom: 15px;
}

.team-slider .row > div .item .figure {
	margin-bottom: 20px;
}
}


/* Team - List */
.team-list {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	margin-bottom: 130px;
}

/* Temporarily disabled underline on hover
.team-list .row .box:hover > div .name,
.team-list .row .box:hover > div .position {
  text-decoration: underline;
}
*/

.team-list:last-child {
	margin-bottom: 0;
}

.team-list .row {
	margin: 0 -18px -60px -18px;
}

.team-list .row > div {
	padding: 0 18px 60px 18px;
}

.team-list .row > div .box {
	width: 100%;
	height: 100%;
	float: left;
	display: flex;
	flex-direction: column;
	font-weight: inherit;
	color: inherit;
	text-decoration: none;
	cursor: auto;
}

.team-list .row > div .name {
	font-weight: 700;
	font-size: 28px;
	color: #365072;
	line-height: 140%;
	margin-bottom: 5px;
}

.team-list .row > div .name:last-child {
	margin-bottom: 0;
}

.team-list .row > div .position {
	font-weight: 600;
	font-size: 20px;
	color: #365072;
	line-height: 150%;
	margin-bottom: 5px;
}

.team-list .row > div .position:last-child {
	margin-bottom: 0;
}

.team-list .row > div .aside {
	width: 100%;
}

.team-list .row > div .figure {
	margin-bottom: 10px;
}

.team-list .row > div .figure:last-child {
	margin-bottom: 0;
}

@media (max-width: 1199px) {
.team-list {
	margin-bottom: 100px;
}

.team-list .row {
	margin: 0 -15px -50px -15px;
}

.team-list .row > div {
	padding: 0 15px 50px 15px;
}

.team-list .row > div .name {
	font-size: 24px;
}
}

@media (max-width: 767px) {
.team-list {
	margin-bottom: 70px;
}

.team-list .row {
	margin: 0 -12px -40px -12px;
}

.team-list .row > div {
	padding: 0 12px 40px 12px;
}

.team-list .row > div .name {
	font-size: 24px;
}

.team-list .row > div .position {
	font-size: 18px;
}
}

@media (max-width: 575px) {
.team-list .row > div .name {
	font-size: 20px;
}

.team-list .row > div .position {
	font-size: 16px;
}
}


/* Split - Form */
.split-form > div h1,
.split-form > div .h1 {
	padding-bottom: 44px;
}

.split-form > div h1:last-child,
.split-form > div .h1:last-child {
	padding-bottom: 0;
}

@media (min-width: 992px) {
.split-form > div {
	width: 58%;
}

.split-form > div:nth-child(even) {
	width: 42%;
}
}

@media (max-width: 767px) {
.split-form > div h1,
.split-form > div .h1 {
	padding-bottom: 30px;
}
}


/* Filter - Bar */
.filter-bar {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	background: #365072;
	position: relative;
	z-index: 2;
	padding: 60px 0;
	margin: 0 0 80px 0;
}

.filter-bar:last-child {
	margin-bottom: 0;
}

.filter-bar .filter-label {
	width: 105px;
	float: left;
	font-weight: 600;
	font-size: 20px;
	color: #ffffff;
	line-height: 65px;
	margin: 0 -105px 0 0;
}

.filter-bar .filter-items-wrap {
	width: 100%;
	float: left;
	padding: 0 0 0 105px;
}

.filter-bar form {
	width: 100%;
}

.filter-bar .filter-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px -20px -10px;
}

.filter-bar .filter-item {
	width: 100%;
	float: left;
	padding: 0 10px 20px 10px;
}

.filter-bar .filter-links {
	width: 100%;
	float: left;
	position: relative;
}

.filter-bar .filter-links .dropdown-toggle {
	width: 100%;
	height: 65px;
	float: left;
	font-weight: 400;
	font-size: 20px;
	color: #365072;
	line-height: 65px;
	text-align: left;
	background: #ffffff;
	box-shadow: inset #64a5ce 0 0 0 1px;
	border-radius: 900px;
	border: none;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	position: relative;
	padding: 0 60px 0 35px;
	margin: 0;
}

.filter-bar .filter-links .dropdown-toggle:after {
	content: "\f078";
	font-family: "Font Awesome\ 5 Pro";
	font-weight: 400;
	font-size: 120%;
	line-height: 100%;
	background: none;
	border: none;
	position: absolute;
	top: 50%;
	right: 35px;
	-ms-transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	transform: translate(0, -50%);
	margin: 0;
}

.filter-bar .filter-links .dropdown-toggle.show:after {
	content: "\f077";
}

.filter-bar .filter-links .dropdown-menu {
	width: 100%;
	display: none;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	background: #ffffff;
	box-shadow: inset #64a5ce 0 0 0 1px;
	border-radius: 20px;
	border: none;
	overflow: hidden;
	padding: 18px 0!important;
	margin: -3px 0!important;
}

.filter-bar .filter-links .dropdown-menu.show {
	display: -ms-flexbox;
	display: flex;
}

.filter-bar .filter-links .dropdown-menu ul {
	width: 100%;
	float: left;
	padding: 0;
	margin: 0;
}

.filter-bar .filter-links .dropdown-menu ul li {
	width: 100%;
	float: left;
	line-height: 1em;
	padding: 0;
	margin: 0;
}

.filter-bar .filter-links .dropdown-menu ul li:before {
	display: none;
}

.filter-bar .filter-links .dropdown-menu ul li a {
	width: 100%;
	float: left;
	font-weight: 400;
	font-size: 20px;
	color: #365072;
	line-height: 150%;
	text-decoration: none;
	padding: 10px 35px;
}

.filter-bar .filter-links .dropdown-menu ul li a:hover,
.filter-bar .filter-links .dropdown-menu ul li a:focus,
.filter-bar .filter-links .dropdown-menu ul li a:active,
.filter-bar .filter-links .dropdown-menu ul li a.active {
	text-decoration: none;
	background: #f5ba36;
}

.filter-bar .btn,
.filter-bar input[type="button"],
.filter-bar input[type="submit"] {
	width: 100%;
	height: 65px;
	line-height: 65px;
	background-image: none;
	padding: 0;
}

@media (min-width: 992px) {
.filter-bar {
	border-radius: 900px;
	padding: 20px 20px 20px 30px;
}

.filter-bar .filter-item:nth-child(1) {
	width: 38%;
}

.filter-bar .filter-item:nth-child(2) {
	width: 38%;
}

.filter-bar .filter-item:nth-child(3) {
	width: 24%;
}
}

@media (min-width: 1200px) {
.filter-bar {
	padding-left: 45px;
}
}

@media (max-width: 1199px) {
.filter-bar {
	margin-bottom: 70px;
}
}

@media (max-width: 991px) {
.filter-bar:after {
	content: "";
	width: 10000px;
	height: 100%;
	background: #365072;
	position: absolute;
	top: 0;
	left: -5000px;
	z-index: -1;
}
}

@media (max-width: 767px) {
.filter-bar {
	padding: 40px 0;
	margin: 0 0 50px 0;
}

.filter-bar .filter-label {
	width: 100%;
	font-size: 18px;
	line-height: 150%;
	margin: 0 0 20px 0;
}

.filter-bar .filter-items-wrap {
	padding: 0;
}

.filter-bar .filter-links .dropdown-toggle {
	height: 55px;
	font-size: 18px;
	line-height: 55px;
	padding: 0 60px 0 30px;
}

.filter-bar .filter-links .dropdown-toggle:after {
	right: 30px;
}

.filter-bar .filter-links .dropdown-menu ul li a {
	font-size: 18px;
	padding: 10px 30px;
}

.filter-bar .btn,
.filter-bar input[type="button"],
.filter-bar input[type="submit"] {
	height: 55px;
	line-height: 55px;
}
}


/* Articles - List */
.articles-list {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	padding: 0 0 130px 0;
}

.articles-list:last-child {
	padding-bottom: 0;
}

.articles-list .row {
	padding: 0;
	margin: 0 -20px -40px -20px;
}

.articles-list .row > div {
	padding: 0 20px 40px 20px;
}

.articles-list .row > div .box {
	width: 100%;
	height: 100%;
	float: left;
	font-weight: inherit;
	color: inherit;
	text-decoration: none;
	background: #ffffff;
	border: 1px solid #64a5ce;
	overflow: hidden;
}

.articles-list .row > div .box .figure {
	border-radius: 0;
	margin: 0;
}

.articles-list .row > div .box .figure img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
}

.articles-list .row > div .box .aside {
	width: 100%;
	float: left;
	display: flex;
	flex-flow: column;
	position: relative;
	z-index: 1;
	padding: 13% 11% 11% 11%;
}

.articles-list .row > div .box .aside:before {
	content: "";
	width: 100%;
	height: 13px;
	background: url(../img/divider-horizontal2.png) no-repeat center center;
	background-size: 100% 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

.articles-list .row > div .box .aside .category-name {
	display: inline-block;
	font-size: 16px;
	color: #365072;
	line-height: 140%;
	text-transform: uppercase;
	background: #edf2f4;
	border-radius: 8px;
	overflow: hidden;
	padding: 6px 16px;
}

.articles-list .row > div .box .aside .category-name:last-child {
	margin-bottom: 0;
}

.articles-list .row > div .box .aside h4,
.articles-list .row > div .box .aside .h4 {
	display: flex;
	align-items: center;
	min-height: 72px;
	padding-bottom: 0;
	text-decoration: none;
	margin-top: 15px;
}

.articles-list .row > div .box .aside p {
	margin-top: 15px;
}

.articles-list .row > div .box .aside h4,
.articles-list .row > div .box .aside .h4:last-child {
	padding-bottom: 0;
}

.articles-list .row > div .box .aside .read-more {
	margin-top: 0;
}

.articles-list .row > div .box .direct-link {
	font-weight: 700;
	text-decoration: underline;
}

.articles-list .row > div .box .icn {
	font-size: 37px;
	color: #5499c8;
	line-height: 1em;
	margin-top: 5px;
}

.articles-list .row > div .box:hover .figure img,
.articles-list .row > div .box:focus .figure img,
.articles-list .row > div .box:active .figure img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	transform: scale(1.1);
}

.articles-list .row > div .box .aside a.h4:hover,
.articles-list .row > div .box .aside a.h4:focus,
.articles-list .row > div .box .aside a.h4:active {
	text-decoration: underline !important;
}

.articles-list .row > div .box .aside .direct-link:hover,
.articles-list .row > div .box .aside .direct-link:focus,
.articles-list .row > div .box .aside .direct-link:active  {
	text-decoration: none;
}

div#sec-floor-plans .row > div .box .figure {
	display: flex;
	align-items: center;
}

div#sec-floor-plans .row > div .box .figure img {
	object-fit: scale-down;
	max-height: 600px;
	height: 400px;
} 

@media (min-width: 992px) {
.articles-list .filter-bar {
	margin-top: -52.5px;
}
}

@media (max-width: 1199px) {

.articles-list {
	padding: 0 0 100px 0;
}

.articles-list .row {
	margin: 0 -15px -40px -15px;
}

.articles-list .row > div {
	padding: 0 15px 40px 15px;
}

.articles-list .row > div .box .aside {
	padding: 13% 10% 10% 10%;
}
}

@media (min-width: 992px) and (max-width: 1199px) {
.articles-list .row > div .box .aside h4,
.articles-list .row > div .box .aside .h4 {
	font-size: 22px;
}
}

@media (max-width: 767px) {
.articles-list {
	padding: 0 0 70px 0;
}

.articles-list .row {
	margin: 0 -12px -30px -12px;
}

.articles-list .row > div {
	padding: 0 12px 30px 12px;
}

.articles-list .row > div .box .aside {
	padding: 45px 25px 35px 25px;
}
.articles-list .row > div .box .aside h4,
.articles-list .row > div .box .aside .h4 {
	min-height: 0;
}
}


/* Articles - List ALT */
.articles-list.alt .row > div .box {
	font-weight: 600;
	color: #365072;
}

@media (min-width: 1200px) {
.articles-list.alt .row > div .box {
	font-size: 20px;
}
}


/* Articles - List ALT Related */
.articles-list.alt-related {
	padding: 130px 0;
}

.articles-list.alt-related .heading-txt {
	text-align: left;
}

.articles-list.alt-related .heading-txt h2,
.articles-list.alt-related .heading-txt .h2 {
	position: relative;
	padding: 0 0 0 60px;
}

.articles-list.alt-related .heading-txt h2:before,
.articles-list.alt-related .heading-txt .h2:before {
	content: "";
	width: 35px;
	height: 50px;
	background: url(../img/divider-heading-green.png) no-repeat left center;
	background-size: 100% auto;
	position: absolute;
	top: 50%;
	left: 0;
	-ms-transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	transform: translate(0, -50%);
}

@media (max-width: 1199px) {
.articles-list.alt-related {
	padding: 100px 0;
}

.articles-list.alt-related .heading-txt h2,
.articles-list.alt-related .heading-txt .h2 {
	padding-left: 50px;
}

.articles-list.alt-related .heading-txt h2:before,
.articles-list.alt-related .heading-txt .h2:before {
	width: 30px;
	height: 43px;
}
}

@media (min-width: 768px) and (max-width: 991px) {
.articles-list.alt-related .row > div:last-child {
	display: none;
}
}

@media (max-width: 767px) {
.articles-list.alt-related {
	padding: 70px 0;
}

.articles-list.alt-related .heading-txt h2,
.articles-list.alt-related .heading-txt .h2 {
	padding-left: 40px;
}

.articles-list.alt-related .heading-txt h2:before,
.articles-list.alt-related .heading-txt .h2:before {
	width: 25px;
	height: 36px;
}
}


/* Articles - List2 */
.articles-list2 {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	margin-bottom: 130px;
}

.articles-list2:last-child {
	margin-bottom: 0;
}

.articles-list2 .row {
	margin: 0 -20px -40px -20px;
}

.articles-list2 .row > div {
	padding: 0 20px 40px 20px;
}

.articles-list2 .row > div .box {
	width: 100%;
	height: 100%;
	float: left;
	font-weight: inherit;
	color: inherit;
	text-decoration: none;
	background: #ffffff;
	border: 1px solid #64a5ce;
	border-radius: 20px;
	overflow: hidden;
}

.articles-list2 .row > div .box .aside {
	width: 100%;
	float: left;
	padding: 27px 27px 40px 27px;
}

.articles-list2 .row > div .box .aside .title-wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: self-start;
	position: relative;
	padding: 0 50px 0 0;
	margin-bottom: 24px;
}

.articles-list2 .row > div .box .aside .title-wrap .bx-brand {
	width: 68px;
	float: left;
	text-align: center;
	border-radius: 100%;
	overflow: hidden;
	position: relative;
	z-index: 1;
	margin-right: -68px;
}

.articles-list2 .row > div .box .aside .title-wrap .bx-brand img {
	width: 100%;
}

.articles-list2 .row > div .box .aside .title-wrap .bx-title {
	width: 100%;
	min-height: 68px;
	float: left;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	font-weight: 600;
	font-size: 24px;
	color: #365072;
	line-height: 130%;
	padding: 0 0 0 84px;
}

.articles-list2 .row > div .box .aside .title-wrap .bx-icn {
	width: 33px;
	height: 68px;
	float: right;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	border-radius: 360px;
	position: absolute;
	top: 0;
	right: -3px;
}

.articles-list2 .row > div .box .aside .title-wrap .bx-icn img {
	width: 100%;
}

.articles-list2 .row > div .box .aside .read-more {
	margin-top: 0;
}

.articles-list2 .row > div .box .figure {
	border-radius: 0;
	margin: 0;
}

.articles-list2 .row > div .box .figure img {
	height: 386px;
	object-fit: cover;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
}

.articles-list2 .row > div .box:hover .figure img,
.articles-list2 .row > div .box:focus .figure img,
.articles-list2 .row > div .box:active .figure img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	transform: scale(1.1);
}

@media (max-width: 1199px) {
.articles-list2 {
	margin-bottom: 100px;
}

.articles-list2 .row {
	margin: 0 -15px -40px -15px;
}

.articles-list2 .row > div {
	padding: 0 15px 40px 15px;
}

.articles-list2 .row > div .box {
	border-radius: 15px;
}

.articles-list2 .row > div .box .aside .title-wrap .bx-brand {
	width: 60px;
	margin-right: -60px;
}

.articles-list2 .row > div .box .aside .title-wrap .bx-title {
	min-height: 60px;
	font-size: 20px;
	padding: 0 0 0 72px;
}

.articles-list2 .row > div .box .aside .title-wrap .bx-icn {
	width: 30px;
	height: 60px;
}
}

@media (max-width: 991px) {
.articles-list2 .row > div .box .aside .title-wrap .bx-title {
	font-size: 22px;
}
}

@media (max-width: 767px) {
.articles-list2 {
	margin-bottom: 70px;
}

.articles-list2 .row {
	margin: 0 -15px -30px -15px;
}

.articles-list2 .row > div {
	padding: 0 15px 30px 15px;
}

.articles-list2 .row > div .box .aside {
	padding: 20px 20px 40px 20px;
}

.articles-list2 .row > div .box .aside .title-wrap .bx-title {
	font-size: 20px;
}
}


/* Articles - List3 */
.articles-list3 {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	margin-bottom: 130px;
}

.articles-list3:last-child {
	margin-bottom: 0;
}

.articles-list3 .row {
	margin: 0 -20px -40px -20px;
}

.articles-list3 .row > div {
	padding: 0 20px 40px 20px;
}

.articles-list3 .row > div .box {
	width: 100%;
	height: 100%;
	float: left;
	text-align: center;
	border: 1px solid #64a5ce;
	border-radius: 20px;
	padding: 45px 30px 30px 30px;
}

.articles-list3 .row > div .box .ratings {
	margin-bottom: 35px;
}

.articles-list3 .row > div .box .ratings:last-child {
	margin-bottom: 0;
}

.articles-list3 .row > div .box .ratings img {
	display: inline-block;
	vertical-align:top;
}

.articles-list3 .row > div .box .author-wrap {
	margin-bottom: 30px;
}

.articles-list3 .row > div .box .author-wrap:last-child {
	margin-bottom: 0;
}

.articles-list3 .row > div .box .author-wrap .user {
	width: 87px;
	height: 87px;
	float: none;
	display: inline-block;
	vertical-align: top;
	background: #444444;
	border-radius: 900px;
	overflow: hidden;
	margin-bottom: 10px;
}

.articles-list3 .row > div .box .author-wrap .user:last-child {
	margin-bottom: 0;
}

.articles-list3 .row > div .box .author-wrap .user img {
	width: 100%;
	display: inline-block;
	vertical-align:top;
}

.articles-list3 .row > div .box .author-wrap .name {
	font-weight: 700;
}

.articles-list3 .row > div .box .author-wrap .position .dot {
	padding: 0 4px;
}

.articles-list3 .row > div .box .icn {
	margin-bottom: 30px;
}

.articles-list3 .row > div .box .icn:last-child {
	margin-bottom: 0;
}

.articles-list3 .row > div .box .icn img {
	height: 36px;
	display: inline-block;
	vertical-align: top;
}

@media (max-width: 1199px) {
.articles-list3 {
	margin-bottom: 100px;
}

.articles-list3 .row {
	margin: 0 -15px -40px -15px;
}

.articles-list3 .row > div {
	padding: 0 15px 40px 15px;
}

.articles-list3 .row > div .box {
	border-radius: 15px;
	padding: 40px 30px 30px 30px;
}
}

@media (max-width: 767px) {
.articles-list3 {
	margin-bottom: 70px;
}

.articles-list3 .row {
	margin: 0 -15px -30px -15px;
}

.articles-list3 .row > div {
	padding: 0 15px 30px 15px;
}
}


/* Sticky Column - Wrap */
.sticky-col-wrap {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	margin-bottom: 130px;
}

.sticky-col-wrap:last-child {
	margin-bottom: 0;
}

.sticky-col-wrap .left-cl {
	width: 100%;
	float: left;
	padding: 0 395px 0 0;
}

.sticky-col-wrap .left-cl .left-in {
	width: 100%;
	max-width: 892px;
}

.sticky-col-wrap .right-cl {
	width: 355px;
	float: right;
	position: relative;
	z-index: 2;
	margin: 0 0 0 -355px;
}

.sticky-col-wrap .right-cl .right-in {
	width: 100%;
	float: left;
}

.sticky-col-wrap .right-cl.alt {
	padding-top: 160px;
}

@media (min-width: 1200px) {
.sticky-col-wrap .right-cl .cta-box {
	padding: 75px 40px 65px 40px;
}
}

@media (min-width: 992px) and (max-width: 1199px) {
.sticky-col-wrap {
	margin-bottom: 100px;
}

.sticky-col-wrap .left-cl {
	padding: 0 300px 0 0;
}

.sticky-col-wrap .right-cl {
	width: 260px;
	margin: 0 0 0 -260px;
}

.sticky-col-wrap .right-cl .cta-box {
	padding: 53px 25px 43px 25px;
}

.sticky-col-wrap .right-cl .cta-box h3,
.sticky-col-wrap .right-cl .cta-box .h3 {
	font-size: 26px;
	letter-spacing: normal;
	padding-bottom: 10px;
}

.sticky-col-wrap .right-cl .cta-box .btn {
	padding: 16px 30px;
}

.sticky-col-wrap .right-cl .accord-items.alt .accord-header a {
	font-size: 20px;
}

.sticky-col-wrap .right-cl.alt {
	padding-top: 140px;
}
}

@media (max-width: 991px) {
.sticky-col-wrap {
	margin-bottom: 70px;
}

.sticky-col-wrap .left-cl {
	padding: 0 0 80px 0;
}

.sticky-col-wrap .left-cl:last-child {
	padding-bottom: 0;
}

.sticky-col-wrap .right-cl {
	width: 100%;
	min-height: inherit!important;
	position: relative!important;
	top: 0;
	left: 0;
	padding: 0;
	margin: 0;
}

.sticky-col-wrap .right-cl .StickySidebar {
	width: 100%!important;
	float: none!important;
	position: relative!important;
	top: 0!important;
	left: 0!important;
	padding: 0!important;
	margin: 0 auto!important;
}

.sticky-col-wrap .right-cl .right-in {
	padding-bottom: 0;
}

.sticky-col-wrap .right-cl.alt {
	padding-top: 0;
}
}

@media (max-width: 767px) {
.sticky-col-wrap .left-cl {
	padding: 0 0 70px 0;
}
}


/* Left - Max */
@media (min-width: 992px) {
.left-max {
	width: 100%;
	max-width: 892px;
}

.left-max2 {
	width: 100%;
	max-width: 704px;
}

.left-max3 {
	width: 100%;
	max-width: 355px;
}
}


/* Post - Content */
.post-cont {
	width: 100%;
	overflow: hidden;
	padding: 38px 0 160px 0;
}

.post-cont h1,
.post-cont .h1 {
	width: 100%;
	max-width: 1025px;
	padding-bottom: 55px;
}

.post-cont h1:last-child,
.post-cont .h1:last-child {
	padding-bottom: 0;
}

.post-cont .figure.alt {
	margin-bottom: 100px;
}

.post-cont .figure.alt:last-child {
	margin-bottom: 0;
}

@media (max-width: 1199px) {
.post-cont {
	padding: 38px 0 120px 0;
}

.post-cont h1,
.post-cont .h1 {
	padding-bottom: 45px;
}

.post-cont .alt {
	margin-bottom: 80px;
}
}

@media (max-width: 991px) {
.post-cont h1,
.post-cont .h1 {
	font-size: 44px;
	letter-spacing: -0.9px;
}

.post-cont .figure.alt {
	margin-bottom: 60px;
}
}

@media (max-width: 767px) {
.post-cont {
	padding: 38px 0 80px 0;
}

.post-cont h1,
.post-cont .h1 {
	font-size: 36px;
	letter-spacing: -0.7px;
	padding-bottom: 30px;
}

.post-cont .figure.alt {
	margin-bottom: 50px;
}
}

@media (max-width: 369px) {
.post-cont h1,
.post-cont .h1 {
	font-size: 32px;
	letter-spacing: -0.6px;
}
}


/* Row - Content */
.row-cont {
	width: 100%;
	overflow: hidden;
	padding: 130px 0;
}

@media (max-width: 1199px) {
.row-cont {
	padding: 100px 0;
}
}

@media (max-width: 767px) {
.row-cont {
	padding: 70px 0;
}
}


/* Content - Inner */
.content-inner {
	width: 100%;
	overflow: hidden;
	padding: 38px 0 160px 0;
}

@media (max-width: 1199px) {
.content-inner {
	padding: 38px 0 110px 0;
}
}

@media (max-width: 767px) {
.content-inner {
	padding: 38px 0 80px 0;
}
}


/* Gradient Cool Gray */
.gradient-gray-cool {
	background: linear-gradient(0deg, #edf2f4 0%, rgba(237, 242, 244, 0.4) 100%)!important;
}


/* Right - Shadow */
.right-shadow {
	position: relative;
	z-index: 0;
}

.right-shadow:after {
	content: "";
	width: 40px;
	height: 100%;
	background: #000;
	box-shadow: rgba(255, 255, 255, 1) -20px 0 40px, rgba(255, 255, 255, 1) -20px 0 40px;
	position: absolute;
	top: 0;
	right: -40px;
	z-index: 2;
}

@media (max-width: 767px) {
.right-shadow:after {
	width: 25px;
	box-shadow: rgba(255, 255, 255, 1) -13px 0 25px, rgba(255, 255, 255, 1) -13px 0 25px;
	right: -25px;
}
}


/* Bootstrap - Modal */
.modal-backdrop.show {
	background: #365072;
	opacity: .80;
}

.modal-open .container-main {
	filter: blur(5px);
}

@media (min-width: 576px) {
.modal-dialog {
	max-width: 1200px;
}
}

@media (max-width: 1199px) {
.modal-dialog {
	margin-left: 40px;
	margin-right: 40px;
}
}

@media (max-width: 767px) {
.modal-dialog {
	margin: 10px;
}
}


/* Modal - Content */
.modal-content {
	background: #ffffff;
	box-shadow: 0px 0px 53px #00000015;
	border: none;
	padding: 60px 50px;
	margin: 0;
}

.modal-content .name {
	font-weight: 700;
	font-size: 32px;
	color: #365072;
	line-height: 130%;
	margin-bottom: 5px;
}

.modal-content .name:last-child {
	margin-bottom: 0;
}

.modal-content .position {
	font-weight: 600;
	font-size: 20px;
	color: #365072;
	line-height: 150%;
	margin-bottom: 5px;
}

.modal-content .position:last-child {
	margin-bottom: 0;
}

.modal-content .name-wrap {
	margin-bottom: 25px;
}

.modal-content .name-wrap:last-child {
	margin-bottom: 0;
}

.modal-content .col-wrap {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: flex-start;
}

.modal-content .figure {
	width: 28%;
	float: left;
	background: #444444;
	padding: 0;
	margin: 0;
}

.modal-content .aside {
	width: 72%;
	float: left;
	padding: 0 0 0 50px;
	margin: 0;
}

.modal-content .icon-close {
	font-size: 37px;
	color: #64a5ce;
	line-height: .5em;
	position:absolute;
	top: 40px;
	right: 40px;
}

@media (max-width: 1199px) {
.modal-content {
	padding: 50px 40px;
}

.modal-content .name {
	font-size: 26px;
}

.modal-content .figure {
	width: 35.5%;
}

.modal-content .aside {
	width: 64.5%;
	padding: 0 0 0 40px;
}

.modal-content .icon-close {
	font-size: 32px;
	top: 30px;
	right: 30px;
}
}

@media (max-width: 767px) {
.modal-content {
	padding: 30px;
}

.modal-content .name {
	font-size: 24px;
}

.modal-content .position {
	font-size: 18px;
}

.modal-content .figure {
	width: 35.5%;
}

.modal-content .aside {
	width: 64.5%;
	padding: 0 0 0 30px;
}

.modal-content .icon-close {
	font-size: 26px;
	top: 20px;
	right: 20px;
}
}

@media (max-width: 575px) {
.modal-content .figure {
	width: 100%;
	margin-bottom: 30px;
}

.modal-content .aside {
	width: 100%;
	padding: 0;
}

.modal-content .icon-close {
	font-size: 24px;
	top: 8px;
	right: 8px;
}
}


/* Padding Bottom - ALT 140 */
.alt-pb-50 {
	padding-bottom: 50px!important;
}

.alt-pb-100 {
	padding-bottom: 100px!important;
}

.alt-pb-130 {
	padding-bottom: 130px!important;
}

.alt-pb-160 {
	padding-bottom: 160px!important;
}

@media (max-width: 1199px) {
.alt-pb-100 {
	padding-bottom: 70px!important;
}

.alt-pb-130 {
	padding-bottom: 100px!important;
}

.alt-pb-160 {
	padding-bottom: 120px!important;
}
}

@media (max-width: 767px) {
.alt-pb-100 {
	padding-bottom: 50px!important;
}

.alt-pb-130 {
	padding-bottom: 70px!important;
}

.alt-pb-160 {
	padding-bottom: 80px!important;
}
}


/* Margin Bottom - ALT 140 */
.alt-mb-50 {
	margin-bottom: 50px!important;
}

.alt-mb-100 {
	margin-bottom: 100px!important;
}

.alt-mb-130 {
	margin-bottom: 130px!important;
}

.alt-mb-160 {
	margin-bottom: 160px!important;
}

@media (max-width: 1199px) {
.alt-mb-100 {
	margin-bottom: 70px!important;
}

.alt-mb-130 {
	margin-bottom: 100px!important;
}

.alt-mb-160 {
	margin-bottom: 120px!important;
}
}

@media (max-width: 767px) {
.alt-mb-100 {
	margin-bottom: 50px!important;
}

.alt-mb-130 {
	margin-bottom: 70px!important;
}

.alt-mb-160 {
	margin-bottom: 80px!important;
}
}


/* Padding/Margin - None */
.p-top-none {
	padding-top: 0!important;
}

.p-bottom-none {
	padding-bottom: 0!important;
}

.m-top-none {
	margin-top: 0!important;
}

.m-bottom-none {
	margin-bottom: 0!important;
}


/*
 7.) Extra core
----------------------------------------*/

.fancybox-bg {
	background: #365072;
	backdrop-filter: blur(5px);
}

.fancybox-is-open .fancybox-bg {
	opacity: .8;
}

.fancybox-active .container-main {
	filter: blur(5px);
}

.wow {
	visibility: hidden;
	opacity: 0;
}

@media (max-width: 767px) {
.fancybox-slide {
    padding-left: 20px;
	padding-right: 20px;
}
}


/* Animation - Delay */
@media (min-width: 992px) {
.delay-1 {
	animation-delay: 0.1s;
}

.delay-2 {
	animation-delay: 0.4s;
}

.delay-3 {
	animation-delay: 0.7s;
}

.delay-4 {
	animation-delay: 1.1s;
}

.delay-5 {
	animation-delay: 1.4s;
}

.delay-6 {
	animation-delay: 1.7s;
}

.delay-7 {
	animation-delay: 2s;
}

.delay-8 {
	animation-delay: 2.3s;
}

.delay-9 {
	animation-delay: 2.6s;
}

.delay-10 {
	animation-delay: 2.9s;
}
}


/*
 8.) Text - Colors / Wordpress Cores
------------------------------------------------------*/

.txt-16 {
	font-size: 16px;
	line-height: 150%;
}

.txt-18 {
	font-size: 18px;
	line-height: 150%;
}

.txt-20 {
	font-size: 20px;
	line-height: 150%;
}

.txt-22 {
	font-size: 22px;
	line-height: 150%;
}

.txt-28 {
	font-size: 28px;
	color: #365072;
	line-height: 150%;
}

p.txt-28 {
	padding-bottom: 35px;
}

p.txt-28:last-child {
	padding-bottom: 0;
}

@media (max-width: 1199px) {
.txt-28 {
	font-size: 24px;
}
}

@media (max-width: 767px) {
.txt-20 {
	font-size: 18px;
}

.txt-22 {
	font-size: 20px;
}

.txt-28 {
	font-size: 22px;
}

p.txt-28 {
	padding-bottom: 30px;
}
}


/* Font - Weights */
.light {
	font-weight: 300!important;
}

.regular {
	font-weight: 400!important;
}

.medium {
	font-weight: 500!important;
}

.semi-bold {
	font-weight: 600!important;
}

.bold {
	font-weight: 700!important;
}

.extra-bold {
	font-weight: 800!important;
}

.black-bold {
	font-weight: 900!important;
}


/* Text - Positions */
.upper-case {
	text-transform: uppercase;
}

.lower-case {
	text-transform: none;
}

.underline {
	text-decoration: underline;
}

.center-align {
	text-align: center!important;
	justify-content: center!important;
}

.vertical-align {
	align-items: center!important;
}

.left-align {
	text-align: left!important;
	justify-content: flex-start!important;
}

.right-align {
	text-align: right!important;
	justify-content: flex-end!important;
}


/* Text - Colors */
.white {
	color: #ffffff!important;
}

.black {
	color: #000000!important;
}

.navy {
	color: #365072!important;
}

.gold {
	color: #f5ba36!important;
}

.blue {
	color: #5499c8!important;
}

.blue-light {
	color: #64a5ce!important;
}

.green-dark {
	color: #46734d!important;
}

.green-light {
	color: #97ac3c!important;
}

.green-lighter {
	color: #b6c964!important;
}

.gray {
	color: #444444!important;
}

.gray-cool {
	color: #edf2f4!important;
}


/* Background - Colors */
.white-bg {
	background-color: #ffffff!important;
}

.black-bg {
	background-color: #000000!important;
}

.navy-bg {
	background-color: #365072!important;
}

.gold-bg {
	background-color: #f5ba36!important;
}

.blue-bg {
	background-color: #5499c8!important;
}

.blue-light-bg {
	background-color: #64a5ce!important;
}

.green-dark-bg {
	background-color: #46734d!important;
}

.green-light-bg {
	background-color: #97ac3c!important;
}

.green-lighter-bg {
	background-color: #b6c964!important;
}

.gray-bg {
	background-color: #444444!important;
}

.gray-cool-bg {
	background-color: #edf2f4!important;
}


/* Toolkit Page - Title - (Notes) */
.notes-title {
	width: 100%;
	overflow: hidden;
	padding: 100px 0 40px 0;
}

.notes-title p {
	font-weight: 600;
	font-size: 24px;
	color: #365072;
	line-height: 130%;
	padding: 0 0 15px 0;
}

.notes-title p:last-child {
	padding-bottom: 0;
}


/* ---------------------------- Begin WordPress Core ---------------------------- */

.alignnone {
	margin: 10px 0;
}

.aligncenter,
div.aligncenter {
	display: block;
	margin: 5px auto 5px auto;
}

.alignright {
	float: right;
	margin: 10px 0 10px 25px;
}

.alignleft {
	float: left;
	margin: 10px 25px 10px 0;
}

a img.alignright {
	float: right;
	margin: 10px 0 10px 25px;
}

a img.alignnone {
	margin: 10px 25px 10px 0;
}

a img.alignleft {
	float: left;
	margin: 10px 25px 10px 0;
}

a img.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto
}

.figure img.alignnone,
.figure img.alignleft,
.figure img.alignright,
.figure img.aligncenter {
	margin: 0;
}

.wp-caption {
	background: #fff;
	border: 1px solid #f0f0f0;
	max-width: 96%;
	/* Image does not overflow the content area */
	padding: 5px 3px 10px;
	text-align: center;
}

.wp-caption.alignnone {
	margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
	margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
	margin: 5px 0 20px 20px;
}

.wp-caption img {
	border: 0 none;
	height: auto;
	margin: 0;
	max-width: 98.5%;
	padding: 0;
	width: auto;
}

.wp-caption p.wp-caption-text {
	font-size: 11px;
	line-height: 17px;
	margin: 0;
	padding: 0 4px 5px;
}

@media (min-width: 768px) and (max-width: 991px) {
.alignleft,
.alignright,
a img.alignright,
a img.alignleft {
	max-width: 350px;
}
}

@media (min-width: 601px) and (max-width: 767px) {
.alignleft,
.alignright,
a img.alignright,
a img.alignleft {
	max-width: 250px;
}
}

@media (max-width: 600px) {
.alignleft,
.alignright,
.aligncenter,
.alignnone,
a img.alignright,
a img.alignleft,
a img.alignnone,
a img.aligncenter {
	float: none;
	margin: 0 auto;
	margin-top: 10px;
	margin-bottom: 20px;
	display: block;
}
}


/* ---------------------------- Text meant only for screen readers ---------------------------- */

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar */
}
/* ---------------------------- End WordPress Core ---------------------------- */



/*----------------------------- Gravity Forms ----------------------------*/
.gform_wrapper.gravity-theme .gfield_label {
	width: 100%;
	font-weight: 400 !important;
	font-size: 18px !important;
	color: #365072 !important;
	line-height: 150% !important;
	padding: 0 !important;
	margin: 0 0 8px 0 !important;
}

.gform_wrapper.gravity-theme input[type=color], .gform_wrapper.gravity-theme input[type=date], .gform_wrapper.gravity-theme input[type=datetime-local], .gform_wrapper.gravity-theme input[type=datetime], .gform_wrapper.gravity-theme input[type=email], .gform_wrapper.gravity-theme input[type=month], .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=tel], .gform_wrapper.gravity-theme input[type=text], .gform_wrapper.gravity-theme input[type=time], .gform_wrapper.gravity-theme input[type=url], .gform_wrapper.gravity-theme input[type=week], .gform_wrapper.gravity-theme select, .gform_wrapper.gravity-theme textarea{
	font-weight: 400 !important;
	font-size: 20px !important;
	color: #444444 !important;
	line-height: 150% !important;
	padding: 16px 28px !important;
	margin: 0 !important;
}


.gform_wrapper.gravity-theme .gfield{
	margin-bottom: 20px !important;
}

.gform_wrapper.gravity-theme .gform_fields{
	grid-column-gap: 40px !important;
}

.contactform_wrapper .gform_required_legend {
	display: none !important;
}

.contactform_wrapper.gform_wrapper.gravity-theme .gform_footer .gform_ajax_spinner{
	margin-left: 20px;
	width: 30px;
	height: auto;
}

@media (max-width: 1300px) {
	.gform_wrapper.gravity-theme .gform_fields {
		grid-column-gap: 30px !important;
	}
}
/*----------------------------- End Gravity Forms ----------------------------*/


/*----------------------------- Helper Classes ----------------------------*/
.bg-white {
	background-color: #ffffff !important;
}
.bg-blue {
	background-color: #365072 !important;
	color: #ffffff !important;
}
.bg-blue h1,
.bg-blue .h1,
.bg-blue h2,
.bg-blue .h2,
.bg-blue h3,
.bg-blue .h3,
.bg-blue h4,
.bg-blue .h4,
.bg-blue h5,
.bg-blue .h5,
.bg-blue h6,
.bg-blue .h6,
.bg-blue a,
.bg-blue .a,
.bg-blue 	.heading-txt {
	color: inherit;
}
.bg-gray{
	background-color: #edf2f4 !important;
}
.bg-gold {
	background-color: #f5ba36 !important;
}
.bg-blue-light {
	background-color: #64a5ce !important;
}
/*----------------------------- End Helper Classes ----------------------------*/


/*----------------------------- Third-Party Plugins ----------------------------*/

/* ACF (Advanced Custom Fields) - Admin Styles */
.acf-field-flexible-content:not([data-acfe-flexible-placeholder="1"],[data-acfe-legacy]) > .acf-input > .acf-flexible-content > .values > .layout > .acf-fc-layout-actions-wrap {
	background: blue !important;
}

/* Facebook Feed (Custom Facebook Feed) */
.cff-posts-wrap {
	display: flex;
	gap: 30px;
	padding: 0px !important;
}

.cff-posts-wrap > div {
	display: flex;
	flex-flow: column;
	flex-basis: calc((100% - 2 * 30px) / 3);
	padding: 27px 27px 0 27px;
	background: #fff;
	border: 1px solid #64a5ce;
	border-radius: 15px;
}

.cff-author {
	display: flex;
	align-items: center;
	padding: 0 50px 0 0;
	margin-bottom: 24px;
}

span.cff-story {
	display: none;
}

.cff-author .cff-author-text a {
	width: 100%;
	float: left;
	display: flex;
	flex-wrap: wrap;
	flex-flow: row;
	align-items: center;
	font-weight: 600;
	min-height: 60px;
	font-size: 24px;
	color: #365072;
	line-height: 130%;
	text-decoration: none;
	padding: 0 0 0 27px;
}

#cff .cff-author-img {
	background-image: none;
}

.cff-author-img {
	display: flex;
	order: 1;
	flex-basis: 20%;
}

.cff-author-img img {
	border-radius: 100%;
	width: 60px;
	object-fit: cover;
}

.cff-author-text {
	display: flex;
	order: 2;
	flex-basis: 80%;
	align-content: center;
}

.cff-page-name a:after {
	content: " ";
	background-image: url("/wp-content/themes/salmon-theme/assets/img/facebook-circle.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: 44px;
	display: block;
	position: relative;
	height: 60px;
}

.cff-post-text {
	order: 2;
	margin-bottom: 15px;
}

span.cff-expand a {
	display: none;
}

.cff-post-links {
	display: flex;
	order: 3;
	margin-bottom: 40px;
}

p.cff-media-link {
	display: flex;
	order: 4;
}

@media (min-width: 1001px) {
	.cff-posts-wrap {
		flex-flow: row;
	}
}

@media (max-width: 1000px) {
	.cff-posts-wrap {
		flex-wrap: wrap;
	}

	.cff-posts-wrap > div {
		flex-basis: calc((100% - 30px) / 2);
	}
}

@media (max-width: 800px) {
	.cff-posts-wrap > div {
		flex-basis: 100%;
	}
}

/* Google Reviews Widget */
.grw-btns.grw-prev,
.grw-btns.grw-next,
.wp-gr .rpi-dots-wrap,
.wp-gr .grw-review-inner > svg {
	display: none !important;
}

.wp-gr:not(.wp-dark) .grw-review-inner.grw-backgnd {
	border: 1px solid #64a5ce !important;
	border-radius: 20px !important;
	padding: 45px 30px 30px 30px !important;
	background: #fff !important;
}

.grw-review-inner.grw-backgnd {
	display: flex !important;
}

.wp-gr .grw-review {
	padding: 0 14px 40px 14px !important;
}

.wp-gr[data-layout="slider"] .grw-reviews {
	flex-wrap: wrap !important;
	overflow-x: visible !important;
}

.wp-gr .grw-review .wp-google-stars {
	order: 1;
	align-self: center;
	margin-bottom: 33px !important;
}

.wp-gr .wp-star svg {
	height: 31px !important;
	width: 31px !important;
}

.wp-gr .wp-google-stars .wp-star {
	padding: 0 6px 0 6px !important;
}

.wp-gr .wp-star svg path {
	fill: #FDC153;
}

.wp-gr .grw-review .wp-google-left {
	display: flex !important;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	order: 2;
	margin-bottom: 33px !important;
}

.wp-gr.wpac .wp-google-left img {
	width: 87px !important;
	height: 87px !important;
	margin-bottom: 10px !important;
	margin-right: 0px !important;
}

.wp-gr.wpac a.wp-google-name {
	color: #444444 !important;
	font-weight: 700;
	font-size: 18px !important;
	padding-right: 0px !important;
}

.wp-gr .wp-google-time {
	color: #444444 !important;
	font-size: 18px !important;
}

.wp-google-wrap:before {
	content: '';
	background: url(https://salmon2025.wpenginepowered.com/wp-content/themes/salmon-theme/assets/img/google.svg);
	width: 100%;
	height: 36px;
	background-repeat: no-repeat;
	background-position: center;
	margin-bottom: 30px;
}

.wp-gr .wp-google-text {
	color: #444444 !important;
	font-size: 18px !important;
}

span.wp-google-text:before,
span.wp-google-text:after {
	content: '"';
}

.wp-google-wrap {
	order: 3;
}

@media (max-width: 1000px) {
	.wp-gr[data-layout="slider"] .grw-review {
		flex-basis: 49% !important;
	}
}

@media (max-width: 769px) {
	.wp-gr[data-layout="slider"] .grw-review {
		flex-basis: 100% !important;
	}
}

/*----------------------------- End Third-Party Plugins ----------------------------*/


@media (max-width: 991px) {
	.wysiwyg-band .col{
		width: 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}

@media (max-width: 767px) {
	.wysiwyg-band .row > div:first-child:not(:only-child) {
		padding-bottom: 15px;
	}
}

.content-breadcrumb{
	padding: 30px 0 60px 0;
}

.mce-content-body,
body.wp-autoresize.mce-content-body{
	padding:15px !important;
}

body.single-post .wysiwyg-content{
	margin-bottom: 60px;
}

.wysiwyg-content p:has(img){
	margin-bottom: 30px;
}

.wysiwyg-content p + p:has(img),
.wysiwyg-content p + blockquote,
.wysiwyg-content p + h1, .wysiwyg-content p + .h1,
.wysiwyg-content p + h2, .wysiwyg-content p + .h2,
.wysiwyg-content p + h3, .wysiwyg-content p + .h3,
.wysiwyg-content p + h4, .wysiwyg-content p + .h4,
.wysiwyg-content p + h5, .wysiwyg-content p + .h5,
.wysiwyg-content p + h6, .wysiwyg-content p + .h6{
	margin-top: 30px;
}

.fixed-nav {
position: fixed;
    top: 140px;
    left: 0;
    right: 0;
    z-index: 8;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 30px 0;
}


@media (max-width: 1199px){
	.fixed-nav{top: 100px;}
}

@media (max-width: 767px){
	.fixed-nav{top: 85px;}
}

/* ----------------------------- Gap Adjustments ----------------------------
.row-cont.content-featured_links_band + .row-cont.content-2-column_alternating_text_&_image_rows.bg-white{
	padding-top: 0;
}*/
/* .row-cont + .row-cont:not(.content-featured_links_band):not(.bg-gray):not(.bg-blue):not(.gradient-gray-cool){
	padding-top: 0;
} */


/* ---------------------------- Print CSS Styling ---------------------------- */
@media print {
    @page {
        size: auto;
        margin-top: 2cm;
        margin-bottom: 2cm;
        margin-left: 2cm;
        margin-right: 2cm;
    }
    header { display: none; }

	footer {
		display: none;
	}
	@page:first { 
		 header { display:block !important; } 
	}
	.header-main { position: absolute; box-shadow: none; }
	body {
		background: #ffffff;
		color: #000000;
		font-size: 8pt; 
		line-height: 150%;
		margin: 0px;
	}
	body * {
		-o-transition-property: none !important;
		-moz-transition-property: none !important;
		-ms-transition-property: none !important;
		-webkit-transition-property: none !important;
		transition-property: none !important;
		transition: none;
        -moz-transition: none;
        -webkit-transition: none;
	}
	.perfmatters-lazy, .wow { 
		animation: none !important; 
		animation-duration: 0s !important; 
		animation-delay: 0s !important; 
		visibility: visible !important; 
	}
	.container { max-width: 100%; }
	.figure { max-width: 50%; }
	hr {
		color: #ccc;
		background-color: #ccc; 
	}
	h1, h2, h3, h4 {
   		page-break-after: avoid;
	}
	ul, img, table, figure, p {
   		page-break-inside: avoid;
	}
	h1, h2, h3, h4, h5, h6, code, pre, p, a:link, a:visited, blockquote {
		color: #000000 !important;
	}
	select { border: 1px solid #000; }
	blockquote {
		background-image: none; 
	}
	a:link, a:visited {
		text-decoration: underline;
	}
	.btn {
	   border: 1px solid #000;
	}
	.collapse {
        display: block !important;
        height: auto !important;
    }
	.skip-btn, .menu-btn, .nav-bar, .do-not-print {
		display: none;
	}
	.col-lg-4, .col-md-6 {
		width: 50%;
	}
	p, .col-lg-4 {
  page-break-inside: avoid;
	}

}
/* ---------------------------- End Print CSS Styling ---------------------------- */