/*
VARIABLES
CORE
HEADER
FOOTER
*/

/*******************************************************************************************
HEADER
*******************************************************************************************/
:root {
	/* Colours */
	--color-primary: #041057;
	--color-secondary: #ff5e3a;
	--color-alternate: #8d98b7;
	--color-info: #9da6e9;
	--color-sky: #002dff;
	--color-sky-light: #f0f1f7;
	--color-dark: #050d3c;
	--color-blue: #001460;
	--color-blue-alt: #15216b;
	--color-blue-dark: #011460;
	--color-light: #f5f6f9;
	--color-light-alt: #edeff4;
	--color-gray: #f6ded8;
	--color-cream: #d4d7e0;
	--color-cloud: #0ff;
	--color-border: #c7c7c7;
	--color-black: #000;
	--color-white: #fff;
	--color-error: #d9534f;
	--color-success: #5cb85c;
	--color-warning: #ce0000;

	/* Link Style */
	--link-color-base: inherit;
	--link-decoration-base: underline;
	--link-hover-color-base: inherit;
	--link-hover-decoration-base: none;

	/* Transitions */
	--speed-fast: .125s;
	--speed-default: .25s;
	--speed-slow: .5s;
	--speed-sluggish: 1s;
	--speed-snail: 2s;
	--cubic-bezier: cubic-bezier(.05, .69, .14, 1);
	--cubic-bezier-2: cubic-bezier(.215, .61, .355, 1);

	/* Body Style */
	--body-bg: var(--color-white);
	--font-family-base: 'Montserrat', sans-serif;
	--text-color-base: var(--color-dark);

	/* Headings Style */
	--heading-font-family: 'Titillium Web', sans-serif;
	--heading-margin: 0 0 20px 0;
	--heading-font-weight: 700;
	--heading-color: inherit;

	/* Icons Style */
	--icons-font-family: 'fsl-icons';
	--icon-arrow-right: '\e900';
	--icon-arrow-left: '\e901';
	--icon-chevron-down: '\e902';
	--icon-check: '\e903';
	--icon-chevron-right: '\e906';
	--icon-chevron-up: '\e907';
	--icon-clock: '\e908';
	--icon-calendar: '\e909';
	--icon-quotation: '\e90a';
	--icon-linkedin: '\e90d';
	--icon-email: '\e90e';
	--icon-phone: '\e90f';
	--icon-marker: '\e910';
	--icon-quote: '\e911';

	/* Font sizes */
	--font-size-h1: 50px;
	--font-size-h2: 40px;
	--font-size-h3: 30px;
	--font-size-h4: 32px;
	--font-size-h5: 22px;
	--font-size-h6: 18px;
	--font-size-base: 16px;
	--font-size-small: 12px;
	--font-size-btn: var(--font-size-base);

	/* Line heights */
	--line-height-base: 1.5;
	--heading-line-height: 1.2;

	/* Paddings */
	--py-section: 60px;
	--py-section-small: 30px;
	--py-section-medium: 50px;
	--py-section-large: 100px;
	--py-section-less: 40px;
	--px-form-control: 13px;
	--py-form-control: 15px;
	--px-gutter-base: 12px;

	/* Heights */
	--height-btn: 40px;
	--height-btn-sm: 40px;
	--height-form-control: 48px;
	--height-header-base: 72px;

	/* Widths */
	--width-base: 1200px;
	--width-small: 800px;
	--width-wide: 1440px;

	/* Sizes */
	--size-bullet: 5px;
	--size-btn-play: 60px;
	--size-radius-btn: 4px;
	--size-form-check-indicator: 16px;
	--size-accordion-indicator: 10px;

	/* Spacing */
	--letter-base-space: -.02em;
}

@media screen and (min-width: 1025px) {
	:root {
		--font-size-h1: 72px;
		--font-size-h2: 64px;
		--font-size-h3: 40px;

		--py-section: 120px;
		--py-section-large: 150px;
		--py-section-medium: 80px;
		--py-section-small: 50px;
		--py-section-less: 60px;
	}
}

