/* This stylesheet is RENDER-BLOCKING */
/* Only add priority styles that occur near the top of the page and/or prevent page jitter */

/*
CORE
HEADER
MENUS
BANNER
PRIORITY
*/

/*******************************************************************************************
CORE - Top-level styling
*******************************************************************************************/
:root {
	font-size: 17px;
	--font-family-body: "Urbanist", sans-serif;
	--font-family-heading:  "Nanum Myeongjo", serif;
	--font-size-h1: 2.5rem;
	--font-size-h2: 1.7rem;
	--font-size-h3: 1.4rem;
	--font-size-h4: 1.2rem;
	--font-size-h5: 1.1rem;
	--color-body-text:#19215f;
	--color-primary: #19215f;
	--color-secondary: #597b00;
	--color-alternate: #fd8505;
	--color-gray: #e3e3e3;
	--color-light-gray: #edf1f5;
	--white: #fff;
	--black: #000;
	--header-height: 100px;
	--width-normal: 1280px;
	--width-narrow: 900px;
	--width-wide: 1599px;
	--gutter-size: 30px;
	--swiper-theme-color: var(--color-primary);
	--swiper-navigation-color: var(--color-alternate);
	--swiper-pagination-bullet-inactive-color: var(--color-body-text);
	--swiper-pagination-bullet-opacity: 1;
	--swiper-pagination-bullet-inactive-opacity: 1;
	--swiper-pagination-bullet-horizontal-gap: 5px;
	--swiper-pagination-bullet-size: 16px;
	--swiper-pagination-bottom: -50px;
}

@media screen and (min-width: 768px) {
	/*TABLET*/
	:root {
		font-size: 18px;
	}
}

#container {
	position: relative;
	right: 0;
	top: 0;
	overflow: clip;
	min-height: 100vh;
	display: -webkit-flex;
	display: -moz-flex;
	display: -o-flex;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

html {
	box-sizing: border-box;
}

body {
	display: block !important;
	line-height: 1.6;
	color: var(--color-body-text);
	font-size: 1rem;
	font-family: var(--font-family-body);
	margin: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

*:focus-visible {
	outline: auto;
}

*,
*::before,
*::after {
	box-sizing: inherit;
}

/* Hidden elements */
.hide,
.show-in-pdf,
.show-for-pdf,
.mega-menu .sub-menu,
.gfield--type-captcha,
.grecaptcha-badge {
	display: none !important;
}

/* CORE > Main Elements */
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 30px;
	color: var(--color-primary);
	font-weight: 700;
	font-family: var(--font-family-heading);
	line-height: 1.2;
}

h1 {
	font-size: var(--font-size-h1);
}

h2 {
	font-size: var(--font-size-h2);
}

h3 {
	font-size: var(--font-size-h3);
}

h4 {
	font-size: var(--font-size-h4);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 2px;
}

h5,
h6 {
	font-size: var(--font-size-h5);
}

h2 strong,
h3 strong {
	font-weight: 700;
}

h1 span.subtitle,
h2 span.subtitle {
	display: block;
	color: var(--color-secondary);
	font-size: 50%;
}

p {
	margin: 0 0 30px;
	font-size: 1rem;
	color: var(--color-body-text);
}

