/*See style.php for styles*/

/*
Theme Name: JD Base Theme Child
Theme URI: N/A
Author: Chen
Author URI: https://jurisdigital.com/
Description: Custom Theme design by https://jurisdigital.com/
Version: 1.0
Template: JD_Base_Theme
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

:root {
	--primary-color: #0E1D35;
	--secondary-color: #2B3D5B;
	--font-black-color: #212121;
}

/* *
* Begin Global Style
* */
div[data-lastpass-icon-root] {
	display: none;
}

:focus-visible {
	outline: none;
}

*, body {
	box-sizing: border-box;
}

/* Heading/H1 */
h1 {
	color: var(--font-black-color);
	font-family: Marcellus;
	font-size: 64px;
	font-style: normal;
	font-weight: 400;
	line-height: 110%; /* 70.4px */
	letter-spacing: -1.28px;
}

/* Heading/H2 */
h2 {
	color: var(--font-black-color);
	font-family: Marcellus;
	font-size: 48px;
	font-style: normal;
	font-weight: 400;
	line-height: 120%; /* 57.6px */
	letter-spacing: -0.96px;
}

/* Heading/H3 */
h3 {
	color: var(--font-black-color);
	font-family: Marcellus;
	font-size: 32px;
	font-style: normal;
	font-weight: 400;
	line-height: 120%; /* 38.4px */
	letter-spacing: -0.64px;
}

/* Heading/H4 */
h4 {
	color: var(--font-black-color);
	font-family: Marcellus;
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	line-height: 120%; /* 28.8px */
	letter-spacing: -0.48px;
}

/* Heading/H5 */
h5 {
	color: var(--font-black-color);
	font-family: Marcellus;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 120%; /* 21.6px */
	letter-spacing: -0.36px;
}

/* Heading/H6 */
h6 {
	color: var(--font-black-color);
	font-family: Marcellus;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 120%; /* 19.2px */
	letter-spacing: -0.32px;
}

body {
	margin: 0;
	padding: 0;
	/* background-color: #606063; */
}

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

.container {
	width: 100%;
	max-width: 1920px;
	padding: 100px 150px;
	margin: 0 auto;
}

.btn {
	display: flex;
	padding: 15px 30px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	font-family: Figtree;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
	text-decoration: none;
	width: fit-content;
	transition: all .25s ease-in-out;
	border-radius: 999px;
	white-space: nowrap;
}

.btn.btn-default {
	color: #fff;
	text-decoration: none;
}

.btn.btn-default:hover {
	text-decoration: underline;
}

.btn.btn-default svg path {
	transition: all .25s ease-in-out;
}

.btn.btn-default:hover svg path {
	fill: #7C8594;
}

.btn.btn-primary {
	background-color: #7C8594;
	color: #fff;
}

.btn.btn-primary:hover {
	background-color: #fff;
	color: #7C8594;
}

.btn svg,
.btn svg path,
.btn svg line {
	transition: all .25s ease-in-out
}

.btn.btn-primary:hover svg path {
	fill: #7C8594;	
}

.btn.btn-primary:hover svg line {
	stroke: #7C8594;
}

.btn.btn-dark {
	background-color: #0E1D35;
	color: #fff;
	text-decoration: none;
}

.btn.btn-dark:hover {
	background-color: #7C8594;
}

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

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

.text-uppercase {
	text-transform: uppercase;
}

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

.slick-dots {
	display: flex;
	list-style: none;
	justify-content: center;
	align-items: center;
	gap: 15px;
	margin: 75px 0 0 0;
}

.slick-dots button {
	display: none;
}

.slick-dots li {
	cursor: pointer;
	width: 20px;
	height: 20px;
	background: #9D9FA2;
	border-radius: 999px;
	transition: all .25s ease-in-out;
}

.slick-dots li.slick-active {
	background: var(--primary-color);
}

.slick-arrow:hover {
	cursor: pointer;
}

.shrink-normal-wrapper {
	width: 100%;
	max-width: 1344px;
	margin: 0 auto;
}

@media (max-width: 1440px) {
	.container {
		padding: 100px 40px;
	}
}

@media(max-width: 1440px) {
	.btn {
		font-size: 20px;
		white-space: unset;
	}
}

@media (max-width: 768px) {
	.container {
		padding: 100px 4vw;
	}

	h1 {
		font-size: 48px;
	}

	h2 {
		font-size: 32px;
	}

	h3 {
		font-size: 28px;
	}

	h4 {
		font-size: 20px;
	}

	h5 {
		font-size: 16px;
	}

	h6 {
		font-size: 12px;
	}
	
	.btn {
		font-size: 16px;
		white-space: unset;
	}
}

@media (max-width: 468px) {
	.container {
		padding: 80px 4vw;
	}

	.btn {
		padding: 10px 12px;
		font-size: 14px;
	}
}