/*******************************************************************************************
CORE - Top-level styling
*******************************************************************************************/
*,
*:before,
*:after {
	box-sizing: inherit;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: none;
}

*:focus {
	outline: none;
}

html {
	box-sizing: border-box;
}

body {
	line-height: var(--line-height-base);
	color: var(--text-color-base);
	font-size: var(--font-size-base);
	font-family: var(--font-family-base);
	margin: 0;
	font-weight: 400;
	background: var(--color-white);
}

/* CORE > Global */
img {
	height: auto;
	max-width: 100%;
}

main {
	margin-top: calc(var(--height-header-base) + 2px);
}

.clear:after {
	display: block;
	clear: both;
	content: '';
}

/* CORE > Typography */
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 30px;
	font-weight: 400;
	color: var(--heading-color);
	letter-spacing: var(--letter-base-space);
	font-family: var(--heading-font-family), sans-serif;
	line-height: var(--heading-line-height);
}

.h1,
h1 {
	font-weight: 500;
	font-size: var(--font-size-h1);
}

.h2,
h2 {
	font-weight: 500;
	font-size: var(--font-size-h2);
}

.h3,
h3 {
	font-size: var(--font-size-h3);
}

.h4,
h4 {
	font-size: var(--font-size-h4);
}

.h5,
h5 {
	font-size: var(--font-size-h5);
}

.h6,
h6 {
	font-size: var(--font-size-h6);
}

p {
	margin: 0 0 30px;
}

.subtitle,
.subheading {
	font-weight: 700;
	margin-bottom: 24px;
	letter-spacing: .05em;
	text-transform: uppercase;
	font-family: var(--heading-font-family), sans-serif;
}

.subtitle {
	color: var(--color-alternate);
	font-size: 14px;
}

.subheading {
	font-size: 22px;
}

@media screen and (min-width: 1024px) {
	.subtitle {
		margin-bottom: 40px;
	}
}

ul {
	list-style: none;
}

/* CORE > Form */
label {
	margin-bottom: 10px;
	display: block;
	font-size: var(--font-size-base);
	font-weight: 400;
	color: var(--text-color-base);
}

input,
select,
textarea {
	padding: 10px 15px;
	display: block;
	width: 100%;
	font-size: 14px;
	height: 52px;
	font-family: var(--font-family-base), sans-serif;
	color: var(--text-color-base);
	border: 1px solid var(--color-cream);
	border-radius: 6px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, .15);
	background: var(--color-white);
}

input::placeholder,
select::placeholder,
textarea::placeholder {
	opacity: .6;
	color: inherit;
}

input:focus:not(:read-only):not([type='submit']):not([type='reset']):not([type='button']),
select:focus:not(:read-only):not([type='submit']):not([type='reset']):not([type='button']),
textarea:focus:not(:read-only):not([type='submit']):not([type='reset']):not([type='button']) {
	border-color: var(--color-cream);
}

input.is-error,
select.is-error,
textarea.is-error {
	border-color: var(--color-error);
}

input:disabled,
select:disabled,
textarea:disabled {
	opacity: .8;
	color: var(--color-border);
	background-color: var(--color-white);
}

input[type='checkbox'],
select[type='checkbox'],
textarea[type='checkbox'],
input[type='radio'],
select[type='radio'],
textarea[type='radio'] {
	margin-right: 10px;
	padding: 0;
	display: inline-block;
	height: auto;
}

input[type='radio'],
input[type='checkbox'],
input[type='submit'],
input[type='reset'],
input[type='button'] {
	display: inline-block;
	width: auto;
}

input[type='submit'],
input[type='reset'],
input[type='button'] {
	color: var(--color-white);
	background-color: var(--color-primary);
	border: 1px solid var(--color-primary);
}

input[type='submit']:hover,
input[type='reset']:hover,
input[type='button']:hover {
	color: var(--color-white);
	background-color: var(--color-secondary);
	border-color: var(--color-secondary);
}

select {
	background-image: url('data:image/png;base64,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');
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: auto 5px;
	appearance: none;
}

textarea {
	width: 100%;
	height: 200px;
}

/* CORE > Links and Buttons */
a {
	color: var(--link-color-base);
	text-decoration: var(--link-decoration-base);
}