ul {
	list-style: none;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* CORE > Links and Buttons */
a {
	color: var(--color-secondary);
	text-decoration: underline;
}

a:hover,
a:focus {
	color: var(--color-alternate);
	text-decoration: none;
}

a.no-underline {
	text-decoration: none;
}

a.no-underline:hover,
a.no-underline:focus {
	text-decoration: underline;
}

a,
button,
.button,
.wp-element-button {
	transition: color 200ms ease-out, background 200ms ease-out, transform 60ms ease-in;
}

button,
.button,
.wp-element-button {
	font-family: var(--font-family-body);
	font-size: 1rem;
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
	cursor: pointer;
	border: none;
	margin: 0;
	padding: 18px;
	border-radius: 5px;
	text-align: center;
	display: inline-block;
	color: white;
	background-color: var(--color-alternate);
	text-decoration: none;
}

button:active,
.button:active,
.wp-element-button:active {
	transform: translateY(1.5px);
}

button:hover,
button:focus,
.button:hover,
.button:focus,
.wp-element-button:hover,
.wp-element-button:focus {
	background-color: var(--color-secondary);
	color: white;
}

button.alt-01,
.button.alt-01 {
	background-color: var(--color-secondary);
}

button.alt-01:hover,
button.alt-01:focus,
.button.alt-01:hover,
.button.alt-01:focus {
	background-color: var(--color-primary);
	color: white;
}

button.alt-02,
.button.alt-02 {
	background-color: var(--color-black);
}

button.alt-02:hover,
button.alt-02:focus,
.button.alt-02:hover,
.button.alt-02:focus {
	background-color: var(--color-alternate);
	color: white;
}

button.outline,
.button.outline {
	background: none;
	border: 2px solid var(--color-alternate);
	color: var(--color-alternate);
}

button.outline:hover,
button.outline:focus,
.button.outline:hover,
.button.outline:focus {
	background: var(--color-alternate);
	color: white;
}

button.outline.outline-alt-01,
.button.outline.outline-alt-01 {
	border-color: white;
	color: white;
}

button.outline.outline-alt-01:hover,
button.outline.outline-alt-01:focus,
.button.outline.outline-alt-01:hover,
.button.outline.outline-alt-01:focus {
	background: var(--color-white);
	color: var(--color-primary);
}

button.no-button,
.button.no-button {
	padding: 0;
	background: none;
	color: var(--color-secondary);
	text-transform: none;
}

button.no-button:hover,
button.no-button:focus,
.button.no-button:hover,
.button.no-button:focus {
	color: var(--color-black);
	text-decoration: underline;
}

/* CORE > Page Structure */
main {
	padding: 60px 0;
	min-height: 450px;
	display: block;
	width: 100%;
	overflow: clip;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.no-banner main {
	padding-top: 180px;
}

.content.full-width {
	float: none;
}

.content section:not(:last-of-type) {
	margin-bottom: 60px;
}

.columns,
.column {
	padding: 0 var(--gutter-size);
}

.row,
.row-wide,
.row-narrow {
	max-width: var(--width-normal);
	margin-right: auto;
	margin-left: auto;
}

.row-narrow {
	max-width: var(--width-narrow);
}

.row-wide {
	max-width: var(--width-wide);
}

.row::after {
	clear: both;
}

.row:not(.main-inner)::before,
.row:not(.main-inner)::after {
	display: table;
	content: " ";
	flex-basis: 0;
	order: 1;
}

.row.main-inner::before,
.row.main-inner::after {
	display: none;
}

@media screen and (min-width: 768px) {
	main {
		padding: 80px 0;
	}

	.main-inner {
		display: -webkit-flex;
		display: -moz-flex;
		display: -o-flex;
		display: flex;
	}

	.content {
		width: 65%;
		margin-bottom: 0;
		padding-right: 70px;
	}

	.content.full-width {
		width: 100%;
		padding-right: var(--gutter-size);
	}

	.sidebar {
		width: 35%;
		padding-left: 0;
	}
}

@media screen and (min-width: 1025px) {
	.content {
		padding-right: calc(2 * var(--gutter-size));
	}
}

/* CORE > Priority Utility Classes */
.no-float {
	float: none;
}

.no-margin {
	margin: 0 !important;
}

.no-padding {
	padding: 0 !important;
}

.no-min-height {
	min-height: 0;
}

.position-static,
.static {
	position: static !important;
}

.position-relative,
.relative {
	position: relative !important;
}

.position-absolute,
.absolute {
	position: absolute;
}

.full-width {
	width: 100%;
}

.full-height {
	height: 100%;
}

.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;
}

.no-background {
	background: none !important;
}

.animate-in-view,
.opacity0 {
	opacity: 0;
}

.opacity1 {
	opacity: 1 !important;
}

.uppercase {
	text-transform: uppercase;
}

.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;
}

.bold,
.font-bold {
	font-weight: 700;
}

.font-extra-bold {
	font-weight: 800;
}

.font-black {
	font-weight: 900;
}

.mt10 {
	margin-top: 10px;
}

.mt20 {
	margin-top: 20px;
}

.mt30 {
	margin-top: 30px;
}

.mt40 {
	margin-top: 40px;
}

.mt50 {
	margin-top: 50px;
}

.mt60 {
	margin-top: 60px;
}

.mt70 {
	margin-top: 70px;
}

.mt80 {
	margin-top: 80px;
}

.mb0 {
	margin-bottom: 0 !important;
}

.mb10 {
	margin-bottom: 10px;
}

.mb20 {
	margin-bottom: 20px;
}

.mb30 {
	margin-bottom: 30px;
}

.mb40 {
	margin-bottom: 40px;
}

.mb50 {
	margin-bottom: 50px;
}

.mb60 {
	margin-bottom: 60px;
}

.mb70 {
	margin-bottom: 70px;
}

.mb80 {
	margin-bottom: 80px;
}

.pt10 {
	padding-top: 10px;
}

.pt20 {
	padding-top: 20px;
}

.pt30 {
	padding-top: 30px;
}

.pt40 {
	padding-top: 40px;
}

.pt50 {
	padding-top: 50px;
}