/* *
* Begin Header Style
* */
header#main-header {
	position: relative;
	z-index: 1;
	border-bottom: 1px solid rgba(255, 255, 255, 0.20);
}

header#main-header.sticky-header {
	position: fixed;
	width: 100%;
	top: 0;
	background-color: #051227;
}

body.logged-in header#main-header.sticky-header {
	top: 32px;
}


header#main-header .container {
	padding: 0px calc(30px + 6.25vw);
}

header#main-header .inner-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: calc(66px + 3.125vw);
}

header#main-header .inner-wrapper .logo img {
	width: 314px;
	height: auto;
}

header#main-header .inner-wrapper .menu-wrapper {
	flex: 1;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	column-gap: calc(66px + 3.125vw);
}

header#main-header .inner-wrapper .menu-wrapper .btn-menu-close,
header#main-header .inner-wrapper .menu-wrapper .btn-menu-toggle {
	display: none;
}

header#main-header .inner-wrapper .menu-wrapper ul#menu-main-menu {
	display: flex;
	column-gap: calc(20px + 3.125vw);
	list-style: none;
}

header#main-header .inner-wrapper .menu-wrapper ul#menu-main-menu > li a {
	color: #FFF;
	font-family: Figtree;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	text-transform: uppercase;
	white-space: nowrap;
	text-decoration: none;
	transition: all .25s ease-in-out;
}

header#main-header .inner-wrapper .menu-wrapper ul#menu-main-menu li.menu-item-has-children>.arrow {
	display: flex;
	justify-content: center;
	align-items: center;
}

header#main-header .inner-wrapper .menu-wrapper ul#menu-main-menu > li.menu-item-has-children>.arrow {
	display: none;
}

header#main-header .inner-wrapper .menu-wrapper ul#menu-main-menu > li.menu-item-has-children> ul > li >.arrow path {
	fill: var(--font-black-color);
}

header#main-header .inner-wrapper .menu-wrapper ul#menu-main-menu li {
	height: inherit;
	position: relative;
	display: flex;
	column-gap: 5px;
	justify-content: center;
	align-items: center;
}

header#main-header .inner-wrapper .menu-wrapper ul#menu-main-menu > li {
	padding: 34px 0;
	border-bottom: 5px solid transparent;
	transition: all .25s ease-in-out;
}

header#main-header .inner-wrapper .menu-wrapper ul#menu-main-menu > li:hover,
header#main-header .inner-wrapper .menu-wrapper ul#menu-main-menu > li.current-menu-item {
	border-color: #fff;
}

header#main-header .inner-wrapper .menu-wrapper ul#menu-main-menu>li.menu-item-has-children>ul.sub-menu {
	left: -3000px;
	display: flex;
	position: absolute;
	width: max-content;
	top: 100%;
	background-color: #fff;
	box-shadow: 0px 2px 10px 4px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0px 2px 10px 4px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0px 2px 10px 4px rgba(0, 0, 0, 0.1);
	flex-direction: column;
	border-radius: 5px;
}

header#main-header .inner-wrapper .menu-wrapper ul#menu-main-menu>li.menu-item-has-children>ul.sub-menu>li {
	width: 100%;
	padding: 10px 20px;
}

header#main-header .inner-wrapper .menu-wrapper ul#menu-main-menu>li.menu-item-has-children>ul.sub-menu>li:not(:last-child) {
	margin-bottom: 2px;
}

header#main-header .inner-wrapper .menu-wrapper ul#menu-main-menu>li.menu-item-has-children:hover>ul.sub-menu {
	list-style: none;
	left: -5px;
	z-index: 1;
}

header#main-header .inner-wrapper .menu-wrapper ul#menu-main-menu>li.menu-item-has-children:hover>ul.sub-menu>li>a {
	color: #787878;
	font-size: 16px;
	width: 100%;
	box-sizing: border-box;
	transition: color .25s ease-in-out;
}

header#main-header .inner-wrapper .menu-wrapper ul#menu-main-menu>li.menu-item-has-children:hover>ul.sub-menu>li:hover>a {
	color: var(--primary-color);
}

header#main-header .inner-wrapper .menu-wrapper ul#menu-main-menu > li.menu-item-has-children > ul.sub-menu > li.menu-item-has-children > ul.sub-menu {
	list-style: none;
	left: -3000px;
	display: flex;
	position: absolute;
	width: max-content;
	top: 0;
	background-color: transparent;
	box-shadow: 0px 2px 10px 4px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0px 2px 10px 4px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0px 2px 10px 4px rgba(0, 0, 0, 0.1);
	flex-direction: column;
}

header#main-header .inner-wrapper .menu-wrapper ul#menu-main-menu > li.menu-item-has-children > ul.sub-menu > li.menu-item-has-children:hover > ul.sub-menu {
	left: 100%;
}