a:hover,
a:focus {
	color: var(--link-hover-color-base);
	text-decoration: var(--link-hover-decoration-base);
}

a,
button,
.button {
	transition: all 0.3s;
}

button,
.button {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.25;
	padding: 16px 30px;
	border-radius: 50px;
	align-items: center;
	display: inline-flex;
	position: relative;
	z-index: 1;
	cursor: pointer;
	text-decoration: none;
	color: var(--color-white);
	background-color: var(--color-secondary);
}

.button.button-link:focus,
.button.button-link:hover {
	background: transparent;
	color: var(--color-secondary);
	opacity: .8;
	padding-bottom: 3px;
	margin-bottom: 2px;
}

.button.button-link {
	font-weight: 600;
	display: inline-block;
	background: transparent;
	padding: 0 0 5px;
	border-radius: 0;
	color: var(--color-secondary);
	border-bottom: 1px solid var(--color-secondary);
}

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

.button.button-primary:hover,
.button.button-primary:focus {
	color: var(--color-black);
	background-color: #e5ab22;
}

button.button-tab,
.button.button-tab {
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 30px;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 700;
	font-family: var(--heading-font-family), sans-serif;
	margin: 0 5px 10px;
	color: var(--color-dark);
	text-decoration: none;
	border-color: transparent;
	background: rgb(from var(--color-dark) r g b / 0.05);
}

.button.button-tab:focus,
.button.button-tab.active:hover,
.button.button-tab.active{
	color: var(--color-white);
	background: rgb(from var(--color-dark) r g b / 1);
}

.button.button-tab:hover {
	color: var(--color-dark);
	background: rgb(from var(--color-dark) r g b / .15);
}

button:hover,
button:focus,
.button:hover,
.button:focus {
	color: var(--color-white);
	background-color: #4e4e4e;
}

button.no-button,
.button.no-button {
	color: var(--color-primary);
	border: 0;
	padding: 0;
	font-weight: 600;
	background: transparent;
}

button.no-button:hover,
button.no-button:focus,
.button.no-button:hover,
.button.no-button:focus {

}

/* CORE > Layout */
.container,
.container-wide,
.container-small {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--px-gutter-base);
	padding-right: var(--px-gutter-base);
}

.container {
	max-width: calc(var(--width-base) + calc(var(--px-gutter-base) * 2));
}

.container-small {
	max-width: calc(var(--width-small) + calc(var(--px-gutter-base) * 2));
}

.container-wide {
	max-width: calc(var(--width-wide) + calc(var(--px-gutter-base) * 2));
}

/* CORE > Utility Classes */
.no-margin {
	margin: 0 !important;
}

.no-padding {
	padding: 0 !important;
}

.no-transition {
	transition: none !important;
}

.no-min-height {
	min-height: 0;
}

.position-static {
	position: static !important;
}

.position-relative {
	position: relative !important;
}

.block {
	display: block !important;
}

.full-width {
	width: 100%;
}

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

.right,
.align-right,
.text-right {
	text-align: right;
}

.uppercase {
	text-transform: uppercase;
}

.hide {
	display: none !important;
}

.overflow-hidden {
	overflow: hidden;
}

.overflow-visible {
	overflow: visible !important;
}

.visually-hidden {
	border: none !important;
	clip: rect(0 0 0 0) !important;
	height: 1px !important;
	margin: -1px !important;
	overflow: hidden !important;
	padding: 0 !important;
	position: absolute !important;
	white-space: nowrap !important;
	width: 1px !important;
}

.flex-container {
	display: flex;
	align-items: center;
}

.flex-align-vertical {
	display: flex;
	justify-content: center;
	align-items: center;
}

.flex-align-horizontal {
	display: flex;
	justify-content: center;
	text-align: center;
}

.small-text {
	font-size: 0.9rem;
}

.larger-text {
	font-size: 1.2rem;
}

.font-light {
	font-weight: 300;
}

.font-normal {
	font-weight: 400;
}

.font-medium {
	font-weight: 500;
}

.font-semibold {
	font-weight: 600;
}