.pt60 {
	padding-top: 60px;
}

.pt70 {
	padding-top: 70px;
}

.pt80 {
	padding-top: 80px;
}

.pb10 {
	padding-bottom: 10px;
}

.pb20 {
	padding-bottom: 20px;
}

.pb30 {
	padding-bottom: 30px;
}

.pb40 {
	padding-bottom: 40px;
}

.pb50 {
	padding-bottom: 50px;
}

.pb60 {
	padding-bottom: 60px;
}

.pb70 {
	padding-bottom: 70px;
}

.pb80 {
	padding-bottom: 80px;
}

@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 (min-width: 768px) {
	.show-for-small-only {
		display: none !important;
	}
}

@media screen and (max-width: 767px) {
	.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;
	}
}

/*******************************************************************************************
HEADER
*******************************************************************************************/

.header {
	position: fixed;
	top: 0;
	width: 100%;
	background-color: transparent;
	z-index: 3;
	border-bottom: 2px solid transparent;
	transition: border-color 200ms ease-out;
}

.header-search {
	opacity: 0;
}

body.scrolled .header {
	background: var(--color-primary);
}

.header > .row {
	height: 100%;
}

.header a {
	text-decoration: none;
}

.header-desktop {
	display: none;
}

.header-logo {
	display: flex;
	align-items: center;
	padding: 8px 0 8px calc(var(--gutter-size) * 0.5);
}
.module-header-a-logo img {
	padding: 0;
	max-width: 300px;
	width: 100%;
	height: auto;
}

.header-mobile-inner {
	display: flex;
	min-height: 70px;
}

.header-mobile-buttons {
	display: flex;
	margin-left: 4%;
	flex: 1;
	justify-content: flex-end;
	align-items: center;
	padding-right: calc(var(--gutter-size) * 0.5);
}

.header-mobile-buttons a, .header-mobile-buttons button {
	display: flex;
	font-size: 25px;
	align-items: center;
	justify-content: center;
	padding: 0 10px;
	flex: 1;
	max-width: 50px;
	width: 50px;
	height: 50px;
	background: var(--color-primary);
}



.header-mobile-buttons a:first-child,
.header-mobile-buttons button:first-child {
	margin-right: 5px;
}

.mega-menu {
	display: none;
}



.module-header-a-right {
	display: none;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	height: 100%;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	align-self: center;
}

.module-header-a-right-top {
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 8px;
}

.module-header-a-right-top span {
	font-weight: 600;
}

.module-header-a-phone {
	font-weight: 600;
	color: var(--color-secondary);
	font-size: 1.2rem;
	margin-left: 20px;
	display: inline-block;
}

.module-header-a-phone i {
	font-size: 80%;
}

.module-header-a-right-bottom {
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-align-items: center;
	-ms-align-items: flex-end;
	-webkit-box-align: center;
	-ms-flex-align: end;
	align-items: center;
	justify-content: flex-end;
}

@media screen and (min-width: 1025px) {
	.module-header-a-right {
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: flex;
		width: 70%;
	}

	.module-header-a-logo {
		flex: 1;
	}

.module-header-a-inner {
	padding: 15px 25px;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 100%;
	position: relative;
}

	.module-header-a-logo img {
		padding: 0;
	}
	
	
}


@media screen and (min-width: 500px) {
	.header-mobile-buttons a,
	.header-mobile-buttons button {
		width: 60px;
		max-width: 60px;
		height: 60px;
		font-size: 1.6rem;
	}
}

@media screen and (min-width: 1025px) {
	.header-mobile {
		display: none;
	}

	.header-desktop {
		display: block;
	}

	.header-logo {
		padding: 8px 0;
	}
}

/*******************************************************************************************
MENUS - Main navigation, dropdowns and mobile menu
*******************************************************************************************/
.main-navigation-menu {
	margin: 0;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
}

.main-navigation-menu li {
	display: block;
	position: relative;
	padding: 0;
}

.main-navigation-menu > li {
	padding: 5px 0 10px 0;
	margin-right: 05px;
}

.main-navigation-menu > li #mega-menu {
	display: none;
}


#desktop-navigation .sub-menu li a:hover,
#desktop-navigation .sub-menu li a:focus {
	background: var(--color-alternate);
}



.main-navigation-menu > li:last-of-type {
	margin-right: 0;
}

.main-navigation-menu > li:last-of-type > a {
	margin-right: 0;
}

.main-navigation-menu .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	width: 300px;
	margin: 0;
}

