/*
Theme Name: Arrepath
Text Domain: arrepath
Author: SyncitGroup
Author URI: https://www.syncitgroup.com/
*/

/* -------------------------------------------------------------------------- */

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

    0. 	Main Fonts Import
	1. 	CSS Reset
	2. 	Document Setup
	3. 	Element Base
	4. 	Helper Classes
	5. 	Site Header
	6. 	Menu Modal
	7. 	Templates
	8.  Modules
	9.  Post: Archive
	10. Post: Single
	11. Entry Content
	12. Site Pagination
	13. Error 404
	14. Site Footer
	15. Slick Slider Override
	16. Plugins Styling
	17. Media Queries

----------------------------------------------------------------------------- */


/*	0. Main Fonts Import
/* -------------------------------------------------------------------------- */
@import url("css2.css");

/* -------------------------------------------------------------------------- */

/*	1. CSS Reset
/* -------------------------------------------------------------------------- */

html,
body {
	border: none;
	margin: 0;
	padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
address,
big,
cite,
code,
em,
font,
img,
small,
strike,
sub,
sup,
li,
ol,
ul,
fieldset,
form,
label,
legend,
button,
table,
caption,
tr,
th,
td {
	border: none;
	font-size: inherit;
	line-height: inherit;
	margin: 0;
	padding: 0;
	text-align: inherit;
}

blockquote::before,
blockquote::after {
	content: "";
}


/* -------------------------------------------------------------------------- */

/*	2. Document Setup
/* -------------------------------------------------------------------------- */


html {
	font-size: 62.5%; /* 1rem = 10px */
	scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}

body {
	background: #fff;
	box-sizing: border-box;
	color: #000;
	font-family: 'Montserrat', sans-serif;
	font-size: 1.8rem;
	letter-spacing: -0.015em;
	text-align: left;
}

*,
*::before,
*::after {
	box-sizing: inherit;
	-webkit-font-smoothing: antialiased;
	word-break: break-word;
	word-wrap: break-word;
}

#site-content {
	overflow: hidden;
}


/* Clearing ---------------------------------- */

.group::after,
.entry-content::after {
	clear: both;
	content: "";
	display: block;
}

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


/* Base Transitions -------------------------- */

a,
path {
	transition: all 0.15s linear;
}


/* Screen Reader Text ------------------------ */

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	-webkit-clip-path: inset(50%);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
	word-break: normal;
}

.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;
	-webkit-clip-path: none;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	right: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}


/* Skip Link --------------------------------- */

.skip-link {
	left: -9999rem;
	top: 2.5rem;
	z-index: 999999999;
	text-decoration: underline;
}

.skip-link:focus {
	display: block;
	left: 6px;
	top: 7px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	line-height: normal;
	padding: 15px 23px 14px;
	z-index: 100000;
	right: auto;
}


/* Fonts ------------------------------------- */

/*
 * Chrome renders extra-wide &nbsp; characters for the Hoefler Text font.
 * This results in a jumping cursor when typing in both the classic editor and
 * block editor. The following font-face override fixes the issue by manually
 * inserting a custom font that includes just a Hoefler Text space replacement
 * for that character instead.
 */
@font-face {
	font-family: NonBreakingSpaceOverride;
	src: url("") format("woff2"), url("") format("woff");
}

/* ----------------------------------------------
Inter variable font. Usage:

@supports (font-variation-settings: normal) {
	html { font-family: 'Inter var', sans-serif; }
}
---------------------------------------------- */

@font-face {
	font-family: "Inter var";
	font-weight: 100 900; /* stylelint-disable-line font-weight-notation */
	font-style: normal;
	font-display: swap;
	src: url("Inter-upright-var.woff2") format("woff2");
}

@font-face {
	font-family: "Inter var";
	font-weight: 100 900; /* stylelint-disable-line font-weight-notation */
	font-style: italic;
	font-display: swap;
	src: url("Inter-italic-var.woff2") format("woff2");
}


/* Accessibility Settings -------------------- */

@media ( prefers-reduced-motion: reduce ) {

	* {
		animation-duration: 0s !important;
		transition-duration: 0s !important;
	}
}


/* -------------------------------------------------------------------------- */

/*	3. Element Base
/* ---------------------------------------------*---------------------------- */


main {
	display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
.faux-heading {
	font-feature-settings: "lnum";
	font-variant-numeric: lining-nums;
	font-weight: 700;
	letter-spacing: -0.0415625em;
	line-height: 1.25;
	margin: 3.5rem 0 2rem;
}

h1,
.heading-size-1 {
	font-size: 5rem;
	font-weight: 800;
	line-height: 1.138888889;
}

h2,
.heading-size-2 {
	font-size: 3.5rem;
	color: #4D6182;
}

h3,
.heading-size-3 {
	font-size: 2.8rem;
}

h4,
.heading-size-4 {
	font-size: 2.4rem;
}

h5,
.heading-size-5 {
	font-size: 2.1rem;
}

h6,
.heading-size-6 {
	font-size: 1.6rem;
	letter-spacing: 0.03125em;
	text-transform: uppercase;
}

p {
	line-height: 1.5;
	margin: 0 0 1em 0;
}

em,
i,
q,
dfn {
	font-style: italic;
}

em em,
em i,
i em,
i i,
cite em,
cite i {
	font-weight: bolder;
}

big {
	font-size: 1.2em;
}

small {
	font-size: 0.75em;
}

b,
strong {
	font-weight: 700;
}

ins {
	text-decoration: underline;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

abbr,
acronym {
	cursor: help;
}

address {
	line-height: 1.5;
	margin: 0 0 2rem 0;
}

hr {
	border-style: solid;
	border-width: 0.1rem 0 0 0;
	border-color: #dcd7ca;
	margin: 4rem 0;
}

.entry-content hr,
hr.styled-separator {
	background: linear-gradient(to left, currentColor calc(50% - 16px), transparent calc(50% - 16px), transparent calc(50% + 16px), currentColor calc(50% + 16px));
	background-color: transparent !important;
	border: none;
	height: 0.1rem;
	overflow: visible;
	position: relative;
}

.entry-content hr:not(.has-background),
hr.styled-separator {
	color: #6d6d6d;
}

.entry-content hr::before,
.entry-content hr::after,
hr.styled-separator::before,
hr.styled-separator::after {
	background: currentColor;
	content: "";
	display: block;
	height: 1.6rem;
	position: absolute;
	top: calc(50% - 0.8rem);
	transform: rotate(22.5deg);
	width: 0.1rem;
}

.entry-content hr::before,
hr.styled-separator::before {
	left: calc(50% - 0.5rem);
}

.entry-content hr::after,
hr.styled-separator::after {
	right: calc(50% - 0.5rem);
}

a {
	color: #cd2653;
	text-decoration: underline;
}

a:hover,
a:focus {
	text-decoration: none;
}


/* Lists ------------------------------------- */

ul {
	list-style: none;
}

li > ul,
li > ol {
	margin: 1rem 0 0 2rem;
}

.reset-list-style,
.reset-list-style ul,
.reset-list-style ol {
	list-style: none;
	margin: 0;
}

.reset-list-style li {
	margin: 0;
}

dt,
dd {
	line-height: 1.5;
}

dt {
	font-weight: 700;
}

dt + dd {
	margin-top: 0.5rem;
}

dd + dt {
	margin-top: 1.5rem;
}


/* Quotes ------------------------------------ */

blockquote {
	border-color: #cd2653;
	border-style: solid;

	/*rtl:ignore*/
	border-width: 0 0 0 0.2rem;
	color: inherit;
	font-size: 1em;
	margin: 4rem 0;

	/*rtl:ignore*/
	padding: 0.5rem 0 0.5rem 2rem;
}

cite {
	color: #6d6d6d;
	font-size: 1.4rem;
	font-style: normal;
	font-weight: 600;
	line-height: 1.25;
}

blockquote cite {
	display: block;
	margin: 2rem 0 0 0;
}

blockquote p:last-child {
	margin: 0;
}


/* Code -------------------------------------- */

code,
kbd,
pre,
samp {
	font-family: monospace;
	font-size: 0.9em;
	padding: 0.4rem 0.6rem;
}

code,
kbd,
samp {
	background: rgba(0, 0, 0, 0.075);
	border-radius: 0.2rem;
}

pre {
	border: 0.1rem solid #dcd7ca;
	line-height: 1.5;
	margin: 4rem 0;
	overflow: auto;
	padding: 3rem 2rem;
	text-align: left;
}

pre code {
	background: transparent;
	padding: 0;
}


/* Media ------------------------------------- */

figure {
	display: block;
	margin: 0;
}

iframe {
	display: block;
	max-width: 100%;
}

video {
	display: block;
}

svg,
img,
embed,
object {
	display: block;
	height: auto;
	max-width: 100%;
}

figcaption,
.wp-caption-text {
	color: #6d6d6d;
	display: block;
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.2;
	margin-top: 1.5rem;
}

figcaption a,
.wp-caption-text a {
	color: inherit;
}

blockquote.instagram-media,
iframe.instagram-media {
	margin: auto !important;
}


/* GALLERIES */

.gallery {
	display: flex;
	flex-wrap: wrap;
	margin: 3em 0 3em -0.8em;
	width: calc(100% + 1.6em);
}

.gallery-item {
	margin: 0.8em 0;
	padding: 0 0.8em;
	width: 100%;
}

.gallery-caption {
	display: block;
	margin-top: 0.8em;
}


/* Inputs ------------------------------------ */

fieldset {
	border: 0.2rem solid #dcd7ca;
	padding: 2rem;
}

legend {
	font-size: 0.85em;
	font-weight: 700;
	padding: 0 1rem;
}

label {
	display: block;
	font-size: 1.6rem;
	font-weight: 400;
	margin: 0 0 0.5rem 0;
}

label.inline,
input[type="checkbox"] + label {
	display: inline;
	font-weight: 400;
	margin-left: 0.5rem;
}

input[type="checkbox"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	position: relative;
	top: 2px;
	display: inline-block;
	margin: 0;
	width: 1.5rem;
	min-width: 1.5rem;
	height: 1.5rem;
	background: #fff;
	border-radius: 0;
	border-style: solid;
	border-width: 0.1rem;
	border-color: #dcd7ca;
	box-shadow: none;
	cursor: pointer;
}

input[type="checkbox"]:checked::before {
	/* Use the "Yes" SVG Dashicon */
	content: url("5b24989880236b06d9c52fefb81cfb2b77eda780.svg");
	position: absolute;
	display: inline-block;
	margin: -0.1875rem 0 0 -0.25rem;
	height: 1.75rem;
	width: 1.75rem;
}

input,
textarea,
button,
.button,
.faux-button,
.wp-block-button__link,
.wp-block-file__button {
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
	line-height: 1;
}

@supports ( font-variation-settings: normal ) {

	input,
	textarea,
	button,
	.button,
	.faux-button,
	.faux-button.more-link,
	.wp-block-button__link,
	.wp-block-file__button {
		font-family: "Inter var", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
	}
}

input,
textarea {
	border-color: #dcd7ca;
	color: #000;
}

code,
input[type="url"],
input[type="email"],
input[type="tel"] {

	/*rtl:ignore*/
	direction: ltr;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="week"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="color"],
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	background: #fff;
	border-radius: 0;
	border-style: solid;
	border-width: 0.1rem;
	box-shadow: none;
	display: block;
	font-size: 1.6rem;
	letter-spacing: -0.015em;
	margin: 0;
	max-width: 100%;
	padding: 1.5rem 1.8rem;
	width: 100%;
}

select {
	font-size: 1em;
}

textarea {
	height: 12rem;
	line-height: 1.5;
	width: 100%;
}

input::-webkit-input-placeholder {
	line-height: normal;
}

input:-ms-input-placeholder {
	line-height: normal;
}

input::-moz-placeholder {
	line-height: revert; /* Reset to the value from the user-agent stylesheet. */
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
	display: none;
}

button,
.button,
.faux-button,
.wp-block-button__link,
.wp-block-file .wp-block-file__button,
input[type="button"],
input[type="reset"],
input[type="submit"],
div.wpforms-container-full .wpforms-form button[type="submit"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	background: #FB5058;
	border: none;
	border-radius: 31px;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-size: 1.8rem;
	font-weight: 600;
	font-family: 'Open Sans', sans-serif;
	letter-spacing: 0;
	line-height: 1;
	margin: 0;
	opacity: 1;
	padding: 15px 40px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	transition: background 0.15s linear;
}

.faux-button:focus,
.faux-button:hover,
.wp-block-button .wp-block-button__link:focus,
.wp-block-button .wp-block-button__link:hover,
.wp-block-file .wp-block-file__button:focus,
.wp-block-file .wp-block-file__button:hover,
input[type="button"]:focus,
input[type="button"]:hover,
input[type="reset"]:focus,
input[type="reset"]:hover,
input[type="submit"]:focus,
input[type="submit"]:hover {
	text-decoration: underline;
}

button:focus,
button:hover,
.button:focus,
.button:hover {
	text-decoration: none;
	background: #F7747A;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	border-color: currentColor;
}

input[type="search"]:focus {
	outline: thin dotted;
	outline-offset: -4px;
}

/* Tables ------------------------------------ */

table {
	border: 0.1rem solid #dcd7ca;
	border-collapse: collapse;
	border-spacing: 0;
	empty-cells: show;
	font-size: 1.6rem;
	margin: 4rem 0;
	max-width: 100%;
	overflow: hidden;
	width: 100%;
}

.alignleft > table {
	margin: 0;
}

.alignright > table {
	margin: 0;
}

th,
td {
	border: 0.1rem solid #dcd7ca;
	line-height: 1.4;
	margin: 0;
	overflow: visible;
	padding: 0.5em;
}

caption {
	background: #dcd7ca;
	font-weight: 600;
	padding: 0.5em;
	text-align: center;
}

thead {
	vertical-align: bottom;
	white-space: nowrap;
}

th {
	font-weight: 700;
}


/* -------------------------------------------------------------------------- */

/*	4. Helper Classes
/* -------------------------------------------------------------------------- */
.bg-white {
	background: #fff;
}

/* Layout ------------------------------------ */

.no-margin {
	margin: 0;
}

.no-padding {
	padding: 0;
}

.screen-height {
	min-height: 100vh;
}

.admin-bar .screen-height {
	min-height: calc(100vh - 32px);
}

.font-white {
	color: #fff;
}

@media (max-width: 782px) {

	.admin-bar .screen-height {
		min-height: calc(100vh - 46px);
	}
}

.screen-width {
	position: relative;
	left: calc(50% - 50vw);
	width: 100vw;
}

.container-small {
	max-width: 1065px;
	margin: 0 auto;
}

.container-medium {
	max-width: 1250px;
	margin: 0 auto;
}

.section-padding {
	padding: 75px 0;
}

.section-padding-small {
	padding: 40px 0;
}

.text-center {
	text-align: center;
}

/* Sections ---------------------------------- */

section {
	width: 100%;
}

.full-width-section {
	text-align: center;
	color: #fff;
}

.full-width-section h2 {
	color: #fff;
}

.section-inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 120rem;
	width: calc(100% - 4rem);
}

.section-inner.max-percentage {
	width: 100%;
}

.section-inner.thin {
	max-width: 58rem;
}

.section-inner.small {
	max-width: 80rem;
}

.section-inner.medium {
	max-width: 100rem;
}

.section-inner.no-margin {
	margin: 0;
}


/* Toggles ----------------------------------- */

.toggle {
	-moz-appearance: none;
	-webkit-appearance: none;
	color: inherit;
	cursor: pointer;
	font-family: inherit;
	position: relative;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	text-align: inherit;
	user-select: none;
}

button.toggle {
	background: none;
	border: none;
	box-shadow: none;
	border-radius: 0;
	font-size: inherit;
	font-weight: 400;
	letter-spacing: inherit;
	padding: 0;
	text-transform: none;
}

/* Hiding and Showing ------------------------ */

.js .show-js {
	display: block !important;
}

.js .hide-js {
	display: none !important;
}

.no-js .show-no-js {
	display: block !important;
}

.no-js .hide-no-js {
	display: none !important;
}


/* Typography -------------------------------- */
.title-highlight {
	color: #3696DA;
}

/* Image Classes ----------------------------- */

.bg-image {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.bg-attachment-fixed {
	background-attachment: fixed;
}

@supports ( -webkit-overflow-scrolling: touch ) {

	.bg-attachment-fixed {
		background-attachment: scroll;
	}
}

@media ( prefers-reduced-motion: reduce ) {

	.bg-attachment-fixed {
		background-attachment: scroll;
	}
}

.wp-block-image.is-resized {
	margin-left: auto;
	margin-right: auto;
}

/* Search Form ------------------------------- */

.search-form {
	align-items: stretch;
	display: flex;
	flex-wrap: nowrap;
	margin: 0 0 -0.8rem -0.8rem;
}

.search-form .search-field,
.search-form .search-submit {
	margin: 0 0 0.8rem 0.8rem;
}

.search-form label {
	align-items: stretch;
	display: flex;
	font-size: inherit;
	margin: 0;
	width: 100%;
}

.search-form .search-field {
	width: 100%;
}

.search-form .search-submit {
	flex-shrink: 0;
}

.search-form .search-submit:focus,
.search-form .search-submit:hover {
	text-decoration: none;
}


/* Social Icons ------------------------------ */

ul.social-icons {
	display: flex;
	flex-wrap: wrap;
	margin: -0.9rem 0 0 -0.9rem;
	width: calc(100% + 0.9rem);
}

ul.social-icons li {
	margin: 0.9rem 0 0 0.9rem;
}

.social-icons a {
	align-items: center;
	background: #cd2653;
	border-radius: 50%;
	color: #fff;
	display: flex;
	height: 4.4rem;
	justify-content: center;
	padding: 0;
	text-decoration: none;
	transition: transform 0.15s ease-in-out;
	width: 4.4rem;
}

.social-icons a:focus,
.social-icons a:hover {
	transform: scale(1.1);
	text-decoration: none;
}


/* Cover Modals ------------------------------ */

.cover-modal {
	display: none;
	-ms-overflow-style: none;
	overflow: -moz-scrollbars-none;
}

.cover-modal::-webkit-scrollbar {
	display: none !important;
}

.cover-modal.show-modal {
	display: block;
	cursor: pointer;
}

.cover-modal.show-modal > * {
	cursor: default;
}


/* -------------------------------------------------------------------------- */

/*	5.	Site Header
/* -------------------------------------------------------------------------- */
#site-header {
	position: relative;
	top: 0;
	transition: all 300ms linear;
}

