/* 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
*/

/*******************************************************************************************
CORE - Top-level styling
*******************************************************************************************/
:root {
	font-size: 16px;
	--font-family-body: "Manrope", sans-serif;
	--font-family-heading: "Manrope", sans-serif;
	--font-family-tagline: "Manrope", sans-serif;
	--font-size-h1: 2.5rem;
	--font-size-h2: 1.5rem;
	--font-size-h3: 1.3rem;
	--font-size-h4: 1.1rem;
	--font-size-h5: 1rem;
	--color-body-text: #111;
	--color-primary: #3e59a5;
	--color-secondary:#f08a60;
	--color-alternate: #eec183 ;
	--color-primary-lite: #8e92b8;
	--color-gray: #f5f7f9;
	--color-light-gray: #edf1f5;
	--color-white: #fff;
	--color-black: #000;
   --body-text-color: #1b324f;
	--primary-color: #3e59a5;
	--secondary-color: #f08a60;
	--alternate-color: #eec183;
	--gray-color: #f5f7f9;
	--light-gray-color: #e9f5f7;
	--body-font-family:"Manrope", sans-serif;
	--heading-font-family: "Manrope", sans-serif;
	--gutter-size: 30px;
	 
	--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: 16px;
	}
}

#container {
	position: relative;
	right: 0;
	top: 0;
	overflow: hidden;
	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;
}

main {
	padding: 60px 0;
	min-height: 450px;
	display: block;
	width: 100%;
	overflow: hidden;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.no-banner main {
	padding-top: 180px;
}

html {
	box-sizing: border-box;
}

body {
	display: block !important;
	line-height: 1.6;
	color: var(--color-body-text);
	font-size: 16px;
	font-family: var(--body-font-family);
	margin: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

*:focus {
	outline: auto;
}

*,
*:before,
*:after {
	box-sizing: inherit;
}

/* CORE > Headings and Paragraphs */
h1, h2, h3, h4, h5, h6 {
	margin: 0 0 20px;
	color: var(--color-primary);
	font-weight: bold;
	font-family: var(--heading-font-family);
	line-height: 1.2;
	letter-spacing: normal;
}

h1 {
	font-size: 2.4rem;
}

h2 {
	font-size: 2rem;
}

h3 {
	font-size: 1.6rem;
}

h4 {
	font-size: 1.3rem;
}

h5,
h6 {
	font-size: 1rem;
}

h2 strong,
h3 strong {
	font-weight: 700;
}

h1 span.subtitle,
h2 span.subtitle {
	display: block;
	color: #0f8577;
	font-size: 50%;
}

h2.module-title:after {
    content: "";
    width: 100px;
    margin: 5px 0 1rem;
    height: 5px;
    background-color: var(--color-secondary);
    display: block;
    margin: 0 auto;
    margin-top: 20px;
    /* margin-bottom: 20px; */
}

p {
	margin: 0 0 20px;
	font-size: 16px;
 
}

ul {
	list-style: none;
}

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

a:hover,
a:focus {
	color: var(--color-secondary);
	text-decoration: none;
}

a.no-underline {
	text-decoration: none;
}

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

a,
button,
.button {
	transition: color 200ms ease-out, background 200ms ease-out, transform 60ms ease-in;
}

button, .button {
	font-family: var(--body-font-family);
	font-size: 1rem;
	font-weight: 600;
	text-transform: uppercase;
	cursor: pointer;
	border: none;
	margin: 0;
	padding: 8px 15px;
	text-align: center;
	display: inline-block;
	color: #fff;
	background-color: var(--color-secondary);
	text-decoration: none;
/* 	border: 1px solid var(--color-secondary); */
}

button:active,
.button:active {
	transform: translateY(1.5px);
}

button:hover,
button:focus,
.button:hover,
.button:focus {
	background-color:var(--primary-color);
/* border: 1px solid #fff; */
	color: #fff;
}

button.alt-01,
.button.alt-01 {
	background-color: #d09735;
}

button.alt-01:hover,
button.alt-01:focus,
.button.alt-01:hover,
.button.alt-01:focus {
	background-color: #1b2c58;
	color: #fff;
}

button.alt-02,
.button.alt-02 {
	background-color: #000;
}

button.alt-02:hover,
button.alt-02:focus,
.button.alt-02:hover,
.button.alt-02:focus {
	background-color: #d09735;
	color: #fff;
}

button.outline, .button.outline {
    background: none;
    border: 2px solid #1b2c58;
    color: #1b2c58;
}

button.outline:hover,
button.outline:focus,
.button.outline:hover,
.button.outline:focus {
	background: #d09735;
	color: #fff;
}

button.outline.outline-alt-01,
.button.outline.outline-alt-01 {
	border-color: #fff;
	color: #fff;
}

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: #fff;
	color: #400610;
}

button.no-button,
.button.no-button {
	padding: 0;
	background: none;
	color: #0f8577;
	text-transform: none;
}

button.no-button:hover,
button.no-button:focus,
.button.no-button:hover,
.button.no-button:focus {
	color: #000;
	text-decoration: underline;
}

/* CORE > Layout */
.columns,
.column {
	padding: 0 var(--gutter-size);
}

.row,
.row-wide,
.row-narrow {
	max-width: 1280px;
	margin-right: auto;
	margin-left: auto;
}

.row-narrow {
	max-width: 1024px;
}

.row-wide {
	max-width: 1599px;
}

.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;
}