.main-navigation-menu > a:hover + .mega-menu,
.main-navigation-menu > a:focus + .mega-menu,
.main-navigation-menu > li.active > .mega-menu,
.main-navigation-menu > a:hover + .sub-menu,
.main-navigation-menu > a:focus + .sub-menu,
.main-navigation-menu > li.active > .sub-menu {
	display: block;
	-webkit-animation: menuSlideDown 200ms both;
	animation: menuSlideDown 200ms both;
}

.menu-item-1463.active > .sub-menu {
	right: 0;
}

.main-navigation-menu a:focus,
.main-navigation-menu a:hover,
.main-navigation-menu li:hover > a {
	color: #fff;
	text-decoration: none;
	background-color:var(--color-primary)
}

.main-navigation-menu > li > a {
	position: relative;
	display: block;
	height: 100%;
	line-height: 1;
	font-weight: normal;
	font-size: 16px;
	color: #fff;
	letter-spacing: 0.4px;
	text-decoration: none;
	padding: 10px 15px;
	border-radius: 3px;
}

/* MENUS > Main Nav Dropdowns (Level 2) */
#desktop-navigation .sub-menu li, .mega-menu li {
	background: var(--color-primary);
	padding-left: 0;
	transition: background 200ms ease-out;
}

#desktop-navigation .sub-menu li {
	position: relative;
	cursor: pointer;
}

#mega-menu li a, #desktop-navigation .sub-menu li a {
	color: white;
	font-size: 0.9rem;
	display: block;
	padding: 12px;
	padding-left: 35px;
	line-height: 1;
	text-decoration: none;
}

.mega-menu li.active,
#desktop-navigation .sub-menu li.active {
	background: var(--color-alternate);
}

.mega-menu li::before,
#desktop-navigation .sub-menu li::before {
	content: "\f105";
	font-family: "Font Awesome 6 Pro";
	position: absolute;
	left: 12px;
	top: 6px;
	color: var(--color-alternate);
	pointer-events: none;
	transition: color 200ms ease-out;
}

.mega-menu li.active::before,
#desktop-navigation .sub-menu li.active::before {
	color: white;
}

#desktop-navigation .sub-menu .menu-item-has-children > a::after {
	content: "\f101";
	font-family: "Font Awesome 6 Pro";
	position: absolute;
	right: 10px;
	color: var(--color-alternate);
}

#desktop-navigation .sub-menu .menu-item-has-children.active > a::after {
	color: white;
}

#desktop-navigation .sub-menu .menu-item-has-children ul {
	position: absolute;
	left: 100%;
	top: 0;
}

#desktop-navigation .sub-menu .sub-menu .sub-menu {
	display: none !important;
}

#desktop-navigation .sub-menu .menu-item-has-children:hover ul,
.menu-item-has-children.active > .sub-menu {
	display: block;
	-webkit-animation: menuSlideRight 200ms both;
	animation: menuSlideRight 200ms both;
}

/* MENUS > Mobile Menu */
#mobile-navigation {
	display: none;
}




/*******************************************************************************************
 Home Hero
*******************************************************************************************/
/* ESSENTIALS CHILD THEME: "DYNAMIC" */

 

/* HERO */
.hero {
	position: relative;
	min-height: 600px;
	overflow: hidden;
}