.header-regular #site-header {
	position: fixed;
	width: 100%;
	background: #fff;
	opacity: 1;
	z-index: 10;
}

.header-regular #site-content {
	padding-top: 88px;
}

.header-fixed #site-header {
	position: absolute;
	width: 100%;
	background: transparent;
	z-index: 1;
}

#site-header.header-sticky {
	position: fixed;
	width: 100%;
	background: #fff;
	opacity: 1;
	transition: all 300ms linear;
	z-index: 10;
}

#site-header.home-header-sticky {
	position: fixed;
	width: 100%;
	background: #fff;
	opacity: 1;
	transition: all 300ms linear;
	z-index: 10;
}

.admin-bar #site-header.header-sticky {
	top: 32px;
}

.header-inner {
	margin-left: auto;
	margin-right: auto;
	padding: 3.15rem 15px;
	/*max-width: 1250px;*/
	max-width: 1600px;
	z-index: 100;
}

/* Header Titles ----------------------------- */

.header-titles-wrapper {
	align-items: center;
	display: flex;
}

body:not(.enable-search-modal) .header-titles-wrapper {
	justify-content: flex-start;
	padding-left: 0;
	text-align: left;
}

.site-title,
.site-logo,
.site-description {
	margin: 0;
}

.site-title {
	font-size: 2.1rem;
	font-weight: 600;
	line-height: 1;
}

.site-title a {
	color: inherit;
	display: block;
	text-decoration: none;
}

.site-title a:hover,
.site-title a:focus {
	text-decoration: underline;
}

.site-description {
	margin-top: 1rem;
	color: #6d6d6d;
	font-size: 1.8rem;
	font-weight: 500;
	display: none;
	letter-spacing: -0.0311em;
	transition: all 0.15s linear;
}

.site-logo a,
.site-logo img {
	display: block;
}

.header-titles .site-logo .site-logo {
	margin: 0;
}

.site-logo img {
	max-height: 6rem;
	margin: 0 auto;
	width: auto;
}

.home-header-sticky .site-logo img {
	display: none;
}

.site-logo .home-logo-sticky {
	display: none;
}

.site-logo .home-logo-sticky {
	display: none;
}

.home-header-sticky .site-logo .home-logo-sticky {
	display: block;
}

body:not(.enable-search-modal) .site-logo img {
	margin: 0;
}

/* Overlay Header ---------------------------- */

.overlay-header #site-header {
	background: transparent;
	margin: 0;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	z-index: 2;
}

.overlay-header .header-inner {
	color: #fff;
}

.overlay-header .site-description,
.overlay-header .toggle {
	color: inherit;
}

.overlay-header .header-inner .toggle-wrapper::before {
	background-color: currentColor;
	opacity: 0.25;
}

.admin-bar.overlay-header #site-header {
	top: 32px;
}

@media (max-width: 782px) {

	.admin-bar.overlay-header #site-header {
		top: 46px;
	}
}

/* Header Navigation ------------------------- */

.header-navigation-wrapper {
	display: none;
}

/* Header Toggles ---------------------------- */

.header-toggles {
	display: none;
}

.header-inner .toggle {
	align-items: center;
	display: flex;
	overflow: visible;
	padding: 0 2rem;
}

.header-inner .toggle svg {
	color: #fff;
	display: block;
	position: relative;
	z-index: 1;
}

.header-inner .toggle path {
	fill: currentColor;
}

.toggle-inner {
	display: flex;
	justify-content: center;
	height: 2.3rem;
	position: relative;
	margin-bottom: 15px;
}

.toggle-icon {
	display: block;
	overflow: hidden;
}

.toggle-inner .toggle-text {
	color: #fff;
	font-size: 1rem;
	font-weight: 600;
	position: absolute;
	top: calc(100% + 0.5rem);
	width: auto;
	white-space: nowrap;
	word-break: break-all;
}

.overlay-header .toggle-text {
	color: inherit;
}

.header-inner .toggle:focus .toggle-text,
.header-inner .toggle:hover .toggle-text {
	text-decoration: underline;
}

/* Search Toggle ----------------------------- */

.search-toggle {
	position: absolute;
	bottom: 0;
	left: 0;
	top: 0;
}

.search-toggle .toggle-icon,
.search-toggle svg {
	height: 2.5rem;
	max-width: 2.3rem;
	width: 2.3rem;
}

/* Navigation Toggle ------------------------- */

.nav-toggle {
	position: absolute;
	bottom: 0;
	right: 0;
	top: 0;
	width: 6.6rem;
}

.nav-toggle .toggle-icon,
.nav-toggle svg {
	height: 2.8rem;
	width: 2.6rem;
}

.header-fixed  .toggle-icon-hamburger {
	display: none;
}

.header-fixed .home-header-sticky .toggle-icon-hamburger {
	display: block;
	margin-top: 2px;
}

.header-regular  .toggle-icon-hamburger {
	display: block;
}

.header-regular .home-header-sticky .toggle-icon-hamburger {
	display: none;
}

.header-fixed .toggle-icon-hamburger.toggle-icon-header-fixed {
	display: block;
}

.header-regular .toggle-icon-header-fixed {
	display: block;
}



.toggle-icon-hamburger {
	width: 25px;
}

.nav-toggle .toggle-inner {
	padding-top: 0.8rem;
}

/* Primary Menu ---------------------------- */

.primary-menu-wrapper {
	display: none;
}