/* CORE > Utility Classes */
.no-float {
	float: none;
}

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

.no-margin-last > p:last-of-type {
	margin: 0 !important;
}

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

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

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

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

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

.hr-after {
	position: relative;
}

.block {
	display: block;
}

.full-width {
	width: 100%;
}

.full-height {
	height: 100%;
}

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

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

.body-font {
	font-family: var(--body-font-family);
}

.header-font {
	font-family: var(--heading-font-family);
}

.uppercase {
	text-transform: uppercase;
}

.show-in-pdf,
.hide {
	display: none !important;
}

.overflow-hidden {
	overflow: hidden;
}

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

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

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

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

.two-buttons-container a,
.two-buttons-container button {
	display: block;
	margin-bottom: 10px;
}

.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;
}

.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;
}

.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;
}

.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;
}

.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;
}

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

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

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

.animate-in-view,
.opacity0 {
	opacity: 0;
}
.opacity1 {
	opacity: 1 !important;
}

.pointer-events-none {
	pointer-events: none;
}

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

.z-index-over {
	position: relative;
	z-index: 1;
}

.background-center {
	background-position: center center !important;
}

.background-y-bottom {
	background-position-y: 100%;
}

.background-y-top {
	background-position-y: 0%;
}

.background-cover {
	background-size: cover;
	background-repeat: no-repeat;
}

.background-transparent {
	background: transparent;
}

.light-text,
button.light-text,
.light-text h1,
.light-text h2,
.light-text h3,
.light-text p,
.light-text span,
.light-text li,
.light-text label {
	color: #fff;
}

@media screen and (min-width: 450px) {
	.two-buttons-container {
		display: flex;
		justify-content: center;
	}

	.two-buttons-container a,
	.two-buttons-container button {
		margin: 0 6px;
	}
}

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

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

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

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

@media screen and (max-width: 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: #fff;
	z-index: 99;
	border-bottom: 2px solid transparent;
	transition: border-color 200ms ease-out;
}

body.scrolled .header {
	border-color: #bfbfbf;
}
.header > .row {
	height: 100%;
}

.header a {
	text-decoration: none;
}
.module-header-a-right-top .button.btn-top.external-link {
	padding: 5px 15px;
	font-size: 15px;
}


.header-desktop {
	display: none;
}

.header-logo {
	display: flex;
	align-items: center;
	padding: 8px 0 8px 8px;
}

.header-logo img {
	max-width: 100%;
	height: auto;
	max-width: 350px;
}

.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;
}

.header-mobile-buttons a,
.header-mobile-buttons button {
	display: flex;
	font-size: 1.3rem;
	align-items: center;
	justify-content: center;
	padding: 0 10px;
	flex: 1;
	max-width: 50px;
	width: 50px;
	height: 50px;
}

.mega-menu {
	display: none;
}

@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: 0;
	}
}





/*******************************************************************************************
  - Module header a
*******************************************************************************************/

.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: 11px;
}

.module-header-a-right-top span {
	font-weight: bold;
	font-size: 20px;
}