.hero::after {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	height: 200px;
	z-index: 0;
	background-image: linear-gradient(280deg, #305027 5%, rgba(67, 93, 59, 0) 93%);
	background-image: linear-gradient(to bottom, rgba(52, 89, 45, 0.85) 25%, rgba(52, 89, 45, 0.57) 55%, rgba(52, 89, 45, 0));
}

.hero-content {
	display: flex;
	padding-top: 94px;
	flex-direction: column;
	justify-content: flex-end;
	color: var(--color-primary);
	flex-wrap: wrap;
	align-items: center;
	width: 100%;
	text-align: right;
}
 
.hero-content h1 span {
	display: block;
	font-weight: 600;
	font-size: 4.375rem;
	margin-left: -5px;
	margin-bottom: 10px;
	text-transform: none;
	letter-spacing: normal;
}

.hero-content-inner {
	z-index: 1;
	margin: 50px 0;
	padding-left: 20px;
	position: relative;
}

.hero-title-1 {
	font-size: 25px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: normal;
	letter-spacing: 0.25px;
	text-align: right;
	margin-bottom: 5px;
	padding-right: 8px;
}
.hero-title-2 {
	font-size: 110px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 0.84;
	letter-spacing: 0px;
	text-align: right;
	margin-bottom: 25px;
	/* max-width: 635px; */
	text-align: right;
}

.hero-title-3 {
	font-size: 25px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: normal;
	letter-spacing: 0.25px;
	text-align: right;
	margin-bottom: 5px;
}
.hero-title-2 strong {
	font-size: 100px;
	font-weight: normal;
	display: block;
}

.yellow {
	color: var(--color-alternate);
}

.hero .row {
	position: relative;
	z-index: 2;
}



.hero-content-inner::before, .hero-content-inner::after {
	position: absolute;
	left: 0;
	height: 50%;
	content: "";
	display: none;
}

.hero-content-inner:before {
	top: 8px;
	border-left: 1px dashed var(--color-secondary);
}

.hero-content-inner:after {
	bottom: 0;
	border-left: 1px dashed #d1d1d1;
}

.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
/*#header-desktop::after {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	height: 200px;
	z-index: 0;
	background-image: linear-gradient(280deg, #305027 5%, rgba(67, 93, 59, 0) 93%);
	background-image: linear-gradient(to bottom, rgba(52, 89, 45, 0.85) 25%, rgba(52, 89, 45, 0.57) 55%, rgba(52, 89, 45, 0));
}
*/

body.scrolled .header::after {
	opacity: 0;
}

.module-header-a {
	position: relative;
	z-index: 2;
}

.module-header-a .row {
	max-width: 95%;
}


.hero-bg::before {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	width: 700px;
	height: 100%;
	background-image: linear-gradient(to bottom, rgba(52, 89, 45, 0.85) 25%, rgba(52, 89, 45, 0.57) 55%, rgba(52, 89, 45, 0));
	z-index: 1;
	background-image: linear-gradient(280deg, #305027 5%, rgba(67, 93, 59, 0) 93%);
}
.hero-bg::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 465px;
	background-image: linear-gradient(0deg, rgba(55, 28, 9, 0.85) 9%, rgba(55, 28, 9, 0.65) 29%, rgba(55, 28, 9, 0) 63%);
	z-index: 1;
}

.hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

.hero-content-inner p, .hero-content-inner h1 {
	color: #fff;
}

@media screen and (min-width: 768px) {
	.hero-content {
		min-height: 780px;
	}
 .hero-content h1 span {
		font-size: 6.25rem;
		margin-left: -8px;
	}

.hero-content-inner {
	padding-left: 30px;
	/* max-width: 100%; */
	margin: 0 auto;
	text-align: right;
	/* width: 100%; */
	margin-right: 0;
	padding-right: 60px;
}

	.hero-content-inner:before {
		top: 13px;
	}
}

@media screen and (min-width: 1025px) {
.hero {
	height: 100vh;
	min-height: 750px;
	max-height: 1440px;
}

.hero-content {
	padding-bottom: 150px;
}

 
 
}

@media screen and (min-width: 1300px) {
	.hero-content {
		padding-top: 180px;
	}

	.hero-content h1 span {
		font-size: 8.75rem;
	}

	.hero-content-inner:before,
	.hero-content-inner:after {
		left: -65px;
	}
}




/* HOME HERO AND/OR SLIDER */
.home-hero-height-sync {
	height: 400px;
}

.home-hero,
.home-hero-inner {
	position: relative;
}

.home-hero-image-container {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.home-hero-image-container img {
	-o-object-fit: cover;
	object-fit: cover;
	width: 100%;
	height: 100%;
	-o-object-position: 50%;
	object-position: 50%;
}

.home-hero-form-container {
	display: none;
}

.home-hero-form-row {
	display: flex;
	justify-content: flex-end;
}

@media screen and (min-width: 640px) {
	.home-hero-height-sync,
	.home-hero {
		height: 600px;
	}
}

@media screen and (min-width: 1025px) {
	.home-hero-inner {
		display: block;
	}

	.home-hero-height-sync {
		height: 750px;
	}

	.home-hero-form-container {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		display: block;
	}

	.home-hero-form-container,
	.home-hero-form-inner,
	.home-hero-form-container .row,
	.home-hero-form-container .columns {
		height: 100%;
	}

	.home-hero-form-inner {
		display: flex;
		justify-content: flex-end;
		align-items: center;
	}

	.home-hero-form .contact-form-heading {
		font-size: 1.5rem;
		margin-bottom: 15px;
	}

	.home-hero-form form button {
		width: 100%;
	}

	.home-hero-form {
		margin-top: 80px;
		min-width: 375px;
		padding: 0;
		background: var(--color-light-gray);
	}
}

@media screen and (max-height: 700px) and (min-width: 1025px) {
	.home-hero-form {
		margin: 0;
		position: absolute;
		bottom: 0;
		right: 0;
		padding: 30px;
	}

	.home-hero-form .contact-form-heading {
		display: none;
	}
}


/* Statement */
.statement {
	padding-top: 70px;
	padding-bottom: 70px;
	position: relative;
	text-align: center;
	color: #fff;
	background-color: var(--color-primary);
}

.statement p {
	color: #fff;
}

.statement-content {
	margin: 0 auto 30px;
	position: relative;
	z-index: 1;
	max-width: 1056px;
}

.statement-content .subtitle {
	margin-bottom: 4px;
	color: inherit;
}

.statement-content h2 {
	font-size: 2.5rem;
	margin-bottom: 20px;
	padding-bottom: 20px;
	position: relative;
	color: inherit;
}

.statement-content h2:after {
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 20px;
	height: 5px;
	background-color: var(--color-secondary);
	transform: translateX(-50%);
	content: "";
}

.statement-holder {
	margin-bottom: 20px;
}

.statement-column {
	padding: 30px 0;
	position: relative;
	z-index: 1;
	color: #fff;
	border-bottom: 1px solid #fff;
}

.statement-column:last-child {
	border-right: 0;
	border-bottom: 0;
}

.statement-counting {
	margin-bottom: 13px;
	font-size: 3rem;
	font-weight: 500;
	line-height: 1;
}

.statement-column h4 {
	color: inherit;
	margin-bottom: 15px;
	text-transform: uppercase;
}

.statement-column p:last-child {
	margin-bottom: 0;
}

.statement .button {
	position: relative;
	z-index: 1;
}

.statement .button:hover {
	background-color: #cc0303;
}

.statement-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.statement-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media screen and (min-width: 768px) {
	.statement {
		padding-top: 90px;
		padding-bottom: 90px;
	}

	.statement-content {
		margin-bottom: 58px;
	}

	.statement-content .h2 {
		padding-bottom: 33px;
	}

	.statement-holder {
		margin-bottom: 46px;
		display: flex;
		flex-wrap: wrap;
	}

	.statement-column {
		padding: 0 15px;
		width: 33.33%;
		border-right: 1px solid #fff;
		border-bottom: 0;
	}

	.statement-counting {
		font-size: 6.25rem;
	}
}

@media screen and (min-width: 1025px) {
	.statement {
		padding-top: 112px;
		padding-bottom: 122px;
	}

	.statement-column {
		padding: 0 62px;
	}

	.statement-column h3 {
		font-size: 1.5rem;
	}
}

/* Advantage */
.advantage {
	margin-top: 70px;
	margin-bottom: 70px;
	text-align: center;
}

.advantage-content {
	margin: 0 auto 30px;
	max-width: 945px;
}

.advantage-content h2 {
	position: relative;
	margin-bottom: 20px;
	padding-bottom: 20px;
	text-transform: capitalize;
}

.advantage-content h2:after {
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 20px;
	height: 5px;
	background-color: var(--color-secondary);
	transform: translateX(-50%);
	content: "";
}

.advantage-holder {
	margin-bottom: 25px;
}

.advantage-column {
	margin-bottom: 20px;
}

.advantage-item {
	padding: 30px 15px;
	height: 100%;
	color: #060606;
	text-align: center;
	border-radius: 10px;
	background-color: #fff;
	box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.05);
}

.advantage-item i {
	line-height: 1;
	display: block;
	font-size: 2.5rem;
	margin-bottom: 20px;
	color: var(--color-secondary);
}

.advantage-item h4 {
	color: inherit;
	margin-bottom: 12px;
	font-weight: 700;
	text-transform: none;
	letter-spacing: 1px;
}

.advantage-item p:last-child {
	margin-bottom: 0;
}

@media screen and (min-width: 768px) {
	.advantage {
		margin-top: 90px;
		margin-bottom: 80px;
	}

	.advantage-content {
		margin-bottom: 60px;
	}

	.advantage-content h2 {
		margin-bottom: 27px;
		padding-bottom: 35px;
	}

	.advantage-holder {
		margin-bottom: 55px;
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 20px;
	}

	.advantage-column {
		margin-bottom: 0;
	}

	.advantage-item {
		padding: 50px 20px 58px;
	}

	.advantage-item i {
		font-size: 3.75rem;
		margin-bottom: 30px;
	}
}

@media screen and (min-width: 1025px) {
	.advantage {
		margin-top: 120px;
		margin-bottom: 120px;
	}

	.advantage-holder {
		grid-template-columns: 1fr 1fr 1fr 1fr;
	}
}

@media screen and (min-width: 1200px) {
	.advantage-holder {
		gap: 30px;
	}
}

/* practices */
.practices {
	padding-top: 70px;
	padding-bottom: 70px;
	position: relative;
	background-image: url("images/pattern_geo.png");
	background-repeat: repeat;
	background-position: center center;
}

.practices:before {
	top: 0;
	left: 0;
	opacity: 0.9;
	width: 100%;
	height: 100%;
	content: "";
	display: block;
	position: absolute;
	background-color: #fff;
}

.practices-content {
	margin: 0 auto 30px;
	position: relative;
	z-index: 1;
	text-align: center;
}

.practices-content h2 {
	margin-bottom: 22px;
	padding-bottom: 22px;
	position: relative;
}

.practices-content h2:after {
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 20px;
	height: 5px;
	background-color: var(--color-secondary);
	transform: translateX(-50%);
	content: "";
}

.practices-wrap {
	position: relative;
	z-index: 1;
}

.practices-column {
	margin-bottom: 20px;
}

.practices-link {
	padding: 15px 45px 13px 20px;
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	height: 100%;
	min-height: 70px;
	font-weight: 700;
	line-height: 1.1;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--color-primary);
	border: 1px solid var(--color-primary);
	border-radius: 10px;
	transition: all 0.3s;
}