ul.primary-menu {
	display: flex;
	font-size: 1.8rem;
	font-weight: 500;
	letter-spacing: -0.0277em;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.primary-menu .icon {
	display: block;
	height: 0.7rem;
	position: absolute;
	pointer-events: none;
	transform: rotate(-45deg);
	width: 1.3rem;
}

.primary-menu .icon::before,
.primary-menu .icon::after {
	content: "";
	display: block;
	background-color: currentColor;
	position: absolute;
	bottom: calc(50% - 0.1rem);
	left: 0;
}

.primary-menu .icon::before {
	height: 0.9rem;
	width: 0.2rem;
}

.primary-menu .icon::after {
	height: 0.2rem;
	width: 0.9rem;
}

.primary-menu li {
	font-size: inherit;
	line-height: 1.25;
	position: relative;
	border-bottom: transparent 3px solid;
	transition: border 200ms linear;
}


.header-regular .primary-menu li.current-menu-item,
.header-regular .mobile-menu li.current-menu-item {
	border-bottom: #F74F58 3px solid;
}

.header-fixed .home-header-sticky .primary-menu li:hover,
.header-regular .primary-menu  li:hover {
	border-bottom: #F74F58 3px solid;
}

.header-fixed .primary-menu li:hover,
.header-fixed .primary-menu li:focus,
.header-fixed .primary-menu .current_page_ancestor {
	border-bottom: #F74F58 3px solid;
}

.primary-menu > li:not(:last-child) {
	margin: 0 15px 0 0;
}

.primary-menu > li.menu-item-has-children > a {
	padding-right: 2rem;
}

.primary-menu > li > .icon {
	right: -0.5rem;
	top: calc(50% - 0.4rem);
}

.primary-menu a {
	color: #4D6182;
	display: block;
	line-height: 1.2;
	text-decoration: none;
	font-size: 1.8rem;
	text-transform: uppercase;
	font-weight: 600;
	padding: 0 5px 2px;
}
@media (max-width: ) {

}

.header-fixed .primary-menu a {
	color: #fff;
}

.header-fixed .home-header-sticky .primary-menu a {
	color: #4D6182;
}

.header-fixed .home-header-sticky .primary-menu a:hover,
.header-regular .primary-menu li a:hover,
.header-regular .primary-menu li.current-menu-item a {
	color: #3A96DB;
}

.primary-menu li.current-menu-item > a,
.primary-menu li.current-menu-item > .link-icon-wrapper > a,
.primary-menu li.current-menu-item > a:hover,
.primary-menu li.current-menu-item > .link-icon-wrapper > a:hover,
.primary-menu li.current-menu-item > a:focus,
.primary-menu li.current-menu-item > .link-icon-wrapper > a:focus {
	text-decoration: none;
}

/* SUB MENU */

.primary-menu ul {
	background: #000;
	border-radius: 0.4rem;
	color: #fff;
	font-size: 1.7rem;
	opacity: 0;
	padding: 1rem 0;
	position: absolute;
	right: 9999rem;
	top: calc(100% + 2rem);
	transition: opacity 0.15s linear, transform 0.15s linear, right 0s 0.15s;
	transform: translateY(0.6rem);
	width: 20rem;
	z-index: 1;
}

.primary-menu li.menu-item-has-children:hover > ul,
.primary-menu li.menu-item-has-children:focus > ul,
.primary-menu li.menu-item-has-children.focus > ul {
	right: 0;
	opacity: 1;
	transform: translateY(0);
	transition: opacity 0.15s linear, transform 0.15s linear;
}

.primary-menu ul::before,
.primary-menu ul::after {
	content: "";
	display: block;
	position: absolute;
	bottom: 100%;
}

.primary-menu ul::before {
	height: 2rem;
	left: 0;
	right: 0;
}

.primary-menu ul::after {
	border: 0.8rem solid transparent;
	border-bottom-color: #000;
	right: 1.8rem;
}

.primary-menu ul a {
	background: transparent;
	border: none;
	color: inherit;
	display: block;
	padding: 1rem 2rem;
	transition: background-color 0.15s linear;
	width: 100%;
}

.primary-menu ul li.menu-item-has-children > a {
	padding-right: 4.5rem;
}

.primary-menu ul li.menu-item-has-children .icon {
	position: absolute;
	right: 1.5rem;
	top: calc(50% - 0.5rem);
}

/* DEEP DOWN */

.primary-menu ul ul {
	top: -1rem;
}

.primary-menu ul li.menu-item-has-children:hover > ul,
.primary-menu ul li.menu-item-has-children:focus > ul,
.primary-menu ul li.menu-item-has-children.focus > ul {
	right: calc(100% + 2rem);
}

.primary-menu ul ul::before {
	bottom: 0;
	height: auto;
	left: auto;
	right: -2rem;
	top: 0;
	width: 2rem;
}

.primary-menu ul ul::after {
	border-bottom-color: transparent;

	/*rtl:ignore*/
	border-left-color: #000;
	bottom: auto;
	right: -1.6rem;
	top: 2rem;
}

.rtl .primary-menu ul ul::after {
	transform: rotate(180deg);
}

/*
 * Enable nav submenu expansion with tapping on arrows on large-viewport
 * touch interfaces (e.g. tablets or laptops with touch screens).
 * These rules are supported by all browsers (>IE11) and when JS is disabled.
 */
@media (any-pointer: coarse) {

	.primary-menu > li.menu-item-has-children > a {
		padding-right: 0;
		margin-right: 2rem;
	}

	.primary-menu ul li.menu-item-has-children > a {
		margin-right: 4.5rem;
		padding-right: 0;
		width: unset;
	}

}

/* Repeat previous rules for IE11 (when JS enabled for polyfill). */
body.touch-enabled .primary-menu > li.menu-item-has-children > a {
	padding-right: 0;
	margin-right: 2rem;
}

body.touch-enabled .primary-menu ul li.menu-item-has-children > a {
	margin-right: 4.5rem;
	padding-right: 0;
	width: unset;
}

/* -------------------------------------------------------------------------- */

/*	6. Menu Modal
/* -------------------------------------------------------------------------- */


.menu-modal {
	background: #fff;
	display: none;
	opacity: 0;
	overflow-y: auto;
	overflow-x: hidden;
	position: fixed;
	bottom: 0;
	left: -99999rem;
	right: 99999rem;
	top: 0;
	transition: opacity 0.25s ease-in, left 0s 0.25s, right 0s 0.25s;
	z-index: 99;
}

.admin-bar .menu-modal {
	top: 32px;
}

@media (max-width: 782px) {

	.admin-bar .menu-modal {
		top: 46px;
	}
}

.menu-modal.show-modal, .menu-modal-inner, .menu-wrapper,
button.close-nav-toggle, .menu-modal .menu-top-wrap {
	display: flex;
}

.menu-modal.active {
	left: 0;
	opacity: 1;
	right: 0;
	transition: opacity 0.25s ease-out;
}

.menu-modal-inner {
	background: #fff;
	justify-content: stretch;
	overflow: auto;
	-ms-overflow-style: auto;
	width: 100%;
}

.menu-wrapper {
	flex-direction: column;
	justify-content: space-between;
	position: relative;
}

button.close-nav-toggle {
	align-items: center;
	font-size: 1.6rem;
	font-weight: 500;
	justify-content: flex-end;
	padding: 3.1rem 0;
	position: relative;
	left: 6px;
}

button.close-nav-toggle svg {
	height: 1.6rem;
	width: 1.6rem;
	margin-right: 10px;
	margin-top: 5px;
}

button.close-nav-toggle .toggle-text {
	display: none;
}

.menu-modal .menu-top {
	flex-shrink: 0;
}

.menu-modal .menu-top-wrap {
	justify-content: space-between;
	align-items: center;
}

.menu-modal .menu-top-wrap .site-logo {
	margin-top: 6px;
	margin-left: -1px;
}

.menu-modal .menu-top-wrap .site-logo {
	margin-top: 6px;
	margin-left: -1px;
}


/* Main Menu --------------------------------- */

.modal-menu {
	position: relative;
	left: calc(50% - 50vw);
	width: 100vw;
}

.modal-menu li {
	border-color: #dedfdf;
	border-style: solid;
	border-width: 0.1rem 0 0 0;
	display: flex;
	flex-wrap: wrap;
	line-height: 1;
	justify-content: flex-start;
	margin: 0;
}

.modal-menu > li > a,
.modal-menu > li > .ancestor-wrapper > a {
	font-size: 1.8rem;
	font-weight: 600;
	letter-spacing: -0.0375em;
	color: #4D6182;
	text-transform: uppercase;
}

.modal-menu > li:last-child {
	border-bottom-width: 0.1rem;
}

.modal-menu .ancestor-wrapper {
	display: flex;
	justify-content: space-between;
	width: 100%;
}

.modal-menu a {
	display: block;
	padding: 2rem 2.5rem;
	text-decoration: none;
	width: 100%;
}

.modal-menu a:focus,
.modal-menu a:hover,
.modal-menu li.current-menu-item > .ancestor-wrapper > a,
.modal-menu li.current_page_ancestor > .ancestor-wrapper > a {
	text-decoration: none;
}

button.sub-menu-toggle {
	border-left: 0.1rem solid #dedfdf;
	flex-shrink: 0;
	margin: 1rem 0;
	padding: 0 2.5rem;
}

button.sub-menu-toggle svg {
	height: 0.9rem;
	transition: transform 0.15s linear;
	width: 1.5rem;
}

button.sub-menu-toggle.active svg {
	transform: rotate(180deg);
}

.modal-menu ul {
	display: none;
	margin: 0;
	width: 100%;
}

.modal-menu ul li {
	border-left-width: 1rem;
}

.modal-menu ul li a {
	color: inherit;
	font-weight: 500;
}

/* Main menu animation ----------------------- */

.menu-wrapper .menu-item {
	position: relative;
}

.menu-wrapper .active {
	display: block;
}

.menu-wrapper.is-toggling {
	pointer-events: none;
}

.menu-wrapper.is-toggling .menu-item {
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
	width: 100%;
}

.menu-wrapper.is-toggling .menu-bottom .social-menu .menu-item {
	width: auto;
}

.menu-wrapper.is-animating .menu-item,
.menu-wrapper.is-animating .toggling-target {
	transition-duration: 250ms;
}

.menu-wrapper.is-animating .menu-item {
	transition-property: transform;
}

.menu-wrapper.is-toggling .toggling-target {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 1;
}

.menu-wrapper.is-toggling .toggling-target.active {
	opacity: 0;
}

.menu-wrapper.is-animating.is-toggling .toggling-target {
	display: block;
	transition-property: opacity;
	opacity: 0;
}

.menu-wrapper.is-animating.is-toggling .toggling-target.active {
	opacity: 1;
}

.menu-wrapper.is-toggling .modal-menu > li:last-child li {
	border-top-color: transparent;
	border-bottom-width: 0.1rem;
}

@media (prefers-reduced-motion: reduce) {

	.menu-wrapper.is-animating .menu-item,
	.menu-wrapper.is-animating .toggling-target {
		transition-duration: 1ms !important;
	}

}


/* Expanded Menu ----------------------------- */

.expanded-menu {
	display: none;
}

.mobile-menu {
	display: block;
}


/* Menu Bottom ------------------------------- */

.menu-bottom {
	flex-shrink: 0;
	padding: 4rem 0;
}

.menu-bottom nav {
	width: 100%;
}

.menu-copyright {
	display: none;
	font-size: 1.6rem;
	font-weight: 500;
	margin: 0;
}

.menu-copyright a:focus,
.menu-copyright a:hover {
	text-decoration: underline;
}

.menu-bottom .social-menu {
	justify-content: center;
}

/* -------------------------------------------------------------------------- */

/*	7. Templates
/* -------------------------------------------------------------------------- */

.container {
	max-width: 1600px;
	margin: 0 auto;
}

/* -------------------------------------------------------------------------- */

/*	8. Modules
/* -------------------------------------------------------------------------- */

/* Hero Section ------------------------------- */
.hero-section {
	height: 90vh;
	display: flex;
	color: #fff;
}

.hero-section-pharallax {
	background-repeat: no-repeat;
	background-size: cover;
	position: fixed;
	height: 90vh;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: -1;
	top: unset;
}

.hero-content {
	text-align: center;
	max-width: 765px;
}

.hero-content h1 {
	margin-bottom: 0;
}

.hero-content h2 {
	font-size: 2.5rem;
	margin-top: 7px;
	color: #fff;
}

.hero-section .scroll-down {
	max-width: 45px;
	position: absolute;
	bottom: 50px;
	animation: sdb05 1.7s infinite;
}

@-webkit-keyframes sdb05 {
	0% {
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		-webkit-transform: translateY(20px);
		opacity: 0;
	}
}

/* Hero Section Bottom Title ------------------------------- */
.hero-section-bottom-title {
	text-align: center;
}

.hero-section-bottom-title h2{
	border-bottom: 3px solid #F74F58;
	font-size: 5rem;
	display: inline-block;
	margin-top: 50px;
}

/* Hero Section Bottom Title ------------------------------- */
.main-page-title {
	text-align: center;
}

.main-page-title h1 {
	color: #4D6182;
	border-bottom: 3px solid #F74F58;
	font-size: 5rem;
	display: inline-block;
	margin: 20px 0 0 0;
}

/* Two Columns Section (Image and Text) ------------------------------- */
.two-columns {
	display: flex;
}

.two-columns-no-btn {
	max-width: 1250px;
	width: calc(100% - 18rem);
	margin: 0 auto;
}

.two-columns-no-btn .two-columns-right {
	padding-left: 0;
}

.two-columns-left {
	width: 50%;
	text-align: left;
}

.two-columns-left img {
	object-fit: contain;
	height: 100%;
	display: inline-block;
	max-width: 490px;
	width: 100%;
}

.home .two-columns-left img {
	object-fit: cover;
	max-width: unset;
	width: 100%;
}

.two-columns-right {
	padding: 78px 0 60px 30px;
	width: 50%;
}

.page-platform .two-columns-right {
	padding-top: 0;
}

.two-columns-content {
	max-width: 655px;
}

.two-columns-right h2 {
	font-size: 3.5rem;
	color: #4D6182;
	margin: 0 0 30px 0;
}

.two-columns-right h2 span {
	color: #3A96DB;
}

.two-columns-right p {
	color: #4D6182;
	line-height: 2.7rem;
}

.two-columns-right a {
	margin-top: 50px;
}

/* One Column Full Width ------------------------------- */

.one-col-full-width {
	padding: 75px 0 132px 0;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: bottom;
}

.one-col-full-width p {
	margin-bottom: 60px;
}

/* One Column Full Width No Bg ------------------------------- */

.one-col-full-width-no-bg {
	background: #eee;
	color: #4D6182;
	padding: 80px 0;
}

.one-col-full-width-no-bg,
.one-col-full-width-no-bg h2 {
	color: #4D6182;
}

.one-col-full-width-no-bg h2 {
	margin-top: 0;
}


/* Recent News ------------------------------- */

.recent-news {
	padding: 60px 0;
	position: relative;
}

.recent-news-bg-item {
	position: absolute;
	width: 100px;
	height: 100px;
}

.recent-news-bg-item-top-left {
	width: 215px;
	height: 170px;
	top: 5px;
	left: 15px;
	background-image: url("");
	background-repeat: no-repeat;
}

.recent-news-bg-item-top-right {
	width: 215px;
	height: 170px;
	top: 45px;
	right: 0;
	background-image: url("");
	background-repeat: no-repeat;
}

.recent-news-bg-item-bottom-right {
	width: 215px;
	height: 170px;
	bottom: 25px;
	right: 45px;
	background-image: url("");
	background-repeat: no-repeat;
	transform: rotate(180deg);
}

.recent-news-bg-item {
	position: absolute;
}

.recent-news h2{
	text-align: center;
	margin-bottom: 60px;
}

.recent-news-container {
	display: flex;
	position: relative;
}

.recent-news-container li {
	width: 33%;
}

.recent-news-container li:not(:last-child) {
	margin-right: 30px;
}

.recent-news-container li a {
	color: #4D6182;
	font-size: 2.5rem;
	text-decoration: none;
}

.recent-news-container .attachment-post-thumbnail {
	display: block;
	height: auto;
	width: 100%;
	max-height: 252px;
	object-fit: cover;
}

.recent-news-container .recent-news-date {
	color: #4D6182;
	display: flex;
}

.recent-news-container .recent-news-date img {
	object-fit: contain;
	margin-right: 10px;
}

.recent-news .recent-news-btn {
	text-align: center;
	margin-top: 60px;
}


/* Carousel ------------------------------- */
.carousel {
	padding: 100px 0 112px 0;
	text-align: center;
	background: linear-gradient(0deg, rgba(54,150,218,0.19789922805059523) 0%, rgba(255,255,255,1) 50%);
	background-color: #fff;
}

.carousel h2 {
	margin-bottom: 60px;
	font-size: 3rem;
}

.carousel h3 {
	margin: 60px 0 30px 0;
	color: #4D6182;
	font-size: 3rem;
	font-weight: 600;
}

.carousel-content {
	display: flex !important;
	padding: 60px 0 60px 0;
}

.carousel-content .carousel-counter {
	color: #F74F58;
	font-size: 4.5rem;
	font-weight: 700;
	margin-bottom: 20px;
}

.carousel-content .carousel-counter-border {
	max-width: 105px;
	height: 3px;
	background-color: #4D6182;
	display: block;
	margin-bottom: 20px;
}

.carousel-content .carousel-text {
	color: #4D6182;
	font-size: 2.5rem;
	font-weight: 600;
	margin-bottom: 20px;
}

.carousel-content .carousel-link a {
	color: #F74F58;
	font-size: 1.75rem;
	font-weight: 600;
	margin-bottom: 20px;
}

.carousel-right {
	padding-top: 65px;
}

.carousel-left, .carousel-right {
	width: 50%;
	text-align: left;
}

.carousel-right, .carousel-bottom  {
	position: relative;
}

.carousel-bg-right {
	background-image: url("");
	width: 217px;
	height: 172px;
	position: absolute;
	top: -23px;
	right: 0;
}

.carousel-bg-left {
	background-image: url("");
	width: 214px;
	height: 185px;
	position: absolute;
	top: -52px;
}

.progress-container {
	position: absolute;
	right: 0;
	top: 5px;
}

.progress {
	width: 60px;
	height: 60px;
	font-size: 30px;
	color: #fff;
	border-radius: 50%;
	overflow: hidden;
	position: relative;
	background: #fff;
	text-align: center;
	margin: 20px
}

.progress-timer {
	color: #3696DA;
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-weight: 600;
	display: none;
}

.slick-active .progress-timer {
	display: block;
}

.progress .overlay {
	width: 50%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	background-color: #fff;
	border-radius: 100px 0 0 100px;
}

.progress .left, .progress .right {
	width: 50%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	border: 4px solid #F74F58;
	border-radius: 100px 0 0 100px;
	border-right: 0;
	transform-origin: right;
}

.animation-finished {
	width: 50%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	border: 10px solid #222235;
	border-radius: 100px 0 0 100px;
	border-right: 0;
	transform-origin: right;
	z-index: 100;
}

.progress-timer-svg {
	height: 60px;
 	transform: rotate(-90deg);
  	width: 60px;
}

.progress-timer-circle {
	fill: none;
	stroke: #e2eff0;
	stroke: #F74F58;
	stroke-dasharray: 100 100;
	stroke-dashoffset: 100;
	stroke-width: 2;

}

.progress-timer-circle.activate-progress {
	animation: progress-animation linear;
	animation-fill-mode:forwards;
}

@keyframes progress-animation {
	from {
	  stroke-dashoffset: 100;
	}
	to {
	  stroke-dashoffset: 0;
	}
}

/* Leadership ------------------------------- */

.leadership {
	padding: 40px 0 80px 0;
	background: rgb(81,113,166);
	background: linear-gradient(90deg, rgba(81,113,166,1) 0%, rgba(58,150,219,1) 68%);
	color:#fff;
}

.leadership-container {
	max-width: 1065px;
	margin: 0 auto;
}

.leadership-top-section p {
	margin-bottom: 60px;
}

.leadership-list {
	display: flex;
	justify-content: center;
	margin: 0 auto;
}

.leadership-list.no-subtitle-margin {
	margin-top: 71px;
}

.leadership-list-item-wrap:not(:last-child) {
	margin-right: 76px;
}

.leadership-list-item {
	background: #fff;
	color: #4D6182;
	padding: 30px;
	box-sizing: border-box;
	max-width: 304px;
	height: 100%;
}

.leadership-list-item:hover {
	cursor: pointer;
}

.leadership-list-item-img img {
	object-fit: cover;
	max-height: 244px;
	max-width: 244px;
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-radius: 50%;
	min-height: 244px;
}

.leadership-list-item h3, .list-popup-left h3 {
	font-size: 1.8rem;
	margin: 15px 0 5px 0;
}

.leadership-list-item p {
	line-height: 22px;
	font-weight: 500;
}

.leadership-border-small {
	width: 30px;
	display: inline-block;
	height: 3px;
	background-color: #F74F58;
	border-radius: 15px;
}

.leadership-list-popup .leadership-border-small {
	width: 47px;
}

.leadership-list-top-title {
	margin: 80px 0 60px 0;
}

.leadership-list-popup {
	display: flex;
	padding: 60px;
	color: #4D6182;
	position: relative;
	box-shadow: 0px 3px 20px #3696da;
	text-align: left;
	max-height: 800px;
	overflow-y: scroll;
}

/* Hide scrollbar for Chrome, Safari and Opera */
/*.leadership-list-popup::-webkit-scrollbar {*/
/*	display: none;*/
/*}*/

/* Hide scrollbar for IE, Edge and Firefox */
/*.leadership-list-popup {*/
/*	-ms-overflow-style: none;  !* IE and Edge *!*/
/*	scrollbar-width: none;  !* Firefox *!*/
/*}*/

.leadership-list-popup svg {
	width: 20px;
	fill: #4D6182;
	height: 20px;
	position: absolute;
	right: 20px;
	top: 20px;
	cursor: pointer;
	padding: 5px;
	box-sizing: content-box;
}

.list-popup-right {
	width: 70%;
	padding-left: 30px;
}

.list-popup-left {
	width: 30%;
}

.list-popup-right h3 {
	margin-top: 0;
	display: inline-block;
	border-bottom: 3px solid #F74F58;
	padding-bottom: 7px;
}

/* Modal ------------------------------- */

body.modal-unset-scroll {
	overflow-y: hidden !important;
}

.modal {
	position: fixed;
	z-index: 10000;
	top: 0;
	left: 0;
	visibility: hidden;
	width: 100%;
	height: 100%;
}

.modal.is-visible {
	visibility: visible;
}

.modal-overlay {
	position: fixed;
	z-index: 10;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgb(77 97 130 / 70%);
	visibility: hidden;
	opacity: 0;
	transition: visibility 0s linear 0.3s, opacity 0.3s;
}

.modal.is-visible .modal-overlay {
	opacity: 1;
	visibility: visible;
	transition-delay: 0s;
}

.modal .modal-wrapper {
	position: absolute;
	z-index: 9999;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 1065px;
	width: 100%;
	background-color: #fff;
	box-shadow: 0 0 1.5em hsla(0, 0%, 0%, 0.35);
}

.modal-transition {
	transition: all 0.3s 0.12s;
	transform: translateY(-10%);
	opacity: 0;
}

.modal.is-visible .modal-transition {
	opacity: 1;
}

/* Investors Carousel ------------------------------- */

.investors-carousel {
	color: #4D6182;
}

.investors-carousel h2 {
	margin-top: 0;
}

.investors-carousel-content {
	padding: 0 50px;
}

.investors-carousel-item a {
	display: inline-block;
	padding: 50px;
}

.investors-carousel-item .slick-slide {
	text-align: center;
}

.investors-carousel .slick-arrow,.investors-carousel .slick-arrow::before {
	width: 45px;
	height: 45px;
}

.investors-carousel .slick-arrow::before {
	content: '';
	background-image: url("");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 45%;
	display: block;
	transition: opacity 200ms linear;
}

.investors-carousel .slick-slider .slick-track {
	display: flex;
	align-items: center;
}

.investors-carousel .slick-next {
	right: -12px;
}

.investors-carousel .slick-next::before {
	transform: rotate(0);
}

.investors-carousel .slick-prev {
	left: -12px;
}

.investors-carousel .slick-prev::before {
	transform: rotate(180deg);
}

/* Our Approach,  Three Columns With Image And Text ------------------------------- */

.three-columns-and-text {
	background: #e9f4f9;
	color: #4D6182;
}

.three-columns-and-text.our-approach {
	background: rgb(81,113,166);
	background: linear-gradient(270deg, rgb(81, 113, 166) 0%, rgb(58, 150, 219) 68%);
	color: #fff;
}

.three-columns-and-text .our-approach-container-top {
	margin-bottom: 80px;
}

.three-columns-and-text .our-approach-container-top h2 {
	color: #fff;
}

.three-columns-and-text .container {
	max-width: 1065px;
	margin: 0 auto;
}

.three-columns-item-wrap {
	display: flex;
	justify-content: space-between;
	margin-bottom: 60px;
}

.three-columns-item {
	max-width: 242px;
	position: relative;
}

.three-columns-item-img {
	position: relative;
}

.three-columns-item-img img {
	border: 2px solid #4D6182;
	margin-bottom: 40px;
	background: #e9f4f9;
	max-width: 242px;
	max-height: 242px;
	border-radius: 50%;
	width: 100%;
	object-fit: cover;
}

.three-columns-item:last-child .three-columns-item-img svg,
.three-columns-item:last-child .svg-mobile-wrap svg {
	display: none;
}

.three-columns-item .three-columns-item-svg {
	fill: #4D6182;
}

.three-columns-item .three-columns-item-svg {
	width: 45px;
	position: absolute;
	top: 50%;
	right: -100px;
	transform: rotate(270deg) translateX(50%);
	animation-delay: 4s;
}

.three-columns-item .three-columns-item-svg.svg-mobile {
	display: none;
}

.three-columns-item .three-columns-item-svg.svg-mobile {
	display: none;
}


@-webkit-keyframes pulse-mobile {
	0% {
		opacity: 0.5;
		transform: rotate(270deg);
	}
	50% {
		opacity: 1;
		transform: rotate(360deg);
	}
	100% {
		transform: rotate(270deg);
		opacity: 0.5;
	}
}

/* ArrePath Pipeline ------------------------------- */
.pipeline-section {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center right;
	color: #fff;
}

.pipline-container-top {
	max-width: 1065px;
	margin: 0 auto;
}

.pipeline-section h2{
	margin: 0 0 20px 0;
	color: #fff;
}

.pipeline-section .pipline-container-top p {
	font-size: 1.8rem;
	line-height: 27px;
	font-weight: 700;
	margin-bottom: 50px;
}

.pipeline-item {
	display: flex;
	justify-content: space-between;
	max-width: 580px;
	width: 100%;
}

.pipeline-item-img {
	padding-top: 27px;
	display: inline-block;
	max-width: 140px;
	width: 100%;
	object-fit: contain;
}

.pipeline-item-text {
	max-width: 420px;
}

.pipeline-item-text h3 {
	font-size: 3.5rem;
}

.pipeline-item-text p {
	font-size: 1.8rem;
	font-weight: 600;
	line-height: 27px;
}

.pipeline-item:nth-child(odd) {
	float: left;
}

.pipeline-item:nth-child(even) {
	text-align: right;
	flex-direction: row-reverse;
}

.pipeline-item:nth-child(even) {
	float: right;
}

/* News Posts Filtering ------------------------------- */
.category-filters-container {
	width: 100%;
	margin: 0 70px 0 0;
}

.news-filtering-sidebar {
	min-width: 381px;
	background: #E0F2FF;
	padding: 35px 30px;
	height: fit-content;
}

.news-filtering-main .post-content {
	border-bottom: 2px solid #3A96DBA1;
	padding-bottom: 32px;
}

.news-filtering-main .post-content-bottom,
.news-filtering-main .post-content-top,
.news-filtering-main .post-content-right,
.news-filtering-main .post-date,
.news-filtering-main .post-content-bottom a,
.news-filtering .form-filter,
.news-filtering .filter-year-wrap,
.news-filtering .filter-category-wrap,
.news-filtering .category-content-inner,
.news-filtering-sidebar .ctf .ctf-item {
	display: flex;
}

.news-filtering-main .post-content-top,
.news-filtering-main .post-content-bottom .post-read-more,
.news-filtering .filter-category-wrap,
.news-filtering .filter-year-wrap{
	align-items: center;
}

.news-filtering-main .post-content-inner p {
	max-width: 790px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
}

.news-filtering-main .post-content-top,
.news-filtering .category-content-inner {
	justify-content: space-between;
}

.news-filtering-main .post-content-top h3{
	max-width: 600px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	color: #4D6182;
}

.news-filtering-main .post-content-right {
	width: 100%;
}

.news-filtering-main .post-content-bottom .post-read-more {
	margin-left: auto;
	background: #FB5058;
	border-radius: 50%;
	min-width: 48px;
	height: 48px;
	justify-content: center;
	align-self: center;
	margin-left: 40px;
}

.news-filtering-main .post-content-bottom .post-read-more:hover {
	background: #F7747A;
}

.news-filtering-main .post-date  {
	color: #4D6182;
	padding-top: 13px;
}

.news-filtering-main .post-date img {
	max-width: 18px;
	margin-right: 10px;
}

.news-filtering-main .featured-img-content {
	max-width: 244px;
	width: 100%;
	margin-right: 30px;
}

.news-filtering-main .featured-img-content img {
	max-height: 130px;
	object-fit: cover;
}

.news-filtering-main .post-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #4D6182;
	text-decoration: none;
}