header#main-header .inner-wrapper .menu-wrapper ul#menu-main-menu > li.menu-item-has-children > ul.sub-menu > li.menu-item-has-children > ul.sub-menu > li > a {
	font-size: 16px;
	color: #272727;
	width: 100%;
	box-sizing: border-box;
	transition: color .25s ease-in-out;
}

header#main-header .inner-wrapper .menu-wrapper ul#menu-main-menu > li.menu-item-has-children > ul.sub-menu > li.menu-item-has-children > ul.sub-menu > li {
	width: 100%;
	padding: 10px 20px;
	background-color: #e7e7e7;
}

header#main-header .inner-wrapper .menu-wrapper ul#menu-main-menu > li.menu-item-has-children > ul.sub-menu > li.menu-item-has-children > ul.sub-menu > li:hover {
	background-color: #d0d0d0;
}

header#main-header .inner-wrapper .menu-wrapper ul#menu-main-menu > li.menu-item-has-children > ul.sub-menu > li.menu-item-has-children > ul.sub-menu > li:not(:last-child) {
	margin-bottom: 2px;
}

/* Begin 3 lv menu */
header#main-header .inner-wrapper .menu-wrapper ul#menu-main-menu > li.menu-item-has-children > ul.sub-menu > li.menu-item-has-children > ul.sub-menu > li.menu-item-has-children > ul.sub-menu {
	list-style: none;
	left: -3000px;
	display: flex;
	position: absolute;
	width: max-content;
	top: 0;
	background-color: transparent;
	box-shadow: 0px 2px 10px 4px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0px 2px 10px 4px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0px 2px 10px 4px rgba(0, 0, 0, 0.1);
	flex-direction: column;
}

header#main-header .inner-wrapper .menu-wrapper ul#menu-main-menu > li.menu-item-has-children > ul.sub-menu > li.menu-item-has-children > ul.sub-menu > li.menu-item-has-children:hover > ul.sub-menu {
	left: 100%;
}

header#main-header .inner-wrapper .menu-wrapper ul#menu-main-menu > li.menu-item-has-children > ul.sub-menu > li.menu-item-has-children > ul.sub-menu > li.menu-item-has-children > ul.sub-menu > li > a {
	color: #fff;
	padding: 10px 20px;
	width: 100%;
	box-sizing: border-box;
	transition: color .25s ease-in-out;
	font-size: 14px;
}

header#main-header .inner-wrapper .menu-wrapper ul#menu-main-menu > li.menu-item-has-children > ul.sub-menu > li.menu-item-has-children > ul.sub-menu > li.menu-item-has-children > ul.sub-menu > li {
	width: 100%;
	padding: 10px 20px;
	background-color: #e7e7e7;
}

header#main-header .inner-wrapper .menu-wrapper ul#menu-main-menu > li.menu-item-has-children > ul.sub-menu > li.menu-item-has-children > ul.sub-menu > li.menu-item-has-children > ul.sub-menu > li:hover {
	background-color: #d0d0d0;
}

header#main-header .inner-wrapper .menu-wrapper ul#menu-main-menu > li.menu-item-has-children > ul.sub-menu > li.menu-item-has-children > ul.sub-menu > li.menu-item-has-children > ul.sub-menu > li:not(:last-child) {
	margin-bottom: 2px;
}
/* END 3 lv menu */

header#main-header .inner-wrapper .menu-wrapper ul#menu-main-menu .arrow.arrow-left svg {
	transition: all .25s ease-in-out;
}

header#main-header .inner-wrapper .menu-wrapper ul#menu-main-menu .arrow svg {
	transform: rotate(0);
}

header#main-header .logo > a {
	display: flex;
	column-gap: 20px;
	align-items: center;
	text-decoration: none;
}

header#main-header .inner-wrapper .menu-wrapper .button-group a.btn {
	font-size: 18px;
	font-weight: 500;
	text-decoration: none;
	transition: all .25s ease-in-out;
}

header#main-header .inner-wrapper .menu-wrapper .button-group a.btn > span:first-child {
	display: flex;
	width: 50px;
	height: 50px;
	padding: 10px 8px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
	border-radius: 25px;
	background: #7C8594;
	transition: all .25s ease-in-out;
}

header#main-header .inner-wrapper .menu-wrapper .button-group a.btn:hover > span:first-child {
	background: #fff;
}

header#main-header .inner-wrapper .menu-wrapper .button-group a.btn > span:last-child {
	transition: all .25s ease-in-out;
}

header#main-header .inner-wrapper .menu-wrapper .button-group a.btn:hover > span:last-child {
	text-decoration: underline;
}

@media(max-width: 1600px) {
	header#main-header .container {
		padding: 0px 40px;
	}

	header#main-header .inner-wrapper,
	header#main-header .inner-wrapper .menu-wrapper {
		column-gap: 40px;
	}

	header#main-header .inner-wrapper .menu-wrapper ul#menu-main-menu > li a {
		font-size: 15px;
	}

	header#main-header .inner-wrapper .menu-wrapper .button-group a.btn {
		padding: 5px 10px;
		font-size: 15px;
	}
}