.module-header-a-phone {
	font-weight: 600;
	color: var(--color-secondary);
	font-size: 1.5rem;
	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: end;
	-ms-flex-align: end;
	align-items: flex-end;
	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;
		padding-top: 0px;
		width: 70%;
	}

	.module-header-a-logo {
		flex: 1;
	}

.module-header-a-inner {
	padding: 10px 15px 5px 15px;
	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: 0px;
	margin-top: 0px;
}
}






/*******************************************************************************************
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: 0 0 10px 0;
	margin-right: 35px;
}
.main-navigation-menu > li::after {
	content: "|";
	position: absolute;
	right: -18px;
	top: -4px;
	color: var(--color-primary);
}


.main-navigation-menu > li:last-of-type::after {
 
	opacity:0
}

.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: 270px;
	margin: 0;
	padding: 10px 0;
	background: var(--color-primary);
	left: -115%;
}

.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;
}

.main-navigation-menu a:focus,
.main-navigation-menu a:hover,
.main-navigation-menu li:hover > a {
	color: var(--color-secondary);
	text-decoration: none;
}

.main-navigation-menu > li > a {
	position: relative;
	display: block;
	height: 100%;
	color: var(--color-primary);
	line-height: 1;
	font-size: 17px;
	font-weight: 600;
}

/* MENUS > Main Nav Dropdowns (Level 2) */
#desktop-navigation .sub-menu li, .mega-menu li {
	background: var(--color-primary);
	padding-left: 30px;
	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: #fff;
	font-size: 0.9rem;
	display: block;
	padding: 12px;
	padding-left: 0;
	line-height: normal;
	text-decoration: none;
}

.mega-menu li.active,
#desktop-navigation .sub-menu li.active {
	background: var(--color-secondary);
}

.mega-menu li::before, #desktop-navigation .sub-menu li::before {
	content: "\f105";
	font-family: "Font Awesome 6 Pro";
	position: absolute;
	left: 13px;
	top: 11px;
	color: #fff;
	pointer-events: none;
	transition: color 200ms ease-out;
	font-size: 13px;
}

.mega-menu li.active:before,
#desktop-navigation .sub-menu li.active:before {
	color: #fff;
}

#desktop-navigation .sub-menu .menu-item-has-children > a::after {
	content: "\f101";
	font-family: "Font Awesome 6 Pro";
	position: absolute;
	right: 10px;
	color: #fff;
}

#desktop-navigation .sub-menu .menu-item-has-children.active > a:after {
	color: #fff;
}

#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;
}

/*******************************************************************************************
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: 80px;
}

.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;
	color: #fff;
	margin-bottom: 0;
	font-family: var(--heading-font-family);
	font-weight: bold;
}

@media screen and (min-width: 920px) {
.banner-title {
	font-size: 2.8rem;
}
}

@media screen and (min-width: 1025px) {
	.banner {
		height: 300px;
	}

	.banner,
	.banner-xl {
		margin-top:80px;
	}
}

@media screen and (max-height: 700px) and (min-width: 1025px) {
	.banner {
		height: 300px;
	}
}


 



/* HOME HERO AND/OR SLIDER Start */

.home-hero {
	position: relative;
	margin-top: 0px;
	padding-top: 00px;
}


.slick-autoplay-toggle-button {
	display: none;
}
/* .home-slider {
	position: absolute;
	top: 0;
	left: 0;
} */

.home-hero-content-side h2 {
	margin-right: 430px;
	margin-top: 150px;
	color: #fff;
	font-size: 80px;
	font-weight: 800;
	text-align: left;
	letter-spacing: 1px;
	text-shadow:0 0 2px #000, 0 0 10px #000;
}
.home-hero-content-side h1 {
    font-size: 50px;
    text-shadow: 0 0 6px #000, 4px 4px 6px #000;
    padding-right: 30px;
    color: #fff;
    text-align: left;
    margin-left: 0;
    font-weight: 600;
    text-transform: capitalize;
    font-family: var(--body-font-family);
    font-weight: 800;
    max-width: 600px;
}
.home-hero-content-side p {
	color: #fff;
	text-shadow: 0 0 2px #000, 0 0 10px #000;
	font-weight: 500;
	font-size: 20px;
	display: none;
}