.practices-link i {
	position: absolute;
	top: 50%;
	right: 16px;
	color: var(--color-secondary);
	transform: translateY(-50%);
}

.practices-link:hover,
.practices-link:focus {
	color: #fff;
	background-color: var(--color-primary);
}

.practices-holder .practices-link {
	margin-bottom: 20px;
}

.practices-holder .practices-link:last-child {
	margin-bottom: 0;
}

.practices-view-all {
	padding-top: 30px;
	position: relative;
	z-index: 1;
	text-align: center;
}

.practices-view-all .button {
	min-width: 172px;
}

.practice.dark-theme .practices-link {
	color: #fff;
	background-color: var(--color-primary);
}

.practice.dark-theme .practices-link:hover {
	border: 1px solid var(--color-secondary);
	background-color: var(--color-secondary);
}

.practice.dark-theme .practices-link:hover i {
	color: #fff;
}

@media screen and (min-width: 768px) {
	.practices {
		padding-top: 90px;
		padding-bottom: 90px;
	}

	.practices-content {
		margin-bottom: 53px;
	}

	.practices-view-all {
		padding-top: 50px;
	}

	.practices-holder {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 20px;
	}

	.practices-holder .practices-link {
		margin-bottom: 0;
	}
}

@media screen and (min-width: 1025px) {
	.practices {
		padding-top: 128px;
		padding-bottom: 126px;
	}

	.practices-wrap {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 20px;
	}

	.practices-column {
		margin-bottom: 0;
	}
}