@media (max-width: 1400px) {
	header#main-header .container {
		padding: 20px calc(40px + 3.125vw);
	}

	header#main-header .inner-wrapper .menu-wrapper ul#menu-main-menu {
		display: none;
	}

	header#main-header .inner-wrapper .menu-wrapper .btn-menu-toggle {
		display: flex;
		width: 50px;
		height: 50px;
		padding: 5px;
		align-items: center;
		justify-content: center;
		gap: 10px;
		cursor: pointer;
		background: #7C8594;
		border-radius: 999px;

		transition: all .25s ease-in-out;
	}

	header#main-header .inner-wrapper .menu-wrapper .btn-menu-toggle:hover {
		background-color: #fff;
	}

	header#main-header .inner-wrapper .menu-wrapper .btn-menu-toggle svg rect {
		transition: all .25s ease-in-out;
	}

	header#main-header .inner-wrapper .menu-wrapper .btn-menu-toggle:hover svg rect {
		fill: #7C8594;
	}

	body.menu-opened header#main-header .inner-wrapper .menu-wrapper nav {
		transition: transform .25s ease-in-out;
		transform: translateX(0);
	}

	header#main-header .inner-wrapper .menu-wrapper nav {
		overflow: auto;
		position: fixed;
		width: 100%;
		height: 100vh;
		top: 0;
		left: 0;
		z-index: 999;
		background-color: #1e1e1e;
		display: flex;
		flex-direction: column;
		row-gap: 30px;
		padding: 50px 4vw;
		transform: translateX(100%);

		background: #FFF;
		box-shadow: 0px 8px 30px 0px rgba(0, 0, 0, 0.15);
	}

	header#main-header .inner-wrapper .menu-wrapper nav .btn-menu-close {
		display: block;
		color: #FFF;
		font-size: 32px;
		position: absolute;
		top: 70px;
		right: 25px;
		cursor: pointer;
		z-index: 101;
	}

	header#main-header .inner-wrapper .menu-wrapper ul#menu-main-menu {
		display: flex;
		flex-direction: column;
		width: 100%;
		max-width: 450px;
		margin: auto;
		justify-content: flex-end;
	}

	header#main-header .inner-wrapper .menu-wrapper ul#menu-main-menu li {
		display: block;
		width: 100%;
	}

	header#main-header .inner-wrapper .menu-wrapper ul#menu-main-menu > li.menu-item-has-children>.arrow {
		display: block;
	}

	header#main-header .inner-wrapper .menu-wrapper ul#menu-main-menu > li {
		flex-direction: column;
		align-items: flex-start;
		border: none;
		text-align: center;
		border-bottom: 1px solid #e7e7e7 !important;
	}

	header#main-header .inner-wrapper .menu-wrapper ul#menu-main-menu>li:after {
		display: none;
	}

	header#main-header .inner-wrapper .menu-wrapper ul#menu-main-menu>li.menu-item-has-children:hover>ul.sub-menu>li>a {
		color: #787878;
		padding: unset;
		font-size: 20px;
	}

	header#main-header .inner-wrapper .menu-wrapper ul#menu-main-menu li a {
		color: #787878;
		font-size: 20px;
	}

	header#main-header .inner-wrapper .menu-wrapper ul#menu-main-menu li a:hover {
		color: var(--primary-color);
	}

	header#main-header .inner-wrapper .menu-wrapper ul#menu-main-menu li.menu-item-has-children>.arrow {
		cursor: pointer;
		position: absolute;
		right: 5px;
		transform: scale(1.5);
		top: 30px;
		width: 30px;
		height: 30px;
		display: flex;
		justify-content: center;
		align-items: center;
		transform: rotate(90deg);
	}

	header#main-header .inner-wrapper .menu-wrapper ul#menu-main-menu > li.menu-item-has-children .arrow path {
		fill: #787878;
	}

	header#main-header .inner-wrapper .menu-wrapper ul#menu-main-menu li.menu-item-has-children>.arrow.arrow-left {
		transform: rotate(0deg);		
	}

	header#main-header .inner-wrapper .menu-wrapper ul#menu-main-menu li.menu-item-has-children ul.sub-menu {
		list-style: none;
		position: static;
		width: 100%;
		margin: 20px 0px -20px;
		border-radius: 0px;
		background: transparent;
		box-shadow: none;
	}

	header#main-header .inner-wrapper .menu-wrapper ul#menu-main-menu li.menu-item-has-children ul.sub-menu>li {
		background-color: transparent;
		padding: 20px 20px 20px 30px;
	}


	header#main-header .inner-wrapper .menu-wrapper ul#menu-main-menu li.menu-item-has-children ul.sub-menu li.menu-item-has-children ul.sub-menu,
	header#main-header .inner-wrapper .menu-wrapper ul#menu-main-menu li.menu-item-has-children ul.sub-menu li.menu-item-has-children ul.sub-menu li.menu-item-has-children ul.sub-menu {
		position: static;
		width: 100%;
		border-radius: 0px;
		background: transparent;
		box-shadow: none;
	}


	header#main-header .inner-wrapper .menu-wrapper ul#menu-main-menu li.menu-item-has-children ul.sub-menu li.menu-item-has-children ul.sub-menu>li {
		background-color: transparent;
	}

	header#main-header .inner-wrapper .menu-wrapper ul#menu-main-menu>li.menu-item-has-children:hover>ul.sub-menu>li:hover,
	header#main-header .inner-wrapper .menu-wrapper ul#menu-main-menu>li.menu-item-has-children:hover>ul.sub-menu>li.menu-item-has-children:hover>ul.sub-menu>li:hover,
	header#main-header .inner-wrapper .menu-wrapper ul#menu-main-menu>li.menu-item-has-children:hover>ul.sub-menu>li.menu-item-has-children:hover>ul.sub-menu>li.menu-item-has-children:hover>ul.sub-menu>li:hover {
		background-color: transparent;
	}

	header#main-header .inner-wrapper .menu-wrapper ul#menu-main-menu > li.menu-item-has-children > ul.sub-menu > li.menu-item-has-children > ul.sub-menu > li > a {
		color: #fff;
	}
}