.news-filtering .filter-year-wrap {
	margin-right: 166px;
}

.news-filtering .filter-category-wrap label,
.news-filtering .filter-year-wrap label {
	margin-right: 32px;
	font-size: 1.8rem;
	color: #4D6182;
	font-weight: 600;
	margin-bottom: 0;
}

.news-filtering #yearFilter,
.news-filtering #categoryFilter {
	border: 1px solid #3A96DB;
	background: #fff;
	color: #3A96DB;
	padding: 8px 7px;
	font-size: 1.4rem;
	max-width: 107px;
}

.news-filtering #categoryFilter {
	max-width: 145px;
}

.news-filtering .filter-no-posts {
	margin-top: 40px;
	margin-top: 60px;
	font-size: 2rem;
	font-weight: 600;
	color: #4D6182;
}

.news-filtering-sidebar #ctf .ctf-author-screenname,
.news-filtering-sidebar #ctf.ctf-styles .ctf-screename-sep,
#ctf .ctf-header .ctf-header-follow {
	display: none !important;
}

.news-filtering-sidebar #ctf .ctf-out-of-tweets {
	display: none;
}

.news-filtering-sidebar .ctf-author-box-link,
.news-filtering-sidebar #ctf .ctf-item {
	display: flex !important;
}

.news-filtering-sidebar #ctf .ctf-item {
	border-top: 2px solid #3A96DBA1;
}

.news-filtering-sidebar #ctf .ctf-header-name {
	color: #4D6182;
	font-size: 2.5rem;
}

.news-filtering-sidebar .ctf-author-box {
	padding-right: 20px;
}

.news-filtering-sidebar .ctf-author-box-link {
	flex-direction: column;
	align-items: flex-end;
}

.news-filtering-sidebar #ctf .ctf-header-text .ctf-header-user, #ctf .ctf-header-text p {
	margin-left: 80px !important;
}

.news-filtering-sidebar  .ctf-author-name {
	font-size: 1.6rem;
	color: #4D6182 !important;
	font-weight: 600;
	text-decoration: none;
}

.news-filtering-sidebar  #ctf.ctf-styles .ctf-tweet-meta {
	font-size: 1.3rem;
}

.news-filtering-sidebar  .ctf .ctf-author-box {
	max-width: 110px;
	width: 100%;
	align-self: center;
	text-align: right;
}

.news-filtering-sidebar  #ctf p.ctf-tweet-text {
	font-size: 1.4rem;
	line-height: 21px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 7;
	-webkit-box-orient: vertical;
}

.news-filtering-sidebar #ctf .ctf-tweet-content {
	max-width: 213px;
	width: 100%;
}

.news-filtering-sidebar #ctf .ctf-tweet-date {
	color: #4D6182 !important;
	text-decoration: none;
	font-size: 1.4rem;
}

/* Careers ------------------------------- */

.careers {
	padding: 80px 0;
}

.careers-top-section h2 {
	margin-top: 0;
	line-height: 35px;
}

.careers-position-list h3 {
	color: #4D6182;
	font-size: 2.5rem;
	margin: 0 0 20px;
}

.careers-position-list p {
	font-size: 1.4rem;
	margin-bottom: 30px;
}

.careers-top-section {
	margin-bottom: 60px;
}

.careers-position-item:not(:last-child) {
	margin-bottom: 60px;
}

/* Job Position ------------------------------- */
.job-position {
	padding: 80px 0;
}

.job-position-top-section {
	margin-bottom: 60px;
}

.job-position-date {
	display: flex;
	color: #4D6182;
	margin-bottom: 30px;
}

.job-position-item {
	margin-bottom: 60px;
}

.job-position-item ul li {
	margin-bottom: 5px;
}

.job-position-item ul li:before,
.job-terms-item ul li:before {
	content: "-";
	display: inline-block;
	margin-right: 4px;
}

.job-position-item h3,
.job-terms-item h3 {
	margin-top: 0;
	color: #4D6182;
}

.job-position-date img {
	margin-right: 10px;
}

.job-terms-list {
	width: 60%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.job-terms-item {
	flex-basis: 30%;
}

.job-terms-item ul li {
	margin-bottom: 4px;
}

.job-terms-item h3 {
	font-size: 2.5rem;
}

.job-terms-item,
.job-position-bottom-section {
	font-size: 1.4rem;
}

.job-terms-item:not(:last-child) {
	margin-bottom: 60px;
}

.job-terms-item:not(:last-child) {
	margin-bottom: 60px;
}

.job-position-form {
	display: none;
	max-width: 60%;
	margin-top: 40px;
}


/* -------------------------------------------------------------------------- */

/*	9. Post: Archive
/* -------------------------------------------------------------------------- */


/* Archive Header ---------------------------- */

.archive-header {
	background-color: #fff;
	padding: 4rem 0;
}

.reduced-spacing .archive-header {
	padding-bottom: 2rem;
}

.archive-title {
	font-size: 2.4rem;
	font-weight: 700;
	letter-spacing: -0.026666667em;
	margin: 0;
}

.archive-subtitle p:last-child {
	margin-bottom: 0;
}

/* Posts ------------------------------------- */

body:not(.singular) main > article:first-of-type {
	padding: 4rem 0 0;
}

/* Search Results ---------------------------- */

.no-search-results-form {
	padding-top: 5rem;
}

/* -------------------------------------------------------------------------- */

/*	10. Post: Single
/* -------------------------------------------------------------------------- */


/* Post Header ------------------------------- */

.singular .entry-header {
	background-color: #fff;
	padding: 4rem 0;
}

.entry-categories {
	line-height: 1.25;
	margin-bottom: 2rem;
}

.entry-categories-inner {
	justify-content: center;
	display: flex;
	flex-wrap: wrap;
	margin: -0.5rem 0 0 -1rem;
}

.entry-categories a {
	border-bottom: 0.15rem solid currentColor;
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: 0.036666667em;
	margin: 0.5rem 0 0 1rem;
	text-decoration: none;
	text-transform: uppercase;
}

.entry-categories a:focus,
.entry-categories a:hover {
	border-bottom-color: transparent;
}

h1.entry-title,
h2.entry-title {
	margin: 0;
	color: #4D6182;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
}

.entry-title a {
	color: inherit;
	text-decoration: none;
}

.entry-title a:focus,
.entry-title a:hover {
	text-decoration: underline;
}

.intro-text {
	margin-top: 2rem;
}

.singular .intro-text {
	font-size: 2rem;
	letter-spacing: -0.0315em;
	line-height: 1.4;
}

.post .entry-header-inner {
	text-align: left;
}

/* POST META */

.post-meta-single-top .post-meta {
	justify-content: center;
}

.post-meta-wrapper {
	margin-top: 2rem;
	margin-right: auto;
	margin-left: auto;
	max-width: 58rem;
	width: 100%;
}

.post-meta {
	color: #6d6d6d;
	display: flex;
	flex-wrap: wrap;
	font-size: 1.5rem;
	font-weight: 500;
	list-style: none;
	margin: -1rem 0 0 -2rem;
}

.post-meta li {
	flex-shrink: 0;
	letter-spacing: -0.016875em;
	margin: 1rem 0 0 2rem;
	max-width: calc(100% - 2rem);
}

.post-meta a {
	color: inherit;
	text-decoration: none;
}

.post-meta a:focus,
.post-meta a:hover {
	text-decoration: underline;
}

.post-meta .meta-wrapper {
	align-items: center;
	display: flex;
	flex-wrap: nowrap;
}

.post-meta .meta-icon {
	flex-shrink: 0;
	margin-right: 1rem;
}

.sticky .post-sticky {
	color: inherit;
}

.post-meta .post-author .meta-icon svg {
	width: 1.6rem;
	height: 1.8rem;
}

.post-meta .post-categories .meta-icon svg {
	width: 1.8rem;
	height: 1.7rem;
}

.post-meta .post-comment-link .meta-icon svg {
	width: 1.8rem;
	height: 1.8rem;
}

.post-meta .post-date .meta-icon svg {
	width: 1.7rem;
	height: 1.8rem;
}

.post-meta .post-edit .meta-icon svg {
	width: 1.8rem;
	height: 1.8rem;
}

.post-meta .post-sticky .meta-icon svg {
	width: 1.5rem;
	height: 1.8rem;
}

.post-meta .post-tags .meta-icon svg {
	width: 1.8rem;
	height: 1.8rem;
}

.post-meta svg * {
	fill: currentColor;
}


/* Featured Media ---------------------------- */

.featured-media {
	margin-top: 5rem;
	position: relative;
}

.singular .featured-media {
	margin-top: 0;
}

.singular .featured-media-inner {
	position: relative;
	left: calc(50% - 50vw);
	width: 100vw;
}

.singular .featured-media::before {
	background: #fff;
	content: "";
	display: block;
	position: absolute;
	bottom: 50%;
	left: 0;
	right: 0;
	top: 0;
}

.featured-media img {
	margin: 0 auto;
}

.featured-media figcaption {
	margin: 1.5rem auto 0 auto;
	text-align: center;
	width: calc(100% - 5rem);
}

.post-inner {
	padding-top: 3rem;
}

.reduced-spacing.missing-post-thumbnail .post-inner {
	padding-top: 0;
}


/* Post Footer ------------------------------- */

/* POST NAV LINKS */

.post-nav-links {
	border-radius: 0.4rem;
	display: flex;
	font-size: 0.9em;
	font-weight: 600;
	line-height: 1;
	margin: 3em auto 0 auto;
	padding: 0;
	width: calc(100% - 4rem);
	max-width: 58rem;
}

.post-nav-links > span.label {
	padding: 1em 0;
}

.post-nav-links > * {
	padding: 1em 0.75em;
}

/* POST META BOTTOM */

.post-meta-wrapper.post-meta-single-bottom {
	margin-top: 3rem;
}


/* Author Bio -------------------------------- */

.author-bio {
	margin-top: 4rem;
	margin-right: auto;
	margin-left: auto;
	max-width: 58rem;
	width: 100%;
}

.hide-avatars .author-bio {
	padding-left: 0;
}

.author-bio .author-title-wrapper {
	align-items: center;
	display: flex;
	margin: 0 0 1rem 0;
}

.author-bio .avatar {
	border-radius: 50%;
	margin-right: 1.5rem;
	height: 5rem;
	width: 5rem;
}

.hide-avatars img.avatar {
	display: none;
}

.author-bio p:last-child {
	margin-bottom: 0;
}

.author-bio .author-title {
	margin: 0;
}

.author-bio .author-link {
	display: block;
	font-size: 1.6rem;
	font-weight: 600;
	margin-top: 1em;
	text-decoration: none;
}

.author-bio .author-link:focus,
.author-bio .author-link:hover {
	text-decoration: underline;
}


/* Single Pagination ------------------------- */

.pagination-single {
	font-size: 1.8rem;
	margin-top: 5rem;
}

.pagination-single-inner {
	display: flex;
	flex-direction: column;
}

.pagination-single hr:first-child {
	margin: 0 0 2.8rem 0;
}

.pagination-single hr:last-child {
	margin: 2.8rem 0 0.8rem 0;
}

.pagination-single a {
	align-items: baseline;
	display: flex;
	font-weight: 600;
	letter-spacing: -0.0275em;
	text-decoration: none;
	flex: 1;
}

.pagination-single a + a {
	margin-top: 1rem;
}

.pagination-single a .arrow {
	margin-right: 1rem;
}

.pagination-single a:focus .title,
.pagination-single a:hover .title {
	text-decoration: underline;
}

/* -------------------------------------------------------------------------- */

/*	11. Entry Content
/* -------------------------------------------------------------------------- */


.entry-content {
	line-height: 1.5;
}

.entry-content > * {
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.25em;
}

.entry-content > *:first-child {
	margin-top: 0;
}

.entry-content > *:last-child {
	margin-bottom: 0;
}

.read-more-button-wrap {
	margin-top: 1em;
	text-align: center;
}

.entry-content a:hover,
.entry-content a:focus {
	text-decoration: none;
}

.entry-content p,
.entry-content li {
	line-height: 1.4;
}

.entry-content li img {
	display: inline-block;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
	margin: 3.5rem auto 2rem;
}

.entry-content ul ul,
.entry-content ol ol,
.entry-content ul ol,
.entry-content ol ul {
	margin-bottom: 1rem;
}

.entry-content hr {
	margin: 4rem auto;
}

.post-inner .entry-content > .wp-block-cover.alignwide:first-child,
.post-inner .entry-content > .wp-block-cover.alignfull:first-child {
	margin-top: 0;
}

/* Font Families ----------------------------- */

.entry-content {
	font-family: 'Montserrat', sans-serif;
	color: #4D6182;
	letter-spacing: normal;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6,
.entry-content cite,
.entry-content figcaption,
.entry-content table,
.entry-content address,
.entry-content .wp-caption-text,
.entry-content .wp-block-file {
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
}

@supports ( font-variation-settings: normal ) {

	.entry-content h1,
	.entry-content h2,
	.entry-content h3,
	.entry-content h4,
	.entry-content h5,
	.entry-content h6,
	.entry-content cite,
	.entry-content figcaption,
	.entry-content table,
	.entry-content address,
	.entry-content .wp-caption-text,
	.entry-content .wp-block-file {
		font-family: "Inter var", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
	}
}


/* Alignment Classes ------------------------- */

.entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide) {
	max-width: 100rem;
	width: calc(100% - 4rem);
}

[class*="__inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide) {
	max-width: 58rem;
	width: 100%;
}

.alignnone,
.aligncenter,
.alignleft,
.alignright,
.alignwide {
	margin-top: 4rem;
	margin-right: auto;
	margin-bottom: 4rem;
	margin-left: auto;
}

[class*="__inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright) {
	margin-left: auto;
	margin-right: auto;
}

/* Full */

.alignfull {
	margin-top: 5rem;
	margin-right: auto;
	margin-bottom: 5rem;
	margin-left: auto;
	max-width: 100vw;
	position: relative;
	width: 100%;
}

[class*="__inner-container"] > .alignfull {
	max-width: 100%;
}

/* Wide */

.alignwide {
	max-width: 120rem;
	position: relative;
	width: calc(100% - 4rem);
}

[class*="__inner-container"] > .alignwide {
	width: 100%;
}

/* Center */

.aligncenter,
.aligncenter img {
	margin-left: auto;
	margin-right: auto;
}

/* Left and right */

.alignleft,
.alignright {
	max-width: 50%;
}

.alignleft {

	/*rtl:ignore*/
	float: left;
	margin: 0.3rem 2rem 2rem 2rem;
}

.alignright {

	/*rtl:ignore*/
	float: right;
	margin: 0.3rem 2rem 2rem 2rem;
}

[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .alignleft,
[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > p .alignleft,
[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .wp-block-image .alignleft {

	/*rtl:ignore*/
	margin-left: 2rem;
}

[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .alignright,
[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > p .alignright,
[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .wp-block-image .alignright {

	/*rtl:ignore*/
	margin-right: 2rem;
}

/* Entry Media ------------------------------- */

.alignfull > figcaption,
.alignfull > .wp-caption-text {
	margin-left: auto;
	margin-right: auto;
	max-width: 58rem;
	width: calc(100% - 4rem);
}

/* -------------------------------------------------------------------------- */

/*	12. Site Pagination
/* -------------------------------------------------------------------------- */


.pagination .nav-links {
	align-items: baseline;
	display: flex;
	flex-wrap: wrap;
	font-size: 1.8rem;
	font-weight: 600;
	margin: -1.5rem 0 0 -2.5rem;
	width: calc(100% + 2.5rem);
}

.pagination-separator {
	margin: 5rem 0;
}

.nav-links > * {
	margin: 1.5rem 0 0 2.5rem;
}

.nav-links .placeholder {
	display: none;
	visibility: hidden;
}

.pagination a {
	text-decoration: none;
}

.pagination a:focus,
.pagination a:hover {
	text-decoration: underline;
}

.pagination .dots {
	transform: translateY(-0.3em);
	color: #6d6d6d;
}

.nav-short {
	display: none;
}

/* -------------------------------------------------------------------------- */

/*	13. Error 404
/* -------------------------------------------------------------------------- */


.error404 #site-content {
	padding-top: 4rem;
}

.error404-content {
	text-align: center;
	height: 65vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.error404 #site-content .search-form {
	justify-content: center;
	margin-top: 3rem;
}

/* -------------------------------------------------------------------------- */

/*	14. Site Footer
/* -------------------------------------------------------------------------- */

#site-footer {
	background-color: #4D6182;
	padding-top: 60px;
	padding-bottom: 20px;
	color: #fff;
	font-size: 1.9rem;
	line-height: 2.6rem;
}

#site-footer a {
	text-decoration: none;
}

#site-footer a:focus,
#site-footer a:hover {
	text-decoration: underline;
}

.footer-content {
	display: flex;
	margin-bottom: 35px;
}

.footer-column {
	width: 18%;
}


.footer-column-one .footer-contact h3{
	font-size: 1.6rem;
	font-weight: 600;
	margin: 20px 0 15px 0;
}

.footer-column-one .footer-contact p {
	font-size: 12px;
	line-height: 16px;
	font-weight: 400;
	margin-bottom: 15px;
	padding-left: 20px;
}

.footer-column-one .footer-contact a {
	color: #fff;
}

.footer-column-one .footer-address {
	background-image: url("");
	background-repeat: no-repeat;
	background-position-y: 25%;
}

.footer-column-one .footer-number {
	background-image: url("");
	background-repeat: no-repeat;
	background-position-y: 25%;
}

.footer-column-one .footer-email {
	background-image: url("");
	background-repeat: no-repeat;
	background-position-y: 25%;
}

.footer-column-four .footer-social-networks h3 {
	font-size: 2.5rem;
	margin: 0 0 30px 0;
	line-height: 1;
}

.footer-column.footer-column-five {
	max-width: 381px;
	width: 100%;
}

/* FOOTER MENU */

.footer-menus-wrp {
	display: flex;
}

.footer-menus-wrp .first-footer-menu {
	margin-right: 8.5rem;
}

.footer-menu li {
	line-height: 1;
	margin-bottom: 1.6rem;
}

.footer-menu a {
	font-size: 1.9rem;
	line-height: 2.5rem;
	font-weight: 400;
	color: #fff;
	text-decoration: underline !important;
	word-break: normal;
	word-wrap: normal;
}

.footer-menu a:hover,
.footer-menu a:focus {
	text-decoration: none;
}

/* FOOTER SOCIAL */

.footer-social-networks-inner {
	display: flex;
}

.footer-social-networks-inner a:not(:last-child){
	margin-right: 20px;
}

/* Footer Bottom ----------------------------- */

.footer-copyright {
	font-weight: 400;
	margin: 0;
	font-size: 1.2rem;
	text-align: right;
}

/* -------------------------------------------------------------------------- */

/*	15. Slick Slider Override
/* -------------------------------------------------------------------------- */
.slick-dots li {
	margin: 0;
}

.slick-dots .slick-active button {
	border: 1px solid #3A96DB;
	border-radius: 50%;
	width: 16px;
	height: 16px;
	position: relative;
	bottom: 1px;
	padding: 0;
}

.slick-dots li button::before {
	color: #3A96DB;
	opacity: 1;
	font-size: 10px;
	width: 16px;
	height: 16px;
}

.slick-dots li.slick-active button::before {
	opacity: 1;
	color: #3A96DB;
	/*width: 12px;*/
	/*height: 12px;*/
	top: -21%;
	left: -8%;
	position: absolute;
	-webkit-transform: translate(0px, 1px);
	-moz-transform: translateY(0);

}

/* -------------------------------------------------------------------------- */

/*	16. Plugins Styling
/* -------------------------------------------------------------------------- */

/* Smash Balloon Twitter Feed ----------------------------- */

.footer-content #ctf .ctf-item {
	padding: 0;
}

.footer-content #ctf, #ctf .ctf-item {
	overflow: initial;
}

.footer-content .ctf-header {
	display: none;
}

.footer-content .ctf-author-box {
	display: flex;
	flex-direction: row-reverse;
	justify-content: left;
	position: relative;
	border-bottom: 1px solid #3A96DB;
	padding-bottom: 44px;
	margin-bottom: 22px;
}

.footer-content #ctf .ctf-author-box-link {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.footer-content #ctf .ctf-screename-sep {
	display: none;
}

