@charset "utf-8";
/* CSS Document */

/******************************

[Table of Contents]

1. Fonts
2. Body and some general stuff
3. Menu
4. Header
5. Hero
6. FAQ
7. Info
8. Contact
9. Newsletter
10. Footer


******************************/

/***********
1. Fonts
***********/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

/*********************************
2. Body and some general stuff
*********************************/
:root
{
	--font1: 'Outfit', sans-serif;
	--font2: "Work Sans", sans-serif;
	--white: #ffffff;
	--white50: rgba(255,255,255,0.5);
	--color-text-dark: #092342;
	--color-text: #092342;
	--color-text-secondary: #5A697B;
	--color-text-light: rgba(255,255,255,0.8);
	--color-background-light: #F0FFE4;
	--color-background-gray: #a8b9bd;
	--color-red: #F5A620;
	--color-accent: #F5A620;
	--color-primary: #092342;
	--color-gray: #a8b9bd;
	--color-border: #D4D9D0;
}
*
{
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	-o-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	-moz-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	-o-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
}
body
{
	font-family: var(--font2);
	font-size: 16px;
	font-weight: 400;
	background: #F0FFE4;
	color: #a5a5a5;
}
div
{
	display: block;
	position: relative;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
ul
{
	list-style: none;
	margin-bottom: 0px;
	padding-left: 0;
}
p
{
	font-family: var(--font2);
	font-size: 18px;
	line-height: 1.44;
	font-weight: 400;
	color: var(--color-text);
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
	margin-bottom: 0;
	letter-spacing: -0.024em;
}
p a
{
	display: inline;
	position: relative;
	color: inherit;
	border-bottom: solid 1px #ffa07f;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
p:last-of-type
{
	margin-bottom: 0;
}
a
{
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
a, a:hover, a:visited, a:active, a:link
{
	text-decoration: none;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
}
p a:active
{
	position: relative;
	color: #FF6347;
}
p a:hover
{
	color: #FFFFFF;
	background: #ffa07f;
}
p a:hover::after
{
	opacity: 0.2;
}
::selection
{
	background-color: rgba(0, 0, 0, 0.75);
	color: white;
}
p::selection
{
	
}
h1
{
	font-size: 64px;
	font-weight: 500;
	letter-spacing: 0.05em;
    font-style: normal;
    font-stretch: normal;
    font-optical-sizing: auto;
    opacity: 1;
	text-transform: uppercase;
	-webkit-font-smoothing: antialiased;   /* WebKit (Chrome, Safari) */
	-moz-osx-font-smoothing: grayscale;   /* Firefox on macOS */
	text-rendering: optimizeLegibility;   /* enables kerning/ligatures */
}
h2{font-size: 39px;}
h3{font-size: 21px;}
h4{font-size: 18px;}
h5{font-size: 14px;}
h1, h2, h3, h4, h5, h6
{
	font-family: var(--font1);
	font-weight: 500;
	color: var(--color-text-dark);
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
	margin-bottom: 0;
	line-height: 1.15;
}
h1::selection, 
h2::selection, 
h3::selection, 
h4::selection, 
h5::selection, 
h6::selection
{
	
}
img
{
	max-width: 100%;
}
button:active
{
	outline: none;
}
section
{
	display: block;
	position: relative;
	box-sizing: border-box;
}
.clear
{
	clear: both;
}
.clearfix::before, .clearfix::after
{
	content: "";
	display: table;
}
.clearfix::after
{
	clear: both;
}
.clearfix
{
	zoom: 1;
}
.float_left
{
	float: left;
}
.float_right
{
	float: right;
}
.trans_200
{
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.trans_300
{
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}
.trans_400
{
	-webkit-transition: all 400ms ease;
	-moz-transition: all 400ms ease;
	-ms-transition: all 400ms ease;
	-o-transition: all 400ms ease;
	transition: all 400ms ease;
}
.trans_500
{
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}
.fill_height
{
	height: 100%;
}
.super_container
{
	width: 100%;
	overflow: hidden;
}
.prlx_parent
{
	overflow: hidden;
}
.prlx
{
	height: 130% !important;
}
.parallax-window
{
    min-height: 400px;
    background: transparent;
}
.parallax_background
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.background_image
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}
.nopadding
{
	padding: 0px !important;
}
.owl-carousel,
.owl-carousel .owl-stage-outer,
.owl-carousel .owl-stage,
.owl-carousel .owl-item
{
	height: 100%;
}
.slide
{
	height: 100%;
}
.primary-button
{
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	position: relative;
	border-radius: 28px;
	background-color: var(--color-red);
	overflow: hidden;
	box-shadow: 0px 6px 10px rgba(0,0,0,0.2);
	cursor: pointer;
	-webkit-transition: all 150ms ease-out;
	-moz-transition: all 150ms ease-out;
	-ms-transition: all 150ms ease-out;
	-o-transition: all 150ms ease-out;
	transition: all 150ms ease-out;
}
.primary-button a
{
	display: block;
}
.primary-button:hover a
{
	text-shadow: 0 0 1px rgba(255,255,255,0.3), 0 0 2px rgba(255,255,255,0.3), 0 0 2px rgba(255,255,255,0.3),	0 0 2px rgba(255,255,255,0.3);
}
.primary-button.fadeInUp
{
	-webkit-animation-delay: 0ms;
	animation-delay: 0ms;
	-webkit-animation-duration: 0.75s;
	animation-duration: 0.75s;
}
.button-text
{
	font-family: var(--font1);
	padding-left: 31px;
	padding-right: 85px;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 0.05em;
	color: var(--white);
	line-height: 56px;
	user-select: none;
	z-index: 2;
}
.button-arrow
{
	display: flex;
	position: absolute;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	top: 5px;
	right: 5px;
	width: 46px;
	height: 46px;
	background-color: var(--white);
	overflow: hidden;
	border-radius: 50%;
	text-align: center;
	gap: -3px;
	z-index: 2;
}
.button-arrow i:first-child
{
	opacity: 0.4;
}
.button-arrow i:last-child
{
	margin-left: -2px;
}
.primary-button:hover
{
	background-color: #E5941C;
	box-shadow: 0px 6px 10px rgba(0,0,0,0.3);
}
.primary-button:hover .button-arrow
{
	transform: scale(0.9);
}
.button-arrow i
{
	display: block;
	position: relative;
	left: 0;
	line-height: 48px;
	font-family: 'Font Awesome 6 Pro';
	content: '\f061';
	font-weight: 600;
	font-size: 16px;
	color: var(--color-red);
	-webkit-transition: left 200ms ease-out;
	-moz-transition: left 200ms ease-out;
	-ms-transition: left 200ms ease-out;
	-o-transition: left 200ms ease-out;
	transition: left 200ms ease-out;
}
/* Secondary Button */
.secondary-button
{
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	position: relative;
	border-radius: 28px;
	background-color: transparent;
	overflow: hidden;
	border: solid 1px var(--color-red);
	cursor: pointer;
	-webkit-transition: all 150ms ease-out;
	-moz-transition: all 150ms ease-out;
	-ms-transition: all 150ms ease-out;
	-o-transition: all 150ms ease-out;
	transition: all 150ms ease-out;
}
.secondary-button a
{
	display: block;
}
.secondary-button:hover a
{
	text-shadow: 0 0 1px rgba(255,255,255,0.3), 0 0 2px rgba(255,255,255,0.3), 0 0 2px rgba(255,255,255,0.3),	0 0 2px rgba(255,255,255,0.3);
}
.secondary-button.fadeInUp
{
	-webkit-animation-delay: 0ms;
	animation-delay: 0ms;
	-webkit-animation-duration: 0.75s;
	animation-duration: 0.75s;
}
.secondary-button .button-text
{
	color: var(--color-red);
}
.secondary-button:hover .button-text
{
	color: var(--white);
}
.secondary-button .button-arrow
{
	display: flex;
	position: absolute;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	top: 5px;
	right: 5px;
	width: 46px;
	height: 46px;
	background-color: var(--color-red);
	overflow: hidden;
	border-radius: 50%;
	text-align: center;
	gap: -3px;
	z-index: 2;
}
.button-arrow i:first-child
{
	opacity: 0.4;
}
.button-arrow i:last-child
{
	margin-left: -2px;
}
.secondary-button:hover
{
	background-color: var(--color-red);
	box-shadow: 0px 6px 10px rgba(0,0,0,0.3);
}
.secondary-button:hover .button-arrow
{
	transform: scale(0.9);
	background-color: var(--white);
}
.secondary-button:hover .button-arrow i
{
	color: var(--color-red);
}
.button-arrow i
{
	display: block;
	position: relative;
	left: 0;
	line-height: 48px;
	font-family: 'Font Awesome 6 Pro';
	content: '\f061';
	font-weight: 600;
	font-size: 16px;
	color: var(--color-red);
	-webkit-transition: left 200ms ease-out;
	-moz-transition: left 200ms ease-out;
	-ms-transition: left 200ms ease-out;
	-o-transition: left 200ms ease-out;
	transition: left 200ms ease-out;
}
.secondary-button .button-arrow i
{
	color: var(--white);
}

.hero-button:hover a .button-arrow i::after
{
	opacity: 1 !important;
}
.row
{
	--bs-gutter-x: 20px !important;
}
.row>*
{
	padding-left: 10px !important;
	padding-right: 10px !important;
}
.section-subtext
{
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 18px;
	color: var(--color-text-secondary);
}
/* Section Dividers */
section:not(.hero):not(:first-of-type) {
	border-top: 2px solid var(--color-border);
}
section.hero + section {
	border-top: none;
}
.section_dark .section-title, .section_dark h3
{
	color: var(--white);
}
.section_dark .section-subtext, .section_dark p
{
	color: rgba(255,255,255,0.8);
}
.section-title span
{
	display: inline-block;
	position: relative;
	font-size: 46px;
	color: var(--color-red);
	-webkit-transform: translateY(2px);
	-moz-transform: translateY(2px);
	-ms-transform: translateY(2px);
	-o-transform: translateY(2px);
	transform: translateY(2px);
}
.dark_section
{
	background-color: var(--color-background-light);
}
body.no-scroll
{
	overflow: hidden;
}
.stagger_info,
.stagger_contact_social,
.stagger_contact_form
{
	translate: none;
	rotate: none;
	scale: none;
	-webkit-transform: rotateY(12deg) rotateX(5deg);
	-moz-transform: rotateY(12deg) rotateX(5deg);
	-ms-transform: rotateY(12deg) rotateX(5deg);
	-o-transform: rotateY(12deg) rotateX(5deg);
	transform: rotateY(12deg) rotateX(5deg);
	opacity: 0;
}
*.reveal_1
{
	translate: none;
	rotate: none;
	scale: none;
	-webkit-transform: rotateY(12deg) rotateX(5deg);
	-moz-transform: rotateY(12deg) rotateX(5deg);
	-ms-transform: rotateY(12deg) rotateX(5deg);
	-o-transform: rotateY(12deg) rotateX(5deg);
	transform: rotateY(12deg) rotateX(5deg);
	opacity: 0;
}
*.reveal_2
{
	translate: none;
	rotate: none;
	scale: none;
	-webkit-transform: rotateY(12deg) rotateX(5deg);
	-moz-transform: rotateY(12deg) rotateX(5deg);
	-ms-transform: rotateY(12deg) rotateX(5deg);
	-o-transform: rotateY(12deg) rotateX(5deg);
	transform: rotateY(12deg) rotateX(5deg);
	opacity: 0;
}
*.reveal_3
{
	rotate: none;
	scale: none;
	opacity: 0;
	transform: translateY(20px);
}
.reveal_stagger > *, .reveal_stagger_test
{
	translate: none;
	rotate: none;
	scale: none;
	-webkit-transform: rotateY(12deg) rotateX(5deg);
	-moz-transform: rotateY(12deg) rotateX(5deg);
	-ms-transform: rotateY(12deg) rotateX(5deg);
	-o-transform: rotateY(12deg) rotateX(5deg);
	transform: rotateY(12deg) rotateX(5deg);
	opacity: 0;
}

/*********************************
3. Menu
*********************************/

.menu
{
	display: block;
	position: fixed;
	top: 0;
	right: 0;
	width: 90%;
	height: 90%;
	z-index: 999;
	opacity: 0;
	pointer-events: none;
	transition: all 200ms;
	background-color: var(--white);
	overflow-y: auto;
	overflow-x: hidden;
}
.menu.active
{
	width: 100vw;
	height: 100vh;
	opacity: 1;
	pointer-events: visible;
}
.menu-container
{
	width: 100%;
	height: 100%;
	overflow-y: auto;
	padding-left: 44px;
	padding-right: 44px;
}
.menu-container img
{
	position: fixed;
	top: 72px;
	right: 0;
	height: calc(100% - 72px);
	width: auto;
	opacity: 0.5;
}
.menu-content
{
	width: 100%;
	height: 100%;
	padding-top: 108px;
}
.menu-nav-container
{
	display: block;
	width: 100%;
}
.menu-nav-container li a
{
	display: inline-block;
	position: relative;
	font-family: var(--font1);
	font-size: 28px;
	font-weight: 400;
	line-height: 2.5;
	color: var(--color-text-dark);
}
.menu-nav-container li a:hover
{
	color: var(--color-red);
}
.menu-nav-container li:not(:last-of-type)
{
	margin-bottom: 0px;
}
.menu-btn
{
	width: 100%;
}
.menu-cta-button
{
	display: inline-flex !important;
	background-color: var(--color-text-dark);
	margin-top: 53px;
}
.menu-cta-button i
{
	color: var(--color-text-dark);
}
.menu-cta-button:hover i
{
	color: var(--color-red);
}
.menu-social
{
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 72px;
	background-color: var(--color-background-light);
	padding-left: 48px;
	padding-right: 48px;
	gap: 24px;
	margin-top: 38px;
}
.menu-social li a i
{
	font-size: 24px;
	color: var(--color-gray);
}
.menu-social li a:hover i
{
	color: var(--color-red);
}
.menu-btn
{
	padding-bottom: 112px;
}

/*********************************
4. Header
*********************************/

.header
{
	position: absolute;
	top: 24px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 100%;
	padding-left: 20px;
	padding-right: 20px;
	z-index: 1000;
}
.header.hidden
{
	position: fixed;
	top: -100px;
	padding-left: 0;
	padding-right: 0;
	box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.05);
}
.header.scrolled
{
	top: 0px;
	transition: all 300ms ease;
}
.header_inner
{
	padding: 32px;
	background-color: #092342;
	border-radius: 16px;
	border-bottom: 3px solid #092342;
}
.header.scrolled .header_inner
{
	border-radius: 0px;
	padding: 20px;
	border-bottom: 3px solid #092342;
	background-color: #092342;
}
.header-logo a
{
	position: relative;
	width: 100%;
	height: 100%;
}
.header-logo span
{
	font-family: var(--font1);
	text-transform: uppercase;
	color: var(--white);
	font-size: 21px;
	font-weight: 600;
	letter-spacing: 0.05em;
}
.header-logo img
{
	width: 48px;
	height: 48px;
	margin-right: 8px;
}
.header-logo span span
{
	color: var(--color-red);
}
.main-nav
{
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.main-nav ul
{
	gap: 40px;
}
.main-nav ul li
{
	position: relative;
}
.main-nav ul li a
{
	display: inline-block;
	position: relative;
	font-family: var(--font2);
	font-size: 18px;
	line-height: 36px;
	color: var(--white);
	font-weight: 500;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.main-nav ul li a:hover
{
	color: var(--color-red);
}
.main-nav ul li a::after
{
	position: absolute;
	bottom: 4px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 0%;
	height: 2px;
	content: '';
	opacity: 0.7;
	background-color: var(--color-red);
	pointer-events: none;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}
.main-nav ul li a:hover::after
{
	width: 100%;
}
.header-button
{
	display: inline-block;
	height: 46px;
	background-color: var(--color-background-light);
	padding-left: 32px;
	padding-right: 32px;
	line-height: 46px;
	border-radius: 23px;
	color: #092342;
	font-weight: 500;
	box-shadow: 0px 6px 10px rgba(0,0,0,0.2);
}
.header-button:hover
{
	background-color: var(--color-background-light);
	box-shadow: 0px 6px 10px rgba(0,0,0,0.3);
	opacity: 0.9;
}
.hamburger:hover .hamburger-inner, .hamburger:hover .hamburger-inner::before, .hamburger:hover .hamburger-inner::after
{
	background-color: var(--color-red);
}
#hamburger
{
	display: none;
	transform: scale(0.7);
}

/*********************************
5. Hero
*********************************/

.hero
{
    display: block;
    position: relative;
	margin-top: 24px;
	width: 100%;
	padding-top: 132px;
	padding-left: 20px;
	padding-right: 20px;
}
.hero-inner
{
	width: 100%;
    height: 308px;
	border-radius: 16px;
	overflow: hidden;
}
.hero-background
{
	position: absolute;
	top: 0;
	left: 0;
    width: 100%;
    height: 100%;
}
.reveal_hero
{
	scale: 0.95;
	opacity: 0;
}
.hero-background img
{
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-background img.logotype-image
{
    object-fit: contain;
    object-position: center center;
    transform: scale(0.70);
    transform-origin: center center;
}
.home_content_container
{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	background-color: var(--color-text-dark);
}
.hero_content
{
	top: 52%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}
.hero_content_container
{
	display: flex;
	position: absolute;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}
.hero-title
{
	color: var(--white);
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
	text-shadow: 0px 3px 7px rgba(0,0,0,0.35);
}
.hero-title.wow.fadeInUp
{
	-webkit-animation-duration: 0.2s;
    animation-duration: 0.2s;
	animation-delay: 0.4s;
}
.breadcrumbs
{
    margin-top: 12px;
}
.breadcrumbs ol
{
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    list-style-type: none !important;
    padding-left: 0;
}
.breadcrumbs ol li:not(:last-of-type)::after
{
    display: inline-block;
    position: relative;
    font-family: var(--font2);
    font-size: 18px;
    color: var(--color-red);
    content: '/';
    margin-left: 4px;
    margin-right: 3px;
}
.breadcrumbs ol li, .breadcrumbs ol li a
{
    font-family: var(--font2);
    font-size: 18px;
    color: var(--color-red);
}
.breadcrumbs ol li
{
    color: var(--color-red);
}
.breadcrumbs ol li a:hover
{
    color: var(--color-red);
}

/*********************************
6. FAQ
*********************************/

.faq
{
    padding-top: 94px;
    padding-bottom: 112px;
}
.faq_row
{
    margin-top: 53px;
}
.accordionjs
{
    margin-top: 0;
    margin-bottom: 0;
}
.accordionjs .acc_section,
.accordionjs .acc_section.acc_active > .acc_head
{
    border: none;
}
.accordionjs .acc_section.acc_active > .acc_head button
{
    color: var(--white);
}
.accordionjs .acc_section .acc_head
{
    height: 56px;
    border-radius: 28px;
    background-color: var(--white);
    border: solid 1px #d5d5d5;
    overflow: hidden;
    padding-left: 32px;
    padding-right: 32px;
    padding-top: 0;
    padding-bottom: 0;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.accordionjs .acc_section .acc_head:hover
{
    background-color: var(--color-text-dark);
}
.accordionjs .acc_section .acc_head:hover button
{
    color: var(--white);
}
.accordionjs .acc_section.acc_active > .acc_head
{
    background-color: var(--color-text-dark);
}
.accordionjs .acc_section:first-of-type, .accordionjs .acc_section:first-of-type .acc_head
{
    border-radius: 28px !important;
}
.faq_item:not(:last-child)
{
    margin-bottom: 20px;
}
.faq_item button
{
    background-color: transparent;
    border: none;
    outline: none;
    display: block;
    width: 100%;
    color: var(--color-text-dark);
    font-family: var(--font1);
    font-size: 21px;
    font-weight: 500;
    text-align: left;
    line-height: 56px;
}
.accordionjs .acc_section .acc_content
{
    padding-left: 58px;
    padding-top: 25px;
    padding-bottom: 11px;
    font-family: var(--font2);
    font-size: 18px;
    font-weight: 400;
    color: var(--color-text);
}
.acc_content
{
    position: relative;
}
.faq_accordion::after
{
    display: block;
    position: absolute;
    top: 0;
    left: 32px;
    width: 8px;
    height: calc(100%);
    content: '';
    background-color: var(--color-gray);
    z-index: -1;
}
dd
{
    margin-bottom: 0;
}
.faq_item button::after
{
    position: absolute;
    right: 24px;
    font-family: 'Font Awesome 6 Pro';
    content: '\f078';
    font-size: 21px;
    line-height: 56px;
}
.acc_active button::after
{
    content: '\f077';
}
.faq_image_container
{
    width: 100%;
    height: 100%;
}
.faq_image
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
}
.faq_image img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.faq_logo_display
{
    background-color: #092342;
    display: flex;
    align-items: center;
    justify-content: center;
}
.faq_logo_content
{
    width: 100%;
    height: 100%;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.faq_logo_text
{
    font-family: var(--font1);
    font-size: clamp(48px, 8vw, 120px);
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: 100%;
    text-align: center;
    line-height: 1.2;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
}

/*********************************
7. Info
*********************************/

.info
{
    padding-top: 84px;
    padding-bottom: 84px;
    background-color: var(--color-background-light);
}
.info-list
{
    width: 100%;
    gap: 20px;
    justify-content: center;
}
.info-list li
{
    position: relative;
    width: calc((100% - 40px) / 3);
    border: solid 1px rgba(31,31,31,0.15);
    border-radius: 16px;
    padding-left: 32px;
    padding-right: 80px;
    padding-top: 36px;
    padding-bottom: 36px;
}
.info-list li > *
{
    display: block;
}
.info-list li strong
{
    font-family: var(--font2);
    font-size: 18px;
    color: var(--color-text);
    font-weight: 400;
}
.info-list li a,
.info-list li span
{
    font-family: var(--font2);
    font-size: 20px;
    color: var(--color-text-dark);
    font-weight: 500;
    line-height: 2;
    margin-top: 8px;
}
.info-list li a:hover
{
    color: var(--color-red);
}
.info-list li::after
{
    display: flex;
    position: absolute;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-text-dark);
    font-family: 'Font Awesome 6 Pro';
    font-weight: 100;
    font-size: 18px;
    color: var(--white);
}
.info-list li:first-child::after
{
    content: '\f0e0';
}
.info-list li:nth-child(2)::after
{
    content: '\f0e0';
}
.info-list li:nth-child(3)::after
{
    content: '\f095';
}

/*********************************
8. Contact
*********************************/

.contact
{
    padding-top: 112px;
    padding-bottom: 112px;
}
.contact_form
{
    display: block;
    position: sticky;
    top: 20px;
    width: 100%;
    padding-left: 32px;
    padding-right: 32px;
    padding-top: 44px;
    padding-bottom: 44px;
    border-radius: 16px;
    border: solid 1px #e4e4e4;
    background-color: #092342;
    z-index: 10;
    opacity: 1 !important;
    transform: none !important;
    -webkit-transform: none !important;
    -moz-transform: none !important;
    -ms-transform: none !important;
    -o-transform: none !important;
}
.contact_form *,
.contact_form .contact_label,
.contact_form .contact_input,
.contact_form .contact_textarea,
.contact_form .contact_button
{
    opacity: 1 !important;
    transform: none !important;
    -webkit-transform: none !important;
    -moz-transform: none !important;
    -ms-transform: none !important;
    -o-transform: none !important;
}

/* Remove animations from all sections below FAQ */
.info,
.info *,
.info .info-list li,
.contact,
.contact *,
.contact .section-title,
.contact .section-subtext,
.contact .contact_social li,
.newsletter,
.newsletter *,
.newsletter .section-title,
.newsletter .section-subtext,
.newsletter .newsletter_input,
.newsletter .newsletter_button
{
    opacity: 1 !important;
    transform: none !important;
    -webkit-transform: none !important;
    -moz-transform: none !important;
    -ms-transform: none !important;
    -o-transform: none !important;
}
.contact_form > div
{
    gap: 12px;
}
.contact_form > div > div
{
    width: calc((100% - 12px) / 2);
}
.contact_label
{
    display: block;
    position: relative;
    font-family: var(--font2);
    font-weight: 400;
    color: var(--white);
    margin-bottom: 9px;
}
.contact_input
{
    display: block;
    position: relative;
    width: 100%;
    border: solid 1px #e4e4e4;
    height: 56px;
    border-radius: 28px;
    background-color: var(--white);
    padding-left: 24px;
    outline: none;
    font-size: 16px;
    font-family: var(--font2);
    font-weight: 400;
    color: var(--color-text-dark);
}
.contact_form .contact_input
{
    color: var(--color-text-dark);
}
.contact_input::-webkit-input-placeholder
{
	font-size: 16px !important;
	font-weight: 400 !important;
    color: rgba(31,31,31,0.4);
}
.contact_input:-moz-placeholder
{
	font-size: 16px !important;
	font-weight: 400 !important;
    color: rgba(31,31,31,0.4);
}
.contact_input::-moz-placeholder
{
	font-size: 16px !important;
	font-weight: 400 !important;
    color: rgba(31,31,31,0.4);
} 
.contact_input:-ms-input-placeholder
{ 
	font-size: 16px !important;
	font-weight: 400 !important;
    color: rgba(31,31,31,0.4);
}
.contact_input::input-placeholder
{
	font-size: 16px !important;
	font-weight: 400 !important;
    color: rgba(31,31,31,0.4);
}
.contact_label_message
{
    margin-top: 24px;
}
.contact_textarea
{
    display: block;
    position: relative;
    width: 100%;
    border: solid 1px #e4e4e4;
    height: 143px;
    border-radius: 28px;
    background-color: var(--white);
    padding-left: 24px;
    outline: none;
    font-size: 16px;
    font-family: var(--font2);
    font-weight: 400;
    color: var(--color-text-dark);
    padding-top: 20px;
}
.contact_form .contact_textarea
{
    color: var(--color-text-dark);
}
.contact_textarea::-webkit-input-placeholder
{
	font-size: 16px !important;
	font-weight: 400 !important;
    color: rgba(31,31,31,0.4);
}
.contact_textarea:-moz-placeholder
{
	font-size: 16px !important;
	font-weight: 400 !important;
    color: rgba(31,31,31,0.4);
}
.contact_textarea::-moz-placeholder
{
	font-size: 16px !important;
	font-weight: 400 !important;
    color: rgba(31,31,31,0.4);
} 
.contact_textarea:-ms-input-placeholder
{ 
	font-size: 16px !important;
	font-weight: 400 !important;
    color: rgba(31,31,31,0.4);
}
.contact_textarea::input-placeholder
{
	font-size: 16px !important;
	font-weight: 400 !important;
    color: rgba(31,31,31,0.4);
}
.contact_button
{
    display: flex;
	flex-direction: row;
	align-items: center;
    justify-content: center;
	position: relative;
    width: 100%;
    height: 56px;
	border-radius: 28px;
	background-color: var(--color-text-dark);
	overflow: hidden;
	box-shadow: 0px 6px 10px rgba(0,0,0,0.2);
	cursor: pointer;
	-webkit-transition: all 150ms ease-out;
	-moz-transition: all 150ms ease-out;
	-ms-transition: all 150ms ease-out;
	-o-transition: all 150ms ease-out;
	transition: all 150ms ease-out;
	border: none;
	outline: none;
    margin-top: 24px;
}
.contact_form .contact_button
{
    background-color: #F0FFE4;
}
.contact_button:hover a
{
	text-shadow: 0 0 1px rgba(255,255,255,0.3), 0 0 2px rgba(255,255,255,0.3), 0 0 2px rgba(255,255,255,0.3),	0 0 2px rgba(255,255,255,0.3);
}
.contact_button.fadeInUp
{
	-webkit-animation-delay: 0ms;
	animation-delay: 0ms;
	-webkit-animation-duration: 0.75s;
	animation-duration: 0.75s;
}
.contact_button_text
{
	font-family: var(--font1);
	padding-left: 31px;
	padding-right: 85px;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 0.05em;
	color: var(--white);
	line-height: 56px;
	user-select: none;
	z-index: 2;
}
.contact_form .contact_button_text
{
	color: #092342;
}
.contact_button_arrow
{
	display: flex;
	position: absolute;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	top: 5px;
	right: 5px;
	width: 46px;
	height: 46px;
	background-color: var(--white);
	overflow: hidden;
	border-radius: 50%;
	text-align: center;
	gap: -3px;
	z-index: 2;
    -webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.contact_form .contact_button_arrow
{
	border: 2px solid var(--color-primary);
}
.contact_button_arrow i:first-child
{
	opacity: 0.4;
}
.contact_button_arrow i:last-child
{
	margin-left: -2px;
}
.contact_button:hover
{
	background-color: #E5941C;
	box-shadow: 0px 6px 10px rgba(0,0,0,0.3);
}
.contact_button:hover .contact_button_arrow
{
	transform: scale(0.9);
}
.contact_button:hover .contact_button_arrow i
{
    color: var(--color-red);
}
.contact_button_arrow i
{
	display: block;
	position: relative;
	left: 0;
	line-height: 48px;
	font-family: 'Font Awesome 6 Pro';
	content: '\f061';
	font-weight: 600;
	font-size: 16px;
	color: var(--color-text-dark);
	-webkit-transition: left 200ms ease-out;
	-moz-transition: left 200ms ease-out;
	-ms-transition: left 200ms ease-out;
	-o-transition: left 200ms ease-out;
	transition: left 200ms ease-out;
}
.contact_form .contact_button_arrow i
{
	color: var(--color-primary);
}
/* Ensure hover keeps primary brand color for arrows on the contact form button */
.contact_form .contact_button:hover .contact_button_arrow i
{
	color: var(--color-primary);
}

/* Fixed Send Message Button */
.contact_button_fixed
{
	display: none;
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1000;
	width: 90%;
	max-width: 500px;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}
.contact_button_fixed.show
{
	display: block;
}
.contact_button_fixed_inner
{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 100%;
	height: 56px;
	border-radius: 28px;
	background-color: var(--color-text-dark);
	overflow: hidden;
	box-shadow: 0px 6px 10px rgba(0,0,0,0.2);
	cursor: pointer;
	-webkit-transition: all 150ms ease-out;
	-moz-transition: all 150ms ease-out;
	-ms-transition: all 150ms ease-out;
	-o-transition: all 150ms ease-out;
	transition: all 150ms ease-out;
	border: none;
	outline: none;
}
.contact_button_fixed_inner:hover
{
	background-color: #E5941C;
	box-shadow: 0px 6px 10px rgba(0,0,0,0.3);
}
.contact_button_fixed_inner:hover .contact_button_arrow
{
	transform: scale(0.9);
}
.contact_button_fixed_inner:hover .contact_button_arrow i
{
	color: var(--color-red);
}
.contact_button_fixed_inner .contact_button_text
{
	font-family: var(--font1);
	padding-left: 31px;
	padding-right: 85px;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 0.05em;
	color: var(--white);
	line-height: 56px;
	user-select: none;
	z-index: 2;
}
.contact_button_fixed_inner .contact_button_arrow
{
	display: flex;
	position: absolute;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	top: 5px;
	right: 5px;
	width: 46px;
	height: 46px;
	background-color: var(--white);
	overflow: hidden;
	border-radius: 50%;
	text-align: center;
	gap: -3px;
	z-index: 2;
}
.contact_button_fixed_inner .contact_button_arrow i:first-child
{
	opacity: 0.4;
}
.contact_button_fixed_inner .contact_button_arrow i:last-child
{
	margin-left: -2px;
}
.contact_button_fixed_inner .contact_button_arrow i
{
	display: block;
	position: relative;
	left: 0;
	line-height: 48px;
	font-family: 'Font Awesome 6 Pro';
	content: '\f061';
	font-weight: 600;
	font-size: 16px;
	color: var(--color-text-dark);
	-webkit-transition: left 200ms ease-out;
	-moz-transition: left 200ms ease-out;
	-ms-transition: left 200ms ease-out;
	-o-transition: left 200ms ease-out;
	transition: left 200ms ease-out;
}
.form-status-contact
{
    margin-top: 8px;
	font-size: 18px;
}
.contact_content
{
    height: 100%;
    padding-right: 250px;
}
.contact_social_container
{
    display: inline-block;
}
.contact_social
{
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 40px;
    gap: 7px;
    padding: 12px;
    border-radius: 36px;
    border: solid 1px #e4e4e4;
}
.contact_social li
{
    display: block;
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-text-dark);
}
.contact_social li a
{
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    color: var(--white);
    font-size: 20px;
}
.contact_social li a i
{
	font-size: 22px;
    line-height: 48px;
	color: var(--white);
}
.contact_social li a:hover i
{
	color: var(--color-red);
}

/*********************************
9. Newsletter
*********************************/

.newsletter
{
	display: block;
	position: relative;
	padding-top: 56px;
	padding-bottom: 65px;
	width: 100%;
	background-color: var(--color-text-dark);
}
.newsletter_form
{
	display: inline-block;
	position: relative;
	margin-top: 41px;
	width: 400px;
	max-width: 400px;
}
.newsletter_input
{
	width: 100%;
	background-color: var(--white);
	height: 56px;
	border-radius: 28px;
	outline: none;
	border: solid 1px #e5eaeb;
	font-size: 18px;
	font-weight: 400;
	color: var(--color-text-dark);
	padding-left: 32px;
	padding-left: 32px;
	font-family: var(--font2);
}
.newsletter_input::-webkit-input-placeholder
{
	font-size: 18px !important;
	font-weight: 400 !important;
	color: var(--color-text);
}
.newsletter_input:-moz-placeholder
{
	font-size: 18px !important;
	font-weight: 400 !important;
	color: var(--color-text);
}
.newsletter_input::-moz-placeholder
{
	font-size: 18px !important;
	font-weight: 400 !important;
	color: var(--color-text);
} 
.newsletter_input:-ms-input-placeholder
{ 
	font-size: 18px !important;
	font-weight: 400 !important;
	color: var(--color-text);
}
.newsletter_input::input-placeholder
{
	font-size: 18px !important;
	font-weight: 400 !important;
	color: var(--color-text);
}
.newsletter_input:hover, .newsletter_input:focus
{
	outline: solid 2px var(--color-gray);
}
.visually-hidden
{
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	border: 0;
	white-space: nowrap;
}
.newsletter_button
{
	display: flex;
    position: absolute;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    top: 5px;
    right: 5px;
    width: 46px;
    height: 46px;
    overflow: hidden;
    border-radius: 50%;
    text-align: center;
	background-color: var(--color-red);
	border: none;
	outline: none;
}
.newsletter_button i
{
	display: block;
    position: relative;
    left: 0;
    line-height: 48px;
    font-weight: 600;
    font-size: 16px;
	color: var(--white);
}
.newsletter_button i:first-of-type
{
	opacity: 0.5;
}
.newsletter_button i:last-of-type
{
	margin-left: -2px;
}
.form-status
{
	margin-top: 8px;
	font-size: 18px;
}
.newsletter_button:hover
{
	background-color: #E5941C;
	box-shadow: 0px 6px 10px rgba(0,0,0,0.3);
}
.scroll-top-container
{
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
}
.scroll-top
{
	position: absolute;
	display: inline-flex;
	bottom: -22px;
	right: 12px;
	width: 44px;
	height: 44px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	overflow: hidden;
	background-color: var(--color-text);
}
.scroll-top i
{
	font-size: 16px;
	color: var(--color-text-dark);
}
.scroll-top:hover
{
	background-color: var(--white);
}

/*********************************
10. Footer
*********************************/

.footer
{
	display: block;
	background-color: var(--color-text-dark);
	padding-top: 60px;
	border-top: solid 1px rgba(255,255,255,0.1);
	box-sizing: border-box;
}
.footer_row
{
	padding-bottom: 65px;
}
.footer_content
{
	max-width: 420px;
}
.logo span
{
	font-family: var(--font1);
	text-transform: uppercase;
	color: var(--white);
	font-size: 24px;
	font-weight: 500;
	letter-spacing: 0.05em;
}
.logo img
{
	width: 52px;
	height: 52px;
	margin-right: 8px;
}
.logo span span
{
	color: #fc708b;
}
.footer_desc
{
	margin-top: 36px;
	color: var(--white);
	opacity: 0.44;
	font-weight: 400;
}
.footer_social
{
	gap: 24px;
	margin-top: 38px;
}
.footer_social li a i
{
	font-size: 24px;
	color: var(--white);
}
.footer_social li a:hover i
{
	color: var(--color-red);
}
.footer_extra
{
	box-sizing: border-box;
	border-top: solid 1px rgba(255,255,255,0.1);
}
.privacy_container
{
	height: 100px;
}
.footer_nav h3, .footer_contact h3
{
	font-family: var(--font1);
	font-size: 21px;
	letter-spacing: 0.02em;
	font-weight: 500;
	color: var(--white);
}
.footer_nav ul, .footer_contact address
{
	margin-top: 30px;
}
address
{
	margin-bottom: 0;
}
address > *
{
	display: block;
}
address span
{
	display: block;
	position: relative;
}
.footer_nav ul li:not(:last-of-type)
{
	margin-bottom: 4px;
}
footer address a
{
	margin-bottom: 4px;
	line-height: 2;
}
footer address span
{
	margin-bottom: 7px;
	line-height: 1.44;
}
.footer_row
{
	padding-bottom: 53px;
}
.footer_nav ul li, .footer address
{
	font-family: var(--font2);
	font-size: 18px;
	line-height: 1.44;
	color: rgba(255,255,255,0.44);
}
.footer_nav ul li a, footer address a
{
	display: inline-block;
	position: relative;
	font-family: var(--font2);
	font-size: 18px;
	line-height: 2;
	color: rgba(255,255,255,0.44);
}
.footer_nav ul li a:hover, address a:hover
{
	color: var(--white);
}
.copyright
{
	font-family: var(--font2);
	font-size: 16px;
	color: var(--white);
}
.copyright:not(span)
{
	opacity: 0.44;
}
.copyright span
{
	color: var(--color-red);
	opacity: 1 !important;
}
.privacy_container li span a
{
	font-family: var(--font2);
	font-size: 16px;
	color: var(--white);
	opacity: 0.44;
}
.privacy_container li span a:hover
{
	color: var(--white);
	opacity: 1;
}
.privacy span
{
	display: inline-block;
	position: relative;
}
.privacy span:not(:last-of-type)::after
{
	display: inline-block;
	position: relative;
	content: '|';
	margin-left: 6px;
	margin-right: 1px;
}