@media (max-width: 769px) {
	header#main-header .container {
		padding: 20px 4vw;
	}

	header#main-header .inner-wrapper .menu-wrapper {
		column-gap: 10px;
	}

	header#main-header .inner-wrapper .logo img {
		width: 227px;
	}

	header#main-header .inner-wrapper .menu-wrapper .button-group a.btn {
		width: 50px;
		height: 50px;
		border: none;
	}

	header#main-header .inner-wrapper .menu-wrapper .button-group a.btn svg {
		display: block;
	}

	header#main-header .inner-wrapper .menu-wrapper .button-group a.btn span {
		display: none;
	}
}

@media (max-width: 768px) {
	header#main-header .inner-wrapper .header-logo {
		width: 100%;
	}

	header#main-header .inner-wrapper .menu-wrapper .btn-mobile-contact {
		display: flex;
		justify-content: center;
		align-items: center;
	}
}

@media(max-width: 390px) {
	header#main-header .container {
		padding: 20px 4vw;
	}

	header#main-header .inner-wrapper {
		colum-gap: 10px;
	}

	header#main-header .inner-wrapper .menu-wrapper {
		column-gap: 10px;
	}
}

footer#footer #footer-section {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;		
}

footer#footer #footer-section .container {
	padding-bottom: 0px;
}

footer#footer #footer-section .site-info-wrapper {
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

footer#footer #footer-section .site-info-wrapper img {
	width: 100%;
	max-width: 794px;
	margin: 0 auto 64px;
}

footer#footer #footer-section .site-info-wrapper .social-list {
	list-style: none;
	display: flex;
	column-gap: 32px;
	align-items: center;
	margin: 0 auto 64px;
	width: fit-content;
}

footer#footer #footer-section .site-info-wrapper .social-list > li > a {
	text-decoration: none;
}

footer#footer #footer-section .small-wrapper {
	padding: 100px 40px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);	
}

footer#footer #footer-section .office-wrapper {
	display: flex;
	width: 100%;
	max-width: 1344px;
	margin: 0 auto;
	justify-content: space-between;
}

footer#footer #footer-section .office-wrapper .block-item {
	flex: 1;
	display: flex;
	flex-direction: column;
	row-gap: 24px;
}

footer#footer #footer-section .office-wrapper .block-item .block-title {
	color: #7C8594;
	font-family: Marcellus;
	font-size: 32px;
	font-style: normal;
	font-weight: 400;
	line-height: 120%; /* 38.4px */
	letter-spacing: -0.64px;
	margin-bottom: 16px;
}

footer#footer #footer-section .office-wrapper .block-item .office-contact-item {
	display: flex;
	align-items: center;
	column-gap: 8px;
}

footer#footer #footer-section .office-wrapper .block-item .block-address span,
footer#footer #footer-section .office-wrapper .block-item .block-phone span > a {
	flex: 1;
	color: #FFF;
	font-family: Figtree;
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

footer#footer #footer-section .office-wrapper .block-item .block-address {
	align-items: flex-start;
}

footer#footer #footer-section .office-wrapper .block-item .block-address a {
	display: block;
	color: #FFF;
	font-family: Figtree;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	text-decoration: underline;
}

footer#footer #footer-section .office-wrapper .block-item .block-phone span > a {
	text-decoration: none;
}

footer#footer #footer-section .footer-menu {
	padding: 32px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