.footer-content #ctf .ctf-tweet-meta {
	align-self: end;
	margin-top: -50px;
}

.footer-content #ctf.ctf-styles .ctf-tweet-meta {
	font-size: 14px;
}

.footer-content .ctf-corner-logo {
	position: absolute;
	top: 10px;
	left: -86px;
}

.footer-content #ctf.ctf-narrow .ctf-corner-logo {
	font-size: 33px;
	padding: 10px;
	background: #fff;
	border-radius: 50%;
	width: 67px;
	height: 57px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer-content #ctf.ctf-super-narrow .ctf-author-screenname, #ctf.ctf-super-narrow .ctf-screename-sep {
	display: block !important;
}

.footer-content .ctf-author-name {
	font-size: 2.5rem;
	font-weight: 700;
}

.footer-content #ctf.ctf-styles .ctf-author-screenname {
	font-size: 16px;
}

.footer-content #ctf p.ctf-tweet-text {
	font-size: 1.4rem;
	line-height: 2.1rem;
}

.footer-content #ctf .ctf-context {
	position: absolute;
    top: -29px;
    left: 68px;
    font-size: 13px;
}

.footer-content #ctf .ctf-context svg,
.footer-content #ctf p.ctf-tweet-text a {
	color: #F5BDBF;
}

/* WP Forms  ----------------------------- */
.wpforms-form label,
div.wpforms-container-full .wpforms-form select{
	color:#4D6182 !important;
}

div.wpforms-container-full .wpforms-form input,
div.wpforms-container-full .wpforms-form textarea,
div.wpforms-container-full .wpforms-form select,
.job-position-form div.wpforms-container div.wpforms-uploader {
	border-color: #3A96DB !important;
}


div.wpforms-container-full .wpforms-form textarea {
	resize: none;
}

div.wpforms-container-full .wpforms-form  .wpforms-field-radio label {
	margin-bottom: 10px;
}

div.wpforms-container-full .wpforms-form button[type="submit"] {
	background: #FB5058 !important;
	color: #fff !important;
	border-color: #FB5058 !important;
}

div.wpforms-container-full .wpforms-form button[type="submit"]:hover {
	background: #F7747A !important;
}

div.wpforms-container-full .wpforms-form .wpforms-required-label {
	color: #e20101 !important;
	font-weight: 600 !important;
}

.job-position-form div.wpforms-container-full .wpforms-form .wpforms-field:not(:last-child) {
	margin-bottom: 25px;
}

/* -------------------------------------------------------------------------- */

/*	17. Media Queries
/* -------------------------------------------------------------------------- */


/* Global  ----------------------------- */
@media (max-width: 768px) {
	html {
		font-size: 50%;
	}

	.BambooHR-ATS-Jobs-List {
		padding-bottom: 31px !important;
	}
}

/* Helper Classes  ----------------------------- */
@media (max-width: 1100px) {
	.section-padding {
		padding: 40px 0;
	}
}

/* Header  ----------------------------- */

@media (max-width: 1750px) {
	.header-titles-wrapper {
		justify-content: flex-start;
		padding: 0;
	}

	.site-logo img {
		max-height: 3rem;
	}
}
@media (min-width: 1025px) and (max-width: 1400px) {
	.header-titles-wrapper {
		max-width: 170px;
	}

	.primary-menu a {
		font-size: 1.5rem;
	}

	.primary-menu > li:not(:last-child) {
		margin: 0 8px 0 0;
	}
}

@media (min-width: 1000px) {
	#site-header {
		z-index: 2;
	}

	.header-inner {
		align-items: center;
		display: flex;
		justify-content: space-between;
		padding-top: 2.8rem;
		padding-bottom: 2.8rem;
	}

	.header-navigation-wrapper {
		align-items: center;
		display: flex;
		padding-top: 5px;
	}
}
@media (min-width: 1025px) {
	.mobile-nav-toggle {
		display: none !important;
	}

	.primary-menu-wrapper {
		display: block;
		width: 100%;
	}
}

@media (max-width: 999px) {
	#site-header .header-inner {
		width: unset;
		/*margin-left: 15px;*/
	}

	.header-regular #site-content {
		padding-top: 94px;
	}

	.header-regular li:hover {
		border-bottom: none;
	}
}

@media (max-width: 768px) {
	.header-regular #site-content {
		padding-top: 74px;
	}
}

/* Template: Container Width  ----------------------------- */

@media (max-width: 1750px) {
	.careers .container-medium {
		width: calc(100% - 18rem);
	}
}

@media (max-width: 1615px) {
	.container,
	.container-medium {
		padding: 0 15px;
	}
}

@media (max-width: 1000px) {
	.container-medium {
		width: 100%;
	}
}

.carousel-left, .carousel-right {
	width: 50%;
	text-align: left;
}

/* Hero Section  ----------------------------- */
@media (max-width: 768px) {
	.hero-section {
		height: 90vh;
	}

	.hero-section .scroll-down {
		bottom: 100px;
	}
}

/* Carousel ----------------------------- */
@media (max-width: 1750px) {
	.carousel .container {
		padding: 0 110px;
	}
}

@media (max-width: 1150px) {
	.carousel .container {
		padding: 0 15px;
	}

	.carousel-content {
		flex-direction: column;
		align-items: center;
		padding: 30px 0 25px 0;
	}

	.slick-dots {
		bottom: -35px;
	}

	carousel h3 {
		margin: 90px 0 30px 0;
	}
}

@media (max-width: 700px) {
	.carousel-left, .carousel-right {
		width: 100%;
		text-align: left;
	}

	.carousel-content .carousel-counter {
		display: inline-block;
		width: 100%;
	}

	.carousel-bg-element {
		display: none;
	}
}


/* Two Columns ----------------------------- */
@media (max-width: 1790px) {
	.two-columns-right {
		padding: 78px 0 60px 30px;
	}
}

@media (min-width: 1000px) and (max-width: 1200px) {
	.two-columns-no-btn .two-columns-left img{
		padding-right: 30px;
	}
}

@media (max-width: 1100px) {
	.carousel {
		padding: 60px 0;
	}

	.two-columns {
		flex-direction: column;
	}

	.two-columns-left, .two-columns-no-btn .two-columns-left {
		width: 100%;
	}

	.two-columns-right {
		padding: 50px 15px;
		width: 100%;
		display: flex;
		justify-content: center;
	}

	.two-columns-no-btn {
		width: 100%;
	}

	.two-columns-no-btn .two-columns-left {
		padding: 0 15px;
		text-align: center;
	}

	.two-columns-no-btn .two-columns-left img {
		object-fit: contain;
	}

	.two-columns-content {
		text-align: center;
	}

	.two-columns-no-btn .two-columns-right {
		padding-left: 15px;
	}

	.full-width-section {
		padding: 60px 0;
	}
}

/* Recent News  ----------------------------- */

@media (min-width: 1100px) and  (max-width: 1240px) {
	.recent-news-container .attachment-post-thumbnail {
		max-height: 224px;
	}
}

@media (max-width: 1100px) {

	.recent-news-container {
		flex-direction: column;
		align-items: center;
		position: relative;
	}

	.recent-news-container li:not(:last-child) {
		margin-right: 0;
		margin-bottom: 30px;
	}

	.recent-news-container li {
		width: 70%;
	}

	.recent-news h2 {
		margin-top: 0;
	}

	.recent-news-container .attachment-post-thumbnail {
		max-height: 275px;
	}

}


@media (max-width: 768px) {
	.recent-news-bg-item {
		display: none;
	}

	.recent-news-container li {
		width: 90%;
	}
}

/* Leadership  ----------------------------- */

@media (max-width: 1100px) {
	.leadership-list-item-wrap:not(:last-child) {
		margin-right: 35px;
	}
}

@media (max-width: 1000px) {

	.leadership-list {
		flex-direction: column;
		align-items: center;
	}

	.leadership-list-item-wrap:not(:last-child) {
		margin-right: 0;
	}

	.leadership-list-item:not(:last-child) {
		margin-bottom: 20px;
	}

	.leadership-list.no-subtitle-margin {
		margin-top: 0;
	}

	.leadership-list-popup {
		display: block;
		padding: 60px 20px 20px 20px;
	}

	.list-popup-left {
		max-width: 244px;
		width: 100%;
	}

	.list-popup-right {
		width: 100%;
		padding-left: 0;
		margin-top: 30px;
	}

	.list-popup-right h3 {
		font-size: 1.8rem;
		margin-bottom: 0;
	}
}

/* Investors  ----------------------------- */
@media (max-width: 690px) {
	.investors-carousel p {
		margin-bottom: 20px;
	}
}

/* Modal  ----------------------------- */

@media (max-width: 1000px) {
	.modal {
		overflow: scroll;
	}

	.modal .modal-wrapper {
		top: 5%;
		width: 95%;
		transform: translateX(-50%);
		left: 50%;
	}

	.modal .modal-overlay {
		touch-action: none;
	}
}

/* Our Approach  ----------------------------- */

@media (max-width: 1000px) {

	.three-columns-item-wrap {
		flex-direction: column;
		align-items: center;
	}

	.three-columns-item .three-columns-item-svg.svg-mobile {
		top: unset;
		bottom: -58px;
		right: 41%;
		transform:  rotate(0deg);
		display: block;
	}

	.three-columns-item .three-columns-item-svg.svg-desktop {
		display: none;
	}

	.three-columns-item-img img {
		margin-bottom: 20px;
	}

	.three-columns-item .three-columns-item-svg {
		display: block;
	}

	.our-approach.three-columns-and-text .three-columns-item:not(:last-child) {
		margin-bottom: 40px;
	}

	.three-columns-and-text  .three-columns-item:not(:last-child) {
		margin-bottom: 80px;
	}

}

/* News Posts Filtering  ----------------------------- */
@media (max-width: 1200px) {

	.news-filtering .filter-year-wrap {
		margin-right: 40px;
	}

	.news-filtering-sidebar {
		margin: 50px auto 0 auto;
		width: 80%;
		min-width: unset;
	}

	.news-filtering-main .post-content-bottom {
		flex-direction: column;
	}

	.news-filtering-main .post-content-top {
		display: block;
		margin-bottom: 13px;
	}

	.category-filters-container {
		margin-right: 30px;
	}

	.news-filtering  .filter-year-wrap,
	.news-filtering .filter-category-wrap {
		align-items: unset;
		flex-direction: column;
		margin-bottom: 4px;
	}
}

@media (max-width: 725px) {

	.news-filtering-sidebar #ctf .ctf-header {
		display: flex;
		justify-content: center;
	}

	.category-content-inner {
		flex-direction: column;
	}

	.news-filtering-main .post-content {
		margin-top: 20px;
	}

	.news-filtering-main .featured-img-content {
		max-width: unset;
	}

	.news-filtering-main .featured-img-content img {
		margin-bottom: 20px;
		width: 100%;
		max-height: 380px;
		object-fit: cover;
	}

	.news-filtering-sidebar {
		width: 100%;
	}

	.news-filtering-main .post-content-top h3 {
		margin: 0;
	}

	.news-filtering-main .post-date {
		padding-top: 6px;
	}

	.news-filtering-sidebar #ctf .ctf-item {
		flex-direction: column;
		align-items: center;
	}

	.news-filtering-sidebar .ctf-author-box-link {
		display: block !important;
	}

	.news-filtering-sidebar .ctf .ctf-author-box {
		text-align: center;
	}

	.news-filtering-sidebar #ctf .ctf-author-box{
		max-width: 100%;
	}

	.news-filtering-sidebar #ctf .ctf-tweet-content {
		max-width: 100%;
	}

	.news-filtering-sidebar #ctf p.ctf-tweet-text {
		text-align: center;
	}

}

	@media (max-width: 660px) {
		.news-filtering .filter-year-wrap {
			margin-right: 10%;
		}

		.news-filtering  .filter-year-wrap label,
		.news-filtering .filter-category-wrap label {
			margin-bottom: 3px;
		}

		.news-filtering #categoryFilter {
			max-width: 130px;
		}
	}

	@media (max-width: 540px) {
		.news-filtering .post-content-right {
			flex-direction: column;
		}

		.news-filtering-main .post-content-bottom .post-read-more {
			margin: 0;
			text-decoration: none;
			background: none;
			width: unset;
			height: unset;
		}

		.news-filtering-main .post-content-bottom .post-read-more:after {
			content: "Read More";
			-webkit-appearance: none;
			-moz-appearance: none;
			background: #FB5058;
			border: none;
			border-radius: 31px;
			color: #fff;
			cursor: pointer;
			display: inline-block;
			font-size: 1.5rem;
			font-weight: 600;
			font-family: 'Open Sans', sans-serif;
			letter-spacing: 0;
			line-height: 1;
			margin: 0;
			opacity: 1;
			padding: 10px 30px;
			text-align: center;
			text-decoration: none;
			text-transform: uppercase;
			transition: background 0.15s linear;
		}

		.news-filtering-main .post-content-bottom .post-read-more img {
			display: none;
		}
	}

/* Careers & Job Position ----------------------------- */

@media (max-width: 1750px) {
	.careers .container-medium,
	.job-position .container-medium {
		width: calc(100% - 18rem);
	}
}

@media (max-width: 1200px) {
	.job-terms-list {
		width: 70%;
	}
}

@media (max-width: 1000px) {
	.careers {
		padding: 40px 0;
	}

	.careers .container-medium,
	.job-position .container-medium {
		width: 100%;
	}
}

@media (max-width: 900px) {
	.job-terms-list {
		width: 100%;
	}
}

@media (max-width: 550px) {
	.job-terms-list {
		width: 100%;
	}

	.job-terms-item {
		flex-basis: 100%;
	}

	.job-terms-item:not(:last-child) {
		margin-bottom: 20px;
	}

	.job-terms-item h3 {
		margin-bottom: 8px;
	}
}