@media screen and (min-width: 1200px) {
	.practices-wrap {
		gap: 30px;
	}
}

/* team */
.team {
	margin-top: 70px;
	margin-bottom: 70px;
}

.team-content {
	text-align: center;
	margin-bottom: 30px;
}

.team-content h2 {
	margin-bottom: 22px;
	padding-bottom: 22px;
	position: relative;
}

.team-content h2:after {
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 20px;
	height: 5px;
	background-color: var(--color-secondary);
	transform: translateX(-50%);
	content: "";
}

.team-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	margin-bottom: 30px;
}

.team-grid-item {
	width: 100%;
}

/* Attorney boxes */
.attorney-single-box {
	margin-bottom: 0;
	padding: 0;
	display: block;
	position: relative;
	text-decoration: none;
	box-sizing: border-box;
}

.attorney-single-box:hover .attorney-result-overlay,
.attorney-single-box:focus .attorney-result-overlay {
	opacity: 1;
}

.attorney-single-box-info {
	padding: 15px 15px 25px;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	text-align: center;
}

.attorney-single-box-info h2,
.attorney-single-box-info p {
	margin: 5px;
	color: #fff;
}

.attorney-single-box-info h2 {
	font-size: 1.4rem;
}

.attorney-single-box-info p {
	display: block;
	font-size: 0.9rem;
	font-weight: 400;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.attorney-result-image-container {
	overflow: hidden;
	border-radius: 10px;
	position: relative;
	transition: all 200ms ease-out;
}

.attorney-result-image-container img {
	display: block;
	width: 100%;
	height: auto;
}

.attorney-result-image-container:after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 140px;
	background: linear-gradient(to bottom, rgba(36, 37, 94, 0) 0%, rgba(36, 37, 94, 1) 100%);
	content: "";
}

.attorney-result-overlay {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	width: 100%;
	height: 100%;
	font-weight: bold;
	text-align: center;
	text-transform: uppercase;
	color: #fff;
	background: rgba(158, 23, 30, 0.7);
	transition: all 200ms ease-out;
}

@media screen and (min-width: 641px) {
	.team-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media screen and (min-width: 768px) {
	.team {
		margin-top: 90px;
		margin-bottom: 90px;
	}

	.team-content {
		margin-bottom: 50px;
	}
}

@media screen and (min-width: 1025px) {
	.team {
		margin-top: 120px;
		margin-bottom: 120px;
	}

	.team-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 30px;
		margin-bottom: 50px;
	}
}