.home-slider,
.home-slider-single {
	/*height:670px;*/
}
#home-slider .slick-dots {
	opacity: 0;
}
.home-slider-single {
	background-repeat: no-repeat;
	background-size: cover;
	background-position-x: 60%;
	position:relative;
}

.home-slider-single::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	/*background-image: linear-gradient(to top, #030d20, rgba(0, 10, 31, 0));*/
	opacity: 1;
}
 
 
.home-slider-single::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	/*background-image: linear-gradient(to top, #030d20, rgba(0, 10, 31, 0));*/
}

.home-slider .slick-dots li button:before {
	color: #fff;
}

.home-hero-form-container {
	display: none;
}

 

.home-slider-single .columns,
.home-slider-single .row {
  height: 100%;

}

.home-slider-tagline-inner {
	height: 100%;
	display: flex;
	align-items: flex-end;
	margin-top: 0;
	padding-bottom: 120px;
	justify-content: center;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
	text-align: center;
}
.tag-fourth {
	color: #0f1730;
	text-transform: none;
	letter-spacing: 1.3px;
	font-size: 0.813rem;
	font-weight: bold;
	margin-top: 5px;
	margin-left: 15px;
	display:none;
}

.home-slider-single-tagline {
	width: auto;
	max-width: 100%;
	background: transparent;
	text-align: center;
	padding: 0px 0 00px 0;
	/* height: 100%; */
	align-items: center;
}
 
.module.module-blog-c {
	position: absolute;
	bottom: 0;
}
.module.module-blog-c {
	position: absolute;
	bottom: 0;
	padding: 30px 0 20px 0;
	background: #d09735;
	width: 100%;
}



@media screen and (min-width: 1025px) {

.home-hero, .home-slider, .home-slider-single {
	height: 100vh;
	width: 100%;
	background-size: cover;
	background-position: center 0;
	/* max-height: 900px; */
	min-height: 585px;
}

.home-hero-form-container {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	padding-top: 114px;
}

    .home-hero-form .contact-form-heading {
        font-size: 1.8rem;
        margin-bottom: 25px;
        letter-spacing: 1px;
        /* font-size: 1.3rem;
        margin-bottom: 15px; */
    }
	.home-hero-form form button {
		width: 100%;
	}

	.home-hero-form {
		margin-top: 80px;
		min-width: 375px;
		padding: 0;
		background: #E9F5F7;
	}
}

@media screen and (max-height: 700px) and (min-width: 1025px) {
	.home-hero-form {
		margin: 0;
		position: absolute;
		bottom: 0;
		right: 0;
		padding: 30px;
	}

 
}



.tag-main {
	display: flex;
	height: 100%;
	max-width: 1255px;
	justify-content: center;
	margin: 0 auto;
	width: 100%;
	align-items: flex-start;
}


.home-hero-content-side {
    width: 72% !important;
    padding-right: 45px !important;
    justify-content: left !important;
    display: flex;
    align-items: flex-end;
    padding-bottom: 20px;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
}
.home-hero-form {
    margin-top: 0 !important;
    min-width: 300px !important;
    padding: 0;
    background: rgb(10 32 109);
    height: auto !important;
    position: relative !important;
    width: 40% !important;
    max-width: 300px !important;
    text-align: right !important;
    right: 0;
    padding-top: 0;
	align-self: center;
}

.home .form-container {
	background:#090f2c!important;
	opacity:80%;
}
.home-hero-content-side h2 {
	margin-right: 0;
	margin-bottom: 0;
	margin-top: 0;
}


.home-slider-single picture img{
	position: absolute;
	left: 50%;
  transform: translateX(-50%);
	z-index: -1;
}

@media screen and (min-width: 280px) and (max-width: 767px) {
	
.header-logo img {
	max-width: 230px;
}
.header-mobile-buttons {
	column-gap: 5px;
	padding-right: 10px;
}
.home-hero {
	margin-top: 80px;
	overflow: hidden;
}
.home-slider-single {
	height: 400px;
}
#home-slider {
	height: 400px;
}

.home-hero-form-container {
	display: inline-block;
}
.home-hero-form-container {
	display: inline-block;
	/* position: absolute; */
	top: 2%;
	position: absolute;
	width: 100%;
	text-align: center !important;
	z-index: 37;
}