.font-bold {
	font-weight: 700;
}

.small-margin-left {
	margin-left: 10px;
}

.small-margin-right {
	margin-right: 10px;
}

.no-background {
	background: none !important;
}

.transition-all {
	transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.bg-blue {
	color: var(--color-white);
	background: var(--color-primary);
}

.bg-blue .subtitle {
	color: var(--color-alternate);
}

.bg-blue .heading-subtitle,
.bg-linear .heading-subtitle {
	color: var(--color-white);
}

.bg-light {
	background: var(--color-light);
}

.bg-linear {
	color: var(--color-white);
	background: linear-gradient(120.64deg, #041057 0%, #13256E 92.87%);
}

.border-both {
	border-top: 4px solid var(--color-secondary);
	border-bottom: 4px solid var(--color-secondary);
}

.border-top {
	border-top: 4px solid var(--color-secondary);
}

.border-bottom {
	border-bottom: 4px solid var(--color-secondary);
}

@media (min-width: 768px) {
	.hide-for-medium {
		display: none !important;
	}
}

@media (min-width: 1025px) {
	.hide-for-large {
		display: none !important;
	}
}

@media screen and (max-width: 767px) {
	.hide-for-small-only {
		display: none !important;
	}
}

@media screen and (max-width: 0px), screen and (min-width: 768px) {
	.show-for-small-only {
		display: none !important;
	}
}

@media screen and (max-width: 1023px) {
	.show-for-medium {
		display: none !important;
	}
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
	.hide-for-medium-only {
		display: none !important;
	}
}

@media screen and (max-width: 767px), screen and (min-width: 1025px) {
	.show-for-medium-only {
		display: none !important;
	}
}

@media screen and (max-width: 1024px) {
	.show-for-large {
		display: none !important;
	}
}

/*******************************************************************************************
CONTENT
*******************************************************************************************/
.content {
	width: 100%;
}

.content h2 {
	font-weight: normal;
	font-size: var(--font-size-h3);
}

.content h3 {
	font-size: var(--font-size-h4);
}

.content h4 {
	font-size: var(--font-size-h5);
}

.content h5 {
	font-size: var(--font-size-h6);
}

.content blockquote {
	font-family: var(--heading-font-family), sans-serif;
	text-align: center;
	background: var(--color-light);
	border-radius: 12px;
	padding: 35px;
	font-size: 32px;
	margin: 60px 0;
	position: relative;
	display: block;
}

.content blockquote:before {
	display: block;
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	width: 30px;
	height: 30px;
	content: '';
	background: url('../../assets/images/quote-red.svg') no-repeat, center center;
}

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

/*******************************************************************************************
SECTION
*******************************************************************************************/
.section {
	width: 100%;
	position: relative;
	overflow: clip;
	margin-top: var(--py-section);
	margin-bottom: var(--py-section);
}

.section[class*="bg-"] {
	margin-top: 0;
	margin-bottom: 0;
	padding-top: var(--py-section);
	padding-bottom: var(--py-section);
}

.section[class*="bg-blue"] + .section[class*="bg-blue"],
.section[class*="bg-light"] + .section[class*="bg-light"] {
	padding-top: 20px;
}

.section.medium-space-top {
	margin-top: var(--py-section-medium);
}

.section.medium-space-bottom {
	margin-bottom: var(--py-section-medium);
}

.section.medium-space-both {
	margin-top: var(--py-section-medium);
	margin-bottom: var(--py-section-medium);
}

.section[class*="bg-"].medium-space-top {
	margin-top: 0;
	padding-top: var(--py-section-medium);
}

.section[class*="bg-"].medium-space-bottom {
	margin-bottom: 0;
	padding-bottom: var(--py-section-medium);
}

.section[class*="bg-"].medium-space-both {
	margin-top: 0;
	margin-bottom: 0;
	padding-top: var(--py-section-medium);
	padding-bottom: var(--py-section-medium);
}

.section.no-both-space {
	margin-top: 0;
	margin-bottom: 0;
	padding-top: 0;
	padding-bottom: 0;
}

section.is-small-space {
	margin-top: var(--py-section-medium);
	margin-bottom: var(--py-section-medium);
}

section.is-large-space {
	margin-top: var(--py-section-large);
	margin-bottom: var(--py-section-large);
}

.section.is-top-less {
	margin-top: 0;
}

.section.is-bottom-less {
	margin-bottom: 0;
}

.section.is-top-space {
	margin-top: var(--height-header-base);
}

@media screen and (max-width: 1024px) {
	.section[class*="bg-"] + .section[class*="bg-"] {
		padding-top: 40px;
	}
}

/*******************************************************************************************
ACCORDION
*******************************************************************************************/
.accordion-item {
	width: 100%;
	border-radius: 8px;
	background: var(--color-white);
}

.accordion-item + .accordion-item {
	margin-top: 12px;
}

.accordion-item.is-active .accordion-title:after {
	transform: none;
}

.accordion-title {
	display: flex;
	padding: 20px 50px 20px 20px;
	width: 100%;
	cursor: pointer;
	background: transparent;
	border: 0;
	align-items: center;
	text-align: left;
	font-size: 22px;
	font-family: var(--heading-font-family), sans-serif;
	font-weight: 400;
	border-radius: 0;
	color: var(--color-dark);
}

.accordion-title:hover,
.accordion-title:focus {
	color: var(--color-dark);
	background: transparent;
}

.accordion-title span {
	flex: 1;
	display: block;
}

.accordion-title:after {
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-secondary);
	transform: rotate(180deg);
	font-size: 10px;
	font-weight: 300;
	font-family: var(--icons-font-family), sans-serif;
	content: var(--icon-chevron-up);
	position: absolute;
	right: 10px;
	top: 50%;
	margin-top: -15px;
	transition: all .3s;
}

.accordion-content {
	padding: 0!important;
	max-height: 0;
	overflow: hidden;
	position: relative;
	transition: all .3s ease-in-out;
}

.accordion-content p:last-child {
	margin-bottom: 0;
}

.accordion-content-inner {
	padding: 0 20px 20px 20px;
}

.accordion-content-inner a{
	color: var(--color-secondary);
	font-weight: 700;
}

@media screen and (min-width: 768px) {
	.accordion-title:after {
		right: 30px;
	}

	.accordion-title {
		padding: 30px 60px 30px 30px;
		font-size: 24px;
	}

	.accordion-content-inner {
		padding: 0 30px 30px 30px;
	}
}

/*******************************************************************************************
SWIPER SLIDER
*******************************************************************************************/

.swiper-button-next,
.swiper-button-prev {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	color: var(--color-alternate);
	border: 1px solid var(--color-alternate);
	background: transparent;
	padding: 0;
	transition: all var(--speed-default);
}

.swiper-button-next:after,
.swiper-button-prev:after {
	content: '\e901';
	font-size: 14px;
	font-weight: normal;
	font-family: var(--icons-font-family), sans-serif;
}

.swiper-button-next:after {
	transform: rotate(180deg);
}

.swiper-button-next:hover,
.swiper-button-prev:hover,
.swiper-button-next:focus,
.swiper-button-prev:focus {
	background: var(--color-alternate);
	color: var(--color-white);
}

/*******************************************************************************************
CHECK LISTS
*******************************************************************************************/
.check-lists ul {
	margin: 0 0 30px;
	padding: 0;
}

.check-lists li {
	position: relative;
	padding-left: 30px;
}

.check-lists li:before {
	content: '';
	position: absolute;
	top: 2px;
	left: 0;
	width: 20px;
	height: 20px;
	background-image: url('../../assets/images/check-circle.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}

.check-lists li + li {
	margin-top: 16px;
}

.bg-blue .check-lists li:before {
	background-image: url('../../assets/images/check-circle-light.svg');
}

.check-lists ul ul{
	margin-top: 17px;
	list-style: disc;
}

.check-lists ul ul li {
	margin-left: 20px;
	padding-left: 0;
}

.check-lists ul ul li:before{
	background: none;
}

/*******************************************************************************************
TAB NAV
*******************************************************************************************/
.tab-nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: var(--py-section-less);
}