/* Plugins Styling ----------------------------- */

@media (max-width: 1200px) {
	.job-position-form {
		max-width: 70%;
	}
}

@media (max-width: 900px) {
	.job-position-form {
		max-width: 100%;
	}
}

@media (max-width: 450px) {

	.job-position-form div.wpforms-container-full .wpforms-form .wpforms-one-half {
		width: 100%;
		margin: 0;
	}

	.job-position-form div.wpforms-container-full .wpforms-form .wpforms-one-half:first-child {
		margin-bottom: 10px;
	}

	.job-position-form div.wpforms-container-full .wpforms-form .wpforms-field:not(:last-child) {
		margin-bottom: 10px;
	}

}

/* Footer  ----------------------------- */
@media (max-width: 1400px) {
	.footer-column {
		width: 12%;
	}

}

@media (max-width: 1200px) {

	.footer-content {
		flex-wrap: wrap;
		justify-content: center;
	}

	.footer-column {
		width: 50%;
	}

}

@media (min-width: 600px) {

	.footer-column-two, .footer-column-four {
		padding-left: 0;
	}
}

@media (max-width: 370px) {

	#ctf .ctf-author-box-link {
		display: block;
	}

	#ctf .ctf-tweet-meta {
		margin-bottom: 0;
	}

	#ctf.ctf-styles .ctf-tweet-meta {
		align-self: unset;
	}
}

/* Arrepath Pipeline  ----------------------------- */
@media (max-width: 670px) {
	.pipeline-item {
		flex-direction: column;
		width: 100%;
		max-width: unset;
		align-items: center;
		text-align: center;
	}

	.pipeline-item:nth-child(2n) {
		text-align: center;
		flex-direction: column;
	}

	.pipeline-section h2 {
		margin: 0 0 15px 0;
	}
}

/***** Footer Responsive **********/

.footer-logo-mobile{
	display: none;
}
.footer-content {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 50px;
	justify-content: center;
	padding: 0 70px;
}
.footer-column {
	flex: 0 1 calc(20% - 1em);
	justify-content: center;
	display: flex;
}
.footer-column-one .footer-contact h3 {
	margin-top: 0 !important;
}
.footer-column-one{
	display: block;
}
.footer-content{
	padding: 0;
}
#site-footer .container{
	padding: 0;
	margin: 0 auto;
	width: calc(100% - 18rem);
	max-width: 1250px !important;
}
.footer-column.footer-column-four{
	margin-right: 80px;
}
.footer-column.footer-column-five .ctf-author-name {
	margin-top: -8px !important;
}
.left-side-footer-column{
	padding: 0 50px;
}
.footer-column {
	flex: 0 1 calc(24% - 1em);
}
.footer-column-five .ctf-corner-logo{
	padding: 10px;
	background: #fff;
	border-radius: 50%;
}
.footer-content .ctf-author-screenname {
	margin-right: 60px;
}
.footer-column.footer-column-five .ctf-tweet-date {
	position: relative !important;
	right: 0 !important;
}
.footer-content #ctf .ctf-tweet-meta {
	align-self: normal;
	margin-top: 0;
}
.footer-content .ctf-author-box {
	padding-bottom: 15px;
}
.ctf-screename-sep {
  width: 0 !important;
  height: 0 !important;
  padding-left: 4px !important;
}
.footer-copyright {
	padding-right: 5.4%;
}
.footer-content #ctf.ctf-styles .ctf-tweet-meta {
	font-size: 14px;
	padding-top: 5px;
}
@media(max-width: 1240px){
	.footer-column {
		flex: 0 1 calc(37% - 0em) !important;
	}
	.left-side-footer-column{
		margin-right: 50px;
		padding: 0;
	}
	.footer-column-one {
		margin-right: 80px;
		margin-bottom: 50px;
	}
	.footer-column{
		justify-content: left;
	}
	.footer-column.footer-column-two, .footer-column-three, .footer-column-four, .footer-column-five {
 		padding-left: 0 !important;
	}
	.footer-column.footer-column-four {
  margin-right: 80px !important;
}
	.footer-column.footer-column-two{
		display: flex;
	}
}
@media(max-width: 1100px){
	.footer-column{
		margin-bottom: 0 !important;
	}
	.footer-column.footer-column-one {
		margin-bottom: 50px !important;
	}
	#site-footer .container{
		max-width: 900px;
	}
	.footer-logo{
		display: none;
	}
	.footer-logo-mobile{
		display: flex;
		justify-content: center;
		margin-bottom: 50px;
	}
	.footer-column-one {
		display: none !important;
	}
	.footer-menus-wrp .first-footer-menu {
		margin-right: 4rem;
		margin-left: 4rem;
	}
}
@media(min-width: 768px){
	.footer-social-networks-inner {
		padding-left: 21px;
	}
}
@media(max-width: 768px){
	.footer-content {
  		display: block;
	}
	.footer-column{
		width: 100%;
		text-align: center;
		justify-content: center;
		display: flex !important;

	}
	.footer-column.footer-column-two {
  margin-right: 0;
  display: block !important;
  margin: 0;
    margin-bottom: 0px;
  padding: 0;
}
	.left-side-footer-column {
  margin-right: 0;
}
	.footer-column.footer-column-four {
  margin-right: 0 !important;
}
	.footer-social-networks-inner {
  justify-content: center;
}
	.footer-column.footer-column-four,
	.footer-column.footer-column-two{
  margin-right: 0 !important;
  margin-bottom: 45px !important;
}
	.footer-content #ctf .ctf-author-box-link {
  text-align: center;
  margin: 0 auto;
}
	.footer-column-five #ctf{
		width: 100%;
	}
	.footer-column.footer-column-one {
  margin-bottom: 35px !important;
}
	.footer-column.footer-column-five {
  		max-width: 1000px;
  		width: 100%;
}
	.footer-column-five .ctf-author-name,
	.footer-column-five .ctf-author-screenname{
		margin-right: 50px !important;
	}
	.footer-column-five #ctf.ctf-narrow .ctf-corner-logo {
        width: 60px !important;
        height: 53px !important;
	}
	.footer-column-five .ctf-author-box{
		width: 100%;
	}

	.footer-content #ctf .ctf-context {
		left: 8px;
	}

}


/*MODULE 9*/
.title-subtitle-section, .title-subtitle-section h2 {
	color: #4D6182;
}
.title-subtitle-section h2 {
	margin-top: 0;
	line-height: 43px;
	padding-bottom: 15px;
}
.title-subtitle-section h3 {
	margin-top: 0;
}
.title-subtitle-section{
	max-width: 980px;
	margin: 0 auto;
	padding: 69px 0 50px 0;
}
.title-subtitle-section p{
	font-size: 24px;
	line-height: 35px;
	font-weight: 600;
}
/*MODULE 10*/
.section-image-title-subtitle{
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	width: 100%;
}
.section-image-title-subtitle .flex-content-title-subtitle,
.section-right-side-image .flex-content-title-subtitle{
	width: 87%;
	margin: 0 auto;
	display: flex;
	align-items: center;
}
.section-image-title-subtitle .flex-content-title-subtitle{
	padding: 80px 0;
}
.flex-content-title-subtitle .left-side {
	padding-right: 20px;
}
.flex-content-title-subtitle .right-side {
	padding-left: 15px;
	text-align: left;
}
.flex-content-title-subtitle .right-side h2{
	margin-top: 0;
}
.flex-content-title-subtitle .left-side,
.flex-content-title-subtitle .right-side{
	flex-basis: 50%;
}
@media(max-width: 1100px){
	.section-image-title-subtitle .flex-content-title-subtitle,
    .section-right-side-image .flex-content-title-subtitle {
		width: 87%;
		display: block;
	}
	.flex-content-title-subtitle .right-side img,
	.flex-content-title-subtitle .left-side img{
		margin: 0 auto;
		padding: 40px;
	}
	.section-image-title-subtitle .flex-content-title-subtitle,
	.section-right-side-image{
		padding: 40px 0 !important;
	}
	.full-width-section.section-image-title-subtitle{
		padding: 0;
	}
	.flex-content-title-subtitle .left-side, .flex-content-title-subtitle .right-side {
		padding: 0;
	}
	.quotes-text-background {
		padding: 40px 0 !important;
		/*padding-bottom: 60px !important;*/
	}
	.title-subtitle-section p {
		padding: 0 30px;
	}
	.full-width-section.title-subtitle-section{
		padding: 30px 0;
	}
}
@media(max-width: 768px){
	.section-image-title-subtitle .flex-content-title-subtitle,
	.section-right-side-image .flex-content-title-subtitle {
		width: 92%;
	}
	.title-subtitle-section p {
		font-size: 20px;
	}
	.full-width-section.title-subtitle-section{
		padding: 40px;
	}
	.title-subtitle-section h2 {
		padding: 0 5px;
	}
	.title-subtitle-section p {
		padding: 0 15px;
	}
}
/*MODULE 11*/
.quotes-text-background{
	padding: 80px 0;
	width: 100%;
}
.quotes-text-background .quotes-text{
	width: 87%;
	margin: 0 auto;
}

.page-platform  .quotes-text-background, .page-strategy .quotes-text-background {
	padding: 80px 0;
	background-repeat: no-repeat;
	background-size: cover;
}

.page-platform  .quotes-text-background .quotes-text {
	max-width: 1065px;
	margin: 0 auto;
}

.page-platform  .quotes-text-background .quotes-text h2, .page-strategy  .quotes-text-background .quotes-text h2 {
	margin-top: 0;
}
/*MODULE 12*/
.section-right-side-image .left-side,
.section-right-side-image .left-side h2{
	color: #4D6182;
}
.section-right-side-image{
	padding: 60px 0;
	text-align: left;
}
.section-right-side-image .flex-content-title-subtitle .right-side {
	padding-left: 35px;
}

/*MODULE 21*/
.title-subtitle-section.title-subtitle-img-section {
	max-width: 1200px;
	padding: 69px 0 70px 0;
}


/* FOR TESTING DELETE CODE BELLOW */
.animation-container {
	background: #7e8993;
	height: 1200px;
	padding-top: 250px;
	display: flex;
	justify-content: center;
	overflow: hidden;
	position: relative;
}

.animation-container-circle {
	width: 244px;
	height: 244px;
	background-color: #fff;
	border-radius: 50%;
	border: 1px solid #0a4b78;
	margin-block: 500px;
	position: relative;
	overflow: hidden;
}

.animation-container-circle .el-1 {
	position: absolute;
	bottom: -8px;
	left: -3px;
}

.animation-container-circle .el-2 {
	position: absolute;
	top: 22px;
	right: 62px;
}
/*CONTACT-FORM*/
.contactFormWrapper{
	display: flex;
}
.contactFormWrapper{
	color: #4D6182;
	text-align: left;
	font-size: 18px;
	font-weight: bold;
	font-family: Montserrat;
}
.contactFormWrapper input,
.contactFormWrapper select,
.contactFormWrapper textarea{
	width: 100%;
	padding: 8px 15px;
	border: 1px solid #3A96DB;
	background: transparent;
	margin-bottom: 50px;
	margin-top: 10px;
}
.contact-us-module .container{
	max-width: 1250px;
	width: calc(100% - 16rem);
}
.wpcf7-not-valid-tip{
	text-align: left;
}
.contactFormWrapper input:focus{
	border: 2px solid #3A96DB;
	box-shadow: none;
}
.contactFormWrapper input::placeholder{
	color: #BCDDF6;
	font-weight: 400;
	font-style: italic;
}
.contactFormWrapper select{
	padding: 9px 12px;
	color: #3A96DB;
	font-size: 14px;
	font-weight: 300;
}
.contactFormWrapper textarea{
	resize: none;
    height: 100%;
}
.contactFormWrapper .right-side-contact div{
	width: 400px;
	height: 82.8%;
	margin-left: 50px;
}
.contact-us-module .contact-us-logo,
.contact-us-module .contact-us-logo a{
	color: #4D6182 !important;
	text-align: left;
    font-size: 18px;
	text-decoration: none;
}

.contact-us-logo .footer-address,
.contact-us-logo .footer-phone,
.contact-us-logo .footer-email{
	background-repeat: no-repeat;
	background-position-y: 40%;
	padding-left: 25px;
}
.contact-us-logo .footer-address{
	background-image: url("");
}
.contact-us-logo .footer-phone{
	background-image: url("");
}
.contact-us-logo .footer-email{
	background-image: url("");
}
.flex-contact-us-wrap{
	display: flex;
	margin-bottom: 50px;
}
.contact-us-logo{
	margin-left: 100px;
	max-width: 240px;
}
.contact-us-logo img{
	margin-bottom: 20px;
}
.contact-us-shortcode p{
	text-align: left;
	margin-top: 40px;
}
.contact-us-title h2{
	color: #4D6182;
	text-align: left;
	padding-bottom: 40px;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
	border-color: #3A96DB;
	color: #4D6182;
}
.wpcf7-response-output{
	border-color: #3A96DB !important;
	color: #4D6182;
}
.left-side-contact .wpcf7-not-valid-tip,
.right-side-contact .wpcf7-not-valid-tip{
	text-align: left;
	margin-top: -40px;
	margin-bottom: 30px;
}
.required-contact-us-span{
	color: #e20101;
}
@media(max-width: 1400px){
	.flex-contact-us-wrap{
		display: block;
	}
	.contactFormWrapper {
		justify-content: center;
	}
	.mainFormWrapper,
	.contact-us-logo{
		padding-left: 0;
		margin-left: 0;
	}
	.left-side-contact,
	.right-side-contact{
		flex-basis: 50%;
	}
	.contact-us-logo{
		padding-top: 20px;
	}
	.contact-us-module .contactFormWrapper{
		display: flex;
	}
	.contact-us-module .contactFormWrapper .left-side-contact,
	.contact-us-module .contactFormWrapper .right-side-contact{
		flex-basis: 50%;
	}
	.contact-us-module .contactFormWrapper .right-side-contact div{
		width: 93%;
	}
}
@media(max-width: 980px){
	.contact-us-module .contactFormWrapper{
		display: block;
	}
	.contact-us-module .contactFormWrapper .right-side-contact div{
		width: 100%;
		margin-left: 0;
	}
}
@media(max-width: 768px){
	.contact-us-module .container {
		width: auto;
	}
	.mainFormWrapper, .contact-us-logo {
		padding-left: 0;
	}
	.footer-content #ctf.ctf-narrow .ctf-corner-logo {
        width: 55px !important;
        height: 45px !important;
		margin-right: 10px !important
    }
}
.footer-column.footer-column-five .ctf-tweet-date {
  position: absolute;
  right: -35px;
}

/*TESTING FOOTER*/
.footer-column.footer-column-four {
	margin-right: 0;
}
.footer-column.footer-column-two, .footer-column-three, .footer-column-four, .footer-column-five {
	padding-left: 50px;
}
.footer-column {
	flex: 0 1 calc(26% - 1em);
	display: block;
}
.left-side-footer-column {
	padding: 0;
}
.footer-content .ctf-corner-logo {
	position: relative;
	top: 0;
	left: 0;
}
.footer-column-five #ctf.ctf-narrow .ctf-corner-logo {
	font-size: 33px;
	padding: 10px;
	background: #fff;
	border-radius: 50%;
	min-width: 60px !important;
	min-height: 60px !important;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
}
#site-footer .ctf-tweet-meta{
	margin-right: 55px;
}
/*FOOTER NEW CODE 3.3.22*/
.footer-column{
	flex: 0 1 calc(24% - 1em);
	display: block;
}
.footer-column.footer-column-two,
.footer-column-three {
	margin-left: 30px;
}
.footer-column-five .ctf-author-box{
	width: 320px;
}
.footer-column.footer-column-five {
	max-width: 350px;
}
.footer-column-five .ctf-author-name{
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box !important;
	-webkit-line-clamp: 1; /* number of lines to show */
	-webkit-box-orient: vertical;
}
@media(max-width: 1366px){
	.footer-column{
		flex: 0 1 calc(22% - 1em);
	}
}
@media(max-width: 1240px){
	.footer-column.footer-column-two,
	.footer-column-three{
		margin-left: 0;
	}
	.left-side-footer-column, .right-side {
		width: 160px;
	}
	.footer-column {
		width: 320px;
		max-width: 350px;
	}
	.footer-menus-wrp .first-footer-menu {
		margin-right: 4rem;
		margin-left: 0;
	}
	.footer-column-three .footer-menus-wrp {
		justify-content: center;
	}
}
@media(max-width: 860px){
	.footer-column {
		flex: 0 1 calc(32% - 0em) !important;
		width: 320px;
	}
}
@media(max-width: 768px){
	.left-side-footer-column, .right-side {
		width: auto;
	}
	.footer-column-five .ctf-author-box {
		width: 100%;
	}
	.footer-column-five{
		margin: 0 auto;
	}
	.footer-column {
		width: auto;
		max-width: 100%;
	}
	.footer-column-one {
  		margin-right: 0;
	}
	.footer-column-five .ctf-author-name, .footer-column-five .ctf-author-screenname {
  		margin-right: 57px !important;
	}
	#site-footer .ctf-tweet-meta {
  		margin-right: 62px;
	}
	.footer-column.footer-column-five {
  		margin-top: 70px;
	}
}
@media(max-width: 455px) {
	.footer-column-five .ctf-author-box {
		max-width: 295px;
		width: 100%;
	}
	.footer-column-five #ctf.ctf-narrow .ctf-corner-logo {
		min-width: 45px !important;
		min-height: 44px !important;
		width: 45px !important;
		height: 44px !important;
	}
	.footer-column-five .ctf-author-name, .footer-column-five .ctf-author-screenname {
		margin-right: 35px !important;
	}
	.footer-column.footer-column-five .ctf-author-name,
	.footer-column.footer-column-five .ctf-author-screenname,
	.footer-column.footer-column-five .ctf-tweet-meta{
		margin-right: 0 !important;
		width: 100% !important;
	}
	.footer-column.footer-column-five .ctf-corner-logo{
	display: none !important;
	}
	.footer-column-five .ctf-author-name{
		font-size: 18px;
	}
	.footer-content #ctf .ctf-context {
  		left: 4px;
	}
	.footer-column-three {
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.footer-column-three .footer-menus-wrp {
		flex-direction: column;
		align-items: flex-start;
	}
	.footer-menus-wrp .first-footer-menu {
		margin-right: 0;
	}
}