.tag-main {
	display: flex;
	height: auto;
	max-width: 1255px;
	justify-content: center;
	margin: 0 auto;
	width: 100%;
}
.home-hero-content-side {
	width: 100% !important;
	padding-right: 0px !important;
	justify-content: center !important;
	justify-content: center;
	text-align: center;
	text-align: center;
	padding: 10px;
}
.home-hero-content-side h1 {
	font-size: 26px;
	text-align: center;
}

.home-hero-content-side h2 {
	margin-right: 0;
	margin-top: 0;
	/* color: #333; */
	text-shadow: none !important;
	font-size: 32px;
	text-align: center;
}

.home-hero-form.mobile.hide-for-large .contact-form-heading:first-child {
	display: none;
}

.home-hero-form {
    min-width:100%!important;
	padding-top:20px;
	background:#090f2c!important;
}
.module.module-blog-c {
	position: relative;
}

.module-benefits-c-box:last-child {
	margin: 0 !important;
}

.banner, .banner-xl {
	margin-top: 80px;
}

.home-slider-single picture img {
	position: absolute;
	left: 0;
	transform: translateX(00%);
	z-index: -1;
	object-fit: cover;
	width: 100%;
	height: 100%;
}











 
}


@media screen and (min-width: 600px) and (max-width: 767px) {


.home-hero {
	margin-top: 80px;
}
.home-hero-form.mobile.hide-for-large {
	width: 100% !important;
	max-width: 100% !important;
}
.home-hero-form-container {
	top: 4%;
}	
.home .module-blog-c-single {
	padding: 15px !important;
	text-align: center!important;
}	
	
}


@media screen and (min-width: 767px) and (max-width: 1024px) {

.home-slider-single picture img {
	position: absolute;
	left: 0;
	transform: translateX(00%);
	z-index: -1;
	object-fit: cover;
	width: 100%;
	height: 100%;
}


	
.header-logo img {
	max-width: 350px;
}
.header-mobile-buttons {
	column-gap: 5px;
}
	
.home-hero {
	margin-top: 70px;
	overflow: hidden;
}

.home-slider-single {
	height:400px;
}
#home-slider {
	height: 400px;
}

.home-hero-form-container {
	display: inline-block;
}
.home-hero-form-container {
	display: inline-block;
	/* position: absolute; */
	top: 3%;
	position: absolute;
	width: 100%;
	text-align: center !important;
	z-index: 37;
}

.tag-main {
	display: flex;
	height: auto;
	max-width: 1255px;
	justify-content: center;
	margin: 0 auto;
	width: 100%;
	padding: 15px;
	text-align: center;
}
.home-hero-content-side h1 {
	font-size: 1.4rem;
	line-height: 1.2;
	text-align:center
}
 

.module-attorneys-a-inner .module-attorneys-a-content .elementor-widget-container p {
	font-size: 15px!important;
	line-height: 1.4!important;
}
.module-attorneys-a-photo img {
	width: 350px !important; 
	max-width: 100%;
}
.swiper-slide.module-badges-a-single {
	text-align: center;
}
.module.module-attorneys-a {
	padding-bottom: 0;
}
.module-practices-b-inner {
 
	column-gap: 5px;
	row-gap: 5px;
}
.module.module-practices-b {
	padding-bottom: 0;
}

.module-practices-c-inner {
	grid-row-gap: 10px!important;
 
}
.elementor-heading-title.elementor-size-default {
	font-size: 16px!important;
}

.module-attorneys-a-content .module_title {
	font-size: 28px!important;
}


.home-hero-content-side {
	width: 100% !important;
	padding-right: 0px !important;
	justify-content: center !important;
	justify-content: center;
	text-align: center;
}

.home-hero-content-side h2 {
	margin-right: 0;
	margin-top: 0;
	/* color: #333; */
	text-shadow: none !important;
	font-size: 40px;
	text-align: center;
}

.home-hero-form.mobile.hide-for-large .contact-form-heading:first-child {
	display: none;
}

.home-hero-form {
 background:#090f2c!important;
	padding-top:0;
}
.module.module-blog-c {
	position: relative;
}

.module-benefits-c-box:last-child {
	margin: 0 !important;
}
 
.home-hero-form.hide-for-small-only {
	display: none !important;
}