footer#footer #footer-section .footer-menu #menu-footer-menu {
	width: fit-content;
	margin: 0 auto;
	list-style: none;
	display: flex;
	column-gap: calc(60px + 3.125vw);
	align-items: center;
}

footer#footer #footer-section .footer-menu #menu-footer-menu li a {
	color: #FFF;
	font-family: Figtree;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	text-transform: uppercase;
	text-decoration: none;
	transition: all .25s ease-in-out;
}

footer#footer #footer-section .footer-menu #menu-footer-menu li a:hover {
	color: #7C8594;
}

footer#footer #footer-section .disclaimer-text {
	padding: 64px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	color: #7C8594;
	font-family: Figtree;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 21px */
	max-width: 1344px;
}

footer#footer .footer-author {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #051227;
}

footer#footer .footer-author .designed-by {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 20px;
}

footer#footer .footer-author .designed-by > span {
	display: flex;
	align-items: center;
	column-gap: 10px;
}

footer#footer .footer-author .designed-by > span,
footer#footer .footer-author .designed-by > span > span {
	color: #FFF;
	font-family: Figtree;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 21px */
}

@media(max-width: 1024px) {

}

@media(max-width: 768px) {
	footer#footer #footer-section .office-wrapper {
		flex-direction: column;
		row-gap: 40px;
	}

	footer#footer #footer-section .footer-menu #menu-footer-menu {
		flex-direction: column;
		row-gap: 40px;
		align-items: center;
	}

	footer#footer .footer-author .designed-by {
		flex-direction: column;
		row-gap: 20px;
	}
}

@media(max-width: 468px) {
	footer#footer #footer-section .contact-info-wrapper .block-item > span, footer#footer #footer-section .contact-info-wrapper .block-item > a {
		font-size: 16px;
	}
}

/* *
* Homepage Style
* */
section.banner-section {
	position: relative;
	margin-top: -175px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding-top: 215px;
}

section#home-banner .container {
	padding-bottom: 215px;
}

section#home-banner .banner-area {
	width: 100%;
	max-width: 1344px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	row-gap: 24px;
	align-items: center;
	justify-content: center;
}

section#home-banner .banner-area .banner-pre-title {
	color: #FFF;
	text-align: center;
	font-family: Figtree;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	letter-spacing: 1.6px;
	text-transform: uppercase;
}

section#home-banner .banner-area .banner-title {
	color: #FFF;
	text-align: center;
	font-family: Marcellus;
	font-size: max(46px, calc(calc(100vw / 1920) * 72));
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-align: center;
	margin-bottom: 24px;
}

section#home-banner .banner-addition {
	display: flex;
	justify-content: flex-end;
}

@media(max-width: 768px) {
	section#home-banner .banner-addition {
		flex-direction: column;
		align-items: center;
		row-gap: 20px;
	}
	
	section#home-banner a.btn {
		font-size: 16px;
	}
}

@media(max-width: 468px) {
	section#home-banner a.btn {
		font-size: 10px;
		padding: 10px 15px;
	}
}

section.page-section .section-area img {
	width: 100%;
	height: auto;
}

section.page-section .section-area .section-title,
section.page-section .section-area .section-content h2 {
	color: #0E1D35;
	font-family: Marcellus;
	font-size: 48px;
	font-style: normal;
	font-weight: 400;
	line-height: 120%; /* 57.6px */
	letter-spacing: -0.96px;
	margin-bottom: 40px;
}

section.page-section .section-area .section-content h3 {
	color: #0E1D35;
	font-family: Marcellus;
	font-size: 32px;
	font-style: normal;
	font-weight: 400;
	line-height: 120%; /* 38.4px */
	letter-spacing: -0.64px;
	margin-bottom: 40px;
}

section.page-section .section-area .section-content p,
section.page-section .section-area .section-content ul li,
section.page-section .section-area .section-content ul li a:not(.btn),
section.page-section .section-area .section-content p a:not(.btn) {
	color: #787878;
	font-family: Figtree;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 170%; /* 34px */
}

section.page-section .section-area .section-content p {
	margin-bottom: 30px;	
}

section.page-section .section-area .section-content p strong,
section.page-section .section-area .section-content ul li strong {
	font-weight: 700px;
	color: var(--primary-color);
}

section.page-section .section-area .section-content ul li a:not(.btn),
section.page-section .section-area .section-content p a:not(.btn) {
	text-decoration: none;
}

section.page-section .section-area .section-content ul li a:not(.btn):hover,
section.page-section .section-area .section-content p a:not(.btn):hover {
	color: var(--primary-color);
	text-decoration: underline;
}

section.page-section .section-area .section-content ul {
	padding-left: 40px;
	margin-bottom: 40px;
}

section.page-section.home-section .section-area .section-content ul {
	margin-bottom: 30px;
}

section.page-section .section-area .section-content p:last-child {
	margin-bottom: 0;
}