/* faq */
.faqs {
	padding-top: 70px;
	padding-bottom: 70px;
	background-color: #fcfcfc;
}

.faqs h2 {
	text-align: center;
}

@media screen and (min-width: 768px) {
	.faqs {
		padding-top: 90px;
		padding-bottom: 90px;
	}

	.faqs h2 {
		margin-bottom: 40px;
	}
}

@media screen and (min-width: 1025px) {
	.faqs {
		padding-top: 145px;
		padding-bottom: 145px;
	}

	.faqs h2 {
		margin-bottom: 70px;
	}
}




/*******************************************************************************************
BANNER - Page-top image and title
*******************************************************************************************/

.banner {
	height: 225px;
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	background-position-x: 50%;
}

.banner,
.banner-xl {
	margin-top: 65px;
}

.banner::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(20, 23, 47, 0.5);
	pointer-events: none;
}

.banner img {
	position: relative;
	width: 100%;
}

.banner > .row {
	height: 100%;
}

.banner-inner {
	position: relative;
	z-index: 1;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
	height: 100%;
	float: none;
}

.banner-title {
	text-align: center;
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--color-white);
	margin-bottom: 0;
	font-family: var(--font-family-heading);
}

@media screen and (min-width: 1025px) {
	.banner {
		height: 350px;
	}

	.banner,
	.banner-xl {
		margin-top: 90px;
	}

	.banner-title {
		font-size: 3.4rem;
	}
}

/*******************************************************************************************
PRIORITY - Other important styles
*******************************************************************************************/

.accordion-item-title {
	background: none;
}

.swiper {
	visibility: hidden;
}

.swiper-button-next,
.swiper-button-prev {
	background: none !important;
	padding: 0;
}

.button.alt-01.tel-link {
	display: none;
}


@media screen and (min-width: 280px) and (max-width: 767px) {

.hero {
	height: 465px;
	min-height: 465px;
}

.hero-content {
	align-items: flex-end;
	width: 100%;
	text-align: right;
	height: 465px;
	padding-bottom: 35px;
	
}

.header-logo img {
	max-width: 220px;
}

.hero-title-2 {
	font-size: 52px;
	text-align: center;
	margin-bottom: 15px;
 
}
.hero-title-2 strong {
	font-size: 52px;
 
 
}
.hero-title-1 {
	font-size: 20px;
	text-align: center;
	letter-spacing: 0.2px;
 
}

.hero-title-3 {
	font-size: 20px;
	letter-spacing: 0.2px;
	text-align: center;
	padding: 0 30px;
}

.hero-content-inner {
	z-index: 1;
	margin: 00px 0;
	padding-left: 0;
	position: relative;
}

.hero::after {
	height: 108px;
 
}
.hero-bg::before {
	opacity: 0;
}

.hero-bg::after {
	height: 380px;
 
}
.hero-content-inner {
	width: 100%;
}






}

@media screen and (min-width: 767px) and (max-width: 1024px) {
	
.hero-title-2 {
	font-size: 80px;
 
}
.hero-title-2 strong {
	font-size: 80px;
	font-weight: normal;
	display: block;
}

.hero-content {
	min-height: 600px;
}
.hero-title-2 {
	margin-bottom: 15px;
 
}
.hero-content-inner {
	padding-bottom: 50px;
}
	
	
	
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
	
.hero-title-2 {
	font-size: 80px;
 
}
.hero-title-2 strong {
	font-size: 80px;
	font-weight: normal;
	display: block;
}

.hero-title-2 {
	margin-bottom: 15px;
 
}
.hero-content-inner {
	padding-bottom: 50px;
}
	
	
	
}



@media screen and (min-width: 1920px) and (max-width: 12000px) {


.hero .row {
	position: relative;
	z-index: 2;
	max-width: 85%;
}

.hero-bg::before {
	width: 1140px;
 
}
.hero-bg::after {
	height: 600px;
 
}
.hero-title-1 {
	font-size: 30px;
  letter-spacing: 0.3px;
}


.hero-title-2 {
	font-size: 140px;
	letter-spacing: -2.8px;
 
}
.hero-title-2 strong {
	font-size: 140px;
	font-weight: normal;
	display: block;
	letter-spacing: -2.8px;
}

.hero-title-3 {
	font-size: 30px;
  letter-spacing: 0.3px;
}

.hero-content {
	padding-bottom: 80px;
}











}

..single-page-team {margin-top: 20px;}
.single-page-team h2 {
	    font-size: 19pt;

	}

.single-page-team h2 {
	font-size: 16pt;
}