/* !!! REDESIGN !!! */

/* Page Hero */
.page-hero-section {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10rem 0;
	min-height: 70vh;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: #2C456D;
}
.page-hero-section::before {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	background-color: rgb(44 69 109 / 75%);
}
.page-hero-section .container-medium {
	position: relative;
}
.page-hero-section .page-hero-content {
	max-width: 130rem;
	color: #ffffff;
}
.page-hero-section .page-hero-content.shorter-content-width {
	max-width: 75rem;
}
.page-hero-section h1 {
	margin-top: 0;
}
.page-hero-section h1 .heading-smaller-text {
	display: block;
	font-size: 3rem;
}
.page-hero-section .page-hero-content > :last-child {
	margin-bottom: 0;
}
@media (max-width: 768px) {
	.page-hero-section {
		padding: 7.5rem 0;
	}
}
/* END Page Hero */

/* Full Width Content Section */
.full-width-content-section {
	margin: 13rem 0 7.5rem;
}
.full-width-content-section.has-bgr {
	margin: 0;
	padding: 12rem 0 13rem;
}
.full-width-content-section.dark-blue-bgr {
	background-color: #4D6182;
	color: #ffffff;
}
.full-width-content-section .normal-width-container {
	margin: 0 auto;
	padding: 0 1.5rem;
	max-width: 955px;
}
.full-width-content-section .smaller-width-container {
	margin: 0 auto;
	padding: 0 1.5rem;
	max-width: 805px;
}
.full-width-content-section .full-width-content > :first-child {
	margin-top: 0;
}
.full-width-content-section h3 {
	margin-bottom: 5rem;
	font-size: 3.1rem;
	line-height: 4rem;
}
.full-width-content-section .full-width-content p {
	font-size: 2.4rem;
	line-height: 3rem;
}
.full-width-content-section .full-width-content > :last-child {
	margin-bottom: 0;
}
@media (max-width: 1025px) {
	.full-width-content-section h3 br {
		display: none;
	}
}
@media (max-width: 768px) {
	.full-width-content-section {
		margin: 6rem 0;
	}
	.full-width-content-section.has-bgr {
		margin: 0;
		padding: 6rem 0;
	}
	.full-width-content-section h3 {
		margin-bottom: 3rem;
		font-size: 2.8rem;
		line-height: 3.5rem;
	}
	.full-width-content-section .full-width-content p {
		font-size: 2rem;
		line-height: 2.5rem;
	}
}
/* END Full Width Content Section */

/* Banner Section */
.banner-section {
	position: relative;
	margin: 15rem 0 9rem;
	padding-top: 30.83%;
	width: 100%;
	height: 0;
}
.banner-section .banner-background-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.banner-section .banner-wrp {
	position: absolute;
	top: -5.5rem;
	left: 50%;
	transform: translateX(-50%);
	padding: 4.5rem 7.5rem;
	width: 100.4rem;
	background-color: #4D6182;
	color: #ffffff;
}
.banner-section .banner-wrp > :first-child {
	margin-top: 0;
}
.banner-section .banner-wrp > :last-child {
	margin-bottom: 0;
}
.banner-section .banner-wrp h2 {
	color: #ffffff;
}
.banner-section .banner-wrp p {
	font-size: 2.2rem;
	line-height: 2.9rem;
}
.banner-section .image-description {
	position: absolute;
	bottom: 2.5rem;
	right: 3rem;
	margin: 0;
	text-align: right;
	font-size: 1.3rem;
	line-height: 1.7rem;
	font-style: italic;
	color: #C3C3C3;
}
@media (max-width: 1200px) {
	.banner-section {
		padding-top: 56.25%;
	}
	.banner-section .banner-wrp {
		padding: 3.5rem 4.5rem;
		width: 100%;
		max-width: 85%;
	}
}
@media (max-width: 768px) {
	.banner-section {
		margin: 6rem 0;
		padding: 6rem 1.5rem 2rem;
		height: auto;
	}
	.banner-section .banner-wrp {
		position: relative;
		top: unset;
		left: unset;
		transform: none;
		margin: 0 auto;
		padding: 0;
		max-width: none;
		background: transparent;
		text-shadow: #000000 1px 0 10px;
	}
	.banner-section .banner-wrp p {
		font-size: 2rem;
		line-height: 2.5rem;
	}
	.banner-section .image-description {
		position: relative;
		right: unset;
		bottom: unset;
		margin-top: 5rem;
	}
}
/* END Banner Section */

/* Half-Half Section */
.half-half-section {
	margin: 14rem 0 10rem;
}
.half-half-section .sides-wrp {
	display: flex;
	justify-content: space-between;
}
.half-half-section .side-wrp {
	padding-top: 2rem;
	width: 50%;
}
.half-half-section .side-wrp.full-width {
	width: 100%;
}
.half-half-section .content-wrp > :first-child {
	margin-top: 0;
}
.half-half-section .left-side-wrp {
	padding-right: 5rem;
}
.half-half-section .left-side-wrp.has-deco-line {
	border-right: .1rem solid #4D6182;
}
.half-half-section .right-side-wrp {
	padding-left: 8rem;
}
.half-half-section .image-wrp {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.half-half-section .half-half-image {
	max-width: 85%;
	height: auto;
}
.half-half-section .content-wrp h2 {
	margin-bottom: 4rem;
	color: #FB5058;
}
.half-half-section .content-wrp p {
	font-size: 2.2rem;
	line-height: 2.9rem;
	color: #4D6182;
}
@media (max-width: 1200px) {
	.half-half-section {
		margin-top: 10rem;
	}
	.half-half-section .left-side-wrp {
		padding-right: 2rem;
	}
	.half-half-section .right-side-wrp {
		padding-left: 2rem;
	}
	.half-half-section .content-wrp h2 br,
	.half-half-section .content-wrp p br {
		display: none;
	}
	.half-half-section .half-half-image {
		max-width: 100%;
	}
}
@media (max-width: 768px) {
	.half-half-section {
		margin: 6rem 0;
	}
	.half-half-section .sides-wrp {
		flex-direction: column;
	}
	.half-half-section .side-wrp {
		padding-top: 0;
		width: 100%;
	}
	.half-half-section .left-side-wrp {
		margin-bottom: 6rem;
		padding-right: 0;
	}
	.half-half-section .left-side-wrp.has-deco-line {
		border-right: none;
	}
	.half-half-section .right-side-wrp {
		padding-left: 0;
	}
	.half-half-section .content-wrp h2 {
		margin-bottom: 2rem;
	}
	.half-half-section .content-wrp p {
		font-size: 2rem;
		line-height: 2.5rem;
	}
}
/* END Half-Half Section */

/* Two Columns Section */
.two-columns.two-columns-section {
	margin: 9rem 0;
}
.two-columns.two-columns-section .two-columns-wrp {
	display: flex;
}
.two-columns.two-columns-section .two-columns-right {
	padding: 0 0 0 9rem;
}
.two-columns.two-columns-section .two-columns-content li {
	position: relative;
	margin-bottom: .5rem;
	padding-left: 3rem;
}
.two-columns.two-columns-section .two-columns-content li:before {
	position: absolute;
	top: .9rem;
	left: 1.2rem;
	display: block;
	content: "";
	width: .3rem;
	height: .3rem;
	background-color: #000000;
	border-radius: 50%;
}
@media (max-width: 1200px) {
	.two-columns.two-columns-section .two-columns-right {
		padding-left: 2rem;
	}
	.two-columns.two-columns-section .two-columns-content ul {
		text-align: left;
	}
}
@media (max-width: 1100px) {
	.two-columns.two-columns-section .two-columns-wrp {
		flex-direction: column;
	}
	.two-columns.two-columns-section .two-columns-left {
		margin-bottom: 5rem;
	}
	.two-columns.two-columns-section .two-columns-right {
		padding-left: 0;
	}
}
@media (max-width: 768px) {
	.two-columns.two-columns-section {
		margin: 6rem 0;
	}
	.two-columns.two-columns-section .two-columns-left {
		margin-bottom: 3rem;
	}
	.two-columns.two-columns-section .two-columns-content li {
		padding-left: 1.5rem;
	}
	.two-columns.two-columns-section .two-columns-content li:before {
		left: 0;
	}
}
/* END Two Columns Section */

/* Zig-Zag Section */
.zig-zag-section {
	margin: 10rem 0;
}
.zig-zag-section .zig-zag-row-wrp {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 5rem;
}
.zig-zag-section .zig-zag-row-wrp:last-child {
	margin-bottom: 0;
}
.zig-zag-section .zig-zag-row-wrp:nth-child(even) .content-side-wrp {
	padding-right: 0;
	padding-left: 3rem;
	order: 2;
}
.zig-zag-section .zig-zag-row-wrp:nth-child(even) .image-side-wrp {
	order: 1;
}
.zig-zag-section .zig-zag-row {
	width: 50%;
}
.zig-zag-section .content-side-wrp {
	padding-right: 3rem;
}
.zig-zag-section .content-side-wrp > :first-child {
	margin-top: 0;
}
.zig-zag-section .content-side-wrp > :last-child {
	margin-bottom: 0;
}
.zig-zag-section .content-side-wrp h2 {
	margin-bottom: 3.5rem;
}
.zig-zag-section .content-side-wrp h2.big-gap {
	margin-bottom: 6.5rem;
}
.zig-zag-section .content-side-wrp,
.zig-zag-section .content-side-wrp p {
	color: #4D6182;
}
.zig-zag-section .content-side-wrp .big-text {
	font-size: 2.2rem;
	line-height: 2.9rem;
}
.zig-zag-section .content-side-wrp ul {
	margin-bottom: 2rem;
}
.zig-zag-section .content-side-wrp li {
	position: relative;
	margin-bottom: .5rem;
	padding-left: 2.8rem;
}
.zig-zag-section .content-side-wrp li:last-of-type {
	margin-bottom: 0;
}
.zig-zag-section .content-side-wrp li:before {
	position: absolute;
	top: 50%;
	left: 1.4rem;
	display: block;
	content: "";
	transform: translateY(-50%);
	width: .3rem;
	height: .3rem;
	border-radius: 50%;
	background-color: #4D6182;
}
.zig-zag-section .zig-zag-row-wrp .image-side-wrp {
	display: flex;
	justify-content: center;
}
@media (max-width: 768px) {
	.zig-zag-section {
		margin: 6rem 0;
	}
	.zig-zag-section .content-side-wrp h2 {
		margin-bottom: 2rem;
	}
	.zig-zag-section .content-side-wrp h2.big-gap {
		margin-bottom: 2rem;
	}
	.zig-zag-section .content-side-wrp li {
		padding-left: 1.5rem;
	}
	.zig-zag-section .content-side-wrp li:before {
		left: 0;
	}
}
@media (max-width: 767px) {
	.zig-zag-section .zig-zag-row-wrp {
		flex-direction: column;
	}
	.zig-zag-section .zig-zag-row {
		width: 100%;
	}
	.zig-zag-section .zig-zag-row-wrp:nth-child(even) .content-side-wrp {
		padding-left: 0;
		order: 1;
	}
	.zig-zag-section .zig-zag-row-wrp:nth-child(even) .image-side-wrp {
		order: 2;
	}
	.zig-zag-section .content-side-wrp {
		margin-bottom: 3rem;
		padding-right: 0;
	}
}
/* END Zig-Zag Section */

/* Intro and Images Section */
.intro-and-images-section {
	padding: 12rem 0 13.5rem;
	background-color: #4D6182;
	color: #ffffff;
}
.intro-and-images-section .section-intro {
	margin-bottom: 4.5rem;
}
.intro-and-images-section .section-intro > :first-child {
	margin-top: 0;
}
.intro-and-images-section .section-intro > :last-child {
	margin-bottom: 0;
}
.intro-and-images-section .section-intro h2 {
	margin-bottom: 2.5rem;
	color: #ffffff;
}
.intro-and-images-section .section-intro p {
	font-size: 2.2rem;
	line-height: 2.9rem;
}
.intro-and-images-section .images-wrp {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	margin-left: -8rem;
}
.intro-and-images-section .image-title {
	margin-bottom: 3rem;
	font-size: 2.3rem;
	line-height: 2.8rem;
	font-weight: 600;
	color: #B1DDFF;
}
.intro-and-images-section .image-wrp {
	padding-left: 8rem;
}
.intro-and-images-section .image-width-45 {
	width: 45%;
}
.intro-and-images-section .image-width-50 {
	width: 50%;
}
.intro-and-images-section .image-width-55 {
	width: 55%;
}
.intro-and-images-section .image-width-100 {
	width: 100%;
}
@media (max-width: 1200px) {
	.intro-and-images-section .images-wrp {
		margin-left: -2rem;
	}
	.intro-and-images-section .image-wrp {
		padding-left: 2rem;
	}
}
@media (max-width: 768px) {
	.intro-and-images-section {
		padding: 6rem 0;
	}
	.intro-and-images-section .image-title {
		margin-bottom: 2rem;
	}
}
@media (max-width: 767px) {
	.intro-and-images-section .image-width-45,
	.intro-and-images-section .image-width-50,
	.intro-and-images-section .image-width-55 {
		width: 100%;
	}
	.intro-and-images-section .images-wrp {
		flex-direction: column;
		align-items: flex-start;
		margin-left: 0;
	}
	.intro-and-images-section .image-wrp {
		margin-bottom: 6rem;
		padding-left: 0;
	}
	.intro-and-images-section .image-wrp:last-of-type {
		margin-bottom: 0;
	}
	.intro-and-images-section .section-intro br {
		display: none;
	}
}
/* END Intro and Images Section */

/* Banner Icons Section */
.banner-icons-section {
	margin: 13rem 0 0;
}
.banner-icons-section .section-intro {
	margin-bottom: 5.5rem;
}
.banner-icons-section .section-intro > :first-child,
.banner-icons-section .banner-intro > :first-child {
	margin-top: 0;
}
.banner-icons-section .section-intro > :last-child,
.banner-icons-section .banner-intro > :last-child {
	margin-bottom: 0;
}
.banner-icons-section .section-intro h2 {
	margin-bottom: 3rem;
}
.banner-icons-section .section-intro p {
	font-size: 2.2rem;
	line-height: 2.9rem;
}
.banner-icons-section .banner-icons-wrp {
	padding: 5rem 11rem;
	background-color: #D9D9D940;
	border-radius: 1.5rem;
}
.banner-icons-section .banner-intro {
	margin-bottom: 2.5rem;
}
.banner-icons-section .banner-intro h4 {
	margin-bottom: 2.5rem;
	font-weight: 600;
}
.banner-icons-section .banner-intro em {
	font-weight: 200;
}
.banner-icons-section .icons-wrp {
	display: flex;
	flex-wrap: wrap;
	margin-left: -2.5rem;
}
.banner-icons-section .icon-wrp {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 1rem;
	padding-left: 2.5rem;
	width: 25%;
}
.banner-icons-section .icon {
	margin-bottom: 2rem;
	max-width: 7.7rem;
	height: auto;
}
.banner-icons-section .icon-title {
	margin: 0;
	text-align: center;
	font-weight: 700;
}
@media (max-width: 1400px) {
	.banner-icons-section .banner-icons-wrp {
		padding: 5rem;
	}
}
@media (max-width: 768px) {
	.banner-icons-section {
		margin: 6rem 0 0;
	}
	.banner-icons-section br {
		display: none;
	}
	.banner-icons-section .banner-intro {
		margin-bottom: 1rem;
	}
	.banner-icons-section .icon-wrp {
		margin-top: 2.5rem;
	}
	.banner-icons-section .icon-wrp {
		width: 50%;
	}
}
@media (max-width: 580px) {
	.banner-icons-section .section-intro {
		margin-bottom: 4rem;
	}
	.banner-icons-section .section-intro h2 {
		margin-bottom: 1.5rem;
	}
	.banner-icons-section .banner-icons-wrp {
		padding: 4rem 1.5rem;
	}
	.banner-icons-section .icons-wrp {
		margin-left: -1.5rem;
	}
	.banner-icons-section .icon-wrp {
		padding-left: 1.5rem;
	}
	.banner-icons-section .icon {
		margin-bottom: 1rem;
	}
}
/* END Banner Icons Section */

/* Left Icons Right Image Section */
.left-icons-right-image-section {
	padding: 9.5rem 0 14rem;
	background: rgb(255,255,255);
	background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(234,246,255,1) 100%);
}
.left-icons-right-image-section .section-container {
	margin: 0 auto;
	padding: 0 1.5rem;
	max-width: 1000px;
}
.left-icons-right-image-section .section-intro {
	margin-bottom: 5rem;
}
.left-icons-right-image-section .section-intro > :first-child {
	margin-top: 0;
}
.left-icons-right-image-section .section-intro > :last-child {
	margin-bottom: 0;
}
.left-icons-right-image-section .section-intro h4 {
	font-size: 2.7rem;
	line-height: 3.2rem;
	font-weight: 600;
}
.left-icons-right-image-section .sides-wrp {
	display: flex;
	align-items: flex-end;
	margin-left: -10rem;
}
.left-icons-right-image-section .side-wrp {
	padding-left: 10rem;
	width: 50%;
}
.left-icons-right-image-section .icon-text-wrp {
	display: flex;
	align-items: center;
	margin-bottom: 3rem;
}
.left-icons-right-image-section .icon-text-wrp:last-of-type {
	margin-bottom: 0;
}
.left-icons-right-image-section .icon-wrp {
	margin-right: 2.5rem;
}
.left-icons-right-image-section .icon {
	max-width: 7.5rem;
}
.left-icons-right-image-section .icon-title {
	margin: 0;
	font-weight: 700;
}
.left-icons-right-image-section .image-title {
	margin: 0 auto 2rem;
	max-width: 80%;
	text-align: center;
}
@media (max-width: 1400px) {
	.left-icons-right-image-section .sides-wrp {
		margin-left: -4rem;
	}
	.left-icons-right-image-section .side-wrp {
		padding-left: 4rem;
	}
}
@media (max-width: 768px) {
	.left-icons-right-image-section {
		padding: 6rem 0;
	}
}
@media (max-width: 580px) {
	.left-icons-right-image-section .section-intro {
		margin-bottom: 3rem;
	}
	.left-icons-right-image-section .sides-wrp {
		flex-direction: column;
		margin-left: 0;
	}
	.left-icons-right-image-section .side-wrp {
		margin-bottom: 4rem;
		padding: 0;
		width: 100%;
	}
	.left-icons-right-image-section .side-wrp:last-of-type {
		margin-bottom: 0;
	}
	.left-icons-right-image-section .image-title {
		margin-bottom: 1rem;
		max-width: 100%;
	}
}
/* END Left Icons Right Image Section */