section.page-section .section-area .section-content figure {
	margin: 0;
}

@media(max-width: 768px) {
	section.page-section .section-area .section-title,
	section.page-section .section-area .section-content h2 {
		font-size: 32px;
	}
}

.contact-form-wrapper {
	position: relative;
	background: #F6F6F6;
	padding: 50px calc(24px + 1.25vw);
}

.contact-form-wrapper .gform_wrapper .gform_body .form-header-group {
	display: flex;
	flex-direction: column;
	row-gap: 48px;
	align-items: center;
}

.contact-form-wrapper .gform_wrapper .gform_body .form-header-group svg {
	width: 100%;
}

.contact-form-wrapper .gform_wrapper .gform_body .form-header-group h3 {
	color: #0E1D35;
	text-align: center;
	font-family: Marcellus;
	font-size: 32px;
	font-style: normal;
	font-weight: 400;
	line-height: 120%; /* 38.4px */
	letter-spacing: -0.64px;
}

.contact-form-wrapper .gform_wrapper .gform_body .gform_fields {
	display: flex;
	flex-direction: column;
	row-gap: 50px;
}

.contact-form-wrapper .gform_wrapper .gform_body .gform_fields input,
.contact-form-wrapper .gform_wrapper .gform_body .gform_fields textarea {
	background: transparent;
	padding: 0 0 14px;
	margin: 0;
	outline: none;
	box-shadow: none;
	border: none;
	border-radius: unset;
	border-bottom: 1px solid #D0D0D0;
	color: #595959;
	font-family: Figtree;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 180%; /* 32.4px */
	height: unset;
}

.contact-form-wrapper .gform_wrapper .gform_body .gform_fields textarea {
	height: 100px;
}

.contact-form-wrapper .gform_wrapper .gform_footer {
	margin: 48px 0 0;
}

.contact-form-wrapper .gform_wrapper .gform_footer .gform_button {
	background-color: #7C8594 !important;
	border-radius: 999px !important;
	width: 100% !important;
	height: 60px !important;
	outline: none !important;
	box-shadow: none !important;
	border: none !important;
	color: #fff !important;
	font-family: "Figtree" !important;
	font-size: 16px !important;
	font-style: normal !important;
	font-weight: 600 !important;
	line-height: normal !important;
	text-transform: uppercase !important;
	text-align: center !important;
	transition: all .25s ease-in-out !important;
}

.contact-form-wrapper .gform_wrapper .gform_footer .gform_button:hover {
	background-color: var(--primary-color) !important;
}

.contact-form-wrapper .gform_confirmation_message {
	color: #0E1D35 !important;
    font-family: Figtree !important;
    font-size: 20px !important;
    font-style: normal !important;
    font-weight: 400 !important;
    line-height: 170% !important;
	text-align: center !important;
}

/* *
* Problem Section
* */
section#problem-section .section-area {
	width: 100%;
	max-width: 1070px;
	margin: 0 auto;
}

/* *
* Meet Section
* */
section#meet-section {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: bottom;
}

section#meet-section .container {
	padding-top: 0;
	padding-bottom: 0;
}

section#meet-section .section-area {
	display: flex;
	align-items: center;
	column-gap: calc(34px + 3.125vw);
}

section#meet-section .section-area .left-section {
	flex: 1;
	padding: 50px 0;
}

section#meet-section .section-area .right-section {
	width: 100%;
	max-width: 529px;
}

@media(max-width: 768px) {
	section#meet-section .section-area {
		flex-direction: column;
		row-gap: 40px;
	}

	section#meet-section .section-area .right-section {
		max-width: unset;
	}
}


/* *
* Step Section
* */
section#step-section .section-area .step-repeater {
	margin-top: 40px;
	display: flex;
	align-items: stretch;
	column-gap: 32px;
}

section#step-section .section-area .step-repeater .block-item {
	flex: 1;
	position: relative;
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	row-gap: 32px;
	padding: 60px 2.604vw;
	border-radius: 7px;
	border: 0.5px solid rgba(15, 42, 57, 0.30);
	box-shadow: 10px 10px 20px 0px rgba(10, 34, 47, 0.10);
}

section#step-section .section-area .step-repeater .block-item > * {
	margin-bottom: 0;
}

section#step-section .section-area .step-repeater .block-item .block-next-icon {
	position: absolute;
	top: 45%;
	right: -45px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border-radius: 999px;
	background: #0E1D35;
}

section#step-section .section-area .step-repeater .block-item:last-child .block-next-icon {
	display: none;
}

@media(max-width: 768px) {
	section#step-section .section-area .step-repeater {
		flex-direction: column;
		row-gap: 40px;
	}

	section#step-section .section-area .step-repeater .block-item {
		padding: 40px 4vw;
	}

	section#step-section .section-area .step-repeater .block-item .block-next-icon {
		display: none;
	}
}