.home-hero-form.mobile.hide-for-large {
	width: 100% !important;
	max-width: 100% !important;
}

#slider-blog-c {
	width: 85%;
}

.module-benefits-c-box {
	padding: 0 10px !important;
	margin-bottom: 40px !important;
	width: 33% !important;
} 
.module-benefits-c-boxes {
	align-items: flex-start!important;
}

.module-benefits-c-box i {
	font-size: 45px!important;
	height: 68px !important;
 
}
.box-content h3 {
	font-size: 22px !important;
}

.module.module-benefits-c {
	padding-bottom: 25px !important;
}

.module-intro-b-content .module-title {
	margin-bottom: 15px !important;
	font-size: 28px !important;
}

.module-footer-b-footer-half-side .form-container {
	max-width: 600px!important;
	margin: 0 auto;
}
.home .module-blog-c-single {
	padding: 15px !important;
	text-align: center!important;
}

.banner, .banner-xl {
	margin-top: 80px;
}

.sidebar-block h2 {
	margin-bottom: 10px;
	font-size: 26px;
}

section.sidebar-block {
	background: var(--color-light-gray);
	padding: 20px !important;
}
 
}



@media screen and (min-width: 980px) and (max-width: 1024px) {
	
.home-hero-content-side {
	width: 95% !important;
	padding-right: 0px !important;
	justify-content: left !important;
	display: flex;
	align-items: flex-end;
	padding-bottom: 200px;
	justify-content: flex-start;
	font-size: 25px !important;
}

.home-hero-content-side h2 {
	margin-right: 0;
	margin-top: 0;
	/* color: #333; */
	text-shadow: none !important;
	font-size: 30px;
	text-align: center;
	padding-left: 29px;
}


.home-hero-form {
	margin-top: 0 !important;
	min-width: 375px !important;
	padding: 0;
	background: var(--color-primary) !important;
	height: 100% !important;
	position: absolute !important;
	width: 40% !important;
	max-width: 350px !important;
	text-align: right !important;
	right: 0;
	padding-top: 110px;
	top: 0;
}



.home-hero-form.mobile.hide-for-large {
	width: 100% !important;
	max-width: 40% !important;
}
#home-slider {
	height: 100vh;max-height: 600px;
}

.home-slider-single {
	height: 100vh;max-height: 600px;
}
.home-hero-form-container {
	display: inline-block;
	/* position: absolute; */
	top: 5%;
	position: absolute;
	width: 60%;
	text-align: left !important;
}

.home-hero-content-side h1 {
	font-size: 2.8rem;
	line-height: 1.2;
	text-align: left;
}

.home-hero-content-side p {
	color: #fff;
	text-align: left;
}


.tag-main {
	display: flex;
	height: auto;
	max-width: 1255px;
	justify-content: flex-start;
	margin: 0 auto;
	width: 100%;
}
 
	
}


@media screen and (min-width: 1024px) and (max-width: 1279px) {
	
	.module.module-cta-a.module-dark.light-text .module-title {
	margin-bottom: 10px;
	font-size: 28px;
}
.home-hero-content-side h1 {
	font-size: 2.8rem;
	line-height: 1.2;
	text-align: left;
}

.home-hero-content-side p {
	color: #fff;
	text-align: left;
}

.home-hero-content-side {
 
	padding-left: 40px;
}
.home-hero-content-side h2 {
	font-size: 36px;
	padding-left: 13px;
}
.home-hero-content-side h1 {
	font-size: 2.5rem;
	padding-left: 13px;
	line-height: 1.3;
	padding: 0;
}


.home-slider-single picture img {
	position: absolute;
	left: 0;
	transform: translateX(-16%);
	z-index: -1;
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.main-navigation-menu > li > a {
	font-size: 13px;
 
}
.home-hero-form {
	margin-top: 0 !important;
	min-width: 300px !important;
	padding: 0;
	background: rgb(10 32 109);
	/* height: auto !important; */
	position: relative !important;
	width: 40% !important;
	max-width: 300px !important;
	text-align: right !important;
	right: 0;
	padding-top: 0;
	height: 100% !important;
}
	
	
}


@media screen and (min-width:1025px){
	.home-slider-single picture img{
		height: 100vh;
		width: 100%;
	}
}