/* Chart and Text Section */
.chart-and-text-section {
	margin: 14rem 0;
}
.chart-and-text-section .section-container {
	margin: 0 auto;
	padding: 0 1.5rem;
	max-width: 1140px;
}
.chart-and-text-section .section-intro {
	margin-bottom: 6.5rem;
}
.chart-and-text-section .section-intro > :first-child {
	margin-top: 0;
}
.chart-and-text-section .section-intro > :last-child {
	margin-bottom: 0;
}
.chart-and-text-section .sides-wrp {
	display: flex;
	align-items: center;
	margin-left: -6.5rem;
}
.chart-and-text-section .side-wrp {
	padding-left: 6.5rem;
}
.chart-and-text-section .left-side-wrp {
	width: 45%;
}
.chart-and-text-section .right-side-wrp {
	width: 55%;
}
.chart-and-text-section .right-side-title {
	margin: 0 0 3rem;
	color: #3A96DB;
	font-size: 2.7rem;
	line-height: 3.2rem;
	font-weight: 600;
}
.chart-and-text-section .right-content-image-wrp {
	position: relative;
	display: flex;
}
.chart-and-text-section .right-content-image-wrp.image-is-here .right-side-content {
	margin: 0;
	width: 60%;
	font-size: 1.9rem;
	line-height: 2.8rem;
}
.chart-and-text-section .right-content-image-wrp .right-side-image {
	position: absolute;
	right: 9%;
	bottom: 0;
	width: 30%;
	height: auto;
}
@media (max-width: 1280px) {
	.chart-and-text-section .sides-wrp {
		margin-left: -3rem;
	}
	.chart-and-text-section .side-wrp {
		padding-left: 3rem;
	}
	.chart-and-text-section .right-side-title br {
		display: none;
	}
	.chart-and-text-section .right-content-image-wrp .right-side-content br {
		display: none;
	}
	.chart-and-text-section .right-content-image-wrp .right-side-image {
		right: 0;
	}
}
@media (max-width: 768px) {
	.chart-and-text-section {
		margin: 6rem 0;
	}
	.chart-and-text-section .section-intro {
		margin-bottom: 4rem;
	}
}
@media (max-width: 767px) {
	.chart-and-text-section .sides-wrp {
		flex-direction: column;
		margin-left: 0;
	}
	.chart-and-text-section .side-wrp {
		padding-left: 0;
	}
	.chart-and-text-section .left-side-wrp {
		margin-bottom: 4rem;
		width: 100%;
	}
	.chart-and-text-section .right-side-wrp {
		width: 100%;
	}
	.chart-and-text-section .right-content-image-wrp {
		align-items: center;
		justify-content: space-between;
	}
	.chart-and-text-section .right-content-image-wrp.image-is-here .right-side-content {
		width: calc(100% - 135px);
	}
	.chart-and-text-section .right-content-image-wrp .right-side-image {
		position: relative;
		right: unset;
		bottom: unset;
		width: auto;
		height: auto;
		max-width: 130px;
	}
}
/* END Chart and Text Section */

/* Image Section */
.image-section {
	position: relative;
	padding: 12.5rem 0 10rem;
	background-color: #D9D9D940;
}
.image-section.has-horizontal-line:after {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	display: block;
	content: "";
	width: 1250px;
	height: .1rem;
	background-color: #FB5058;
}
.image-section .section-intro {
	margin-bottom: 6.5rem;
}
.image-section .section-intro > :first-child {
	margin-top: 0;
}
.image-section .section-intro > :last-child {
	margin-bottom: 0;
}
.image-section .image-wrp {
	display: flex;
	justify-content: center;
}
@media (max-width: 1280px) {
	.image-section.has-horizontal-line:after {
		width: calc(100vw - 3rem);
	}
}
@media (max-width: 768px) {
	.image-section {
		padding: 6rem 0;
	}
	.image-section .section-intro {
		margin-bottom: 4rem;
	}
	.image-section .section-intro br {
		display: none;
	}
}
/* END Image Section */

/* Content Columns Section */
.content-columns-section {
	padding: 10rem 0;
	background-color: #D9D9D940;
}
.content-columns-section .section-intro {
	margin-bottom: 4.5rem;
}
.content-columns-section .section-intro > :first-child {
	margin-top: 0;
}
.content-columns-section .section-intro > :last-child {
	margin-bottom: 0;
}
.content-columns-section .content-columns-wrp {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-left: -4.5rem;
}
.content-columns-section .content-column-wrp {
	padding-left: 4.5rem;
	width: 25%;
	text-align: center;
}
.content-columns-section .column-title {
	margin-bottom: 2rem;
	font-weight: 700;
	color: #4D6182;
}
@media (max-width: 1023px) {
	.content-columns-section .content-column-wrp {
		width: 50%;
	}
	.content-columns-section .column-title {
		margin-bottom: .5rem;
	}
}
@media (max-width: 768px) {
	.content-columns-section {
		padding: 6rem 0;
	}
	.content-columns-section .section-intro {
		margin-bottom: 3rem;
	}
	.content-columns-section .section-intro br {
		display: none;
	}
}
@media (max-width: 580px) {
	.content-columns-section .content-columns-wrp {
		margin-left: 0;
	}
	.content-columns-section .content-column-wrp {
		margin-bottom: 4rem;
		padding-left: 0;
		width: 100%;
	}
	.content-columns-section .content-column-wrp:last-of-type {
		margin-bottom: 0;
	}
	.content-columns-section .column-content > :last-child {
		margin-bottom: 0;
	}
}
/* END Content Columns Section */

/* Left Content Right Image Section */
.left-content-right-image-section {
	margin: 12rem 0 10rem;
}
.left-content-right-image-section .section-container {
	max-width: 1110px;
	margin: 0 auto;
	padding: 0 1.5rem;
}
.left-content-right-image-section .sides-wrp {
	display: flex;
	flex-wrap: wrap;
	margin-left: -3rem;
}
.left-content-right-image-section .side-wrp {
	padding-left: 3rem;
}
.left-content-right-image-section .left-side-wrp {
	width: 55%;
}
.left-content-right-image-section .right-side-wrp {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 45%;
}
.left-content-right-image-section .right-side-image {
	margin-bottom: 2rem;
	max-width: 75%;
}
.left-content-right-image-section .subtitle {
	font-size: 2.4rem;
	line-height: 3rem;
}
.left-content-right-image-section ul li {
	position: relative;
	margin-bottom: 1.5rem;
	padding-left: 3rem;
	font-size: 1.9rem;
	line-height: 2.8rem;
}
.left-content-right-image-section ul li:last-of-type {
	margin-bottom: 0;
}
.left-content-right-image-section ul li:before {
	position: absolute;
	top: 1rem;
	left: 1.5rem;
	display: block;
	content: "";
	width: .3rem;
	height: .3rem;
	border-radius: 50%;
	background-color: #000000;
}
.left-content-right-image-section .left-side-wrp > :first-child {
	margin-top: 0;
}
.left-content-right-image-section .left-side-wrp > :last-child {
	margin-bottom: 0;
}
.left-content-right-image-section .image-description > :last-child {
	margin-bottom: 0;
}
@media (max-width: 1024px) {
	.left-content-right-image-section .left-side-wrp {
		width: 50%;
	}
	.left-content-right-image-section .right-side-wrp {
		width: 50%;
	}
	.left-content-right-image-section .left-side-wrp br {
		display: none;
	}
}
@media (max-width: 768px) {
	.left-content-right-image-section {
		margin: 6rem 0;
	}
	.left-content-right-image-section ul li {
		padding-left: 1.5rem;
	}
	.left-content-right-image-section ul li:before {
		left: 0;
	}
}
@media (max-width: 767px) {
	.left-content-right-image-section .sides-wrp {
		flex-direction: column;
	}
	.left-content-right-image-section .side-wrp {
		width: 100%;
	}
	.left-content-right-image-section .left-side-wrp {
		margin-bottom: 4rem;
	}
	.left-content-right-image-section .right-side-image {
		margin-bottom: 1rem;
		max-width: 100%;
	}
}
/* END Left Content Right Image Section */

/* Progress Section */
.progress-section {
	margin: 10rem 0;
}
.progress-section .section-intro > :first-child,
.progress-section .next-steps-intro > :first-child,
.progress-section .next-steps-text > :first-child {
	margin-top: 0;
}
.progress-section .section-intro > :last-child,
.progress-section .next-steps-intro > :last-child,
.progress-section .next-steps-text > :last-child {
	margin-bottom: 0;
}
.progress-section .section-content-wrp {
	padding: 6.5rem 8rem 8.5rem 7.5rem;
	background-color: #D9D9D940;
	border-radius: 1.5rem;
}
.progress-section h3 {
	margin-bottom: 1rem;
	font-size: 3.1rem;
	line-height: 4.2rem;
	color: #4D6182;
}
.progress-section .icons-wrp,
.progress-section .next-steps-wrp {
	margin-top: 3.5rem;
}
.progress-section .section-intro p,
.progress-section .next-steps-intro p {
	font-size: 2.4rem;
	line-height: 3.1rem;
	color: #4D6182;
}
.progress-section .icons-wrp {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	margin-left: -3rem;
	padding: 4rem 0 2rem;
}
.progress-section .icons-wrp:before {
	position: absolute;
	top: 0;
	left: 3rem;
	display: block;
	content: "";
	width: calc(100% - 3rem);
	height: .1rem;
	background-color: #4D6182;
}
.progress-section .icon-wrp {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-left: 3rem;
	width: 25%;
	text-align: center;
}
.progress-section .progress-icon {
	margin-bottom: 2rem;
	max-width: 7.7rem;
	height: auto;
}
.progress-section .icons-wrp strong {
	font-weight: 600;
}
.progress-section .next-steps-arrow-div {
	position: relative;
	margin-bottom: 5rem;
	width: 100%;
	height: 4rem;
	background-color: transparent;
	border-right: .1rem solid #4D6182;
	border-bottom: .1rem solid #4D6182;
	border-left: .1rem solid #4D6182;
}
.progress-section .next-steps-arrow-div:after {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	display: block;
	content: "";
	width: .1rem;
	height: 5rem;
	background-color: #4D6182;
}
.progress-section .next-steps-intro {
	padding-top: 2rem;
}
.progress-section .next-steps-wrp {
	position: relative;
	padding-top: 3.5rem;
	border-top: .1rem solid #4D6182;;
}
.progress-section .next-steps-text {
	padding: 0 26rem;
}
.progress-section .next-steps-text .subtitle {
	font-size: 2.3rem;
	line-height: 3rem;
	color: #3A96DB;
}
.progress-section .next-steps-text p {
	margin-bottom: 1.5rem;
}
.progress-section .next-steps-img-wrp {
	position: absolute;
	right: 0;
	top: -2.5rem;
	max-width: 25rem;
}
@media (max-width: 1200px) {
	.progress-section .icon-content br {
		display: none;
	}
}
@media (max-width: 1023px) {
	.progress-section .section-content-wrp {
		padding: 4rem 1.5rem;
	}
	.progress-section .icons-wrp {
		margin-top: 2rem;
		padding-top: 2rem;
		margin-left: -1.5rem;
	}
	.progress-section .icon-wrp {
		padding-left: 1.5rem;
	}
	.progress-section .progress-icon {
		margin-bottom: 1rem;
		max-width: 6rem;
	}
	.progress-section .icon-content p {
		margin-bottom: 1rem;
		font-size: 1.6rem;
	}
	.progress-section .icons-wrp:before {
		left: 1.5rem;
		width: calc(100% - 1.5rem);
	}
	.progress-section .next-steps-arrow-div {
		margin-bottom: 3rem;
		height: 2rem;
	}
	.progress-section .next-steps-arrow-div:after {
		height: 3rem;
	}
	.progress-section .next-steps-wrp {
		margin-top: 2rem;
		padding-top: 2rem;
	}
	.progress-section .next-steps-img-wrp {
		top: -1.8rem;
		max-width: 19rem;
	}
	.progress-section .next-steps-text {
		padding: 0 20rem;
	}
	.progress-section .next-steps-text p {
		margin-bottom: .5rem;
	}
}
@media (max-width: 768px) {
	.progress-section {
		margin: 6rem 0;
	}
}
@media (max-width: 580px) {
	.progress-section .icons-wrp {
		padding-bottom: 0;
	}
	.progress-section .icon-wrp {
		width: 50%;
	}
	.progress-section .next-steps-text {
		padding: 0 14rem 0 0;
	}
	.progress-section .next-steps-img-wrp {
		max-width: 14rem;
	}
	.progress-section .next-steps-arrow-div {
		margin-bottom: 1.5rem;
		height: 1rem;
	}
	.progress-section .next-steps-arrow-div:after {
		height: 1.5rem;
	}
}
/* END Progress Section */

/* Left Icon Right Content Section */
.left-icon-right-content-section {
	padding: 9rem 0 13rem;
	background: rgb(234,246,255);
	background: linear-gradient(180deg, rgba(234,246,255,1) 0%, rgba(255,255,255,1) 100%);
}
.left-icon-right-content-section .container-small {
	padding: 1.5rem;
}
.left-icon-right-content-section .icon-and-content-wrp {
	display: flex;
	flex-wrap: wrap;
	margin-left: -5rem;
	margin-bottom: 7rem;
}
.left-icon-right-content-section .icon-and-content-wrp:last-of-type {
	margin-bottom: 0;
}
.left-icon-right-content-section .side-wrp {
	padding-left: 5rem;
}
.left-icon-right-content-section .left-side {
	width: 25%;
}
.left-icon-right-content-section .right-side {
	width: 75%;
}
.left-icon-right-content-section .row-title {
	margin-top: 0;
	font-size: 3.1rem;
	line-height: 4.1rem;
	color: #4D6182;
}
.left-icon-right-content-section .content-row:last-of-type {
	margin-bottom: 0;
}
.left-icon-right-content-section .content-row > :last-child {
	margin-bottom: 0;
}
.left-icon-right-content-section .content-row-title {
	margin-bottom: 1.2rem;
	font-size: 2.4rem;
	line-height: 3.1rem;
	font-weight: 700;
	color: #3A96DB;
}
.left-icon-right-content-section p,
.left-icon-right-content-section ul {
	margin-bottom: 1rem;
}
.left-icon-right-content-section .content-row {
	margin-bottom: 4rem;
}
.left-icon-right-content-section li {
	position: relative;
	margin-bottom: .5rem;
	padding-left: 3rem;
}
.left-icon-right-content-section li:last-of-type {
	margin-bottom: 0;
}
.left-icon-right-content-section li:before {
	position: absolute;
	top: .9rem;
	left: 1.2rem;
	display: block;
	content: "";
	width: .3rem;
	height: .3rem;
	background-color: #000000;
	border-radius: 50%;
}
@media (max-width: 768px) {
	.left-icon-right-content-section {
		padding: 6rem 0;
	}
	.left-icon-right-content-section li {
		padding-left: 1.5rem;
	}
	.left-icon-right-content-section li:before {
		left: 0;
	}
}
@media (max-width: 650px) {
	.left-icon-right-content-section .icon-and-content-wrp {
		margin-left: 0;
		flex-direction: column;
	}
	.left-icon-right-content-section .side-wrp {
		padding-left: 0;
	}
	.left-icon-right-content-section .left-side {
		margin-bottom: 3.5rem;
		margin-left: auto;
		margin-right: auto;
		width: 80%;
	}
	.left-icon-right-content-section .right-side {
		width: 100%;
	}
}
/* END Left Icon Right Content Section */

.news-filtering-sidebar {
	display: none !important;
}

/* !!! END REDESIGN !!! */