/* *
* Services Section
* */
section#services-section .section-area .service-repeater {
	margin-top: 40px;
	display: flex;
	align-items: stretch;
	column-gap: 32px;
	flex-wrap: wrap;
	row-gap: 48px;
}

section#services-section .section-area .service-repeater .block-item {
	flex: 1;
	display: flex;
	flex-direction: column;
	row-gap: 32px;
	align-items: flex-start;
	border-radius: 7px;
	border: 0.5px solid rgba(15, 42, 57, 0.30);
	padding: 60px 2.604vw;
}

section#services-section .section-area .service-repeater .block-item > * {
	margin-bottom: 0;
}

section#services-section .section-area .service-repeater .block-item a.btn:hover {
	color: #fff;
	background-color: var(--primary-color);
}

section#services-section .section-area .service-repeater .block-item a.btn:hover svg path {
	fill: #fff;
}

@media(max-width: 768px) {
	section#services-section .section-area .service-repeater {
		flex-direction: column;
		row-gap: 40px;
	}

	section#step-section .section-area .step-repeater .block-item {
		padding: 40px 4vw;
	}
}

/* *
* About Section
* */
section#about-section .section-area {
	width: 100%;
	max-width: 1344px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	column-gap: calc(1px + 3.125vw);
	padding: 50px;
	border-radius: 7px;
	border: 0.5px solid rgba(15, 42, 57, 0.30);
	background: #0E1D35;
	box-shadow: 10px 10px 20px 0px rgba(10, 34, 47, 0.10);
}

section#about-section .section-area .left-section {
	width: 100%;
	max-width: 342px;
}

section#about-section .section-area .right-section {
	flex: 1;
	display: flex;
	flex-direction: column;
	row-gap: 48px;
}

section#about-section .section-area .right-section .section-title,
section#about-section .section-area .right-section .section-content p {
	color: #fff;
	margin-bottom: 0px;
}

@media(max-width: 768px) {
	section#about-section .section-area {
		padding: 40px 4vw;
		flex-direction: column;
		row-gap: 40px;
	}

	section#about-section .section-area .left-section {
		max-width: unset;
	}
}

/* *
* Testimonial Section
* */
section#testimonial-section .section-area .section-title {
	width: 100%;
	max-width: 550px;
    margin-bottom: 80px;
}

section#testimonial-section .section-area .testimonial-container {
	position: relative;
	padding: 0 100px;
	width: 100%;
	max-width: 1544px;
	margin: 0px auto;
}

section#testimonial-section .section-area .testimonial-container .testimonial-slider {
	overflow: hidden;
}

section#testimonial-section .section-area .testimonial-container .slick-arrow {
	position: absolute;
	top: 40%;
}

section#testimonial-section .section-area .testimonial-container .prev-arrow {
	left: 0;
}

section#testimonial-section .section-area .testimonial-container .next-arrow {
	right: 0;
}

section#testimonial-section .section-area .testimonial-container .testimonial-slider .block-item {
	display: flex;
	flex-direction: column;
	row-gap: 24px;
	align-items: flex-start;
	margin: 0 10px;
}

section#testimonial-section .section-area .testimonial-container .testimonial-slider .block-item svg {
	margin-bottom: 24px;
}

section#testimonial-section .section-area .testimonial-container .testimonial-slider .block-item .block-title {
	margin-bottom: 0;
}

section#testimonial-section .section-area .testimonial-container .testimonial-slider .block-item .block-content {
	font-size: 24px;
	line-height: 150%; /* 36px */
	margin-bottom: 0;
}

section#testimonial-section .section-area .testimonial-container .testimonial-slider .block-item .block-author {
	color: #0E1D35;
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 0;
}

@media(max-width: 768px) {
	section#testimonial-section .section-area .section-title {
		max-width: unset;
	}
	
	section#testimonial-section .section-area .testimonial-container {
		padding: 0 20px;		
	}
}

/* *
* CTA Section
* */
.cta-form-wrapper {
	border-radius: 7px;
	background: linear-gradient(0deg, rgba(14, 29, 53, 0.00) 0%, #0E1D35 100%);
	box-shadow: 0px -42px 70px 0px rgba(0, 0, 0, 0.08);
	padding: 145px 40px;
	display: flex;
	align-items: center;
	flex-direction: column;
	row-gap: 24px;
}

.cta-form-wrapper .cta-title {
	color: #FFF;
	text-align: center;
	font-family: Marcellus;
	font-size: 48px;
	font-style: normal;
	font-weight: 400;
	line-height: 120%; /* 57.6px */
	letter-spacing: -0.96px;
}

.cta-form-wrapper .cta-content {
	color: #FFF;
	text-align: center;
	font-family: Figtree;
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 36px */
}

@media(max-width: 768px) {
	.cta-form-wrapper {
		padding: 40px 4vw;
	}
}